diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eaa17d0..283c242 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,8 +9,11 @@ on: paths: - '**.kicad_sch' - '**.kicad_pcb' + - 'pcb/KiCad/footprints.pretty/*' + - 'pcb/KiCad/libraries/*' - '.github/workflows/ci.yml' - 'pcb/KiCad/config.kibot.yaml' + - 'pcb/KiCad/bom.ini' # Ignore the push event when creating tags tags-ignore: - 'v?[0-9]+.[0-9]+.[0-9]+' @@ -67,6 +70,13 @@ jobs: exit 1 shell: bash + - name: Test for correct git tag + if: github.ref_type == 'tag' && github.ref_name != steps.extract_sch_revision.outputs.value + run: | + echo "::error::Revision number of the schematic/PCB (${{ steps.extract_sch_revision.outputs.value }}) does not match the Github tag (${{ github.ref_name }})." + exit 1 + shell: bash + ERC: name: Run ERC runs-on: ubuntu-latest @@ -77,7 +87,7 @@ jobs: uses: actions/checkout@v4 - name: Run ERC - uses: INTI-CMNB/KiBot@v2_k7 + uses: INTI-CMNB/KiBot@v2_k8 with: config: ${{ env.KIBOT_CONFIG }} schema: ${{ env.SCHEMATIC_FILE }} @@ -85,11 +95,12 @@ jobs: skip: run_drc targets: __NONE__ # Only run preflights - - name: Retrieve results + - name: Upload results uses: actions/upload-artifact@v4 with: name: ERC_Output path: generated + retention-days: 7 DRC: name: Run DRC @@ -101,7 +112,7 @@ jobs: uses: actions/checkout@v4 - name: Run DRC - uses: INTI-CMNB/KiBot@v2_k7 + uses: INTI-CMNB/KiBot@v2_k8 with: config: ${{ env.KIBOT_CONFIG }} board: ${{ env.PCB_FILE }} @@ -109,7 +120,7 @@ jobs: skip: run_erc targets: __NONE__ # Only run preflights - - name: Retrieve results + - name: Upload results uses: actions/upload-artifact@v4 with: name: DRC_Output @@ -126,7 +137,7 @@ jobs: - name: Download repository uses: actions/checkout@v4 - - uses: INTI-CMNB/KiBot@v2_k7 + - uses: INTI-CMNB/KiBot@v2_k8 with: config: ${{ env.KIBOT_CONFIG }} schema: ${{ env.SCHEMATIC_FILE }} @@ -138,20 +149,23 @@ jobs: - name: Upload bill of materials files as artifact uses: actions/upload-artifact@v4 with: - name: bom-${{ matrix.variant }} + name: manufacturing_files-bom-${{ matrix.variant }} path: bom_files_compressed + retention-days: 7 - name: Upload schematic files as artifact uses: actions/upload-artifact@v4 with: - name: schematics-${{ matrix.variant }} + name: manufacturing_files-schematics-${{ matrix.variant }} path: schematics + retention-days: 7 - - name: Upload schematic files as artifact + - name: Upload Gerber files as artifact uses: actions/upload-artifact@v4 with: - name: gerber_files-${{ matrix.variant }} + name: manufacturing_files-gerber-${{ matrix.variant }} path: gerber_files_compressed + retention-days: 7 release: name: 'Upload manufacturing files to release' @@ -165,13 +179,9 @@ jobs: - name: Download manufacturing files artifact uses: actions/download-artifact@v4 with: - path: artifacts - - - name: Merge artifacts - run: | - mkdir ./manufacturing_files - mv artifacts/* ./manufacturing_files/ - shell: bash + path: manufacturing_files + pattern: manufacturing_files-* + merge-multiple: true - name: Display structure of downloaded files run: ls -R @@ -181,7 +191,7 @@ jobs: - name: Append BOM (bill of materials) as asset if: github.event.action == 'published' run: | - mv "./manufacturing_files/bom-${{ matrix.variant }}/bom_(${{ matrix.variant }}).zip" ${{ needs.tests.outputs.basename }}_bom_${{ needs.tests.outputs.revision }}_${{ matrix.variant }}.zip + mv "./manufacturing_files/bom_(${{ matrix.variant }}).zip" ${{ needs.tests.outputs.basename }}_bom_${{ needs.tests.outputs.revision }}_${{ matrix.variant }}.zip gh release upload ${{ github.ref_name }} ${{ needs.tests.outputs.basename }}_bom_${{ needs.tests.outputs.revision }}_${{ matrix.variant }}.zip#"Bill of materials for the ${{ matrix.variant }} variant (zip)" --repo ${{ github.repository }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -190,7 +200,7 @@ jobs: - name: Append schematics as asset if: github.event.action == 'published' run: | - mv "./manufacturing_files/schematics-${{ matrix.variant }}/schematics_(${{ matrix.variant }}).pdf" ${{ needs.tests.outputs.basename }}_schematics_${{ needs.tests.outputs.revision }}_${{ matrix.variant }}.pdf + mv "./manufacturing_files/$(basename ${{ env.SCHEMATIC_FILE }} .kicad_sch)_schematics_${{ needs.tests.outputs.revision }}_(${{ matrix.variant }}).pdf" ${{ needs.tests.outputs.basename }}_schematics_${{ needs.tests.outputs.revision }}_${{ matrix.variant }}.pdf gh release upload ${{ github.ref_name }} ${{ needs.tests.outputs.basename }}_schematics_${{ needs.tests.outputs.revision }}_${{ matrix.variant }}.pdf#"Schematics for the ${{ matrix.variant }} variant (pdf)" --repo ${{ github.repository }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -199,7 +209,7 @@ jobs: - name: Append position files as asset if: github.event.action == 'published' run: | - mv "./manufacturing_files/gerber_files-${{ matrix.variant }}/pos_(${{ matrix.variant }}).zip" ${{ needs.tests.outputs.basename }}_position_${{ needs.tests.outputs.revision }}_${{ matrix.variant }}.zip + mv "./manufacturing_files/pos_(${{ matrix.variant }}).zip" ${{ needs.tests.outputs.basename }}_position_${{ needs.tests.outputs.revision }}_${{ matrix.variant }}.zip gh release upload ${{ github.ref_name }} ${{ needs.tests.outputs.basename }}_position_${{ needs.tests.outputs.revision }}_${{ matrix.variant }}.zip#"Pick & Place position files for the ${{ matrix.variant }} variant (zip)" --repo ${{ github.repository }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -208,7 +218,7 @@ jobs: - name: Append Gerber files as asset if: github.event.action == 'published' && matrix.variant == 'default' run: | - mv "./manufacturing_files/gerber_files-${{ matrix.variant }}/gerbers.zip" ${{ needs.tests.outputs.basename }}_gerber_${{ needs.tests.outputs.revision }}_all.zip + mv "./manufacturing_files/gerbers_(${{ matrix.variant }}).zip" ${{ needs.tests.outputs.basename }}_gerber_${{ needs.tests.outputs.revision }}_all.zip gh release upload ${{ github.ref_name }} ${{ needs.tests.outputs.basename }}_gerber_${{ needs.tests.outputs.revision }}_all.zip#"Gerber files for all variants (zip)" --repo ${{ github.repository }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/pcb/KiCad/3D_models/DIN41612_C_2x32_Male_Horizontal_THT.wrl b/pcb/KiCad/3D_models/DIN41612_C_2x32_Male_Horizontal_THT.wrl deleted file mode 100644 index 679f944..0000000 --- a/pcb/KiCad/3D_models/DIN41612_C_2x32_Male_Horizontal_THT.wrl +++ /dev/null @@ -1,13013 +0,0 @@ -#VRML V2.0 utf8 -#kicad StepUp wrl exported - -Shape { - appearance Appearance {material DEF PIN-01 Material { - ambientIntensity 0.271 - diffuseColor 0.824 0.820 0.781 - specularColor 0.328 0.258 0.172 - emissiveColor 0.0 0.0 0.0 - shininess 0.70 - transparency 0.0 - } - } -} -Shape { - appearance Appearance {material DEF MET-01 Material { - ambientIntensity 0.249999 - diffuseColor 0.298 0.298 0.298 - specularColor 0.398 0.398 0.398 - emissiveColor 0.0 0.0 0.0 - shininess 0.056122 - transparency 0.0 - } - } -} -Shape { - appearance Appearance {material DEF PIN-02 Material { - ambientIntensity 0.379 - diffuseColor 0.859 0.738 0.496 - specularColor 0.137 0.145 0.184 - emissiveColor 0.0 0.0 0.0 - shininess 0.40 - transparency 0.0 - } - } -} -Shape { - appearance Appearance {material DEF IC-BODY-EPOXY-04 Material { - ambientIntensity 0.293 - diffuseColor 0.148 0.145 0.145 - specularColor 0.180 0.168 0.160 - emissiveColor 0.0 0.0 0.0 - shininess 0.35 - transparency 0.0 - } - } -} -Shape { - appearance Appearance {material DEF RES-SMD-01 Material { - diffuseColor 0.082 0.086 0.094 - emissiveColor 0.000 0.000 0.000 - specularColor 0.066 0.063 0.063 - ambientIntensity 0.638 - transparency 0.0 - shininess 0.3 - } - } -} -Shape { - appearance Appearance {material DEF IC-BODY-EPOXY-01 Material { - ambientIntensity 0.117 - diffuseColor 0.250 0.262 0.281 - specularColor 0.316 0.281 0.176 - emissiveColor 0.0 0.0 0.0 - shininess 0.25 - transparency 0.0 - } - } -} -Shape { - appearance Appearance {material DEF CAP-CERAMIC-05 Material { - ambientIntensity 0.179 - diffuseColor 0.273 0.273 0.273 - specularColor 0.203 0.188 0.176 - emissiveColor 0.0 0.0 0.0 - shininess 0.15 - transparency 0.0 - } - } -} -Shape { - appearance Appearance {material DEF CAP-CERAMIC-06 Material { - ambientIntensity 0.453 - diffuseColor 0.379 0.270 0.215 - specularColor 0.223 0.223 0.223 - emissiveColor 0.0 0.0 0.0 - shininess 0.15 - transparency 0.0 - } - } -} -Shape { - appearance Appearance {material DEF RES-THT-01 Material { - ambientIntensity 0.149 - diffuseColor 0.883 0.711 0.492 - specularColor 0.043 0.121 0.281 - emissiveColor 0.0 0.0 0.0 - shininess 0.40 - transparency 0.0 - } - } -} -Shape { - appearance Appearance {material DEF PLASTIC-BLUE-01 Material { - ambientIntensity 0.565 - diffuseColor 0.137 0.402 0.727 - specularColor 0.359 0.379 0.270 - emissiveColor 0.0 0.0 0.0 - shininess 0.25 - transparency 0.0 - } - } -} -Shape { - appearance Appearance {material DEF PLASTIC-GREEN-01 Material { - ambientIntensity 0.315 - diffuseColor 0.340 0.680 0.445 - specularColor 0.176 0.105 0.195 - emissiveColor 0.0 0.0 0.0 - shininess 0.25 - transparency 0.0 - } - } -} -Shape { - appearance Appearance {material DEF PLASTIC-ORANGE-01 Material { - ambientIntensity 0.284 - diffuseColor 0.809 0.426 0.148 - specularColor 0.039 0.102 0.145 - emissiveColor 0.0 0.0 0.0 - shininess 0.25 - transparency 0.0 - } - } -} -Shape { - appearance Appearance {material DEF RED-BODY Material { - ambientIntensity 0.683 - diffuseColor 0.700 0.100 0.050 - emissiveColor 0.000 0.000 0.000 - specularColor 0.300 0.400 0.150 - shininess 0.25 - transparency 0.0 - } - } -} -Shape { - appearance Appearance {material DEF CAP-CERAMIC-02 Material { - ambientIntensity 0.683 - diffuseColor 0.578 0.336 0.352 - specularColor 0.105 0.273 0.270 - emissiveColor 0.0 0.0 0.0 - shininess 0.25 - transparency 0.0 - } - } -} -Shape { - appearance Appearance {material DEF PLASTIC-YELLOW-01 Material { - ambientIntensity 0.522 - diffuseColor 0.832 0.680 0.066 - specularColor 0.160 0.203 0.320 - emissiveColor 0.0 0.0 0.0 - shininess 0.25 - transparency 0.0 - } - } -} -Shape { - appearance Appearance {material DEF PLASTIC-WHITE-01 Material { - ambientIntensity 0.494 - diffuseColor 0.895 0.891 0.813 - specularColor 0.047 0.055 0.109 - emissiveColor 0.0 0.0 0.0 - shininess 0.25 - transparency 0.0 - } - } -} -Shape { - appearance Appearance {material DEF IC-LABEL-01 Material { - ambientIntensity 0.082 - diffuseColor 0.691 0.664 0.598 - specularColor 0.000 0.000 0.000 - emissiveColor 0.0 0.0 0.0 - shininess 0.01 - transparency 0.0 - } - } -} -Shape { - appearance Appearance {material DEF LED-RED Material { - ambientIntensity 0.789 - diffuseColor 0.700 0.100 0.050 - emissiveColor 0.000 0.000 0.000 - specularColor 0.300 0.400 0.150 - shininess 0.125 - transparency 0.10 - } - } -} -Shape { - appearance Appearance {material DEF LED-GREEN Material { - ambientIntensity 0.789 - diffuseColor 0.400 0.700 0.150 - emissiveColor 0.000 0.000 0.000 - specularColor 0.600 0.300 0.100 - shininess 0.05 - transparency 0.10 - } - } -} -Shape { - appearance Appearance {material DEF LED-BLUE Material { - ambientIntensity 0.789 - diffuseColor 0.100 0.250 0.700 - emissiveColor 0.000 0.000 0.000 - specularColor 0.500 0.600 0.300 - shininess 0.125 - transparency 0.10 - } - } -} -Shape { - appearance Appearance {material DEF LED-YELLOW Material { - ambientIntensity 0.522 - diffuseColor 0.98 0.840 0.066 - specularColor 0.160 0.203 0.320 - emissiveColor 0.0 0.0 0.0 - shininess 0.125 - transparency 0.10 - } - } -} -Shape { - appearance Appearance {material DEF LED-WHITE Material { - ambientIntensity 0.494 - diffuseColor 0.895 0.891 0.813 - specularColor 0.047 0.055 0.109 - emissiveColor 0.0 0.0 0.0 - shininess 0.125 - transparency 0.10 - } - } -} -Shape { - appearance Appearance {material DEF LED-GREY Material { - ambientIntensity 0.494 - diffuseColor 0.27 0.25 0.27 - specularColor 0.5 0.5 0.6 - emissiveColor 0.0 0.0 0.0 - shininess 0.35 - transparency 0.10 - } - } -} -Shape { - appearance Appearance {material DEF LED-BLACK Material { - ambientIntensity 0.494 - diffuseColor 0.1 0.05 0.1 - specularColor 0.6 0.5 0.6 - emissiveColor 0.0 0.0 0.0 - shininess 0.5 - transparency 0.0 - } - } -} -Shape { - appearance Appearance {material DEF GLASS-19 Material { - ambientIntensity 2.018212 - diffuseColor 0.400769 0.441922 0.459091 - specularColor 0.573887 0.649271 0.810811 - emissiveColor 0.000000 0.000000 0.000000 - shininess 0.127273 - transparency 0.37 - } - } -} -Shape { - appearance Appearance {material DEF GLASS-29 Material { - ambientIntensity 0.234375 - diffuseColor 0.566681 0.580872 0.580874 - specularColor 0.617761 0.429816 0.400140 - emissiveColor 0.000000 0.000000 0.000000 - shininess 0.072727 - transparency 0.38 - } - } -} -Shape { - appearance Appearance {material DEF GLASS-13 Material { - ambientIntensity 0.250000 - diffuseColor 0.000000 0.631244 0.748016 - specularColor 0.915152 0.915152 0.915152 - emissiveColor 0.000000 0.000000 0.000000 - shininess 0.642424 - transparency 0.39 - } - } -} -Shape { - appearance Appearance {material DEF GLASS-GREEN Material { - ambientIntensity 0.250000 - diffuseColor 0.000000 0.75 0.44 - specularColor 0.915152 0.915152 0.915152 - emissiveColor 0.000000 0.000000 0.000000 - shininess 0.642424 - transparency 0.39 - } - } -} -Shape { - appearance Appearance {material DEF GLASS-ORANGE Material { - ambientIntensity 0.250000 - diffuseColor 0.75 0.44 0.000000 - specularColor 0.915152 0.915152 0.915152 - emissiveColor 0.000000 0.000000 0.000000 - shininess 0.642424 - transparency 0.39 - } - } -} -Shape { - appearance Appearance {material DEF BOARD-GREEN-02 Material { - ambientIntensity 1 - diffuseColor 0.07 0.3 0.12 - specularColor 0.07 0.3 0.12 - emissiveColor 0.0 0.0 0.0 - shininess 0.40 - transparency 0.0 - } - } -} -Shape { - appearance Appearance {material DEF BOARD-BLUE-01 Material { - ambientIntensity 1 - diffuseColor 0.07 0.12 0.3 - specularColor 0.07 0.12 0.3 - emissiveColor 0.0 0.0 0.0 - shininess 0.40 - transparency 0.0 - } - } -} -Shape { - appearance Appearance {material DEF BOARD-BLACK-03 Material { - ambientIntensity 1 - diffuseColor 0.16 0.16 0.16 - specularColor 0.16 0.16 0.16 - emissiveColor 0.0 0.0 0.0 - shininess 0.40 - transparency 0.0 - } - } -} -Shape { - appearance Appearance {material DEF MET-ALUMINUM Material { - ambientIntensity 0.256000 - diffuseColor 0.372322 0.371574 0.373173 - specularColor 0.556122 0.554201 0.556122 - emissiveColor 0.0 0.0 0.0 - shininess 0.127551 - transparency 0.0 - } - } -} -Shape { - appearance Appearance {material DEF MET-BRONZE Material { - ambientIntensity 0.022727 - diffuseColor 0.714 0.4284 0.18144 - specularColor 0.393548 0.271906 0.166721 - emissiveColor 0.000000 0.000000 0.000000 - shininess 0.2 - transparency 0.0 - } - } -} -Shape { - appearance Appearance {material DEF MET-SILVER Material { - ambientIntensity 0.022727 - diffuseColor 0.50754 0.50754 0.50754 - specularColor 0.508273 0.508273 0.508273 - emissiveColor 0.000000 0.000000 0.000000 - shininess 0.4 - transparency 0.0 - } - } -} -Shape { - appearance Appearance {material DEF MET-COPPER Material { - ambientIntensity 0.022727 - diffuseColor 0.7038 0.27048 0.0828 - specularColor 0.780612 0.37 0.000000 - emissiveColor 0.000000 0.000000 0.000000 - shininess 0.2 - transparency 0.0 - } - } -} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,4,0,-1,0,4,1,-1,3,5,4,-1] -coord Coordinate { point [32.7243 4.99605 3.68109,31.9763 2.08267 3.68109,32.7243 2.08267 3.68109,-1.72441 4.99605 3.68109,-0.976376 2.08267 3.68109,-1.72441 2.08267 3.68109] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,0,4,-1,3,1,0,-1] -coord Coordinate { point [-0.976376 2.08267 3.24802,-1.72441 2.08267 2.3622,-0.976376 2.08267 2.3622,-1.72441 2.08267 3.68109,-0.976376 2.08267 3.68109] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,0,2,-1] -coord Coordinate { point [-0.976376 2.08267 3.24802,31.9763 2.08267 3.24802,31.9763 2.08267 3.68109,-0.976376 2.08267 3.68109] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [32.7243 2.08267 3.24802,32.7243 2.08267 3.68109,31.9763 2.08267 3.68109,31.9763 2.08267 3.24802] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,0,4,1,-1,4,5,1,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,6,10,8,-1,8,11,9,-1] -coord Coordinate { point [32.7243 2.08267 3.68109,32.7243 2.39763 3.34645,32.7243 4.99605 3.68109,32.7243 4.99605 3.34645,32.7243 2.08267 3.24802,32.7243 2.39763 2.83464,32.7243 2.08267 2.3622,32.7243 4.99605 2.83464,32.7243 2.20078 -4.7244e-15,32.7243 4.99605 -0.570865,32.7243 2.08267 -4.7244e-15,32.7243 2.20078 -0.570865] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1,3,4,1,-1,3,5,4,-1,6,7,8,-1,4,9,7,-1,5,9,4,-1,7,9,8,-1,2,10,0,-1,2,11,10,-1,12,13,14,-1,14,13,15,-1,10,16,12,-1,11,16,10,-1,12,16,13,-1,13,17,15,-1,18,19,17,-1,17,19,15,-1,19,8,9,-1,19,9,15,-1] -coord Coordinate { point [32.2716 4.99605 -0.15748,32.7243 4.99605 2.83464,32.7243 4.99605 -0.570865,32.2716 4.99605 2.51968,32.3306 4.99605 2.83464,31.8779 4.99605 2.51968,32.7243 4.99605 3.34645,32.3306 4.99605 3.34645,32.7243 4.99605 3.68109,31.8779 4.99605 3.26771,-1.27165 4.99605 -0.15748,-1.72441 4.99605 -0.570865,-1.27165 4.99605 2.51968,-1.33071 4.99605 2.83464,-0.877951 4.99605 2.51968,-0.877951 4.99605 3.26771,-1.72441 4.99605 2.83464,-1.33071 4.99605 3.34645,-1.72441 4.99605 3.34645,-1.72441 4.99605 3.68109] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,1,3,2,-1,4,5,1,-1,1,5,3,-1,5,6,3,-1,7,8,9,-1,6,10,8,-1,8,10,9,-1,5,10,6,-1] -coord Coordinate { point [-1.72441 2.20078 -0.570865,-1.72441 2.20078 -8.6614e-15,-1.72441 4.99605 -0.570865,-1.72441 4.99605 2.83464,-1.72441 2.08267 -8.6614e-15,-1.72441 2.08267 2.3622,-1.72441 2.39763 2.83464,-1.72441 4.99605 3.34645,-1.72441 2.39763 3.34645,-1.72441 4.99605 3.68109,-1.72441 2.08267 3.68109] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,1,3,2,-1] -coord Coordinate { point [-0.976376 2.08267 2.3622,-0.976376 0.704723 2.3622,-0.976376 2.08267 3.24802,-0.976376 0.704723 3.24802] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1,4,0,2,-1,5,1,3,-1,6,4,2,-1,7,1,5,-1,8,6,2,-1,9,1,7,-1,10,8,2,-1,11,1,9,-1,12,10,2,-1,13,12,2,-1,14,15,16,-1,14,17,15,-1,14,18,17,-1,14,11,18,-1,14,1,11,-1,19,20,13,-1,19,21,20,-1,19,13,2,-1,22,21,19,-1,23,14,16,-1,24,14,23,-1,25,14,24,-1,26,14,25,-1,27,14,26,-1,28,29,30,-1,28,31,29,-1,28,32,22,-1,28,33,32,-1,28,34,33,-1,28,30,34,-1,28,22,19,-1,35,31,28,-1,35,36,31,-1,35,37,36,-1,35,38,37,-1,35,39,38,-1,35,40,39,-1,35,41,40,-1,35,27,41,-1,35,14,27,-1] -coord Coordinate { point [-1.62301 0.683666 2.3622,-0.976376 -0.003937 2.3622,-0.976376 0.704723 2.3622,-1.68366 0.623008 2.3622,-1.5738 0.753936 2.3622,-1.75393 0.573805 2.3622,-1.53755 0.831681 2.3622,-1.83168 0.537552 2.3622,-1.51535 0.914541 2.3622,-1.91454 0.515349 2.3622,-1.50787 0.999998 2.3622,-2 0.507873 2.3622,-1.51535 1.08545 2.3622,-1.53755 1.16831 2.3622,-3.00393 -0.003937 2.3622,-2.24606 0.573805 2.3622,-2.31633 0.623008 2.3622,-2.16831 0.537552 2.3622,-2.08545 0.515349 2.3622,-0.976376 2.08267 2.3622,-1.5738 1.24606 2.3622,-1.62301 1.31633 2.3622,-1.68366 1.37699 2.3622,-2.37699 0.683666 2.3622,-2.42619 0.753936 2.3622,-2.46244 0.831681 2.3622,-2.48464 0.914541 2.3622,-2.49212 0.999998 2.3622,-1.72441 2.08267 2.3622,-2.08545 1.48465 2.3622,-2 1.49212 2.3622,-2.16831 1.46244 2.3622,-1.75393 1.42619 2.3622,-1.83168 1.46244 2.3622,-1.91454 1.48465 2.3622,-3.00393 2.08267 2.3622,-2.24606 1.42619 2.3622,-2.31633 1.37699 2.3622,-2.37699 1.31633 2.3622,-2.42619 1.24606 2.3622,-2.46244 1.16831 2.3622,-2.48464 1.08545 2.3622] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [-0.976376 2.08267 3.24802,-0.976376 0.704723 3.24802,31.9763 0.704723 3.24803,31.9763 2.08267 3.24802] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [32.7243 2.08267 2.3622,32.7243 2.08267 3.24802,31.9763 2.08267 3.24802,31.9763 2.08267 2.3622] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [32.7243 2.39763 2.83464,32.7243 4.99605 2.83464,32.3306 2.39763 2.83464,32.3306 4.99605 2.83464] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [32.7243 2.39763 3.34645,32.3306 2.39763 2.83464,32.3306 2.39763 3.34645,32.7243 2.39763 2.83464] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [32.7243 4.99605 3.34645,32.7243 2.39763 3.34645,32.3306 4.99605 3.34645,32.3306 2.39763 3.34645] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [32.7243 2.08267 2.3622,34.0039 2.08267 -5.5118e-15,32.7243 2.08267 -4.7244e-15,34.0039 2.08267 2.3622] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,0,2,-1,4,2,1,-1,5,2,4,-1,5,6,2,-1,7,3,2,-1,8,6,5,-1,9,7,2,-1,10,6,8,-1,11,9,2,-1,12,6,10,-1,13,6,12,-1,14,6,13,-1,15,6,14,-1,16,11,2,-1,16,17,18,-1,16,18,19,-1,16,19,20,-1,16,20,11,-1,21,6,15,-1,22,17,16,-1,23,22,16,-1,24,6,21,-1,25,23,16,-1,26,25,16,-1,27,26,16,-1,28,6,24,-1,28,29,6,-1,28,24,30,-1,28,30,31,-1,28,31,32,-1,28,32,33,-1,28,33,34,-1,28,34,35,-1,28,35,36,-1,37,28,36,-1,37,27,16,-1,37,36,38,-1,37,38,39,-1,37,39,40,-1,37,40,41,-1,37,41,27,-1,42,29,28,-1,43,44,42,-1,43,42,28,-1,45,44,46,-1,47,44,45,-1,48,44,43,-1,48,46,44,-1,49,44,47,-1,50,48,43,-1,51,44,49,-1,52,50,43,-1,53,44,51,-1,54,52,43,-1,55,44,53,-1,56,54,43,-1,57,44,55,-1,58,56,43,-1,59,58,43,-1,60,57,61,-1,60,44,57,-1,62,60,61,-1,63,59,43,-1,64,63,43,-1,65,60,62,-1,66,63,64,-1,67,60,65,-1,68,66,64,-1,69,60,67,-1,70,68,64,-1,71,60,69,-1,72,70,64,-1,73,60,71,-1,74,72,64,-1,75,73,76,-1,75,76,77,-1,75,77,78,-1,75,78,79,-1,75,79,80,-1,75,80,81,-1,75,81,82,-1,75,82,83,-1,75,83,74,-1,75,60,73,-1,75,74,64,-1] -coord Coordinate { point [33.3769 1.31633 -1.09027e-13,33.3163 1.37699 -1.08926e-13,34.0039 2.08267 -5.5118e-15,33.4261 1.24606 -1.09068e-13,33.246 1.42619 -1.08769e-13,33.1683 1.46244 -1.08562e-13,32.7243 2.08267 -4.7244e-15,33.4624 1.16831 -1.0905e-13,33.0854 1.48465 -1.0831e-13,33.4846 1.08545 -1.08972e-13,32.9999 1.49212 -1.07086e-13,33.4921 0.999998 -1.08837e-13,32.9145 1.48465 -1.07703e-13,32.8316 1.46244 -1.07367e-13,32.7539 1.42619 -1.07022e-13,32.6836 1.37699 -1.0668e-13,34.0039 -0.003937 -1.09055e-13,33.3769 0.683666 -1.07831e-13,33.4261 0.753936 -1.08138e-13,33.4624 0.831681 -1.08414e-13,33.4846 0.914541 -1.08649e-13,32.6229 1.31633 -1.0635e-13,33.3163 0.623008 -1.07501e-13,33.246 0.573805 -1.07158e-13,32.5737 1.24606 -1.06042e-13,33.1683 0.537552 -1.06814e-13,33.0854 0.515349 -1.06478e-13,32.9999 0.507873 -1.0616e-13,31.9763 0.704723 1.10236e-14,32.7243 2.20078 -4.7244e-15,32.5375 1.16831 -1.05767e-13,32.5153 1.08545 -1.05531e-13,32.5078 0.999998 -1.05343e-13,32.5153 0.914541 -1.05208e-13,32.5375 0.831681 -1.05131e-13,32.5737 0.753936 -1.05112e-13,32.6229 0.683666 -1.05154e-13,31.9763 -0.003937 1.49606e-14,32.6836 0.623008 -1.05255e-13,32.7539 0.573805 -1.05411e-13,32.8316 0.537552 -1.05619e-13,32.9145 0.515349 -1.05871e-13,-1.72441 2.20078 -8.6614e-15,-0.976376 0.704723 -3.5433e-15,-1.72441 2.08267 -8.6614e-15,-1.68366 1.37699 -1.34079e-14,-1.62301 1.31633 -1.35122e-14,-1.75393 1.42619 -1.32601e-14,-1.5738 1.24606 -1.35699e-14,-1.83168 1.46244 -1.30732e-14,-1.53755 1.16831 -1.35791e-14,-1.91454 1.48465 -1.28531e-14,-1.51535 1.08545 -1.35397e-14,-2 1.49212 -1.1811e-14,-1.50787 0.999998 -1.34527e-14,-2.08545 1.48465 -1.23403e-14,-1.51535 0.914541 -1.33209e-14,-2.16831 1.46244 -1.20633e-14,-1.53755 0.831681 -1.31482e-14,-1.5738 0.753936 -1.294e-14,-3.00393 2.08267 -6.6929e-15,-2.24606 1.42619 -1.17837e-14,-2.31633 1.37699 -1.15099e-14,-1.62301 0.683666 -1.27024e-14,-0.976376 -0.003937 3.937e-16,-2.37699 1.31633 -1.12503e-14,-1.68366 0.623008 -1.24428e-14,-2.42619 1.24606 -1.10127e-14,-1.75393 0.573805 -1.2169e-14,-2.46244 1.16831 -1.08045e-14,-1.83168 0.537552 -1.18894e-14,-2.48464 1.08545 -1.06318e-14,-1.91454 0.515349 -1.16124e-14,-2.49212 0.999998 -1.05e-14,-2 0.507873 -1.13464e-14,-3.00393 -0.003937 -8.6614e-15,-2.48464 0.914541 -1.0413e-14,-2.46244 0.831681 -1.03736e-14,-2.42619 0.753936 -1.03828e-14,-2.37699 0.683666 -1.04405e-14,-2.31633 0.623008 -1.05448e-14,-2.24606 0.573805 -1.06926e-14,-2.16831 0.537552 -1.08795e-14,-2.08545 0.515349 -1.10996e-14] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [-1.72441 2.20078 -8.6614e-15,-1.72441 2.20078 -0.570865,32.7243 2.20078 -0.570865,32.7243 2.20078 -4.7244e-15] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,1,3,2,-1] -coord Coordinate { point [32.7243 2.20078 -0.570865,-1.72441 2.20078 -0.570865,32.7243 4.99605 -0.570865,-1.72441 4.99605 -0.570865] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [-1.72441 4.99605 2.83464,-1.72441 2.39763 2.83464,-1.33071 2.39763 2.83464,-1.33071 4.99605 2.83464] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [-1.33071 2.39763 2.83464,-1.33071 2.39763 3.34645,-1.33071 4.99605 2.83464,-1.33071 4.99605 3.34645] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [-1.72441 2.39763 3.34645,-1.72441 4.99605 3.34645,-1.33071 4.99605 3.34645,-1.33071 2.39763 3.34645] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [32.3306 2.39763 3.34645,32.3306 2.39763 2.83464,32.3306 4.99605 2.83464,32.3306 4.99605 3.34645] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [-0.877951 2.47637 3.26771,31.8779 4.99605 3.26771,31.8779 2.47637 3.26771,-0.877951 4.99605 3.26771] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [-0.877951 4.99605 2.51968,-0.877951 4.99605 3.26771,-0.877951 2.47637 3.26771,-0.877951 2.47637 2.51968] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [-1.27165 4.99605 2.51968,-0.877951 4.99605 2.51968,-0.877951 2.47637 2.51968,-1.27165 2.47637 2.51968] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [-1.27165 2.47637 -0.15748,-1.27165 4.99605 2.51968,-1.27165 2.47637 2.51968,-1.27165 4.99605 -0.15748] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [32.2716 4.99605 -0.15748,-1.27165 4.99605 -0.15748,-1.27165 2.47637 -0.15748,32.2716 2.47637 -0.15748] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [32.2716 4.99605 2.51968,32.2716 2.47637 -0.15748,32.2716 2.47637 2.51968,32.2716 4.99605 -0.15748] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [31.8779 4.99605 2.51968,32.2716 4.99605 2.51968,31.8779 2.47637 2.51968,32.2716 2.47637 2.51968] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [31.8779 4.99605 3.26771,31.8779 4.99605 2.51968,31.8779 2.47637 3.26771,31.8779 2.47637 2.51968] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [-1.72441 2.39763 2.83464,-1.72441 2.39763 3.34645,-1.33071 2.39763 3.34645,-1.33071 2.39763 2.83464] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [-3.00393 2.08267 -6.6929e-15,-3.00393 2.08267 2.3622,-1.72441 2.08267 2.3622,-1.72441 2.08267 -8.6614e-15] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,0,4,1,-1,5,0,3,-1] -coord Coordinate { point [31.9763 0.704723 2.3622,-0.976376 0.704723 3.24802,-0.976376 0.704723 2.3622,-0.976376 0.704723 -3.5433e-15,31.9763 0.704723 3.24803,31.9763 0.704723 1.10236e-14] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [-3.00393 -0.003937 2.3622,-0.976376 -0.003937 3.937e-16,-0.976376 -0.003937 2.3622,-3.00393 -0.003937 -8.6614e-15] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [-3.00393 -0.003937 2.3622,-3.00393 2.08267 2.3622,-3.00393 -0.003937 -8.6614e-15,-3.00393 2.08267 -6.6929e-15] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [-0.976376 -0.003937 2.3622,-0.976376 0.704723 -3.5433e-15,-0.976376 0.704723 2.3622,-0.976376 -0.003937 3.937e-16] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,10,12,11,-1,11,12,13,-1,12,14,13,-1,13,14,15,-1,14,16,15,-1,15,16,17,-1,16,18,17,-1,17,18,19,-1,18,20,19,-1,19,20,21,-1,21,20,22,-1,20,23,22,-1,23,24,22,-1,22,24,25,-1,24,26,25,-1,25,26,27,-1,26,28,27,-1,27,28,29,-1,28,30,29,-1,29,30,31,-1,30,32,31,-1,31,32,33,-1,32,34,33,-1,33,34,35,-1,35,34,36,-1,34,37,36,-1,37,38,36,-1,36,38,39,-1,38,40,39,-1,39,40,41,-1,40,42,41,-1,41,42,43,-1,43,44,45,-1,42,44,43,-1,45,46,47,-1,47,46,48,-1,44,46,45,-1,48,49,50,-1,46,49,48,-1,49,51,50,-1,50,52,53,-1,51,52,50,-1,53,54,55,-1,52,54,53,-1,55,56,57,-1,57,56,58,-1,54,56,55,-1,56,59,58,-1,58,60,61,-1,59,60,58,-1,61,62,63,-1,63,62,64,-1,60,62,61,-1,62,65,64,-1,65,66,64,-1,64,66,67,-1,67,66,68,-1,66,69,68,-1,68,69,70,-1,69,71,70,-1,71,0,70,-1,70,0,2,-1] -coord Coordinate { point [-2 1.49212 2.3622,-2.08545 1.48465 2.3622,-2 1.49212 -1.1811e-14,-2.08545 1.48465 -1.23403e-14,-2.16831 1.46244 2.3622,-2.16831 1.46244 -1.20633e-14,-2.24606 1.42619 2.3622,-2.24606 1.42619 -1.17837e-14,-2.31633 1.37699 2.3622,-2.31633 1.37699 -1.15099e-14,-2.37699 1.31633 2.3622,-2.37699 1.31633 -1.12503e-14,-2.42619 1.24606 2.3622,-2.42619 1.24606 -1.10127e-14,-2.46244 1.16831 2.3622,-2.46244 1.16831 -1.08045e-14,-2.48464 1.08545 2.3622,-2.48464 1.08545 -1.06318e-14,-2.49212 0.999998 2.3622,-2.49212 0.999998 -1.05e-14,-2.48464 0.914541 2.3622,-2.48464 0.914541 -1.0413e-14,-2.46244 0.831681 -1.03736e-14,-2.46244 0.831681 2.3622,-2.42619 0.753936 2.3622,-2.42619 0.753936 -1.03828e-14,-2.37699 0.683666 2.3622,-2.37699 0.683666 -1.04405e-14,-2.31633 0.623008 2.3622,-2.31633 0.623008 -1.05448e-14,-2.24606 0.573805 2.3622,-2.24606 0.573805 -1.06926e-14,-2.16831 0.537552 2.3622,-2.16831 0.537552 -1.08795e-14,-2.08545 0.515349 2.3622,-2.08545 0.515349 -1.10996e-14,-2 0.507873 -1.13464e-14,-2 0.507873 2.3622,-1.91454 0.515349 2.3622,-1.91454 0.515349 -1.16124e-14,-1.83168 0.537552 2.3622,-1.83168 0.537552 -1.18894e-14,-1.75393 0.573805 2.3622,-1.75393 0.573805 -1.2169e-14,-1.68366 0.623008 2.3622,-1.68366 0.623008 -1.24428e-14,-1.62301 0.683666 2.3622,-1.62301 0.683666 -1.27024e-14,-1.5738 0.753936 -1.294e-14,-1.5738 0.753936 2.3622,-1.53755 0.831681 -1.31482e-14,-1.53755 0.831681 2.3622,-1.51535 0.914541 2.3622,-1.51535 0.914541 -1.33209e-14,-1.50787 0.999998 2.3622,-1.50787 0.999998 -1.34527e-14,-1.51535 1.08545 2.3622,-1.51535 1.08545 -1.35397e-14,-1.53755 1.16831 -1.35791e-14,-1.53755 1.16831 2.3622,-1.5738 1.24606 2.3622,-1.5738 1.24606 -1.35699e-14,-1.62301 1.31633 2.3622,-1.62301 1.31633 -1.35122e-14,-1.68366 1.37699 -1.34079e-14,-1.68366 1.37699 2.3622,-1.75393 1.42619 2.3622,-1.75393 1.42619 -1.32601e-14,-1.83168 1.46244 -1.30732e-14,-1.83168 1.46244 2.3622,-1.91454 1.48465 -1.28531e-14,-1.91454 1.48465 2.3622] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [31.9763 0.704723 3.24803,31.9763 0.704723 2.3622,31.9763 2.08267 3.24802,31.9763 2.08267 2.3622] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,2,-1,5,1,0,-1,6,2,7,-1,6,4,2,-1,8,1,5,-1,9,6,7,-1,10,1,8,-1,11,9,7,-1,12,1,10,-1,13,11,7,-1,14,1,12,-1,15,13,7,-1,16,1,14,-1,17,15,7,-1,18,16,19,-1,18,1,16,-1,20,17,7,-1,21,18,19,-1,22,20,7,-1,23,20,22,-1,24,18,21,-1,25,23,22,-1,26,18,24,-1,27,25,22,-1,28,18,26,-1,29,27,22,-1,30,18,28,-1,31,29,22,-1,32,18,30,-1,33,34,31,-1,33,35,34,-1,33,36,35,-1,33,37,36,-1,33,38,37,-1,33,39,38,-1,33,40,39,-1,33,41,40,-1,33,32,41,-1,33,31,22,-1,33,18,32,-1] -coord Coordinate { point [32.6836 1.37699 2.3622,32.7243 2.08267 2.3622,31.9763 2.08267 2.3622,32.6229 1.31633 2.3622,32.5737 1.24606 2.3622,32.7539 1.42619 2.3622,32.5375 1.16831 2.3622,31.9763 0.704723 2.3622,32.8316 1.46244 2.3622,32.5153 1.08545 2.3622,32.9145 1.48465 2.3622,32.5078 0.999998 2.3622,32.9999 1.49212 2.3622,32.5153 0.914541 2.3622,33.0854 1.48465 2.3622,32.5375 0.831681 2.3622,33.1683 1.46244 2.3622,32.5737 0.753936 2.3622,34.0039 2.08267 2.3622,33.246 1.42619 2.3622,32.6229 0.683666 2.3622,33.3163 1.37699 2.3622,31.9763 -0.003937 2.3622,32.6836 0.623008 2.3622,33.3769 1.31633 2.3622,32.7539 0.573805 2.3622,33.4261 1.24606 2.3622,32.8316 0.537552 2.3622,33.4624 1.16831 2.3622,32.9145 0.515349 2.3622,33.4846 1.08545 2.3622,32.9999 0.507873 2.3622,33.4921 0.999998 2.3622,34.0039 -0.003937 2.3622,33.0854 0.515349 2.3622,33.1683 0.537552 2.3622,33.246 0.573805 2.3622,33.3163 0.623008 2.3622,33.3769 0.683666 2.3622,33.4261 0.753936 2.3622,33.4624 0.831681 2.3622,33.4846 0.914541 2.3622] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,0,2,-1] -coord Coordinate { point [34.0039 -0.003937 2.3622,34.0039 -0.003937 -1.09055e-13,34.0039 2.08267 -5.5118e-15,34.0039 2.08267 2.3622] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [31.9763 -0.003937 1.49606e-14,31.9763 -0.003937 2.3622,31.9763 0.704723 1.10236e-14,31.9763 0.704723 2.3622] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [31.9763 -0.003937 2.3622,31.9763 -0.003937 1.49606e-14,34.0039 -0.003937 2.3622,34.0039 -0.003937 -1.09055e-13] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,3,4,-1,1,3,2,-1,4,5,6,-1,3,5,4,-1,6,7,8,-1,5,7,6,-1,8,9,10,-1,7,9,8,-1,10,11,12,-1,9,11,10,-1,11,13,12,-1,12,13,14,-1,13,15,14,-1,14,15,16,-1,15,17,16,-1,17,18,16,-1,16,18,19,-1,19,18,20,-1,18,21,20,-1,20,21,22,-1,21,23,22,-1,23,24,22,-1,22,24,25,-1,25,24,26,-1,24,27,26,-1,27,28,26,-1,26,28,29,-1,28,30,29,-1,29,30,31,-1,30,32,31,-1,31,32,33,-1,32,34,33,-1,33,34,35,-1,35,34,36,-1,34,37,36,-1,36,37,38,-1,37,39,38,-1,39,40,38,-1,38,40,41,-1,41,40,42,-1,40,43,42,-1,42,44,45,-1,43,44,42,-1,45,46,47,-1,47,46,48,-1,44,46,45,-1,46,49,48,-1,48,50,51,-1,49,50,48,-1,51,52,53,-1,53,52,54,-1,50,52,51,-1,52,55,54,-1,54,56,57,-1,55,56,54,-1,57,58,59,-1,59,58,60,-1,56,58,57,-1,58,61,60,-1,61,62,60,-1,60,62,63,-1,63,62,64,-1,62,65,64,-1,65,66,64,-1,64,66,67,-1,66,68,67,-1,67,68,69,-1,68,70,69,-1,69,70,71,-1,70,1,71,-1,71,1,0,-1] -coord Coordinate { point [32.9999 1.49212 -1.07086e-13,32.9999 1.49212 2.3622,32.9145 1.48465 -1.07703e-13,32.9145 1.48465 2.3622,32.8316 1.46244 -1.07367e-13,32.8316 1.46244 2.3622,32.7539 1.42619 -1.07022e-13,32.7539 1.42619 2.3622,32.6836 1.37699 -1.0668e-13,32.6836 1.37699 2.3622,32.6229 1.31633 -1.0635e-13,32.6229 1.31633 2.3622,32.5737 1.24606 -1.06042e-13,32.5737 1.24606 2.3622,32.5375 1.16831 -1.05767e-13,32.5375 1.16831 2.3622,32.5153 1.08545 -1.05531e-13,32.5153 1.08545 2.3622,32.5078 0.999998 2.3622,32.5078 0.999998 -1.05343e-13,32.5153 0.914541 -1.05208e-13,32.5153 0.914541 2.3622,32.5375 0.831681 -1.05131e-13,32.5375 0.831681 2.3622,32.5737 0.753936 2.3622,32.5737 0.753936 -1.05112e-13,32.6229 0.683666 -1.05154e-13,32.6229 0.683666 2.3622,32.6836 0.623008 2.3622,32.6836 0.623008 -1.05255e-13,32.7539 0.573805 2.3622,32.7539 0.573805 -1.05411e-13,32.8316 0.537552 2.3622,32.8316 0.537552 -1.05619e-13,32.9145 0.515349 2.3622,32.9145 0.515349 -1.05871e-13,32.9999 0.507873 -1.0616e-13,32.9999 0.507873 2.3622,33.0854 0.515349 -1.06478e-13,33.0854 0.515349 2.3622,33.1683 0.537552 2.3622,33.1683 0.537552 -1.06814e-13,33.246 0.573805 -1.07158e-13,33.246 0.573805 2.3622,33.3163 0.623008 2.3622,33.3163 0.623008 -1.07501e-13,33.3769 0.683666 2.3622,33.3769 0.683666 -1.07831e-13,33.4261 0.753936 -1.08138e-13,33.4261 0.753936 2.3622,33.4624 0.831681 2.3622,33.4624 0.831681 -1.08414e-13,33.4846 0.914541 2.3622,33.4846 0.914541 -1.08649e-13,33.4921 0.999998 -1.08837e-13,33.4921 0.999998 2.3622,33.4846 1.08545 2.3622,33.4846 1.08545 -1.08972e-13,33.4624 1.16831 2.3622,33.4624 1.16831 -1.0905e-13,33.4261 1.24606 -1.09068e-13,33.4261 1.24606 2.3622,33.3769 1.31633 2.3622,33.3769 1.31633 -1.09027e-13,33.3163 1.37699 -1.08926e-13,33.3163 1.37699 2.3622,33.246 1.42619 2.3622,33.246 1.42619 -1.08769e-13,33.1683 1.46244 2.3622,33.1683 1.46244 -1.08562e-13,33.0854 1.48465 2.3622,33.0854 1.48465 -1.0831e-13] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,4,5,-1,5,4,0,-1,6,7,4,-1,0,7,1,-1,4,7,0,-1] -coord Coordinate { point [-0.877951 2.47637 2.51968,-1.27165 2.47637 -0.15748,-1.27165 2.47637 2.51968,31.8779 2.47637 3.26771,31.8779 2.47637 2.51968,-0.877951 2.47637 3.26771,32.2716 2.47637 2.51968,32.2716 2.47637 -0.15748] -}} -appearance Appearance{material Material{diffuseColor 0.941176 0.909804 0.65098 -transparency 0}}} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [0.07874 0.119097 0.406398,0.07874 0.11811 0.397637,-0.07874 0.11811 0.397637,-0.07874 0.119097 0.406398,0.07874 0.122009 0.414719,-0.07874 0.122009 0.414719,0.07874 0.126699 0.422184,-0.07874 0.126699 0.422184,0.07874 0.132933 0.428418,-0.07874 0.132933 0.428418,0.07874 0.140398 0.433108,-0.07874 0.140398 0.433108,0.07874 0.148719 0.43602,-0.07874 0.148719 0.43602,0.07874 0.15748 0.437007,-0.07874 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [0.07874 0.11811 0.397637,0.07874 0.11811 -1.09055,-0.07874 0.11811 0.397637,-0.07874 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [0.11811 0.15748 0.476377,0.098425 0.134881 0.452197,0.07874 0.15748 0.437007,0.07874 0.148719 0.43602,0.07874 0.140398 0.433108,0.07874 0.132933 0.428418,0.11811 0.139959 0.474403,0.11811 0.123316 0.468579,0.11811 0.108386 0.459198,0.098425 0.115722 0.439395,0.07874 0.126699 0.422184,0.11811 0.0959186 0.446731,0.098425 0.10292 0.420236,0.07874 0.122009 0.414719,0.07874 0.119097 0.406398,0.07874 0.11811 0.397637,0.11811 0.07874 0.397637,0.11811 0.0865377 0.431801,0.11811 0.0807142 0.415158] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [-0.11811 0.07874 0.397637,-0.098425 0.10292 0.420236,-0.07874 0.11811 0.397637,-0.07874 0.119097 0.406398,-0.07874 0.122009 0.414719,-0.07874 0.126699 0.422184,-0.11811 0.0807142 0.415158,-0.11811 0.0865377 0.431801,-0.11811 0.0959186 0.446731,-0.098425 0.115722 0.439395,-0.07874 0.132933 0.428418,-0.11811 0.108386 0.459198,-0.098425 0.134881 0.452197,-0.07874 0.140398 0.433108,-0.07874 0.148719 0.43602,-0.07874 0.15748 0.437007,-0.11811 0.15748 0.476377,-0.11811 0.123316 0.468579,-0.11811 0.139959 0.474403] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [0.07874 4.4055 0.437007,0.07874 0.15748 0.437007,-0.07874 0.15748 0.437007,-0.07874 4.4055 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [0.11811 0.07874 0.397637,0.11811 0.07874 -1.09055,0.07874 0.11811 0.397637,0.07874 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [-0.07874 0.11811 -1.09055,-0.11811 0.07874 0.397637,-0.07874 0.11811 0.397637,-0.11811 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [-0.07874 0.11811 -1.09055,0.07874 0.11811 -1.09055,0.07874 0.07874 -1.12992,-0.07874 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [0.11811 4.4055 0.476377,0.11811 0.15748 0.476377,0.07874 4.4055 0.437007,0.07874 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,5,1,-1,4,1,0,-1,6,7,5,-1,6,5,4,-1,8,9,7,-1,8,7,6,-1,10,9,8,-1,11,9,10,-1,12,13,14,-1,12,10,13,-1,12,11,10,-1,15,12,14,-1,16,14,17,-1,16,15,14,-1,18,16,17,-1,19,16,18,-1] -coord Coordinate { point [0.11811 0.07874 0.397637,0.11811 -0.07874 0.397637,0.11811 -0.07874 -1.09055,0.11811 0.07874 -1.09055,0.11811 0.0807142 0.415158,0.11811 -0.0728175 0.450201,0.11811 0.0865377 0.431801,0.11811 -0.0553469 0.500129,0.11811 0.0959186 0.446731,0.11811 -0.0272042 0.544918,0.11811 0.108386 0.459198,0.11811 0.0101992 0.582321,0.11811 0.054988 0.610464,0.11811 0.123316 0.468579,0.11811 0.139959 0.474403,0.11811 0.104916 0.627934,0.11811 0.15748 0.633857,0.11811 0.15748 0.476377,0.11811 4.4055 0.476377,0.11811 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,4,5,0,-1,0,5,1,-1,6,7,4,-1,4,7,5,-1,8,9,6,-1,6,9,7,-1,8,10,9,-1,10,11,12,-1,8,11,10,-1,12,13,14,-1,11,13,12,-1,14,15,16,-1,13,15,14,-1,15,17,16,-1,17,18,16,-1,17,19,18,-1] -coord Coordinate { point [-0.11811 -0.07874 0.397637,-0.11811 0.07874 0.397637,-0.11811 -0.07874 -1.09055,-0.11811 0.07874 -1.09055,-0.11811 -0.0728175 0.450201,-0.11811 0.0807142 0.415158,-0.11811 -0.0553469 0.500129,-0.11811 0.0865377 0.431801,-0.11811 -0.0272042 0.544918,-0.11811 0.0959186 0.446731,-0.11811 0.108386 0.459198,-0.11811 0.0101992 0.582321,-0.11811 0.123316 0.468579,-0.11811 0.054988 0.610464,-0.11811 0.139959 0.474403,-0.11811 0.104916 0.627934,-0.11811 0.15748 0.476377,-0.11811 0.15748 0.633857,-0.11811 4.4055 0.476377,-0.11811 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [-0.11811 0.15748 0.476377,-0.07874 4.4055 0.437007,-0.07874 0.15748 0.437007,-0.11811 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [-0.07874 4.4055 0.437007,0.07874 4.44487 0.476377,0.07874 4.4055 0.437007,-0.07874 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [0.07874 0.11811 -1.09055,0.11811 0.07874 -1.09055,0.07874 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [-0.11811 0.07874 -1.09055,-0.07874 0.11811 -1.09055,-0.07874 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [0.07874 0.07874 -1.12992,0.07874 -0.07874 -1.12992,-0.07874 -0.07874 -1.12992,-0.07874 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [0.07874 4.4055 0.437007,0.07874 4.44487 0.476377,0.11811 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [0.07874 0.15748 0.673227,0.11811 4.4055 0.633857,0.07874 4.4055 0.673227,0.11811 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [0.11811 4.4055 0.633857,0.11811 4.4055 0.476377,0.07874 4.44487 0.476377,0.07874 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [0.11811 0.104916 0.627934,0.11811 0.15748 0.633857,0.07874 0.15748 0.673227,0.07874 0.0961555 0.666317,0.11811 0.054988 0.610464,0.07874 0.037906 0.645935,0.11811 0.0101992 0.582321,0.07874 -0.0143476 0.613102,0.11811 -0.0272042 0.544918,0.07874 -0.0579849 0.569465,0.11811 -0.0553469 0.500129,0.07874 -0.090818 0.517211,0.11811 -0.0728175 0.450201,0.07874 -0.1112 0.458962,0.11811 -0.07874 0.397637,0.07874 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [0.07874 -0.11811 -1.09055,0.11811 -0.07874 0.397637,0.07874 -0.11811 0.397637,0.11811 -0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [0.07874 0.07874 -1.12992,0.11811 -0.07874 -1.09055,0.07874 -0.07874 -1.12992,0.11811 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [-0.11811 4.4055 0.633857,-0.07874 0.15748 0.673227,-0.07874 4.4055 0.673227,-0.11811 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [-0.11811 4.4055 0.476377,-0.11811 4.4055 0.633857,-0.07874 4.44487 0.476377,-0.07874 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1] -coord Coordinate { point [-0.11811 0.15748 0.633857,-0.11811 0.104916 0.627934,-0.07874 0.15748 0.673227,-0.07874 0.0961555 0.666317,-0.11811 0.054988 0.610464,-0.07874 0.037906 0.645935,-0.11811 0.0101992 0.582321,-0.07874 -0.0143476 0.613102,-0.11811 -0.0272042 0.544918,-0.07874 -0.0579849 0.569465,-0.11811 -0.0553469 0.500129,-0.07874 -0.090818 0.517211,-0.11811 -0.0728175 0.450201,-0.07874 -0.1112 0.458962,-0.11811 -0.07874 0.397637,-0.07874 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [-0.11811 -0.07874 0.397637,-0.11811 -0.07874 -1.09055,-0.07874 -0.11811 0.397637,-0.07874 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [-0.11811 -0.07874 -1.09055,-0.07874 0.07874 -1.12992,-0.07874 -0.07874 -1.12992,-0.11811 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [-0.07874 4.4055 0.437007,-0.11811 4.4055 0.476377,-0.07874 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [0.07874 4.44487 0.633857,0.07874 4.44487 0.476377,-0.07874 4.44487 0.476377,-0.07874 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [-0.07874 -0.07874 -1.12992,0.07874 -0.07874 -1.12992,0.07874 -0.11811 -1.09055,-0.07874 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [0.07874 0.15748 0.673227,0.07874 4.4055 0.673227,-0.07874 4.4055 0.673227,-0.07874 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [0.07874 4.4055 0.673227,0.11811 4.4055 0.633857,0.07874 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,12,13,14,-1,11,13,12,-1,10,13,11,-1,13,15,14,-1] -coord Coordinate { point [0.07874 -0.11811 0.397637,0.07874 -0.1112 0.458962,-0.07874 -0.11811 0.397637,-0.07874 -0.1112 0.458962,0.07874 -0.090818 0.517211,-0.07874 -0.090818 0.517211,0.07874 -0.0579849 0.569465,-0.07874 -0.0579849 0.569465,0.07874 -0.0143476 0.613102,-0.07874 -0.0143476 0.613102,0.07874 0.037906 0.645935,-0.07874 0.037906 0.645935,-0.07874 0.0961555 0.666317,0.07874 0.0961555 0.666317,-0.07874 0.15748 0.673227,0.07874 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [0.07874 -0.11811 -1.09055,0.07874 -0.11811 0.397637,-0.07874 -0.11811 0.397637,-0.07874 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [0.11811 -0.07874 -1.09055,0.07874 -0.11811 -1.09055,0.07874 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [-0.11811 4.4055 0.633857,-0.07874 4.4055 0.673227,-0.07874 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [-0.07874 -0.11811 -1.09055,-0.11811 -0.07874 -1.09055,-0.07874 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [-0.07874 4.4055 0.673227,0.07874 4.4055 0.673227,0.07874 4.44487 0.633857,-0.07874 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [0.07874 -2.11811 2.0433,0.07874 -2.11035 2.14184,-0.07874 -2.11811 2.0433,-0.07874 -2.11035 2.14184,0.07874 -2.08728 2.23796,-0.07874 -2.08728 2.23796,0.07874 -2.04945 2.32928,-0.07874 -2.04945 2.32928,0.07874 -1.9978 2.41356,-0.07874 -1.9978 2.41356,0.07874 -1.93361 2.48872,-0.07874 -1.93361 2.48872,0.07874 -1.85844 2.55292,-0.07874 -1.85844 2.55292,0.07874 -1.77416 2.60457,-0.07874 -1.77416 2.60457,0.07874 -1.68284 2.64239,-0.07874 -1.68284 2.64239,0.07874 -1.58673 2.66547,-0.07874 -1.58673 2.66547,0.07874 -1.48819 2.67322,-0.07874 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [0.07874 -2.11811 -1.09055,0.07874 -2.11811 2.0433,-0.07874 -2.11811 2.0433,-0.07874 -2.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,18,20,19,-1,18,21,20,-1] -coord Coordinate { point [0.11811 -2.07874 2.0433,0.11811 -2.07147 2.13569,0.07874 -2.11811 2.0433,0.07874 -2.11035 2.14184,0.11811 -2.04983 2.22579,0.07874 -2.08728 2.23796,0.11811 -2.01437 2.31141,0.07874 -2.04945 2.32928,0.11811 -1.96595 2.39042,0.07874 -1.9978 2.41356,0.11811 -1.90577 2.46088,0.07874 -1.93361 2.48872,0.11811 -1.8353 2.52107,0.07874 -1.85844 2.55292,0.11811 -1.75629 2.56949,0.07874 -1.77416 2.60457,0.11811 -1.67068 2.60495,0.07874 -1.68284 2.64239,0.11811 -1.58057 2.62658,0.07874 -1.58673 2.66547,0.07874 -1.48819 2.67322,0.11811 -1.48819 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1,18,16,17,-1,19,16,18,-1,20,18,21,-1,20,19,18,-1] -coord Coordinate { point [-0.11811 -2.07147 2.13569,-0.11811 -2.07874 2.0433,-0.07874 -2.11811 2.0433,-0.07874 -2.11035 2.14184,-0.11811 -2.04983 2.22579,-0.07874 -2.08728 2.23796,-0.11811 -2.01437 2.31141,-0.07874 -2.04945 2.32928,-0.11811 -1.96595 2.39042,-0.07874 -1.9978 2.41356,-0.11811 -1.90577 2.46088,-0.07874 -1.93361 2.48872,-0.11811 -1.8353 2.52107,-0.07874 -1.85844 2.55292,-0.11811 -1.75629 2.56949,-0.07874 -1.77416 2.60457,-0.11811 -1.67068 2.60495,-0.07874 -1.68284 2.64239,-0.07874 -1.58673 2.66547,-0.11811 -1.58057 2.62658,-0.11811 -1.48819 2.63385,-0.07874 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [0.07874 -1.48819 2.67322,0.07874 4.4055 2.67322,-0.07874 -1.48819 2.67322,-0.07874 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [0.07874 -2.11811 -1.09055,0.11811 -2.07874 2.0433,0.07874 -2.11811 2.0433,0.11811 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [-0.11811 -2.07874 2.0433,-0.07874 -2.11811 -1.09055,-0.07874 -2.11811 2.0433,-0.11811 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [0.07874 -2.11811 -1.09055,-0.07874 -2.11811 -1.09055,0.07874 -2.07874 -1.12992,-0.07874 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1,4,5,6,-1,6,5,7,-1,1,8,9,-1,3,8,1,-1,10,11,4,-1,4,11,5,-1,9,12,13,-1,8,12,9,-1,14,15,10,-1,10,15,11,-1,13,16,17,-1,12,16,13,-1,18,19,14,-1,14,19,15,-1,17,20,21,-1,16,20,17,-1,22,23,18,-1,18,23,19,-1,21,24,22,-1,20,24,21,-1,22,24,23,-1] -coord Coordinate { point [0.11811 4.4055 2.63385,0.11811 -1.48819 2.47637,0.11811 4.4055 2.47637,0.11811 -1.48819 2.63385,0.11811 -1.92126 2.0433,0.11811 -2.07874 2.0433,0.11811 -1.92126 -1.09055,0.11811 -2.07874 -1.09055,0.11811 -1.58057 2.62658,0.11811 -1.56339 2.46979,0.11811 -1.91468 2.1185,0.11811 -2.07147 2.13569,0.11811 -1.67068 2.60495,0.11811 -1.6363 2.45026,0.11811 -1.89514 2.19142,0.11811 -2.04983 2.22579,0.11811 -1.75629 2.56949,0.11811 -1.70472 2.41835,0.11811 -1.86324 2.25984,0.11811 -2.01437 2.31141,0.11811 -1.8353 2.52107,0.11811 -1.76656 2.37505,0.11811 -1.81994 2.32168,0.11811 -1.96595 2.39042,0.11811 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [0.11811 -1.48819 2.63385,0.11811 4.4055 2.63385,0.07874 -1.48819 2.67322,0.07874 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1,4,5,6,-1,4,6,7,-1,8,0,9,-1,8,3,0,-1,10,11,5,-1,10,5,4,-1,12,9,13,-1,12,8,9,-1,14,15,11,-1,14,11,10,-1,16,13,17,-1,16,12,13,-1,18,19,15,-1,18,15,14,-1,20,17,21,-1,20,16,17,-1,22,23,19,-1,22,19,18,-1,24,21,23,-1,24,20,21,-1,24,23,22,-1] -coord Coordinate { point [-0.11811 -1.48819 2.47637,-0.11811 4.4055 2.63385,-0.11811 4.4055 2.47637,-0.11811 -1.48819 2.63385,-0.11811 -2.07874 2.0433,-0.11811 -1.92126 2.0433,-0.11811 -1.92126 -1.09055,-0.11811 -2.07874 -1.09055,-0.11811 -1.58057 2.62658,-0.11811 -1.56339 2.46979,-0.11811 -2.07147 2.13569,-0.11811 -1.91468 2.1185,-0.11811 -1.67068 2.60495,-0.11811 -1.6363 2.45026,-0.11811 -2.04983 2.22579,-0.11811 -1.89514 2.19142,-0.11811 -1.75629 2.56949,-0.11811 -1.70472 2.41835,-0.11811 -2.01437 2.31141,-0.11811 -1.86324 2.25984,-0.11811 -1.8353 2.52107,-0.11811 -1.76656 2.37505,-0.11811 -1.96595 2.39042,-0.11811 -1.81994 2.32168,-0.11811 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [-0.11811 4.4055 2.63385,-0.11811 -1.48819 2.63385,-0.07874 -1.48819 2.67322,-0.07874 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [0.07874 4.44487 2.63385,-0.07874 4.44487 2.63385,0.07874 4.4055 2.67322,-0.07874 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [0.11811 -2.07874 -1.09055,0.07874 -2.11811 -1.09055,0.07874 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [-0.07874 -2.11811 -1.09055,-0.11811 -2.07874 -1.09055,-0.07874 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [0.07874 -1.92126 -1.12992,-0.07874 -2.07874 -1.12992,-0.07874 -1.92126 -1.12992,0.07874 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [0.11811 4.4055 2.63385,0.07874 4.44487 2.47637,0.07874 4.44487 2.63385,0.11811 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [0.11811 4.4055 2.47637,0.11811 -1.48819 2.47637,0.07874 4.4055 2.437,0.07874 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,12,14,13,-1,14,15,13,-1,14,16,15,-1,16,17,15,-1,16,18,17,-1] -coord Coordinate { point [0.11811 -1.48819 2.47637,0.11811 -1.56339 2.46979,0.07874 -1.48819 2.437,0.07874 -1.56499 2.42944,0.11811 -1.6363 2.45026,0.07874 -1.63885 2.40703,0.11811 -1.70472 2.41835,0.07874 -1.70691 2.37065,0.11811 -1.76656 2.37505,0.07874 -1.76657 2.32169,0.11811 -1.81994 2.32168,0.07874 -1.81554 2.26203,0.11811 -1.86324 2.25984,0.07874 -1.85192 2.19397,0.11811 -1.89514 2.19142,0.07874 -1.87432 2.12011,0.11811 -1.91468 2.1185,0.07874 -1.88189 2.0433,0.11811 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [0.11811 -1.92126 2.0433,0.11811 -1.92126 -1.09055,0.07874 -1.88189 2.0433,0.07874 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [0.11811 -1.92126 -1.09055,0.11811 -2.07874 -1.09055,0.07874 -2.07874 -1.12992,0.07874 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [0.11811 4.4055 2.63385,0.07874 4.44487 2.63385,0.07874 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [-0.11811 -2.07874 -1.09055,-0.11811 -1.92126 -1.09055,-0.07874 -2.07874 -1.12992,-0.07874 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [-0.11811 -1.92126 -1.09055,-0.11811 -1.92126 2.0433,-0.07874 -1.88189 2.0433,-0.07874 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,12,13,-1,15,14,13,-1,16,14,15,-1,17,16,15,-1,18,16,17,-1] -coord Coordinate { point [-0.11811 -1.56339 2.46979,-0.11811 -1.48819 2.47637,-0.07874 -1.48819 2.437,-0.07874 -1.56499 2.42944,-0.11811 -1.6363 2.45026,-0.07874 -1.63885 2.40703,-0.11811 -1.70472 2.41835,-0.07874 -1.70691 2.37065,-0.11811 -1.76656 2.37505,-0.07874 -1.76657 2.32169,-0.11811 -1.81994 2.32168,-0.07874 -1.81554 2.26203,-0.11811 -1.86324 2.25984,-0.07874 -1.85192 2.19397,-0.11811 -1.89514 2.19142,-0.07874 -1.87432 2.12011,-0.11811 -1.91468 2.1185,-0.07874 -1.88189 2.0433,-0.11811 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [-0.07874 4.44487 2.47637,-0.11811 4.4055 2.63385,-0.07874 4.44487 2.63385,-0.11811 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [-0.11811 -1.48819 2.47637,-0.07874 4.4055 2.437,-0.07874 -1.48819 2.437,-0.11811 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [-0.11811 4.4055 2.63385,-0.07874 4.4055 2.67322,-0.07874 4.44487 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [0.07874 4.44487 2.63385,-0.07874 4.44487 2.47637,-0.07874 4.44487 2.63385,0.07874 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [0.07874 -1.92126 -1.12992,-0.07874 -1.92126 -1.12992,0.07874 -1.88189 -1.09055,-0.07874 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [0.07874 4.4055 2.437,0.07874 4.44487 2.47637,0.11811 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [0.07874 4.4055 2.437,0.07874 -1.48819 2.437,-0.07874 4.4055 2.437,-0.07874 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,15,16,-1,14,13,15,-1,14,12,13,-1,17,14,16,-1] -coord Coordinate { point [0.07874 -1.87432 2.12011,0.07874 -1.88189 2.0433,-0.07874 -1.88189 2.0433,-0.07874 -1.87432 2.12011,0.07874 -1.85192 2.19397,-0.07874 -1.85192 2.19397,0.07874 -1.81554 2.26203,-0.07874 -1.81554 2.26203,0.07874 -1.76657 2.32169,-0.07874 -1.76657 2.32169,0.07874 -1.70691 2.37065,-0.07874 -1.70691 2.37065,0.07874 -1.63885 2.40703,-0.07874 -1.63885 2.40703,0.07874 -1.56499 2.42944,-0.07874 -1.56499 2.42944,-0.07874 -1.48819 2.437,0.07874 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [0.07874 -1.88189 2.0433,0.07874 -1.88189 -1.09055,-0.07874 -1.88189 2.0433,-0.07874 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [0.07874 -1.88189 -1.09055,0.11811 -1.92126 -1.09055,0.07874 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [-0.11811 -1.92126 -1.09055,-0.07874 -1.88189 -1.09055,-0.07874 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [-0.07874 4.4055 2.437,-0.11811 4.4055 2.47637,-0.07874 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [0.07874 4.44487 2.47637,-0.07874 4.4055 2.437,-0.07874 4.44487 2.47637,0.07874 4.4055 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [1.07874 -2.11811 2.0433,1.07874 -2.11035 2.14184,0.921258 -2.11811 2.0433,0.921258 -2.11035 2.14184,1.07874 -2.08728 2.23796,0.921258 -2.08728 2.23796,1.07874 -2.04945 2.32928,0.921258 -2.04945 2.32928,1.07874 -1.9978 2.41356,0.921258 -1.9978 2.41356,1.07874 -1.93361 2.48872,0.921258 -1.93361 2.48872,1.07874 -1.85844 2.55292,0.921258 -1.85844 2.55292,1.07874 -1.77416 2.60457,0.921258 -1.77416 2.60457,1.07874 -1.68284 2.64239,0.921258 -1.68284 2.64239,1.07874 -1.58673 2.66547,0.921258 -1.58673 2.66547,1.07874 -1.48819 2.67322,0.921258 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [1.07874 -2.11811 -1.09055,1.07874 -2.11811 2.0433,0.921258 -2.11811 2.0433,0.921258 -2.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [1.11811 -2.07874 2.0433,1.11811 -2.07147 2.13569,1.07874 -2.11811 2.0433,1.07874 -2.11035 2.14184,1.11811 -2.04983 2.22579,1.07874 -2.08728 2.23796,1.11811 -2.01437 2.31141,1.07874 -2.04945 2.32928,1.11811 -1.96595 2.39042,1.07874 -1.9978 2.41356,1.11811 -1.90577 2.46088,1.07874 -1.93361 2.48872,1.11811 -1.8353 2.52107,1.07874 -1.85844 2.55292,1.11811 -1.75629 2.56949,1.07874 -1.77416 2.60457,1.11811 -1.67068 2.60495,1.07874 -1.68284 2.64239,1.11811 -1.58057 2.62658,1.07874 -1.58673 2.66547,1.11811 -1.48819 2.63385,1.07874 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1,18,17,19,-1,18,16,17,-1,20,19,21,-1,20,18,19,-1] -coord Coordinate { point [0.881888 -2.07147 2.13569,0.881888 -2.07874 2.0433,0.921258 -2.11811 2.0433,0.921258 -2.11035 2.14184,0.881888 -2.04983 2.22579,0.921258 -2.08728 2.23796,0.881888 -2.01437 2.31141,0.921258 -2.04945 2.32928,0.881888 -1.96595 2.39042,0.921258 -1.9978 2.41356,0.881888 -1.90577 2.46088,0.921258 -1.93361 2.48872,0.881888 -1.8353 2.52107,0.921258 -1.85844 2.55292,0.881888 -1.75629 2.56949,0.921258 -1.77416 2.60457,0.881888 -1.67068 2.60495,0.921258 -1.68284 2.64239,0.881888 -1.58057 2.62658,0.921258 -1.58673 2.66547,0.881888 -1.48819 2.63385,0.921258 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [1.07874 -1.48819 2.67322,1.07874 4.4055 2.67322,0.921258 -1.48819 2.67322,0.921258 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [1.07874 -2.11811 -1.09055,1.11811 -2.07874 2.0433,1.07874 -2.11811 2.0433,1.11811 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [0.881888 -2.07874 2.0433,0.921258 -2.11811 -1.09055,0.921258 -2.11811 2.0433,0.881888 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [1.07874 -2.11811 -1.09055,0.921258 -2.11811 -1.09055,1.07874 -2.07874 -1.12992,0.921258 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1,4,5,6,-1,6,5,7,-1,1,8,9,-1,3,8,1,-1,10,11,4,-1,4,11,5,-1,9,12,13,-1,8,12,9,-1,14,15,10,-1,10,15,11,-1,13,16,17,-1,12,16,13,-1,18,19,14,-1,14,19,15,-1,17,20,21,-1,16,20,17,-1,22,23,18,-1,18,23,19,-1,21,24,22,-1,20,24,21,-1,22,24,23,-1] -coord Coordinate { point [1.11811 4.4055 2.63385,1.11811 -1.48819 2.47637,1.11811 4.4055 2.47637,1.11811 -1.48819 2.63385,1.11811 -1.92126 2.0433,1.11811 -2.07874 2.0433,1.11811 -1.92126 -1.09055,1.11811 -2.07874 -1.09055,1.11811 -1.58057 2.62658,1.11811 -1.56339 2.46979,1.11811 -1.91468 2.1185,1.11811 -2.07147 2.13569,1.11811 -1.67068 2.60495,1.11811 -1.6363 2.45026,1.11811 -1.89514 2.19142,1.11811 -2.04983 2.22579,1.11811 -1.75629 2.56949,1.11811 -1.70472 2.41835,1.11811 -1.86324 2.25984,1.11811 -2.01437 2.31141,1.11811 -1.8353 2.52107,1.11811 -1.76656 2.37505,1.11811 -1.81994 2.32168,1.11811 -1.96595 2.39042,1.11811 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [1.11811 -1.48819 2.63385,1.11811 4.4055 2.63385,1.07874 -1.48819 2.67322,1.07874 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1,4,5,6,-1,4,6,7,-1,8,0,9,-1,8,3,0,-1,10,11,5,-1,10,5,4,-1,12,9,13,-1,12,8,9,-1,14,15,11,-1,14,11,10,-1,16,13,17,-1,16,12,13,-1,18,19,15,-1,18,15,14,-1,20,17,21,-1,20,16,17,-1,22,23,19,-1,22,19,18,-1,24,21,23,-1,24,20,21,-1,24,23,22,-1] -coord Coordinate { point [0.881888 -1.48819 2.47637,0.881888 4.4055 2.63385,0.881888 4.4055 2.47637,0.881888 -1.48819 2.63385,0.881888 -2.07874 2.0433,0.881888 -1.92126 2.0433,0.881888 -1.92126 -1.09055,0.881888 -2.07874 -1.09055,0.881888 -1.58057 2.62658,0.881888 -1.56339 2.46979,0.881888 -2.07147 2.13569,0.881888 -1.91468 2.1185,0.881888 -1.67068 2.60495,0.881888 -1.6363 2.45026,0.881888 -2.04983 2.22579,0.881888 -1.89514 2.19142,0.881888 -1.75629 2.56949,0.881888 -1.70472 2.41835,0.881888 -2.01437 2.31141,0.881888 -1.86324 2.25984,0.881888 -1.8353 2.52107,0.881888 -1.76656 2.37505,0.881888 -1.96595 2.39042,0.881888 -1.81994 2.32168,0.881888 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [0.881888 4.4055 2.63385,0.881888 -1.48819 2.63385,0.921258 -1.48819 2.67322,0.921258 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [1.07874 4.44487 2.63385,0.921258 4.44487 2.63385,1.07874 4.4055 2.67322,0.921258 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [1.11811 -2.07874 -1.09055,1.07874 -2.11811 -1.09055,1.07874 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [0.921258 -2.11811 -1.09055,0.881888 -2.07874 -1.09055,0.921258 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [1.07874 -1.92126 -1.12992,0.921258 -2.07874 -1.12992,0.921258 -1.92126 -1.12992,1.07874 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [1.11811 4.4055 2.63385,1.07874 4.44487 2.47637,1.07874 4.44487 2.63385,1.11811 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [1.11811 4.4055 2.47637,1.11811 -1.48819 2.47637,1.07874 4.4055 2.437,1.07874 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,12,14,13,-1,14,15,13,-1,14,16,15,-1,16,17,15,-1,16,18,17,-1] -coord Coordinate { point [1.11811 -1.48819 2.47637,1.11811 -1.56339 2.46979,1.07874 -1.48819 2.437,1.07874 -1.56499 2.42944,1.11811 -1.6363 2.45026,1.07874 -1.63885 2.40703,1.11811 -1.70472 2.41835,1.07874 -1.70691 2.37065,1.11811 -1.76656 2.37505,1.07874 -1.76657 2.32169,1.11811 -1.81994 2.32168,1.07874 -1.81554 2.26203,1.11811 -1.86324 2.25984,1.07874 -1.85192 2.19397,1.11811 -1.89514 2.19142,1.07874 -1.87432 2.12011,1.11811 -1.91468 2.1185,1.07874 -1.88189 2.0433,1.11811 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [1.11811 -1.92126 2.0433,1.11811 -1.92126 -1.09055,1.07874 -1.88189 2.0433,1.07874 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [1.11811 -1.92126 -1.09055,1.11811 -2.07874 -1.09055,1.07874 -2.07874 -1.12992,1.07874 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [1.11811 4.4055 2.63385,1.07874 4.44487 2.63385,1.07874 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [0.881888 -2.07874 -1.09055,0.881888 -1.92126 -1.09055,0.921258 -2.07874 -1.12992,0.921258 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [0.881888 -1.92126 -1.09055,0.881888 -1.92126 2.0433,0.921258 -1.88189 2.0433,0.921258 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,12,13,-1,15,14,13,-1,16,14,15,-1,17,16,15,-1,18,16,17,-1] -coord Coordinate { point [0.881888 -1.56339 2.46979,0.881888 -1.48819 2.47637,0.921258 -1.48819 2.437,0.921258 -1.56499 2.42944,0.881888 -1.6363 2.45026,0.921258 -1.63885 2.40703,0.881888 -1.70472 2.41835,0.921258 -1.70691 2.37065,0.881888 -1.76656 2.37505,0.921258 -1.76657 2.32169,0.881888 -1.81994 2.32168,0.921258 -1.81554 2.26203,0.881888 -1.86324 2.25984,0.921258 -1.85192 2.19397,0.881888 -1.89514 2.19142,0.921258 -1.87432 2.12011,0.881888 -1.91468 2.1185,0.921258 -1.88189 2.0433,0.881888 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [0.921258 4.44487 2.47637,0.881888 4.4055 2.63385,0.921258 4.44487 2.63385,0.881888 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [0.881888 -1.48819 2.47637,0.921258 4.4055 2.437,0.921258 -1.48819 2.437,0.881888 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [0.881888 4.4055 2.63385,0.921258 4.4055 2.67322,0.921258 4.44487 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [1.07874 4.44487 2.63385,0.921258 4.44487 2.47637,0.921258 4.44487 2.63385,1.07874 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [1.07874 -1.92126 -1.12992,0.921258 -1.92126 -1.12992,1.07874 -1.88189 -1.09055,0.921258 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [1.07874 4.4055 2.437,1.07874 4.44487 2.47637,1.11811 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [1.07874 4.4055 2.437,1.07874 -1.48819 2.437,0.921258 4.4055 2.437,0.921258 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,15,16,-1,14,13,15,-1,14,12,13,-1,17,14,16,-1] -coord Coordinate { point [1.07874 -1.87432 2.12011,1.07874 -1.88189 2.0433,0.921258 -1.88189 2.0433,0.921258 -1.87432 2.12011,1.07874 -1.85192 2.19397,0.921258 -1.85192 2.19397,1.07874 -1.81554 2.26203,0.921258 -1.81554 2.26203,1.07874 -1.76657 2.32169,0.921258 -1.76657 2.32169,1.07874 -1.70691 2.37065,0.921258 -1.70691 2.37065,1.07874 -1.63885 2.40703,0.921258 -1.63885 2.40703,1.07874 -1.56499 2.42944,0.921258 -1.56499 2.42944,0.921258 -1.48819 2.437,1.07874 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [1.07874 -1.88189 2.0433,1.07874 -1.88189 -1.09055,0.921258 -1.88189 2.0433,0.921258 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [1.07874 -1.88189 -1.09055,1.11811 -1.92126 -1.09055,1.07874 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [0.881888 -1.92126 -1.09055,0.921258 -1.88189 -1.09055,0.921258 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [0.921258 4.4055 2.437,0.881888 4.4055 2.47637,0.921258 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [1.07874 4.44487 2.47637,0.921258 4.4055 2.437,0.921258 4.44487 2.47637,1.07874 4.4055 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,19,18,20,-1,16,18,17,-1,18,21,20,-1] -coord Coordinate { point [2.07874 -2.11811 2.0433,2.07874 -2.11035 2.14184,1.92126 -2.11811 2.0433,1.92126 -2.11035 2.14184,2.07874 -2.08728 2.23796,1.92126 -2.08728 2.23796,2.07874 -2.04945 2.32928,1.92126 -2.04945 2.32928,2.07874 -1.9978 2.41356,1.92126 -1.9978 2.41356,2.07874 -1.93361 2.48872,1.92126 -1.93361 2.48872,2.07874 -1.85844 2.55292,1.92126 -1.85844 2.55292,2.07874 -1.77416 2.60457,1.92126 -1.77416 2.60457,2.07874 -1.68284 2.64239,1.92126 -1.68284 2.64239,2.07874 -1.58673 2.66547,1.92126 -1.58673 2.66547,1.92126 -1.48819 2.67322,2.07874 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [2.07874 -2.11811 -1.09055,2.07874 -2.11811 2.0433,1.92126 -2.11811 2.0433,1.92126 -2.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [2.11811 -2.07874 2.0433,2.11811 -2.07147 2.13569,2.07874 -2.11811 2.0433,2.07874 -2.11035 2.14184,2.11811 -2.04983 2.22579,2.07874 -2.08728 2.23796,2.11811 -2.01437 2.31141,2.07874 -2.04945 2.32928,2.11811 -1.96595 2.39042,2.07874 -1.9978 2.41356,2.11811 -1.90577 2.46088,2.07874 -1.93361 2.48872,2.11811 -1.8353 2.52107,2.07874 -1.85844 2.55292,2.11811 -1.75629 2.56949,2.07874 -1.77416 2.60457,2.11811 -1.67068 2.60495,2.07874 -1.68284 2.64239,2.11811 -1.58057 2.62658,2.07874 -1.58673 2.66547,2.11811 -1.48819 2.63385,2.07874 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1,18,17,19,-1,18,16,17,-1,20,19,21,-1,20,18,19,-1] -coord Coordinate { point [1.88189 -2.07147 2.13569,1.88189 -2.07874 2.0433,1.92126 -2.11811 2.0433,1.92126 -2.11035 2.14184,1.88189 -2.04983 2.22579,1.92126 -2.08728 2.23796,1.88189 -2.01437 2.31141,1.92126 -2.04945 2.32928,1.88189 -1.96595 2.39042,1.92126 -1.9978 2.41356,1.88189 -1.90577 2.46088,1.92126 -1.93361 2.48872,1.88189 -1.8353 2.52107,1.92126 -1.85844 2.55292,1.88189 -1.75629 2.56949,1.92126 -1.77416 2.60457,1.88189 -1.67068 2.60495,1.92126 -1.68284 2.64239,1.88189 -1.58057 2.62658,1.92126 -1.58673 2.66547,1.88189 -1.48819 2.63385,1.92126 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [2.07874 -1.48819 2.67322,2.07874 4.4055 2.67322,1.92126 -1.48819 2.67322,1.92126 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [2.07874 -2.11811 -1.09055,2.11811 -2.07874 2.0433,2.07874 -2.11811 2.0433,2.11811 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [1.88189 -2.07874 2.0433,1.92126 -2.11811 -1.09055,1.92126 -2.11811 2.0433,1.88189 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [2.07874 -2.11811 -1.09055,1.92126 -2.11811 -1.09055,2.07874 -2.07874 -1.12992,1.92126 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1,4,5,6,-1,6,5,7,-1,1,8,9,-1,3,8,1,-1,10,11,4,-1,4,11,5,-1,9,12,13,-1,8,12,9,-1,14,15,10,-1,10,15,11,-1,13,16,17,-1,12,16,13,-1,18,19,14,-1,14,19,15,-1,17,20,21,-1,16,20,17,-1,22,23,18,-1,18,23,19,-1,21,24,22,-1,20,24,21,-1,22,24,23,-1] -coord Coordinate { point [2.11811 4.4055 2.63385,2.11811 -1.48819 2.47637,2.11811 4.4055 2.47637,2.11811 -1.48819 2.63385,2.11811 -1.92126 2.0433,2.11811 -2.07874 2.0433,2.11811 -1.92126 -1.09055,2.11811 -2.07874 -1.09055,2.11811 -1.58057 2.62658,2.11811 -1.56339 2.46979,2.11811 -1.91468 2.1185,2.11811 -2.07147 2.13569,2.11811 -1.67068 2.60495,2.11811 -1.6363 2.45026,2.11811 -1.89514 2.19142,2.11811 -2.04983 2.22579,2.11811 -1.75629 2.56949,2.11811 -1.70472 2.41835,2.11811 -1.86324 2.25984,2.11811 -2.01437 2.31141,2.11811 -1.8353 2.52107,2.11811 -1.76656 2.37505,2.11811 -1.81994 2.32168,2.11811 -1.96595 2.39042,2.11811 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [2.11811 -1.48819 2.63385,2.11811 4.4055 2.63385,2.07874 -1.48819 2.67322,2.07874 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1,4,5,6,-1,4,6,7,-1,8,0,9,-1,8,3,0,-1,10,11,5,-1,10,5,4,-1,12,9,13,-1,12,8,9,-1,14,15,11,-1,14,11,10,-1,16,13,17,-1,16,12,13,-1,18,19,15,-1,18,15,14,-1,20,17,21,-1,20,16,17,-1,22,23,19,-1,22,19,18,-1,24,21,23,-1,24,20,21,-1,24,23,22,-1] -coord Coordinate { point [1.88189 -1.48819 2.47637,1.88189 4.4055 2.63385,1.88189 4.4055 2.47637,1.88189 -1.48819 2.63385,1.88189 -2.07874 2.0433,1.88189 -1.92126 2.0433,1.88189 -1.92126 -1.09055,1.88189 -2.07874 -1.09055,1.88189 -1.58057 2.62658,1.88189 -1.56339 2.46979,1.88189 -2.07147 2.13569,1.88189 -1.91468 2.1185,1.88189 -1.67068 2.60495,1.88189 -1.6363 2.45026,1.88189 -2.04983 2.22579,1.88189 -1.89514 2.19142,1.88189 -1.75629 2.56949,1.88189 -1.70472 2.41835,1.88189 -2.01437 2.31141,1.88189 -1.86324 2.25984,1.88189 -1.8353 2.52107,1.88189 -1.76656 2.37505,1.88189 -1.96595 2.39042,1.88189 -1.81994 2.32168,1.88189 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [1.88189 4.4055 2.63385,1.88189 -1.48819 2.63385,1.92126 -1.48819 2.67322,1.92126 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [2.07874 4.44487 2.63385,1.92126 4.44487 2.63385,2.07874 4.4055 2.67322,1.92126 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [2.11811 -2.07874 -1.09055,2.07874 -2.11811 -1.09055,2.07874 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [1.92126 -2.11811 -1.09055,1.88189 -2.07874 -1.09055,1.92126 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [2.07874 -1.92126 -1.12992,1.92126 -2.07874 -1.12992,1.92126 -1.92126 -1.12992,2.07874 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [2.11811 4.4055 2.63385,2.07874 4.44487 2.47637,2.07874 4.44487 2.63385,2.11811 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [2.11811 4.4055 2.47637,2.11811 -1.48819 2.47637,2.07874 4.4055 2.437,2.07874 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,12,14,13,-1,14,15,13,-1,14,16,15,-1,16,17,15,-1,16,18,17,-1] -coord Coordinate { point [2.11811 -1.48819 2.47637,2.11811 -1.56339 2.46979,2.07874 -1.48819 2.437,2.07874 -1.56499 2.42944,2.11811 -1.6363 2.45026,2.07874 -1.63885 2.40703,2.11811 -1.70472 2.41835,2.07874 -1.70691 2.37065,2.11811 -1.76656 2.37505,2.07874 -1.76657 2.32169,2.11811 -1.81994 2.32168,2.07874 -1.81554 2.26203,2.11811 -1.86324 2.25984,2.07874 -1.85192 2.19397,2.11811 -1.89514 2.19142,2.07874 -1.87432 2.12011,2.11811 -1.91468 2.1185,2.07874 -1.88189 2.0433,2.11811 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [2.11811 -1.92126 2.0433,2.11811 -1.92126 -1.09055,2.07874 -1.88189 2.0433,2.07874 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [2.11811 -1.92126 -1.09055,2.11811 -2.07874 -1.09055,2.07874 -2.07874 -1.12992,2.07874 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [2.11811 4.4055 2.63385,2.07874 4.44487 2.63385,2.07874 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [1.88189 -2.07874 -1.09055,1.88189 -1.92126 -1.09055,1.92126 -2.07874 -1.12992,1.92126 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [1.88189 -1.92126 -1.09055,1.88189 -1.92126 2.0433,1.92126 -1.88189 2.0433,1.92126 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,12,13,-1,15,14,13,-1,16,14,15,-1,17,16,15,-1,18,16,17,-1] -coord Coordinate { point [1.88189 -1.56339 2.46979,1.88189 -1.48819 2.47637,1.92126 -1.48819 2.437,1.92126 -1.56499 2.42944,1.88189 -1.6363 2.45026,1.92126 -1.63885 2.40703,1.88189 -1.70472 2.41835,1.92126 -1.70691 2.37065,1.88189 -1.76656 2.37505,1.92126 -1.76657 2.32169,1.88189 -1.81994 2.32168,1.92126 -1.81554 2.26203,1.88189 -1.86324 2.25984,1.92126 -1.85192 2.19397,1.88189 -1.89514 2.19142,1.92126 -1.87432 2.12011,1.88189 -1.91468 2.1185,1.92126 -1.88189 2.0433,1.88189 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [1.92126 4.44487 2.47637,1.88189 4.4055 2.63385,1.92126 4.44487 2.63385,1.88189 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [1.88189 -1.48819 2.47637,1.92126 4.4055 2.437,1.92126 -1.48819 2.437,1.88189 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [1.88189 4.4055 2.63385,1.92126 4.4055 2.67322,1.92126 4.44487 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [2.07874 4.44487 2.63385,1.92126 4.44487 2.47637,1.92126 4.44487 2.63385,2.07874 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [2.07874 -1.92126 -1.12992,1.92126 -1.92126 -1.12992,2.07874 -1.88189 -1.09055,1.92126 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [2.07874 4.4055 2.437,2.07874 4.44487 2.47637,2.11811 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [2.07874 4.4055 2.437,2.07874 -1.48819 2.437,1.92126 4.4055 2.437,1.92126 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,15,16,-1,14,13,15,-1,14,12,13,-1,17,14,16,-1] -coord Coordinate { point [2.07874 -1.87432 2.12011,2.07874 -1.88189 2.0433,1.92126 -1.88189 2.0433,1.92126 -1.87432 2.12011,2.07874 -1.85192 2.19397,1.92126 -1.85192 2.19397,2.07874 -1.81554 2.26203,1.92126 -1.81554 2.26203,2.07874 -1.76657 2.32169,1.92126 -1.76657 2.32169,2.07874 -1.70691 2.37065,1.92126 -1.70691 2.37065,2.07874 -1.63885 2.40703,1.92126 -1.63885 2.40703,2.07874 -1.56499 2.42944,1.92126 -1.56499 2.42944,1.92126 -1.48819 2.437,2.07874 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [2.07874 -1.88189 2.0433,2.07874 -1.88189 -1.09055,1.92126 -1.88189 2.0433,1.92126 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [2.07874 -1.88189 -1.09055,2.11811 -1.92126 -1.09055,2.07874 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [1.88189 -1.92126 -1.09055,1.92126 -1.88189 -1.09055,1.92126 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [1.92126 4.4055 2.437,1.88189 4.4055 2.47637,1.92126 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [2.07874 4.44487 2.47637,1.92126 4.4055 2.437,1.92126 4.44487 2.47637,2.07874 4.4055 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,19,18,20,-1,16,18,17,-1,18,21,20,-1] -coord Coordinate { point [3.07873 -2.11811 2.0433,3.07873 -2.11035 2.14184,2.92125 -2.11811 2.0433,2.92125 -2.11035 2.14184,3.07873 -2.08728 2.23796,2.92125 -2.08728 2.23796,3.07873 -2.04945 2.32928,2.92125 -2.04945 2.32928,3.07873 -1.9978 2.41356,2.92125 -1.9978 2.41356,3.07873 -1.93361 2.48872,2.92125 -1.93361 2.48872,3.07873 -1.85844 2.55292,2.92125 -1.85844 2.55292,3.07873 -1.77416 2.60457,2.92125 -1.77416 2.60457,3.07873 -1.68284 2.64239,2.92125 -1.68284 2.64239,3.07873 -1.58673 2.66547,2.92125 -1.58673 2.66547,2.92125 -1.48819 2.67322,3.07873 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [3.07873 -2.11811 -1.09055,3.07873 -2.11811 2.0433,2.92125 -2.11811 2.0433,2.92125 -2.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [3.1181 -2.07874 2.0433,3.1181 -2.07147 2.13569,3.07873 -2.11811 2.0433,3.07873 -2.11035 2.14184,3.1181 -2.04983 2.22579,3.07873 -2.08728 2.23796,3.1181 -2.01437 2.31141,3.07873 -2.04945 2.32928,3.1181 -1.96595 2.39042,3.07873 -1.9978 2.41356,3.1181 -1.90577 2.46088,3.07873 -1.93361 2.48872,3.1181 -1.8353 2.52107,3.07873 -1.85844 2.55292,3.1181 -1.75629 2.56949,3.07873 -1.77416 2.60457,3.1181 -1.67068 2.60495,3.07873 -1.68284 2.64239,3.1181 -1.58057 2.62658,3.07873 -1.58673 2.66547,3.1181 -1.48819 2.63385,3.07873 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1,18,17,19,-1,18,16,17,-1,20,19,21,-1,20,18,19,-1] -coord Coordinate { point [2.88188 -2.07147 2.13569,2.88188 -2.07874 2.0433,2.92125 -2.11811 2.0433,2.92125 -2.11035 2.14184,2.88188 -2.04983 2.22579,2.92125 -2.08728 2.23796,2.88188 -2.01437 2.31141,2.92125 -2.04945 2.32928,2.88188 -1.96595 2.39042,2.92125 -1.9978 2.41356,2.88188 -1.90577 2.46088,2.92125 -1.93361 2.48872,2.88188 -1.8353 2.52107,2.92125 -1.85844 2.55292,2.88188 -1.75629 2.56949,2.92125 -1.77416 2.60457,2.88188 -1.67068 2.60495,2.92125 -1.68284 2.64239,2.88188 -1.58057 2.62658,2.92125 -1.58673 2.66547,2.88188 -1.48819 2.63385,2.92125 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [3.07873 -1.48819 2.67322,3.07873 4.4055 2.67322,2.92125 -1.48819 2.67322,2.92125 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [3.07873 -2.11811 -1.09055,3.1181 -2.07874 2.0433,3.07873 -2.11811 2.0433,3.1181 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [2.88188 -2.07874 2.0433,2.92125 -2.11811 -1.09055,2.92125 -2.11811 2.0433,2.88188 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [3.07873 -2.11811 -1.09055,2.92125 -2.11811 -1.09055,3.07873 -2.07874 -1.12992,2.92125 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1,4,5,6,-1,6,5,7,-1,1,8,9,-1,3,8,1,-1,10,11,4,-1,4,11,5,-1,9,12,13,-1,8,12,9,-1,14,15,10,-1,10,15,11,-1,13,16,17,-1,12,16,13,-1,18,19,14,-1,14,19,15,-1,17,20,21,-1,16,20,17,-1,22,23,18,-1,18,23,19,-1,21,24,22,-1,20,24,21,-1,22,24,23,-1] -coord Coordinate { point [3.1181 4.4055 2.63385,3.1181 -1.48819 2.47637,3.1181 4.4055 2.47637,3.1181 -1.48819 2.63385,3.1181 -1.92126 2.0433,3.1181 -2.07874 2.0433,3.1181 -1.92126 -1.09055,3.1181 -2.07874 -1.09055,3.1181 -1.58057 2.62658,3.1181 -1.56339 2.46979,3.1181 -1.91468 2.1185,3.1181 -2.07147 2.13569,3.1181 -1.67068 2.60495,3.1181 -1.6363 2.45026,3.1181 -1.89514 2.19142,3.1181 -2.04983 2.22579,3.1181 -1.75629 2.56949,3.1181 -1.70472 2.41835,3.1181 -1.86324 2.25984,3.1181 -2.01437 2.31141,3.1181 -1.8353 2.52107,3.1181 -1.76656 2.37505,3.1181 -1.81994 2.32168,3.1181 -1.96595 2.39042,3.1181 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [3.1181 -1.48819 2.63385,3.1181 4.4055 2.63385,3.07873 -1.48819 2.67322,3.07873 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1,4,5,6,-1,4,6,7,-1,8,0,9,-1,8,3,0,-1,10,11,5,-1,10,5,4,-1,12,9,13,-1,12,8,9,-1,14,15,11,-1,14,11,10,-1,16,13,17,-1,16,12,13,-1,18,19,15,-1,18,15,14,-1,20,17,21,-1,20,16,17,-1,22,23,19,-1,22,19,18,-1,24,21,23,-1,24,20,21,-1,24,23,22,-1] -coord Coordinate { point [2.88188 -1.48819 2.47637,2.88188 4.4055 2.63385,2.88188 4.4055 2.47637,2.88188 -1.48819 2.63385,2.88188 -2.07874 2.0433,2.88188 -1.92126 2.0433,2.88188 -1.92126 -1.09055,2.88188 -2.07874 -1.09055,2.88188 -1.58057 2.62658,2.88188 -1.56339 2.46979,2.88188 -2.07147 2.13569,2.88188 -1.91468 2.1185,2.88188 -1.67068 2.60495,2.88188 -1.6363 2.45026,2.88188 -2.04983 2.22579,2.88188 -1.89514 2.19142,2.88188 -1.75629 2.56949,2.88188 -1.70472 2.41835,2.88188 -2.01437 2.31141,2.88188 -1.86324 2.25984,2.88188 -1.8353 2.52107,2.88188 -1.76656 2.37505,2.88188 -1.96595 2.39042,2.88188 -1.81994 2.32168,2.88188 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [2.88188 4.4055 2.63385,2.88188 -1.48819 2.63385,2.92125 -1.48819 2.67322,2.92125 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [3.07873 4.44487 2.63385,2.92125 4.44487 2.63385,3.07873 4.4055 2.67322,2.92125 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [3.1181 -2.07874 -1.09055,3.07873 -2.11811 -1.09055,3.07873 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [2.92125 -2.11811 -1.09055,2.88188 -2.07874 -1.09055,2.92125 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [3.07873 -1.92126 -1.12992,2.92125 -2.07874 -1.12992,2.92125 -1.92126 -1.12992,3.07873 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [3.1181 4.4055 2.63385,3.07873 4.44487 2.47637,3.07873 4.44487 2.63385,3.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [3.1181 4.4055 2.47637,3.1181 -1.48819 2.47637,3.07873 4.4055 2.437,3.07873 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,12,14,13,-1,14,15,13,-1,14,16,15,-1,16,17,15,-1,16,18,17,-1] -coord Coordinate { point [3.1181 -1.48819 2.47637,3.1181 -1.56339 2.46979,3.07873 -1.48819 2.437,3.07873 -1.56499 2.42944,3.1181 -1.6363 2.45026,3.07873 -1.63885 2.40703,3.1181 -1.70472 2.41835,3.07873 -1.70691 2.37065,3.1181 -1.76656 2.37505,3.07873 -1.76657 2.32169,3.1181 -1.81994 2.32168,3.07873 -1.81554 2.26203,3.1181 -1.86324 2.25984,3.07873 -1.85192 2.19397,3.1181 -1.89514 2.19142,3.07873 -1.87432 2.12011,3.1181 -1.91468 2.1185,3.07873 -1.88189 2.0433,3.1181 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [3.1181 -1.92126 2.0433,3.1181 -1.92126 -1.09055,3.07873 -1.88189 2.0433,3.07873 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [3.1181 -1.92126 -1.09055,3.1181 -2.07874 -1.09055,3.07873 -2.07874 -1.12992,3.07873 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [3.1181 4.4055 2.63385,3.07873 4.44487 2.63385,3.07873 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [2.88188 -2.07874 -1.09055,2.88188 -1.92126 -1.09055,2.92125 -2.07874 -1.12992,2.92125 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [2.88188 -1.92126 -1.09055,2.88188 -1.92126 2.0433,2.92125 -1.88189 2.0433,2.92125 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,12,13,-1,15,14,13,-1,16,14,15,-1,17,16,15,-1,18,16,17,-1] -coord Coordinate { point [2.88188 -1.56339 2.46979,2.88188 -1.48819 2.47637,2.92125 -1.48819 2.437,2.92125 -1.56499 2.42944,2.88188 -1.6363 2.45026,2.92125 -1.63885 2.40703,2.88188 -1.70472 2.41835,2.92125 -1.70691 2.37065,2.88188 -1.76656 2.37505,2.92125 -1.76657 2.32169,2.88188 -1.81994 2.32168,2.92125 -1.81554 2.26203,2.88188 -1.86324 2.25984,2.92125 -1.85192 2.19397,2.88188 -1.89514 2.19142,2.92125 -1.87432 2.12011,2.88188 -1.91468 2.1185,2.92125 -1.88189 2.0433,2.88188 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [2.92125 4.44487 2.47637,2.88188 4.4055 2.63385,2.92125 4.44487 2.63385,2.88188 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [2.88188 -1.48819 2.47637,2.92125 4.4055 2.437,2.92125 -1.48819 2.437,2.88188 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [2.88188 4.4055 2.63385,2.92125 4.4055 2.67322,2.92125 4.44487 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [3.07873 4.44487 2.63385,2.92125 4.44487 2.47637,2.92125 4.44487 2.63385,3.07873 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [3.07873 -1.92126 -1.12992,2.92125 -1.92126 -1.12992,3.07873 -1.88189 -1.09055,2.92125 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [3.07873 4.4055 2.437,3.07873 4.44487 2.47637,3.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [3.07873 4.4055 2.437,3.07873 -1.48819 2.437,2.92125 4.4055 2.437,2.92125 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,15,16,-1,14,13,15,-1,14,12,13,-1,17,14,16,-1] -coord Coordinate { point [3.07873 -1.87432 2.12011,3.07873 -1.88189 2.0433,2.92125 -1.88189 2.0433,2.92125 -1.87432 2.12011,3.07873 -1.85192 2.19397,2.92125 -1.85192 2.19397,3.07873 -1.81554 2.26203,2.92125 -1.81554 2.26203,3.07873 -1.76657 2.32169,2.92125 -1.76657 2.32169,3.07873 -1.70691 2.37065,2.92125 -1.70691 2.37065,3.07873 -1.63885 2.40703,2.92125 -1.63885 2.40703,3.07873 -1.56499 2.42944,2.92125 -1.56499 2.42944,2.92125 -1.48819 2.437,3.07873 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [3.07873 -1.88189 2.0433,3.07873 -1.88189 -1.09055,2.92125 -1.88189 2.0433,2.92125 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [3.07873 -1.88189 -1.09055,3.1181 -1.92126 -1.09055,3.07873 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [2.88188 -1.92126 -1.09055,2.92125 -1.88189 -1.09055,2.92125 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [2.92125 4.4055 2.437,2.88188 4.4055 2.47637,2.92125 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [3.07873 4.44487 2.47637,2.92125 4.4055 2.437,2.92125 4.44487 2.47637,3.07873 4.4055 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [4.07873 -2.11811 2.0433,4.07873 -2.11035 2.14184,3.92125 -2.11811 2.0433,3.92125 -2.11035 2.14184,4.07873 -2.08728 2.23796,3.92125 -2.08728 2.23796,4.07873 -2.04945 2.32928,3.92125 -2.04945 2.32928,4.07873 -1.9978 2.41356,3.92125 -1.9978 2.41356,4.07873 -1.93361 2.48872,3.92125 -1.93361 2.48872,4.07873 -1.85844 2.55292,3.92125 -1.85844 2.55292,4.07873 -1.77416 2.60457,3.92125 -1.77416 2.60457,4.07873 -1.68284 2.64239,3.92125 -1.68284 2.64239,4.07873 -1.58673 2.66547,3.92125 -1.58673 2.66547,4.07873 -1.48819 2.67322,3.92125 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [4.07873 -2.11811 -1.09055,4.07873 -2.11811 2.0433,3.92125 -2.11811 2.0433,3.92125 -2.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [4.1181 -2.07874 2.0433,4.1181 -2.07147 2.13569,4.07873 -2.11811 2.0433,4.07873 -2.11035 2.14184,4.1181 -2.04983 2.22579,4.07873 -2.08728 2.23796,4.1181 -2.01437 2.31141,4.07873 -2.04945 2.32928,4.1181 -1.96595 2.39042,4.07873 -1.9978 2.41356,4.1181 -1.90577 2.46088,4.07873 -1.93361 2.48872,4.1181 -1.8353 2.52107,4.07873 -1.85844 2.55292,4.1181 -1.75629 2.56949,4.07873 -1.77416 2.60457,4.1181 -1.67068 2.60495,4.07873 -1.68284 2.64239,4.1181 -1.58057 2.62658,4.07873 -1.58673 2.66547,4.1181 -1.48819 2.63385,4.07873 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1,18,17,19,-1,18,16,17,-1,20,19,21,-1,20,18,19,-1] -coord Coordinate { point [3.88188 -2.07147 2.13569,3.88188 -2.07874 2.0433,3.92125 -2.11811 2.0433,3.92125 -2.11035 2.14184,3.88188 -2.04983 2.22579,3.92125 -2.08728 2.23796,3.88188 -2.01437 2.31141,3.92125 -2.04945 2.32928,3.88188 -1.96595 2.39042,3.92125 -1.9978 2.41356,3.88188 -1.90577 2.46088,3.92125 -1.93361 2.48872,3.88188 -1.8353 2.52107,3.92125 -1.85844 2.55292,3.88188 -1.75629 2.56949,3.92125 -1.77416 2.60457,3.88188 -1.67068 2.60495,3.92125 -1.68284 2.64239,3.88188 -1.58057 2.62658,3.92125 -1.58673 2.66547,3.88188 -1.48819 2.63385,3.92125 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [4.07873 -1.48819 2.67322,4.07873 4.4055 2.67322,3.92125 -1.48819 2.67322,3.92125 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [4.07873 -2.11811 -1.09055,4.1181 -2.07874 2.0433,4.07873 -2.11811 2.0433,4.1181 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [3.88188 -2.07874 2.0433,3.92125 -2.11811 -1.09055,3.92125 -2.11811 2.0433,3.88188 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [4.07873 -2.11811 -1.09055,3.92125 -2.11811 -1.09055,4.07873 -2.07874 -1.12992,3.92125 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1,4,5,6,-1,6,5,7,-1,1,8,9,-1,3,8,1,-1,10,11,4,-1,4,11,5,-1,9,12,13,-1,8,12,9,-1,14,15,10,-1,10,15,11,-1,13,16,17,-1,12,16,13,-1,18,19,14,-1,14,19,15,-1,17,20,21,-1,16,20,17,-1,22,23,18,-1,18,23,19,-1,21,24,22,-1,20,24,21,-1,22,24,23,-1] -coord Coordinate { point [4.1181 4.4055 2.63385,4.1181 -1.48819 2.47637,4.1181 4.4055 2.47637,4.1181 -1.48819 2.63385,4.1181 -1.92126 2.0433,4.1181 -2.07874 2.0433,4.1181 -1.92126 -1.09055,4.1181 -2.07874 -1.09055,4.1181 -1.58057 2.62658,4.1181 -1.56339 2.46979,4.1181 -1.91468 2.1185,4.1181 -2.07147 2.13569,4.1181 -1.67068 2.60495,4.1181 -1.6363 2.45026,4.1181 -1.89514 2.19142,4.1181 -2.04983 2.22579,4.1181 -1.75629 2.56949,4.1181 -1.70472 2.41835,4.1181 -1.86324 2.25984,4.1181 -2.01437 2.31141,4.1181 -1.8353 2.52107,4.1181 -1.76656 2.37505,4.1181 -1.81994 2.32168,4.1181 -1.96595 2.39042,4.1181 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [4.1181 -1.48819 2.63385,4.1181 4.4055 2.63385,4.07873 -1.48819 2.67322,4.07873 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1,4,5,6,-1,4,6,7,-1,8,0,9,-1,8,3,0,-1,10,11,5,-1,10,5,4,-1,12,9,13,-1,12,8,9,-1,14,15,11,-1,14,11,10,-1,16,13,17,-1,16,12,13,-1,18,19,15,-1,18,15,14,-1,20,17,21,-1,20,16,17,-1,22,23,19,-1,22,19,18,-1,24,21,23,-1,24,20,21,-1,24,23,22,-1] -coord Coordinate { point [3.88188 -1.48819 2.47637,3.88188 4.4055 2.63385,3.88188 4.4055 2.47637,3.88188 -1.48819 2.63385,3.88188 -2.07874 2.0433,3.88188 -1.92126 2.0433,3.88188 -1.92126 -1.09055,3.88188 -2.07874 -1.09055,3.88188 -1.58057 2.62658,3.88188 -1.56339 2.46979,3.88188 -2.07147 2.13569,3.88188 -1.91468 2.1185,3.88188 -1.67068 2.60495,3.88188 -1.6363 2.45026,3.88188 -2.04983 2.22579,3.88188 -1.89514 2.19142,3.88188 -1.75629 2.56949,3.88188 -1.70472 2.41835,3.88188 -2.01437 2.31141,3.88188 -1.86324 2.25984,3.88188 -1.8353 2.52107,3.88188 -1.76656 2.37505,3.88188 -1.96595 2.39042,3.88188 -1.81994 2.32168,3.88188 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [3.88188 4.4055 2.63385,3.88188 -1.48819 2.63385,3.92125 -1.48819 2.67322,3.92125 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [4.07873 4.44487 2.63385,3.92125 4.44487 2.63385,4.07873 4.4055 2.67322,3.92125 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [4.1181 -2.07874 -1.09055,4.07873 -2.11811 -1.09055,4.07873 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [3.92125 -2.11811 -1.09055,3.88188 -2.07874 -1.09055,3.92125 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [4.07873 -1.92126 -1.12992,3.92125 -2.07874 -1.12992,3.92125 -1.92126 -1.12992,4.07873 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [4.1181 4.4055 2.63385,4.07873 4.44487 2.47637,4.07873 4.44487 2.63385,4.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [4.1181 4.4055 2.47637,4.1181 -1.48819 2.47637,4.07873 4.4055 2.437,4.07873 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,12,14,13,-1,14,15,13,-1,14,16,15,-1,16,17,15,-1,16,18,17,-1] -coord Coordinate { point [4.1181 -1.48819 2.47637,4.1181 -1.56339 2.46979,4.07873 -1.48819 2.437,4.07873 -1.56499 2.42944,4.1181 -1.6363 2.45026,4.07873 -1.63885 2.40703,4.1181 -1.70472 2.41835,4.07873 -1.70691 2.37065,4.1181 -1.76656 2.37505,4.07873 -1.76657 2.32169,4.1181 -1.81994 2.32168,4.07873 -1.81554 2.26203,4.1181 -1.86324 2.25984,4.07873 -1.85192 2.19397,4.1181 -1.89514 2.19142,4.07873 -1.87432 2.12011,4.1181 -1.91468 2.1185,4.07873 -1.88189 2.0433,4.1181 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [4.1181 -1.92126 2.0433,4.1181 -1.92126 -1.09055,4.07873 -1.88189 2.0433,4.07873 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [4.1181 -1.92126 -1.09055,4.1181 -2.07874 -1.09055,4.07873 -2.07874 -1.12992,4.07873 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [4.1181 4.4055 2.63385,4.07873 4.44487 2.63385,4.07873 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [3.88188 -2.07874 -1.09055,3.88188 -1.92126 -1.09055,3.92125 -2.07874 -1.12992,3.92125 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [3.88188 -1.92126 -1.09055,3.88188 -1.92126 2.0433,3.92125 -1.88189 2.0433,3.92125 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,12,13,-1,15,14,13,-1,16,14,15,-1,17,16,15,-1,18,16,17,-1] -coord Coordinate { point [3.88188 -1.56339 2.46979,3.88188 -1.48819 2.47637,3.92125 -1.48819 2.437,3.92125 -1.56499 2.42944,3.88188 -1.6363 2.45026,3.92125 -1.63885 2.40703,3.88188 -1.70472 2.41835,3.92125 -1.70691 2.37065,3.88188 -1.76656 2.37505,3.92125 -1.76657 2.32169,3.88188 -1.81994 2.32168,3.92125 -1.81554 2.26203,3.88188 -1.86324 2.25984,3.92125 -1.85192 2.19397,3.88188 -1.89514 2.19142,3.92125 -1.87432 2.12011,3.88188 -1.91468 2.1185,3.92125 -1.88189 2.0433,3.88188 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [3.92125 4.44487 2.47637,3.88188 4.4055 2.63385,3.92125 4.44487 2.63385,3.88188 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [3.88188 -1.48819 2.47637,3.92125 4.4055 2.437,3.92125 -1.48819 2.437,3.88188 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [3.88188 4.4055 2.63385,3.92125 4.4055 2.67322,3.92125 4.44487 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [4.07873 4.44487 2.63385,3.92125 4.44487 2.47637,3.92125 4.44487 2.63385,4.07873 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [4.07873 -1.92126 -1.12992,3.92125 -1.92126 -1.12992,4.07873 -1.88189 -1.09055,3.92125 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [4.07873 4.4055 2.437,4.07873 4.44487 2.47637,4.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [4.07873 4.4055 2.437,4.07873 -1.48819 2.437,3.92125 4.4055 2.437,3.92125 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,9,10,-1,8,7,9,-1,8,6,7,-1,11,8,10,-1,12,10,13,-1,12,11,10,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1] -coord Coordinate { point [4.07873 -1.87432 2.12011,4.07873 -1.88189 2.0433,3.92125 -1.88189 2.0433,3.92125 -1.87432 2.12011,4.07873 -1.85192 2.19397,3.92125 -1.85192 2.19397,4.07873 -1.81554 2.26203,3.92125 -1.81554 2.26203,4.07873 -1.76657 2.32169,3.92125 -1.76657 2.32169,3.92125 -1.70691 2.37065,4.07873 -1.70691 2.37065,4.07873 -1.63885 2.40703,3.92125 -1.63885 2.40703,4.07873 -1.56499 2.42944,3.92125 -1.56499 2.42944,4.07873 -1.48819 2.437,3.92125 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [4.07873 -1.88189 2.0433,4.07873 -1.88189 -1.09055,3.92125 -1.88189 2.0433,3.92125 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [4.07873 -1.88189 -1.09055,4.1181 -1.92126 -1.09055,4.07873 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [3.88188 -1.92126 -1.09055,3.92125 -1.88189 -1.09055,3.92125 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [3.92125 4.4055 2.437,3.88188 4.4055 2.47637,3.92125 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [4.07873 4.44487 2.47637,3.92125 4.4055 2.437,3.92125 4.44487 2.47637,4.07873 4.4055 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [5.07873 -2.11811 2.0433,5.07873 -2.11035 2.14184,4.92125 -2.11811 2.0433,4.92125 -2.11035 2.14184,5.07873 -2.08728 2.23796,4.92125 -2.08728 2.23796,5.07873 -2.04945 2.32928,4.92125 -2.04945 2.32928,5.07873 -1.9978 2.41356,4.92125 -1.9978 2.41356,5.07873 -1.93361 2.48872,4.92125 -1.93361 2.48872,5.07873 -1.85844 2.55292,4.92125 -1.85844 2.55292,5.07873 -1.77416 2.60457,4.92125 -1.77416 2.60457,5.07873 -1.68284 2.64239,4.92125 -1.68284 2.64239,5.07873 -1.58673 2.66547,4.92125 -1.58673 2.66547,5.07873 -1.48819 2.67322,4.92125 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [5.07873 -2.11811 -1.09055,5.07873 -2.11811 2.0433,4.92125 -2.11811 2.0433,4.92125 -2.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [5.1181 -2.07874 2.0433,5.1181 -2.07147 2.13569,5.07873 -2.11811 2.0433,5.07873 -2.11035 2.14184,5.1181 -2.04983 2.22579,5.07873 -2.08728 2.23796,5.1181 -2.01437 2.31141,5.07873 -2.04945 2.32928,5.1181 -1.96595 2.39042,5.07873 -1.9978 2.41356,5.1181 -1.90577 2.46088,5.07873 -1.93361 2.48872,5.1181 -1.8353 2.52107,5.07873 -1.85844 2.55292,5.1181 -1.75629 2.56949,5.07873 -1.77416 2.60457,5.1181 -1.67068 2.60495,5.07873 -1.68284 2.64239,5.1181 -1.58057 2.62658,5.07873 -1.58673 2.66547,5.1181 -1.48819 2.63385,5.07873 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1,18,17,19,-1,18,16,17,-1,20,19,21,-1,20,18,19,-1] -coord Coordinate { point [4.88188 -2.07147 2.13569,4.88188 -2.07874 2.0433,4.92125 -2.11811 2.0433,4.92125 -2.11035 2.14184,4.88188 -2.04983 2.22579,4.92125 -2.08728 2.23796,4.88188 -2.01437 2.31141,4.92125 -2.04945 2.32928,4.88188 -1.96595 2.39042,4.92125 -1.9978 2.41356,4.88188 -1.90577 2.46088,4.92125 -1.93361 2.48872,4.88188 -1.8353 2.52107,4.92125 -1.85844 2.55292,4.88188 -1.75629 2.56949,4.92125 -1.77416 2.60457,4.88188 -1.67068 2.60495,4.92125 -1.68284 2.64239,4.88188 -1.58057 2.62658,4.92125 -1.58673 2.66547,4.88188 -1.48819 2.63385,4.92125 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [5.07873 -1.48819 2.67322,5.07873 4.4055 2.67322,4.92125 -1.48819 2.67322,4.92125 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [5.07873 -2.11811 -1.09055,5.1181 -2.07874 2.0433,5.07873 -2.11811 2.0433,5.1181 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [4.88188 -2.07874 2.0433,4.92125 -2.11811 -1.09055,4.92125 -2.11811 2.0433,4.88188 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [5.07873 -2.11811 -1.09055,4.92125 -2.11811 -1.09055,5.07873 -2.07874 -1.12992,4.92125 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1,4,5,6,-1,6,5,7,-1,1,8,9,-1,3,8,1,-1,10,11,4,-1,4,11,5,-1,9,12,13,-1,8,12,9,-1,14,15,10,-1,10,15,11,-1,13,16,17,-1,12,16,13,-1,18,19,14,-1,14,19,15,-1,17,20,21,-1,16,20,17,-1,22,23,18,-1,18,23,19,-1,21,24,22,-1,20,24,21,-1,22,24,23,-1] -coord Coordinate { point [5.1181 4.4055 2.63385,5.1181 -1.48819 2.47637,5.1181 4.4055 2.47637,5.1181 -1.48819 2.63385,5.1181 -1.92126 2.0433,5.1181 -2.07874 2.0433,5.1181 -1.92126 -1.09055,5.1181 -2.07874 -1.09055,5.1181 -1.58057 2.62658,5.1181 -1.56339 2.46979,5.1181 -1.91468 2.1185,5.1181 -2.07147 2.13569,5.1181 -1.67068 2.60495,5.1181 -1.6363 2.45026,5.1181 -1.89514 2.19142,5.1181 -2.04983 2.22579,5.1181 -1.75629 2.56949,5.1181 -1.70472 2.41835,5.1181 -1.86324 2.25984,5.1181 -2.01437 2.31141,5.1181 -1.8353 2.52107,5.1181 -1.76656 2.37505,5.1181 -1.81994 2.32168,5.1181 -1.96595 2.39042,5.1181 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [5.1181 -1.48819 2.63385,5.1181 4.4055 2.63385,5.07873 -1.48819 2.67322,5.07873 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1,4,5,6,-1,4,6,7,-1,8,0,9,-1,8,3,0,-1,10,11,5,-1,10,5,4,-1,12,9,13,-1,12,8,9,-1,14,15,11,-1,14,11,10,-1,16,13,17,-1,16,12,13,-1,18,19,15,-1,18,15,14,-1,20,17,21,-1,20,16,17,-1,22,23,19,-1,22,19,18,-1,24,21,23,-1,24,20,21,-1,24,23,22,-1] -coord Coordinate { point [4.88188 -1.48819 2.47637,4.88188 4.4055 2.63385,4.88188 4.4055 2.47637,4.88188 -1.48819 2.63385,4.88188 -2.07874 2.0433,4.88188 -1.92126 2.0433,4.88188 -1.92126 -1.09055,4.88188 -2.07874 -1.09055,4.88188 -1.58057 2.62658,4.88188 -1.56339 2.46979,4.88188 -2.07147 2.13569,4.88188 -1.91468 2.1185,4.88188 -1.67068 2.60495,4.88188 -1.6363 2.45026,4.88188 -2.04983 2.22579,4.88188 -1.89514 2.19142,4.88188 -1.75629 2.56949,4.88188 -1.70472 2.41835,4.88188 -2.01437 2.31141,4.88188 -1.86324 2.25984,4.88188 -1.8353 2.52107,4.88188 -1.76656 2.37505,4.88188 -1.96595 2.39042,4.88188 -1.81994 2.32168,4.88188 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [4.88188 4.4055 2.63385,4.88188 -1.48819 2.63385,4.92125 -1.48819 2.67322,4.92125 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [5.07873 4.44487 2.63385,4.92125 4.44487 2.63385,5.07873 4.4055 2.67322,4.92125 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [5.1181 -2.07874 -1.09055,5.07873 -2.11811 -1.09055,5.07873 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [4.92125 -2.11811 -1.09055,4.88188 -2.07874 -1.09055,4.92125 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [5.07873 -1.92126 -1.12992,4.92125 -2.07874 -1.12992,4.92125 -1.92126 -1.12992,5.07873 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [5.1181 4.4055 2.63385,5.07873 4.44487 2.47637,5.07873 4.44487 2.63385,5.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [5.1181 4.4055 2.47637,5.1181 -1.48819 2.47637,5.07873 4.4055 2.437,5.07873 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,12,14,13,-1,14,15,13,-1,14,16,15,-1,16,17,15,-1,16,18,17,-1] -coord Coordinate { point [5.1181 -1.48819 2.47637,5.1181 -1.56339 2.46979,5.07873 -1.48819 2.437,5.07873 -1.56499 2.42944,5.1181 -1.6363 2.45026,5.07873 -1.63885 2.40703,5.1181 -1.70472 2.41835,5.07873 -1.70691 2.37065,5.1181 -1.76656 2.37505,5.07873 -1.76657 2.32169,5.1181 -1.81994 2.32168,5.07873 -1.81554 2.26203,5.1181 -1.86324 2.25984,5.07873 -1.85192 2.19397,5.1181 -1.89514 2.19142,5.07873 -1.87432 2.12011,5.1181 -1.91468 2.1185,5.07873 -1.88189 2.0433,5.1181 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [5.1181 -1.92126 2.0433,5.1181 -1.92126 -1.09055,5.07873 -1.88189 2.0433,5.07873 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [5.1181 -1.92126 -1.09055,5.1181 -2.07874 -1.09055,5.07873 -2.07874 -1.12992,5.07873 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [5.1181 4.4055 2.63385,5.07873 4.44487 2.63385,5.07873 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [4.88188 -2.07874 -1.09055,4.88188 -1.92126 -1.09055,4.92125 -2.07874 -1.12992,4.92125 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [4.88188 -1.92126 -1.09055,4.88188 -1.92126 2.0433,4.92125 -1.88189 2.0433,4.92125 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,12,13,-1,15,14,13,-1,16,14,15,-1,17,16,15,-1,18,16,17,-1] -coord Coordinate { point [4.88188 -1.56339 2.46979,4.88188 -1.48819 2.47637,4.92125 -1.48819 2.437,4.92125 -1.56499 2.42944,4.88188 -1.6363 2.45026,4.92125 -1.63885 2.40703,4.88188 -1.70472 2.41835,4.92125 -1.70691 2.37065,4.88188 -1.76656 2.37505,4.92125 -1.76657 2.32169,4.88188 -1.81994 2.32168,4.92125 -1.81554 2.26203,4.88188 -1.86324 2.25984,4.92125 -1.85192 2.19397,4.88188 -1.89514 2.19142,4.92125 -1.87432 2.12011,4.88188 -1.91468 2.1185,4.92125 -1.88189 2.0433,4.88188 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [4.92125 4.44487 2.47637,4.88188 4.4055 2.63385,4.92125 4.44487 2.63385,4.88188 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [4.88188 -1.48819 2.47637,4.92125 4.4055 2.437,4.92125 -1.48819 2.437,4.88188 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [4.88188 4.4055 2.63385,4.92125 4.4055 2.67322,4.92125 4.44487 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [5.07873 4.44487 2.63385,4.92125 4.44487 2.47637,4.92125 4.44487 2.63385,5.07873 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [5.07873 -1.92126 -1.12992,4.92125 -1.92126 -1.12992,5.07873 -1.88189 -1.09055,4.92125 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [5.07873 4.4055 2.437,5.07873 4.44487 2.47637,5.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [5.07873 4.4055 2.437,5.07873 -1.48819 2.437,4.92125 4.4055 2.437,4.92125 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,9,10,-1,8,7,9,-1,8,6,7,-1,11,8,10,-1,12,10,13,-1,12,11,10,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1] -coord Coordinate { point [5.07873 -1.87432 2.12011,5.07873 -1.88189 2.0433,4.92125 -1.88189 2.0433,4.92125 -1.87432 2.12011,5.07873 -1.85192 2.19397,4.92125 -1.85192 2.19397,5.07873 -1.81554 2.26203,4.92125 -1.81554 2.26203,5.07873 -1.76657 2.32169,4.92125 -1.76657 2.32169,4.92125 -1.70691 2.37065,5.07873 -1.70691 2.37065,5.07873 -1.63885 2.40703,4.92125 -1.63885 2.40703,5.07873 -1.56499 2.42944,4.92125 -1.56499 2.42944,5.07873 -1.48819 2.437,4.92125 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [5.07873 -1.88189 2.0433,5.07873 -1.88189 -1.09055,4.92125 -1.88189 2.0433,4.92125 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [5.07873 -1.88189 -1.09055,5.1181 -1.92126 -1.09055,5.07873 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [4.88188 -1.92126 -1.09055,4.92125 -1.88189 -1.09055,4.92125 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [4.92125 4.4055 2.437,4.88188 4.4055 2.47637,4.92125 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [5.07873 4.44487 2.47637,4.92125 4.4055 2.437,4.92125 4.44487 2.47637,5.07873 4.4055 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,19,18,20,-1,16,18,17,-1,18,21,20,-1] -coord Coordinate { point [6.07873 -2.11811 2.0433,6.07873 -2.11035 2.14184,5.92125 -2.11811 2.0433,5.92125 -2.11035 2.14184,6.07873 -2.08728 2.23796,5.92125 -2.08728 2.23796,6.07873 -2.04945 2.32928,5.92125 -2.04945 2.32928,6.07873 -1.9978 2.41356,5.92125 -1.9978 2.41356,6.07873 -1.93361 2.48872,5.92125 -1.93361 2.48872,6.07873 -1.85844 2.55292,5.92125 -1.85844 2.55292,6.07873 -1.77416 2.60457,5.92125 -1.77416 2.60457,6.07873 -1.68284 2.64239,5.92125 -1.68284 2.64239,6.07873 -1.58673 2.66547,5.92125 -1.58673 2.66547,5.92125 -1.48819 2.67322,6.07873 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [6.07873 -2.11811 -1.09055,6.07873 -2.11811 2.0433,5.92125 -2.11811 2.0433,5.92125 -2.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [6.1181 -2.07874 2.0433,6.1181 -2.07147 2.13569,6.07873 -2.11811 2.0433,6.07873 -2.11035 2.14184,6.1181 -2.04983 2.22579,6.07873 -2.08728 2.23796,6.1181 -2.01437 2.31141,6.07873 -2.04945 2.32928,6.1181 -1.96595 2.39042,6.07873 -1.9978 2.41356,6.1181 -1.90577 2.46088,6.07873 -1.93361 2.48872,6.1181 -1.8353 2.52107,6.07873 -1.85844 2.55292,6.1181 -1.75629 2.56949,6.07873 -1.77416 2.60457,6.1181 -1.67068 2.60495,6.07873 -1.68284 2.64239,6.1181 -1.58057 2.62658,6.07873 -1.58673 2.66547,6.1181 -1.48819 2.63385,6.07873 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1,18,17,19,-1,18,16,17,-1,20,19,21,-1,20,18,19,-1] -coord Coordinate { point [5.88188 -2.07147 2.13569,5.88188 -2.07874 2.0433,5.92125 -2.11811 2.0433,5.92125 -2.11035 2.14184,5.88188 -2.04983 2.22579,5.92125 -2.08728 2.23796,5.88188 -2.01437 2.31141,5.92125 -2.04945 2.32928,5.88188 -1.96595 2.39042,5.92125 -1.9978 2.41356,5.88188 -1.90577 2.46088,5.92125 -1.93361 2.48872,5.88188 -1.8353 2.52107,5.92125 -1.85844 2.55292,5.88188 -1.75629 2.56949,5.92125 -1.77416 2.60457,5.88188 -1.67068 2.60495,5.92125 -1.68284 2.64239,5.88188 -1.58057 2.62658,5.92125 -1.58673 2.66547,5.88188 -1.48819 2.63385,5.92125 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [6.07873 -1.48819 2.67322,6.07873 4.4055 2.67322,5.92125 -1.48819 2.67322,5.92125 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [6.07873 -2.11811 -1.09055,6.1181 -2.07874 2.0433,6.07873 -2.11811 2.0433,6.1181 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [5.88188 -2.07874 2.0433,5.92125 -2.11811 -1.09055,5.92125 -2.11811 2.0433,5.88188 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [6.07873 -2.11811 -1.09055,5.92125 -2.11811 -1.09055,6.07873 -2.07874 -1.12992,5.92125 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1,4,5,6,-1,6,5,7,-1,1,8,9,-1,3,8,1,-1,10,11,4,-1,4,11,5,-1,9,12,13,-1,8,12,9,-1,14,15,10,-1,10,15,11,-1,13,16,17,-1,12,16,13,-1,18,19,14,-1,14,19,15,-1,17,20,21,-1,16,20,17,-1,22,23,18,-1,18,23,19,-1,21,24,22,-1,20,24,21,-1,22,24,23,-1] -coord Coordinate { point [6.1181 4.4055 2.63385,6.1181 -1.48819 2.47637,6.1181 4.4055 2.47637,6.1181 -1.48819 2.63385,6.1181 -1.92126 2.0433,6.1181 -2.07874 2.0433,6.1181 -1.92126 -1.09055,6.1181 -2.07874 -1.09055,6.1181 -1.58057 2.62658,6.1181 -1.56339 2.46979,6.1181 -1.91468 2.1185,6.1181 -2.07147 2.13569,6.1181 -1.67068 2.60495,6.1181 -1.6363 2.45026,6.1181 -1.89514 2.19142,6.1181 -2.04983 2.22579,6.1181 -1.75629 2.56949,6.1181 -1.70472 2.41835,6.1181 -1.86324 2.25984,6.1181 -2.01437 2.31141,6.1181 -1.8353 2.52107,6.1181 -1.76656 2.37505,6.1181 -1.81994 2.32168,6.1181 -1.96595 2.39042,6.1181 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [6.1181 -1.48819 2.63385,6.1181 4.4055 2.63385,6.07873 -1.48819 2.67322,6.07873 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1,4,5,6,-1,4,6,7,-1,8,0,9,-1,8,3,0,-1,10,11,5,-1,10,5,4,-1,12,9,13,-1,12,8,9,-1,14,15,11,-1,14,11,10,-1,16,13,17,-1,16,12,13,-1,18,19,15,-1,18,15,14,-1,20,17,21,-1,20,16,17,-1,22,23,19,-1,22,19,18,-1,24,21,23,-1,24,20,21,-1,24,23,22,-1] -coord Coordinate { point [5.88188 -1.48819 2.47637,5.88188 4.4055 2.63385,5.88188 4.4055 2.47637,5.88188 -1.48819 2.63385,5.88188 -2.07874 2.0433,5.88188 -1.92126 2.0433,5.88188 -1.92126 -1.09055,5.88188 -2.07874 -1.09055,5.88188 -1.58057 2.62658,5.88188 -1.56339 2.46979,5.88188 -2.07147 2.13569,5.88188 -1.91468 2.1185,5.88188 -1.67068 2.60495,5.88188 -1.6363 2.45026,5.88188 -2.04983 2.22579,5.88188 -1.89514 2.19142,5.88188 -1.75629 2.56949,5.88188 -1.70472 2.41835,5.88188 -2.01437 2.31141,5.88188 -1.86324 2.25984,5.88188 -1.8353 2.52107,5.88188 -1.76656 2.37505,5.88188 -1.96595 2.39042,5.88188 -1.81994 2.32168,5.88188 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [5.88188 4.4055 2.63385,5.88188 -1.48819 2.63385,5.92125 -1.48819 2.67322,5.92125 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [6.07873 4.44487 2.63385,5.92125 4.44487 2.63385,6.07873 4.4055 2.67322,5.92125 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [6.1181 -2.07874 -1.09055,6.07873 -2.11811 -1.09055,6.07873 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [5.92125 -2.11811 -1.09055,5.88188 -2.07874 -1.09055,5.92125 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [6.07873 -1.92126 -1.12992,5.92125 -2.07874 -1.12992,5.92125 -1.92126 -1.12992,6.07873 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [6.1181 4.4055 2.63385,6.07873 4.44487 2.47637,6.07873 4.44487 2.63385,6.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [6.1181 4.4055 2.47637,6.1181 -1.48819 2.47637,6.07873 4.4055 2.437,6.07873 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,12,14,13,-1,14,15,13,-1,14,16,15,-1,16,17,15,-1,16,18,17,-1] -coord Coordinate { point [6.1181 -1.48819 2.47637,6.1181 -1.56339 2.46979,6.07873 -1.48819 2.437,6.07873 -1.56499 2.42944,6.1181 -1.6363 2.45026,6.07873 -1.63885 2.40703,6.1181 -1.70472 2.41835,6.07873 -1.70691 2.37065,6.1181 -1.76656 2.37505,6.07873 -1.76657 2.32169,6.1181 -1.81994 2.32168,6.07873 -1.81554 2.26203,6.1181 -1.86324 2.25984,6.07873 -1.85192 2.19397,6.1181 -1.89514 2.19142,6.07873 -1.87432 2.12011,6.1181 -1.91468 2.1185,6.07873 -1.88189 2.0433,6.1181 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [6.1181 -1.92126 2.0433,6.1181 -1.92126 -1.09055,6.07873 -1.88189 2.0433,6.07873 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [6.1181 -1.92126 -1.09055,6.1181 -2.07874 -1.09055,6.07873 -2.07874 -1.12992,6.07873 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [6.1181 4.4055 2.63385,6.07873 4.44487 2.63385,6.07873 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [5.88188 -2.07874 -1.09055,5.88188 -1.92126 -1.09055,5.92125 -2.07874 -1.12992,5.92125 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [5.88188 -1.92126 -1.09055,5.88188 -1.92126 2.0433,5.92125 -1.88189 2.0433,5.92125 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,12,13,-1,15,14,13,-1,16,14,15,-1,17,16,15,-1,18,16,17,-1] -coord Coordinate { point [5.88188 -1.56339 2.46979,5.88188 -1.48819 2.47637,5.92125 -1.48819 2.437,5.92125 -1.56499 2.42944,5.88188 -1.6363 2.45026,5.92125 -1.63885 2.40703,5.88188 -1.70472 2.41835,5.92125 -1.70691 2.37065,5.88188 -1.76656 2.37505,5.92125 -1.76657 2.32169,5.88188 -1.81994 2.32168,5.92125 -1.81554 2.26203,5.88188 -1.86324 2.25984,5.92125 -1.85192 2.19397,5.88188 -1.89514 2.19142,5.92125 -1.87432 2.12011,5.88188 -1.91468 2.1185,5.92125 -1.88189 2.0433,5.88188 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [5.92125 4.44487 2.47637,5.88188 4.4055 2.63385,5.92125 4.44487 2.63385,5.88188 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [5.88188 -1.48819 2.47637,5.92125 4.4055 2.437,5.92125 -1.48819 2.437,5.88188 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [5.88188 4.4055 2.63385,5.92125 4.4055 2.67322,5.92125 4.44487 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [6.07873 4.44487 2.63385,5.92125 4.44487 2.47637,5.92125 4.44487 2.63385,6.07873 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [6.07873 -1.92126 -1.12992,5.92125 -1.92126 -1.12992,6.07873 -1.88189 -1.09055,5.92125 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [6.07873 4.4055 2.437,6.07873 4.44487 2.47637,6.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [6.07873 4.4055 2.437,6.07873 -1.48819 2.437,5.92125 4.4055 2.437,5.92125 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,9,10,-1,8,7,9,-1,8,6,7,-1,11,8,10,-1,12,10,13,-1,12,11,10,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1] -coord Coordinate { point [6.07873 -1.87432 2.12011,6.07873 -1.88189 2.0433,5.92125 -1.88189 2.0433,5.92125 -1.87432 2.12011,6.07873 -1.85192 2.19397,5.92125 -1.85192 2.19397,6.07873 -1.81554 2.26203,5.92125 -1.81554 2.26203,6.07873 -1.76657 2.32169,5.92125 -1.76657 2.32169,5.92125 -1.70691 2.37065,6.07873 -1.70691 2.37065,6.07873 -1.63885 2.40703,5.92125 -1.63885 2.40703,6.07873 -1.56499 2.42944,5.92125 -1.56499 2.42944,6.07873 -1.48819 2.437,5.92125 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [6.07873 -1.88189 2.0433,6.07873 -1.88189 -1.09055,5.92125 -1.88189 2.0433,5.92125 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [6.07873 -1.88189 -1.09055,6.1181 -1.92126 -1.09055,6.07873 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [5.88188 -1.92126 -1.09055,5.92125 -1.88189 -1.09055,5.92125 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [5.92125 4.4055 2.437,5.88188 4.4055 2.47637,5.92125 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [6.07873 4.44487 2.47637,5.92125 4.4055 2.437,5.92125 4.44487 2.47637,6.07873 4.4055 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [7.07873 -2.11811 2.0433,7.07873 -2.11035 2.14184,6.92125 -2.11811 2.0433,6.92125 -2.11035 2.14184,7.07873 -2.08728 2.23796,6.92125 -2.08728 2.23796,7.07873 -2.04945 2.32928,6.92125 -2.04945 2.32928,7.07873 -1.9978 2.41356,6.92125 -1.9978 2.41356,7.07873 -1.93361 2.48872,6.92125 -1.93361 2.48872,7.07873 -1.85844 2.55292,6.92125 -1.85844 2.55292,7.07873 -1.77416 2.60457,6.92125 -1.77416 2.60457,7.07873 -1.68284 2.64239,6.92125 -1.68284 2.64239,7.07873 -1.58673 2.66547,6.92125 -1.58673 2.66547,7.07873 -1.48819 2.67322,6.92125 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [7.07873 -2.11811 -1.09055,7.07873 -2.11811 2.0433,6.92125 -2.11811 2.0433,6.92125 -2.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [7.1181 -2.07874 2.0433,7.1181 -2.07147 2.13569,7.07873 -2.11811 2.0433,7.07873 -2.11035 2.14184,7.1181 -2.04983 2.22579,7.07873 -2.08728 2.23796,7.1181 -2.01437 2.31141,7.07873 -2.04945 2.32928,7.1181 -1.96595 2.39042,7.07873 -1.9978 2.41356,7.1181 -1.90577 2.46088,7.07873 -1.93361 2.48872,7.1181 -1.8353 2.52107,7.07873 -1.85844 2.55292,7.1181 -1.75629 2.56949,7.07873 -1.77416 2.60457,7.1181 -1.67068 2.60495,7.07873 -1.68284 2.64239,7.1181 -1.58057 2.62658,7.07873 -1.58673 2.66547,7.1181 -1.48819 2.63385,7.07873 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1,18,17,19,-1,18,16,17,-1,20,19,21,-1,20,18,19,-1] -coord Coordinate { point [6.88188 -2.07147 2.13569,6.88188 -2.07874 2.0433,6.92125 -2.11811 2.0433,6.92125 -2.11035 2.14184,6.88188 -2.04983 2.22579,6.92125 -2.08728 2.23796,6.88188 -2.01437 2.31141,6.92125 -2.04945 2.32928,6.88188 -1.96595 2.39042,6.92125 -1.9978 2.41356,6.88188 -1.90577 2.46088,6.92125 -1.93361 2.48872,6.88188 -1.8353 2.52107,6.92125 -1.85844 2.55292,6.88188 -1.75629 2.56949,6.92125 -1.77416 2.60457,6.88188 -1.67068 2.60495,6.92125 -1.68284 2.64239,6.88188 -1.58057 2.62658,6.92125 -1.58673 2.66547,6.88188 -1.48819 2.63385,6.92125 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [7.07873 -1.48819 2.67322,7.07873 4.4055 2.67322,6.92125 -1.48819 2.67322,6.92125 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [7.07873 -2.11811 -1.09055,7.1181 -2.07874 2.0433,7.07873 -2.11811 2.0433,7.1181 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [6.88188 -2.07874 2.0433,6.92125 -2.11811 -1.09055,6.92125 -2.11811 2.0433,6.88188 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [7.07873 -2.11811 -1.09055,6.92125 -2.11811 -1.09055,7.07873 -2.07874 -1.12992,6.92125 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1,4,5,6,-1,6,5,7,-1,1,8,9,-1,3,8,1,-1,10,11,4,-1,4,11,5,-1,9,12,13,-1,8,12,9,-1,14,15,10,-1,10,15,11,-1,13,16,17,-1,12,16,13,-1,18,19,14,-1,14,19,15,-1,17,20,21,-1,16,20,17,-1,22,23,18,-1,18,23,19,-1,21,24,22,-1,20,24,21,-1,22,24,23,-1] -coord Coordinate { point [7.1181 4.4055 2.63385,7.1181 -1.48819 2.47637,7.1181 4.4055 2.47637,7.1181 -1.48819 2.63385,7.1181 -1.92126 2.0433,7.1181 -2.07874 2.0433,7.1181 -1.92126 -1.09055,7.1181 -2.07874 -1.09055,7.1181 -1.58057 2.62658,7.1181 -1.56339 2.46979,7.1181 -1.91468 2.1185,7.1181 -2.07147 2.13569,7.1181 -1.67068 2.60495,7.1181 -1.6363 2.45026,7.1181 -1.89514 2.19142,7.1181 -2.04983 2.22579,7.1181 -1.75629 2.56949,7.1181 -1.70472 2.41835,7.1181 -1.86324 2.25984,7.1181 -2.01437 2.31141,7.1181 -1.8353 2.52107,7.1181 -1.76656 2.37505,7.1181 -1.81994 2.32168,7.1181 -1.96595 2.39042,7.1181 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [7.1181 -1.48819 2.63385,7.1181 4.4055 2.63385,7.07873 -1.48819 2.67322,7.07873 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1,4,5,6,-1,4,6,7,-1,8,0,9,-1,8,3,0,-1,10,11,5,-1,10,5,4,-1,12,9,13,-1,12,8,9,-1,14,15,11,-1,14,11,10,-1,16,13,17,-1,16,12,13,-1,18,19,15,-1,18,15,14,-1,20,17,21,-1,20,16,17,-1,22,23,19,-1,22,19,18,-1,24,21,23,-1,24,20,21,-1,24,23,22,-1] -coord Coordinate { point [6.88188 -1.48819 2.47637,6.88188 4.4055 2.63385,6.88188 4.4055 2.47637,6.88188 -1.48819 2.63385,6.88188 -2.07874 2.0433,6.88188 -1.92126 2.0433,6.88188 -1.92126 -1.09055,6.88188 -2.07874 -1.09055,6.88188 -1.58057 2.62658,6.88188 -1.56339 2.46979,6.88188 -2.07147 2.13569,6.88188 -1.91468 2.1185,6.88188 -1.67068 2.60495,6.88188 -1.6363 2.45026,6.88188 -2.04983 2.22579,6.88188 -1.89514 2.19142,6.88188 -1.75629 2.56949,6.88188 -1.70472 2.41835,6.88188 -2.01437 2.31141,6.88188 -1.86324 2.25984,6.88188 -1.8353 2.52107,6.88188 -1.76656 2.37505,6.88188 -1.96595 2.39042,6.88188 -1.81994 2.32168,6.88188 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [6.88188 4.4055 2.63385,6.88188 -1.48819 2.63385,6.92125 -1.48819 2.67322,6.92125 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [7.07873 4.44487 2.63385,6.92125 4.44487 2.63385,7.07873 4.4055 2.67322,6.92125 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [7.1181 -2.07874 -1.09055,7.07873 -2.11811 -1.09055,7.07873 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [6.92125 -2.11811 -1.09055,6.88188 -2.07874 -1.09055,6.92125 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [7.07873 -1.92126 -1.12992,6.92125 -2.07874 -1.12992,6.92125 -1.92126 -1.12992,7.07873 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [7.1181 4.4055 2.63385,7.07873 4.44487 2.47637,7.07873 4.44487 2.63385,7.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [7.1181 4.4055 2.47637,7.1181 -1.48819 2.47637,7.07873 4.4055 2.437,7.07873 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,12,14,13,-1,14,15,13,-1,14,16,15,-1,16,17,15,-1,16,18,17,-1] -coord Coordinate { point [7.1181 -1.48819 2.47637,7.1181 -1.56339 2.46979,7.07873 -1.48819 2.437,7.07873 -1.56499 2.42944,7.1181 -1.6363 2.45026,7.07873 -1.63885 2.40703,7.1181 -1.70472 2.41835,7.07873 -1.70691 2.37065,7.1181 -1.76656 2.37505,7.07873 -1.76657 2.32169,7.1181 -1.81994 2.32168,7.07873 -1.81554 2.26203,7.1181 -1.86324 2.25984,7.07873 -1.85192 2.19397,7.1181 -1.89514 2.19142,7.07873 -1.87432 2.12011,7.1181 -1.91468 2.1185,7.07873 -1.88189 2.0433,7.1181 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [7.1181 -1.92126 2.0433,7.1181 -1.92126 -1.09055,7.07873 -1.88189 2.0433,7.07873 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [7.1181 -1.92126 -1.09055,7.1181 -2.07874 -1.09055,7.07873 -2.07874 -1.12992,7.07873 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [7.1181 4.4055 2.63385,7.07873 4.44487 2.63385,7.07873 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [6.88188 -2.07874 -1.09055,6.88188 -1.92126 -1.09055,6.92125 -2.07874 -1.12992,6.92125 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [6.88188 -1.92126 -1.09055,6.88188 -1.92126 2.0433,6.92125 -1.88189 2.0433,6.92125 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,12,13,-1,15,14,13,-1,16,14,15,-1,17,16,15,-1,18,16,17,-1] -coord Coordinate { point [6.88188 -1.56339 2.46979,6.88188 -1.48819 2.47637,6.92125 -1.48819 2.437,6.92125 -1.56499 2.42944,6.88188 -1.6363 2.45026,6.92125 -1.63885 2.40703,6.88188 -1.70472 2.41835,6.92125 -1.70691 2.37065,6.88188 -1.76656 2.37505,6.92125 -1.76657 2.32169,6.88188 -1.81994 2.32168,6.92125 -1.81554 2.26203,6.88188 -1.86324 2.25984,6.92125 -1.85192 2.19397,6.88188 -1.89514 2.19142,6.92125 -1.87432 2.12011,6.88188 -1.91468 2.1185,6.92125 -1.88189 2.0433,6.88188 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [6.92125 4.44487 2.47637,6.88188 4.4055 2.63385,6.92125 4.44487 2.63385,6.88188 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [6.88188 -1.48819 2.47637,6.92125 4.4055 2.437,6.92125 -1.48819 2.437,6.88188 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [6.88188 4.4055 2.63385,6.92125 4.4055 2.67322,6.92125 4.44487 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,1,3,2,-1] -coord Coordinate { point [6.92125 4.44487 2.63385,7.07873 4.44487 2.63385,6.92125 4.44487 2.47637,7.07873 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [7.07873 -1.92126 -1.12992,6.92125 -1.92126 -1.12992,7.07873 -1.88189 -1.09055,6.92125 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [7.07873 4.4055 2.437,7.07873 4.44487 2.47637,7.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [7.07873 4.4055 2.437,7.07873 -1.48819 2.437,6.92125 4.4055 2.437,6.92125 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,9,10,-1,8,7,9,-1,8,6,7,-1,11,8,10,-1,12,10,13,-1,12,11,10,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1] -coord Coordinate { point [7.07873 -1.87432 2.12011,7.07873 -1.88189 2.0433,6.92125 -1.88189 2.0433,6.92125 -1.87432 2.12011,7.07873 -1.85192 2.19397,6.92125 -1.85192 2.19397,7.07873 -1.81554 2.26203,6.92125 -1.81554 2.26203,7.07873 -1.76657 2.32169,6.92125 -1.76657 2.32169,6.92125 -1.70691 2.37065,7.07873 -1.70691 2.37065,7.07873 -1.63885 2.40703,6.92125 -1.63885 2.40703,7.07873 -1.56499 2.42944,6.92125 -1.56499 2.42944,7.07873 -1.48819 2.437,6.92125 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [7.07873 -1.88189 2.0433,7.07873 -1.88189 -1.09055,6.92125 -1.88189 2.0433,6.92125 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [7.07873 -1.88189 -1.09055,7.1181 -1.92126 -1.09055,7.07873 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [6.88188 -1.92126 -1.09055,6.92125 -1.88189 -1.09055,6.92125 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [6.92125 4.4055 2.437,6.88188 4.4055 2.47637,6.92125 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [7.07873 4.44487 2.47637,6.92125 4.4055 2.437,6.92125 4.44487 2.47637,7.07873 4.4055 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [8.07872 -2.11811 2.0433,8.07872 -2.11035 2.14184,7.92124 -2.11811 2.0433,7.92124 -2.11035 2.14184,8.07872 -2.08728 2.23796,7.92124 -2.08728 2.23796,8.07872 -2.04945 2.32928,7.92124 -2.04945 2.32928,8.07872 -1.9978 2.41356,7.92124 -1.9978 2.41356,8.07872 -1.93361 2.48872,7.92124 -1.93361 2.48872,8.07872 -1.85844 2.55292,7.92124 -1.85844 2.55292,8.07872 -1.77416 2.60457,7.92124 -1.77416 2.60457,8.07872 -1.68284 2.64239,7.92124 -1.68284 2.64239,8.07872 -1.58673 2.66547,7.92124 -1.58673 2.66547,8.07872 -1.48819 2.67322,7.92124 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [8.07872 -2.11811 -1.09055,8.07872 -2.11811 2.0433,7.92124 -2.11811 2.0433,7.92124 -2.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [8.11809 -2.07874 2.0433,8.11809 -2.07147 2.13569,8.07872 -2.11811 2.0433,8.07872 -2.11035 2.14184,8.11809 -2.04983 2.22579,8.07872 -2.08728 2.23796,8.11809 -2.01437 2.31141,8.07872 -2.04945 2.32928,8.11809 -1.96595 2.39042,8.07872 -1.9978 2.41356,8.11809 -1.90577 2.46088,8.07872 -1.93361 2.48872,8.11809 -1.8353 2.52107,8.07872 -1.85844 2.55292,8.11809 -1.75629 2.56949,8.07872 -1.77416 2.60457,8.11809 -1.67068 2.60495,8.07872 -1.68284 2.64239,8.11809 -1.58057 2.62658,8.07872 -1.58673 2.66547,8.11809 -1.48819 2.63385,8.07872 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1,18,17,19,-1,18,16,17,-1,20,19,21,-1,20,18,19,-1] -coord Coordinate { point [7.88187 -2.07147 2.13569,7.88187 -2.07874 2.0433,7.92124 -2.11811 2.0433,7.92124 -2.11035 2.14184,7.88187 -2.04983 2.22579,7.92124 -2.08728 2.23796,7.88187 -2.01437 2.31141,7.92124 -2.04945 2.32928,7.88187 -1.96595 2.39042,7.92124 -1.9978 2.41356,7.88187 -1.90577 2.46088,7.92124 -1.93361 2.48872,7.88187 -1.8353 2.52107,7.92124 -1.85844 2.55292,7.88187 -1.75629 2.56949,7.92124 -1.77416 2.60457,7.88187 -1.67068 2.60495,7.92124 -1.68284 2.64239,7.88187 -1.58057 2.62658,7.92124 -1.58673 2.66547,7.88187 -1.48819 2.63385,7.92124 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [8.07872 -1.48819 2.67322,8.07872 4.4055 2.67322,7.92124 -1.48819 2.67322,7.92124 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [8.07872 -2.11811 -1.09055,8.11809 -2.07874 2.0433,8.07872 -2.11811 2.0433,8.11809 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [7.88187 -2.07874 2.0433,7.92124 -2.11811 -1.09055,7.92124 -2.11811 2.0433,7.88187 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [8.07872 -2.11811 -1.09055,7.92124 -2.11811 -1.09055,8.07872 -2.07874 -1.12992,7.92124 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1,4,5,6,-1,6,5,7,-1,1,8,9,-1,3,8,1,-1,10,11,4,-1,4,11,5,-1,9,12,13,-1,8,12,9,-1,14,15,10,-1,10,15,11,-1,13,16,17,-1,12,16,13,-1,18,19,14,-1,14,19,15,-1,17,20,21,-1,16,20,17,-1,22,23,18,-1,18,23,19,-1,21,24,22,-1,20,24,21,-1,22,24,23,-1] -coord Coordinate { point [8.11809 4.4055 2.63385,8.11809 -1.48819 2.47637,8.11809 4.4055 2.47637,8.11809 -1.48819 2.63385,8.11809 -1.92126 2.0433,8.11809 -2.07874 2.0433,8.11809 -1.92126 -1.09055,8.11809 -2.07874 -1.09055,8.11809 -1.58057 2.62658,8.11809 -1.56339 2.46979,8.11809 -1.91468 2.1185,8.11809 -2.07147 2.13569,8.11809 -1.67068 2.60495,8.11809 -1.6363 2.45026,8.11809 -1.89514 2.19142,8.11809 -2.04983 2.22579,8.11809 -1.75629 2.56949,8.11809 -1.70472 2.41835,8.11809 -1.86324 2.25984,8.11809 -2.01437 2.31141,8.11809 -1.8353 2.52107,8.11809 -1.76656 2.37505,8.11809 -1.81994 2.32168,8.11809 -1.96595 2.39042,8.11809 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [8.11809 -1.48819 2.63385,8.11809 4.4055 2.63385,8.07872 -1.48819 2.67322,8.07872 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1,4,5,6,-1,4,6,7,-1,8,0,9,-1,8,3,0,-1,10,11,5,-1,10,5,4,-1,12,9,13,-1,12,8,9,-1,14,15,11,-1,14,11,10,-1,16,13,17,-1,16,12,13,-1,18,19,15,-1,18,15,14,-1,20,17,21,-1,20,16,17,-1,22,23,19,-1,22,19,18,-1,24,21,23,-1,24,20,21,-1,24,23,22,-1] -coord Coordinate { point [7.88187 -1.48819 2.47637,7.88187 4.4055 2.63385,7.88187 4.4055 2.47637,7.88187 -1.48819 2.63385,7.88187 -2.07874 2.0433,7.88187 -1.92126 2.0433,7.88187 -1.92126 -1.09055,7.88187 -2.07874 -1.09055,7.88187 -1.58057 2.62658,7.88187 -1.56339 2.46979,7.88187 -2.07147 2.13569,7.88187 -1.91468 2.1185,7.88187 -1.67068 2.60495,7.88187 -1.6363 2.45026,7.88187 -2.04983 2.22579,7.88187 -1.89514 2.19142,7.88187 -1.75629 2.56949,7.88187 -1.70472 2.41835,7.88187 -2.01437 2.31141,7.88187 -1.86324 2.25984,7.88187 -1.8353 2.52107,7.88187 -1.76656 2.37505,7.88187 -1.96595 2.39042,7.88187 -1.81994 2.32168,7.88187 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [7.88187 4.4055 2.63385,7.88187 -1.48819 2.63385,7.92124 -1.48819 2.67322,7.92124 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [8.07872 4.44487 2.63385,7.92124 4.44487 2.63385,8.07872 4.4055 2.67322,7.92124 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [8.11809 -2.07874 -1.09055,8.07872 -2.11811 -1.09055,8.07872 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [7.92124 -2.11811 -1.09055,7.88187 -2.07874 -1.09055,7.92124 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [8.07872 -1.92126 -1.12992,7.92124 -2.07874 -1.12992,7.92124 -1.92126 -1.12992,8.07872 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [8.11809 4.4055 2.63385,8.07872 4.44487 2.47637,8.07872 4.44487 2.63385,8.11809 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [8.11809 4.4055 2.47637,8.11809 -1.48819 2.47637,8.07872 4.4055 2.437,8.07872 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,12,14,13,-1,14,15,13,-1,14,16,15,-1,16,17,15,-1,16,18,17,-1] -coord Coordinate { point [8.11809 -1.48819 2.47637,8.11809 -1.56339 2.46979,8.07872 -1.48819 2.437,8.07872 -1.56499 2.42944,8.11809 -1.6363 2.45026,8.07872 -1.63885 2.40703,8.11809 -1.70472 2.41835,8.07872 -1.70691 2.37065,8.11809 -1.76656 2.37505,8.07872 -1.76657 2.32169,8.11809 -1.81994 2.32168,8.07872 -1.81554 2.26203,8.11809 -1.86324 2.25984,8.07872 -1.85192 2.19397,8.11809 -1.89514 2.19142,8.07872 -1.87432 2.12011,8.11809 -1.91468 2.1185,8.07872 -1.88189 2.0433,8.11809 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [8.11809 -1.92126 2.0433,8.11809 -1.92126 -1.09055,8.07872 -1.88189 2.0433,8.07872 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [8.11809 -1.92126 -1.09055,8.11809 -2.07874 -1.09055,8.07872 -2.07874 -1.12992,8.07872 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [8.11809 4.4055 2.63385,8.07872 4.44487 2.63385,8.07872 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [7.88187 -2.07874 -1.09055,7.88187 -1.92126 -1.09055,7.92124 -2.07874 -1.12992,7.92124 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [7.88187 -1.92126 -1.09055,7.88187 -1.92126 2.0433,7.92124 -1.88189 2.0433,7.92124 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,12,13,-1,15,14,13,-1,16,14,15,-1,17,16,15,-1,18,16,17,-1] -coord Coordinate { point [7.88187 -1.56339 2.46979,7.88187 -1.48819 2.47637,7.92124 -1.48819 2.437,7.92124 -1.56499 2.42944,7.88187 -1.6363 2.45026,7.92124 -1.63885 2.40703,7.88187 -1.70472 2.41835,7.92124 -1.70691 2.37065,7.88187 -1.76656 2.37505,7.92124 -1.76657 2.32169,7.88187 -1.81994 2.32168,7.92124 -1.81554 2.26203,7.88187 -1.86324 2.25984,7.92124 -1.85192 2.19397,7.88187 -1.89514 2.19142,7.92124 -1.87432 2.12011,7.88187 -1.91468 2.1185,7.92124 -1.88189 2.0433,7.88187 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [7.92124 4.44487 2.47637,7.88187 4.4055 2.63385,7.92124 4.44487 2.63385,7.88187 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [7.88187 -1.48819 2.47637,7.92124 4.4055 2.437,7.92124 -1.48819 2.437,7.88187 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [7.88187 4.4055 2.63385,7.92124 4.4055 2.67322,7.92124 4.44487 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,1,3,2,-1] -coord Coordinate { point [7.92124 4.44487 2.63385,8.07872 4.44487 2.63385,7.92124 4.44487 2.47637,8.07872 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [8.07872 -1.92126 -1.12992,7.92124 -1.92126 -1.12992,8.07872 -1.88189 -1.09055,7.92124 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [8.07872 4.4055 2.437,8.07872 4.44487 2.47637,8.11809 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [8.07872 4.4055 2.437,8.07872 -1.48819 2.437,7.92124 4.4055 2.437,7.92124 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,9,10,-1,8,7,9,-1,8,6,7,-1,11,8,10,-1,12,10,13,-1,12,11,10,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1] -coord Coordinate { point [8.07872 -1.87432 2.12011,8.07872 -1.88189 2.0433,7.92124 -1.88189 2.0433,7.92124 -1.87432 2.12011,8.07872 -1.85192 2.19397,7.92124 -1.85192 2.19397,8.07872 -1.81554 2.26203,7.92124 -1.81554 2.26203,8.07872 -1.76657 2.32169,7.92124 -1.76657 2.32169,7.92124 -1.70691 2.37065,8.07872 -1.70691 2.37065,8.07872 -1.63885 2.40703,7.92124 -1.63885 2.40703,8.07872 -1.56499 2.42944,7.92124 -1.56499 2.42944,8.07872 -1.48819 2.437,7.92124 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [8.07872 -1.88189 2.0433,8.07872 -1.88189 -1.09055,7.92124 -1.88189 2.0433,7.92124 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [8.07872 -1.88189 -1.09055,8.11809 -1.92126 -1.09055,8.07872 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [7.88187 -1.92126 -1.09055,7.92124 -1.88189 -1.09055,7.92124 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [7.92124 4.4055 2.437,7.88187 4.4055 2.47637,7.92124 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [8.07872 4.44487 2.47637,7.92124 4.4055 2.437,7.92124 4.44487 2.47637,8.07872 4.4055 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [9.07872 -2.11811 2.0433,9.07872 -2.11035 2.14184,8.92124 -2.11811 2.0433,8.92124 -2.11035 2.14184,9.07872 -2.08728 2.23796,8.92124 -2.08728 2.23796,9.07872 -2.04945 2.32928,8.92124 -2.04945 2.32928,9.07872 -1.9978 2.41356,8.92124 -1.9978 2.41356,9.07872 -1.93361 2.48872,8.92124 -1.93361 2.48872,9.07872 -1.85844 2.55292,8.92124 -1.85844 2.55292,9.07872 -1.77416 2.60457,8.92124 -1.77416 2.60457,9.07872 -1.68284 2.64239,8.92124 -1.68284 2.64239,9.07872 -1.58673 2.66547,8.92124 -1.58673 2.66547,9.07872 -1.48819 2.67322,8.92124 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [9.07872 -2.11811 -1.09055,9.07872 -2.11811 2.0433,8.92124 -2.11811 2.0433,8.92124 -2.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [9.11809 -2.07874 2.0433,9.11809 -2.07147 2.13569,9.07872 -2.11811 2.0433,9.07872 -2.11035 2.14184,9.11809 -2.04983 2.22579,9.07872 -2.08728 2.23796,9.11809 -2.01437 2.31141,9.07872 -2.04945 2.32928,9.11809 -1.96595 2.39042,9.07872 -1.9978 2.41356,9.11809 -1.90577 2.46088,9.07872 -1.93361 2.48872,9.11809 -1.8353 2.52107,9.07872 -1.85844 2.55292,9.11809 -1.75629 2.56949,9.07872 -1.77416 2.60457,9.11809 -1.67068 2.60495,9.07872 -1.68284 2.64239,9.11809 -1.58057 2.62658,9.07872 -1.58673 2.66547,9.11809 -1.48819 2.63385,9.07872 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1,18,17,19,-1,18,16,17,-1,20,19,21,-1,20,18,19,-1] -coord Coordinate { point [8.88187 -2.07147 2.13569,8.88187 -2.07874 2.0433,8.92124 -2.11811 2.0433,8.92124 -2.11035 2.14184,8.88187 -2.04983 2.22579,8.92124 -2.08728 2.23796,8.88187 -2.01437 2.31141,8.92124 -2.04945 2.32928,8.88187 -1.96595 2.39042,8.92124 -1.9978 2.41356,8.88187 -1.90577 2.46088,8.92124 -1.93361 2.48872,8.88187 -1.8353 2.52107,8.92124 -1.85844 2.55292,8.88187 -1.75629 2.56949,8.92124 -1.77416 2.60457,8.88187 -1.67068 2.60495,8.92124 -1.68284 2.64239,8.88187 -1.58057 2.62658,8.92124 -1.58673 2.66547,8.88187 -1.48819 2.63385,8.92124 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [9.07872 -1.48819 2.67322,9.07872 4.4055 2.67322,8.92124 -1.48819 2.67322,8.92124 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [9.07872 -2.11811 -1.09055,9.11809 -2.07874 2.0433,9.07872 -2.11811 2.0433,9.11809 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [8.88187 -2.07874 2.0433,8.92124 -2.11811 -1.09055,8.92124 -2.11811 2.0433,8.88187 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [9.07872 -2.11811 -1.09055,8.92124 -2.11811 -1.09055,9.07872 -2.07874 -1.12992,8.92124 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1,4,5,6,-1,6,5,7,-1,1,8,9,-1,3,8,1,-1,10,11,4,-1,4,11,5,-1,9,12,13,-1,8,12,9,-1,14,15,10,-1,10,15,11,-1,13,16,17,-1,12,16,13,-1,18,19,14,-1,14,19,15,-1,17,20,21,-1,16,20,17,-1,22,23,18,-1,18,23,19,-1,21,24,22,-1,20,24,21,-1,22,24,23,-1] -coord Coordinate { point [9.11809 4.4055 2.63385,9.11809 -1.48819 2.47637,9.11809 4.4055 2.47637,9.11809 -1.48819 2.63385,9.11809 -1.92126 2.0433,9.11809 -2.07874 2.0433,9.11809 -1.92126 -1.09055,9.11809 -2.07874 -1.09055,9.11809 -1.58057 2.62658,9.11809 -1.56339 2.46979,9.11809 -1.91468 2.1185,9.11809 -2.07147 2.13569,9.11809 -1.67068 2.60495,9.11809 -1.6363 2.45026,9.11809 -1.89514 2.19142,9.11809 -2.04983 2.22579,9.11809 -1.75629 2.56949,9.11809 -1.70472 2.41835,9.11809 -1.86324 2.25984,9.11809 -2.01437 2.31141,9.11809 -1.8353 2.52107,9.11809 -1.76656 2.37505,9.11809 -1.81994 2.32168,9.11809 -1.96595 2.39042,9.11809 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [9.11809 -1.48819 2.63385,9.11809 4.4055 2.63385,9.07872 -1.48819 2.67322,9.07872 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1,4,5,6,-1,4,6,7,-1,8,0,9,-1,8,3,0,-1,10,11,5,-1,10,5,4,-1,12,9,13,-1,12,8,9,-1,14,15,11,-1,14,11,10,-1,16,13,17,-1,16,12,13,-1,18,19,15,-1,18,15,14,-1,20,17,21,-1,20,16,17,-1,22,23,19,-1,22,19,18,-1,24,21,23,-1,24,20,21,-1,24,23,22,-1] -coord Coordinate { point [8.88187 -1.48819 2.47637,8.88187 4.4055 2.63385,8.88187 4.4055 2.47637,8.88187 -1.48819 2.63385,8.88187 -2.07874 2.0433,8.88187 -1.92126 2.0433,8.88187 -1.92126 -1.09055,8.88187 -2.07874 -1.09055,8.88187 -1.58057 2.62658,8.88187 -1.56339 2.46979,8.88187 -2.07147 2.13569,8.88187 -1.91468 2.1185,8.88187 -1.67068 2.60495,8.88187 -1.6363 2.45026,8.88187 -2.04983 2.22579,8.88187 -1.89514 2.19142,8.88187 -1.75629 2.56949,8.88187 -1.70472 2.41835,8.88187 -2.01437 2.31141,8.88187 -1.86324 2.25984,8.88187 -1.8353 2.52107,8.88187 -1.76656 2.37505,8.88187 -1.96595 2.39042,8.88187 -1.81994 2.32168,8.88187 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [8.88187 4.4055 2.63385,8.88187 -1.48819 2.63385,8.92124 -1.48819 2.67322,8.92124 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [9.07872 4.44487 2.63385,8.92124 4.44487 2.63385,9.07872 4.4055 2.67322,8.92124 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [9.11809 -2.07874 -1.09055,9.07872 -2.11811 -1.09055,9.07872 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [8.92124 -2.11811 -1.09055,8.88187 -2.07874 -1.09055,8.92124 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [9.07872 -1.92126 -1.12992,8.92124 -2.07874 -1.12992,8.92124 -1.92126 -1.12992,9.07872 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [9.11809 4.4055 2.63385,9.07872 4.44487 2.47637,9.07872 4.44487 2.63385,9.11809 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [9.11809 4.4055 2.47637,9.11809 -1.48819 2.47637,9.07872 4.4055 2.437,9.07872 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,12,14,13,-1,14,15,13,-1,14,16,15,-1,16,17,15,-1,16,18,17,-1] -coord Coordinate { point [9.11809 -1.48819 2.47637,9.11809 -1.56339 2.46979,9.07872 -1.48819 2.437,9.07872 -1.56499 2.42944,9.11809 -1.6363 2.45026,9.07872 -1.63885 2.40703,9.11809 -1.70472 2.41835,9.07872 -1.70691 2.37065,9.11809 -1.76656 2.37505,9.07872 -1.76657 2.32169,9.11809 -1.81994 2.32168,9.07872 -1.81554 2.26203,9.11809 -1.86324 2.25984,9.07872 -1.85192 2.19397,9.11809 -1.89514 2.19142,9.07872 -1.87432 2.12011,9.11809 -1.91468 2.1185,9.07872 -1.88189 2.0433,9.11809 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [9.11809 -1.92126 2.0433,9.11809 -1.92126 -1.09055,9.07872 -1.88189 2.0433,9.07872 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [9.11809 -1.92126 -1.09055,9.11809 -2.07874 -1.09055,9.07872 -2.07874 -1.12992,9.07872 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [9.11809 4.4055 2.63385,9.07872 4.44487 2.63385,9.07872 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [8.88187 -2.07874 -1.09055,8.88187 -1.92126 -1.09055,8.92124 -2.07874 -1.12992,8.92124 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [8.88187 -1.92126 -1.09055,8.88187 -1.92126 2.0433,8.92124 -1.88189 2.0433,8.92124 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,12,13,-1,15,14,13,-1,16,14,15,-1,17,16,15,-1,18,16,17,-1] -coord Coordinate { point [8.88187 -1.56339 2.46979,8.88187 -1.48819 2.47637,8.92124 -1.48819 2.437,8.92124 -1.56499 2.42944,8.88187 -1.6363 2.45026,8.92124 -1.63885 2.40703,8.88187 -1.70472 2.41835,8.92124 -1.70691 2.37065,8.88187 -1.76656 2.37505,8.92124 -1.76657 2.32169,8.88187 -1.81994 2.32168,8.92124 -1.81554 2.26203,8.88187 -1.86324 2.25984,8.92124 -1.85192 2.19397,8.88187 -1.89514 2.19142,8.92124 -1.87432 2.12011,8.88187 -1.91468 2.1185,8.92124 -1.88189 2.0433,8.88187 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [8.92124 4.44487 2.47637,8.88187 4.4055 2.63385,8.92124 4.44487 2.63385,8.88187 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [8.88187 -1.48819 2.47637,8.92124 4.4055 2.437,8.92124 -1.48819 2.437,8.88187 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [8.88187 4.4055 2.63385,8.92124 4.4055 2.67322,8.92124 4.44487 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,1,3,2,-1] -coord Coordinate { point [8.92124 4.44487 2.63385,9.07872 4.44487 2.63385,8.92124 4.44487 2.47637,9.07872 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [9.07872 -1.92126 -1.12992,8.92124 -1.92126 -1.12992,9.07872 -1.88189 -1.09055,8.92124 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [9.07872 4.4055 2.437,9.07872 4.44487 2.47637,9.11809 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [9.07872 4.4055 2.437,9.07872 -1.48819 2.437,8.92124 4.4055 2.437,8.92124 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,9,10,-1,8,7,9,-1,8,6,7,-1,11,8,10,-1,12,10,13,-1,12,11,10,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1] -coord Coordinate { point [9.07872 -1.87432 2.12011,9.07872 -1.88189 2.0433,8.92124 -1.88189 2.0433,8.92124 -1.87432 2.12011,9.07872 -1.85192 2.19397,8.92124 -1.85192 2.19397,9.07872 -1.81554 2.26203,8.92124 -1.81554 2.26203,9.07872 -1.76657 2.32169,8.92124 -1.76657 2.32169,8.92124 -1.70691 2.37065,9.07872 -1.70691 2.37065,9.07872 -1.63885 2.40703,8.92124 -1.63885 2.40703,9.07872 -1.56499 2.42944,8.92124 -1.56499 2.42944,9.07872 -1.48819 2.437,8.92124 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [9.07872 -1.88189 2.0433,9.07872 -1.88189 -1.09055,8.92124 -1.88189 2.0433,8.92124 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [9.07872 -1.88189 -1.09055,9.11809 -1.92126 -1.09055,9.07872 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [8.88187 -1.92126 -1.09055,8.92124 -1.88189 -1.09055,8.92124 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [8.92124 4.4055 2.437,8.88187 4.4055 2.47637,8.92124 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [9.07872 4.44487 2.47637,8.92124 4.4055 2.437,8.92124 4.44487 2.47637,9.07872 4.4055 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [10.0787 -2.11811 2.0433,10.0787 -2.11035 2.14184,9.92124 -2.11811 2.0433,9.92124 -2.11035 2.14184,10.0787 -2.08728 2.23796,9.92124 -2.08728 2.23796,10.0787 -2.04945 2.32928,9.92124 -2.04945 2.32928,10.0787 -1.9978 2.41356,9.92124 -1.9978 2.41356,10.0787 -1.93361 2.48872,9.92124 -1.93361 2.48872,10.0787 -1.85844 2.55292,9.92124 -1.85844 2.55292,10.0787 -1.77416 2.60457,9.92124 -1.77416 2.60457,10.0787 -1.68284 2.64239,9.92124 -1.68284 2.64239,10.0787 -1.58673 2.66547,9.92124 -1.58673 2.66547,10.0787 -1.48819 2.67322,9.92124 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [10.0787 -2.11811 -1.09055,10.0787 -2.11811 2.0433,9.92124 -2.11811 2.0433,9.92124 -2.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [10.1181 -2.07874 2.0433,10.1181 -2.07147 2.13569,10.0787 -2.11811 2.0433,10.0787 -2.11035 2.14184,10.1181 -2.04983 2.22579,10.0787 -2.08728 2.23796,10.1181 -2.01437 2.31141,10.0787 -2.04945 2.32928,10.1181 -1.96595 2.39042,10.0787 -1.9978 2.41356,10.1181 -1.90577 2.46088,10.0787 -1.93361 2.48872,10.1181 -1.8353 2.52107,10.0787 -1.85844 2.55292,10.1181 -1.75629 2.56949,10.0787 -1.77416 2.60457,10.1181 -1.67068 2.60495,10.0787 -1.68284 2.64239,10.1181 -1.58057 2.62658,10.0787 -1.58673 2.66547,10.1181 -1.48819 2.63385,10.0787 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1,18,17,19,-1,18,16,17,-1,20,19,21,-1,20,18,19,-1] -coord Coordinate { point [9.88187 -2.07147 2.13569,9.88187 -2.07874 2.0433,9.92124 -2.11811 2.0433,9.92124 -2.11035 2.14184,9.88187 -2.04983 2.22579,9.92124 -2.08728 2.23796,9.88187 -2.01437 2.31141,9.92124 -2.04945 2.32928,9.88187 -1.96595 2.39042,9.92124 -1.9978 2.41356,9.88187 -1.90577 2.46088,9.92124 -1.93361 2.48872,9.88187 -1.8353 2.52107,9.92124 -1.85844 2.55292,9.88187 -1.75629 2.56949,9.92124 -1.77416 2.60457,9.88187 -1.67068 2.60495,9.92124 -1.68284 2.64239,9.88187 -1.58057 2.62658,9.92124 -1.58673 2.66547,9.88187 -1.48819 2.63385,9.92124 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [10.0787 -1.48819 2.67322,10.0787 4.4055 2.67322,9.92124 -1.48819 2.67322,9.92124 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [10.0787 -2.11811 -1.09055,10.1181 -2.07874 2.0433,10.0787 -2.11811 2.0433,10.1181 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [9.88187 -2.07874 2.0433,9.92124 -2.11811 -1.09055,9.92124 -2.11811 2.0433,9.88187 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [10.0787 -2.11811 -1.09055,9.92124 -2.11811 -1.09055,10.0787 -2.07874 -1.12992,9.92124 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1,4,5,6,-1,6,5,7,-1,1,8,9,-1,3,8,1,-1,10,11,4,-1,4,11,5,-1,9,12,13,-1,8,12,9,-1,14,15,10,-1,10,15,11,-1,13,16,17,-1,12,16,13,-1,18,19,14,-1,14,19,15,-1,17,20,21,-1,16,20,17,-1,22,23,18,-1,18,23,19,-1,21,24,22,-1,20,24,21,-1,22,24,23,-1] -coord Coordinate { point [10.1181 4.4055 2.63385,10.1181 -1.48819 2.47637,10.1181 4.4055 2.47637,10.1181 -1.48819 2.63385,10.1181 -1.92126 2.0433,10.1181 -2.07874 2.0433,10.1181 -1.92126 -1.09055,10.1181 -2.07874 -1.09055,10.1181 -1.58057 2.62658,10.1181 -1.56339 2.46979,10.1181 -1.91468 2.1185,10.1181 -2.07147 2.13569,10.1181 -1.67068 2.60495,10.1181 -1.6363 2.45026,10.1181 -1.89514 2.19142,10.1181 -2.04983 2.22579,10.1181 -1.75629 2.56949,10.1181 -1.70472 2.41835,10.1181 -1.86324 2.25984,10.1181 -2.01437 2.31141,10.1181 -1.8353 2.52107,10.1181 -1.76656 2.37505,10.1181 -1.81994 2.32168,10.1181 -1.96595 2.39042,10.1181 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [10.1181 -1.48819 2.63385,10.1181 4.4055 2.63385,10.0787 -1.48819 2.67322,10.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1,4,5,6,-1,4,6,7,-1,8,0,9,-1,8,3,0,-1,10,11,5,-1,10,5,4,-1,12,9,13,-1,12,8,9,-1,14,15,11,-1,14,11,10,-1,16,13,17,-1,16,12,13,-1,18,19,15,-1,18,15,14,-1,20,17,21,-1,20,16,17,-1,22,23,19,-1,22,19,18,-1,24,21,23,-1,24,20,21,-1,24,23,22,-1] -coord Coordinate { point [9.88187 -1.48819 2.47637,9.88187 4.4055 2.63385,9.88187 4.4055 2.47637,9.88187 -1.48819 2.63385,9.88187 -2.07874 2.0433,9.88187 -1.92126 2.0433,9.88187 -1.92126 -1.09055,9.88187 -2.07874 -1.09055,9.88187 -1.58057 2.62658,9.88187 -1.56339 2.46979,9.88187 -2.07147 2.13569,9.88187 -1.91468 2.1185,9.88187 -1.67068 2.60495,9.88187 -1.6363 2.45026,9.88187 -2.04983 2.22579,9.88187 -1.89514 2.19142,9.88187 -1.75629 2.56949,9.88187 -1.70472 2.41835,9.88187 -2.01437 2.31141,9.88187 -1.86324 2.25984,9.88187 -1.8353 2.52107,9.88187 -1.76656 2.37505,9.88187 -1.96595 2.39042,9.88187 -1.81994 2.32168,9.88187 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [9.88187 4.4055 2.63385,9.88187 -1.48819 2.63385,9.92124 -1.48819 2.67322,9.92124 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [10.0787 4.44487 2.63385,9.92124 4.44487 2.63385,10.0787 4.4055 2.67322,9.92124 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [10.1181 -2.07874 -1.09055,10.0787 -2.11811 -1.09055,10.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [9.92124 -2.11811 -1.09055,9.88187 -2.07874 -1.09055,9.92124 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [10.0787 -1.92126 -1.12992,9.92124 -2.07874 -1.12992,9.92124 -1.92126 -1.12992,10.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [10.1181 4.4055 2.63385,10.0787 4.44487 2.47637,10.0787 4.44487 2.63385,10.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [10.1181 4.4055 2.47637,10.1181 -1.48819 2.47637,10.0787 4.4055 2.437,10.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,12,14,13,-1,14,15,13,-1,14,16,15,-1,16,17,15,-1,16,18,17,-1] -coord Coordinate { point [10.1181 -1.48819 2.47637,10.1181 -1.56339 2.46979,10.0787 -1.48819 2.437,10.0787 -1.56499 2.42944,10.1181 -1.6363 2.45026,10.0787 -1.63885 2.40703,10.1181 -1.70472 2.41835,10.0787 -1.70691 2.37065,10.1181 -1.76656 2.37505,10.0787 -1.76657 2.32169,10.1181 -1.81994 2.32168,10.0787 -1.81554 2.26203,10.1181 -1.86324 2.25984,10.0787 -1.85192 2.19397,10.1181 -1.89514 2.19142,10.0787 -1.87432 2.12011,10.1181 -1.91468 2.1185,10.0787 -1.88189 2.0433,10.1181 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [10.1181 -1.92126 2.0433,10.1181 -1.92126 -1.09055,10.0787 -1.88189 2.0433,10.0787 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [10.1181 -1.92126 -1.09055,10.1181 -2.07874 -1.09055,10.0787 -2.07874 -1.12992,10.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [10.1181 4.4055 2.63385,10.0787 4.44487 2.63385,10.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [9.88187 -2.07874 -1.09055,9.88187 -1.92126 -1.09055,9.92124 -2.07874 -1.12992,9.92124 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [9.88187 -1.92126 -1.09055,9.88187 -1.92126 2.0433,9.92124 -1.88189 2.0433,9.92124 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,12,13,-1,15,14,13,-1,16,14,15,-1,17,16,15,-1,18,16,17,-1] -coord Coordinate { point [9.88187 -1.56339 2.46979,9.88187 -1.48819 2.47637,9.92124 -1.48819 2.437,9.92124 -1.56499 2.42944,9.88187 -1.6363 2.45026,9.92124 -1.63885 2.40703,9.88187 -1.70472 2.41835,9.92124 -1.70691 2.37065,9.88187 -1.76656 2.37505,9.92124 -1.76657 2.32169,9.88187 -1.81994 2.32168,9.92124 -1.81554 2.26203,9.88187 -1.86324 2.25984,9.92124 -1.85192 2.19397,9.88187 -1.89514 2.19142,9.92124 -1.87432 2.12011,9.88187 -1.91468 2.1185,9.92124 -1.88189 2.0433,9.88187 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [9.92124 4.44487 2.47637,9.88187 4.4055 2.63385,9.92124 4.44487 2.63385,9.88187 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [9.88187 -1.48819 2.47637,9.92124 4.4055 2.437,9.92124 -1.48819 2.437,9.88187 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [9.88187 4.4055 2.63385,9.92124 4.4055 2.67322,9.92124 4.44487 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,1,3,2,-1] -coord Coordinate { point [9.92124 4.44487 2.63385,10.0787 4.44487 2.63385,9.92124 4.44487 2.47637,10.0787 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [10.0787 -1.92126 -1.12992,9.92124 -1.92126 -1.12992,10.0787 -1.88189 -1.09055,9.92124 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [10.0787 4.4055 2.437,10.0787 4.44487 2.47637,10.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [10.0787 4.4055 2.437,10.0787 -1.48819 2.437,9.92124 4.4055 2.437,9.92124 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,9,10,-1,8,7,9,-1,8,6,7,-1,11,8,10,-1,12,10,13,-1,12,11,10,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1] -coord Coordinate { point [10.0787 -1.87432 2.12011,10.0787 -1.88189 2.0433,9.92124 -1.88189 2.0433,9.92124 -1.87432 2.12011,10.0787 -1.85192 2.19397,9.92124 -1.85192 2.19397,10.0787 -1.81554 2.26203,9.92124 -1.81554 2.26203,10.0787 -1.76657 2.32169,9.92124 -1.76657 2.32169,9.92124 -1.70691 2.37065,10.0787 -1.70691 2.37065,10.0787 -1.63885 2.40703,9.92124 -1.63885 2.40703,10.0787 -1.56499 2.42944,9.92124 -1.56499 2.42944,10.0787 -1.48819 2.437,9.92124 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [10.0787 -1.88189 2.0433,10.0787 -1.88189 -1.09055,9.92124 -1.88189 2.0433,9.92124 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [10.0787 -1.88189 -1.09055,10.1181 -1.92126 -1.09055,10.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [9.88187 -1.92126 -1.09055,9.92124 -1.88189 -1.09055,9.92124 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [9.92124 4.4055 2.437,9.88187 4.4055 2.47637,9.92124 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [10.0787 4.44487 2.47637,9.92124 4.4055 2.437,9.92124 4.44487 2.47637,10.0787 4.4055 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [11.0787 -2.11811 2.0433,11.0787 -2.11035 2.14184,10.9212 -2.11811 2.0433,10.9212 -2.11035 2.14184,11.0787 -2.08728 2.23796,10.9212 -2.08728 2.23796,11.0787 -2.04945 2.32928,10.9212 -2.04945 2.32928,11.0787 -1.9978 2.41356,10.9212 -1.9978 2.41356,11.0787 -1.93361 2.48872,10.9212 -1.93361 2.48872,11.0787 -1.85844 2.55292,10.9212 -1.85844 2.55292,11.0787 -1.77416 2.60457,10.9212 -1.77416 2.60457,11.0787 -1.68284 2.64239,10.9212 -1.68284 2.64239,11.0787 -1.58673 2.66547,10.9212 -1.58673 2.66547,11.0787 -1.48819 2.67322,10.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [11.0787 -2.11811 -1.09055,11.0787 -2.11811 2.0433,10.9212 -2.11811 2.0433,10.9212 -2.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [11.1181 -2.07874 2.0433,11.1181 -2.07147 2.13569,11.0787 -2.11811 2.0433,11.0787 -2.11035 2.14184,11.1181 -2.04983 2.22579,11.0787 -2.08728 2.23796,11.1181 -2.01437 2.31141,11.0787 -2.04945 2.32928,11.1181 -1.96595 2.39042,11.0787 -1.9978 2.41356,11.1181 -1.90577 2.46088,11.0787 -1.93361 2.48872,11.1181 -1.8353 2.52107,11.0787 -1.85844 2.55292,11.1181 -1.75629 2.56949,11.0787 -1.77416 2.60457,11.1181 -1.67068 2.60495,11.0787 -1.68284 2.64239,11.1181 -1.58057 2.62658,11.0787 -1.58673 2.66547,11.1181 -1.48819 2.63385,11.0787 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1,18,17,19,-1,18,16,17,-1,20,19,21,-1,20,18,19,-1] -coord Coordinate { point [10.8819 -2.07147 2.13569,10.8819 -2.07874 2.0433,10.9212 -2.11811 2.0433,10.9212 -2.11035 2.14184,10.8819 -2.04983 2.22579,10.9212 -2.08728 2.23796,10.8819 -2.01437 2.31141,10.9212 -2.04945 2.32928,10.8819 -1.96595 2.39042,10.9212 -1.9978 2.41356,10.8819 -1.90577 2.46088,10.9212 -1.93361 2.48872,10.8819 -1.8353 2.52107,10.9212 -1.85844 2.55292,10.8819 -1.75629 2.56949,10.9212 -1.77416 2.60457,10.8819 -1.67068 2.60495,10.9212 -1.68284 2.64239,10.8819 -1.58057 2.62658,10.9212 -1.58673 2.66547,10.8819 -1.48819 2.63385,10.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [11.0787 -1.48819 2.67322,11.0787 4.4055 2.67322,10.9212 -1.48819 2.67322,10.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [11.0787 -2.11811 -1.09055,11.1181 -2.07874 2.0433,11.0787 -2.11811 2.0433,11.1181 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [10.8819 -2.07874 2.0433,10.9212 -2.11811 -1.09055,10.9212 -2.11811 2.0433,10.8819 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [11.0787 -2.11811 -1.09055,10.9212 -2.11811 -1.09055,11.0787 -2.07874 -1.12992,10.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1,4,5,6,-1,6,5,7,-1,1,8,9,-1,3,8,1,-1,10,11,4,-1,4,11,5,-1,9,12,13,-1,8,12,9,-1,14,15,10,-1,10,15,11,-1,13,16,17,-1,12,16,13,-1,18,19,14,-1,14,19,15,-1,17,20,21,-1,16,20,17,-1,22,23,18,-1,18,23,19,-1,21,24,22,-1,20,24,21,-1,22,24,23,-1] -coord Coordinate { point [11.1181 4.4055 2.63385,11.1181 -1.48819 2.47637,11.1181 4.4055 2.47637,11.1181 -1.48819 2.63385,11.1181 -1.92126 2.0433,11.1181 -2.07874 2.0433,11.1181 -1.92126 -1.09055,11.1181 -2.07874 -1.09055,11.1181 -1.58057 2.62658,11.1181 -1.56339 2.46979,11.1181 -1.91468 2.1185,11.1181 -2.07147 2.13569,11.1181 -1.67068 2.60495,11.1181 -1.6363 2.45026,11.1181 -1.89514 2.19142,11.1181 -2.04983 2.22579,11.1181 -1.75629 2.56949,11.1181 -1.70472 2.41835,11.1181 -1.86324 2.25984,11.1181 -2.01437 2.31141,11.1181 -1.8353 2.52107,11.1181 -1.76656 2.37505,11.1181 -1.81994 2.32168,11.1181 -1.96595 2.39042,11.1181 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [11.1181 -1.48819 2.63385,11.1181 4.4055 2.63385,11.0787 -1.48819 2.67322,11.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1,4,5,6,-1,4,6,7,-1,8,0,9,-1,8,3,0,-1,10,11,5,-1,10,5,4,-1,12,9,13,-1,12,8,9,-1,14,15,11,-1,14,11,10,-1,16,13,17,-1,16,12,13,-1,18,19,15,-1,18,15,14,-1,20,17,21,-1,20,16,17,-1,22,23,19,-1,22,19,18,-1,24,21,23,-1,24,20,21,-1,24,23,22,-1] -coord Coordinate { point [10.8819 -1.48819 2.47637,10.8819 4.4055 2.63385,10.8819 4.4055 2.47637,10.8819 -1.48819 2.63385,10.8819 -2.07874 2.0433,10.8819 -1.92126 2.0433,10.8819 -1.92126 -1.09055,10.8819 -2.07874 -1.09055,10.8819 -1.58057 2.62658,10.8819 -1.56339 2.46979,10.8819 -2.07147 2.13569,10.8819 -1.91468 2.1185,10.8819 -1.67068 2.60495,10.8819 -1.6363 2.45026,10.8819 -2.04983 2.22579,10.8819 -1.89514 2.19142,10.8819 -1.75629 2.56949,10.8819 -1.70472 2.41835,10.8819 -2.01437 2.31141,10.8819 -1.86324 2.25984,10.8819 -1.8353 2.52107,10.8819 -1.76656 2.37505,10.8819 -1.96595 2.39042,10.8819 -1.81994 2.32168,10.8819 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [10.8819 4.4055 2.63385,10.8819 -1.48819 2.63385,10.9212 -1.48819 2.67322,10.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [11.0787 4.44487 2.63385,10.9212 4.44487 2.63385,11.0787 4.4055 2.67322,10.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [11.1181 -2.07874 -1.09055,11.0787 -2.11811 -1.09055,11.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [10.9212 -2.11811 -1.09055,10.8819 -2.07874 -1.09055,10.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [11.0787 -1.92126 -1.12992,10.9212 -2.07874 -1.12992,10.9212 -1.92126 -1.12992,11.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [11.1181 4.4055 2.63385,11.0787 4.44487 2.47637,11.0787 4.44487 2.63385,11.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [11.1181 4.4055 2.47637,11.1181 -1.48819 2.47637,11.0787 4.4055 2.437,11.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,12,14,13,-1,14,15,13,-1,14,16,15,-1,16,17,15,-1,16,18,17,-1] -coord Coordinate { point [11.1181 -1.48819 2.47637,11.1181 -1.56339 2.46979,11.0787 -1.48819 2.437,11.0787 -1.56499 2.42944,11.1181 -1.6363 2.45026,11.0787 -1.63885 2.40703,11.1181 -1.70472 2.41835,11.0787 -1.70691 2.37065,11.1181 -1.76656 2.37505,11.0787 -1.76657 2.32169,11.1181 -1.81994 2.32168,11.0787 -1.81554 2.26203,11.1181 -1.86324 2.25984,11.0787 -1.85192 2.19397,11.1181 -1.89514 2.19142,11.0787 -1.87432 2.12011,11.1181 -1.91468 2.1185,11.0787 -1.88189 2.0433,11.1181 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [11.1181 -1.92126 2.0433,11.1181 -1.92126 -1.09055,11.0787 -1.88189 2.0433,11.0787 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [11.1181 -1.92126 -1.09055,11.1181 -2.07874 -1.09055,11.0787 -2.07874 -1.12992,11.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [11.1181 4.4055 2.63385,11.0787 4.44487 2.63385,11.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [10.8819 -2.07874 -1.09055,10.8819 -1.92126 -1.09055,10.9212 -2.07874 -1.12992,10.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [10.8819 -1.92126 -1.09055,10.8819 -1.92126 2.0433,10.9212 -1.88189 2.0433,10.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,12,13,-1,15,14,13,-1,16,14,15,-1,17,16,15,-1,18,16,17,-1] -coord Coordinate { point [10.8819 -1.56339 2.46979,10.8819 -1.48819 2.47637,10.9212 -1.48819 2.437,10.9212 -1.56499 2.42944,10.8819 -1.6363 2.45026,10.9212 -1.63885 2.40703,10.8819 -1.70472 2.41835,10.9212 -1.70691 2.37065,10.8819 -1.76656 2.37505,10.9212 -1.76657 2.32169,10.8819 -1.81994 2.32168,10.9212 -1.81554 2.26203,10.8819 -1.86324 2.25984,10.9212 -1.85192 2.19397,10.8819 -1.89514 2.19142,10.9212 -1.87432 2.12011,10.8819 -1.91468 2.1185,10.9212 -1.88189 2.0433,10.8819 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [10.9212 4.44487 2.47637,10.8819 4.4055 2.63385,10.9212 4.44487 2.63385,10.8819 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [10.8819 -1.48819 2.47637,10.9212 4.4055 2.437,10.9212 -1.48819 2.437,10.8819 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [10.8819 4.4055 2.63385,10.9212 4.4055 2.67322,10.9212 4.44487 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,1,3,2,-1] -coord Coordinate { point [10.9212 4.44487 2.63385,11.0787 4.44487 2.63385,10.9212 4.44487 2.47637,11.0787 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [11.0787 -1.92126 -1.12992,10.9212 -1.92126 -1.12992,11.0787 -1.88189 -1.09055,10.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [11.0787 4.4055 2.437,11.0787 4.44487 2.47637,11.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [11.0787 4.4055 2.437,11.0787 -1.48819 2.437,10.9212 4.4055 2.437,10.9212 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,9,10,-1,8,7,9,-1,8,6,7,-1,11,8,10,-1,12,10,13,-1,12,11,10,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1] -coord Coordinate { point [11.0787 -1.87432 2.12011,11.0787 -1.88189 2.0433,10.9212 -1.88189 2.0433,10.9212 -1.87432 2.12011,11.0787 -1.85192 2.19397,10.9212 -1.85192 2.19397,11.0787 -1.81554 2.26203,10.9212 -1.81554 2.26203,11.0787 -1.76657 2.32169,10.9212 -1.76657 2.32169,10.9212 -1.70691 2.37065,11.0787 -1.70691 2.37065,11.0787 -1.63885 2.40703,10.9212 -1.63885 2.40703,11.0787 -1.56499 2.42944,10.9212 -1.56499 2.42944,11.0787 -1.48819 2.437,10.9212 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [11.0787 -1.88189 2.0433,11.0787 -1.88189 -1.09055,10.9212 -1.88189 2.0433,10.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [11.0787 -1.88189 -1.09055,11.1181 -1.92126 -1.09055,11.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [10.8819 -1.92126 -1.09055,10.9212 -1.88189 -1.09055,10.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [10.9212 4.4055 2.437,10.8819 4.4055 2.47637,10.9212 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [11.0787 4.44487 2.47637,10.9212 4.4055 2.437,10.9212 4.44487 2.47637,11.0787 4.4055 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [12.0787 -2.11811 2.0433,12.0787 -2.11035 2.14184,11.9212 -2.11811 2.0433,11.9212 -2.11035 2.14184,12.0787 -2.08728 2.23796,11.9212 -2.08728 2.23796,12.0787 -2.04945 2.32928,11.9212 -2.04945 2.32928,12.0787 -1.9978 2.41356,11.9212 -1.9978 2.41356,12.0787 -1.93361 2.48872,11.9212 -1.93361 2.48872,12.0787 -1.85844 2.55292,11.9212 -1.85844 2.55292,12.0787 -1.77416 2.60457,11.9212 -1.77416 2.60457,12.0787 -1.68284 2.64239,11.9212 -1.68284 2.64239,12.0787 -1.58673 2.66547,11.9212 -1.58673 2.66547,12.0787 -1.48819 2.67322,11.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [12.0787 -2.11811 -1.09055,12.0787 -2.11811 2.0433,11.9212 -2.11811 2.0433,11.9212 -2.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [12.1181 -2.07874 2.0433,12.1181 -2.07147 2.13569,12.0787 -2.11811 2.0433,12.0787 -2.11035 2.14184,12.1181 -2.04983 2.22579,12.0787 -2.08728 2.23796,12.1181 -2.01437 2.31141,12.0787 -2.04945 2.32928,12.1181 -1.96595 2.39042,12.0787 -1.9978 2.41356,12.1181 -1.90577 2.46088,12.0787 -1.93361 2.48872,12.1181 -1.8353 2.52107,12.0787 -1.85844 2.55292,12.1181 -1.75629 2.56949,12.0787 -1.77416 2.60457,12.1181 -1.67068 2.60495,12.0787 -1.68284 2.64239,12.1181 -1.58057 2.62658,12.0787 -1.58673 2.66547,12.1181 -1.48819 2.63385,12.0787 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1,18,17,19,-1,18,16,17,-1,20,19,21,-1,20,18,19,-1] -coord Coordinate { point [11.8819 -2.07147 2.13569,11.8819 -2.07874 2.0433,11.9212 -2.11811 2.0433,11.9212 -2.11035 2.14184,11.8819 -2.04983 2.22579,11.9212 -2.08728 2.23796,11.8819 -2.01437 2.31141,11.9212 -2.04945 2.32928,11.8819 -1.96595 2.39042,11.9212 -1.9978 2.41356,11.8819 -1.90577 2.46088,11.9212 -1.93361 2.48872,11.8819 -1.8353 2.52107,11.9212 -1.85844 2.55292,11.8819 -1.75629 2.56949,11.9212 -1.77416 2.60457,11.8819 -1.67068 2.60495,11.9212 -1.68284 2.64239,11.8819 -1.58057 2.62658,11.9212 -1.58673 2.66547,11.8819 -1.48819 2.63385,11.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [12.0787 -1.48819 2.67322,12.0787 4.4055 2.67322,11.9212 -1.48819 2.67322,11.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [12.0787 -2.11811 -1.09055,12.1181 -2.07874 2.0433,12.0787 -2.11811 2.0433,12.1181 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [11.8819 -2.07874 2.0433,11.9212 -2.11811 -1.09055,11.9212 -2.11811 2.0433,11.8819 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [12.0787 -2.11811 -1.09055,11.9212 -2.11811 -1.09055,12.0787 -2.07874 -1.12992,11.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1,4,5,6,-1,6,5,7,-1,1,8,9,-1,3,8,1,-1,10,11,4,-1,4,11,5,-1,9,12,13,-1,8,12,9,-1,14,15,10,-1,10,15,11,-1,13,16,17,-1,12,16,13,-1,18,19,14,-1,14,19,15,-1,17,20,21,-1,16,20,17,-1,22,23,18,-1,18,23,19,-1,21,24,22,-1,20,24,21,-1,22,24,23,-1] -coord Coordinate { point [12.1181 4.4055 2.63385,12.1181 -1.48819 2.47637,12.1181 4.4055 2.47637,12.1181 -1.48819 2.63385,12.1181 -1.92126 2.0433,12.1181 -2.07874 2.0433,12.1181 -1.92126 -1.09055,12.1181 -2.07874 -1.09055,12.1181 -1.58057 2.62658,12.1181 -1.56339 2.46979,12.1181 -1.91468 2.1185,12.1181 -2.07147 2.13569,12.1181 -1.67068 2.60495,12.1181 -1.6363 2.45026,12.1181 -1.89514 2.19142,12.1181 -2.04983 2.22579,12.1181 -1.75629 2.56949,12.1181 -1.70472 2.41835,12.1181 -1.86324 2.25984,12.1181 -2.01437 2.31141,12.1181 -1.8353 2.52107,12.1181 -1.76656 2.37505,12.1181 -1.81994 2.32168,12.1181 -1.96595 2.39042,12.1181 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [12.1181 -1.48819 2.63385,12.1181 4.4055 2.63385,12.0787 -1.48819 2.67322,12.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1,4,5,6,-1,4,6,7,-1,8,0,9,-1,8,3,0,-1,10,11,5,-1,10,5,4,-1,12,9,13,-1,12,8,9,-1,14,15,11,-1,14,11,10,-1,16,13,17,-1,16,12,13,-1,18,19,15,-1,18,15,14,-1,20,17,21,-1,20,16,17,-1,22,23,19,-1,22,19,18,-1,24,21,23,-1,24,20,21,-1,24,23,22,-1] -coord Coordinate { point [11.8819 -1.48819 2.47637,11.8819 4.4055 2.63385,11.8819 4.4055 2.47637,11.8819 -1.48819 2.63385,11.8819 -2.07874 2.0433,11.8819 -1.92126 2.0433,11.8819 -1.92126 -1.09055,11.8819 -2.07874 -1.09055,11.8819 -1.58057 2.62658,11.8819 -1.56339 2.46979,11.8819 -2.07147 2.13569,11.8819 -1.91468 2.1185,11.8819 -1.67068 2.60495,11.8819 -1.6363 2.45026,11.8819 -2.04983 2.22579,11.8819 -1.89514 2.19142,11.8819 -1.75629 2.56949,11.8819 -1.70472 2.41835,11.8819 -2.01437 2.31141,11.8819 -1.86324 2.25984,11.8819 -1.8353 2.52107,11.8819 -1.76656 2.37505,11.8819 -1.96595 2.39042,11.8819 -1.81994 2.32168,11.8819 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [11.8819 4.4055 2.63385,11.8819 -1.48819 2.63385,11.9212 -1.48819 2.67322,11.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [12.0787 4.44487 2.63385,11.9212 4.44487 2.63385,12.0787 4.4055 2.67322,11.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [12.1181 -2.07874 -1.09055,12.0787 -2.11811 -1.09055,12.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [11.9212 -2.11811 -1.09055,11.8819 -2.07874 -1.09055,11.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [12.0787 -1.92126 -1.12992,11.9212 -2.07874 -1.12992,11.9212 -1.92126 -1.12992,12.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [12.1181 4.4055 2.63385,12.0787 4.44487 2.47637,12.0787 4.44487 2.63385,12.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [12.1181 4.4055 2.47637,12.1181 -1.48819 2.47637,12.0787 4.4055 2.437,12.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,12,14,13,-1,14,15,13,-1,14,16,15,-1,16,17,15,-1,16,18,17,-1] -coord Coordinate { point [12.1181 -1.48819 2.47637,12.1181 -1.56339 2.46979,12.0787 -1.48819 2.437,12.0787 -1.56499 2.42944,12.1181 -1.6363 2.45026,12.0787 -1.63885 2.40703,12.1181 -1.70472 2.41835,12.0787 -1.70691 2.37065,12.1181 -1.76656 2.37505,12.0787 -1.76657 2.32169,12.1181 -1.81994 2.32168,12.0787 -1.81554 2.26203,12.1181 -1.86324 2.25984,12.0787 -1.85192 2.19397,12.1181 -1.89514 2.19142,12.0787 -1.87432 2.12011,12.1181 -1.91468 2.1185,12.0787 -1.88189 2.0433,12.1181 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [12.1181 -1.92126 2.0433,12.1181 -1.92126 -1.09055,12.0787 -1.88189 2.0433,12.0787 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [12.1181 -1.92126 -1.09055,12.1181 -2.07874 -1.09055,12.0787 -2.07874 -1.12992,12.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [12.1181 4.4055 2.63385,12.0787 4.44487 2.63385,12.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [11.8819 -2.07874 -1.09055,11.8819 -1.92126 -1.09055,11.9212 -2.07874 -1.12992,11.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [11.8819 -1.92126 -1.09055,11.8819 -1.92126 2.0433,11.9212 -1.88189 2.0433,11.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,12,13,-1,15,14,13,-1,16,14,15,-1,17,16,15,-1,18,16,17,-1] -coord Coordinate { point [11.8819 -1.56339 2.46979,11.8819 -1.48819 2.47637,11.9212 -1.48819 2.437,11.9212 -1.56499 2.42944,11.8819 -1.6363 2.45026,11.9212 -1.63885 2.40703,11.8819 -1.70472 2.41835,11.9212 -1.70691 2.37065,11.8819 -1.76656 2.37505,11.9212 -1.76657 2.32169,11.8819 -1.81994 2.32168,11.9212 -1.81554 2.26203,11.8819 -1.86324 2.25984,11.9212 -1.85192 2.19397,11.8819 -1.89514 2.19142,11.9212 -1.87432 2.12011,11.8819 -1.91468 2.1185,11.9212 -1.88189 2.0433,11.8819 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [11.9212 4.44487 2.47637,11.8819 4.4055 2.63385,11.9212 4.44487 2.63385,11.8819 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [11.8819 -1.48819 2.47637,11.9212 4.4055 2.437,11.9212 -1.48819 2.437,11.8819 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [11.8819 4.4055 2.63385,11.9212 4.4055 2.67322,11.9212 4.44487 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,1,3,2,-1] -coord Coordinate { point [11.9212 4.44487 2.63385,12.0787 4.44487 2.63385,11.9212 4.44487 2.47637,12.0787 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [12.0787 -1.92126 -1.12992,11.9212 -1.92126 -1.12992,12.0787 -1.88189 -1.09055,11.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [12.0787 4.4055 2.437,12.0787 4.44487 2.47637,12.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [12.0787 4.4055 2.437,12.0787 -1.48819 2.437,11.9212 4.4055 2.437,11.9212 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,9,10,-1,8,7,9,-1,8,6,7,-1,11,8,10,-1,12,10,13,-1,12,11,10,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1] -coord Coordinate { point [12.0787 -1.87432 2.12011,12.0787 -1.88189 2.0433,11.9212 -1.88189 2.0433,11.9212 -1.87432 2.12011,12.0787 -1.85192 2.19397,11.9212 -1.85192 2.19397,12.0787 -1.81554 2.26203,11.9212 -1.81554 2.26203,12.0787 -1.76657 2.32169,11.9212 -1.76657 2.32169,11.9212 -1.70691 2.37065,12.0787 -1.70691 2.37065,12.0787 -1.63885 2.40703,11.9212 -1.63885 2.40703,12.0787 -1.56499 2.42944,11.9212 -1.56499 2.42944,12.0787 -1.48819 2.437,11.9212 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [12.0787 -1.88189 2.0433,12.0787 -1.88189 -1.09055,11.9212 -1.88189 2.0433,11.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [12.0787 -1.88189 -1.09055,12.1181 -1.92126 -1.09055,12.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [11.8819 -1.92126 -1.09055,11.9212 -1.88189 -1.09055,11.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [11.9212 4.4055 2.437,11.8819 4.4055 2.47637,11.9212 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [12.0787 4.44487 2.47637,11.9212 4.4055 2.437,11.9212 4.44487 2.47637,12.0787 4.4055 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [13.0787 -2.11811 2.0433,13.0787 -2.11035 2.14184,12.9212 -2.11811 2.0433,12.9212 -2.11035 2.14184,13.0787 -2.08728 2.23796,12.9212 -2.08728 2.23796,13.0787 -2.04945 2.32928,12.9212 -2.04945 2.32928,13.0787 -1.9978 2.41356,12.9212 -1.9978 2.41356,13.0787 -1.93361 2.48872,12.9212 -1.93361 2.48872,13.0787 -1.85844 2.55292,12.9212 -1.85844 2.55292,13.0787 -1.77416 2.60457,12.9212 -1.77416 2.60457,13.0787 -1.68284 2.64239,12.9212 -1.68284 2.64239,13.0787 -1.58673 2.66547,12.9212 -1.58673 2.66547,13.0787 -1.48819 2.67322,12.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [13.0787 -2.11811 -1.09055,13.0787 -2.11811 2.0433,12.9212 -2.11811 2.0433,12.9212 -2.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [13.1181 -2.07874 2.0433,13.1181 -2.07147 2.13569,13.0787 -2.11811 2.0433,13.0787 -2.11035 2.14184,13.1181 -2.04983 2.22579,13.0787 -2.08728 2.23796,13.1181 -2.01437 2.31141,13.0787 -2.04945 2.32928,13.1181 -1.96595 2.39042,13.0787 -1.9978 2.41356,13.1181 -1.90577 2.46088,13.0787 -1.93361 2.48872,13.1181 -1.8353 2.52107,13.0787 -1.85844 2.55292,13.1181 -1.75629 2.56949,13.0787 -1.77416 2.60457,13.1181 -1.67068 2.60495,13.0787 -1.68284 2.64239,13.1181 -1.58057 2.62658,13.0787 -1.58673 2.66547,13.1181 -1.48819 2.63385,13.0787 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1,18,17,19,-1,18,16,17,-1,20,19,21,-1,20,18,19,-1] -coord Coordinate { point [12.8819 -2.07147 2.13569,12.8819 -2.07874 2.0433,12.9212 -2.11811 2.0433,12.9212 -2.11035 2.14184,12.8819 -2.04983 2.22579,12.9212 -2.08728 2.23796,12.8819 -2.01437 2.31141,12.9212 -2.04945 2.32928,12.8819 -1.96595 2.39042,12.9212 -1.9978 2.41356,12.8819 -1.90577 2.46088,12.9212 -1.93361 2.48872,12.8819 -1.8353 2.52107,12.9212 -1.85844 2.55292,12.8819 -1.75629 2.56949,12.9212 -1.77416 2.60457,12.8819 -1.67068 2.60495,12.9212 -1.68284 2.64239,12.8819 -1.58057 2.62658,12.9212 -1.58673 2.66547,12.8819 -1.48819 2.63385,12.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [13.0787 -1.48819 2.67322,13.0787 4.4055 2.67322,12.9212 -1.48819 2.67322,12.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [13.0787 -2.11811 -1.09055,13.1181 -2.07874 2.0433,13.0787 -2.11811 2.0433,13.1181 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [12.8819 -2.07874 2.0433,12.9212 -2.11811 -1.09055,12.9212 -2.11811 2.0433,12.8819 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [13.0787 -2.11811 -1.09055,12.9212 -2.11811 -1.09055,13.0787 -2.07874 -1.12992,12.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1,4,5,6,-1,6,5,7,-1,1,8,9,-1,3,8,1,-1,10,11,4,-1,4,11,5,-1,9,12,13,-1,8,12,9,-1,14,15,10,-1,10,15,11,-1,13,16,17,-1,12,16,13,-1,18,19,14,-1,14,19,15,-1,17,20,21,-1,16,20,17,-1,22,23,18,-1,18,23,19,-1,21,24,22,-1,20,24,21,-1,22,24,23,-1] -coord Coordinate { point [13.1181 4.4055 2.63385,13.1181 -1.48819 2.47637,13.1181 4.4055 2.47637,13.1181 -1.48819 2.63385,13.1181 -1.92126 2.0433,13.1181 -2.07874 2.0433,13.1181 -1.92126 -1.09055,13.1181 -2.07874 -1.09055,13.1181 -1.58057 2.62658,13.1181 -1.56339 2.46979,13.1181 -1.91468 2.1185,13.1181 -2.07147 2.13569,13.1181 -1.67068 2.60495,13.1181 -1.6363 2.45026,13.1181 -1.89514 2.19142,13.1181 -2.04983 2.22579,13.1181 -1.75629 2.56949,13.1181 -1.70472 2.41835,13.1181 -1.86324 2.25984,13.1181 -2.01437 2.31141,13.1181 -1.8353 2.52107,13.1181 -1.76656 2.37505,13.1181 -1.81994 2.32168,13.1181 -1.96595 2.39042,13.1181 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [13.1181 -1.48819 2.63385,13.1181 4.4055 2.63385,13.0787 -1.48819 2.67322,13.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1,4,5,6,-1,4,6,7,-1,8,0,9,-1,8,3,0,-1,10,11,5,-1,10,5,4,-1,12,9,13,-1,12,8,9,-1,14,15,11,-1,14,11,10,-1,16,13,17,-1,16,12,13,-1,18,19,15,-1,18,15,14,-1,20,17,21,-1,20,16,17,-1,22,23,19,-1,22,19,18,-1,24,21,23,-1,24,20,21,-1,24,23,22,-1] -coord Coordinate { point [12.8819 -1.48819 2.47637,12.8819 4.4055 2.63385,12.8819 4.4055 2.47637,12.8819 -1.48819 2.63385,12.8819 -2.07874 2.0433,12.8819 -1.92126 2.0433,12.8819 -1.92126 -1.09055,12.8819 -2.07874 -1.09055,12.8819 -1.58057 2.62658,12.8819 -1.56339 2.46979,12.8819 -2.07147 2.13569,12.8819 -1.91468 2.1185,12.8819 -1.67068 2.60495,12.8819 -1.6363 2.45026,12.8819 -2.04983 2.22579,12.8819 -1.89514 2.19142,12.8819 -1.75629 2.56949,12.8819 -1.70472 2.41835,12.8819 -2.01437 2.31141,12.8819 -1.86324 2.25984,12.8819 -1.8353 2.52107,12.8819 -1.76656 2.37505,12.8819 -1.96595 2.39042,12.8819 -1.81994 2.32168,12.8819 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [12.8819 4.4055 2.63385,12.8819 -1.48819 2.63385,12.9212 -1.48819 2.67322,12.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [13.0787 4.44487 2.63385,12.9212 4.44487 2.63385,13.0787 4.4055 2.67322,12.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [13.1181 -2.07874 -1.09055,13.0787 -2.11811 -1.09055,13.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [12.9212 -2.11811 -1.09055,12.8819 -2.07874 -1.09055,12.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [13.0787 -1.92126 -1.12992,12.9212 -2.07874 -1.12992,12.9212 -1.92126 -1.12992,13.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [13.1181 4.4055 2.63385,13.0787 4.44487 2.47637,13.0787 4.44487 2.63385,13.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [13.1181 4.4055 2.47637,13.1181 -1.48819 2.47637,13.0787 4.4055 2.437,13.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,12,14,13,-1,14,15,13,-1,14,16,15,-1,16,17,15,-1,16,18,17,-1] -coord Coordinate { point [13.1181 -1.48819 2.47637,13.1181 -1.56339 2.46979,13.0787 -1.48819 2.437,13.0787 -1.56499 2.42944,13.1181 -1.6363 2.45026,13.0787 -1.63885 2.40703,13.1181 -1.70472 2.41835,13.0787 -1.70691 2.37065,13.1181 -1.76656 2.37505,13.0787 -1.76657 2.32169,13.1181 -1.81994 2.32168,13.0787 -1.81554 2.26203,13.1181 -1.86324 2.25984,13.0787 -1.85192 2.19397,13.1181 -1.89514 2.19142,13.0787 -1.87432 2.12011,13.1181 -1.91468 2.1185,13.0787 -1.88189 2.0433,13.1181 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [13.1181 -1.92126 2.0433,13.1181 -1.92126 -1.09055,13.0787 -1.88189 2.0433,13.0787 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [13.1181 -1.92126 -1.09055,13.1181 -2.07874 -1.09055,13.0787 -2.07874 -1.12992,13.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [13.1181 4.4055 2.63385,13.0787 4.44487 2.63385,13.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [12.8819 -2.07874 -1.09055,12.8819 -1.92126 -1.09055,12.9212 -2.07874 -1.12992,12.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [12.8819 -1.92126 -1.09055,12.8819 -1.92126 2.0433,12.9212 -1.88189 2.0433,12.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,12,13,-1,15,14,13,-1,16,14,15,-1,17,16,15,-1,18,16,17,-1] -coord Coordinate { point [12.8819 -1.56339 2.46979,12.8819 -1.48819 2.47637,12.9212 -1.48819 2.437,12.9212 -1.56499 2.42944,12.8819 -1.6363 2.45026,12.9212 -1.63885 2.40703,12.8819 -1.70472 2.41835,12.9212 -1.70691 2.37065,12.8819 -1.76656 2.37505,12.9212 -1.76657 2.32169,12.8819 -1.81994 2.32168,12.9212 -1.81554 2.26203,12.8819 -1.86324 2.25984,12.9212 -1.85192 2.19397,12.8819 -1.89514 2.19142,12.9212 -1.87432 2.12011,12.8819 -1.91468 2.1185,12.9212 -1.88189 2.0433,12.8819 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [12.9212 4.44487 2.47637,12.8819 4.4055 2.63385,12.9212 4.44487 2.63385,12.8819 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [12.8819 -1.48819 2.47637,12.9212 4.4055 2.437,12.9212 -1.48819 2.437,12.8819 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [12.8819 4.4055 2.63385,12.9212 4.4055 2.67322,12.9212 4.44487 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [13.0787 4.44487 2.63385,12.9212 4.44487 2.47637,12.9212 4.44487 2.63385,13.0787 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [13.0787 -1.92126 -1.12992,12.9212 -1.92126 -1.12992,13.0787 -1.88189 -1.09055,12.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [13.0787 4.4055 2.437,13.0787 4.44487 2.47637,13.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [13.0787 4.4055 2.437,13.0787 -1.48819 2.437,12.9212 4.4055 2.437,12.9212 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,15,16,-1,14,13,15,-1,14,12,13,-1,17,14,16,-1] -coord Coordinate { point [13.0787 -1.87432 2.12011,13.0787 -1.88189 2.0433,12.9212 -1.88189 2.0433,12.9212 -1.87432 2.12011,13.0787 -1.85192 2.19397,12.9212 -1.85192 2.19397,13.0787 -1.81554 2.26203,12.9212 -1.81554 2.26203,13.0787 -1.76657 2.32169,12.9212 -1.76657 2.32169,13.0787 -1.70691 2.37065,12.9212 -1.70691 2.37065,13.0787 -1.63885 2.40703,12.9212 -1.63885 2.40703,13.0787 -1.56499 2.42944,12.9212 -1.56499 2.42944,12.9212 -1.48819 2.437,13.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [13.0787 -1.88189 2.0433,13.0787 -1.88189 -1.09055,12.9212 -1.88189 2.0433,12.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [13.0787 -1.88189 -1.09055,13.1181 -1.92126 -1.09055,13.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [12.8819 -1.92126 -1.09055,12.9212 -1.88189 -1.09055,12.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [12.9212 4.4055 2.437,12.8819 4.4055 2.47637,12.9212 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [13.0787 4.44487 2.47637,12.9212 4.4055 2.437,12.9212 4.44487 2.47637,13.0787 4.4055 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [14.0787 -2.11811 2.0433,14.0787 -2.11035 2.14184,13.9212 -2.11811 2.0433,13.9212 -2.11035 2.14184,14.0787 -2.08728 2.23796,13.9212 -2.08728 2.23796,14.0787 -2.04945 2.32928,13.9212 -2.04945 2.32928,14.0787 -1.9978 2.41356,13.9212 -1.9978 2.41356,14.0787 -1.93361 2.48872,13.9212 -1.93361 2.48872,14.0787 -1.85844 2.55292,13.9212 -1.85844 2.55292,14.0787 -1.77416 2.60457,13.9212 -1.77416 2.60457,14.0787 -1.68284 2.64239,13.9212 -1.68284 2.64239,14.0787 -1.58673 2.66547,13.9212 -1.58673 2.66547,14.0787 -1.48819 2.67322,13.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [14.0787 -2.11811 -1.09055,14.0787 -2.11811 2.0433,13.9212 -2.11811 2.0433,13.9212 -2.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [14.1181 -2.07874 2.0433,14.1181 -2.07147 2.13569,14.0787 -2.11811 2.0433,14.0787 -2.11035 2.14184,14.1181 -2.04983 2.22579,14.0787 -2.08728 2.23796,14.1181 -2.01437 2.31141,14.0787 -2.04945 2.32928,14.1181 -1.96595 2.39042,14.0787 -1.9978 2.41356,14.1181 -1.90577 2.46088,14.0787 -1.93361 2.48872,14.1181 -1.8353 2.52107,14.0787 -1.85844 2.55292,14.1181 -1.75629 2.56949,14.0787 -1.77416 2.60457,14.1181 -1.67068 2.60495,14.0787 -1.68284 2.64239,14.1181 -1.58057 2.62658,14.0787 -1.58673 2.66547,14.1181 -1.48819 2.63385,14.0787 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1,16,14,15,-1,17,14,16,-1,18,16,19,-1,18,17,16,-1,20,19,21,-1,20,18,19,-1] -coord Coordinate { point [13.8819 -2.07147 2.13569,13.8819 -2.07874 2.0433,13.9212 -2.11811 2.0433,13.9212 -2.11035 2.14184,13.8819 -2.04983 2.22579,13.9212 -2.08728 2.23796,13.8819 -2.01437 2.31141,13.9212 -2.04945 2.32928,13.8819 -1.96595 2.39042,13.9212 -1.9978 2.41356,13.8819 -1.90577 2.46088,13.9212 -1.93361 2.48872,13.8819 -1.8353 2.52107,13.9212 -1.85844 2.55292,13.8819 -1.75629 2.56949,13.9212 -1.77416 2.60457,13.9212 -1.68284 2.64239,13.8819 -1.67068 2.60495,13.8819 -1.58057 2.62658,13.9212 -1.58673 2.66547,13.8819 -1.48819 2.63385,13.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [14.0787 -1.48819 2.67322,14.0787 4.4055 2.67322,13.9212 -1.48819 2.67322,13.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [14.0787 -2.11811 -1.09055,14.1181 -2.07874 2.0433,14.0787 -2.11811 2.0433,14.1181 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [13.8819 -2.07874 2.0433,13.9212 -2.11811 -1.09055,13.9212 -2.11811 2.0433,13.8819 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [14.0787 -2.11811 -1.09055,13.9212 -2.11811 -1.09055,14.0787 -2.07874 -1.12992,13.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1,4,5,6,-1,6,5,7,-1,1,8,9,-1,3,8,1,-1,10,11,4,-1,4,11,5,-1,9,12,13,-1,8,12,9,-1,14,15,10,-1,10,15,11,-1,13,16,17,-1,12,16,13,-1,18,19,14,-1,14,19,15,-1,17,20,21,-1,16,20,17,-1,22,23,18,-1,18,23,19,-1,21,24,22,-1,20,24,21,-1,22,24,23,-1] -coord Coordinate { point [14.1181 4.4055 2.63385,14.1181 -1.48819 2.47637,14.1181 4.4055 2.47637,14.1181 -1.48819 2.63385,14.1181 -1.92126 2.0433,14.1181 -2.07874 2.0433,14.1181 -1.92126 -1.09055,14.1181 -2.07874 -1.09055,14.1181 -1.58057 2.62658,14.1181 -1.56339 2.46979,14.1181 -1.91468 2.1185,14.1181 -2.07147 2.13569,14.1181 -1.67068 2.60495,14.1181 -1.6363 2.45026,14.1181 -1.89514 2.19142,14.1181 -2.04983 2.22579,14.1181 -1.75629 2.56949,14.1181 -1.70472 2.41835,14.1181 -1.86324 2.25984,14.1181 -2.01437 2.31141,14.1181 -1.8353 2.52107,14.1181 -1.76656 2.37505,14.1181 -1.81994 2.32168,14.1181 -1.96595 2.39042,14.1181 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [14.1181 -1.48819 2.63385,14.1181 4.4055 2.63385,14.0787 -1.48819 2.67322,14.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1,4,5,6,-1,4,6,7,-1,8,0,9,-1,8,3,0,-1,10,11,5,-1,10,5,4,-1,12,9,13,-1,12,8,9,-1,14,15,11,-1,14,11,10,-1,16,13,17,-1,16,12,13,-1,18,19,15,-1,18,15,14,-1,20,17,21,-1,20,16,17,-1,22,23,19,-1,22,19,18,-1,24,21,23,-1,24,20,21,-1,24,23,22,-1] -coord Coordinate { point [13.8819 -1.48819 2.47637,13.8819 4.4055 2.63385,13.8819 4.4055 2.47637,13.8819 -1.48819 2.63385,13.8819 -2.07874 2.0433,13.8819 -1.92126 2.0433,13.8819 -1.92126 -1.09055,13.8819 -2.07874 -1.09055,13.8819 -1.58057 2.62658,13.8819 -1.56339 2.46979,13.8819 -2.07147 2.13569,13.8819 -1.91468 2.1185,13.8819 -1.67068 2.60495,13.8819 -1.6363 2.45026,13.8819 -2.04983 2.22579,13.8819 -1.89514 2.19142,13.8819 -1.75629 2.56949,13.8819 -1.70472 2.41835,13.8819 -2.01437 2.31141,13.8819 -1.86324 2.25984,13.8819 -1.8353 2.52107,13.8819 -1.76656 2.37505,13.8819 -1.96595 2.39042,13.8819 -1.81994 2.32168,13.8819 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [13.8819 4.4055 2.63385,13.8819 -1.48819 2.63385,13.9212 -1.48819 2.67322,13.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [14.0787 4.44487 2.63385,13.9212 4.44487 2.63385,14.0787 4.4055 2.67322,13.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [14.1181 -2.07874 -1.09055,14.0787 -2.11811 -1.09055,14.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [13.9212 -2.11811 -1.09055,13.8819 -2.07874 -1.09055,13.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [14.0787 -1.92126 -1.12992,13.9212 -2.07874 -1.12992,13.9212 -1.92126 -1.12992,14.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [14.1181 4.4055 2.63385,14.0787 4.44487 2.47637,14.0787 4.44487 2.63385,14.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [14.1181 4.4055 2.47637,14.1181 -1.48819 2.47637,14.0787 4.4055 2.437,14.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,12,14,13,-1,14,15,13,-1,14,16,15,-1,16,17,15,-1,16,18,17,-1] -coord Coordinate { point [14.1181 -1.48819 2.47637,14.1181 -1.56339 2.46979,14.0787 -1.48819 2.437,14.0787 -1.56499 2.42944,14.1181 -1.6363 2.45026,14.0787 -1.63885 2.40703,14.1181 -1.70472 2.41835,14.0787 -1.70691 2.37065,14.1181 -1.76656 2.37505,14.0787 -1.76657 2.32169,14.1181 -1.81994 2.32168,14.0787 -1.81554 2.26203,14.1181 -1.86324 2.25984,14.0787 -1.85192 2.19397,14.1181 -1.89514 2.19142,14.0787 -1.87432 2.12011,14.1181 -1.91468 2.1185,14.0787 -1.88189 2.0433,14.1181 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [14.1181 -1.92126 2.0433,14.1181 -1.92126 -1.09055,14.0787 -1.88189 2.0433,14.0787 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [14.1181 -1.92126 -1.09055,14.1181 -2.07874 -1.09055,14.0787 -2.07874 -1.12992,14.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [14.1181 4.4055 2.63385,14.0787 4.44487 2.63385,14.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [13.8819 -2.07874 -1.09055,13.8819 -1.92126 -1.09055,13.9212 -2.07874 -1.12992,13.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [13.8819 -1.92126 -1.09055,13.8819 -1.92126 2.0433,13.9212 -1.88189 2.0433,13.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,12,13,-1,15,14,13,-1,16,14,15,-1,17,16,15,-1,18,16,17,-1] -coord Coordinate { point [13.8819 -1.56339 2.46979,13.8819 -1.48819 2.47637,13.9212 -1.48819 2.437,13.9212 -1.56499 2.42944,13.8819 -1.6363 2.45026,13.9212 -1.63885 2.40703,13.8819 -1.70472 2.41835,13.9212 -1.70691 2.37065,13.8819 -1.76656 2.37505,13.9212 -1.76657 2.32169,13.8819 -1.81994 2.32168,13.9212 -1.81554 2.26203,13.8819 -1.86324 2.25984,13.9212 -1.85192 2.19397,13.8819 -1.89514 2.19142,13.9212 -1.87432 2.12011,13.8819 -1.91468 2.1185,13.9212 -1.88189 2.0433,13.8819 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [13.9212 4.44487 2.47637,13.8819 4.4055 2.63385,13.9212 4.44487 2.63385,13.8819 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [13.8819 -1.48819 2.47637,13.9212 4.4055 2.437,13.9212 -1.48819 2.437,13.8819 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [13.8819 4.4055 2.63385,13.9212 4.4055 2.67322,13.9212 4.44487 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [14.0787 4.44487 2.63385,13.9212 4.44487 2.47637,13.9212 4.44487 2.63385,14.0787 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [14.0787 -1.92126 -1.12992,13.9212 -1.92126 -1.12992,14.0787 -1.88189 -1.09055,13.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [14.0787 4.4055 2.437,14.0787 4.44487 2.47637,14.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [14.0787 4.4055 2.437,14.0787 -1.48819 2.437,13.9212 4.4055 2.437,13.9212 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,15,16,-1,14,13,15,-1,14,12,13,-1,17,14,16,-1] -coord Coordinate { point [14.0787 -1.87432 2.12011,14.0787 -1.88189 2.0433,13.9212 -1.88189 2.0433,13.9212 -1.87432 2.12011,14.0787 -1.85192 2.19397,13.9212 -1.85192 2.19397,14.0787 -1.81554 2.26203,13.9212 -1.81554 2.26203,14.0787 -1.76657 2.32169,13.9212 -1.76657 2.32169,14.0787 -1.70691 2.37065,13.9212 -1.70691 2.37065,14.0787 -1.63885 2.40703,13.9212 -1.63885 2.40703,14.0787 -1.56499 2.42944,13.9212 -1.56499 2.42944,13.9212 -1.48819 2.437,14.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [14.0787 -1.88189 2.0433,14.0787 -1.88189 -1.09055,13.9212 -1.88189 2.0433,13.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [14.0787 -1.88189 -1.09055,14.1181 -1.92126 -1.09055,14.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [13.8819 -1.92126 -1.09055,13.9212 -1.88189 -1.09055,13.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [13.9212 4.4055 2.437,13.8819 4.4055 2.47637,13.9212 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [14.0787 4.44487 2.47637,13.9212 4.4055 2.437,13.9212 4.44487 2.47637,14.0787 4.4055 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [15.0787 -2.11811 2.0433,15.0787 -2.11035 2.14184,14.9212 -2.11811 2.0433,14.9212 -2.11035 2.14184,15.0787 -2.08728 2.23796,14.9212 -2.08728 2.23796,15.0787 -2.04945 2.32928,14.9212 -2.04945 2.32928,15.0787 -1.9978 2.41356,14.9212 -1.9978 2.41356,15.0787 -1.93361 2.48872,14.9212 -1.93361 2.48872,15.0787 -1.85844 2.55292,14.9212 -1.85844 2.55292,15.0787 -1.77416 2.60457,14.9212 -1.77416 2.60457,15.0787 -1.68284 2.64239,14.9212 -1.68284 2.64239,15.0787 -1.58673 2.66547,14.9212 -1.58673 2.66547,15.0787 -1.48819 2.67322,14.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [15.0787 -2.11811 -1.09055,15.0787 -2.11811 2.0433,14.9212 -2.11811 2.0433,14.9212 -2.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [15.1181 -2.07874 2.0433,15.1181 -2.07147 2.13569,15.0787 -2.11811 2.0433,15.0787 -2.11035 2.14184,15.1181 -2.04983 2.22579,15.0787 -2.08728 2.23796,15.1181 -2.01437 2.31141,15.0787 -2.04945 2.32928,15.1181 -1.96595 2.39042,15.0787 -1.9978 2.41356,15.1181 -1.90577 2.46088,15.0787 -1.93361 2.48872,15.1181 -1.8353 2.52107,15.0787 -1.85844 2.55292,15.1181 -1.75629 2.56949,15.0787 -1.77416 2.60457,15.1181 -1.67068 2.60495,15.0787 -1.68284 2.64239,15.1181 -1.58057 2.62658,15.0787 -1.58673 2.66547,15.1181 -1.48819 2.63385,15.0787 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1,18,17,19,-1,18,16,17,-1,20,19,21,-1,20,18,19,-1] -coord Coordinate { point [14.8819 -2.07147 2.13569,14.8819 -2.07874 2.0433,14.9212 -2.11811 2.0433,14.9212 -2.11035 2.14184,14.8819 -2.04983 2.22579,14.9212 -2.08728 2.23796,14.8819 -2.01437 2.31141,14.9212 -2.04945 2.32928,14.8819 -1.96595 2.39042,14.9212 -1.9978 2.41356,14.8819 -1.90577 2.46088,14.9212 -1.93361 2.48872,14.8819 -1.8353 2.52107,14.9212 -1.85844 2.55292,14.8819 -1.75629 2.56949,14.9212 -1.77416 2.60457,14.8819 -1.67068 2.60495,14.9212 -1.68284 2.64239,14.8819 -1.58057 2.62658,14.9212 -1.58673 2.66547,14.8819 -1.48819 2.63385,14.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [15.0787 -1.48819 2.67322,15.0787 4.4055 2.67322,14.9212 -1.48819 2.67322,14.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [15.0787 -2.11811 -1.09055,15.1181 -2.07874 2.0433,15.0787 -2.11811 2.0433,15.1181 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [14.8819 -2.07874 2.0433,14.9212 -2.11811 -1.09055,14.9212 -2.11811 2.0433,14.8819 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [15.0787 -2.11811 -1.09055,14.9212 -2.11811 -1.09055,15.0787 -2.07874 -1.12992,14.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1,4,5,6,-1,6,5,7,-1,1,8,9,-1,3,8,1,-1,10,11,4,-1,4,11,5,-1,9,12,13,-1,8,12,9,-1,14,15,10,-1,10,15,11,-1,13,16,17,-1,12,16,13,-1,18,19,14,-1,14,19,15,-1,17,20,21,-1,16,20,17,-1,22,23,18,-1,18,23,19,-1,21,24,22,-1,20,24,21,-1,22,24,23,-1] -coord Coordinate { point [15.1181 4.4055 2.63385,15.1181 -1.48819 2.47637,15.1181 4.4055 2.47637,15.1181 -1.48819 2.63385,15.1181 -1.92126 2.0433,15.1181 -2.07874 2.0433,15.1181 -1.92126 -1.09055,15.1181 -2.07874 -1.09055,15.1181 -1.58057 2.62658,15.1181 -1.56339 2.46979,15.1181 -1.91468 2.1185,15.1181 -2.07147 2.13569,15.1181 -1.67068 2.60495,15.1181 -1.6363 2.45026,15.1181 -1.89514 2.19142,15.1181 -2.04983 2.22579,15.1181 -1.75629 2.56949,15.1181 -1.70472 2.41835,15.1181 -1.86324 2.25984,15.1181 -2.01437 2.31141,15.1181 -1.8353 2.52107,15.1181 -1.76656 2.37505,15.1181 -1.81994 2.32168,15.1181 -1.96595 2.39042,15.1181 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [15.1181 -1.48819 2.63385,15.1181 4.4055 2.63385,15.0787 -1.48819 2.67322,15.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1,4,5,6,-1,4,6,7,-1,8,0,9,-1,8,3,0,-1,10,11,5,-1,10,5,4,-1,12,9,13,-1,12,8,9,-1,14,15,11,-1,14,11,10,-1,16,13,17,-1,16,12,13,-1,18,19,15,-1,18,15,14,-1,20,17,21,-1,20,16,17,-1,22,23,19,-1,22,19,18,-1,24,21,23,-1,24,20,21,-1,24,23,22,-1] -coord Coordinate { point [14.8819 -1.48819 2.47637,14.8819 4.4055 2.63385,14.8819 4.4055 2.47637,14.8819 -1.48819 2.63385,14.8819 -2.07874 2.0433,14.8819 -1.92126 2.0433,14.8819 -1.92126 -1.09055,14.8819 -2.07874 -1.09055,14.8819 -1.58057 2.62658,14.8819 -1.56339 2.46979,14.8819 -2.07147 2.13569,14.8819 -1.91468 2.1185,14.8819 -1.67068 2.60495,14.8819 -1.6363 2.45026,14.8819 -2.04983 2.22579,14.8819 -1.89514 2.19142,14.8819 -1.75629 2.56949,14.8819 -1.70472 2.41835,14.8819 -2.01437 2.31141,14.8819 -1.86324 2.25984,14.8819 -1.8353 2.52107,14.8819 -1.76656 2.37505,14.8819 -1.96595 2.39042,14.8819 -1.81994 2.32168,14.8819 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [14.8819 4.4055 2.63385,14.8819 -1.48819 2.63385,14.9212 -1.48819 2.67322,14.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [15.0787 4.44487 2.63385,14.9212 4.44487 2.63385,15.0787 4.4055 2.67322,14.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [15.1181 -2.07874 -1.09055,15.0787 -2.11811 -1.09055,15.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [14.9212 -2.11811 -1.09055,14.8819 -2.07874 -1.09055,14.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [15.0787 -1.92126 -1.12992,14.9212 -2.07874 -1.12992,14.9212 -1.92126 -1.12992,15.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [15.1181 4.4055 2.63385,15.0787 4.44487 2.47637,15.0787 4.44487 2.63385,15.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [15.1181 4.4055 2.47637,15.1181 -1.48819 2.47637,15.0787 4.4055 2.437,15.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,12,14,13,-1,14,15,13,-1,14,16,15,-1,16,17,15,-1,16,18,17,-1] -coord Coordinate { point [15.1181 -1.48819 2.47637,15.1181 -1.56339 2.46979,15.0787 -1.48819 2.437,15.0787 -1.56499 2.42944,15.1181 -1.6363 2.45026,15.0787 -1.63885 2.40703,15.1181 -1.70472 2.41835,15.0787 -1.70691 2.37065,15.1181 -1.76656 2.37505,15.0787 -1.76657 2.32169,15.1181 -1.81994 2.32168,15.0787 -1.81554 2.26203,15.1181 -1.86324 2.25984,15.0787 -1.85192 2.19397,15.1181 -1.89514 2.19142,15.0787 -1.87432 2.12011,15.1181 -1.91468 2.1185,15.0787 -1.88189 2.0433,15.1181 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [15.1181 -1.92126 2.0433,15.1181 -1.92126 -1.09055,15.0787 -1.88189 2.0433,15.0787 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [15.1181 -1.92126 -1.09055,15.1181 -2.07874 -1.09055,15.0787 -2.07874 -1.12992,15.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [15.1181 4.4055 2.63385,15.0787 4.44487 2.63385,15.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [14.8819 -2.07874 -1.09055,14.8819 -1.92126 -1.09055,14.9212 -2.07874 -1.12992,14.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [14.8819 -1.92126 -1.09055,14.8819 -1.92126 2.0433,14.9212 -1.88189 2.0433,14.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,12,13,-1,15,14,13,-1,16,14,15,-1,17,16,15,-1,18,16,17,-1] -coord Coordinate { point [14.8819 -1.56339 2.46979,14.8819 -1.48819 2.47637,14.9212 -1.48819 2.437,14.9212 -1.56499 2.42944,14.8819 -1.6363 2.45026,14.9212 -1.63885 2.40703,14.8819 -1.70472 2.41835,14.9212 -1.70691 2.37065,14.8819 -1.76656 2.37505,14.9212 -1.76657 2.32169,14.8819 -1.81994 2.32168,14.9212 -1.81554 2.26203,14.8819 -1.86324 2.25984,14.9212 -1.85192 2.19397,14.8819 -1.89514 2.19142,14.9212 -1.87432 2.12011,14.8819 -1.91468 2.1185,14.9212 -1.88189 2.0433,14.8819 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [14.9212 4.44487 2.47637,14.8819 4.4055 2.63385,14.9212 4.44487 2.63385,14.8819 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [14.8819 -1.48819 2.47637,14.9212 4.4055 2.437,14.9212 -1.48819 2.437,14.8819 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [14.8819 4.4055 2.63385,14.9212 4.4055 2.67322,14.9212 4.44487 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [15.0787 4.44487 2.63385,14.9212 4.44487 2.47637,14.9212 4.44487 2.63385,15.0787 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [15.0787 -1.92126 -1.12992,14.9212 -1.92126 -1.12992,15.0787 -1.88189 -1.09055,14.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [15.0787 4.4055 2.437,15.0787 4.44487 2.47637,15.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [15.0787 4.4055 2.437,15.0787 -1.48819 2.437,14.9212 4.4055 2.437,14.9212 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,15,16,-1,14,13,15,-1,14,12,13,-1,17,14,16,-1] -coord Coordinate { point [15.0787 -1.87432 2.12011,15.0787 -1.88189 2.0433,14.9212 -1.88189 2.0433,14.9212 -1.87432 2.12011,15.0787 -1.85192 2.19397,14.9212 -1.85192 2.19397,15.0787 -1.81554 2.26203,14.9212 -1.81554 2.26203,15.0787 -1.76657 2.32169,14.9212 -1.76657 2.32169,15.0787 -1.70691 2.37065,14.9212 -1.70691 2.37065,15.0787 -1.63885 2.40703,14.9212 -1.63885 2.40703,15.0787 -1.56499 2.42944,14.9212 -1.56499 2.42944,14.9212 -1.48819 2.437,15.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [15.0787 -1.88189 2.0433,15.0787 -1.88189 -1.09055,14.9212 -1.88189 2.0433,14.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [15.0787 -1.88189 -1.09055,15.1181 -1.92126 -1.09055,15.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [14.8819 -1.92126 -1.09055,14.9212 -1.88189 -1.09055,14.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [14.9212 4.4055 2.437,14.8819 4.4055 2.47637,14.9212 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [15.0787 4.44487 2.47637,14.9212 4.4055 2.437,14.9212 4.44487 2.47637,15.0787 4.4055 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [16.0787 -2.11811 2.0433,16.0787 -2.11035 2.14184,15.9212 -2.11811 2.0433,15.9212 -2.11035 2.14184,16.0787 -2.08728 2.23796,15.9212 -2.08728 2.23796,16.0787 -2.04945 2.32928,15.9212 -2.04945 2.32928,16.0787 -1.9978 2.41356,15.9212 -1.9978 2.41356,16.0787 -1.93361 2.48872,15.9212 -1.93361 2.48872,16.0787 -1.85844 2.55292,15.9212 -1.85844 2.55292,16.0787 -1.77416 2.60457,15.9212 -1.77416 2.60457,16.0787 -1.68284 2.64239,15.9212 -1.68284 2.64239,16.0787 -1.58673 2.66547,15.9212 -1.58673 2.66547,16.0787 -1.48819 2.67322,15.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [16.0787 -2.11811 -1.09055,16.0787 -2.11811 2.0433,15.9212 -2.11811 2.0433,15.9212 -2.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [16.1181 -2.07874 2.0433,16.1181 -2.07147 2.13569,16.0787 -2.11811 2.0433,16.0787 -2.11035 2.14184,16.1181 -2.04983 2.22579,16.0787 -2.08728 2.23796,16.1181 -2.01437 2.31141,16.0787 -2.04945 2.32928,16.1181 -1.96595 2.39042,16.0787 -1.9978 2.41356,16.1181 -1.90577 2.46088,16.0787 -1.93361 2.48872,16.1181 -1.8353 2.52107,16.0787 -1.85844 2.55292,16.1181 -1.75629 2.56949,16.0787 -1.77416 2.60457,16.1181 -1.67068 2.60495,16.0787 -1.68284 2.64239,16.1181 -1.58057 2.62658,16.0787 -1.58673 2.66547,16.1181 -1.48819 2.63385,16.0787 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1,16,14,15,-1,17,14,16,-1,18,16,19,-1,18,17,16,-1,20,19,21,-1,20,18,19,-1] -coord Coordinate { point [15.8819 -2.07147 2.13569,15.8819 -2.07874 2.0433,15.9212 -2.11811 2.0433,15.9212 -2.11035 2.14184,15.8819 -2.04983 2.22579,15.9212 -2.08728 2.23796,15.8819 -2.01437 2.31141,15.9212 -2.04945 2.32928,15.8819 -1.96595 2.39042,15.9212 -1.9978 2.41356,15.8819 -1.90577 2.46088,15.9212 -1.93361 2.48872,15.8819 -1.8353 2.52107,15.9212 -1.85844 2.55292,15.8819 -1.75629 2.56949,15.9212 -1.77416 2.60457,15.9212 -1.68284 2.64239,15.8819 -1.67068 2.60495,15.8819 -1.58057 2.62658,15.9212 -1.58673 2.66547,15.8819 -1.48819 2.63385,15.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [16.0787 -1.48819 2.67322,16.0787 4.4055 2.67322,15.9212 -1.48819 2.67322,15.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [16.0787 -2.11811 -1.09055,16.1181 -2.07874 2.0433,16.0787 -2.11811 2.0433,16.1181 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [15.8819 -2.07874 2.0433,15.9212 -2.11811 -1.09055,15.9212 -2.11811 2.0433,15.8819 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [16.0787 -2.11811 -1.09055,15.9212 -2.11811 -1.09055,16.0787 -2.07874 -1.12992,15.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1,4,5,6,-1,6,5,7,-1,1,8,9,-1,3,8,1,-1,10,11,4,-1,4,11,5,-1,9,12,13,-1,8,12,9,-1,14,15,10,-1,10,15,11,-1,13,16,17,-1,12,16,13,-1,18,19,14,-1,14,19,15,-1,17,20,21,-1,16,20,17,-1,22,23,18,-1,18,23,19,-1,21,24,22,-1,20,24,21,-1,22,24,23,-1] -coord Coordinate { point [16.1181 4.4055 2.63385,16.1181 -1.48819 2.47637,16.1181 4.4055 2.47637,16.1181 -1.48819 2.63385,16.1181 -1.92126 2.0433,16.1181 -2.07874 2.0433,16.1181 -1.92126 -1.09055,16.1181 -2.07874 -1.09055,16.1181 -1.58057 2.62658,16.1181 -1.56339 2.46979,16.1181 -1.91468 2.1185,16.1181 -2.07147 2.13569,16.1181 -1.67068 2.60495,16.1181 -1.6363 2.45026,16.1181 -1.89514 2.19142,16.1181 -2.04983 2.22579,16.1181 -1.75629 2.56949,16.1181 -1.70472 2.41835,16.1181 -1.86324 2.25984,16.1181 -2.01437 2.31141,16.1181 -1.8353 2.52107,16.1181 -1.76656 2.37505,16.1181 -1.81994 2.32168,16.1181 -1.96595 2.39042,16.1181 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [16.1181 -1.48819 2.63385,16.1181 4.4055 2.63385,16.0787 -1.48819 2.67322,16.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1,4,5,6,-1,4,6,7,-1,8,0,9,-1,8,3,0,-1,10,11,5,-1,10,5,4,-1,12,9,13,-1,12,8,9,-1,14,15,11,-1,14,11,10,-1,16,13,17,-1,16,12,13,-1,18,19,15,-1,18,15,14,-1,20,17,21,-1,20,16,17,-1,22,23,19,-1,22,19,18,-1,24,21,23,-1,24,20,21,-1,24,23,22,-1] -coord Coordinate { point [15.8819 -1.48819 2.47637,15.8819 4.4055 2.63385,15.8819 4.4055 2.47637,15.8819 -1.48819 2.63385,15.8819 -2.07874 2.0433,15.8819 -1.92126 2.0433,15.8819 -1.92126 -1.09055,15.8819 -2.07874 -1.09055,15.8819 -1.58057 2.62658,15.8819 -1.56339 2.46979,15.8819 -2.07147 2.13569,15.8819 -1.91468 2.1185,15.8819 -1.67068 2.60495,15.8819 -1.6363 2.45026,15.8819 -2.04983 2.22579,15.8819 -1.89514 2.19142,15.8819 -1.75629 2.56949,15.8819 -1.70472 2.41835,15.8819 -2.01437 2.31141,15.8819 -1.86324 2.25984,15.8819 -1.8353 2.52107,15.8819 -1.76656 2.37505,15.8819 -1.96595 2.39042,15.8819 -1.81994 2.32168,15.8819 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [15.8819 4.4055 2.63385,15.8819 -1.48819 2.63385,15.9212 -1.48819 2.67322,15.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [16.0787 4.44487 2.63385,15.9212 4.44487 2.63385,16.0787 4.4055 2.67322,15.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [16.1181 -2.07874 -1.09055,16.0787 -2.11811 -1.09055,16.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [15.9212 -2.11811 -1.09055,15.8819 -2.07874 -1.09055,15.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [16.0787 -1.92126 -1.12992,15.9212 -2.07874 -1.12992,15.9212 -1.92126 -1.12992,16.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [16.1181 4.4055 2.63385,16.0787 4.44487 2.47637,16.0787 4.44487 2.63385,16.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [16.1181 4.4055 2.47637,16.1181 -1.48819 2.47637,16.0787 4.4055 2.437,16.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,12,14,13,-1,14,15,13,-1,14,16,15,-1,16,17,15,-1,16,18,17,-1] -coord Coordinate { point [16.1181 -1.48819 2.47637,16.1181 -1.56339 2.46979,16.0787 -1.48819 2.437,16.0787 -1.56499 2.42944,16.1181 -1.6363 2.45026,16.0787 -1.63885 2.40703,16.1181 -1.70472 2.41835,16.0787 -1.70691 2.37065,16.1181 -1.76656 2.37505,16.0787 -1.76657 2.32169,16.1181 -1.81994 2.32168,16.0787 -1.81554 2.26203,16.1181 -1.86324 2.25984,16.0787 -1.85192 2.19397,16.1181 -1.89514 2.19142,16.0787 -1.87432 2.12011,16.1181 -1.91468 2.1185,16.0787 -1.88189 2.0433,16.1181 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [16.1181 -1.92126 2.0433,16.1181 -1.92126 -1.09055,16.0787 -1.88189 2.0433,16.0787 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [16.1181 -1.92126 -1.09055,16.1181 -2.07874 -1.09055,16.0787 -2.07874 -1.12992,16.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [16.1181 4.4055 2.63385,16.0787 4.44487 2.63385,16.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [15.8819 -2.07874 -1.09055,15.8819 -1.92126 -1.09055,15.9212 -2.07874 -1.12992,15.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [15.8819 -1.92126 -1.09055,15.8819 -1.92126 2.0433,15.9212 -1.88189 2.0433,15.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,12,13,-1,15,14,13,-1,16,14,15,-1,17,16,15,-1,18,16,17,-1] -coord Coordinate { point [15.8819 -1.56339 2.46979,15.8819 -1.48819 2.47637,15.9212 -1.48819 2.437,15.9212 -1.56499 2.42944,15.8819 -1.6363 2.45026,15.9212 -1.63885 2.40703,15.8819 -1.70472 2.41835,15.9212 -1.70691 2.37065,15.8819 -1.76656 2.37505,15.9212 -1.76657 2.32169,15.8819 -1.81994 2.32168,15.9212 -1.81554 2.26203,15.8819 -1.86324 2.25984,15.9212 -1.85192 2.19397,15.8819 -1.89514 2.19142,15.9212 -1.87432 2.12011,15.8819 -1.91468 2.1185,15.9212 -1.88189 2.0433,15.8819 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [15.9212 4.44487 2.47637,15.8819 4.4055 2.63385,15.9212 4.44487 2.63385,15.8819 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [15.8819 -1.48819 2.47637,15.9212 4.4055 2.437,15.9212 -1.48819 2.437,15.8819 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [15.8819 4.4055 2.63385,15.9212 4.4055 2.67322,15.9212 4.44487 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [16.0787 4.44487 2.63385,15.9212 4.44487 2.47637,15.9212 4.44487 2.63385,16.0787 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [16.0787 -1.92126 -1.12992,15.9212 -1.92126 -1.12992,16.0787 -1.88189 -1.09055,15.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [16.0787 4.4055 2.437,16.0787 4.44487 2.47637,16.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [16.0787 4.4055 2.437,16.0787 -1.48819 2.437,15.9212 4.4055 2.437,15.9212 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,15,16,-1,14,13,15,-1,14,12,13,-1,17,14,16,-1] -coord Coordinate { point [16.0787 -1.87432 2.12011,16.0787 -1.88189 2.0433,15.9212 -1.88189 2.0433,15.9212 -1.87432 2.12011,16.0787 -1.85192 2.19397,15.9212 -1.85192 2.19397,16.0787 -1.81554 2.26203,15.9212 -1.81554 2.26203,16.0787 -1.76657 2.32169,15.9212 -1.76657 2.32169,16.0787 -1.70691 2.37065,15.9212 -1.70691 2.37065,16.0787 -1.63885 2.40703,15.9212 -1.63885 2.40703,16.0787 -1.56499 2.42944,15.9212 -1.56499 2.42944,15.9212 -1.48819 2.437,16.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [16.0787 -1.88189 2.0433,16.0787 -1.88189 -1.09055,15.9212 -1.88189 2.0433,15.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [16.0787 -1.88189 -1.09055,16.1181 -1.92126 -1.09055,16.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [15.8819 -1.92126 -1.09055,15.9212 -1.88189 -1.09055,15.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [15.9212 4.4055 2.437,15.8819 4.4055 2.47637,15.9212 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [16.0787 4.44487 2.47637,15.9212 4.4055 2.437,15.9212 4.44487 2.47637,16.0787 4.4055 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [17.0787 -2.11811 2.0433,17.0787 -2.11035 2.14184,16.9212 -2.11811 2.0433,16.9212 -2.11035 2.14184,17.0787 -2.08728 2.23796,16.9212 -2.08728 2.23796,17.0787 -2.04945 2.32928,16.9212 -2.04945 2.32928,17.0787 -1.9978 2.41356,16.9212 -1.9978 2.41356,17.0787 -1.93361 2.48872,16.9212 -1.93361 2.48872,17.0787 -1.85844 2.55292,16.9212 -1.85844 2.55292,17.0787 -1.77416 2.60457,16.9212 -1.77416 2.60457,17.0787 -1.68284 2.64239,16.9212 -1.68284 2.64239,17.0787 -1.58673 2.66547,16.9212 -1.58673 2.66547,17.0787 -1.48819 2.67322,16.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [17.0787 -2.11811 -1.09055,17.0787 -2.11811 2.0433,16.9212 -2.11811 2.0433,16.9212 -2.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [17.1181 -2.07874 2.0433,17.1181 -2.07147 2.13569,17.0787 -2.11811 2.0433,17.0787 -2.11035 2.14184,17.1181 -2.04983 2.22579,17.0787 -2.08728 2.23796,17.1181 -2.01437 2.31141,17.0787 -2.04945 2.32928,17.1181 -1.96595 2.39042,17.0787 -1.9978 2.41356,17.1181 -1.90577 2.46088,17.0787 -1.93361 2.48872,17.1181 -1.8353 2.52107,17.0787 -1.85844 2.55292,17.1181 -1.75629 2.56949,17.0787 -1.77416 2.60457,17.1181 -1.67068 2.60495,17.0787 -1.68284 2.64239,17.1181 -1.58057 2.62658,17.0787 -1.58673 2.66547,17.1181 -1.48819 2.63385,17.0787 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1,18,17,19,-1,18,16,17,-1,20,19,21,-1,20,18,19,-1] -coord Coordinate { point [16.8819 -2.07147 2.13569,16.8819 -2.07874 2.0433,16.9212 -2.11811 2.0433,16.9212 -2.11035 2.14184,16.8819 -2.04983 2.22579,16.9212 -2.08728 2.23796,16.8819 -2.01437 2.31141,16.9212 -2.04945 2.32928,16.8819 -1.96595 2.39042,16.9212 -1.9978 2.41356,16.8819 -1.90577 2.46088,16.9212 -1.93361 2.48872,16.8819 -1.8353 2.52107,16.9212 -1.85844 2.55292,16.8819 -1.75629 2.56949,16.9212 -1.77416 2.60457,16.8819 -1.67068 2.60495,16.9212 -1.68284 2.64239,16.8819 -1.58057 2.62658,16.9212 -1.58673 2.66547,16.8819 -1.48819 2.63385,16.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [17.0787 -1.48819 2.67322,17.0787 4.4055 2.67322,16.9212 -1.48819 2.67322,16.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [17.0787 -2.11811 -1.09055,17.1181 -2.07874 2.0433,17.0787 -2.11811 2.0433,17.1181 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [16.8819 -2.07874 2.0433,16.9212 -2.11811 -1.09055,16.9212 -2.11811 2.0433,16.8819 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [17.0787 -2.11811 -1.09055,16.9212 -2.11811 -1.09055,17.0787 -2.07874 -1.12992,16.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1,4,5,6,-1,6,5,7,-1,1,8,9,-1,3,8,1,-1,10,11,4,-1,4,11,5,-1,9,12,13,-1,8,12,9,-1,14,15,10,-1,10,15,11,-1,13,16,17,-1,12,16,13,-1,18,19,14,-1,14,19,15,-1,17,20,21,-1,16,20,17,-1,22,23,18,-1,18,23,19,-1,21,24,22,-1,20,24,21,-1,22,24,23,-1] -coord Coordinate { point [17.1181 4.4055 2.63385,17.1181 -1.48819 2.47637,17.1181 4.4055 2.47637,17.1181 -1.48819 2.63385,17.1181 -1.92126 2.0433,17.1181 -2.07874 2.0433,17.1181 -1.92126 -1.09055,17.1181 -2.07874 -1.09055,17.1181 -1.58057 2.62658,17.1181 -1.56339 2.46979,17.1181 -1.91468 2.1185,17.1181 -2.07147 2.13569,17.1181 -1.67068 2.60495,17.1181 -1.6363 2.45026,17.1181 -1.89514 2.19142,17.1181 -2.04983 2.22579,17.1181 -1.75629 2.56949,17.1181 -1.70472 2.41835,17.1181 -1.86324 2.25984,17.1181 -2.01437 2.31141,17.1181 -1.8353 2.52107,17.1181 -1.76656 2.37505,17.1181 -1.81994 2.32168,17.1181 -1.96595 2.39042,17.1181 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [17.1181 -1.48819 2.63385,17.1181 4.4055 2.63385,17.0787 -1.48819 2.67322,17.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1,4,5,6,-1,4,6,7,-1,8,0,9,-1,8,3,0,-1,10,11,5,-1,10,5,4,-1,12,9,13,-1,12,8,9,-1,14,15,11,-1,14,11,10,-1,16,13,17,-1,16,12,13,-1,18,19,15,-1,18,15,14,-1,20,17,21,-1,20,16,17,-1,22,23,19,-1,22,19,18,-1,24,21,23,-1,24,20,21,-1,24,23,22,-1] -coord Coordinate { point [16.8819 -1.48819 2.47637,16.8819 4.4055 2.63385,16.8819 4.4055 2.47637,16.8819 -1.48819 2.63385,16.8819 -2.07874 2.0433,16.8819 -1.92126 2.0433,16.8819 -1.92126 -1.09055,16.8819 -2.07874 -1.09055,16.8819 -1.58057 2.62658,16.8819 -1.56339 2.46979,16.8819 -2.07147 2.13569,16.8819 -1.91468 2.1185,16.8819 -1.67068 2.60495,16.8819 -1.6363 2.45026,16.8819 -2.04983 2.22579,16.8819 -1.89514 2.19142,16.8819 -1.75629 2.56949,16.8819 -1.70472 2.41835,16.8819 -2.01437 2.31141,16.8819 -1.86324 2.25984,16.8819 -1.8353 2.52107,16.8819 -1.76656 2.37505,16.8819 -1.96595 2.39042,16.8819 -1.81994 2.32168,16.8819 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [16.8819 4.4055 2.63385,16.8819 -1.48819 2.63385,16.9212 -1.48819 2.67322,16.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [17.0787 4.44487 2.63385,16.9212 4.44487 2.63385,17.0787 4.4055 2.67322,16.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [17.1181 -2.07874 -1.09055,17.0787 -2.11811 -1.09055,17.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [16.9212 -2.11811 -1.09055,16.8819 -2.07874 -1.09055,16.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [17.0787 -1.92126 -1.12992,16.9212 -2.07874 -1.12992,16.9212 -1.92126 -1.12992,17.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [17.1181 4.4055 2.63385,17.0787 4.44487 2.47637,17.0787 4.44487 2.63385,17.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [17.1181 4.4055 2.47637,17.1181 -1.48819 2.47637,17.0787 4.4055 2.437,17.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,12,14,13,-1,14,15,13,-1,14,16,15,-1,16,17,15,-1,16,18,17,-1] -coord Coordinate { point [17.1181 -1.48819 2.47637,17.1181 -1.56339 2.46979,17.0787 -1.48819 2.437,17.0787 -1.56499 2.42944,17.1181 -1.6363 2.45026,17.0787 -1.63885 2.40703,17.1181 -1.70472 2.41835,17.0787 -1.70691 2.37065,17.1181 -1.76656 2.37505,17.0787 -1.76657 2.32169,17.1181 -1.81994 2.32168,17.0787 -1.81554 2.26203,17.1181 -1.86324 2.25984,17.0787 -1.85192 2.19397,17.1181 -1.89514 2.19142,17.0787 -1.87432 2.12011,17.1181 -1.91468 2.1185,17.0787 -1.88189 2.0433,17.1181 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [17.1181 -1.92126 2.0433,17.1181 -1.92126 -1.09055,17.0787 -1.88189 2.0433,17.0787 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [17.1181 -1.92126 -1.09055,17.1181 -2.07874 -1.09055,17.0787 -2.07874 -1.12992,17.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [17.1181 4.4055 2.63385,17.0787 4.44487 2.63385,17.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [16.8819 -2.07874 -1.09055,16.8819 -1.92126 -1.09055,16.9212 -2.07874 -1.12992,16.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [16.8819 -1.92126 -1.09055,16.8819 -1.92126 2.0433,16.9212 -1.88189 2.0433,16.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,12,13,-1,15,14,13,-1,16,14,15,-1,17,16,15,-1,18,16,17,-1] -coord Coordinate { point [16.8819 -1.56339 2.46979,16.8819 -1.48819 2.47637,16.9212 -1.48819 2.437,16.9212 -1.56499 2.42944,16.8819 -1.6363 2.45026,16.9212 -1.63885 2.40703,16.8819 -1.70472 2.41835,16.9212 -1.70691 2.37065,16.8819 -1.76656 2.37505,16.9212 -1.76657 2.32169,16.8819 -1.81994 2.32168,16.9212 -1.81554 2.26203,16.8819 -1.86324 2.25984,16.9212 -1.85192 2.19397,16.8819 -1.89514 2.19142,16.9212 -1.87432 2.12011,16.8819 -1.91468 2.1185,16.9212 -1.88189 2.0433,16.8819 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [16.9212 4.44487 2.47637,16.8819 4.4055 2.63385,16.9212 4.44487 2.63385,16.8819 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [16.8819 -1.48819 2.47637,16.9212 4.4055 2.437,16.9212 -1.48819 2.437,16.8819 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [16.8819 4.4055 2.63385,16.9212 4.4055 2.67322,16.9212 4.44487 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [17.0787 4.44487 2.63385,16.9212 4.44487 2.47637,16.9212 4.44487 2.63385,17.0787 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [17.0787 -1.92126 -1.12992,16.9212 -1.92126 -1.12992,17.0787 -1.88189 -1.09055,16.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [17.0787 4.4055 2.437,17.0787 4.44487 2.47637,17.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [17.0787 4.4055 2.437,17.0787 -1.48819 2.437,16.9212 4.4055 2.437,16.9212 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,15,16,-1,14,13,15,-1,14,12,13,-1,17,14,16,-1] -coord Coordinate { point [17.0787 -1.87432 2.12011,17.0787 -1.88189 2.0433,16.9212 -1.88189 2.0433,16.9212 -1.87432 2.12011,17.0787 -1.85192 2.19397,16.9212 -1.85192 2.19397,17.0787 -1.81554 2.26203,16.9212 -1.81554 2.26203,17.0787 -1.76657 2.32169,16.9212 -1.76657 2.32169,17.0787 -1.70691 2.37065,16.9212 -1.70691 2.37065,17.0787 -1.63885 2.40703,16.9212 -1.63885 2.40703,17.0787 -1.56499 2.42944,16.9212 -1.56499 2.42944,16.9212 -1.48819 2.437,17.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [17.0787 -1.88189 2.0433,17.0787 -1.88189 -1.09055,16.9212 -1.88189 2.0433,16.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [17.0787 -1.88189 -1.09055,17.1181 -1.92126 -1.09055,17.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [16.8819 -1.92126 -1.09055,16.9212 -1.88189 -1.09055,16.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [16.9212 4.4055 2.437,16.8819 4.4055 2.47637,16.9212 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [17.0787 4.44487 2.47637,16.9212 4.4055 2.437,16.9212 4.44487 2.47637,17.0787 4.4055 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [18.0787 -2.11811 2.0433,18.0787 -2.11035 2.14184,17.9212 -2.11811 2.0433,17.9212 -2.11035 2.14184,18.0787 -2.08728 2.23796,17.9212 -2.08728 2.23796,18.0787 -2.04945 2.32928,17.9212 -2.04945 2.32928,18.0787 -1.9978 2.41356,17.9212 -1.9978 2.41356,18.0787 -1.93361 2.48872,17.9212 -1.93361 2.48872,18.0787 -1.85844 2.55292,17.9212 -1.85844 2.55292,18.0787 -1.77416 2.60457,17.9212 -1.77416 2.60457,18.0787 -1.68284 2.64239,17.9212 -1.68284 2.64239,18.0787 -1.58673 2.66547,17.9212 -1.58673 2.66547,18.0787 -1.48819 2.67322,17.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [18.0787 -2.11811 -1.09055,18.0787 -2.11811 2.0433,17.9212 -2.11811 2.0433,17.9212 -2.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [18.1181 -2.07874 2.0433,18.1181 -2.07147 2.13569,18.0787 -2.11811 2.0433,18.0787 -2.11035 2.14184,18.1181 -2.04983 2.22579,18.0787 -2.08728 2.23796,18.1181 -2.01437 2.31141,18.0787 -2.04945 2.32928,18.1181 -1.96595 2.39042,18.0787 -1.9978 2.41356,18.1181 -1.90577 2.46088,18.0787 -1.93361 2.48872,18.1181 -1.8353 2.52107,18.0787 -1.85844 2.55292,18.1181 -1.75629 2.56949,18.0787 -1.77416 2.60457,18.1181 -1.67068 2.60495,18.0787 -1.68284 2.64239,18.1181 -1.58057 2.62658,18.0787 -1.58673 2.66547,18.1181 -1.48819 2.63385,18.0787 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1,16,14,15,-1,17,14,16,-1,18,16,19,-1,18,17,16,-1,20,19,21,-1,20,18,19,-1] -coord Coordinate { point [17.8819 -2.07147 2.13569,17.8819 -2.07874 2.0433,17.9212 -2.11811 2.0433,17.9212 -2.11035 2.14184,17.8819 -2.04983 2.22579,17.9212 -2.08728 2.23796,17.8819 -2.01437 2.31141,17.9212 -2.04945 2.32928,17.8819 -1.96595 2.39042,17.9212 -1.9978 2.41356,17.8819 -1.90577 2.46088,17.9212 -1.93361 2.48872,17.8819 -1.8353 2.52107,17.9212 -1.85844 2.55292,17.8819 -1.75629 2.56949,17.9212 -1.77416 2.60457,17.9212 -1.68284 2.64239,17.8819 -1.67068 2.60495,17.8819 -1.58057 2.62658,17.9212 -1.58673 2.66547,17.8819 -1.48819 2.63385,17.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [18.0787 -1.48819 2.67322,18.0787 4.4055 2.67322,17.9212 -1.48819 2.67322,17.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [18.0787 -2.11811 -1.09055,18.1181 -2.07874 2.0433,18.0787 -2.11811 2.0433,18.1181 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [17.8819 -2.07874 2.0433,17.9212 -2.11811 -1.09055,17.9212 -2.11811 2.0433,17.8819 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [18.0787 -2.11811 -1.09055,17.9212 -2.11811 -1.09055,18.0787 -2.07874 -1.12992,17.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1,4,5,6,-1,6,5,7,-1,1,8,9,-1,3,8,1,-1,10,11,4,-1,4,11,5,-1,9,12,13,-1,8,12,9,-1,14,15,10,-1,10,15,11,-1,13,16,17,-1,12,16,13,-1,18,19,14,-1,14,19,15,-1,17,20,21,-1,16,20,17,-1,22,23,18,-1,18,23,19,-1,21,24,22,-1,20,24,21,-1,22,24,23,-1] -coord Coordinate { point [18.1181 4.4055 2.63385,18.1181 -1.48819 2.47637,18.1181 4.4055 2.47637,18.1181 -1.48819 2.63385,18.1181 -1.92126 2.0433,18.1181 -2.07874 2.0433,18.1181 -1.92126 -1.09055,18.1181 -2.07874 -1.09055,18.1181 -1.58057 2.62658,18.1181 -1.56339 2.46979,18.1181 -1.91468 2.1185,18.1181 -2.07147 2.13569,18.1181 -1.67068 2.60495,18.1181 -1.6363 2.45026,18.1181 -1.89514 2.19142,18.1181 -2.04983 2.22579,18.1181 -1.75629 2.56949,18.1181 -1.70472 2.41835,18.1181 -1.86324 2.25984,18.1181 -2.01437 2.31141,18.1181 -1.8353 2.52107,18.1181 -1.76656 2.37505,18.1181 -1.81994 2.32168,18.1181 -1.96595 2.39042,18.1181 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [18.1181 -1.48819 2.63385,18.1181 4.4055 2.63385,18.0787 -1.48819 2.67322,18.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1,4,5,6,-1,4,6,7,-1,8,0,9,-1,8,3,0,-1,10,11,5,-1,10,5,4,-1,12,9,13,-1,12,8,9,-1,14,15,11,-1,14,11,10,-1,16,13,17,-1,16,12,13,-1,18,19,15,-1,18,15,14,-1,20,17,21,-1,20,16,17,-1,22,23,19,-1,22,19,18,-1,24,21,23,-1,24,20,21,-1,24,23,22,-1] -coord Coordinate { point [17.8819 -1.48819 2.47637,17.8819 4.4055 2.63385,17.8819 4.4055 2.47637,17.8819 -1.48819 2.63385,17.8819 -2.07874 2.0433,17.8819 -1.92126 2.0433,17.8819 -1.92126 -1.09055,17.8819 -2.07874 -1.09055,17.8819 -1.58057 2.62658,17.8819 -1.56339 2.46979,17.8819 -2.07147 2.13569,17.8819 -1.91468 2.1185,17.8819 -1.67068 2.60495,17.8819 -1.6363 2.45026,17.8819 -2.04983 2.22579,17.8819 -1.89514 2.19142,17.8819 -1.75629 2.56949,17.8819 -1.70472 2.41835,17.8819 -2.01437 2.31141,17.8819 -1.86324 2.25984,17.8819 -1.8353 2.52107,17.8819 -1.76656 2.37505,17.8819 -1.96595 2.39042,17.8819 -1.81994 2.32168,17.8819 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [17.8819 4.4055 2.63385,17.8819 -1.48819 2.63385,17.9212 -1.48819 2.67322,17.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [18.0787 4.44487 2.63385,17.9212 4.44487 2.63385,18.0787 4.4055 2.67322,17.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [18.1181 -2.07874 -1.09055,18.0787 -2.11811 -1.09055,18.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [17.9212 -2.11811 -1.09055,17.8819 -2.07874 -1.09055,17.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [18.0787 -1.92126 -1.12992,17.9212 -2.07874 -1.12992,17.9212 -1.92126 -1.12992,18.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [18.1181 4.4055 2.63385,18.0787 4.44487 2.47637,18.0787 4.44487 2.63385,18.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [18.1181 4.4055 2.47637,18.1181 -1.48819 2.47637,18.0787 4.4055 2.437,18.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,12,14,13,-1,14,15,13,-1,14,16,15,-1,16,17,15,-1,16,18,17,-1] -coord Coordinate { point [18.1181 -1.48819 2.47637,18.1181 -1.56339 2.46979,18.0787 -1.48819 2.437,18.0787 -1.56499 2.42944,18.1181 -1.6363 2.45026,18.0787 -1.63885 2.40703,18.1181 -1.70472 2.41835,18.0787 -1.70691 2.37065,18.1181 -1.76656 2.37505,18.0787 -1.76657 2.32169,18.1181 -1.81994 2.32168,18.0787 -1.81554 2.26203,18.1181 -1.86324 2.25984,18.0787 -1.85192 2.19397,18.1181 -1.89514 2.19142,18.0787 -1.87432 2.12011,18.1181 -1.91468 2.1185,18.0787 -1.88189 2.0433,18.1181 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [18.1181 -1.92126 2.0433,18.1181 -1.92126 -1.09055,18.0787 -1.88189 2.0433,18.0787 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [18.1181 -1.92126 -1.09055,18.1181 -2.07874 -1.09055,18.0787 -2.07874 -1.12992,18.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [18.1181 4.4055 2.63385,18.0787 4.44487 2.63385,18.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [17.8819 -2.07874 -1.09055,17.8819 -1.92126 -1.09055,17.9212 -2.07874 -1.12992,17.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [17.8819 -1.92126 -1.09055,17.8819 -1.92126 2.0433,17.9212 -1.88189 2.0433,17.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,12,13,-1,15,14,13,-1,16,14,15,-1,17,16,15,-1,18,16,17,-1] -coord Coordinate { point [17.8819 -1.56339 2.46979,17.8819 -1.48819 2.47637,17.9212 -1.48819 2.437,17.9212 -1.56499 2.42944,17.8819 -1.6363 2.45026,17.9212 -1.63885 2.40703,17.8819 -1.70472 2.41835,17.9212 -1.70691 2.37065,17.8819 -1.76656 2.37505,17.9212 -1.76657 2.32169,17.8819 -1.81994 2.32168,17.9212 -1.81554 2.26203,17.8819 -1.86324 2.25984,17.9212 -1.85192 2.19397,17.8819 -1.89514 2.19142,17.9212 -1.87432 2.12011,17.8819 -1.91468 2.1185,17.9212 -1.88189 2.0433,17.8819 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [17.9212 4.44487 2.47637,17.8819 4.4055 2.63385,17.9212 4.44487 2.63385,17.8819 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [17.8819 -1.48819 2.47637,17.9212 4.4055 2.437,17.9212 -1.48819 2.437,17.8819 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [17.8819 4.4055 2.63385,17.9212 4.4055 2.67322,17.9212 4.44487 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [18.0787 4.44487 2.63385,17.9212 4.44487 2.47637,17.9212 4.44487 2.63385,18.0787 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [18.0787 -1.92126 -1.12992,17.9212 -1.92126 -1.12992,18.0787 -1.88189 -1.09055,17.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [18.0787 4.4055 2.437,18.0787 4.44487 2.47637,18.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [18.0787 4.4055 2.437,18.0787 -1.48819 2.437,17.9212 4.4055 2.437,17.9212 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,15,16,-1,14,13,15,-1,14,12,13,-1,17,14,16,-1] -coord Coordinate { point [18.0787 -1.87432 2.12011,18.0787 -1.88189 2.0433,17.9212 -1.88189 2.0433,17.9212 -1.87432 2.12011,18.0787 -1.85192 2.19397,17.9212 -1.85192 2.19397,18.0787 -1.81554 2.26203,17.9212 -1.81554 2.26203,18.0787 -1.76657 2.32169,17.9212 -1.76657 2.32169,18.0787 -1.70691 2.37065,17.9212 -1.70691 2.37065,18.0787 -1.63885 2.40703,17.9212 -1.63885 2.40703,18.0787 -1.56499 2.42944,17.9212 -1.56499 2.42944,17.9212 -1.48819 2.437,18.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [18.0787 -1.88189 2.0433,18.0787 -1.88189 -1.09055,17.9212 -1.88189 2.0433,17.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [18.0787 -1.88189 -1.09055,18.1181 -1.92126 -1.09055,18.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [17.8819 -1.92126 -1.09055,17.9212 -1.88189 -1.09055,17.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [17.9212 4.4055 2.437,17.8819 4.4055 2.47637,17.9212 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [18.0787 4.44487 2.47637,17.9212 4.4055 2.437,17.9212 4.44487 2.47637,18.0787 4.4055 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [19.0787 -2.11811 2.0433,19.0787 -2.11035 2.14184,18.9212 -2.11811 2.0433,18.9212 -2.11035 2.14184,19.0787 -2.08728 2.23796,18.9212 -2.08728 2.23796,19.0787 -2.04945 2.32928,18.9212 -2.04945 2.32928,19.0787 -1.9978 2.41356,18.9212 -1.9978 2.41356,19.0787 -1.93361 2.48872,18.9212 -1.93361 2.48872,19.0787 -1.85844 2.55292,18.9212 -1.85844 2.55292,19.0787 -1.77416 2.60457,18.9212 -1.77416 2.60457,19.0787 -1.68284 2.64239,18.9212 -1.68284 2.64239,19.0787 -1.58673 2.66547,18.9212 -1.58673 2.66547,19.0787 -1.48819 2.67322,18.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [19.0787 -2.11811 -1.09055,19.0787 -2.11811 2.0433,18.9212 -2.11811 2.0433,18.9212 -2.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [19.1181 -2.07874 2.0433,19.1181 -2.07147 2.13569,19.0787 -2.11811 2.0433,19.0787 -2.11035 2.14184,19.1181 -2.04983 2.22579,19.0787 -2.08728 2.23796,19.1181 -2.01437 2.31141,19.0787 -2.04945 2.32928,19.1181 -1.96595 2.39042,19.0787 -1.9978 2.41356,19.1181 -1.90577 2.46088,19.0787 -1.93361 2.48872,19.1181 -1.8353 2.52107,19.0787 -1.85844 2.55292,19.1181 -1.75629 2.56949,19.0787 -1.77416 2.60457,19.1181 -1.67068 2.60495,19.0787 -1.68284 2.64239,19.1181 -1.58057 2.62658,19.0787 -1.58673 2.66547,19.1181 -1.48819 2.63385,19.0787 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1,18,17,19,-1,18,16,17,-1,20,19,21,-1,20,18,19,-1] -coord Coordinate { point [18.8819 -2.07147 2.13569,18.8819 -2.07874 2.0433,18.9212 -2.11811 2.0433,18.9212 -2.11035 2.14184,18.8819 -2.04983 2.22579,18.9212 -2.08728 2.23796,18.8819 -2.01437 2.31141,18.9212 -2.04945 2.32928,18.8819 -1.96595 2.39042,18.9212 -1.9978 2.41356,18.8819 -1.90577 2.46088,18.9212 -1.93361 2.48872,18.8819 -1.8353 2.52107,18.9212 -1.85844 2.55292,18.8819 -1.75629 2.56949,18.9212 -1.77416 2.60457,18.8819 -1.67068 2.60495,18.9212 -1.68284 2.64239,18.8819 -1.58057 2.62658,18.9212 -1.58673 2.66547,18.8819 -1.48819 2.63385,18.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [19.0787 -1.48819 2.67322,19.0787 4.4055 2.67322,18.9212 -1.48819 2.67322,18.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [19.0787 -2.11811 -1.09055,19.1181 -2.07874 2.0433,19.0787 -2.11811 2.0433,19.1181 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [18.8819 -2.07874 2.0433,18.9212 -2.11811 -1.09055,18.9212 -2.11811 2.0433,18.8819 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [19.0787 -2.11811 -1.09055,18.9212 -2.11811 -1.09055,19.0787 -2.07874 -1.12992,18.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1,4,5,6,-1,6,5,7,-1,1,8,9,-1,3,8,1,-1,10,11,4,-1,4,11,5,-1,9,12,13,-1,8,12,9,-1,14,15,10,-1,10,15,11,-1,13,16,17,-1,12,16,13,-1,18,19,14,-1,14,19,15,-1,17,20,21,-1,16,20,17,-1,22,23,18,-1,18,23,19,-1,21,24,22,-1,20,24,21,-1,22,24,23,-1] -coord Coordinate { point [19.1181 4.4055 2.63385,19.1181 -1.48819 2.47637,19.1181 4.4055 2.47637,19.1181 -1.48819 2.63385,19.1181 -1.92126 2.0433,19.1181 -2.07874 2.0433,19.1181 -1.92126 -1.09055,19.1181 -2.07874 -1.09055,19.1181 -1.58057 2.62658,19.1181 -1.56339 2.46979,19.1181 -1.91468 2.1185,19.1181 -2.07147 2.13569,19.1181 -1.67068 2.60495,19.1181 -1.6363 2.45026,19.1181 -1.89514 2.19142,19.1181 -2.04983 2.22579,19.1181 -1.75629 2.56949,19.1181 -1.70472 2.41835,19.1181 -1.86324 2.25984,19.1181 -2.01437 2.31141,19.1181 -1.8353 2.52107,19.1181 -1.76656 2.37505,19.1181 -1.81994 2.32168,19.1181 -1.96595 2.39042,19.1181 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [19.1181 -1.48819 2.63385,19.1181 4.4055 2.63385,19.0787 -1.48819 2.67322,19.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1,4,5,6,-1,4,6,7,-1,8,0,9,-1,8,3,0,-1,10,11,5,-1,10,5,4,-1,12,9,13,-1,12,8,9,-1,14,15,11,-1,14,11,10,-1,16,13,17,-1,16,12,13,-1,18,19,15,-1,18,15,14,-1,20,17,21,-1,20,16,17,-1,22,23,19,-1,22,19,18,-1,24,21,23,-1,24,20,21,-1,24,23,22,-1] -coord Coordinate { point [18.8819 -1.48819 2.47637,18.8819 4.4055 2.63385,18.8819 4.4055 2.47637,18.8819 -1.48819 2.63385,18.8819 -2.07874 2.0433,18.8819 -1.92126 2.0433,18.8819 -1.92126 -1.09055,18.8819 -2.07874 -1.09055,18.8819 -1.58057 2.62658,18.8819 -1.56339 2.46979,18.8819 -2.07147 2.13569,18.8819 -1.91468 2.1185,18.8819 -1.67068 2.60495,18.8819 -1.6363 2.45026,18.8819 -2.04983 2.22579,18.8819 -1.89514 2.19142,18.8819 -1.75629 2.56949,18.8819 -1.70472 2.41835,18.8819 -2.01437 2.31141,18.8819 -1.86324 2.25984,18.8819 -1.8353 2.52107,18.8819 -1.76656 2.37505,18.8819 -1.96595 2.39042,18.8819 -1.81994 2.32168,18.8819 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [18.8819 4.4055 2.63385,18.8819 -1.48819 2.63385,18.9212 -1.48819 2.67322,18.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [19.0787 4.44487 2.63385,18.9212 4.44487 2.63385,19.0787 4.4055 2.67322,18.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [19.1181 -2.07874 -1.09055,19.0787 -2.11811 -1.09055,19.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [18.9212 -2.11811 -1.09055,18.8819 -2.07874 -1.09055,18.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [19.0787 -1.92126 -1.12992,18.9212 -2.07874 -1.12992,18.9212 -1.92126 -1.12992,19.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [19.1181 4.4055 2.63385,19.0787 4.44487 2.47637,19.0787 4.44487 2.63385,19.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [19.1181 4.4055 2.47637,19.1181 -1.48819 2.47637,19.0787 4.4055 2.437,19.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,12,14,13,-1,14,15,13,-1,14,16,15,-1,16,17,15,-1,16,18,17,-1] -coord Coordinate { point [19.1181 -1.48819 2.47637,19.1181 -1.56339 2.46979,19.0787 -1.48819 2.437,19.0787 -1.56499 2.42944,19.1181 -1.6363 2.45026,19.0787 -1.63885 2.40703,19.1181 -1.70472 2.41835,19.0787 -1.70691 2.37065,19.1181 -1.76656 2.37505,19.0787 -1.76657 2.32169,19.1181 -1.81994 2.32168,19.0787 -1.81554 2.26203,19.1181 -1.86324 2.25984,19.0787 -1.85192 2.19397,19.1181 -1.89514 2.19142,19.0787 -1.87432 2.12011,19.1181 -1.91468 2.1185,19.0787 -1.88189 2.0433,19.1181 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [19.1181 -1.92126 2.0433,19.1181 -1.92126 -1.09055,19.0787 -1.88189 2.0433,19.0787 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [19.1181 -1.92126 -1.09055,19.1181 -2.07874 -1.09055,19.0787 -2.07874 -1.12992,19.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [19.1181 4.4055 2.63385,19.0787 4.44487 2.63385,19.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [18.8819 -2.07874 -1.09055,18.8819 -1.92126 -1.09055,18.9212 -2.07874 -1.12992,18.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [18.8819 -1.92126 -1.09055,18.8819 -1.92126 2.0433,18.9212 -1.88189 2.0433,18.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,12,13,-1,15,14,13,-1,16,14,15,-1,17,16,15,-1,18,16,17,-1] -coord Coordinate { point [18.8819 -1.56339 2.46979,18.8819 -1.48819 2.47637,18.9212 -1.48819 2.437,18.9212 -1.56499 2.42944,18.8819 -1.6363 2.45026,18.9212 -1.63885 2.40703,18.8819 -1.70472 2.41835,18.9212 -1.70691 2.37065,18.8819 -1.76656 2.37505,18.9212 -1.76657 2.32169,18.8819 -1.81994 2.32168,18.9212 -1.81554 2.26203,18.8819 -1.86324 2.25984,18.9212 -1.85192 2.19397,18.8819 -1.89514 2.19142,18.9212 -1.87432 2.12011,18.8819 -1.91468 2.1185,18.9212 -1.88189 2.0433,18.8819 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [18.9212 4.44487 2.47637,18.8819 4.4055 2.63385,18.9212 4.44487 2.63385,18.8819 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [18.8819 -1.48819 2.47637,18.9212 4.4055 2.437,18.9212 -1.48819 2.437,18.8819 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [18.8819 4.4055 2.63385,18.9212 4.4055 2.67322,18.9212 4.44487 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [19.0787 4.44487 2.63385,18.9212 4.44487 2.47637,18.9212 4.44487 2.63385,19.0787 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [19.0787 -1.92126 -1.12992,18.9212 -1.92126 -1.12992,19.0787 -1.88189 -1.09055,18.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [19.0787 4.4055 2.437,19.0787 4.44487 2.47637,19.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [19.0787 4.4055 2.437,19.0787 -1.48819 2.437,18.9212 4.4055 2.437,18.9212 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,15,16,-1,14,13,15,-1,14,12,13,-1,17,14,16,-1] -coord Coordinate { point [19.0787 -1.87432 2.12011,19.0787 -1.88189 2.0433,18.9212 -1.88189 2.0433,18.9212 -1.87432 2.12011,19.0787 -1.85192 2.19397,18.9212 -1.85192 2.19397,19.0787 -1.81554 2.26203,18.9212 -1.81554 2.26203,19.0787 -1.76657 2.32169,18.9212 -1.76657 2.32169,19.0787 -1.70691 2.37065,18.9212 -1.70691 2.37065,19.0787 -1.63885 2.40703,18.9212 -1.63885 2.40703,19.0787 -1.56499 2.42944,18.9212 -1.56499 2.42944,18.9212 -1.48819 2.437,19.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [19.0787 -1.88189 2.0433,19.0787 -1.88189 -1.09055,18.9212 -1.88189 2.0433,18.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [19.0787 -1.88189 -1.09055,19.1181 -1.92126 -1.09055,19.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [18.8819 -1.92126 -1.09055,18.9212 -1.88189 -1.09055,18.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [18.9212 4.4055 2.437,18.8819 4.4055 2.47637,18.9212 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [19.0787 4.44487 2.47637,18.9212 4.4055 2.437,18.9212 4.44487 2.47637,19.0787 4.4055 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [20.0787 -2.11811 2.0433,20.0787 -2.11035 2.14184,19.9212 -2.11811 2.0433,19.9212 -2.11035 2.14184,20.0787 -2.08728 2.23796,19.9212 -2.08728 2.23796,20.0787 -2.04945 2.32928,19.9212 -2.04945 2.32928,20.0787 -1.9978 2.41356,19.9212 -1.9978 2.41356,20.0787 -1.93361 2.48872,19.9212 -1.93361 2.48872,20.0787 -1.85844 2.55292,19.9212 -1.85844 2.55292,20.0787 -1.77416 2.60457,19.9212 -1.77416 2.60457,20.0787 -1.68284 2.64239,19.9212 -1.68284 2.64239,20.0787 -1.58673 2.66547,19.9212 -1.58673 2.66547,20.0787 -1.48819 2.67322,19.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [20.0787 -2.11811 -1.09055,20.0787 -2.11811 2.0433,19.9212 -2.11811 2.0433,19.9212 -2.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [20.1181 -2.07874 2.0433,20.1181 -2.07147 2.13569,20.0787 -2.11811 2.0433,20.0787 -2.11035 2.14184,20.1181 -2.04983 2.22579,20.0787 -2.08728 2.23796,20.1181 -2.01437 2.31141,20.0787 -2.04945 2.32928,20.1181 -1.96595 2.39042,20.0787 -1.9978 2.41356,20.1181 -1.90577 2.46088,20.0787 -1.93361 2.48872,20.1181 -1.8353 2.52107,20.0787 -1.85844 2.55292,20.1181 -1.75629 2.56949,20.0787 -1.77416 2.60457,20.1181 -1.67068 2.60495,20.0787 -1.68284 2.64239,20.1181 -1.58057 2.62658,20.0787 -1.58673 2.66547,20.1181 -1.48819 2.63385,20.0787 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1,16,14,15,-1,17,14,16,-1,18,16,19,-1,18,17,16,-1,20,19,21,-1,20,18,19,-1] -coord Coordinate { point [19.8818 -2.07147 2.13569,19.8818 -2.07874 2.0433,19.9212 -2.11811 2.0433,19.9212 -2.11035 2.14184,19.8818 -2.04983 2.22579,19.9212 -2.08728 2.23796,19.8818 -2.01437 2.31141,19.9212 -2.04945 2.32928,19.8818 -1.96595 2.39042,19.9212 -1.9978 2.41356,19.8818 -1.90577 2.46088,19.9212 -1.93361 2.48872,19.8818 -1.8353 2.52107,19.9212 -1.85844 2.55292,19.8818 -1.75629 2.56949,19.9212 -1.77416 2.60457,19.9212 -1.68284 2.64239,19.8818 -1.67068 2.60495,19.8818 -1.58057 2.62658,19.9212 -1.58673 2.66547,19.8819 -1.48819 2.63385,19.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [20.0787 -1.48819 2.67322,20.0787 4.4055 2.67322,19.9212 -1.48819 2.67322,19.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [20.0787 -2.11811 -1.09055,20.1181 -2.07874 2.0433,20.0787 -2.11811 2.0433,20.1181 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [19.8818 -2.07874 2.0433,19.9212 -2.11811 -1.09055,19.9212 -2.11811 2.0433,19.8819 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [20.0787 -2.11811 -1.09055,19.9212 -2.11811 -1.09055,20.0787 -2.07874 -1.12992,19.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1,4,5,6,-1,6,5,7,-1,1,8,9,-1,3,8,1,-1,10,11,4,-1,4,11,5,-1,9,12,13,-1,8,12,9,-1,14,15,10,-1,10,15,11,-1,13,16,17,-1,12,16,13,-1,18,19,14,-1,14,19,15,-1,17,20,21,-1,16,20,17,-1,22,23,18,-1,18,23,19,-1,21,24,22,-1,20,24,21,-1,22,24,23,-1] -coord Coordinate { point [20.1181 4.4055 2.63385,20.1181 -1.48819 2.47637,20.1181 4.4055 2.47637,20.1181 -1.48819 2.63385,20.1181 -1.92126 2.0433,20.1181 -2.07874 2.0433,20.1181 -1.92126 -1.09055,20.1181 -2.07874 -1.09055,20.1181 -1.58057 2.62658,20.1181 -1.56339 2.46979,20.1181 -1.91468 2.1185,20.1181 -2.07147 2.13569,20.1181 -1.67068 2.60495,20.1181 -1.6363 2.45026,20.1181 -1.89514 2.19142,20.1181 -2.04983 2.22579,20.1181 -1.75629 2.56949,20.1181 -1.70472 2.41835,20.1181 -1.86324 2.25984,20.1181 -2.01437 2.31141,20.1181 -1.8353 2.52107,20.1181 -1.76656 2.37505,20.1181 -1.81994 2.32168,20.1181 -1.96595 2.39042,20.1181 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [20.1181 -1.48819 2.63385,20.1181 4.4055 2.63385,20.0787 -1.48819 2.67322,20.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1,4,5,6,-1,4,6,7,-1,8,0,9,-1,8,3,0,-1,10,11,5,-1,10,5,4,-1,12,9,13,-1,12,8,9,-1,14,15,11,-1,14,11,10,-1,16,13,17,-1,16,12,13,-1,18,19,15,-1,18,15,14,-1,20,17,21,-1,20,16,17,-1,22,23,19,-1,22,19,18,-1,24,21,23,-1,24,20,21,-1,24,23,22,-1] -coord Coordinate { point [19.8819 -1.48819 2.47637,19.8819 4.4055 2.63385,19.8819 4.4055 2.47637,19.8819 -1.48819 2.63385,19.8818 -2.07874 2.0433,19.8818 -1.92126 2.0433,19.8819 -1.92126 -1.09055,19.8819 -2.07874 -1.09055,19.8818 -1.58057 2.62658,19.8818 -1.56339 2.46979,19.8818 -2.07147 2.13569,19.8818 -1.91468 2.1185,19.8818 -1.67068 2.60495,19.8818 -1.6363 2.45026,19.8818 -2.04983 2.22579,19.8818 -1.89514 2.19142,19.8818 -1.75629 2.56949,19.8818 -1.70472 2.41835,19.8818 -2.01437 2.31141,19.8818 -1.86324 2.25984,19.8818 -1.8353 2.52107,19.8818 -1.76656 2.37505,19.8818 -1.96595 2.39042,19.8818 -1.81994 2.32168,19.8818 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [19.8819 4.4055 2.63385,19.8819 -1.48819 2.63385,19.9212 -1.48819 2.67322,19.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [20.0787 4.44487 2.63385,19.9212 4.44487 2.63385,20.0787 4.4055 2.67322,19.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [20.1181 -2.07874 -1.09055,20.0787 -2.11811 -1.09055,20.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [19.9212 -2.11811 -1.09055,19.8819 -2.07874 -1.09055,19.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [20.0787 -1.92126 -1.12992,19.9212 -2.07874 -1.12992,19.9212 -1.92126 -1.12992,20.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [20.1181 4.4055 2.63385,20.0787 4.44487 2.47637,20.0787 4.44487 2.63385,20.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [20.1181 4.4055 2.47637,20.1181 -1.48819 2.47637,20.0787 4.4055 2.437,20.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,12,14,13,-1,14,15,13,-1,14,16,15,-1,16,17,15,-1,16,18,17,-1] -coord Coordinate { point [20.1181 -1.48819 2.47637,20.1181 -1.56339 2.46979,20.0787 -1.48819 2.437,20.0787 -1.56499 2.42944,20.1181 -1.6363 2.45026,20.0787 -1.63885 2.40703,20.1181 -1.70472 2.41835,20.0787 -1.70691 2.37065,20.1181 -1.76656 2.37505,20.0787 -1.76657 2.32169,20.1181 -1.81994 2.32168,20.0787 -1.81554 2.26203,20.1181 -1.86324 2.25984,20.0787 -1.85192 2.19397,20.1181 -1.89514 2.19142,20.0787 -1.87432 2.12011,20.1181 -1.91468 2.1185,20.0787 -1.88189 2.0433,20.1181 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [20.1181 -1.92126 2.0433,20.1181 -1.92126 -1.09055,20.0787 -1.88189 2.0433,20.0787 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [20.1181 -1.92126 -1.09055,20.1181 -2.07874 -1.09055,20.0787 -2.07874 -1.12992,20.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [20.1181 4.4055 2.63385,20.0787 4.44487 2.63385,20.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [19.8819 -2.07874 -1.09055,19.8819 -1.92126 -1.09055,19.9212 -2.07874 -1.12992,19.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [19.8819 -1.92126 -1.09055,19.8818 -1.92126 2.0433,19.9212 -1.88189 2.0433,19.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,12,13,-1,15,14,13,-1,16,14,15,-1,17,16,15,-1,18,16,17,-1] -coord Coordinate { point [19.8818 -1.56339 2.46979,19.8819 -1.48819 2.47637,19.9212 -1.48819 2.437,19.9212 -1.56499 2.42944,19.8818 -1.6363 2.45026,19.9212 -1.63885 2.40703,19.8818 -1.70472 2.41835,19.9212 -1.70691 2.37065,19.8818 -1.76656 2.37505,19.9212 -1.76657 2.32169,19.8818 -1.81994 2.32168,19.9212 -1.81554 2.26203,19.8818 -1.86324 2.25984,19.9212 -1.85192 2.19397,19.8818 -1.89514 2.19142,19.9212 -1.87432 2.12011,19.8818 -1.91468 2.1185,19.9212 -1.88189 2.0433,19.8818 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [19.9212 4.44487 2.47637,19.8819 4.4055 2.63385,19.9212 4.44487 2.63385,19.8819 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [19.8819 -1.48819 2.47637,19.9212 4.4055 2.437,19.9212 -1.48819 2.437,19.8819 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [19.8819 4.4055 2.63385,19.9212 4.4055 2.67322,19.9212 4.44487 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [20.0787 4.44487 2.63385,19.9212 4.44487 2.47637,19.9212 4.44487 2.63385,20.0787 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [20.0787 -1.92126 -1.12992,19.9212 -1.92126 -1.12992,20.0787 -1.88189 -1.09055,19.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [20.0787 4.4055 2.437,20.0787 4.44487 2.47637,20.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [20.0787 4.4055 2.437,20.0787 -1.48819 2.437,19.9212 4.4055 2.437,19.9212 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,15,16,-1,14,13,15,-1,14,12,13,-1,17,14,16,-1] -coord Coordinate { point [20.0787 -1.87432 2.12011,20.0787 -1.88189 2.0433,19.9212 -1.88189 2.0433,19.9212 -1.87432 2.12011,20.0787 -1.85192 2.19397,19.9212 -1.85192 2.19397,20.0787 -1.81554 2.26203,19.9212 -1.81554 2.26203,20.0787 -1.76657 2.32169,19.9212 -1.76657 2.32169,20.0787 -1.70691 2.37065,19.9212 -1.70691 2.37065,20.0787 -1.63885 2.40703,19.9212 -1.63885 2.40703,20.0787 -1.56499 2.42944,19.9212 -1.56499 2.42944,19.9212 -1.48819 2.437,20.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [20.0787 -1.88189 2.0433,20.0787 -1.88189 -1.09055,19.9212 -1.88189 2.0433,19.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [20.0787 -1.88189 -1.09055,20.1181 -1.92126 -1.09055,20.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [19.8819 -1.92126 -1.09055,19.9212 -1.88189 -1.09055,19.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [19.9212 4.4055 2.437,19.8819 4.4055 2.47637,19.9212 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [20.0787 4.44487 2.47637,19.9212 4.4055 2.437,19.9212 4.44487 2.47637,20.0787 4.4055 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [21.0787 -2.11811 2.0433,21.0787 -2.11035 2.14184,20.9212 -2.11811 2.0433,20.9212 -2.11035 2.14184,21.0787 -2.08728 2.23796,20.9212 -2.08728 2.23796,21.0787 -2.04945 2.32928,20.9212 -2.04945 2.32928,21.0787 -1.9978 2.41356,20.9212 -1.9978 2.41356,21.0787 -1.93361 2.48872,20.9212 -1.93361 2.48872,21.0787 -1.85844 2.55292,20.9212 -1.85844 2.55292,21.0787 -1.77416 2.60457,20.9212 -1.77416 2.60457,21.0787 -1.68284 2.64239,20.9212 -1.68284 2.64239,21.0787 -1.58673 2.66547,20.9212 -1.58673 2.66547,21.0787 -1.48819 2.67322,20.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [21.0787 -2.11811 -1.09055,21.0787 -2.11811 2.0433,20.9212 -2.11811 2.0433,20.9212 -2.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [21.1181 -2.07874 2.0433,21.1181 -2.07147 2.13569,21.0787 -2.11811 2.0433,21.0787 -2.11035 2.14184,21.1181 -2.04983 2.22579,21.0787 -2.08728 2.23796,21.1181 -2.01437 2.31141,21.0787 -2.04945 2.32928,21.1181 -1.96595 2.39042,21.0787 -1.9978 2.41356,21.1181 -1.90577 2.46088,21.0787 -1.93361 2.48872,21.1181 -1.8353 2.52107,21.0787 -1.85844 2.55292,21.1181 -1.75629 2.56949,21.0787 -1.77416 2.60457,21.1181 -1.67068 2.60495,21.0787 -1.68284 2.64239,21.1181 -1.58057 2.62658,21.0787 -1.58673 2.66547,21.1181 -1.48819 2.63385,21.0787 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1,16,14,15,-1,17,14,16,-1,18,16,19,-1,18,17,16,-1,20,19,21,-1,20,18,19,-1] -coord Coordinate { point [20.8818 -2.07147 2.13569,20.8818 -2.07874 2.0433,20.9212 -2.11811 2.0433,20.9212 -2.11035 2.14184,20.8818 -2.04983 2.22579,20.9212 -2.08728 2.23796,20.8818 -2.01437 2.31141,20.9212 -2.04945 2.32928,20.8818 -1.96595 2.39042,20.9212 -1.9978 2.41356,20.8818 -1.90577 2.46088,20.9212 -1.93361 2.48872,20.8818 -1.8353 2.52107,20.9212 -1.85844 2.55292,20.8818 -1.75629 2.56949,20.9212 -1.77416 2.60457,20.9212 -1.68284 2.64239,20.8818 -1.67068 2.60495,20.8818 -1.58057 2.62658,20.9212 -1.58673 2.66547,20.8818 -1.48819 2.63385,20.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [21.0787 -1.48819 2.67322,21.0787 4.4055 2.67322,20.9212 -1.48819 2.67322,20.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [21.0787 -2.11811 -1.09055,21.1181 -2.07874 2.0433,21.0787 -2.11811 2.0433,21.1181 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [20.8818 -2.07874 2.0433,20.9212 -2.11811 -1.09055,20.9212 -2.11811 2.0433,20.8818 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [21.0787 -2.11811 -1.09055,20.9212 -2.11811 -1.09055,21.0787 -2.07874 -1.12992,20.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1,4,5,6,-1,6,5,7,-1,1,8,9,-1,3,8,1,-1,10,11,4,-1,4,11,5,-1,9,12,13,-1,8,12,9,-1,14,15,10,-1,10,15,11,-1,13,16,17,-1,12,16,13,-1,18,19,14,-1,14,19,15,-1,17,20,21,-1,16,20,17,-1,22,23,18,-1,18,23,19,-1,21,24,22,-1,20,24,21,-1,22,24,23,-1] -coord Coordinate { point [21.1181 4.4055 2.63385,21.1181 -1.48819 2.47637,21.1181 4.4055 2.47637,21.1181 -1.48819 2.63385,21.1181 -1.92126 2.0433,21.1181 -2.07874 2.0433,21.1181 -1.92126 -1.09055,21.1181 -2.07874 -1.09055,21.1181 -1.58057 2.62658,21.1181 -1.56339 2.46979,21.1181 -1.91468 2.1185,21.1181 -2.07147 2.13569,21.1181 -1.67068 2.60495,21.1181 -1.6363 2.45026,21.1181 -1.89514 2.19142,21.1181 -2.04983 2.22579,21.1181 -1.75629 2.56949,21.1181 -1.70472 2.41835,21.1181 -1.86324 2.25984,21.1181 -2.01437 2.31141,21.1181 -1.8353 2.52107,21.1181 -1.76656 2.37505,21.1181 -1.81994 2.32168,21.1181 -1.96595 2.39042,21.1181 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [21.1181 -1.48819 2.63385,21.1181 4.4055 2.63385,21.0787 -1.48819 2.67322,21.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1,4,5,6,-1,4,6,7,-1,8,0,9,-1,8,3,0,-1,10,11,5,-1,10,5,4,-1,12,9,13,-1,12,8,9,-1,14,15,11,-1,14,11,10,-1,16,13,17,-1,16,12,13,-1,18,19,15,-1,18,15,14,-1,20,17,21,-1,20,16,17,-1,22,23,19,-1,22,19,18,-1,24,21,23,-1,24,20,21,-1,24,23,22,-1] -coord Coordinate { point [20.8818 -1.48819 2.47637,20.8818 4.4055 2.63385,20.8818 4.4055 2.47637,20.8818 -1.48819 2.63385,20.8818 -2.07874 2.0433,20.8818 -1.92126 2.0433,20.8818 -1.92126 -1.09055,20.8818 -2.07874 -1.09055,20.8818 -1.58057 2.62658,20.8818 -1.56339 2.46979,20.8818 -2.07147 2.13569,20.8818 -1.91468 2.1185,20.8818 -1.67068 2.60495,20.8818 -1.6363 2.45026,20.8818 -2.04983 2.22579,20.8818 -1.89514 2.19142,20.8818 -1.75629 2.56949,20.8818 -1.70472 2.41835,20.8818 -2.01437 2.31141,20.8818 -1.86324 2.25984,20.8818 -1.8353 2.52107,20.8818 -1.76656 2.37505,20.8818 -1.96595 2.39042,20.8818 -1.81994 2.32168,20.8818 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [20.8818 4.4055 2.63385,20.8818 -1.48819 2.63385,20.9212 -1.48819 2.67322,20.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [21.0787 4.44487 2.63385,20.9212 4.44487 2.63385,21.0787 4.4055 2.67322,20.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [21.1181 -2.07874 -1.09055,21.0787 -2.11811 -1.09055,21.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [20.9212 -2.11811 -1.09055,20.8818 -2.07874 -1.09055,20.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [21.0787 -1.92126 -1.12992,20.9212 -2.07874 -1.12992,20.9212 -1.92126 -1.12992,21.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [21.1181 4.4055 2.63385,21.0787 4.44487 2.47637,21.0787 4.44487 2.63385,21.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [21.1181 4.4055 2.47637,21.1181 -1.48819 2.47637,21.0787 4.4055 2.437,21.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,12,14,13,-1,14,15,13,-1,14,16,15,-1,16,17,15,-1,16,18,17,-1] -coord Coordinate { point [21.1181 -1.48819 2.47637,21.1181 -1.56339 2.46979,21.0787 -1.48819 2.437,21.0787 -1.56499 2.42944,21.1181 -1.6363 2.45026,21.0787 -1.63885 2.40703,21.1181 -1.70472 2.41835,21.0787 -1.70691 2.37065,21.1181 -1.76656 2.37505,21.0787 -1.76657 2.32169,21.1181 -1.81994 2.32168,21.0787 -1.81554 2.26203,21.1181 -1.86324 2.25984,21.0787 -1.85192 2.19397,21.1181 -1.89514 2.19142,21.0787 -1.87432 2.12011,21.1181 -1.91468 2.1185,21.0787 -1.88189 2.0433,21.1181 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [21.1181 -1.92126 2.0433,21.1181 -1.92126 -1.09055,21.0787 -1.88189 2.0433,21.0787 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [21.1181 -1.92126 -1.09055,21.1181 -2.07874 -1.09055,21.0787 -2.07874 -1.12992,21.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [21.1181 4.4055 2.63385,21.0787 4.44487 2.63385,21.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [20.8818 -2.07874 -1.09055,20.8818 -1.92126 -1.09055,20.9212 -2.07874 -1.12992,20.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [20.8818 -1.92126 -1.09055,20.8818 -1.92126 2.0433,20.9212 -1.88189 2.0433,20.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,12,13,-1,15,14,13,-1,16,14,15,-1,17,16,15,-1,18,16,17,-1] -coord Coordinate { point [20.8818 -1.56339 2.46979,20.8818 -1.48819 2.47637,20.9212 -1.48819 2.437,20.9212 -1.56499 2.42944,20.8818 -1.6363 2.45026,20.9212 -1.63885 2.40703,20.8818 -1.70472 2.41835,20.9212 -1.70691 2.37065,20.8818 -1.76656 2.37505,20.9212 -1.76657 2.32169,20.8818 -1.81994 2.32168,20.9212 -1.81554 2.26203,20.8818 -1.86324 2.25984,20.9212 -1.85192 2.19397,20.8818 -1.89514 2.19142,20.9212 -1.87432 2.12011,20.8818 -1.91468 2.1185,20.9212 -1.88189 2.0433,20.8818 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [20.9212 4.44487 2.47637,20.8818 4.4055 2.63385,20.9212 4.44487 2.63385,20.8818 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [20.8818 -1.48819 2.47637,20.9212 4.4055 2.437,20.9212 -1.48819 2.437,20.8818 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [20.8818 4.4055 2.63385,20.9212 4.4055 2.67322,20.9212 4.44487 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [21.0787 4.44487 2.63385,20.9212 4.44487 2.47637,20.9212 4.44487 2.63385,21.0787 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [21.0787 -1.92126 -1.12992,20.9212 -1.92126 -1.12992,21.0787 -1.88189 -1.09055,20.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [21.0787 4.4055 2.437,21.0787 4.44487 2.47637,21.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [21.0787 4.4055 2.437,21.0787 -1.48819 2.437,20.9212 4.4055 2.437,20.9212 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,15,16,-1,14,13,15,-1,14,12,13,-1,17,14,16,-1] -coord Coordinate { point [21.0787 -1.87432 2.12011,21.0787 -1.88189 2.0433,20.9212 -1.88189 2.0433,20.9212 -1.87432 2.12011,21.0787 -1.85192 2.19397,20.9212 -1.85192 2.19397,21.0787 -1.81554 2.26203,20.9212 -1.81554 2.26203,21.0787 -1.76657 2.32169,20.9212 -1.76657 2.32169,21.0787 -1.70691 2.37065,20.9212 -1.70691 2.37065,21.0787 -1.63885 2.40703,20.9212 -1.63885 2.40703,21.0787 -1.56499 2.42944,20.9212 -1.56499 2.42944,20.9212 -1.48819 2.437,21.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [21.0787 -1.88189 2.0433,21.0787 -1.88189 -1.09055,20.9212 -1.88189 2.0433,20.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [21.0787 -1.88189 -1.09055,21.1181 -1.92126 -1.09055,21.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [20.8818 -1.92126 -1.09055,20.9212 -1.88189 -1.09055,20.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [20.9212 4.4055 2.437,20.8818 4.4055 2.47637,20.9212 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [21.0787 4.44487 2.47637,20.9212 4.4055 2.437,20.9212 4.44487 2.47637,21.0787 4.4055 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [22.0787 -2.11811 2.0433,22.0787 -2.11035 2.14184,21.9212 -2.11811 2.0433,21.9212 -2.11035 2.14184,22.0787 -2.08728 2.23796,21.9212 -2.08728 2.23796,22.0787 -2.04945 2.32928,21.9212 -2.04945 2.32928,22.0787 -1.9978 2.41356,21.9212 -1.9978 2.41356,22.0787 -1.93361 2.48872,21.9212 -1.93361 2.48872,22.0787 -1.85844 2.55292,21.9212 -1.85844 2.55292,22.0787 -1.77416 2.60457,21.9212 -1.77416 2.60457,22.0787 -1.68284 2.64239,21.9212 -1.68284 2.64239,22.0787 -1.58673 2.66547,21.9212 -1.58673 2.66547,22.0787 -1.48819 2.67322,21.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [22.0787 -2.11811 -1.09055,22.0787 -2.11811 2.0433,21.9212 -2.11811 2.0433,21.9212 -2.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [22.1181 -2.07874 2.0433,22.1181 -2.07147 2.13569,22.0787 -2.11811 2.0433,22.0787 -2.11035 2.14184,22.1181 -2.04983 2.22579,22.0787 -2.08728 2.23796,22.1181 -2.01437 2.31141,22.0787 -2.04945 2.32928,22.1181 -1.96595 2.39042,22.0787 -1.9978 2.41356,22.1181 -1.90577 2.46088,22.0787 -1.93361 2.48872,22.1181 -1.8353 2.52107,22.0787 -1.85844 2.55292,22.1181 -1.75629 2.56949,22.0787 -1.77416 2.60457,22.1181 -1.67068 2.60495,22.0787 -1.68284 2.64239,22.1181 -1.58057 2.62658,22.0787 -1.58673 2.66547,22.1181 -1.48819 2.63385,22.0787 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1,18,17,19,-1,18,16,17,-1,20,19,21,-1,20,18,19,-1] -coord Coordinate { point [21.8818 -2.07147 2.13569,21.8818 -2.07874 2.0433,21.9212 -2.11811 2.0433,21.9212 -2.11035 2.14184,21.8818 -2.04983 2.22579,21.9212 -2.08728 2.23796,21.8818 -2.01437 2.31141,21.9212 -2.04945 2.32928,21.8818 -1.96595 2.39042,21.9212 -1.9978 2.41356,21.8818 -1.90577 2.46088,21.9212 -1.93361 2.48872,21.8818 -1.8353 2.52107,21.9212 -1.85844 2.55292,21.8818 -1.75629 2.56949,21.9212 -1.77416 2.60457,21.8818 -1.67068 2.60495,21.9212 -1.68284 2.64239,21.8818 -1.58057 2.62658,21.9212 -1.58673 2.66547,21.8818 -1.48819 2.63385,21.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [22.0787 -1.48819 2.67322,22.0787 4.4055 2.67322,21.9212 -1.48819 2.67322,21.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [22.0787 -2.11811 -1.09055,22.1181 -2.07874 2.0433,22.0787 -2.11811 2.0433,22.1181 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [21.8818 -2.07874 2.0433,21.9212 -2.11811 -1.09055,21.9212 -2.11811 2.0433,21.8818 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [22.0787 -2.11811 -1.09055,21.9212 -2.11811 -1.09055,22.0787 -2.07874 -1.12992,21.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1,4,5,6,-1,6,5,7,-1,1,8,9,-1,3,8,1,-1,10,11,4,-1,4,11,5,-1,9,12,13,-1,8,12,9,-1,14,15,10,-1,10,15,11,-1,13,16,17,-1,12,16,13,-1,18,19,14,-1,14,19,15,-1,17,20,21,-1,16,20,17,-1,22,23,18,-1,18,23,19,-1,21,24,22,-1,20,24,21,-1,22,24,23,-1] -coord Coordinate { point [22.1181 4.4055 2.63385,22.1181 -1.48819 2.47637,22.1181 4.4055 2.47637,22.1181 -1.48819 2.63385,22.1181 -1.92126 2.0433,22.1181 -2.07874 2.0433,22.1181 -1.92126 -1.09055,22.1181 -2.07874 -1.09055,22.1181 -1.58057 2.62658,22.1181 -1.56339 2.46979,22.1181 -1.91468 2.1185,22.1181 -2.07147 2.13569,22.1181 -1.67068 2.60495,22.1181 -1.6363 2.45026,22.1181 -1.89514 2.19142,22.1181 -2.04983 2.22579,22.1181 -1.75629 2.56949,22.1181 -1.70472 2.41835,22.1181 -1.86324 2.25984,22.1181 -2.01437 2.31141,22.1181 -1.8353 2.52107,22.1181 -1.76656 2.37505,22.1181 -1.81994 2.32168,22.1181 -1.96595 2.39042,22.1181 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [22.1181 -1.48819 2.63385,22.1181 4.4055 2.63385,22.0787 -1.48819 2.67322,22.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1,4,5,6,-1,4,6,7,-1,8,0,9,-1,8,3,0,-1,10,11,5,-1,10,5,4,-1,12,9,13,-1,12,8,9,-1,14,15,11,-1,14,11,10,-1,16,13,17,-1,16,12,13,-1,18,19,15,-1,18,15,14,-1,20,17,21,-1,20,16,17,-1,22,23,19,-1,22,19,18,-1,24,21,23,-1,24,20,21,-1,24,23,22,-1] -coord Coordinate { point [21.8818 -1.48819 2.47637,21.8818 4.4055 2.63385,21.8818 4.4055 2.47637,21.8818 -1.48819 2.63385,21.8818 -2.07874 2.0433,21.8818 -1.92126 2.0433,21.8818 -1.92126 -1.09055,21.8818 -2.07874 -1.09055,21.8818 -1.58057 2.62658,21.8818 -1.56339 2.46979,21.8818 -2.07147 2.13569,21.8818 -1.91468 2.1185,21.8818 -1.67068 2.60495,21.8818 -1.6363 2.45026,21.8818 -2.04983 2.22579,21.8818 -1.89514 2.19142,21.8818 -1.75629 2.56949,21.8818 -1.70472 2.41835,21.8818 -2.01437 2.31141,21.8818 -1.86324 2.25984,21.8818 -1.8353 2.52107,21.8818 -1.76656 2.37505,21.8818 -1.96595 2.39042,21.8818 -1.81994 2.32168,21.8818 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [21.8818 4.4055 2.63385,21.8818 -1.48819 2.63385,21.9212 -1.48819 2.67322,21.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [22.0787 4.44487 2.63385,21.9212 4.44487 2.63385,22.0787 4.4055 2.67322,21.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [22.1181 -2.07874 -1.09055,22.0787 -2.11811 -1.09055,22.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [21.9212 -2.11811 -1.09055,21.8818 -2.07874 -1.09055,21.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [22.0787 -1.92126 -1.12992,21.9212 -2.07874 -1.12992,21.9212 -1.92126 -1.12992,22.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [22.1181 4.4055 2.63385,22.0787 4.44487 2.47637,22.0787 4.44487 2.63385,22.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [22.1181 4.4055 2.47637,22.1181 -1.48819 2.47637,22.0787 4.4055 2.437,22.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,12,14,13,-1,14,15,13,-1,14,16,15,-1,16,17,15,-1,16,18,17,-1] -coord Coordinate { point [22.1181 -1.48819 2.47637,22.1181 -1.56339 2.46979,22.0787 -1.48819 2.437,22.0787 -1.56499 2.42944,22.1181 -1.6363 2.45026,22.0787 -1.63885 2.40703,22.1181 -1.70472 2.41835,22.0787 -1.70691 2.37065,22.1181 -1.76656 2.37505,22.0787 -1.76657 2.32169,22.1181 -1.81994 2.32168,22.0787 -1.81554 2.26203,22.1181 -1.86324 2.25984,22.0787 -1.85192 2.19397,22.1181 -1.89514 2.19142,22.0787 -1.87432 2.12011,22.1181 -1.91468 2.1185,22.0787 -1.88189 2.0433,22.1181 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [22.1181 -1.92126 2.0433,22.1181 -1.92126 -1.09055,22.0787 -1.88189 2.0433,22.0787 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [22.1181 -1.92126 -1.09055,22.1181 -2.07874 -1.09055,22.0787 -2.07874 -1.12992,22.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [22.1181 4.4055 2.63385,22.0787 4.44487 2.63385,22.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [21.8818 -2.07874 -1.09055,21.8818 -1.92126 -1.09055,21.9212 -2.07874 -1.12992,21.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [21.8818 -1.92126 -1.09055,21.8818 -1.92126 2.0433,21.9212 -1.88189 2.0433,21.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,12,13,-1,15,14,13,-1,16,14,15,-1,17,16,15,-1,18,16,17,-1] -coord Coordinate { point [21.8818 -1.56339 2.46979,21.8818 -1.48819 2.47637,21.9212 -1.48819 2.437,21.9212 -1.56499 2.42944,21.8818 -1.6363 2.45026,21.9212 -1.63885 2.40703,21.8818 -1.70472 2.41835,21.9212 -1.70691 2.37065,21.8818 -1.76656 2.37505,21.9212 -1.76657 2.32169,21.8818 -1.81994 2.32168,21.9212 -1.81554 2.26203,21.8818 -1.86324 2.25984,21.9212 -1.85192 2.19397,21.8818 -1.89514 2.19142,21.9212 -1.87432 2.12011,21.8818 -1.91468 2.1185,21.9212 -1.88189 2.0433,21.8818 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [21.9212 4.44487 2.47637,21.8818 4.4055 2.63385,21.9212 4.44487 2.63385,21.8818 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [21.8818 -1.48819 2.47637,21.9212 4.4055 2.437,21.9212 -1.48819 2.437,21.8818 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [21.8818 4.4055 2.63385,21.9212 4.4055 2.67322,21.9212 4.44487 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [22.0787 4.44487 2.63385,21.9212 4.44487 2.47637,21.9212 4.44487 2.63385,22.0787 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [22.0787 -1.92126 -1.12992,21.9212 -1.92126 -1.12992,22.0787 -1.88189 -1.09055,21.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [22.0787 4.4055 2.437,22.0787 4.44487 2.47637,22.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [22.0787 4.4055 2.437,22.0787 -1.48819 2.437,21.9212 4.4055 2.437,21.9212 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,15,16,-1,14,13,15,-1,14,12,13,-1,17,14,16,-1] -coord Coordinate { point [22.0787 -1.87432 2.12011,22.0787 -1.88189 2.0433,21.9212 -1.88189 2.0433,21.9212 -1.87432 2.12011,22.0787 -1.85192 2.19397,21.9212 -1.85192 2.19397,22.0787 -1.81554 2.26203,21.9212 -1.81554 2.26203,22.0787 -1.76657 2.32169,21.9212 -1.76657 2.32169,22.0787 -1.70691 2.37065,21.9212 -1.70691 2.37065,22.0787 -1.63885 2.40703,21.9212 -1.63885 2.40703,22.0787 -1.56499 2.42944,21.9212 -1.56499 2.42944,21.9212 -1.48819 2.437,22.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [22.0787 -1.88189 2.0433,22.0787 -1.88189 -1.09055,21.9212 -1.88189 2.0433,21.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [22.0787 -1.88189 -1.09055,22.1181 -1.92126 -1.09055,22.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [21.8818 -1.92126 -1.09055,21.9212 -1.88189 -1.09055,21.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [21.9212 4.4055 2.437,21.8818 4.4055 2.47637,21.9212 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [22.0787 4.44487 2.47637,21.9212 4.4055 2.437,21.9212 4.44487 2.47637,22.0787 4.4055 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [23.0787 -2.11811 2.0433,23.0787 -2.11035 2.14184,22.9212 -2.11811 2.0433,22.9212 -2.11035 2.14184,23.0787 -2.08728 2.23796,22.9212 -2.08728 2.23796,23.0787 -2.04945 2.32928,22.9212 -2.04945 2.32928,23.0787 -1.9978 2.41356,22.9212 -1.9978 2.41356,23.0787 -1.93361 2.48872,22.9212 -1.93361 2.48872,23.0787 -1.85844 2.55292,22.9212 -1.85844 2.55292,23.0787 -1.77416 2.60457,22.9212 -1.77416 2.60457,23.0787 -1.68284 2.64239,22.9212 -1.68284 2.64239,23.0787 -1.58673 2.66547,22.9212 -1.58673 2.66547,23.0787 -1.48819 2.67322,22.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [23.0787 -2.11811 -1.09055,23.0787 -2.11811 2.0433,22.9212 -2.11811 2.0433,22.9212 -2.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [23.1181 -2.07874 2.0433,23.1181 -2.07147 2.13569,23.0787 -2.11811 2.0433,23.0787 -2.11035 2.14184,23.1181 -2.04983 2.22579,23.0787 -2.08728 2.23796,23.1181 -2.01437 2.31141,23.0787 -2.04945 2.32928,23.1181 -1.96595 2.39042,23.0787 -1.9978 2.41356,23.1181 -1.90577 2.46088,23.0787 -1.93361 2.48872,23.1181 -1.8353 2.52107,23.0787 -1.85844 2.55292,23.1181 -1.75629 2.56949,23.0787 -1.77416 2.60457,23.1181 -1.67068 2.60495,23.0787 -1.68284 2.64239,23.1181 -1.58057 2.62658,23.0787 -1.58673 2.66547,23.1181 -1.48819 2.63385,23.0787 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1,16,14,15,-1,17,14,16,-1,18,16,19,-1,18,17,16,-1,20,19,21,-1,20,18,19,-1] -coord Coordinate { point [22.8818 -2.07147 2.13569,22.8818 -2.07874 2.0433,22.9212 -2.11811 2.0433,22.9212 -2.11035 2.14184,22.8818 -2.04983 2.22579,22.9212 -2.08728 2.23796,22.8818 -2.01437 2.31141,22.9212 -2.04945 2.32928,22.8818 -1.96595 2.39042,22.9212 -1.9978 2.41356,22.8818 -1.90577 2.46088,22.9212 -1.93361 2.48872,22.8818 -1.8353 2.52107,22.9212 -1.85844 2.55292,22.8818 -1.75629 2.56949,22.9212 -1.77416 2.60457,22.9212 -1.68284 2.64239,22.8818 -1.67068 2.60495,22.8818 -1.58057 2.62658,22.9212 -1.58673 2.66547,22.8818 -1.48819 2.63385,22.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [23.0787 -1.48819 2.67322,23.0787 4.4055 2.67322,22.9212 -1.48819 2.67322,22.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [23.0787 -2.11811 -1.09055,23.1181 -2.07874 2.0433,23.0787 -2.11811 2.0433,23.1181 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [22.8818 -2.07874 2.0433,22.9212 -2.11811 -1.09055,22.9212 -2.11811 2.0433,22.8818 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [23.0787 -2.11811 -1.09055,22.9212 -2.11811 -1.09055,23.0787 -2.07874 -1.12992,22.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1,4,5,6,-1,6,5,7,-1,1,8,9,-1,3,8,1,-1,10,11,4,-1,4,11,5,-1,9,12,13,-1,8,12,9,-1,14,15,10,-1,10,15,11,-1,13,16,17,-1,12,16,13,-1,18,19,14,-1,14,19,15,-1,17,20,21,-1,16,20,17,-1,22,23,18,-1,18,23,19,-1,21,24,22,-1,20,24,21,-1,22,24,23,-1] -coord Coordinate { point [23.1181 4.4055 2.63385,23.1181 -1.48819 2.47637,23.1181 4.4055 2.47637,23.1181 -1.48819 2.63385,23.1181 -1.92126 2.0433,23.1181 -2.07874 2.0433,23.1181 -1.92126 -1.09055,23.1181 -2.07874 -1.09055,23.1181 -1.58057 2.62658,23.1181 -1.56339 2.46979,23.1181 -1.91468 2.1185,23.1181 -2.07147 2.13569,23.1181 -1.67068 2.60495,23.1181 -1.6363 2.45026,23.1181 -1.89514 2.19142,23.1181 -2.04983 2.22579,23.1181 -1.75629 2.56949,23.1181 -1.70472 2.41835,23.1181 -1.86324 2.25984,23.1181 -2.01437 2.31141,23.1181 -1.8353 2.52107,23.1181 -1.76656 2.37505,23.1181 -1.81994 2.32168,23.1181 -1.96595 2.39042,23.1181 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [23.1181 -1.48819 2.63385,23.1181 4.4055 2.63385,23.0787 -1.48819 2.67322,23.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1,4,5,6,-1,4,6,7,-1,8,0,9,-1,8,3,0,-1,10,11,5,-1,10,5,4,-1,12,9,13,-1,12,8,9,-1,14,15,11,-1,14,11,10,-1,16,13,17,-1,16,12,13,-1,18,19,15,-1,18,15,14,-1,20,17,21,-1,20,16,17,-1,22,23,19,-1,22,19,18,-1,24,21,23,-1,24,20,21,-1,24,23,22,-1] -coord Coordinate { point [22.8818 -1.48819 2.47637,22.8818 4.4055 2.63385,22.8818 4.4055 2.47637,22.8818 -1.48819 2.63385,22.8818 -2.07874 2.0433,22.8818 -1.92126 2.0433,22.8818 -1.92126 -1.09055,22.8818 -2.07874 -1.09055,22.8818 -1.58057 2.62658,22.8818 -1.56339 2.46979,22.8818 -2.07147 2.13569,22.8818 -1.91468 2.1185,22.8818 -1.67068 2.60495,22.8818 -1.6363 2.45026,22.8818 -2.04983 2.22579,22.8818 -1.89514 2.19142,22.8818 -1.75629 2.56949,22.8818 -1.70472 2.41835,22.8818 -2.01437 2.31141,22.8818 -1.86324 2.25984,22.8818 -1.8353 2.52107,22.8818 -1.76656 2.37505,22.8818 -1.96595 2.39042,22.8818 -1.81994 2.32168,22.8818 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [22.8818 4.4055 2.63385,22.8818 -1.48819 2.63385,22.9212 -1.48819 2.67322,22.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [23.0787 4.44487 2.63385,22.9212 4.44487 2.63385,23.0787 4.4055 2.67322,22.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [23.1181 -2.07874 -1.09055,23.0787 -2.11811 -1.09055,23.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [22.9212 -2.11811 -1.09055,22.8818 -2.07874 -1.09055,22.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [23.0787 -1.92126 -1.12992,22.9212 -2.07874 -1.12992,22.9212 -1.92126 -1.12992,23.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [23.1181 4.4055 2.63385,23.0787 4.44487 2.47637,23.0787 4.44487 2.63385,23.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [23.1181 4.4055 2.47637,23.1181 -1.48819 2.47637,23.0787 4.4055 2.437,23.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,12,14,13,-1,14,15,13,-1,14,16,15,-1,16,17,15,-1,16,18,17,-1] -coord Coordinate { point [23.1181 -1.48819 2.47637,23.1181 -1.56339 2.46979,23.0787 -1.48819 2.437,23.0787 -1.56499 2.42944,23.1181 -1.6363 2.45026,23.0787 -1.63885 2.40703,23.1181 -1.70472 2.41835,23.0787 -1.70691 2.37065,23.1181 -1.76656 2.37505,23.0787 -1.76657 2.32169,23.1181 -1.81994 2.32168,23.0787 -1.81554 2.26203,23.1181 -1.86324 2.25984,23.0787 -1.85192 2.19397,23.1181 -1.89514 2.19142,23.0787 -1.87432 2.12011,23.1181 -1.91468 2.1185,23.0787 -1.88189 2.0433,23.1181 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [23.1181 -1.92126 2.0433,23.1181 -1.92126 -1.09055,23.0787 -1.88189 2.0433,23.0787 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [23.1181 -1.92126 -1.09055,23.1181 -2.07874 -1.09055,23.0787 -2.07874 -1.12992,23.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [23.1181 4.4055 2.63385,23.0787 4.44487 2.63385,23.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [22.8818 -2.07874 -1.09055,22.8818 -1.92126 -1.09055,22.9212 -2.07874 -1.12992,22.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [22.8818 -1.92126 -1.09055,22.8818 -1.92126 2.0433,22.9212 -1.88189 2.0433,22.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,12,13,-1,15,14,13,-1,16,14,15,-1,17,16,15,-1,18,16,17,-1] -coord Coordinate { point [22.8818 -1.56339 2.46979,22.8818 -1.48819 2.47637,22.9212 -1.48819 2.437,22.9212 -1.56499 2.42944,22.8818 -1.6363 2.45026,22.9212 -1.63885 2.40703,22.8818 -1.70472 2.41835,22.9212 -1.70691 2.37065,22.8818 -1.76656 2.37505,22.9212 -1.76657 2.32169,22.8818 -1.81994 2.32168,22.9212 -1.81554 2.26203,22.8818 -1.86324 2.25984,22.9212 -1.85192 2.19397,22.8818 -1.89514 2.19142,22.9212 -1.87432 2.12011,22.8818 -1.91468 2.1185,22.9212 -1.88189 2.0433,22.8818 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [22.9212 4.44487 2.47637,22.8818 4.4055 2.63385,22.9212 4.44487 2.63385,22.8818 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [22.8818 -1.48819 2.47637,22.9212 4.4055 2.437,22.9212 -1.48819 2.437,22.8818 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [22.8818 4.4055 2.63385,22.9212 4.4055 2.67322,22.9212 4.44487 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [23.0787 4.44487 2.63385,22.9212 4.44487 2.47637,22.9212 4.44487 2.63385,23.0787 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [23.0787 -1.92126 -1.12992,22.9212 -1.92126 -1.12992,23.0787 -1.88189 -1.09055,22.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [23.0787 4.4055 2.437,23.0787 4.44487 2.47637,23.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [23.0787 4.4055 2.437,23.0787 -1.48819 2.437,22.9212 4.4055 2.437,22.9212 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,15,16,-1,14,13,15,-1,14,12,13,-1,17,14,16,-1] -coord Coordinate { point [23.0787 -1.87432 2.12011,23.0787 -1.88189 2.0433,22.9212 -1.88189 2.0433,22.9212 -1.87432 2.12011,23.0787 -1.85192 2.19397,22.9212 -1.85192 2.19397,23.0787 -1.81554 2.26203,22.9212 -1.81554 2.26203,23.0787 -1.76657 2.32169,22.9212 -1.76657 2.32169,23.0787 -1.70691 2.37065,22.9212 -1.70691 2.37065,23.0787 -1.63885 2.40703,22.9212 -1.63885 2.40703,23.0787 -1.56499 2.42944,22.9212 -1.56499 2.42944,22.9212 -1.48819 2.437,23.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [23.0787 -1.88189 2.0433,23.0787 -1.88189 -1.09055,22.9212 -1.88189 2.0433,22.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [23.0787 -1.88189 -1.09055,23.1181 -1.92126 -1.09055,23.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [22.8818 -1.92126 -1.09055,22.9212 -1.88189 -1.09055,22.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [22.9212 4.4055 2.437,22.8818 4.4055 2.47637,22.9212 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [23.0787 4.44487 2.47637,22.9212 4.4055 2.437,22.9212 4.44487 2.47637,23.0787 4.4055 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [24.0787 -2.11811 2.0433,24.0787 -2.11035 2.14184,23.9212 -2.11811 2.0433,23.9212 -2.11035 2.14184,24.0787 -2.08728 2.23796,23.9212 -2.08728 2.23796,24.0787 -2.04945 2.32928,23.9212 -2.04945 2.32928,24.0787 -1.9978 2.41356,23.9212 -1.9978 2.41356,24.0787 -1.93361 2.48872,23.9212 -1.93361 2.48872,24.0787 -1.85844 2.55292,23.9212 -1.85844 2.55292,24.0787 -1.77416 2.60457,23.9212 -1.77416 2.60457,24.0787 -1.68284 2.64239,23.9212 -1.68284 2.64239,24.0787 -1.58673 2.66547,23.9212 -1.58673 2.66547,24.0787 -1.48819 2.67322,23.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [24.0787 -2.11811 -1.09055,24.0787 -2.11811 2.0433,23.9212 -2.11811 2.0433,23.9212 -2.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [24.1181 -2.07874 2.0433,24.1181 -2.07147 2.13569,24.0787 -2.11811 2.0433,24.0787 -2.11035 2.14184,24.1181 -2.04983 2.22579,24.0787 -2.08728 2.23796,24.1181 -2.01437 2.31141,24.0787 -2.04945 2.32928,24.1181 -1.96595 2.39042,24.0787 -1.9978 2.41356,24.1181 -1.90577 2.46088,24.0787 -1.93361 2.48872,24.1181 -1.8353 2.52107,24.0787 -1.85844 2.55292,24.1181 -1.75629 2.56949,24.0787 -1.77416 2.60457,24.1181 -1.67068 2.60495,24.0787 -1.68284 2.64239,24.1181 -1.58057 2.62658,24.0787 -1.58673 2.66547,24.1181 -1.48819 2.63385,24.0787 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1,18,17,19,-1,18,16,17,-1,20,19,21,-1,20,18,19,-1] -coord Coordinate { point [23.8818 -2.07147 2.13569,23.8818 -2.07874 2.0433,23.9212 -2.11811 2.0433,23.9212 -2.11035 2.14184,23.8818 -2.04983 2.22579,23.9212 -2.08728 2.23796,23.8818 -2.01437 2.31141,23.9212 -2.04945 2.32928,23.8818 -1.96595 2.39042,23.9212 -1.9978 2.41356,23.8818 -1.90577 2.46088,23.9212 -1.93361 2.48872,23.8818 -1.8353 2.52107,23.9212 -1.85844 2.55292,23.8818 -1.75629 2.56949,23.9212 -1.77416 2.60457,23.8818 -1.67068 2.60495,23.9212 -1.68284 2.64239,23.8818 -1.58057 2.62658,23.9212 -1.58673 2.66547,23.8818 -1.48819 2.63385,23.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [24.0787 -1.48819 2.67322,24.0787 4.4055 2.67322,23.9212 -1.48819 2.67322,23.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [24.0787 -2.11811 -1.09055,24.1181 -2.07874 2.0433,24.0787 -2.11811 2.0433,24.1181 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [23.8818 -2.07874 2.0433,23.9212 -2.11811 -1.09055,23.9212 -2.11811 2.0433,23.8818 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [24.0787 -2.11811 -1.09055,23.9212 -2.11811 -1.09055,24.0787 -2.07874 -1.12992,23.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1,4,5,6,-1,6,5,7,-1,1,8,9,-1,3,8,1,-1,10,11,4,-1,4,11,5,-1,9,12,13,-1,8,12,9,-1,14,15,10,-1,10,15,11,-1,13,16,17,-1,12,16,13,-1,18,19,14,-1,14,19,15,-1,17,20,21,-1,16,20,17,-1,22,23,18,-1,18,23,19,-1,21,24,22,-1,20,24,21,-1,22,24,23,-1] -coord Coordinate { point [24.1181 4.4055 2.63385,24.1181 -1.48819 2.47637,24.1181 4.4055 2.47637,24.1181 -1.48819 2.63385,24.1181 -1.92126 2.0433,24.1181 -2.07874 2.0433,24.1181 -1.92126 -1.09055,24.1181 -2.07874 -1.09055,24.1181 -1.58057 2.62658,24.1181 -1.56339 2.46979,24.1181 -1.91468 2.1185,24.1181 -2.07147 2.13569,24.1181 -1.67068 2.60495,24.1181 -1.6363 2.45026,24.1181 -1.89514 2.19142,24.1181 -2.04983 2.22579,24.1181 -1.75629 2.56949,24.1181 -1.70472 2.41835,24.1181 -1.86324 2.25984,24.1181 -2.01437 2.31141,24.1181 -1.8353 2.52107,24.1181 -1.76656 2.37505,24.1181 -1.81994 2.32168,24.1181 -1.96595 2.39042,24.1181 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [24.1181 -1.48819 2.63385,24.1181 4.4055 2.63385,24.0787 -1.48819 2.67322,24.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1,4,5,6,-1,4,6,7,-1,8,0,9,-1,8,3,0,-1,10,11,5,-1,10,5,4,-1,12,9,13,-1,12,8,9,-1,14,15,11,-1,14,11,10,-1,16,13,17,-1,16,12,13,-1,18,19,15,-1,18,15,14,-1,20,17,21,-1,20,16,17,-1,22,23,19,-1,22,19,18,-1,24,21,23,-1,24,20,21,-1,24,23,22,-1] -coord Coordinate { point [23.8818 -1.48819 2.47637,23.8818 4.4055 2.63385,23.8818 4.4055 2.47637,23.8818 -1.48819 2.63385,23.8818 -2.07874 2.0433,23.8818 -1.92126 2.0433,23.8818 -1.92126 -1.09055,23.8818 -2.07874 -1.09055,23.8818 -1.58057 2.62658,23.8818 -1.56339 2.46979,23.8818 -2.07147 2.13569,23.8818 -1.91468 2.1185,23.8818 -1.67068 2.60495,23.8818 -1.6363 2.45026,23.8818 -2.04983 2.22579,23.8818 -1.89514 2.19142,23.8818 -1.75629 2.56949,23.8818 -1.70472 2.41835,23.8818 -2.01437 2.31141,23.8818 -1.86324 2.25984,23.8818 -1.8353 2.52107,23.8818 -1.76656 2.37505,23.8818 -1.96595 2.39042,23.8818 -1.81994 2.32168,23.8818 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [23.8818 4.4055 2.63385,23.8818 -1.48819 2.63385,23.9212 -1.48819 2.67322,23.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [24.0787 4.44487 2.63385,23.9212 4.44487 2.63385,24.0787 4.4055 2.67322,23.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [24.1181 -2.07874 -1.09055,24.0787 -2.11811 -1.09055,24.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [23.9212 -2.11811 -1.09055,23.8818 -2.07874 -1.09055,23.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [24.0787 -1.92126 -1.12992,23.9212 -2.07874 -1.12992,23.9212 -1.92126 -1.12992,24.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [24.1181 4.4055 2.63385,24.0787 4.44487 2.47637,24.0787 4.44487 2.63385,24.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [24.1181 4.4055 2.47637,24.1181 -1.48819 2.47637,24.0787 4.4055 2.437,24.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,12,14,13,-1,14,15,13,-1,14,16,15,-1,16,17,15,-1,16,18,17,-1] -coord Coordinate { point [24.1181 -1.48819 2.47637,24.1181 -1.56339 2.46979,24.0787 -1.48819 2.437,24.0787 -1.56499 2.42944,24.1181 -1.6363 2.45026,24.0787 -1.63885 2.40703,24.1181 -1.70472 2.41835,24.0787 -1.70691 2.37065,24.1181 -1.76656 2.37505,24.0787 -1.76657 2.32169,24.1181 -1.81994 2.32168,24.0787 -1.81554 2.26203,24.1181 -1.86324 2.25984,24.0787 -1.85192 2.19397,24.1181 -1.89514 2.19142,24.0787 -1.87432 2.12011,24.1181 -1.91468 2.1185,24.0787 -1.88189 2.0433,24.1181 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [24.1181 -1.92126 2.0433,24.1181 -1.92126 -1.09055,24.0787 -1.88189 2.0433,24.0787 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [24.1181 -1.92126 -1.09055,24.1181 -2.07874 -1.09055,24.0787 -2.07874 -1.12992,24.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [24.1181 4.4055 2.63385,24.0787 4.44487 2.63385,24.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [23.8818 -2.07874 -1.09055,23.8818 -1.92126 -1.09055,23.9212 -2.07874 -1.12992,23.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [23.8818 -1.92126 -1.09055,23.8818 -1.92126 2.0433,23.9212 -1.88189 2.0433,23.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,12,13,-1,15,14,13,-1,16,14,15,-1,17,16,15,-1,18,16,17,-1] -coord Coordinate { point [23.8818 -1.56339 2.46979,23.8818 -1.48819 2.47637,23.9212 -1.48819 2.437,23.9212 -1.56499 2.42944,23.8818 -1.6363 2.45026,23.9212 -1.63885 2.40703,23.8818 -1.70472 2.41835,23.9212 -1.70691 2.37065,23.8818 -1.76656 2.37505,23.9212 -1.76657 2.32169,23.8818 -1.81994 2.32168,23.9212 -1.81554 2.26203,23.8818 -1.86324 2.25984,23.9212 -1.85192 2.19397,23.8818 -1.89514 2.19142,23.9212 -1.87432 2.12011,23.8818 -1.91468 2.1185,23.9212 -1.88189 2.0433,23.8818 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [23.9212 4.44487 2.47637,23.8818 4.4055 2.63385,23.9212 4.44487 2.63385,23.8818 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [23.8818 -1.48819 2.47637,23.9212 4.4055 2.437,23.9212 -1.48819 2.437,23.8818 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [23.8818 4.4055 2.63385,23.9212 4.4055 2.67322,23.9212 4.44487 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [24.0787 4.44487 2.63385,23.9212 4.44487 2.47637,23.9212 4.44487 2.63385,24.0787 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [24.0787 -1.92126 -1.12992,23.9212 -1.92126 -1.12992,24.0787 -1.88189 -1.09055,23.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [24.0787 4.4055 2.437,24.0787 4.44487 2.47637,24.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [24.0787 4.4055 2.437,24.0787 -1.48819 2.437,23.9212 4.4055 2.437,23.9212 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,15,16,-1,14,13,15,-1,14,12,13,-1,17,14,16,-1] -coord Coordinate { point [24.0787 -1.87432 2.12011,24.0787 -1.88189 2.0433,23.9212 -1.88189 2.0433,23.9212 -1.87432 2.12011,24.0787 -1.85192 2.19397,23.9212 -1.85192 2.19397,24.0787 -1.81554 2.26203,23.9212 -1.81554 2.26203,24.0787 -1.76657 2.32169,23.9212 -1.76657 2.32169,24.0787 -1.70691 2.37065,23.9212 -1.70691 2.37065,24.0787 -1.63885 2.40703,23.9212 -1.63885 2.40703,24.0787 -1.56499 2.42944,23.9212 -1.56499 2.42944,23.9212 -1.48819 2.437,24.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [24.0787 -1.88189 2.0433,24.0787 -1.88189 -1.09055,23.9212 -1.88189 2.0433,23.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [24.0787 -1.88189 -1.09055,24.1181 -1.92126 -1.09055,24.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [23.8818 -1.92126 -1.09055,23.9212 -1.88189 -1.09055,23.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [23.9212 4.4055 2.437,23.8818 4.4055 2.47637,23.9212 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [24.0787 4.44487 2.47637,23.9212 4.4055 2.437,23.9212 4.44487 2.47637,24.0787 4.4055 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [25.0787 -2.11811 2.0433,25.0787 -2.11035 2.14184,24.9212 -2.11811 2.0433,24.9212 -2.11035 2.14184,25.0787 -2.08728 2.23796,24.9212 -2.08728 2.23796,25.0787 -2.04945 2.32928,24.9212 -2.04945 2.32928,25.0787 -1.9978 2.41356,24.9212 -1.9978 2.41356,25.0787 -1.93361 2.48872,24.9212 -1.93361 2.48872,25.0787 -1.85844 2.55292,24.9212 -1.85844 2.55292,25.0787 -1.77416 2.60457,24.9212 -1.77416 2.60457,25.0787 -1.68284 2.64239,24.9212 -1.68284 2.64239,25.0787 -1.58673 2.66547,24.9212 -1.58673 2.66547,25.0787 -1.48819 2.67322,24.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [25.0787 -2.11811 -1.09055,25.0787 -2.11811 2.0433,24.9212 -2.11811 2.0433,24.9212 -2.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [25.1181 -2.07874 2.0433,25.1181 -2.07147 2.13569,25.0787 -2.11811 2.0433,25.0787 -2.11035 2.14184,25.1181 -2.04983 2.22579,25.0787 -2.08728 2.23796,25.1181 -2.01437 2.31141,25.0787 -2.04945 2.32928,25.1181 -1.96595 2.39042,25.0787 -1.9978 2.41356,25.1181 -1.90577 2.46088,25.0787 -1.93361 2.48872,25.1181 -1.8353 2.52107,25.0787 -1.85844 2.55292,25.1181 -1.75629 2.56949,25.0787 -1.77416 2.60457,25.1181 -1.67068 2.60495,25.0787 -1.68284 2.64239,25.1181 -1.58057 2.62658,25.0787 -1.58673 2.66547,25.1181 -1.48819 2.63385,25.0787 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1,16,14,15,-1,17,14,16,-1,18,16,19,-1,18,17,16,-1,20,19,21,-1,20,18,19,-1] -coord Coordinate { point [24.8818 -2.07147 2.13569,24.8818 -2.07874 2.0433,24.9212 -2.11811 2.0433,24.9212 -2.11035 2.14184,24.8818 -2.04983 2.22579,24.9212 -2.08728 2.23796,24.8818 -2.01437 2.31141,24.9212 -2.04945 2.32928,24.8818 -1.96595 2.39042,24.9212 -1.9978 2.41356,24.8818 -1.90577 2.46088,24.9212 -1.93361 2.48872,24.8818 -1.8353 2.52107,24.9212 -1.85844 2.55292,24.8818 -1.75629 2.56949,24.9212 -1.77416 2.60457,24.9212 -1.68284 2.64239,24.8818 -1.67068 2.60495,24.8818 -1.58057 2.62658,24.9212 -1.58673 2.66547,24.8818 -1.48819 2.63385,24.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [25.0787 -1.48819 2.67322,25.0787 4.4055 2.67322,24.9212 -1.48819 2.67322,24.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [25.0787 -2.11811 -1.09055,25.1181 -2.07874 2.0433,25.0787 -2.11811 2.0433,25.1181 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [24.8818 -2.07874 2.0433,24.9212 -2.11811 -1.09055,24.9212 -2.11811 2.0433,24.8818 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [25.0787 -2.11811 -1.09055,24.9212 -2.11811 -1.09055,25.0787 -2.07874 -1.12992,24.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1,4,5,6,-1,6,5,7,-1,1,8,9,-1,3,8,1,-1,10,11,4,-1,4,11,5,-1,9,12,13,-1,8,12,9,-1,14,15,10,-1,10,15,11,-1,13,16,17,-1,12,16,13,-1,18,19,14,-1,14,19,15,-1,17,20,21,-1,16,20,17,-1,22,23,18,-1,18,23,19,-1,21,24,22,-1,20,24,21,-1,22,24,23,-1] -coord Coordinate { point [25.1181 4.4055 2.63385,25.1181 -1.48819 2.47637,25.1181 4.4055 2.47637,25.1181 -1.48819 2.63385,25.1181 -1.92126 2.0433,25.1181 -2.07874 2.0433,25.1181 -1.92126 -1.09055,25.1181 -2.07874 -1.09055,25.1181 -1.58057 2.62658,25.1181 -1.56339 2.46979,25.1181 -1.91468 2.1185,25.1181 -2.07147 2.13569,25.1181 -1.67068 2.60495,25.1181 -1.6363 2.45026,25.1181 -1.89514 2.19142,25.1181 -2.04983 2.22579,25.1181 -1.75629 2.56949,25.1181 -1.70472 2.41835,25.1181 -1.86324 2.25984,25.1181 -2.01437 2.31141,25.1181 -1.8353 2.52107,25.1181 -1.76656 2.37505,25.1181 -1.81994 2.32168,25.1181 -1.96595 2.39042,25.1181 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [25.1181 -1.48819 2.63385,25.1181 4.4055 2.63385,25.0787 -1.48819 2.67322,25.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1,4,5,6,-1,4,6,7,-1,8,0,9,-1,8,3,0,-1,10,11,5,-1,10,5,4,-1,12,9,13,-1,12,8,9,-1,14,15,11,-1,14,11,10,-1,16,13,17,-1,16,12,13,-1,18,19,15,-1,18,15,14,-1,20,17,21,-1,20,16,17,-1,22,23,19,-1,22,19,18,-1,24,21,23,-1,24,20,21,-1,24,23,22,-1] -coord Coordinate { point [24.8818 -1.48819 2.47637,24.8818 4.4055 2.63385,24.8818 4.4055 2.47637,24.8818 -1.48819 2.63385,24.8818 -2.07874 2.0433,24.8818 -1.92126 2.0433,24.8818 -1.92126 -1.09055,24.8818 -2.07874 -1.09055,24.8818 -1.58057 2.62658,24.8818 -1.56339 2.46979,24.8818 -2.07147 2.13569,24.8818 -1.91468 2.1185,24.8818 -1.67068 2.60495,24.8818 -1.6363 2.45026,24.8818 -2.04983 2.22579,24.8818 -1.89514 2.19142,24.8818 -1.75629 2.56949,24.8818 -1.70472 2.41835,24.8818 -2.01437 2.31141,24.8818 -1.86324 2.25984,24.8818 -1.8353 2.52107,24.8818 -1.76656 2.37505,24.8818 -1.96595 2.39042,24.8818 -1.81994 2.32168,24.8818 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [24.8818 4.4055 2.63385,24.8818 -1.48819 2.63385,24.9212 -1.48819 2.67322,24.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [25.0787 4.44487 2.63385,24.9212 4.44487 2.63385,25.0787 4.4055 2.67322,24.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [25.1181 -2.07874 -1.09055,25.0787 -2.11811 -1.09055,25.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [24.9212 -2.11811 -1.09055,24.8818 -2.07874 -1.09055,24.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [25.0787 -1.92126 -1.12992,24.9212 -2.07874 -1.12992,24.9212 -1.92126 -1.12992,25.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [25.1181 4.4055 2.63385,25.0787 4.44487 2.47637,25.0787 4.44487 2.63385,25.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [25.1181 4.4055 2.47637,25.1181 -1.48819 2.47637,25.0787 4.4055 2.437,25.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,12,14,13,-1,14,15,13,-1,14,16,15,-1,16,17,15,-1,16,18,17,-1] -coord Coordinate { point [25.1181 -1.48819 2.47637,25.1181 -1.56339 2.46979,25.0787 -1.48819 2.437,25.0787 -1.56499 2.42944,25.1181 -1.6363 2.45026,25.0787 -1.63885 2.40703,25.1181 -1.70472 2.41835,25.0787 -1.70691 2.37065,25.1181 -1.76656 2.37505,25.0787 -1.76657 2.32169,25.1181 -1.81994 2.32168,25.0787 -1.81554 2.26203,25.1181 -1.86324 2.25984,25.0787 -1.85192 2.19397,25.1181 -1.89514 2.19142,25.0787 -1.87432 2.12011,25.1181 -1.91468 2.1185,25.0787 -1.88189 2.0433,25.1181 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [25.1181 -1.92126 2.0433,25.1181 -1.92126 -1.09055,25.0787 -1.88189 2.0433,25.0787 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [25.1181 -1.92126 -1.09055,25.1181 -2.07874 -1.09055,25.0787 -2.07874 -1.12992,25.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [25.1181 4.4055 2.63385,25.0787 4.44487 2.63385,25.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [24.8818 -2.07874 -1.09055,24.8818 -1.92126 -1.09055,24.9212 -2.07874 -1.12992,24.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [24.8818 -1.92126 -1.09055,24.8818 -1.92126 2.0433,24.9212 -1.88189 2.0433,24.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,12,13,-1,15,14,13,-1,16,14,15,-1,17,16,15,-1,18,16,17,-1] -coord Coordinate { point [24.8818 -1.56339 2.46979,24.8818 -1.48819 2.47637,24.9212 -1.48819 2.437,24.9212 -1.56499 2.42944,24.8818 -1.6363 2.45026,24.9212 -1.63885 2.40703,24.8818 -1.70472 2.41835,24.9212 -1.70691 2.37065,24.8818 -1.76656 2.37505,24.9212 -1.76657 2.32169,24.8818 -1.81994 2.32168,24.9212 -1.81554 2.26203,24.8818 -1.86324 2.25984,24.9212 -1.85192 2.19397,24.8818 -1.89514 2.19142,24.9212 -1.87432 2.12011,24.8818 -1.91468 2.1185,24.9212 -1.88189 2.0433,24.8818 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [24.9212 4.44487 2.47637,24.8818 4.4055 2.63385,24.9212 4.44487 2.63385,24.8818 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [24.8818 -1.48819 2.47637,24.9212 4.4055 2.437,24.9212 -1.48819 2.437,24.8818 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [24.8818 4.4055 2.63385,24.9212 4.4055 2.67322,24.9212 4.44487 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [25.0787 4.44487 2.63385,24.9212 4.44487 2.47637,24.9212 4.44487 2.63385,25.0787 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [25.0787 -1.92126 -1.12992,24.9212 -1.92126 -1.12992,25.0787 -1.88189 -1.09055,24.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [25.0787 4.4055 2.437,25.0787 4.44487 2.47637,25.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [25.0787 4.4055 2.437,25.0787 -1.48819 2.437,24.9212 4.4055 2.437,24.9212 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,15,16,-1,14,13,15,-1,14,12,13,-1,17,14,16,-1] -coord Coordinate { point [25.0787 -1.87432 2.12011,25.0787 -1.88189 2.0433,24.9212 -1.88189 2.0433,24.9212 -1.87432 2.12011,25.0787 -1.85192 2.19397,24.9212 -1.85192 2.19397,25.0787 -1.81554 2.26203,24.9212 -1.81554 2.26203,25.0787 -1.76657 2.32169,24.9212 -1.76657 2.32169,25.0787 -1.70691 2.37065,24.9212 -1.70691 2.37065,25.0787 -1.63885 2.40703,24.9212 -1.63885 2.40703,25.0787 -1.56499 2.42944,24.9212 -1.56499 2.42944,24.9212 -1.48819 2.437,25.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [25.0787 -1.88189 2.0433,25.0787 -1.88189 -1.09055,24.9212 -1.88189 2.0433,24.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [25.0787 -1.88189 -1.09055,25.1181 -1.92126 -1.09055,25.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [24.8818 -1.92126 -1.09055,24.9212 -1.88189 -1.09055,24.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [24.9212 4.4055 2.437,24.8818 4.4055 2.47637,24.9212 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [25.0787 4.44487 2.47637,24.9212 4.4055 2.437,24.9212 4.44487 2.47637,25.0787 4.4055 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [26.0787 -2.11811 2.0433,26.0787 -2.11035 2.14184,25.9212 -2.11811 2.0433,25.9212 -2.11035 2.14184,26.0787 -2.08728 2.23796,25.9212 -2.08728 2.23796,26.0787 -2.04945 2.32928,25.9212 -2.04945 2.32928,26.0787 -1.9978 2.41356,25.9212 -1.9978 2.41356,26.0787 -1.93361 2.48872,25.9212 -1.93361 2.48872,26.0787 -1.85844 2.55292,25.9212 -1.85844 2.55292,26.0787 -1.77416 2.60457,25.9212 -1.77416 2.60457,26.0787 -1.68284 2.64239,25.9212 -1.68284 2.64239,26.0787 -1.58673 2.66547,25.9212 -1.58673 2.66547,26.0787 -1.48819 2.67322,25.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [26.0787 -2.11811 -1.09055,26.0787 -2.11811 2.0433,25.9212 -2.11811 2.0433,25.9212 -2.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [26.1181 -2.07874 2.0433,26.1181 -2.07147 2.13569,26.0787 -2.11811 2.0433,26.0787 -2.11035 2.14184,26.1181 -2.04983 2.22579,26.0787 -2.08728 2.23796,26.1181 -2.01437 2.31141,26.0787 -2.04945 2.32928,26.1181 -1.96595 2.39042,26.0787 -1.9978 2.41356,26.1181 -1.90577 2.46088,26.0787 -1.93361 2.48872,26.1181 -1.8353 2.52107,26.0787 -1.85844 2.55292,26.1181 -1.75629 2.56949,26.0787 -1.77416 2.60457,26.1181 -1.67068 2.60495,26.0787 -1.68284 2.64239,26.1181 -1.58057 2.62658,26.0787 -1.58673 2.66547,26.1181 -1.48819 2.63385,26.0787 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1,18,17,19,-1,18,16,17,-1,20,19,21,-1,20,18,19,-1] -coord Coordinate { point [25.8818 -2.07147 2.13569,25.8818 -2.07874 2.0433,25.9212 -2.11811 2.0433,25.9212 -2.11035 2.14184,25.8818 -2.04983 2.22579,25.9212 -2.08728 2.23796,25.8818 -2.01437 2.31141,25.9212 -2.04945 2.32928,25.8818 -1.96595 2.39042,25.9212 -1.9978 2.41356,25.8818 -1.90577 2.46088,25.9212 -1.93361 2.48872,25.8818 -1.8353 2.52107,25.9212 -1.85844 2.55292,25.8818 -1.75629 2.56949,25.9212 -1.77416 2.60457,25.8818 -1.67068 2.60495,25.9212 -1.68284 2.64239,25.8818 -1.58057 2.62658,25.9212 -1.58673 2.66547,25.8818 -1.48819 2.63385,25.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [26.0787 -1.48819 2.67322,26.0787 4.4055 2.67322,25.9212 -1.48819 2.67322,25.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [26.0787 -2.11811 -1.09055,26.1181 -2.07874 2.0433,26.0787 -2.11811 2.0433,26.1181 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [25.8818 -2.07874 2.0433,25.9212 -2.11811 -1.09055,25.9212 -2.11811 2.0433,25.8818 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [26.0787 -2.11811 -1.09055,25.9212 -2.11811 -1.09055,26.0787 -2.07874 -1.12992,25.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1,4,5,6,-1,6,5,7,-1,1,8,9,-1,3,8,1,-1,10,11,4,-1,4,11,5,-1,9,12,13,-1,8,12,9,-1,14,15,10,-1,10,15,11,-1,13,16,17,-1,12,16,13,-1,18,19,14,-1,14,19,15,-1,17,20,21,-1,16,20,17,-1,22,23,18,-1,18,23,19,-1,21,24,22,-1,20,24,21,-1,22,24,23,-1] -coord Coordinate { point [26.1181 4.4055 2.63385,26.1181 -1.48819 2.47637,26.1181 4.4055 2.47637,26.1181 -1.48819 2.63385,26.1181 -1.92126 2.0433,26.1181 -2.07874 2.0433,26.1181 -1.92126 -1.09055,26.1181 -2.07874 -1.09055,26.1181 -1.58057 2.62658,26.1181 -1.56339 2.46979,26.1181 -1.91468 2.1185,26.1181 -2.07147 2.13569,26.1181 -1.67068 2.60495,26.1181 -1.6363 2.45026,26.1181 -1.89514 2.19142,26.1181 -2.04983 2.22579,26.1181 -1.75629 2.56949,26.1181 -1.70472 2.41835,26.1181 -1.86324 2.25984,26.1181 -2.01437 2.31141,26.1181 -1.8353 2.52107,26.1181 -1.76656 2.37505,26.1181 -1.81994 2.32168,26.1181 -1.96595 2.39042,26.1181 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [26.1181 -1.48819 2.63385,26.0787 4.4055 2.67322,26.0787 -1.48819 2.67322,26.1181 4.4055 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1,4,5,6,-1,4,6,7,-1,8,0,9,-1,8,3,0,-1,10,11,5,-1,10,5,4,-1,12,9,13,-1,12,8,9,-1,14,15,11,-1,14,11,10,-1,16,13,17,-1,16,12,13,-1,18,19,15,-1,18,15,14,-1,20,17,21,-1,20,16,17,-1,22,23,19,-1,22,19,18,-1,24,21,23,-1,24,20,21,-1,24,23,22,-1] -coord Coordinate { point [25.8818 -1.48819 2.47637,25.8818 4.4055 2.63385,25.8818 4.4055 2.47637,25.8818 -1.48819 2.63385,25.8818 -2.07874 2.0433,25.8818 -1.92126 2.0433,25.8818 -1.92126 -1.09055,25.8818 -2.07874 -1.09055,25.8818 -1.58057 2.62658,25.8818 -1.56339 2.46979,25.8818 -2.07147 2.13569,25.8818 -1.91468 2.1185,25.8818 -1.67068 2.60495,25.8818 -1.6363 2.45026,25.8818 -2.04983 2.22579,25.8818 -1.89514 2.19142,25.8818 -1.75629 2.56949,25.8818 -1.70472 2.41835,25.8818 -2.01437 2.31141,25.8818 -1.86324 2.25984,25.8818 -1.8353 2.52107,25.8818 -1.76656 2.37505,25.8818 -1.96595 2.39042,25.8818 -1.81994 2.32168,25.8818 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [25.8818 4.4055 2.63385,25.8818 -1.48819 2.63385,25.9212 -1.48819 2.67322,25.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [26.0787 4.44487 2.63385,25.9212 4.44487 2.63385,26.0787 4.4055 2.67322,25.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [26.1181 -2.07874 -1.09055,26.0787 -2.11811 -1.09055,26.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [25.9212 -2.11811 -1.09055,25.8818 -2.07874 -1.09055,25.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [26.0787 -1.92126 -1.12992,25.9212 -2.07874 -1.12992,25.9212 -1.92126 -1.12992,26.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [26.1181 4.4055 2.63385,26.0787 4.44487 2.47637,26.0787 4.44487 2.63385,26.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [26.1181 4.4055 2.47637,26.1181 -1.48819 2.47637,26.0787 4.4055 2.437,26.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,12,14,13,-1,14,15,13,-1,14,16,15,-1,16,17,15,-1,16,18,17,-1] -coord Coordinate { point [26.1181 -1.48819 2.47637,26.1181 -1.56339 2.46979,26.0787 -1.48819 2.437,26.0787 -1.56499 2.42944,26.1181 -1.6363 2.45026,26.0787 -1.63885 2.40703,26.1181 -1.70472 2.41835,26.0787 -1.70691 2.37065,26.1181 -1.76656 2.37505,26.0787 -1.76657 2.32169,26.1181 -1.81994 2.32168,26.0787 -1.81554 2.26203,26.1181 -1.86324 2.25984,26.0787 -1.85192 2.19397,26.1181 -1.89514 2.19142,26.0787 -1.87432 2.12011,26.1181 -1.91468 2.1185,26.0787 -1.88189 2.0433,26.1181 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [26.1181 -1.92126 2.0433,26.1181 -1.92126 -1.09055,26.0787 -1.88189 2.0433,26.0787 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [26.1181 -1.92126 -1.09055,26.1181 -2.07874 -1.09055,26.0787 -2.07874 -1.12992,26.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [26.1181 4.4055 2.63385,26.0787 4.44487 2.63385,26.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [25.8818 -2.07874 -1.09055,25.8818 -1.92126 -1.09055,25.9212 -2.07874 -1.12992,25.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [25.8818 -1.92126 -1.09055,25.8818 -1.92126 2.0433,25.9212 -1.88189 2.0433,25.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,12,13,-1,15,14,13,-1,16,14,15,-1,17,16,15,-1,18,16,17,-1] -coord Coordinate { point [25.8818 -1.56339 2.46979,25.8818 -1.48819 2.47637,25.9212 -1.48819 2.437,25.9212 -1.56499 2.42944,25.8818 -1.6363 2.45026,25.9212 -1.63885 2.40703,25.8818 -1.70472 2.41835,25.9212 -1.70691 2.37065,25.8818 -1.76656 2.37505,25.9212 -1.76657 2.32169,25.8818 -1.81994 2.32168,25.9212 -1.81554 2.26203,25.8818 -1.86324 2.25984,25.9212 -1.85192 2.19397,25.8818 -1.89514 2.19142,25.9212 -1.87432 2.12011,25.8818 -1.91468 2.1185,25.9212 -1.88189 2.0433,25.8818 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [25.9212 4.44487 2.47637,25.8818 4.4055 2.63385,25.9212 4.44487 2.63385,25.8818 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [25.8818 -1.48819 2.47637,25.9212 4.4055 2.437,25.9212 -1.48819 2.437,25.8818 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [25.8818 4.4055 2.63385,25.9212 4.4055 2.67322,25.9212 4.44487 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,1,3,2,-1] -coord Coordinate { point [25.9212 4.44487 2.63385,26.0787 4.44487 2.63385,25.9212 4.44487 2.47637,26.0787 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [26.0787 -1.92126 -1.12992,25.9212 -1.92126 -1.12992,26.0787 -1.88189 -1.09055,25.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [26.0787 4.4055 2.437,26.0787 4.44487 2.47637,26.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [26.0787 4.4055 2.437,26.0787 -1.48819 2.437,25.9212 4.4055 2.437,25.9212 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,15,16,-1,14,13,15,-1,14,12,13,-1,17,14,16,-1] -coord Coordinate { point [26.0787 -1.87432 2.12011,26.0787 -1.88189 2.0433,25.9212 -1.88189 2.0433,25.9212 -1.87432 2.12011,26.0787 -1.85192 2.19397,25.9212 -1.85192 2.19397,26.0787 -1.81554 2.26203,25.9212 -1.81554 2.26203,26.0787 -1.76657 2.32169,25.9212 -1.76657 2.32169,26.0787 -1.70691 2.37065,25.9212 -1.70691 2.37065,26.0787 -1.63885 2.40703,25.9212 -1.63885 2.40703,26.0787 -1.56499 2.42944,25.9212 -1.56499 2.42944,25.9212 -1.48819 2.437,26.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [26.0787 -1.88189 2.0433,26.0787 -1.88189 -1.09055,25.9212 -1.88189 2.0433,25.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [26.0787 -1.88189 -1.09055,26.1181 -1.92126 -1.09055,26.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [25.8818 -1.92126 -1.09055,25.9212 -1.88189 -1.09055,25.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [25.9212 4.4055 2.437,25.8818 4.4055 2.47637,25.9212 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [26.0787 4.44487 2.47637,25.9212 4.4055 2.437,25.9212 4.44487 2.47637,26.0787 4.4055 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [27.0787 -2.11811 2.0433,27.0787 -2.11035 2.14184,26.9212 -2.11811 2.0433,26.9212 -2.11035 2.14184,27.0787 -2.08728 2.23796,26.9212 -2.08728 2.23796,27.0787 -2.04945 2.32928,26.9212 -2.04945 2.32928,27.0787 -1.9978 2.41356,26.9212 -1.9978 2.41356,27.0787 -1.93361 2.48872,26.9212 -1.93361 2.48872,27.0787 -1.85844 2.55292,26.9212 -1.85844 2.55292,27.0787 -1.77416 2.60457,26.9212 -1.77416 2.60457,27.0787 -1.68284 2.64239,26.9212 -1.68284 2.64239,27.0787 -1.58673 2.66547,26.9212 -1.58673 2.66547,27.0787 -1.48819 2.67322,26.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [27.0787 -2.11811 -1.09055,27.0787 -2.11811 2.0433,26.9212 -2.11811 2.0433,26.9212 -2.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [27.1181 -2.07874 2.0433,27.1181 -2.07147 2.13569,27.0787 -2.11811 2.0433,27.0787 -2.11035 2.14184,27.1181 -2.04983 2.22579,27.0787 -2.08728 2.23796,27.1181 -2.01437 2.31141,27.0787 -2.04945 2.32928,27.1181 -1.96595 2.39042,27.0787 -1.9978 2.41356,27.1181 -1.90577 2.46088,27.0787 -1.93361 2.48872,27.1181 -1.8353 2.52107,27.0787 -1.85844 2.55292,27.1181 -1.75629 2.56949,27.0787 -1.77416 2.60457,27.1181 -1.67068 2.60495,27.0787 -1.68284 2.64239,27.1181 -1.58057 2.62658,27.0787 -1.58673 2.66547,27.1181 -1.48819 2.63385,27.0787 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1,18,17,19,-1,18,16,17,-1,20,19,21,-1,20,18,19,-1] -coord Coordinate { point [26.8818 -2.07147 2.13569,26.8818 -2.07874 2.0433,26.9212 -2.11811 2.0433,26.9212 -2.11035 2.14184,26.8818 -2.04983 2.22579,26.9212 -2.08728 2.23796,26.8818 -2.01437 2.31141,26.9212 -2.04945 2.32928,26.8818 -1.96595 2.39042,26.9212 -1.9978 2.41356,26.8818 -1.90577 2.46088,26.9212 -1.93361 2.48872,26.8818 -1.8353 2.52107,26.9212 -1.85844 2.55292,26.8818 -1.75629 2.56949,26.9212 -1.77416 2.60457,26.8818 -1.67068 2.60495,26.9212 -1.68284 2.64239,26.8818 -1.58057 2.62658,26.9212 -1.58673 2.66547,26.8818 -1.48819 2.63385,26.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [27.0787 -1.48819 2.67322,27.0787 4.4055 2.67322,26.9212 -1.48819 2.67322,26.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [27.0787 -2.11811 -1.09055,27.1181 -2.07874 2.0433,27.0787 -2.11811 2.0433,27.1181 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [26.8818 -2.07874 2.0433,26.9212 -2.11811 -1.09055,26.9212 -2.11811 2.0433,26.8818 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [27.0787 -2.11811 -1.09055,26.9212 -2.11811 -1.09055,27.0787 -2.07874 -1.12992,26.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1,4,5,6,-1,6,5,7,-1,1,8,9,-1,3,8,1,-1,10,11,4,-1,4,11,5,-1,9,12,13,-1,8,12,9,-1,14,15,10,-1,10,15,11,-1,13,16,17,-1,12,16,13,-1,18,19,14,-1,14,19,15,-1,17,20,21,-1,16,20,17,-1,22,23,18,-1,18,23,19,-1,21,24,22,-1,20,24,21,-1,22,24,23,-1] -coord Coordinate { point [27.1181 4.4055 2.63385,27.1181 -1.48819 2.47637,27.1181 4.4055 2.47637,27.1181 -1.48819 2.63385,27.1181 -1.92126 2.0433,27.1181 -2.07874 2.0433,27.1181 -1.92126 -1.09055,27.1181 -2.07874 -1.09055,27.1181 -1.58057 2.62658,27.1181 -1.56339 2.46979,27.1181 -1.91468 2.1185,27.1181 -2.07147 2.13569,27.1181 -1.67068 2.60495,27.1181 -1.6363 2.45026,27.1181 -1.89514 2.19142,27.1181 -2.04983 2.22579,27.1181 -1.75629 2.56949,27.1181 -1.70472 2.41835,27.1181 -1.86324 2.25984,27.1181 -2.01437 2.31141,27.1181 -1.8353 2.52107,27.1181 -1.76656 2.37505,27.1181 -1.81994 2.32168,27.1181 -1.96595 2.39042,27.1181 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [27.1181 -1.48819 2.63385,27.0787 4.4055 2.67322,27.0787 -1.48819 2.67322,27.1181 4.4055 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1,4,5,6,-1,4,6,7,-1,8,0,9,-1,8,3,0,-1,10,11,5,-1,10,5,4,-1,12,9,13,-1,12,8,9,-1,14,15,11,-1,14,11,10,-1,16,13,17,-1,16,12,13,-1,18,19,15,-1,18,15,14,-1,20,17,21,-1,20,16,17,-1,22,23,19,-1,22,19,18,-1,24,21,23,-1,24,20,21,-1,24,23,22,-1] -coord Coordinate { point [26.8818 -1.48819 2.47637,26.8818 4.4055 2.63385,26.8818 4.4055 2.47637,26.8818 -1.48819 2.63385,26.8818 -2.07874 2.0433,26.8818 -1.92126 2.0433,26.8818 -1.92126 -1.09055,26.8818 -2.07874 -1.09055,26.8818 -1.58057 2.62658,26.8818 -1.56339 2.46979,26.8818 -2.07147 2.13569,26.8818 -1.91468 2.1185,26.8818 -1.67068 2.60495,26.8818 -1.6363 2.45026,26.8818 -2.04983 2.22579,26.8818 -1.89514 2.19142,26.8818 -1.75629 2.56949,26.8818 -1.70472 2.41835,26.8818 -2.01437 2.31141,26.8818 -1.86324 2.25984,26.8818 -1.8353 2.52107,26.8818 -1.76656 2.37505,26.8818 -1.96595 2.39042,26.8818 -1.81994 2.32168,26.8818 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [26.8818 4.4055 2.63385,26.8818 -1.48819 2.63385,26.9212 -1.48819 2.67322,26.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [27.0787 4.44487 2.63385,26.9212 4.44487 2.63385,27.0787 4.4055 2.67322,26.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [27.1181 -2.07874 -1.09055,27.0787 -2.11811 -1.09055,27.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [26.9212 -2.11811 -1.09055,26.8818 -2.07874 -1.09055,26.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [27.0787 -1.92126 -1.12992,26.9212 -2.07874 -1.12992,26.9212 -1.92126 -1.12992,27.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [27.1181 4.4055 2.63385,27.0787 4.44487 2.47637,27.0787 4.44487 2.63385,27.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [27.1181 4.4055 2.47637,27.1181 -1.48819 2.47637,27.0787 4.4055 2.437,27.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,12,14,13,-1,14,15,13,-1,14,16,15,-1,16,17,15,-1,16,18,17,-1] -coord Coordinate { point [27.1181 -1.48819 2.47637,27.1181 -1.56339 2.46979,27.0787 -1.48819 2.437,27.0787 -1.56499 2.42944,27.1181 -1.6363 2.45026,27.0787 -1.63885 2.40703,27.1181 -1.70472 2.41835,27.0787 -1.70691 2.37065,27.1181 -1.76656 2.37505,27.0787 -1.76657 2.32169,27.1181 -1.81994 2.32168,27.0787 -1.81554 2.26203,27.1181 -1.86324 2.25984,27.0787 -1.85192 2.19397,27.1181 -1.89514 2.19142,27.0787 -1.87432 2.12011,27.1181 -1.91468 2.1185,27.0787 -1.88189 2.0433,27.1181 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [27.1181 -1.92126 2.0433,27.1181 -1.92126 -1.09055,27.0787 -1.88189 2.0433,27.0787 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [27.1181 -1.92126 -1.09055,27.1181 -2.07874 -1.09055,27.0787 -2.07874 -1.12992,27.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [27.1181 4.4055 2.63385,27.0787 4.44487 2.63385,27.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [26.8818 -2.07874 -1.09055,26.8818 -1.92126 -1.09055,26.9212 -2.07874 -1.12992,26.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [26.8818 -1.92126 -1.09055,26.8818 -1.92126 2.0433,26.9212 -1.88189 2.0433,26.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,12,13,-1,15,14,13,-1,16,14,15,-1,17,16,15,-1,18,16,17,-1] -coord Coordinate { point [26.8818 -1.56339 2.46979,26.8818 -1.48819 2.47637,26.9212 -1.48819 2.437,26.9212 -1.56499 2.42944,26.8818 -1.6363 2.45026,26.9212 -1.63885 2.40703,26.8818 -1.70472 2.41835,26.9212 -1.70691 2.37065,26.8818 -1.76656 2.37505,26.9212 -1.76657 2.32169,26.8818 -1.81994 2.32168,26.9212 -1.81554 2.26203,26.8818 -1.86324 2.25984,26.9212 -1.85192 2.19397,26.8818 -1.89514 2.19142,26.9212 -1.87432 2.12011,26.8818 -1.91468 2.1185,26.9212 -1.88189 2.0433,26.8818 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [26.9212 4.44487 2.47637,26.8818 4.4055 2.63385,26.9212 4.44487 2.63385,26.8818 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [26.8818 -1.48819 2.47637,26.9212 4.4055 2.437,26.9212 -1.48819 2.437,26.8818 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [26.8818 4.4055 2.63385,26.9212 4.4055 2.67322,26.9212 4.44487 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,1,3,2,-1] -coord Coordinate { point [26.9212 4.44487 2.63385,27.0787 4.44487 2.63385,26.9212 4.44487 2.47637,27.0787 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [27.0787 -1.92126 -1.12992,26.9212 -1.92126 -1.12992,27.0787 -1.88189 -1.09055,26.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [27.0787 4.4055 2.437,27.0787 4.44487 2.47637,27.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [27.0787 4.4055 2.437,27.0787 -1.48819 2.437,26.9212 4.4055 2.437,26.9212 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,15,16,-1,14,13,15,-1,14,12,13,-1,17,14,16,-1] -coord Coordinate { point [27.0787 -1.87432 2.12011,27.0787 -1.88189 2.0433,26.9212 -1.88189 2.0433,26.9212 -1.87432 2.12011,27.0787 -1.85192 2.19397,26.9212 -1.85192 2.19397,27.0787 -1.81554 2.26203,26.9212 -1.81554 2.26203,27.0787 -1.76657 2.32169,26.9212 -1.76657 2.32169,27.0787 -1.70691 2.37065,26.9212 -1.70691 2.37065,27.0787 -1.63885 2.40703,26.9212 -1.63885 2.40703,27.0787 -1.56499 2.42944,26.9212 -1.56499 2.42944,26.9212 -1.48819 2.437,27.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [27.0787 -1.88189 2.0433,27.0787 -1.88189 -1.09055,26.9212 -1.88189 2.0433,26.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [27.0787 -1.88189 -1.09055,27.1181 -1.92126 -1.09055,27.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [26.8818 -1.92126 -1.09055,26.9212 -1.88189 -1.09055,26.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [26.9212 4.4055 2.437,26.8818 4.4055 2.47637,26.9212 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [27.0787 4.44487 2.47637,26.9212 4.4055 2.437,26.9212 4.44487 2.47637,27.0787 4.4055 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [28.0787 -2.11811 2.0433,28.0787 -2.11035 2.14184,27.9212 -2.11811 2.0433,27.9212 -2.11035 2.14184,28.0787 -2.08728 2.23796,27.9212 -2.08728 2.23796,28.0787 -2.04945 2.32928,27.9212 -2.04945 2.32928,28.0787 -1.9978 2.41356,27.9212 -1.9978 2.41356,28.0787 -1.93361 2.48872,27.9212 -1.93361 2.48872,28.0787 -1.85844 2.55292,27.9212 -1.85844 2.55292,28.0787 -1.77416 2.60457,27.9212 -1.77416 2.60457,28.0787 -1.68284 2.64239,27.9212 -1.68284 2.64239,28.0787 -1.58673 2.66547,27.9212 -1.58673 2.66547,28.0787 -1.48819 2.67322,27.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [28.0787 -2.11811 -1.09055,28.0787 -2.11811 2.0433,27.9212 -2.11811 2.0433,27.9212 -2.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [28.1181 -2.07874 2.0433,28.1181 -2.07147 2.13569,28.0787 -2.11811 2.0433,28.0787 -2.11035 2.14184,28.1181 -2.04983 2.22579,28.0787 -2.08728 2.23796,28.1181 -2.01437 2.31141,28.0787 -2.04945 2.32928,28.1181 -1.96595 2.39042,28.0787 -1.9978 2.41356,28.1181 -1.90577 2.46088,28.0787 -1.93361 2.48872,28.1181 -1.8353 2.52107,28.0787 -1.85844 2.55292,28.1181 -1.75629 2.56949,28.0787 -1.77416 2.60457,28.1181 -1.67068 2.60495,28.0787 -1.68284 2.64239,28.1181 -1.58057 2.62658,28.0787 -1.58673 2.66547,28.1181 -1.48819 2.63385,28.0787 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1,18,17,19,-1,18,16,17,-1,20,19,21,-1,20,18,19,-1] -coord Coordinate { point [27.8818 -2.07147 2.13569,27.8818 -2.07874 2.0433,27.9212 -2.11811 2.0433,27.9212 -2.11035 2.14184,27.8818 -2.04983 2.22579,27.9212 -2.08728 2.23796,27.8818 -2.01437 2.31141,27.9212 -2.04945 2.32928,27.8818 -1.96595 2.39042,27.9212 -1.9978 2.41356,27.8818 -1.90577 2.46088,27.9212 -1.93361 2.48872,27.8818 -1.8353 2.52107,27.9212 -1.85844 2.55292,27.8818 -1.75629 2.56949,27.9212 -1.77416 2.60457,27.8818 -1.67068 2.60495,27.9212 -1.68284 2.64239,27.8818 -1.58057 2.62658,27.9212 -1.58673 2.66547,27.8818 -1.48819 2.63385,27.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [28.0787 -1.48819 2.67322,28.0787 4.4055 2.67322,27.9212 -1.48819 2.67322,27.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [28.0787 -2.11811 -1.09055,28.1181 -2.07874 2.0433,28.0787 -2.11811 2.0433,28.1181 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [27.8818 -2.07874 2.0433,27.9212 -2.11811 -1.09055,27.9212 -2.11811 2.0433,27.8818 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [28.0787 -2.11811 -1.09055,27.9212 -2.11811 -1.09055,28.0787 -2.07874 -1.12992,27.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1,4,5,6,-1,6,5,7,-1,1,8,9,-1,3,8,1,-1,10,11,4,-1,4,11,5,-1,9,12,13,-1,8,12,9,-1,14,15,10,-1,10,15,11,-1,13,16,17,-1,12,16,13,-1,18,19,14,-1,14,19,15,-1,17,20,21,-1,16,20,17,-1,22,23,18,-1,18,23,19,-1,21,24,22,-1,20,24,21,-1,22,24,23,-1] -coord Coordinate { point [28.1181 4.4055 2.63385,28.1181 -1.48819 2.47637,28.1181 4.4055 2.47637,28.1181 -1.48819 2.63385,28.1181 -1.92126 2.0433,28.1181 -2.07874 2.0433,28.1181 -1.92126 -1.09055,28.1181 -2.07874 -1.09055,28.1181 -1.58057 2.62658,28.1181 -1.56339 2.46979,28.1181 -1.91468 2.1185,28.1181 -2.07147 2.13569,28.1181 -1.67068 2.60495,28.1181 -1.6363 2.45026,28.1181 -1.89514 2.19142,28.1181 -2.04983 2.22579,28.1181 -1.75629 2.56949,28.1181 -1.70472 2.41835,28.1181 -1.86324 2.25984,28.1181 -2.01437 2.31141,28.1181 -1.8353 2.52107,28.1181 -1.76656 2.37505,28.1181 -1.81994 2.32168,28.1181 -1.96595 2.39042,28.1181 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [28.1181 -1.48819 2.63385,28.0787 4.4055 2.67322,28.0787 -1.48819 2.67322,28.1181 4.4055 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1,4,5,6,-1,4,6,7,-1,8,0,9,-1,8,3,0,-1,10,11,5,-1,10,5,4,-1,12,9,13,-1,12,8,9,-1,14,15,11,-1,14,11,10,-1,16,13,17,-1,16,12,13,-1,18,19,15,-1,18,15,14,-1,20,17,21,-1,20,16,17,-1,22,23,19,-1,22,19,18,-1,24,21,23,-1,24,20,21,-1,24,23,22,-1] -coord Coordinate { point [27.8818 -1.48819 2.47637,27.8818 4.4055 2.63385,27.8818 4.4055 2.47637,27.8818 -1.48819 2.63385,27.8818 -2.07874 2.0433,27.8818 -1.92126 2.0433,27.8818 -1.92126 -1.09055,27.8818 -2.07874 -1.09055,27.8818 -1.58057 2.62658,27.8818 -1.56339 2.46979,27.8818 -2.07147 2.13569,27.8818 -1.91468 2.1185,27.8818 -1.67068 2.60495,27.8818 -1.6363 2.45026,27.8818 -2.04983 2.22579,27.8818 -1.89514 2.19142,27.8818 -1.75629 2.56949,27.8818 -1.70472 2.41835,27.8818 -2.01437 2.31141,27.8818 -1.86324 2.25984,27.8818 -1.8353 2.52107,27.8818 -1.76656 2.37505,27.8818 -1.96595 2.39042,27.8818 -1.81994 2.32168,27.8818 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [27.8818 4.4055 2.63385,27.8818 -1.48819 2.63385,27.9212 -1.48819 2.67322,27.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [28.0787 4.44487 2.63385,27.9212 4.44487 2.63385,28.0787 4.4055 2.67322,27.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [28.1181 -2.07874 -1.09055,28.0787 -2.11811 -1.09055,28.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [27.9212 -2.11811 -1.09055,27.8818 -2.07874 -1.09055,27.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [28.0787 -1.92126 -1.12992,27.9212 -2.07874 -1.12992,27.9212 -1.92126 -1.12992,28.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [28.1181 4.4055 2.63385,28.0787 4.44487 2.47637,28.0787 4.44487 2.63385,28.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [28.1181 4.4055 2.47637,28.1181 -1.48819 2.47637,28.0787 4.4055 2.437,28.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,12,14,13,-1,14,15,13,-1,14,16,15,-1,16,17,15,-1,16,18,17,-1] -coord Coordinate { point [28.1181 -1.48819 2.47637,28.1181 -1.56339 2.46979,28.0787 -1.48819 2.437,28.0787 -1.56499 2.42944,28.1181 -1.6363 2.45026,28.0787 -1.63885 2.40703,28.1181 -1.70472 2.41835,28.0787 -1.70691 2.37065,28.1181 -1.76656 2.37505,28.0787 -1.76657 2.32169,28.1181 -1.81994 2.32168,28.0787 -1.81554 2.26203,28.1181 -1.86324 2.25984,28.0787 -1.85192 2.19397,28.1181 -1.89514 2.19142,28.0787 -1.87432 2.12011,28.1181 -1.91468 2.1185,28.0787 -1.88189 2.0433,28.1181 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [28.1181 -1.92126 2.0433,28.1181 -1.92126 -1.09055,28.0787 -1.88189 2.0433,28.0787 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [28.1181 -1.92126 -1.09055,28.1181 -2.07874 -1.09055,28.0787 -2.07874 -1.12992,28.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [28.1181 4.4055 2.63385,28.0787 4.44487 2.63385,28.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [27.8818 -2.07874 -1.09055,27.8818 -1.92126 -1.09055,27.9212 -2.07874 -1.12992,27.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [27.8818 -1.92126 -1.09055,27.8818 -1.92126 2.0433,27.9212 -1.88189 2.0433,27.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,12,13,-1,15,14,13,-1,16,14,15,-1,17,16,15,-1,18,16,17,-1] -coord Coordinate { point [27.8818 -1.56339 2.46979,27.8818 -1.48819 2.47637,27.9212 -1.48819 2.437,27.9212 -1.56499 2.42944,27.8818 -1.6363 2.45026,27.9212 -1.63885 2.40703,27.8818 -1.70472 2.41835,27.9212 -1.70691 2.37065,27.8818 -1.76656 2.37505,27.9212 -1.76657 2.32169,27.8818 -1.81994 2.32168,27.9212 -1.81554 2.26203,27.8818 -1.86324 2.25984,27.9212 -1.85192 2.19397,27.8818 -1.89514 2.19142,27.9212 -1.87432 2.12011,27.8818 -1.91468 2.1185,27.9212 -1.88189 2.0433,27.8818 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [27.9212 4.44487 2.47637,27.8818 4.4055 2.63385,27.9212 4.44487 2.63385,27.8818 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [27.8818 -1.48819 2.47637,27.9212 4.4055 2.437,27.9212 -1.48819 2.437,27.8818 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [27.8818 4.4055 2.63385,27.9212 4.4055 2.67322,27.9212 4.44487 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,1,3,2,-1] -coord Coordinate { point [27.9212 4.44487 2.63385,28.0787 4.44487 2.63385,27.9212 4.44487 2.47637,28.0787 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [28.0787 -1.92126 -1.12992,27.9212 -1.92126 -1.12992,28.0787 -1.88189 -1.09055,27.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [28.0787 4.4055 2.437,28.0787 4.44487 2.47637,28.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [28.0787 4.4055 2.437,28.0787 -1.48819 2.437,27.9212 4.4055 2.437,27.9212 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,15,16,-1,14,13,15,-1,14,12,13,-1,17,14,16,-1] -coord Coordinate { point [28.0787 -1.87432 2.12011,28.0787 -1.88189 2.0433,27.9212 -1.88189 2.0433,27.9212 -1.87432 2.12011,28.0787 -1.85192 2.19397,27.9212 -1.85192 2.19397,28.0787 -1.81554 2.26203,27.9212 -1.81554 2.26203,28.0787 -1.76657 2.32169,27.9212 -1.76657 2.32169,28.0787 -1.70691 2.37065,27.9212 -1.70691 2.37065,28.0787 -1.63885 2.40703,27.9212 -1.63885 2.40703,28.0787 -1.56499 2.42944,27.9212 -1.56499 2.42944,27.9212 -1.48819 2.437,28.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [28.0787 -1.88189 2.0433,28.0787 -1.88189 -1.09055,27.9212 -1.88189 2.0433,27.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [28.0787 -1.88189 -1.09055,28.1181 -1.92126 -1.09055,28.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [27.8818 -1.92126 -1.09055,27.9212 -1.88189 -1.09055,27.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [27.9212 4.4055 2.437,27.8818 4.4055 2.47637,27.9212 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [28.0787 4.44487 2.47637,27.9212 4.4055 2.437,27.9212 4.44487 2.47637,28.0787 4.4055 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [29.0787 -2.11811 2.0433,29.0787 -2.11035 2.14184,28.9212 -2.11811 2.0433,28.9212 -2.11035 2.14184,29.0787 -2.08728 2.23796,28.9212 -2.08728 2.23796,29.0787 -2.04945 2.32928,28.9212 -2.04945 2.32928,29.0787 -1.9978 2.41356,28.9212 -1.9978 2.41356,29.0787 -1.93361 2.48872,28.9212 -1.93361 2.48872,29.0787 -1.85844 2.55292,28.9212 -1.85844 2.55292,29.0787 -1.77416 2.60457,28.9212 -1.77416 2.60457,29.0787 -1.68284 2.64239,28.9212 -1.68284 2.64239,29.0787 -1.58673 2.66547,28.9212 -1.58673 2.66547,29.0787 -1.48819 2.67322,28.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [29.0787 -2.11811 -1.09055,29.0787 -2.11811 2.0433,28.9212 -2.11811 2.0433,28.9212 -2.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [29.1181 -2.07874 2.0433,29.1181 -2.07147 2.13569,29.0787 -2.11811 2.0433,29.0787 -2.11035 2.14184,29.1181 -2.04983 2.22579,29.0787 -2.08728 2.23796,29.1181 -2.01437 2.31141,29.0787 -2.04945 2.32928,29.1181 -1.96595 2.39042,29.0787 -1.9978 2.41356,29.1181 -1.90577 2.46088,29.0787 -1.93361 2.48872,29.1181 -1.8353 2.52107,29.0787 -1.85844 2.55292,29.1181 -1.75629 2.56949,29.0787 -1.77416 2.60457,29.1181 -1.67068 2.60495,29.0787 -1.68284 2.64239,29.1181 -1.58057 2.62658,29.0787 -1.58673 2.66547,29.1181 -1.48819 2.63385,29.0787 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1,18,17,19,-1,18,16,17,-1,20,19,21,-1,20,18,19,-1] -coord Coordinate { point [28.8818 -2.07147 2.13569,28.8818 -2.07874 2.0433,28.9212 -2.11811 2.0433,28.9212 -2.11035 2.14184,28.8818 -2.04983 2.22579,28.9212 -2.08728 2.23796,28.8818 -2.01437 2.31141,28.9212 -2.04945 2.32928,28.8818 -1.96595 2.39042,28.9212 -1.9978 2.41356,28.8818 -1.90577 2.46088,28.9212 -1.93361 2.48872,28.8818 -1.8353 2.52107,28.9212 -1.85844 2.55292,28.8818 -1.75629 2.56949,28.9212 -1.77416 2.60457,28.8818 -1.67068 2.60495,28.9212 -1.68284 2.64239,28.8818 -1.58057 2.62658,28.9212 -1.58673 2.66547,28.8818 -1.48819 2.63385,28.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [29.0787 -1.48819 2.67322,29.0787 4.4055 2.67322,28.9212 -1.48819 2.67322,28.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [29.0787 -2.11811 -1.09055,29.1181 -2.07874 2.0433,29.0787 -2.11811 2.0433,29.1181 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [28.8818 -2.07874 2.0433,28.9212 -2.11811 -1.09055,28.9212 -2.11811 2.0433,28.8818 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [29.0787 -2.11811 -1.09055,28.9212 -2.11811 -1.09055,29.0787 -2.07874 -1.12992,28.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1,4,5,6,-1,6,5,7,-1,1,8,9,-1,3,8,1,-1,10,11,4,-1,4,11,5,-1,9,12,13,-1,8,12,9,-1,14,15,10,-1,10,15,11,-1,13,16,17,-1,12,16,13,-1,18,19,14,-1,14,19,15,-1,17,20,21,-1,16,20,17,-1,22,23,18,-1,18,23,19,-1,21,24,22,-1,20,24,21,-1,22,24,23,-1] -coord Coordinate { point [29.1181 4.4055 2.63385,29.1181 -1.48819 2.47637,29.1181 4.4055 2.47637,29.1181 -1.48819 2.63385,29.1181 -1.92126 2.0433,29.1181 -2.07874 2.0433,29.1181 -1.92126 -1.09055,29.1181 -2.07874 -1.09055,29.1181 -1.58057 2.62658,29.1181 -1.56339 2.46979,29.1181 -1.91468 2.1185,29.1181 -2.07147 2.13569,29.1181 -1.67068 2.60495,29.1181 -1.6363 2.45026,29.1181 -1.89514 2.19142,29.1181 -2.04983 2.22579,29.1181 -1.75629 2.56949,29.1181 -1.70472 2.41835,29.1181 -1.86324 2.25984,29.1181 -2.01437 2.31141,29.1181 -1.8353 2.52107,29.1181 -1.76656 2.37505,29.1181 -1.81994 2.32168,29.1181 -1.96595 2.39042,29.1181 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [29.1181 -1.48819 2.63385,29.0787 4.4055 2.67322,29.0787 -1.48819 2.67322,29.1181 4.4055 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1,4,5,6,-1,4,6,7,-1,8,0,9,-1,8,3,0,-1,10,11,5,-1,10,5,4,-1,12,9,13,-1,12,8,9,-1,14,15,11,-1,14,11,10,-1,16,13,17,-1,16,12,13,-1,18,19,15,-1,18,15,14,-1,20,17,21,-1,20,16,17,-1,22,23,19,-1,22,19,18,-1,24,21,23,-1,24,20,21,-1,24,23,22,-1] -coord Coordinate { point [28.8818 -1.48819 2.47637,28.8818 4.4055 2.63385,28.8818 4.4055 2.47637,28.8818 -1.48819 2.63385,28.8818 -2.07874 2.0433,28.8818 -1.92126 2.0433,28.8818 -1.92126 -1.09055,28.8818 -2.07874 -1.09055,28.8818 -1.58057 2.62658,28.8818 -1.56339 2.46979,28.8818 -2.07147 2.13569,28.8818 -1.91468 2.1185,28.8818 -1.67068 2.60495,28.8818 -1.6363 2.45026,28.8818 -2.04983 2.22579,28.8818 -1.89514 2.19142,28.8818 -1.75629 2.56949,28.8818 -1.70472 2.41835,28.8818 -2.01437 2.31141,28.8818 -1.86324 2.25984,28.8818 -1.8353 2.52107,28.8818 -1.76656 2.37505,28.8818 -1.96595 2.39042,28.8818 -1.81994 2.32168,28.8818 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [28.8818 4.4055 2.63385,28.8818 -1.48819 2.63385,28.9212 -1.48819 2.67322,28.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [29.0787 4.44487 2.63385,28.9212 4.44487 2.63385,29.0787 4.4055 2.67322,28.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [29.1181 -2.07874 -1.09055,29.0787 -2.11811 -1.09055,29.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [28.9212 -2.11811 -1.09055,28.8818 -2.07874 -1.09055,28.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [29.0787 -1.92126 -1.12992,28.9212 -2.07874 -1.12992,28.9212 -1.92126 -1.12992,29.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [29.1181 4.4055 2.63385,29.0787 4.44487 2.47637,29.0787 4.44487 2.63385,29.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [29.1181 4.4055 2.47637,29.1181 -1.48819 2.47637,29.0787 4.4055 2.437,29.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,12,14,13,-1,14,15,13,-1,14,16,15,-1,16,17,15,-1,16,18,17,-1] -coord Coordinate { point [29.1181 -1.48819 2.47637,29.1181 -1.56339 2.46979,29.0787 -1.48819 2.437,29.0787 -1.56499 2.42944,29.1181 -1.6363 2.45026,29.0787 -1.63885 2.40703,29.1181 -1.70472 2.41835,29.0787 -1.70691 2.37065,29.1181 -1.76656 2.37505,29.0787 -1.76657 2.32169,29.1181 -1.81994 2.32168,29.0787 -1.81554 2.26203,29.1181 -1.86324 2.25984,29.0787 -1.85192 2.19397,29.1181 -1.89514 2.19142,29.0787 -1.87432 2.12011,29.1181 -1.91468 2.1185,29.0787 -1.88189 2.0433,29.1181 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [29.1181 -1.92126 2.0433,29.1181 -1.92126 -1.09055,29.0787 -1.88189 2.0433,29.0787 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [29.1181 -1.92126 -1.09055,29.1181 -2.07874 -1.09055,29.0787 -2.07874 -1.12992,29.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [29.1181 4.4055 2.63385,29.0787 4.44487 2.63385,29.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [28.8818 -2.07874 -1.09055,28.8818 -1.92126 -1.09055,28.9212 -2.07874 -1.12992,28.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [28.8818 -1.92126 -1.09055,28.8818 -1.92126 2.0433,28.9212 -1.88189 2.0433,28.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,12,13,-1,15,14,13,-1,16,14,15,-1,17,16,15,-1,18,16,17,-1] -coord Coordinate { point [28.8818 -1.56339 2.46979,28.8818 -1.48819 2.47637,28.9212 -1.48819 2.437,28.9212 -1.56499 2.42944,28.8818 -1.6363 2.45026,28.9212 -1.63885 2.40703,28.8818 -1.70472 2.41835,28.9212 -1.70691 2.37065,28.8818 -1.76656 2.37505,28.9212 -1.76657 2.32169,28.8818 -1.81994 2.32168,28.9212 -1.81554 2.26203,28.8818 -1.86324 2.25984,28.9212 -1.85192 2.19397,28.8818 -1.89514 2.19142,28.9212 -1.87432 2.12011,28.8818 -1.91468 2.1185,28.9212 -1.88189 2.0433,28.8818 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [28.9212 4.44487 2.47637,28.8818 4.4055 2.63385,28.9212 4.44487 2.63385,28.8818 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [28.8818 -1.48819 2.47637,28.9212 4.4055 2.437,28.9212 -1.48819 2.437,28.8818 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [28.8818 4.4055 2.63385,28.9212 4.4055 2.67322,28.9212 4.44487 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,1,3,2,-1] -coord Coordinate { point [28.9212 4.44487 2.63385,29.0787 4.44487 2.63385,28.9212 4.44487 2.47637,29.0787 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [29.0787 -1.92126 -1.12992,28.9212 -1.92126 -1.12992,29.0787 -1.88189 -1.09055,28.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [29.0787 4.4055 2.437,29.0787 4.44487 2.47637,29.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [29.0787 4.4055 2.437,29.0787 -1.48819 2.437,28.9212 4.4055 2.437,28.9212 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,15,16,-1,14,13,15,-1,14,12,13,-1,17,14,16,-1] -coord Coordinate { point [29.0787 -1.87432 2.12011,29.0787 -1.88189 2.0433,28.9212 -1.88189 2.0433,28.9212 -1.87432 2.12011,29.0787 -1.85192 2.19397,28.9212 -1.85192 2.19397,29.0787 -1.81554 2.26203,28.9212 -1.81554 2.26203,29.0787 -1.76657 2.32169,28.9212 -1.76657 2.32169,29.0787 -1.70691 2.37065,28.9212 -1.70691 2.37065,29.0787 -1.63885 2.40703,28.9212 -1.63885 2.40703,29.0787 -1.56499 2.42944,28.9212 -1.56499 2.42944,28.9212 -1.48819 2.437,29.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [29.0787 -1.88189 2.0433,29.0787 -1.88189 -1.09055,28.9212 -1.88189 2.0433,28.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [29.0787 -1.88189 -1.09055,29.1181 -1.92126 -1.09055,29.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [28.8818 -1.92126 -1.09055,28.9212 -1.88189 -1.09055,28.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [28.9212 4.4055 2.437,28.8818 4.4055 2.47637,28.9212 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [29.0787 4.44487 2.47637,28.9212 4.4055 2.437,28.9212 4.44487 2.47637,29.0787 4.4055 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [30.0787 -2.11811 2.0433,30.0787 -2.11035 2.14184,29.9212 -2.11811 2.0433,29.9212 -2.11035 2.14184,30.0787 -2.08728 2.23796,29.9212 -2.08728 2.23796,30.0787 -2.04945 2.32928,29.9212 -2.04945 2.32928,30.0787 -1.9978 2.41356,29.9212 -1.9978 2.41356,30.0787 -1.93361 2.48872,29.9212 -1.93361 2.48872,30.0787 -1.85844 2.55292,29.9212 -1.85844 2.55292,30.0787 -1.77416 2.60457,29.9212 -1.77416 2.60457,30.0787 -1.68284 2.64239,29.9212 -1.68284 2.64239,30.0787 -1.58673 2.66547,29.9212 -1.58673 2.66547,30.0787 -1.48819 2.67322,29.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [30.0787 -2.11811 -1.09055,30.0787 -2.11811 2.0433,29.9212 -2.11811 2.0433,29.9212 -2.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [30.1181 -2.07874 2.0433,30.1181 -2.07147 2.13569,30.0787 -2.11811 2.0433,30.0787 -2.11035 2.14184,30.1181 -2.04983 2.22579,30.0787 -2.08728 2.23796,30.1181 -2.01437 2.31141,30.0787 -2.04945 2.32928,30.1181 -1.96595 2.39042,30.0787 -1.9978 2.41356,30.1181 -1.90577 2.46088,30.0787 -1.93361 2.48872,30.1181 -1.8353 2.52107,30.0787 -1.85844 2.55292,30.1181 -1.75629 2.56949,30.0787 -1.77416 2.60457,30.1181 -1.67068 2.60495,30.0787 -1.68284 2.64239,30.1181 -1.58057 2.62658,30.0787 -1.58673 2.66547,30.1181 -1.48819 2.63385,30.0787 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1,18,17,19,-1,18,16,17,-1,20,19,21,-1,20,18,19,-1] -coord Coordinate { point [29.8818 -2.07147 2.13569,29.8818 -2.07874 2.0433,29.9212 -2.11811 2.0433,29.9212 -2.11035 2.14184,29.8818 -2.04983 2.22579,29.9212 -2.08728 2.23796,29.8818 -2.01437 2.31141,29.9212 -2.04945 2.32928,29.8818 -1.96595 2.39042,29.9212 -1.9978 2.41356,29.8818 -1.90577 2.46088,29.9212 -1.93361 2.48872,29.8818 -1.8353 2.52107,29.9212 -1.85844 2.55292,29.8818 -1.75629 2.56949,29.9212 -1.77416 2.60457,29.8818 -1.67068 2.60495,29.9212 -1.68284 2.64239,29.8818 -1.58057 2.62658,29.9212 -1.58673 2.66547,29.8818 -1.48819 2.63385,29.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [30.0787 -1.48819 2.67322,30.0787 4.4055 2.67322,29.9212 -1.48819 2.67322,29.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [30.0787 -2.11811 -1.09055,30.1181 -2.07874 2.0433,30.0787 -2.11811 2.0433,30.1181 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [29.8818 -2.07874 2.0433,29.9212 -2.11811 -1.09055,29.9212 -2.11811 2.0433,29.8818 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [30.0787 -2.11811 -1.09055,29.9212 -2.11811 -1.09055,30.0787 -2.07874 -1.12992,29.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1,4,5,6,-1,6,5,7,-1,1,8,9,-1,3,8,1,-1,10,11,4,-1,4,11,5,-1,9,12,13,-1,8,12,9,-1,14,15,10,-1,10,15,11,-1,13,16,17,-1,12,16,13,-1,18,19,14,-1,14,19,15,-1,17,20,21,-1,16,20,17,-1,22,23,18,-1,18,23,19,-1,21,24,22,-1,20,24,21,-1,22,24,23,-1] -coord Coordinate { point [30.1181 4.4055 2.63385,30.1181 -1.48819 2.47637,30.1181 4.4055 2.47637,30.1181 -1.48819 2.63385,30.1181 -1.92126 2.0433,30.1181 -2.07874 2.0433,30.1181 -1.92126 -1.09055,30.1181 -2.07874 -1.09055,30.1181 -1.58057 2.62658,30.1181 -1.56339 2.46979,30.1181 -1.91468 2.1185,30.1181 -2.07147 2.13569,30.1181 -1.67068 2.60495,30.1181 -1.6363 2.45026,30.1181 -1.89514 2.19142,30.1181 -2.04983 2.22579,30.1181 -1.75629 2.56949,30.1181 -1.70472 2.41835,30.1181 -1.86324 2.25984,30.1181 -2.01437 2.31141,30.1181 -1.8353 2.52107,30.1181 -1.76656 2.37505,30.1181 -1.81994 2.32168,30.1181 -1.96595 2.39042,30.1181 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [30.1181 -1.48819 2.63385,30.0787 4.4055 2.67322,30.0787 -1.48819 2.67322,30.1181 4.4055 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1,4,5,6,-1,4,6,7,-1,8,0,9,-1,8,3,0,-1,10,11,5,-1,10,5,4,-1,12,9,13,-1,12,8,9,-1,14,15,11,-1,14,11,10,-1,16,13,17,-1,16,12,13,-1,18,19,15,-1,18,15,14,-1,20,17,21,-1,20,16,17,-1,22,23,19,-1,22,19,18,-1,24,21,23,-1,24,20,21,-1,24,23,22,-1] -coord Coordinate { point [29.8818 -1.48819 2.47637,29.8818 4.4055 2.63385,29.8818 4.4055 2.47637,29.8818 -1.48819 2.63385,29.8818 -2.07874 2.0433,29.8818 -1.92126 2.0433,29.8818 -1.92126 -1.09055,29.8818 -2.07874 -1.09055,29.8818 -1.58057 2.62658,29.8818 -1.56339 2.46979,29.8818 -2.07147 2.13569,29.8818 -1.91468 2.1185,29.8818 -1.67068 2.60495,29.8818 -1.6363 2.45026,29.8818 -2.04983 2.22579,29.8818 -1.89514 2.19142,29.8818 -1.75629 2.56949,29.8818 -1.70472 2.41835,29.8818 -2.01437 2.31141,29.8818 -1.86324 2.25984,29.8818 -1.8353 2.52107,29.8818 -1.76656 2.37505,29.8818 -1.96595 2.39042,29.8818 -1.81994 2.32168,29.8818 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [29.8818 4.4055 2.63385,29.8818 -1.48819 2.63385,29.9212 -1.48819 2.67322,29.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [30.0787 4.44487 2.63385,29.9212 4.44487 2.63385,30.0787 4.4055 2.67322,29.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [30.1181 -2.07874 -1.09055,30.0787 -2.11811 -1.09055,30.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [29.9212 -2.11811 -1.09055,29.8818 -2.07874 -1.09055,29.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [30.0787 -1.92126 -1.12992,29.9212 -2.07874 -1.12992,29.9212 -1.92126 -1.12992,30.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [30.1181 4.4055 2.63385,30.0787 4.44487 2.47637,30.0787 4.44487 2.63385,30.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [30.1181 4.4055 2.47637,30.1181 -1.48819 2.47637,30.0787 4.4055 2.437,30.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,12,14,13,-1,14,15,13,-1,14,16,15,-1,16,17,15,-1,16,18,17,-1] -coord Coordinate { point [30.1181 -1.48819 2.47637,30.1181 -1.56339 2.46979,30.0787 -1.48819 2.437,30.0787 -1.56499 2.42944,30.1181 -1.6363 2.45026,30.0787 -1.63885 2.40703,30.1181 -1.70472 2.41835,30.0787 -1.70691 2.37065,30.1181 -1.76656 2.37505,30.0787 -1.76657 2.32169,30.1181 -1.81994 2.32168,30.0787 -1.81554 2.26203,30.1181 -1.86324 2.25984,30.0787 -1.85192 2.19397,30.1181 -1.89514 2.19142,30.0787 -1.87432 2.12011,30.1181 -1.91468 2.1185,30.0787 -1.88189 2.0433,30.1181 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [30.1181 -1.92126 2.0433,30.1181 -1.92126 -1.09055,30.0787 -1.88189 2.0433,30.0787 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [30.1181 -1.92126 -1.09055,30.1181 -2.07874 -1.09055,30.0787 -2.07874 -1.12992,30.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [30.1181 4.4055 2.63385,30.0787 4.44487 2.63385,30.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [29.8818 -2.07874 -1.09055,29.8818 -1.92126 -1.09055,29.9212 -2.07874 -1.12992,29.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [29.8818 -1.92126 -1.09055,29.8818 -1.92126 2.0433,29.9212 -1.88189 2.0433,29.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,12,13,-1,15,14,13,-1,16,14,15,-1,17,16,15,-1,18,16,17,-1] -coord Coordinate { point [29.8818 -1.56339 2.46979,29.8818 -1.48819 2.47637,29.9212 -1.48819 2.437,29.9212 -1.56499 2.42944,29.8818 -1.6363 2.45026,29.9212 -1.63885 2.40703,29.8818 -1.70472 2.41835,29.9212 -1.70691 2.37065,29.8818 -1.76656 2.37505,29.9212 -1.76657 2.32169,29.8818 -1.81994 2.32168,29.9212 -1.81554 2.26203,29.8818 -1.86324 2.25984,29.9212 -1.85192 2.19397,29.8818 -1.89514 2.19142,29.9212 -1.87432 2.12011,29.8818 -1.91468 2.1185,29.9212 -1.88189 2.0433,29.8818 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [29.9212 4.44487 2.47637,29.8818 4.4055 2.63385,29.9212 4.44487 2.63385,29.8818 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [29.8818 -1.48819 2.47637,29.9212 4.4055 2.437,29.9212 -1.48819 2.437,29.8818 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [29.8818 4.4055 2.63385,29.9212 4.4055 2.67322,29.9212 4.44487 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,1,3,2,-1] -coord Coordinate { point [29.9212 4.44487 2.63385,30.0787 4.44487 2.63385,29.9212 4.44487 2.47637,30.0787 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [30.0787 -1.92126 -1.12992,29.9212 -1.92126 -1.12992,30.0787 -1.88189 -1.09055,29.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [30.0787 4.4055 2.437,30.0787 4.44487 2.47637,30.1181 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [30.0787 4.4055 2.437,30.0787 -1.48819 2.437,29.9212 4.4055 2.437,29.9212 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,15,16,-1,14,13,15,-1,14,12,13,-1,17,14,16,-1] -coord Coordinate { point [30.0787 -1.87432 2.12011,30.0787 -1.88189 2.0433,29.9212 -1.88189 2.0433,29.9212 -1.87432 2.12011,30.0787 -1.85192 2.19397,29.9212 -1.85192 2.19397,30.0787 -1.81554 2.26203,29.9212 -1.81554 2.26203,30.0787 -1.76657 2.32169,29.9212 -1.76657 2.32169,30.0787 -1.70691 2.37065,29.9212 -1.70691 2.37065,30.0787 -1.63885 2.40703,29.9212 -1.63885 2.40703,30.0787 -1.56499 2.42944,29.9212 -1.56499 2.42944,29.9212 -1.48819 2.437,30.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [30.0787 -1.88189 2.0433,30.0787 -1.88189 -1.09055,29.9212 -1.88189 2.0433,29.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [30.0787 -1.88189 -1.09055,30.1181 -1.92126 -1.09055,30.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [29.8818 -1.92126 -1.09055,29.9212 -1.88189 -1.09055,29.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [29.9212 4.4055 2.437,29.8818 4.4055 2.47637,29.9212 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [30.0787 4.44487 2.47637,29.9212 4.4055 2.437,29.9212 4.44487 2.47637,30.0787 4.4055 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [31.0787 -2.11811 2.0433,31.0787 -2.11035 2.14184,30.9212 -2.11811 2.0433,30.9212 -2.11035 2.14184,31.0787 -2.08728 2.23796,30.9212 -2.08728 2.23796,31.0787 -2.04945 2.32928,30.9212 -2.04945 2.32928,31.0787 -1.9978 2.41356,30.9212 -1.9978 2.41356,31.0787 -1.93361 2.48872,30.9212 -1.93361 2.48872,31.0787 -1.85844 2.55292,30.9212 -1.85844 2.55292,31.0787 -1.77416 2.60457,30.9212 -1.77416 2.60457,31.0787 -1.68284 2.64239,30.9212 -1.68284 2.64239,31.0787 -1.58673 2.66547,30.9212 -1.58673 2.66547,31.0787 -1.48819 2.67322,30.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [31.0787 -2.11811 -1.09055,31.0787 -2.11811 2.0433,30.9212 -2.11811 2.0433,30.9212 -2.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1,15,16,17,-1,14,16,15,-1,17,18,19,-1,16,18,17,-1,19,20,21,-1,18,20,19,-1] -coord Coordinate { point [31.118 -2.07874 2.0433,31.118 -2.07147 2.13569,31.0787 -2.11811 2.0433,31.0787 -2.11035 2.14184,31.118 -2.04983 2.22579,31.0787 -2.08728 2.23796,31.118 -2.01437 2.31141,31.0787 -2.04945 2.32928,31.118 -1.96595 2.39042,31.0787 -1.9978 2.41356,31.118 -1.90577 2.46088,31.0787 -1.93361 2.48872,31.118 -1.8353 2.52107,31.0787 -1.85844 2.55292,31.118 -1.75629 2.56949,31.0787 -1.77416 2.60457,31.118 -1.67068 2.60495,31.0787 -1.68284 2.64239,31.118 -1.58057 2.62658,31.0787 -1.58673 2.66547,31.118 -1.48819 2.63385,31.0787 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1,16,15,17,-1,16,14,15,-1,18,17,19,-1,18,16,17,-1,20,19,21,-1,20,18,19,-1] -coord Coordinate { point [30.8818 -2.07147 2.13569,30.8818 -2.07874 2.0433,30.9212 -2.11811 2.0433,30.9212 -2.11035 2.14184,30.8818 -2.04983 2.22579,30.9212 -2.08728 2.23796,30.8818 -2.01437 2.31141,30.9212 -2.04945 2.32928,30.8818 -1.96595 2.39042,30.9212 -1.9978 2.41356,30.8818 -1.90577 2.46088,30.9212 -1.93361 2.48872,30.8818 -1.8353 2.52107,30.9212 -1.85844 2.55292,30.8818 -1.75629 2.56949,30.9212 -1.77416 2.60457,30.8818 -1.67068 2.60495,30.9212 -1.68284 2.64239,30.8818 -1.58057 2.62658,30.9212 -1.58673 2.66547,30.8818 -1.48819 2.63385,30.9212 -1.48819 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [31.0787 -1.48819 2.67322,31.0787 4.4055 2.67322,30.9212 -1.48819 2.67322,30.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [31.0787 -2.11811 -1.09055,31.118 -2.07874 2.0433,31.0787 -2.11811 2.0433,31.118 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [30.8818 -2.07874 2.0433,30.9212 -2.11811 -1.09055,30.9212 -2.11811 2.0433,30.8818 -2.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [31.0787 -2.11811 -1.09055,30.9212 -2.11811 -1.09055,31.0787 -2.07874 -1.12992,30.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1,4,5,6,-1,6,5,7,-1,1,8,9,-1,3,8,1,-1,10,11,4,-1,4,11,5,-1,9,12,13,-1,8,12,9,-1,14,15,10,-1,10,15,11,-1,13,16,17,-1,12,16,13,-1,18,19,14,-1,14,19,15,-1,17,20,21,-1,16,20,17,-1,22,23,18,-1,18,23,19,-1,21,24,22,-1,20,24,21,-1,22,24,23,-1] -coord Coordinate { point [31.118 4.4055 2.63385,31.118 -1.48819 2.47637,31.118 4.4055 2.47637,31.118 -1.48819 2.63385,31.118 -1.92126 2.0433,31.118 -2.07874 2.0433,31.118 -1.92126 -1.09055,31.118 -2.07874 -1.09055,31.118 -1.58057 2.62658,31.118 -1.56339 2.46979,31.118 -1.91468 2.1185,31.118 -2.07147 2.13569,31.118 -1.67068 2.60495,31.118 -1.6363 2.45026,31.118 -1.89514 2.19142,31.118 -2.04983 2.22579,31.118 -1.75629 2.56949,31.118 -1.70472 2.41835,31.118 -1.86324 2.25984,31.118 -2.01437 2.31141,31.118 -1.8353 2.52107,31.118 -1.76656 2.37505,31.118 -1.81994 2.32168,31.118 -1.96595 2.39042,31.118 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [31.118 -1.48819 2.63385,31.0787 4.4055 2.67322,31.0787 -1.48819 2.67322,31.118 4.4055 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1,4,5,6,-1,4,6,7,-1,8,0,9,-1,8,3,0,-1,10,11,5,-1,10,5,4,-1,12,9,13,-1,12,8,9,-1,14,15,11,-1,14,11,10,-1,16,13,17,-1,16,12,13,-1,18,19,15,-1,18,15,14,-1,20,17,21,-1,20,16,17,-1,22,23,19,-1,22,19,18,-1,24,21,23,-1,24,20,21,-1,24,23,22,-1] -coord Coordinate { point [30.8818 -1.48819 2.47637,30.8818 4.4055 2.63385,30.8818 4.4055 2.47637,30.8818 -1.48819 2.63385,30.8818 -2.07874 2.0433,30.8818 -1.92126 2.0433,30.8818 -1.92126 -1.09055,30.8818 -2.07874 -1.09055,30.8818 -1.58057 2.62658,30.8818 -1.56339 2.46979,30.8818 -2.07147 2.13569,30.8818 -1.91468 2.1185,30.8818 -1.67068 2.60495,30.8818 -1.6363 2.45026,30.8818 -2.04983 2.22579,30.8818 -1.89514 2.19142,30.8818 -1.75629 2.56949,30.8818 -1.70472 2.41835,30.8818 -2.01437 2.31141,30.8818 -1.86324 2.25984,30.8818 -1.8353 2.52107,30.8818 -1.76656 2.37505,30.8818 -1.96595 2.39042,30.8818 -1.81994 2.32168,30.8818 -1.90577 2.46088] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [30.8818 4.4055 2.63385,30.8818 -1.48819 2.63385,30.9212 -1.48819 2.67322,30.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [31.0787 4.44487 2.63385,30.9212 4.44487 2.63385,31.0787 4.4055 2.67322,30.9212 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [31.118 -2.07874 -1.09055,31.0787 -2.11811 -1.09055,31.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [30.9212 -2.11811 -1.09055,30.8818 -2.07874 -1.09055,30.9212 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [31.0787 -1.92126 -1.12992,30.9212 -2.07874 -1.12992,30.9212 -1.92126 -1.12992,31.0787 -2.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [31.118 4.4055 2.63385,31.0787 4.44487 2.47637,31.0787 4.44487 2.63385,31.118 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [31.118 4.4055 2.47637,31.118 -1.48819 2.47637,31.0787 4.4055 2.437,31.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,12,14,13,-1,14,15,13,-1,14,16,15,-1,16,17,15,-1,16,18,17,-1] -coord Coordinate { point [31.118 -1.48819 2.47637,31.118 -1.56339 2.46979,31.0787 -1.48819 2.437,31.0787 -1.56499 2.42944,31.118 -1.6363 2.45026,31.0787 -1.63885 2.40703,31.118 -1.70472 2.41835,31.0787 -1.70691 2.37065,31.118 -1.76656 2.37505,31.0787 -1.76657 2.32169,31.118 -1.81994 2.32168,31.0787 -1.81554 2.26203,31.118 -1.86324 2.25984,31.0787 -1.85192 2.19397,31.118 -1.89514 2.19142,31.0787 -1.87432 2.12011,31.118 -1.91468 2.1185,31.0787 -1.88189 2.0433,31.118 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [31.118 -1.92126 2.0433,31.118 -1.92126 -1.09055,31.0787 -1.88189 2.0433,31.0787 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [31.118 -1.92126 -1.09055,31.118 -2.07874 -1.09055,31.0787 -2.07874 -1.12992,31.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [31.118 4.4055 2.63385,31.0787 4.44487 2.63385,31.0787 4.4055 2.67322] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [30.8818 -2.07874 -1.09055,30.8818 -1.92126 -1.09055,30.9212 -2.07874 -1.12992,30.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [30.8818 -1.92126 -1.09055,30.8818 -1.92126 2.0433,30.9212 -1.88189 2.0433,30.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,12,13,-1,15,14,13,-1,16,14,15,-1,17,16,15,-1,18,16,17,-1] -coord Coordinate { point [30.8818 -1.56339 2.46979,30.8818 -1.48819 2.47637,30.9212 -1.48819 2.437,30.9212 -1.56499 2.42944,30.8818 -1.6363 2.45026,30.9212 -1.63885 2.40703,30.8818 -1.70472 2.41835,30.9212 -1.70691 2.37065,30.8818 -1.76656 2.37505,30.9212 -1.76657 2.32169,30.8818 -1.81994 2.32168,30.9212 -1.81554 2.26203,30.8818 -1.86324 2.25984,30.9212 -1.85192 2.19397,30.8818 -1.89514 2.19142,30.9212 -1.87432 2.12011,30.8818 -1.91468 2.1185,30.9212 -1.88189 2.0433,30.8818 -1.92126 2.0433] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [30.9212 4.44487 2.47637,30.8818 4.4055 2.63385,30.9212 4.44487 2.63385,30.8818 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [30.8818 -1.48819 2.47637,30.9212 4.4055 2.437,30.9212 -1.48819 2.437,30.8818 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [30.8818 4.4055 2.63385,30.9212 4.4055 2.67322,30.9212 4.44487 2.63385] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,1,3,2,-1] -coord Coordinate { point [30.9212 4.44487 2.63385,31.0787 4.44487 2.63385,30.9212 4.44487 2.47637,31.0787 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [31.0787 -1.92126 -1.12992,30.9212 -1.92126 -1.12992,31.0787 -1.88189 -1.09055,30.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [31.0787 4.4055 2.437,31.0787 4.44487 2.47637,31.118 4.4055 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [31.0787 4.4055 2.437,31.0787 -1.48819 2.437,30.9212 4.4055 2.437,30.9212 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,15,16,-1,14,13,15,-1,14,12,13,-1,17,14,16,-1] -coord Coordinate { point [31.0787 -1.87432 2.12011,31.0787 -1.88189 2.0433,30.9212 -1.88189 2.0433,30.9212 -1.87432 2.12011,31.0787 -1.85192 2.19397,30.9212 -1.85192 2.19397,31.0787 -1.81554 2.26203,30.9212 -1.81554 2.26203,31.0787 -1.76657 2.32169,30.9212 -1.76657 2.32169,31.0787 -1.70691 2.37065,30.9212 -1.70691 2.37065,31.0787 -1.63885 2.40703,30.9212 -1.63885 2.40703,31.0787 -1.56499 2.42944,30.9212 -1.56499 2.42944,30.9212 -1.48819 2.437,31.0787 -1.48819 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [31.0787 -1.88189 2.0433,31.0787 -1.88189 -1.09055,30.9212 -1.88189 2.0433,30.9212 -1.88189 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [31.0787 -1.88189 -1.09055,31.118 -1.92126 -1.09055,31.0787 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [30.8818 -1.92126 -1.09055,30.9212 -1.88189 -1.09055,30.9212 -1.92126 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [30.9212 4.4055 2.437,30.8818 4.4055 2.47637,30.9212 4.44487 2.47637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [31.0787 4.44487 2.47637,30.9212 4.4055 2.437,30.9212 4.44487 2.47637,31.0787 4.4055 2.437] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [0.07874 0.119097 0.406398,0.07874 0.11811 0.397637,-0.07874 0.11811 0.397637,-0.07874 0.119097 0.406398,0.07874 0.122009 0.414719,-0.07874 0.122009 0.414719,0.07874 0.126699 0.422184,-0.07874 0.126699 0.422184,0.07874 0.132933 0.428418,-0.07874 0.132933 0.428418,0.07874 0.140398 0.433108,-0.07874 0.140398 0.433108,0.07874 0.148719 0.43602,-0.07874 0.148719 0.43602,0.07874 0.15748 0.437007,-0.07874 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [0.07874 0.11811 0.397637,0.07874 0.11811 -1.09055,-0.07874 0.11811 0.397637,-0.07874 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [0.11811 0.15748 0.476377,0.098425 0.134881 0.452197,0.07874 0.15748 0.437007,0.07874 0.148719 0.43602,0.07874 0.140398 0.433108,0.07874 0.132933 0.428418,0.11811 0.139959 0.474403,0.11811 0.123316 0.468579,0.11811 0.108386 0.459198,0.098425 0.115722 0.439395,0.07874 0.126699 0.422184,0.11811 0.0959186 0.446731,0.098425 0.10292 0.420236,0.07874 0.122009 0.414719,0.07874 0.119097 0.406398,0.07874 0.11811 0.397637,0.11811 0.07874 0.397637,0.11811 0.0865377 0.431801,0.11811 0.0807142 0.415158] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [-0.11811 0.07874 0.397637,-0.098425 0.10292 0.420236,-0.07874 0.11811 0.397637,-0.07874 0.119097 0.406398,-0.07874 0.122009 0.414719,-0.07874 0.126699 0.422184,-0.11811 0.0807142 0.415158,-0.11811 0.0865377 0.431801,-0.11811 0.0959186 0.446731,-0.098425 0.115722 0.439395,-0.07874 0.132933 0.428418,-0.11811 0.108386 0.459198,-0.098425 0.134881 0.452197,-0.07874 0.140398 0.433108,-0.07874 0.148719 0.43602,-0.07874 0.15748 0.437007,-0.11811 0.15748 0.476377,-0.11811 0.123316 0.468579,-0.11811 0.139959 0.474403] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [0.07874 4.4055 0.437007,0.07874 0.15748 0.437007,-0.07874 0.15748 0.437007,-0.07874 4.4055 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [0.11811 0.07874 0.397637,0.11811 0.07874 -1.09055,0.07874 0.11811 0.397637,0.07874 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [-0.07874 0.11811 -1.09055,-0.11811 0.07874 0.397637,-0.07874 0.11811 0.397637,-0.11811 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [-0.07874 0.11811 -1.09055,0.07874 0.11811 -1.09055,0.07874 0.07874 -1.12992,-0.07874 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [0.11811 4.4055 0.476377,0.11811 0.15748 0.476377,0.07874 4.4055 0.437007,0.07874 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,0,2,-1,4,5,0,-1,4,0,3,-1,6,7,5,-1,6,5,4,-1,8,9,7,-1,8,7,6,-1,10,9,8,-1,11,10,12,-1,11,9,10,-1,13,12,14,-1,13,11,12,-1,15,13,14,-1,16,14,17,-1,16,15,14,-1,18,16,17,-1,19,16,18,-1] -coord Coordinate { point [0.11811 -0.07874 0.397637,0.11811 -0.07874 -1.09055,0.11811 0.07874 -1.09055,0.11811 0.07874 0.397637,0.11811 0.0807142 0.415158,0.11811 -0.0728175 0.450201,0.11811 0.0865377 0.431801,0.11811 -0.0553469 0.500129,0.11811 0.0959186 0.446731,0.11811 -0.0272042 0.544918,0.11811 0.108386 0.459198,0.11811 0.0101992 0.582321,0.11811 0.123316 0.468579,0.11811 0.054988 0.610464,0.11811 0.139959 0.474403,0.11811 0.104916 0.627934,0.11811 0.15748 0.633857,0.11811 0.15748 0.476377,0.11811 4.4055 0.476377,0.11811 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,4,5,0,-1,0,5,1,-1,6,7,4,-1,4,7,5,-1,8,9,6,-1,6,9,7,-1,8,10,9,-1,10,11,12,-1,8,11,10,-1,12,13,14,-1,11,13,12,-1,13,15,14,-1,14,16,17,-1,15,16,14,-1,16,18,17,-1,16,19,18,-1] -coord Coordinate { point [-0.11811 -0.07874 0.397637,-0.11811 0.07874 0.397637,-0.11811 -0.07874 -1.09055,-0.11811 0.07874 -1.09055,-0.11811 -0.0728175 0.450201,-0.11811 0.0807142 0.415158,-0.11811 -0.0553469 0.500129,-0.11811 0.0865377 0.431801,-0.11811 -0.0272042 0.544918,-0.11811 0.0959186 0.446731,-0.11811 0.108386 0.459198,-0.11811 0.0101992 0.582321,-0.11811 0.123316 0.468579,-0.11811 0.054988 0.610464,-0.11811 0.139959 0.474403,-0.11811 0.104916 0.627934,-0.11811 0.15748 0.633857,-0.11811 0.15748 0.476377,-0.11811 4.4055 0.476377,-0.11811 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [-0.11811 0.15748 0.476377,-0.07874 4.4055 0.437007,-0.07874 0.15748 0.437007,-0.11811 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [-0.07874 4.4055 0.437007,0.07874 4.44487 0.476377,0.07874 4.4055 0.437007,-0.07874 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [0.07874 0.11811 -1.09055,0.11811 0.07874 -1.09055,0.07874 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [-0.11811 0.07874 -1.09055,-0.07874 0.11811 -1.09055,-0.07874 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [0.07874 0.07874 -1.12992,0.07874 -0.07874 -1.12992,-0.07874 -0.07874 -1.12992,-0.07874 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [0.07874 4.4055 0.437007,0.07874 4.44487 0.476377,0.11811 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [0.07874 0.15748 0.673227,0.11811 4.4055 0.633857,0.07874 4.4055 0.673227,0.11811 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [0.11811 4.4055 0.633857,0.11811 4.4055 0.476377,0.07874 4.44487 0.476377,0.07874 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [0.11811 0.104916 0.627934,0.11811 0.15748 0.633857,0.07874 0.15748 0.673227,0.07874 0.0961555 0.666317,0.11811 0.054988 0.610464,0.07874 0.037906 0.645935,0.11811 0.0101992 0.582321,0.07874 -0.0143476 0.613102,0.11811 -0.0272042 0.544918,0.07874 -0.0579849 0.569465,0.11811 -0.0553469 0.500129,0.07874 -0.090818 0.517211,0.11811 -0.0728175 0.450201,0.07874 -0.1112 0.458962,0.11811 -0.07874 0.397637,0.07874 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [0.07874 -0.11811 -1.09055,0.11811 -0.07874 0.397637,0.07874 -0.11811 0.397637,0.11811 -0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [0.07874 0.07874 -1.12992,0.11811 -0.07874 -1.09055,0.07874 -0.07874 -1.12992,0.11811 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [-0.11811 4.4055 0.633857,-0.07874 0.15748 0.673227,-0.07874 4.4055 0.673227,-0.11811 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [-0.11811 4.4055 0.476377,-0.11811 4.4055 0.633857,-0.07874 4.44487 0.476377,-0.07874 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1] -coord Coordinate { point [-0.11811 0.15748 0.633857,-0.11811 0.104916 0.627934,-0.07874 0.15748 0.673227,-0.07874 0.0961555 0.666317,-0.11811 0.054988 0.610464,-0.07874 0.037906 0.645935,-0.11811 0.0101992 0.582321,-0.07874 -0.0143476 0.613102,-0.11811 -0.0272042 0.544918,-0.07874 -0.0579849 0.569465,-0.11811 -0.0553469 0.500129,-0.07874 -0.090818 0.517211,-0.11811 -0.0728175 0.450201,-0.07874 -0.1112 0.458962,-0.11811 -0.07874 0.397637,-0.07874 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [-0.11811 -0.07874 0.397637,-0.11811 -0.07874 -1.09055,-0.07874 -0.11811 0.397637,-0.07874 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [-0.11811 -0.07874 -1.09055,-0.07874 0.07874 -1.12992,-0.07874 -0.07874 -1.12992,-0.11811 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [-0.07874 4.4055 0.437007,-0.11811 4.4055 0.476377,-0.07874 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [0.07874 4.44487 0.633857,0.07874 4.44487 0.476377,-0.07874 4.44487 0.476377,-0.07874 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [-0.07874 -0.07874 -1.12992,0.07874 -0.07874 -1.12992,0.07874 -0.11811 -1.09055,-0.07874 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [0.07874 0.15748 0.673227,0.07874 4.4055 0.673227,-0.07874 4.4055 0.673227,-0.07874 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [0.07874 4.4055 0.673227,0.11811 4.4055 0.633857,0.07874 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,12,13,14,-1,11,13,12,-1,10,13,11,-1,13,15,14,-1] -coord Coordinate { point [0.07874 -0.11811 0.397637,0.07874 -0.1112 0.458962,-0.07874 -0.11811 0.397637,-0.07874 -0.1112 0.458962,0.07874 -0.090818 0.517211,-0.07874 -0.090818 0.517211,0.07874 -0.0579849 0.569465,-0.07874 -0.0579849 0.569465,0.07874 -0.0143476 0.613102,-0.07874 -0.0143476 0.613102,0.07874 0.037906 0.645935,-0.07874 0.037906 0.645935,-0.07874 0.0961555 0.666317,0.07874 0.0961555 0.666317,-0.07874 0.15748 0.673227,0.07874 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [0.07874 -0.11811 -1.09055,0.07874 -0.11811 0.397637,-0.07874 -0.11811 0.397637,-0.07874 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [0.11811 -0.07874 -1.09055,0.07874 -0.11811 -1.09055,0.07874 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [-0.11811 4.4055 0.633857,-0.07874 4.4055 0.673227,-0.07874 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [-0.07874 -0.11811 -1.09055,-0.11811 -0.07874 -1.09055,-0.07874 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [-0.07874 4.4055 0.673227,0.07874 4.4055 0.673227,0.07874 4.44487 0.633857,-0.07874 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [1.07874 0.119097 0.406398,1.07874 0.11811 0.397637,0.921258 0.11811 0.397637,0.921258 0.119097 0.406398,1.07874 0.122009 0.414719,0.921258 0.122009 0.414719,1.07874 0.126699 0.422184,0.921258 0.126699 0.422184,1.07874 0.132933 0.428418,0.921258 0.132933 0.428418,1.07874 0.140398 0.433108,0.921258 0.140398 0.433108,1.07874 0.148719 0.43602,0.921258 0.148719 0.43602,1.07874 0.15748 0.437007,0.921258 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [1.07874 0.11811 0.397637,1.07874 0.11811 -1.09055,0.921258 0.11811 0.397637,0.921258 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [1.11811 0.15748 0.476377,1.09842 0.134881 0.452197,1.07874 0.15748 0.437007,1.07874 0.148719 0.43602,1.07874 0.140398 0.433108,1.07874 0.132933 0.428418,1.11811 0.139959 0.474403,1.11811 0.123316 0.468579,1.11811 0.108386 0.459198,1.09842 0.115722 0.439395,1.07874 0.126699 0.422184,1.11811 0.0959186 0.446731,1.09842 0.10292 0.420236,1.07874 0.122009 0.414719,1.07874 0.119097 0.406398,1.07874 0.11811 0.397637,1.11811 0.07874 0.397637,1.11811 0.0865377 0.431801,1.11811 0.0807142 0.415158] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [0.881888 0.07874 0.397637,0.901573 0.10292 0.420236,0.921258 0.11811 0.397637,0.921258 0.119097 0.406398,0.921258 0.122009 0.414719,0.921258 0.126699 0.422184,0.881888 0.0807142 0.415158,0.881888 0.0865377 0.431801,0.881888 0.0959186 0.446731,0.901573 0.115722 0.439395,0.921258 0.132933 0.428418,0.881888 0.108386 0.459198,0.901573 0.134881 0.452197,0.921258 0.140398 0.433108,0.921258 0.148719 0.43602,0.921258 0.15748 0.437007,0.881888 0.15748 0.476377,0.881888 0.123316 0.468579,0.881888 0.139959 0.474403] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [1.07874 4.4055 0.437007,1.07874 0.15748 0.437007,0.921258 0.15748 0.437007,0.921258 4.4055 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [1.11811 0.07874 0.397637,1.11811 0.07874 -1.09055,1.07874 0.11811 0.397637,1.07874 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [0.921258 0.11811 -1.09055,0.881888 0.07874 0.397637,0.921258 0.11811 0.397637,0.881888 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [0.921258 0.11811 -1.09055,1.07874 0.11811 -1.09055,1.07874 0.07874 -1.12992,0.921258 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [1.11811 4.4055 0.476377,1.11811 0.15748 0.476377,1.07874 4.4055 0.437007,1.07874 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,0,2,-1,4,5,0,-1,4,0,3,-1,6,7,5,-1,6,5,4,-1,8,9,7,-1,8,7,6,-1,10,9,8,-1,11,10,12,-1,11,9,10,-1,13,12,14,-1,13,11,12,-1,15,13,14,-1,16,14,17,-1,16,15,14,-1,18,16,17,-1,19,16,18,-1] -coord Coordinate { point [1.11811 -0.07874 0.397637,1.11811 -0.07874 -1.09055,1.11811 0.07874 -1.09055,1.11811 0.07874 0.397637,1.11811 0.0807142 0.415158,1.11811 -0.0728175 0.450201,1.11811 0.0865377 0.431801,1.11811 -0.0553469 0.500129,1.11811 0.0959186 0.446731,1.11811 -0.0272042 0.544918,1.11811 0.108386 0.459198,1.11811 0.0101992 0.582321,1.11811 0.123316 0.468579,1.11811 0.054988 0.610464,1.11811 0.139959 0.474403,1.11811 0.104916 0.627934,1.11811 0.15748 0.633857,1.11811 0.15748 0.476377,1.11811 4.4055 0.476377,1.11811 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,4,5,0,-1,0,5,1,-1,6,7,4,-1,4,7,5,-1,8,9,6,-1,6,9,7,-1,8,10,9,-1,10,11,12,-1,8,11,10,-1,12,13,14,-1,11,13,12,-1,13,15,14,-1,14,16,17,-1,15,16,14,-1,16,18,17,-1,16,19,18,-1] -coord Coordinate { point [0.881888 -0.07874 0.397637,0.881888 0.07874 0.397637,0.881888 -0.07874 -1.09055,0.881888 0.07874 -1.09055,0.881888 -0.0728175 0.450201,0.881888 0.0807142 0.415158,0.881888 -0.0553469 0.500129,0.881888 0.0865377 0.431801,0.881888 -0.0272042 0.544918,0.881888 0.0959186 0.446731,0.881888 0.108386 0.459198,0.881888 0.0101992 0.582321,0.881888 0.123316 0.468579,0.881888 0.054988 0.610464,0.881888 0.139959 0.474403,0.881888 0.104916 0.627934,0.881888 0.15748 0.633857,0.881888 0.15748 0.476377,0.881888 4.4055 0.476377,0.881888 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [0.881888 0.15748 0.476377,0.921258 4.4055 0.437007,0.921258 0.15748 0.437007,0.881888 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [0.921258 4.4055 0.437007,1.07874 4.44487 0.476377,1.07874 4.4055 0.437007,0.921258 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [1.07874 0.11811 -1.09055,1.11811 0.07874 -1.09055,1.07874 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [0.881888 0.07874 -1.09055,0.921258 0.11811 -1.09055,0.921258 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [1.07874 0.07874 -1.12992,1.07874 -0.07874 -1.12992,0.921258 -0.07874 -1.12992,0.921258 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [1.07874 4.4055 0.437007,1.07874 4.44487 0.476377,1.11811 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [1.07874 0.15748 0.673227,1.11811 4.4055 0.633857,1.07874 4.4055 0.673227,1.11811 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [1.11811 4.4055 0.633857,1.11811 4.4055 0.476377,1.07874 4.44487 0.476377,1.07874 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [1.11811 0.104916 0.627934,1.11811 0.15748 0.633857,1.07874 0.15748 0.673227,1.07874 0.0961555 0.666317,1.11811 0.054988 0.610464,1.07874 0.037906 0.645935,1.11811 0.0101992 0.582321,1.07874 -0.0143476 0.613102,1.11811 -0.0272042 0.544918,1.07874 -0.0579849 0.569465,1.11811 -0.0553469 0.500129,1.07874 -0.090818 0.517211,1.11811 -0.0728175 0.450201,1.07874 -0.1112 0.458962,1.11811 -0.07874 0.397637,1.07874 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [1.07874 -0.11811 -1.09055,1.11811 -0.07874 0.397637,1.07874 -0.11811 0.397637,1.11811 -0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [1.07874 0.07874 -1.12992,1.11811 -0.07874 -1.09055,1.07874 -0.07874 -1.12992,1.11811 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [0.881888 4.4055 0.633857,0.921258 0.15748 0.673227,0.921258 4.4055 0.673227,0.881888 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [0.881888 4.4055 0.476377,0.881888 4.4055 0.633857,0.921258 4.44487 0.476377,0.921258 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1] -coord Coordinate { point [0.881888 0.15748 0.633857,0.881888 0.104916 0.627934,0.921258 0.15748 0.673227,0.921258 0.0961555 0.666317,0.881888 0.054988 0.610464,0.921258 0.037906 0.645935,0.881888 0.0101992 0.582321,0.921258 -0.0143476 0.613102,0.881888 -0.0272042 0.544918,0.921258 -0.0579849 0.569465,0.881888 -0.0553469 0.500129,0.921258 -0.090818 0.517211,0.881888 -0.0728175 0.450201,0.921258 -0.1112 0.458962,0.881888 -0.07874 0.397637,0.921258 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [0.881888 -0.07874 0.397637,0.881888 -0.07874 -1.09055,0.921258 -0.11811 0.397637,0.921258 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [0.881888 -0.07874 -1.09055,0.921258 0.07874 -1.12992,0.921258 -0.07874 -1.12992,0.881888 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [0.921258 4.4055 0.437007,0.881888 4.4055 0.476377,0.921258 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [1.07874 4.44487 0.633857,1.07874 4.44487 0.476377,0.921258 4.44487 0.476377,0.921258 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [0.921258 -0.07874 -1.12992,1.07874 -0.07874 -1.12992,1.07874 -0.11811 -1.09055,0.921258 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [0.921258 0.15748 0.673227,1.07874 4.4055 0.673227,0.921258 4.4055 0.673227,1.07874 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [1.07874 4.4055 0.673227,1.11811 4.4055 0.633857,1.07874 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,12,13,14,-1,11,13,12,-1,10,13,11,-1,13,15,14,-1] -coord Coordinate { point [1.07874 -0.11811 0.397637,1.07874 -0.1112 0.458962,0.921258 -0.11811 0.397637,0.921258 -0.1112 0.458962,1.07874 -0.090818 0.517211,0.921258 -0.090818 0.517211,1.07874 -0.0579849 0.569465,0.921258 -0.0579849 0.569465,1.07874 -0.0143476 0.613102,0.921258 -0.0143476 0.613102,1.07874 0.037906 0.645935,0.921258 0.037906 0.645935,0.921258 0.0961555 0.666317,1.07874 0.0961555 0.666317,0.921258 0.15748 0.673227,1.07874 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [1.07874 -0.11811 -1.09055,1.07874 -0.11811 0.397637,0.921258 -0.11811 0.397637,0.921258 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [1.11811 -0.07874 -1.09055,1.07874 -0.11811 -1.09055,1.07874 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [0.881888 4.4055 0.633857,0.921258 4.4055 0.673227,0.921258 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [0.921258 -0.11811 -1.09055,0.881888 -0.07874 -1.09055,0.921258 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [0.921258 4.4055 0.673227,1.07874 4.4055 0.673227,1.07874 4.44487 0.633857,0.921258 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [2.07874 0.119097 0.406398,2.07874 0.11811 0.397637,1.92126 0.11811 0.397637,1.92126 0.119097 0.406398,2.07874 0.122009 0.414719,1.92126 0.122009 0.414719,2.07874 0.126699 0.422184,1.92126 0.126699 0.422184,2.07874 0.132933 0.428418,1.92126 0.132933 0.428418,2.07874 0.140398 0.433108,1.92126 0.140398 0.433108,2.07874 0.148719 0.43602,1.92126 0.148719 0.43602,2.07874 0.15748 0.437007,1.92126 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [2.07874 0.11811 0.397637,2.07874 0.11811 -1.09055,1.92126 0.11811 0.397637,1.92126 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [2.11811 0.15748 0.476377,2.09842 0.134881 0.452197,2.07874 0.15748 0.437007,2.07874 0.148719 0.43602,2.07874 0.140398 0.433108,2.07874 0.132933 0.428418,2.11811 0.139959 0.474403,2.11811 0.123316 0.468579,2.11811 0.108386 0.459198,2.09842 0.115722 0.439395,2.07874 0.126699 0.422184,2.11811 0.0959186 0.446731,2.09842 0.10292 0.420236,2.07874 0.122009 0.414719,2.07874 0.119097 0.406398,2.07874 0.11811 0.397637,2.11811 0.07874 0.397637,2.11811 0.0865377 0.431801,2.11811 0.0807142 0.415158] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [1.88189 0.07874 0.397637,1.90157 0.10292 0.420236,1.92126 0.11811 0.397637,1.92126 0.119097 0.406398,1.92126 0.122009 0.414719,1.92126 0.126699 0.422184,1.88189 0.0807142 0.415158,1.88189 0.0865377 0.431801,1.88189 0.0959186 0.446731,1.90157 0.115722 0.439395,1.92126 0.132933 0.428418,1.88189 0.108386 0.459198,1.90157 0.134881 0.452197,1.92126 0.140398 0.433108,1.92126 0.148719 0.43602,1.92126 0.15748 0.437007,1.88189 0.15748 0.476377,1.88189 0.123316 0.468579,1.88189 0.139959 0.474403] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [2.07874 4.4055 0.437007,2.07874 0.15748 0.437007,1.92126 0.15748 0.437007,1.92126 4.4055 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [2.11811 0.07874 0.397637,2.11811 0.07874 -1.09055,2.07874 0.11811 0.397637,2.07874 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [1.92126 0.11811 -1.09055,1.88189 0.07874 0.397637,1.92126 0.11811 0.397637,1.88189 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [1.92126 0.11811 -1.09055,2.07874 0.11811 -1.09055,2.07874 0.07874 -1.12992,1.92126 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [2.11811 4.4055 0.476377,2.11811 0.15748 0.476377,2.07874 4.4055 0.437007,2.07874 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,0,2,-1,4,5,0,-1,4,0,3,-1,6,7,5,-1,6,5,4,-1,8,9,7,-1,8,7,6,-1,10,9,8,-1,11,10,12,-1,11,9,10,-1,13,12,14,-1,13,11,12,-1,15,13,14,-1,16,14,17,-1,16,15,14,-1,18,16,17,-1,19,16,18,-1] -coord Coordinate { point [2.11811 -0.07874 0.397637,2.11811 -0.07874 -1.09055,2.11811 0.07874 -1.09055,2.11811 0.07874 0.397637,2.11811 0.0807142 0.415158,2.11811 -0.0728175 0.450201,2.11811 0.0865377 0.431801,2.11811 -0.0553469 0.500129,2.11811 0.0959186 0.446731,2.11811 -0.0272042 0.544918,2.11811 0.108386 0.459198,2.11811 0.0101992 0.582321,2.11811 0.123316 0.468579,2.11811 0.054988 0.610464,2.11811 0.139959 0.474403,2.11811 0.104916 0.627934,2.11811 0.15748 0.633857,2.11811 0.15748 0.476377,2.11811 4.4055 0.476377,2.11811 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,4,5,0,-1,0,5,1,-1,6,7,4,-1,4,7,5,-1,8,9,6,-1,6,9,7,-1,8,10,9,-1,10,11,12,-1,8,11,10,-1,12,13,14,-1,11,13,12,-1,13,15,14,-1,14,16,17,-1,15,16,14,-1,16,18,17,-1,16,19,18,-1] -coord Coordinate { point [1.88189 -0.07874 0.397637,1.88189 0.07874 0.397637,1.88189 -0.07874 -1.09055,1.88189 0.07874 -1.09055,1.88189 -0.0728175 0.450201,1.88189 0.0807142 0.415158,1.88189 -0.0553469 0.500129,1.88189 0.0865377 0.431801,1.88189 -0.0272042 0.544918,1.88189 0.0959186 0.446731,1.88189 0.108386 0.459198,1.88189 0.0101992 0.582321,1.88189 0.123316 0.468579,1.88189 0.054988 0.610464,1.88189 0.139959 0.474403,1.88189 0.104916 0.627934,1.88189 0.15748 0.633857,1.88189 0.15748 0.476377,1.88189 4.4055 0.476377,1.88189 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [1.88189 0.15748 0.476377,1.92126 4.4055 0.437007,1.92126 0.15748 0.437007,1.88189 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [1.92126 4.4055 0.437007,2.07874 4.44487 0.476377,2.07874 4.4055 0.437007,1.92126 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [2.07874 0.11811 -1.09055,2.11811 0.07874 -1.09055,2.07874 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [1.88189 0.07874 -1.09055,1.92126 0.11811 -1.09055,1.92126 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [2.07874 0.07874 -1.12992,2.07874 -0.07874 -1.12992,1.92126 -0.07874 -1.12992,1.92126 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [2.07874 4.4055 0.437007,2.07874 4.44487 0.476377,2.11811 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [2.07874 0.15748 0.673227,2.11811 4.4055 0.633857,2.07874 4.4055 0.673227,2.11811 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [2.11811 4.4055 0.633857,2.11811 4.4055 0.476377,2.07874 4.44487 0.476377,2.07874 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [2.11811 0.104916 0.627934,2.11811 0.15748 0.633857,2.07874 0.15748 0.673227,2.07874 0.0961555 0.666317,2.11811 0.054988 0.610464,2.07874 0.037906 0.645935,2.11811 0.0101992 0.582321,2.07874 -0.0143476 0.613102,2.11811 -0.0272042 0.544918,2.07874 -0.0579849 0.569465,2.11811 -0.0553469 0.500129,2.07874 -0.090818 0.517211,2.11811 -0.0728175 0.450201,2.07874 -0.1112 0.458962,2.11811 -0.07874 0.397637,2.07874 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [2.07874 -0.11811 -1.09055,2.11811 -0.07874 0.397637,2.07874 -0.11811 0.397637,2.11811 -0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [2.07874 0.07874 -1.12992,2.11811 -0.07874 -1.09055,2.07874 -0.07874 -1.12992,2.11811 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [1.88189 4.4055 0.633857,1.92126 0.15748 0.673227,1.92126 4.4055 0.673227,1.88189 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [1.88189 4.4055 0.476377,1.88189 4.4055 0.633857,1.92126 4.44487 0.476377,1.92126 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1] -coord Coordinate { point [1.88189 0.15748 0.633857,1.88189 0.104916 0.627934,1.92126 0.15748 0.673227,1.92126 0.0961555 0.666317,1.88189 0.054988 0.610464,1.92126 0.037906 0.645935,1.88189 0.0101992 0.582321,1.92126 -0.0143476 0.613102,1.88189 -0.0272042 0.544918,1.92126 -0.0579849 0.569465,1.88189 -0.0553469 0.500129,1.92126 -0.090818 0.517211,1.88189 -0.0728175 0.450201,1.92126 -0.1112 0.458962,1.88189 -0.07874 0.397637,1.92126 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [1.88189 -0.07874 0.397637,1.88189 -0.07874 -1.09055,1.92126 -0.11811 0.397637,1.92126 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [1.88189 -0.07874 -1.09055,1.92126 0.07874 -1.12992,1.92126 -0.07874 -1.12992,1.88189 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [1.92126 4.4055 0.437007,1.88189 4.4055 0.476377,1.92126 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [2.07874 4.44487 0.633857,2.07874 4.44487 0.476377,1.92126 4.44487 0.476377,1.92126 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [1.92126 -0.07874 -1.12992,2.07874 -0.07874 -1.12992,2.07874 -0.11811 -1.09055,1.92126 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [1.92126 0.15748 0.673227,2.07874 4.4055 0.673227,1.92126 4.4055 0.673227,2.07874 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [2.07874 4.4055 0.673227,2.11811 4.4055 0.633857,2.07874 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,12,13,14,-1,11,13,12,-1,10,13,11,-1,13,15,14,-1] -coord Coordinate { point [2.07874 -0.11811 0.397637,2.07874 -0.1112 0.458962,1.92126 -0.11811 0.397637,1.92126 -0.1112 0.458962,2.07874 -0.090818 0.517211,1.92126 -0.090818 0.517211,2.07874 -0.0579849 0.569465,1.92126 -0.0579849 0.569465,2.07874 -0.0143476 0.613102,1.92126 -0.0143476 0.613102,2.07874 0.037906 0.645935,1.92126 0.037906 0.645935,1.92126 0.0961555 0.666317,2.07874 0.0961555 0.666317,1.92126 0.15748 0.673227,2.07874 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [2.07874 -0.11811 -1.09055,2.07874 -0.11811 0.397637,1.92126 -0.11811 0.397637,1.92126 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [2.11811 -0.07874 -1.09055,2.07874 -0.11811 -1.09055,2.07874 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [1.88189 4.4055 0.633857,1.92126 4.4055 0.673227,1.92126 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [1.92126 -0.11811 -1.09055,1.88189 -0.07874 -1.09055,1.92126 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [1.92126 4.4055 0.673227,2.07874 4.4055 0.673227,2.07874 4.44487 0.633857,1.92126 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [3.07873 0.119097 0.406398,3.07873 0.11811 0.397637,2.92125 0.11811 0.397637,2.92125 0.119097 0.406398,3.07873 0.122009 0.414719,2.92125 0.122009 0.414719,3.07873 0.126699 0.422184,2.92125 0.126699 0.422184,3.07873 0.132933 0.428418,2.92125 0.132933 0.428418,3.07873 0.140398 0.433108,2.92125 0.140398 0.433108,3.07873 0.148719 0.43602,2.92125 0.148719 0.43602,3.07873 0.15748 0.437007,2.92125 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [3.07873 0.11811 0.397637,3.07873 0.11811 -1.09055,2.92125 0.11811 0.397637,2.92125 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [3.1181 0.15748 0.476377,3.09842 0.134881 0.452197,3.07873 0.15748 0.437007,3.07873 0.148719 0.43602,3.07873 0.140398 0.433108,3.07873 0.132933 0.428418,3.1181 0.139959 0.474403,3.1181 0.123316 0.468579,3.1181 0.108386 0.459198,3.09842 0.115722 0.439395,3.07873 0.126699 0.422184,3.1181 0.0959186 0.446731,3.09842 0.10292 0.420236,3.07873 0.122009 0.414719,3.07873 0.119097 0.406398,3.07873 0.11811 0.397637,3.1181 0.07874 0.397637,3.1181 0.0865377 0.431801,3.1181 0.0807142 0.415158] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [2.88188 0.07874 0.397637,2.90157 0.10292 0.420236,2.92125 0.11811 0.397637,2.92125 0.119097 0.406398,2.92125 0.122009 0.414719,2.92125 0.126699 0.422184,2.88188 0.0807142 0.415158,2.88188 0.0865377 0.431801,2.88188 0.0959186 0.446731,2.90157 0.115722 0.439395,2.92125 0.132933 0.428418,2.88188 0.108386 0.459198,2.90157 0.134881 0.452197,2.92125 0.140398 0.433108,2.92125 0.148719 0.43602,2.92125 0.15748 0.437007,2.88188 0.15748 0.476377,2.88188 0.123316 0.468579,2.88188 0.139959 0.474403] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [3.07873 4.4055 0.437007,3.07873 0.15748 0.437007,2.92125 0.15748 0.437007,2.92125 4.4055 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [3.1181 0.07874 0.397637,3.1181 0.07874 -1.09055,3.07873 0.11811 0.397637,3.07873 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [2.92125 0.11811 -1.09055,2.88188 0.07874 0.397637,2.92125 0.11811 0.397637,2.88188 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [2.92125 0.11811 -1.09055,3.07873 0.11811 -1.09055,3.07873 0.07874 -1.12992,2.92125 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [3.1181 4.4055 0.476377,3.1181 0.15748 0.476377,3.07873 4.4055 0.437007,3.07873 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,0,2,-1,4,5,0,-1,4,0,3,-1,6,7,5,-1,6,5,4,-1,8,9,7,-1,8,7,6,-1,10,9,8,-1,11,10,12,-1,11,9,10,-1,13,12,14,-1,13,11,12,-1,15,13,14,-1,16,14,17,-1,16,15,14,-1,18,16,17,-1,19,16,18,-1] -coord Coordinate { point [3.1181 -0.07874 0.397637,3.1181 -0.07874 -1.09055,3.1181 0.07874 -1.09055,3.1181 0.07874 0.397637,3.1181 0.0807142 0.415158,3.1181 -0.0728175 0.450201,3.1181 0.0865377 0.431801,3.1181 -0.0553469 0.500129,3.1181 0.0959186 0.446731,3.1181 -0.0272042 0.544918,3.1181 0.108386 0.459198,3.1181 0.0101992 0.582321,3.1181 0.123316 0.468579,3.1181 0.054988 0.610464,3.1181 0.139959 0.474403,3.1181 0.104916 0.627934,3.1181 0.15748 0.633857,3.1181 0.15748 0.476377,3.1181 4.4055 0.476377,3.1181 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,4,5,0,-1,0,5,1,-1,6,7,4,-1,4,7,5,-1,8,9,6,-1,6,9,7,-1,8,10,9,-1,10,11,12,-1,8,11,10,-1,12,13,14,-1,11,13,12,-1,13,15,14,-1,14,16,17,-1,15,16,14,-1,16,18,17,-1,16,19,18,-1] -coord Coordinate { point [2.88188 -0.07874 0.397637,2.88188 0.07874 0.397637,2.88188 -0.07874 -1.09055,2.88188 0.07874 -1.09055,2.88188 -0.0728175 0.450201,2.88188 0.0807142 0.415158,2.88188 -0.0553469 0.500129,2.88188 0.0865377 0.431801,2.88188 -0.0272042 0.544918,2.88188 0.0959186 0.446731,2.88188 0.108386 0.459198,2.88188 0.0101992 0.582321,2.88188 0.123316 0.468579,2.88188 0.054988 0.610464,2.88188 0.139959 0.474403,2.88188 0.104916 0.627934,2.88188 0.15748 0.633857,2.88188 0.15748 0.476377,2.88188 4.4055 0.476377,2.88188 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [2.88188 0.15748 0.476377,2.92125 4.4055 0.437007,2.92125 0.15748 0.437007,2.88188 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [2.92125 4.4055 0.437007,3.07873 4.44487 0.476377,3.07873 4.4055 0.437007,2.92125 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [3.07873 0.11811 -1.09055,3.1181 0.07874 -1.09055,3.07873 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [2.88188 0.07874 -1.09055,2.92125 0.11811 -1.09055,2.92125 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [3.07873 0.07874 -1.12992,3.07873 -0.07874 -1.12992,2.92125 -0.07874 -1.12992,2.92125 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [3.07873 4.4055 0.437007,3.07873 4.44487 0.476377,3.1181 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [3.07873 0.15748 0.673227,3.1181 4.4055 0.633857,3.07873 4.4055 0.673227,3.1181 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [3.1181 4.4055 0.633857,3.1181 4.4055 0.476377,3.07873 4.44487 0.476377,3.07873 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [3.1181 0.104916 0.627934,3.1181 0.15748 0.633857,3.07873 0.15748 0.673227,3.07873 0.0961555 0.666317,3.1181 0.054988 0.610464,3.07873 0.037906 0.645935,3.1181 0.0101992 0.582321,3.07873 -0.0143476 0.613102,3.1181 -0.0272042 0.544918,3.07873 -0.0579849 0.569465,3.1181 -0.0553469 0.500129,3.07873 -0.090818 0.517211,3.1181 -0.0728175 0.450201,3.07873 -0.1112 0.458962,3.1181 -0.07874 0.397637,3.07873 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [3.07873 -0.11811 -1.09055,3.1181 -0.07874 0.397637,3.07873 -0.11811 0.397637,3.1181 -0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [3.07873 0.07874 -1.12992,3.1181 -0.07874 -1.09055,3.07873 -0.07874 -1.12992,3.1181 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [2.88188 4.4055 0.633857,2.92125 0.15748 0.673227,2.92125 4.4055 0.673227,2.88188 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [2.88188 4.4055 0.476377,2.88188 4.4055 0.633857,2.92125 4.44487 0.476377,2.92125 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1] -coord Coordinate { point [2.88188 0.15748 0.633857,2.88188 0.104916 0.627934,2.92125 0.15748 0.673227,2.92125 0.0961555 0.666317,2.88188 0.054988 0.610464,2.92125 0.037906 0.645935,2.88188 0.0101992 0.582321,2.92125 -0.0143476 0.613102,2.88188 -0.0272042 0.544918,2.92125 -0.0579849 0.569465,2.88188 -0.0553469 0.500129,2.92125 -0.090818 0.517211,2.88188 -0.0728175 0.450201,2.92125 -0.1112 0.458962,2.88188 -0.07874 0.397637,2.92125 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [2.88188 -0.07874 0.397637,2.88188 -0.07874 -1.09055,2.92125 -0.11811 0.397637,2.92125 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [2.88188 -0.07874 -1.09055,2.92125 0.07874 -1.12992,2.92125 -0.07874 -1.12992,2.88188 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [2.92125 4.4055 0.437007,2.88188 4.4055 0.476377,2.92125 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [3.07873 4.44487 0.633857,3.07873 4.44487 0.476377,2.92125 4.44487 0.476377,2.92125 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [2.92125 -0.07874 -1.12992,3.07873 -0.07874 -1.12992,3.07873 -0.11811 -1.09055,2.92125 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [3.07873 0.15748 0.673227,3.07873 4.4055 0.673227,2.92125 4.4055 0.673227,2.92125 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [3.07873 4.4055 0.673227,3.1181 4.4055 0.633857,3.07873 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,12,13,14,-1,11,13,12,-1,10,13,11,-1,13,15,14,-1] -coord Coordinate { point [3.07873 -0.11811 0.397637,3.07873 -0.1112 0.458962,2.92125 -0.11811 0.397637,2.92125 -0.1112 0.458962,3.07873 -0.090818 0.517211,2.92125 -0.090818 0.517211,3.07873 -0.0579849 0.569465,2.92125 -0.0579849 0.569465,3.07873 -0.0143476 0.613102,2.92125 -0.0143476 0.613102,3.07873 0.037906 0.645935,2.92125 0.037906 0.645935,2.92125 0.0961555 0.666317,3.07873 0.0961555 0.666317,2.92125 0.15748 0.673227,3.07873 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [3.07873 -0.11811 -1.09055,3.07873 -0.11811 0.397637,2.92125 -0.11811 0.397637,2.92125 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [3.1181 -0.07874 -1.09055,3.07873 -0.11811 -1.09055,3.07873 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [2.88188 4.4055 0.633857,2.92125 4.4055 0.673227,2.92125 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [2.92125 -0.11811 -1.09055,2.88188 -0.07874 -1.09055,2.92125 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [2.92125 4.4055 0.673227,3.07873 4.4055 0.673227,3.07873 4.44487 0.633857,2.92125 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [4.07873 0.119097 0.406398,4.07873 0.11811 0.397637,3.92125 0.11811 0.397637,3.92125 0.119097 0.406398,4.07873 0.122009 0.414719,3.92125 0.122009 0.414719,4.07873 0.126699 0.422184,3.92125 0.126699 0.422184,4.07873 0.132933 0.428418,3.92125 0.132933 0.428418,4.07873 0.140398 0.433108,3.92125 0.140398 0.433108,4.07873 0.148719 0.43602,3.92125 0.148719 0.43602,4.07873 0.15748 0.437007,3.92125 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [4.07873 0.11811 0.397637,4.07873 0.11811 -1.09055,3.92125 0.11811 0.397637,3.92125 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [4.1181 0.15748 0.476377,4.09842 0.134881 0.452197,4.07873 0.15748 0.437007,4.07873 0.148719 0.43602,4.07873 0.140398 0.433108,4.07873 0.132933 0.428418,4.1181 0.139959 0.474403,4.1181 0.123316 0.468579,4.1181 0.108386 0.459198,4.09842 0.115722 0.439395,4.07873 0.126699 0.422184,4.1181 0.0959186 0.446731,4.09842 0.10292 0.420236,4.07873 0.122009 0.414719,4.07873 0.119097 0.406398,4.07873 0.11811 0.397637,4.1181 0.07874 0.397637,4.1181 0.0865377 0.431801,4.1181 0.0807142 0.415158] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [3.88188 0.07874 0.397637,3.90157 0.10292 0.420236,3.92125 0.11811 0.397637,3.92125 0.119097 0.406398,3.92125 0.122009 0.414719,3.92125 0.126699 0.422184,3.88188 0.0807142 0.415158,3.88188 0.0865377 0.431801,3.88188 0.0959186 0.446731,3.90157 0.115722 0.439395,3.92125 0.132933 0.428418,3.88188 0.108386 0.459198,3.90157 0.134881 0.452197,3.92125 0.140398 0.433108,3.92125 0.148719 0.43602,3.92125 0.15748 0.437007,3.88188 0.15748 0.476377,3.88188 0.123316 0.468579,3.88188 0.139959 0.474403] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [4.07873 4.4055 0.437007,4.07873 0.15748 0.437007,3.92125 0.15748 0.437007,3.92125 4.4055 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [4.1181 0.07874 0.397637,4.1181 0.07874 -1.09055,4.07873 0.11811 0.397637,4.07873 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [3.92125 0.11811 -1.09055,3.88188 0.07874 0.397637,3.92125 0.11811 0.397637,3.88188 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [3.92125 0.11811 -1.09055,4.07873 0.11811 -1.09055,4.07873 0.07874 -1.12992,3.92125 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [4.1181 4.4055 0.476377,4.1181 0.15748 0.476377,4.07873 4.4055 0.437007,4.07873 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,0,2,-1,4,5,0,-1,4,0,3,-1,6,7,5,-1,6,5,4,-1,8,9,7,-1,8,7,6,-1,10,9,8,-1,11,10,12,-1,11,9,10,-1,13,12,14,-1,13,11,12,-1,15,13,14,-1,16,14,17,-1,16,15,14,-1,18,16,17,-1,19,16,18,-1] -coord Coordinate { point [4.1181 -0.07874 0.397637,4.1181 -0.07874 -1.09055,4.1181 0.07874 -1.09055,4.1181 0.07874 0.397637,4.1181 0.0807142 0.415158,4.1181 -0.0728175 0.450201,4.1181 0.0865377 0.431801,4.1181 -0.0553469 0.500129,4.1181 0.0959186 0.446731,4.1181 -0.0272042 0.544918,4.1181 0.108386 0.459198,4.1181 0.0101992 0.582321,4.1181 0.123316 0.468579,4.1181 0.054988 0.610464,4.1181 0.139959 0.474403,4.1181 0.104916 0.627934,4.1181 0.15748 0.633857,4.1181 0.15748 0.476377,4.1181 4.4055 0.476377,4.1181 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,4,5,0,-1,0,5,1,-1,6,7,4,-1,4,7,5,-1,8,9,6,-1,6,9,7,-1,8,10,9,-1,10,11,12,-1,8,11,10,-1,12,13,14,-1,11,13,12,-1,13,15,14,-1,14,16,17,-1,15,16,14,-1,16,18,17,-1,16,19,18,-1] -coord Coordinate { point [3.88188 -0.07874 0.397637,3.88188 0.07874 0.397637,3.88188 -0.07874 -1.09055,3.88188 0.07874 -1.09055,3.88188 -0.0728175 0.450201,3.88188 0.0807142 0.415158,3.88188 -0.0553469 0.500129,3.88188 0.0865377 0.431801,3.88188 -0.0272042 0.544918,3.88188 0.0959186 0.446731,3.88188 0.108386 0.459198,3.88188 0.0101992 0.582321,3.88188 0.123316 0.468579,3.88188 0.054988 0.610464,3.88188 0.139959 0.474403,3.88188 0.104916 0.627934,3.88188 0.15748 0.633857,3.88188 0.15748 0.476377,3.88188 4.4055 0.476377,3.88188 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [3.88188 0.15748 0.476377,3.92125 4.4055 0.437007,3.92125 0.15748 0.437007,3.88188 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [3.92125 4.4055 0.437007,4.07873 4.44487 0.476377,4.07873 4.4055 0.437007,3.92125 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [4.07873 0.11811 -1.09055,4.1181 0.07874 -1.09055,4.07873 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [3.88188 0.07874 -1.09055,3.92125 0.11811 -1.09055,3.92125 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [4.07873 0.07874 -1.12992,4.07873 -0.07874 -1.12992,3.92125 -0.07874 -1.12992,3.92125 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [4.07873 4.4055 0.437007,4.07873 4.44487 0.476377,4.1181 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [4.07873 0.15748 0.673227,4.1181 4.4055 0.633857,4.07873 4.4055 0.673227,4.1181 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [4.1181 4.4055 0.633857,4.1181 4.4055 0.476377,4.07873 4.44487 0.476377,4.07873 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [4.1181 0.104916 0.627934,4.1181 0.15748 0.633857,4.07873 0.15748 0.673227,4.07873 0.0961555 0.666317,4.1181 0.054988 0.610464,4.07873 0.037906 0.645935,4.1181 0.0101992 0.582321,4.07873 -0.0143476 0.613102,4.1181 -0.0272042 0.544918,4.07873 -0.0579849 0.569465,4.1181 -0.0553469 0.500129,4.07873 -0.090818 0.517211,4.1181 -0.0728175 0.450201,4.07873 -0.1112 0.458962,4.1181 -0.07874 0.397637,4.07873 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [4.07873 -0.11811 -1.09055,4.1181 -0.07874 0.397637,4.07873 -0.11811 0.397637,4.1181 -0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [4.07873 0.07874 -1.12992,4.1181 -0.07874 -1.09055,4.07873 -0.07874 -1.12992,4.1181 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [3.88188 4.4055 0.633857,3.92125 0.15748 0.673227,3.92125 4.4055 0.673227,3.88188 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [3.88188 4.4055 0.476377,3.88188 4.4055 0.633857,3.92125 4.44487 0.476377,3.92125 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1] -coord Coordinate { point [3.88188 0.15748 0.633857,3.88188 0.104916 0.627934,3.92125 0.15748 0.673227,3.92125 0.0961555 0.666317,3.88188 0.054988 0.610464,3.92125 0.037906 0.645935,3.88188 0.0101992 0.582321,3.92125 -0.0143476 0.613102,3.88188 -0.0272042 0.544918,3.92125 -0.0579849 0.569465,3.88188 -0.0553469 0.500129,3.92125 -0.090818 0.517211,3.88188 -0.0728175 0.450201,3.92125 -0.1112 0.458962,3.88188 -0.07874 0.397637,3.92125 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [3.88188 -0.07874 0.397637,3.88188 -0.07874 -1.09055,3.92125 -0.11811 0.397637,3.92125 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [3.88188 -0.07874 -1.09055,3.92125 0.07874 -1.12992,3.92125 -0.07874 -1.12992,3.88188 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [3.92125 4.4055 0.437007,3.88188 4.4055 0.476377,3.92125 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [4.07873 4.44487 0.633857,4.07873 4.44487 0.476377,3.92125 4.44487 0.476377,3.92125 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [3.92125 -0.07874 -1.12992,4.07873 -0.07874 -1.12992,4.07873 -0.11811 -1.09055,3.92125 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [4.07873 0.15748 0.673227,4.07873 4.4055 0.673227,3.92125 4.4055 0.673227,3.92125 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [4.07873 4.4055 0.673227,4.1181 4.4055 0.633857,4.07873 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,12,13,14,-1,11,13,12,-1,10,13,11,-1,13,15,14,-1] -coord Coordinate { point [4.07873 -0.11811 0.397637,4.07873 -0.1112 0.458962,3.92125 -0.11811 0.397637,3.92125 -0.1112 0.458962,4.07873 -0.090818 0.517211,3.92125 -0.090818 0.517211,4.07873 -0.0579849 0.569465,3.92125 -0.0579849 0.569465,4.07873 -0.0143476 0.613102,3.92125 -0.0143476 0.613102,4.07873 0.037906 0.645935,3.92125 0.037906 0.645935,3.92125 0.0961555 0.666317,4.07873 0.0961555 0.666317,3.92125 0.15748 0.673227,4.07873 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [4.07873 -0.11811 -1.09055,4.07873 -0.11811 0.397637,3.92125 -0.11811 0.397637,3.92125 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [4.1181 -0.07874 -1.09055,4.07873 -0.11811 -1.09055,4.07873 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [3.88188 4.4055 0.633857,3.92125 4.4055 0.673227,3.92125 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [3.92125 -0.11811 -1.09055,3.88188 -0.07874 -1.09055,3.92125 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [3.92125 4.4055 0.673227,4.07873 4.4055 0.673227,4.07873 4.44487 0.633857,3.92125 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [5.07873 0.119097 0.406398,5.07873 0.11811 0.397637,4.92125 0.11811 0.397637,4.92125 0.119097 0.406398,5.07873 0.122009 0.414719,4.92125 0.122009 0.414719,5.07873 0.126699 0.422184,4.92125 0.126699 0.422184,5.07873 0.132933 0.428418,4.92125 0.132933 0.428418,5.07873 0.140398 0.433108,4.92125 0.140398 0.433108,5.07873 0.148719 0.43602,4.92125 0.148719 0.43602,5.07873 0.15748 0.437007,4.92125 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [5.07873 0.11811 0.397637,5.07873 0.11811 -1.09055,4.92125 0.11811 0.397637,4.92125 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [5.1181 0.15748 0.476377,5.09841 0.134881 0.452197,5.07873 0.15748 0.437007,5.07873 0.148719 0.43602,5.07873 0.140398 0.433108,5.07873 0.132933 0.428418,5.1181 0.139959 0.474403,5.1181 0.123316 0.468579,5.1181 0.108386 0.459198,5.09841 0.115722 0.439395,5.07873 0.126699 0.422184,5.1181 0.0959186 0.446731,5.09841 0.10292 0.420236,5.07873 0.122009 0.414719,5.07873 0.119097 0.406398,5.07873 0.11811 0.397637,5.1181 0.07874 0.397637,5.1181 0.0865377 0.431801,5.1181 0.0807142 0.415158] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [4.88188 0.07874 0.397637,4.90156 0.10292 0.420236,4.92125 0.11811 0.397637,4.92125 0.119097 0.406398,4.92125 0.122009 0.414719,4.92125 0.126699 0.422184,4.88188 0.0807142 0.415158,4.88188 0.0865377 0.431801,4.88188 0.0959186 0.446731,4.90156 0.115722 0.439395,4.92125 0.132933 0.428418,4.88188 0.108386 0.459198,4.90156 0.134881 0.452197,4.92125 0.140398 0.433108,4.92125 0.148719 0.43602,4.92125 0.15748 0.437007,4.88188 0.15748 0.476377,4.88188 0.123316 0.468579,4.88188 0.139959 0.474403] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [5.07873 4.4055 0.437007,5.07873 0.15748 0.437007,4.92125 0.15748 0.437007,4.92125 4.4055 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [5.1181 0.07874 0.397637,5.1181 0.07874 -1.09055,5.07873 0.11811 0.397637,5.07873 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [4.92125 0.11811 -1.09055,4.88188 0.07874 0.397637,4.92125 0.11811 0.397637,4.88188 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [4.92125 0.11811 -1.09055,5.07873 0.11811 -1.09055,5.07873 0.07874 -1.12992,4.92125 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [5.1181 4.4055 0.476377,5.1181 0.15748 0.476377,5.07873 4.4055 0.437007,5.07873 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,0,2,-1,4,5,0,-1,4,0,3,-1,6,7,5,-1,6,5,4,-1,8,9,7,-1,8,7,6,-1,10,9,8,-1,11,10,12,-1,11,9,10,-1,13,12,14,-1,13,11,12,-1,15,13,14,-1,16,14,17,-1,16,15,14,-1,18,16,17,-1,19,16,18,-1] -coord Coordinate { point [5.1181 -0.07874 0.397637,5.1181 -0.07874 -1.09055,5.1181 0.07874 -1.09055,5.1181 0.07874 0.397637,5.1181 0.0807142 0.415158,5.1181 -0.0728175 0.450201,5.1181 0.0865377 0.431801,5.1181 -0.0553469 0.500129,5.1181 0.0959186 0.446731,5.1181 -0.0272042 0.544918,5.1181 0.108386 0.459198,5.1181 0.0101992 0.582321,5.1181 0.123316 0.468579,5.1181 0.054988 0.610464,5.1181 0.139959 0.474403,5.1181 0.104916 0.627934,5.1181 0.15748 0.633857,5.1181 0.15748 0.476377,5.1181 4.4055 0.476377,5.1181 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,4,5,0,-1,0,5,1,-1,6,7,4,-1,4,7,5,-1,8,9,6,-1,6,9,7,-1,8,10,9,-1,10,11,12,-1,8,11,10,-1,12,13,14,-1,11,13,12,-1,13,15,14,-1,14,16,17,-1,15,16,14,-1,16,18,17,-1,16,19,18,-1] -coord Coordinate { point [4.88188 -0.07874 0.397637,4.88188 0.07874 0.397637,4.88188 -0.07874 -1.09055,4.88188 0.07874 -1.09055,4.88188 -0.0728175 0.450201,4.88188 0.0807142 0.415158,4.88188 -0.0553469 0.500129,4.88188 0.0865377 0.431801,4.88188 -0.0272042 0.544918,4.88188 0.0959186 0.446731,4.88188 0.108386 0.459198,4.88188 0.0101992 0.582321,4.88188 0.123316 0.468579,4.88188 0.054988 0.610464,4.88188 0.139959 0.474403,4.88188 0.104916 0.627934,4.88188 0.15748 0.633857,4.88188 0.15748 0.476377,4.88188 4.4055 0.476377,4.88188 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [4.88188 0.15748 0.476377,4.92125 4.4055 0.437007,4.92125 0.15748 0.437007,4.88188 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [4.92125 4.4055 0.437007,5.07873 4.44487 0.476377,5.07873 4.4055 0.437007,4.92125 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [5.07873 0.11811 -1.09055,5.1181 0.07874 -1.09055,5.07873 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [4.88188 0.07874 -1.09055,4.92125 0.11811 -1.09055,4.92125 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [5.07873 0.07874 -1.12992,5.07873 -0.07874 -1.12992,4.92125 -0.07874 -1.12992,4.92125 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [5.07873 4.4055 0.437007,5.07873 4.44487 0.476377,5.1181 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [5.07873 0.15748 0.673227,5.1181 4.4055 0.633857,5.07873 4.4055 0.673227,5.1181 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [5.1181 4.4055 0.633857,5.1181 4.4055 0.476377,5.07873 4.44487 0.476377,5.07873 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [5.1181 0.104916 0.627934,5.1181 0.15748 0.633857,5.07873 0.15748 0.673227,5.07873 0.0961555 0.666317,5.1181 0.054988 0.610464,5.07873 0.037906 0.645935,5.1181 0.0101992 0.582321,5.07873 -0.0143476 0.613102,5.1181 -0.0272042 0.544918,5.07873 -0.0579849 0.569465,5.1181 -0.0553469 0.500129,5.07873 -0.090818 0.517211,5.1181 -0.0728175 0.450201,5.07873 -0.1112 0.458962,5.1181 -0.07874 0.397637,5.07873 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [5.07873 -0.11811 -1.09055,5.1181 -0.07874 0.397637,5.07873 -0.11811 0.397637,5.1181 -0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [5.07873 0.07874 -1.12992,5.1181 -0.07874 -1.09055,5.07873 -0.07874 -1.12992,5.1181 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [4.88188 4.4055 0.633857,4.92125 0.15748 0.673227,4.92125 4.4055 0.673227,4.88188 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [4.88188 4.4055 0.476377,4.88188 4.4055 0.633857,4.92125 4.44487 0.476377,4.92125 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1] -coord Coordinate { point [4.88188 0.15748 0.633857,4.88188 0.104916 0.627934,4.92125 0.15748 0.673227,4.92125 0.0961555 0.666317,4.88188 0.054988 0.610464,4.92125 0.037906 0.645935,4.88188 0.0101992 0.582321,4.92125 -0.0143476 0.613102,4.88188 -0.0272042 0.544918,4.92125 -0.0579849 0.569465,4.88188 -0.0553469 0.500129,4.92125 -0.090818 0.517211,4.88188 -0.0728175 0.450201,4.92125 -0.1112 0.458962,4.88188 -0.07874 0.397637,4.92125 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [4.88188 -0.07874 0.397637,4.88188 -0.07874 -1.09055,4.92125 -0.11811 0.397637,4.92125 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [4.88188 -0.07874 -1.09055,4.92125 0.07874 -1.12992,4.92125 -0.07874 -1.12992,4.88188 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [4.92125 4.4055 0.437007,4.88188 4.4055 0.476377,4.92125 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [5.07873 4.44487 0.633857,5.07873 4.44487 0.476377,4.92125 4.44487 0.476377,4.92125 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [4.92125 -0.07874 -1.12992,5.07873 -0.07874 -1.12992,5.07873 -0.11811 -1.09055,4.92125 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [5.07873 0.15748 0.673227,5.07873 4.4055 0.673227,4.92125 4.4055 0.673227,4.92125 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [5.07873 4.4055 0.673227,5.1181 4.4055 0.633857,5.07873 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,12,13,14,-1,11,13,12,-1,10,13,11,-1,13,15,14,-1] -coord Coordinate { point [5.07873 -0.11811 0.397637,5.07873 -0.1112 0.458962,4.92125 -0.11811 0.397637,4.92125 -0.1112 0.458962,5.07873 -0.090818 0.517211,4.92125 -0.090818 0.517211,5.07873 -0.0579849 0.569465,4.92125 -0.0579849 0.569465,5.07873 -0.0143476 0.613102,4.92125 -0.0143476 0.613102,5.07873 0.037906 0.645935,4.92125 0.037906 0.645935,4.92125 0.0961555 0.666317,5.07873 0.0961555 0.666317,4.92125 0.15748 0.673227,5.07873 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [5.07873 -0.11811 -1.09055,5.07873 -0.11811 0.397637,4.92125 -0.11811 0.397637,4.92125 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [5.1181 -0.07874 -1.09055,5.07873 -0.11811 -1.09055,5.07873 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [4.88188 4.4055 0.633857,4.92125 4.4055 0.673227,4.92125 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [4.92125 -0.11811 -1.09055,4.88188 -0.07874 -1.09055,4.92125 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [4.92125 4.4055 0.673227,5.07873 4.4055 0.673227,5.07873 4.44487 0.633857,4.92125 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [6.07873 0.119097 0.406398,6.07873 0.11811 0.397637,5.92125 0.11811 0.397637,5.92125 0.119097 0.406398,6.07873 0.122009 0.414719,5.92125 0.122009 0.414719,6.07873 0.126699 0.422184,5.92125 0.126699 0.422184,6.07873 0.132933 0.428418,5.92125 0.132933 0.428418,6.07873 0.140398 0.433108,5.92125 0.140398 0.433108,6.07873 0.148719 0.43602,5.92125 0.148719 0.43602,6.07873 0.15748 0.437007,5.92125 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [6.07873 0.11811 0.397637,6.07873 0.11811 -1.09055,5.92125 0.11811 0.397637,5.92125 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [6.1181 0.15748 0.476377,6.09841 0.134881 0.452197,6.07873 0.15748 0.437007,6.07873 0.148719 0.43602,6.07873 0.140398 0.433108,6.07873 0.132933 0.428418,6.1181 0.139959 0.474403,6.1181 0.123316 0.468579,6.1181 0.108386 0.459198,6.09841 0.115722 0.439395,6.07873 0.126699 0.422184,6.1181 0.0959186 0.446731,6.09841 0.10292 0.420236,6.07873 0.122009 0.414719,6.07873 0.119097 0.406398,6.07873 0.11811 0.397637,6.1181 0.07874 0.397637,6.1181 0.0865377 0.431801,6.1181 0.0807142 0.415158] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [5.88188 0.07874 0.397637,5.90156 0.10292 0.420236,5.92125 0.11811 0.397637,5.92125 0.119097 0.406398,5.92125 0.122009 0.414719,5.92125 0.126699 0.422184,5.88188 0.0807142 0.415158,5.88188 0.0865377 0.431801,5.88188 0.0959186 0.446731,5.90156 0.115722 0.439395,5.92125 0.132933 0.428418,5.88188 0.108386 0.459198,5.90156 0.134881 0.452197,5.92125 0.140398 0.433108,5.92125 0.148719 0.43602,5.92125 0.15748 0.437007,5.88188 0.15748 0.476377,5.88188 0.123316 0.468579,5.88188 0.139959 0.474403] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [6.07873 4.4055 0.437007,6.07873 0.15748 0.437007,5.92125 0.15748 0.437007,5.92125 4.4055 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [6.1181 0.07874 0.397637,6.1181 0.07874 -1.09055,6.07873 0.11811 0.397637,6.07873 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [5.92125 0.11811 -1.09055,5.88188 0.07874 0.397637,5.92125 0.11811 0.397637,5.88188 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [5.92125 0.11811 -1.09055,6.07873 0.11811 -1.09055,6.07873 0.07874 -1.12992,5.92125 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [6.1181 4.4055 0.476377,6.1181 0.15748 0.476377,6.07873 4.4055 0.437007,6.07873 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,0,2,-1,4,5,0,-1,4,0,3,-1,6,7,5,-1,6,5,4,-1,8,9,7,-1,8,7,6,-1,10,9,8,-1,11,10,12,-1,11,9,10,-1,13,12,14,-1,13,11,12,-1,15,13,14,-1,16,14,17,-1,16,15,14,-1,18,16,17,-1,19,16,18,-1] -coord Coordinate { point [6.1181 -0.07874 0.397637,6.1181 -0.07874 -1.09055,6.1181 0.07874 -1.09055,6.1181 0.07874 0.397637,6.1181 0.0807142 0.415158,6.1181 -0.0728175 0.450201,6.1181 0.0865377 0.431801,6.1181 -0.0553469 0.500129,6.1181 0.0959186 0.446731,6.1181 -0.0272042 0.544918,6.1181 0.108386 0.459198,6.1181 0.0101992 0.582321,6.1181 0.123316 0.468579,6.1181 0.054988 0.610464,6.1181 0.139959 0.474403,6.1181 0.104916 0.627934,6.1181 0.15748 0.633857,6.1181 0.15748 0.476377,6.1181 4.4055 0.476377,6.1181 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,4,5,0,-1,0,5,1,-1,6,7,4,-1,4,7,5,-1,8,9,6,-1,6,9,7,-1,8,10,9,-1,10,11,12,-1,8,11,10,-1,12,13,14,-1,11,13,12,-1,13,15,14,-1,14,16,17,-1,15,16,14,-1,16,18,17,-1,16,19,18,-1] -coord Coordinate { point [5.88188 -0.07874 0.397637,5.88188 0.07874 0.397637,5.88188 -0.07874 -1.09055,5.88188 0.07874 -1.09055,5.88188 -0.0728175 0.450201,5.88188 0.0807142 0.415158,5.88188 -0.0553469 0.500129,5.88188 0.0865377 0.431801,5.88188 -0.0272042 0.544918,5.88188 0.0959186 0.446731,5.88188 0.108386 0.459198,5.88188 0.0101992 0.582321,5.88188 0.123316 0.468579,5.88188 0.054988 0.610464,5.88188 0.139959 0.474403,5.88188 0.104916 0.627934,5.88188 0.15748 0.633857,5.88188 0.15748 0.476377,5.88188 4.4055 0.476377,5.88188 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [5.88188 0.15748 0.476377,5.92125 4.4055 0.437007,5.92125 0.15748 0.437007,5.88188 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [5.92125 4.4055 0.437007,6.07873 4.44487 0.476377,6.07873 4.4055 0.437007,5.92125 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [6.07873 0.11811 -1.09055,6.1181 0.07874 -1.09055,6.07873 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [5.88188 0.07874 -1.09055,5.92125 0.11811 -1.09055,5.92125 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [6.07873 0.07874 -1.12992,6.07873 -0.07874 -1.12992,5.92125 -0.07874 -1.12992,5.92125 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [6.07873 4.4055 0.437007,6.07873 4.44487 0.476377,6.1181 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [6.07873 0.15748 0.673227,6.1181 4.4055 0.633857,6.07873 4.4055 0.673227,6.1181 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [6.1181 4.4055 0.633857,6.1181 4.4055 0.476377,6.07873 4.44487 0.476377,6.07873 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [6.1181 0.104916 0.627934,6.1181 0.15748 0.633857,6.07873 0.15748 0.673227,6.07873 0.0961555 0.666317,6.1181 0.054988 0.610464,6.07873 0.037906 0.645935,6.1181 0.0101992 0.582321,6.07873 -0.0143476 0.613102,6.1181 -0.0272042 0.544918,6.07873 -0.0579849 0.569465,6.1181 -0.0553469 0.500129,6.07873 -0.090818 0.517211,6.1181 -0.0728175 0.450201,6.07873 -0.1112 0.458962,6.1181 -0.07874 0.397637,6.07873 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [6.07873 -0.11811 -1.09055,6.1181 -0.07874 0.397637,6.07873 -0.11811 0.397637,6.1181 -0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [6.07873 0.07874 -1.12992,6.1181 -0.07874 -1.09055,6.07873 -0.07874 -1.12992,6.1181 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [5.88188 4.4055 0.633857,5.92125 0.15748 0.673227,5.92125 4.4055 0.673227,5.88188 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [5.88188 4.4055 0.476377,5.88188 4.4055 0.633857,5.92125 4.44487 0.476377,5.92125 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1] -coord Coordinate { point [5.88188 0.15748 0.633857,5.88188 0.104916 0.627934,5.92125 0.15748 0.673227,5.92125 0.0961555 0.666317,5.88188 0.054988 0.610464,5.92125 0.037906 0.645935,5.88188 0.0101992 0.582321,5.92125 -0.0143476 0.613102,5.88188 -0.0272042 0.544918,5.92125 -0.0579849 0.569465,5.88188 -0.0553469 0.500129,5.92125 -0.090818 0.517211,5.88188 -0.0728175 0.450201,5.92125 -0.1112 0.458962,5.88188 -0.07874 0.397637,5.92125 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [5.88188 -0.07874 0.397637,5.88188 -0.07874 -1.09055,5.92125 -0.11811 0.397637,5.92125 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [5.88188 -0.07874 -1.09055,5.92125 0.07874 -1.12992,5.92125 -0.07874 -1.12992,5.88188 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [5.92125 4.4055 0.437007,5.88188 4.4055 0.476377,5.92125 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [6.07873 4.44487 0.633857,6.07873 4.44487 0.476377,5.92125 4.44487 0.476377,5.92125 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [5.92125 -0.07874 -1.12992,6.07873 -0.07874 -1.12992,6.07873 -0.11811 -1.09055,5.92125 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [6.07873 0.15748 0.673227,6.07873 4.4055 0.673227,5.92125 4.4055 0.673227,5.92125 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [6.07873 4.4055 0.673227,6.1181 4.4055 0.633857,6.07873 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,12,13,14,-1,11,13,12,-1,10,13,11,-1,13,15,14,-1] -coord Coordinate { point [6.07873 -0.11811 0.397637,6.07873 -0.1112 0.458962,5.92125 -0.11811 0.397637,5.92125 -0.1112 0.458962,6.07873 -0.090818 0.517211,5.92125 -0.090818 0.517211,6.07873 -0.0579849 0.569465,5.92125 -0.0579849 0.569465,6.07873 -0.0143476 0.613102,5.92125 -0.0143476 0.613102,6.07873 0.037906 0.645935,5.92125 0.037906 0.645935,5.92125 0.0961555 0.666317,6.07873 0.0961555 0.666317,5.92125 0.15748 0.673227,6.07873 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [6.07873 -0.11811 -1.09055,6.07873 -0.11811 0.397637,5.92125 -0.11811 0.397637,5.92125 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [6.1181 -0.07874 -1.09055,6.07873 -0.11811 -1.09055,6.07873 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [5.88188 4.4055 0.633857,5.92125 4.4055 0.673227,5.92125 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [5.92125 -0.11811 -1.09055,5.88188 -0.07874 -1.09055,5.92125 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [5.92125 4.4055 0.673227,6.07873 4.4055 0.673227,6.07873 4.44487 0.633857,5.92125 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [7.07873 0.119097 0.406398,7.07873 0.11811 0.397637,6.92125 0.11811 0.397637,6.92125 0.119097 0.406398,7.07873 0.122009 0.414719,6.92125 0.122009 0.414719,7.07873 0.126699 0.422184,6.92125 0.126699 0.422184,7.07873 0.132933 0.428418,6.92125 0.132933 0.428418,7.07873 0.140398 0.433108,6.92125 0.140398 0.433108,7.07873 0.148719 0.43602,6.92125 0.148719 0.43602,7.07873 0.15748 0.437007,6.92125 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [7.07873 0.11811 0.397637,7.07873 0.11811 -1.09055,6.92125 0.11811 0.397637,6.92125 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [7.1181 0.15748 0.476377,7.09841 0.134881 0.452197,7.07873 0.15748 0.437007,7.07873 0.148719 0.43602,7.07873 0.140398 0.433108,7.07873 0.132933 0.428418,7.1181 0.139959 0.474403,7.1181 0.123316 0.468579,7.1181 0.108386 0.459198,7.09841 0.115722 0.439395,7.07873 0.126699 0.422184,7.1181 0.0959186 0.446731,7.09841 0.10292 0.420236,7.07873 0.122009 0.414719,7.07873 0.119097 0.406398,7.07873 0.11811 0.397637,7.1181 0.07874 0.397637,7.1181 0.0865377 0.431801,7.1181 0.0807142 0.415158] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [6.88188 0.07874 0.397637,6.90156 0.10292 0.420236,6.92125 0.11811 0.397637,6.92125 0.119097 0.406398,6.92125 0.122009 0.414719,6.92125 0.126699 0.422184,6.88188 0.0807142 0.415158,6.88188 0.0865377 0.431801,6.88188 0.0959186 0.446731,6.90156 0.115722 0.439395,6.92125 0.132933 0.428418,6.88188 0.108386 0.459198,6.90156 0.134881 0.452197,6.92125 0.140398 0.433108,6.92125 0.148719 0.43602,6.92125 0.15748 0.437007,6.88188 0.15748 0.476377,6.88188 0.123316 0.468579,6.88188 0.139959 0.474403] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [7.07873 4.4055 0.437007,7.07873 0.15748 0.437007,6.92125 0.15748 0.437007,6.92125 4.4055 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [7.1181 0.07874 0.397637,7.1181 0.07874 -1.09055,7.07873 0.11811 0.397637,7.07873 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [6.92125 0.11811 -1.09055,6.88188 0.07874 0.397637,6.92125 0.11811 0.397637,6.88188 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [6.92125 0.11811 -1.09055,7.07873 0.11811 -1.09055,7.07873 0.07874 -1.12992,6.92125 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [7.1181 4.4055 0.476377,7.1181 0.15748 0.476377,7.07873 4.4055 0.437007,7.07873 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,0,2,-1,4,5,0,-1,4,0,3,-1,6,7,5,-1,6,5,4,-1,8,9,7,-1,8,7,6,-1,10,9,8,-1,11,10,12,-1,11,9,10,-1,13,12,14,-1,13,11,12,-1,15,13,14,-1,16,14,17,-1,16,15,14,-1,18,16,17,-1,19,16,18,-1] -coord Coordinate { point [7.1181 -0.07874 0.397637,7.1181 -0.07874 -1.09055,7.1181 0.07874 -1.09055,7.1181 0.07874 0.397637,7.1181 0.0807142 0.415158,7.1181 -0.0728175 0.450201,7.1181 0.0865377 0.431801,7.1181 -0.0553469 0.500129,7.1181 0.0959186 0.446731,7.1181 -0.0272042 0.544918,7.1181 0.108386 0.459198,7.1181 0.0101992 0.582321,7.1181 0.123316 0.468579,7.1181 0.054988 0.610464,7.1181 0.139959 0.474403,7.1181 0.104916 0.627934,7.1181 0.15748 0.633857,7.1181 0.15748 0.476377,7.1181 4.4055 0.476377,7.1181 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,4,5,0,-1,0,5,1,-1,6,7,4,-1,4,7,5,-1,8,9,6,-1,6,9,7,-1,8,10,9,-1,10,11,12,-1,8,11,10,-1,12,13,14,-1,11,13,12,-1,13,15,14,-1,14,16,17,-1,15,16,14,-1,16,18,17,-1,16,19,18,-1] -coord Coordinate { point [6.88188 -0.07874 0.397637,6.88188 0.07874 0.397637,6.88188 -0.07874 -1.09055,6.88188 0.07874 -1.09055,6.88188 -0.0728175 0.450201,6.88188 0.0807142 0.415158,6.88188 -0.0553469 0.500129,6.88188 0.0865377 0.431801,6.88188 -0.0272042 0.544918,6.88188 0.0959186 0.446731,6.88188 0.108386 0.459198,6.88188 0.0101992 0.582321,6.88188 0.123316 0.468579,6.88188 0.054988 0.610464,6.88188 0.139959 0.474403,6.88188 0.104916 0.627934,6.88188 0.15748 0.633857,6.88188 0.15748 0.476377,6.88188 4.4055 0.476377,6.88188 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [6.88188 0.15748 0.476377,6.92125 4.4055 0.437007,6.92125 0.15748 0.437007,6.88188 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [6.92125 4.4055 0.437007,7.07873 4.44487 0.476377,7.07873 4.4055 0.437007,6.92125 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [7.07873 0.11811 -1.09055,7.1181 0.07874 -1.09055,7.07873 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [6.88188 0.07874 -1.09055,6.92125 0.11811 -1.09055,6.92125 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [7.07873 0.07874 -1.12992,7.07873 -0.07874 -1.12992,6.92125 -0.07874 -1.12992,6.92125 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [7.07873 4.4055 0.437007,7.07873 4.44487 0.476377,7.1181 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [7.07873 0.15748 0.673227,7.1181 4.4055 0.633857,7.07873 4.4055 0.673227,7.1181 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [7.1181 4.4055 0.633857,7.1181 4.4055 0.476377,7.07873 4.44487 0.476377,7.07873 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [7.1181 0.104916 0.627934,7.1181 0.15748 0.633857,7.07873 0.15748 0.673227,7.07873 0.0961555 0.666317,7.1181 0.054988 0.610464,7.07873 0.037906 0.645935,7.1181 0.0101992 0.582321,7.07873 -0.0143476 0.613102,7.1181 -0.0272042 0.544918,7.07873 -0.0579849 0.569465,7.1181 -0.0553469 0.500129,7.07873 -0.090818 0.517211,7.1181 -0.0728175 0.450201,7.07873 -0.1112 0.458962,7.1181 -0.07874 0.397637,7.07873 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [7.07873 -0.11811 -1.09055,7.1181 -0.07874 0.397637,7.07873 -0.11811 0.397637,7.1181 -0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [7.07873 0.07874 -1.12992,7.1181 -0.07874 -1.09055,7.07873 -0.07874 -1.12992,7.1181 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [6.88188 4.4055 0.633857,6.92125 0.15748 0.673227,6.92125 4.4055 0.673227,6.88188 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [6.88188 4.4055 0.476377,6.88188 4.4055 0.633857,6.92125 4.44487 0.476377,6.92125 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,10,12,11,-1,10,13,12,-1,12,14,15,-1,13,14,12,-1] -coord Coordinate { point [6.88188 0.15748 0.633857,6.88188 0.104916 0.627934,6.92125 0.15748 0.673227,6.92125 0.0961555 0.666317,6.88188 0.054988 0.610464,6.92125 0.037906 0.645935,6.88188 0.0101992 0.582321,6.92125 -0.0143476 0.613102,6.88188 -0.0272042 0.544918,6.92125 -0.0579849 0.569465,6.88188 -0.0553469 0.500129,6.92125 -0.090818 0.517211,6.92125 -0.1112 0.458962,6.88188 -0.0728175 0.450201,6.88188 -0.07874 0.397637,6.92125 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [6.88188 -0.07874 0.397637,6.88188 -0.07874 -1.09055,6.92125 -0.11811 0.397637,6.92125 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [6.88188 -0.07874 -1.09055,6.92125 0.07874 -1.12992,6.92125 -0.07874 -1.12992,6.88188 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [6.92125 4.4055 0.437007,6.88188 4.4055 0.476377,6.92125 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [7.07873 4.44487 0.633857,7.07873 4.44487 0.476377,6.92125 4.44487 0.476377,6.92125 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [6.92125 -0.07874 -1.12992,7.07873 -0.07874 -1.12992,7.07873 -0.11811 -1.09055,6.92125 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [7.07873 0.15748 0.673227,7.07873 4.4055 0.673227,6.92125 4.4055 0.673227,6.92125 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [7.07873 4.4055 0.673227,7.1181 4.4055 0.633857,7.07873 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,12,13,14,-1,11,13,12,-1,10,13,11,-1,13,15,14,-1] -coord Coordinate { point [7.07873 -0.11811 0.397637,7.07873 -0.1112 0.458962,6.92125 -0.11811 0.397637,6.92125 -0.1112 0.458962,7.07873 -0.090818 0.517211,6.92125 -0.090818 0.517211,7.07873 -0.0579849 0.569465,6.92125 -0.0579849 0.569465,7.07873 -0.0143476 0.613102,6.92125 -0.0143476 0.613102,7.07873 0.037906 0.645935,6.92125 0.037906 0.645935,6.92125 0.0961555 0.666317,7.07873 0.0961555 0.666317,6.92125 0.15748 0.673227,7.07873 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [7.07873 -0.11811 -1.09055,7.07873 -0.11811 0.397637,6.92125 -0.11811 0.397637,6.92125 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [7.1181 -0.07874 -1.09055,7.07873 -0.11811 -1.09055,7.07873 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [6.88188 4.4055 0.633857,6.92125 4.4055 0.673227,6.92125 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [6.92125 -0.11811 -1.09055,6.88188 -0.07874 -1.09055,6.92125 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [6.92125 4.4055 0.673227,7.07873 4.4055 0.673227,7.07873 4.44487 0.633857,6.92125 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [8.07872 0.119097 0.406398,8.07872 0.11811 0.397637,7.92124 0.11811 0.397637,7.92124 0.119097 0.406398,8.07872 0.122009 0.414719,7.92124 0.122009 0.414719,8.07872 0.126699 0.422184,7.92124 0.126699 0.422184,8.07872 0.132933 0.428418,7.92124 0.132933 0.428418,8.07872 0.140398 0.433108,7.92124 0.140398 0.433108,8.07872 0.148719 0.43602,7.92124 0.148719 0.43602,8.07872 0.15748 0.437007,7.92124 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [8.07872 0.11811 0.397637,8.07872 0.11811 -1.09055,7.92124 0.11811 0.397637,7.92124 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [8.11809 0.15748 0.476377,8.09841 0.134881 0.452197,8.07872 0.15748 0.437007,8.07872 0.148719 0.43602,8.07872 0.140398 0.433108,8.07872 0.132933 0.428418,8.11809 0.139959 0.474403,8.11809 0.123316 0.468579,8.11809 0.108386 0.459198,8.09841 0.115722 0.439395,8.07872 0.126699 0.422184,8.11809 0.0959186 0.446731,8.09841 0.10292 0.420236,8.07872 0.122009 0.414719,8.07872 0.119097 0.406398,8.07872 0.11811 0.397637,8.11809 0.07874 0.397637,8.11809 0.0865377 0.431801,8.11809 0.0807142 0.415158] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [7.88187 0.07874 0.397637,7.90156 0.10292 0.420236,7.92124 0.11811 0.397637,7.92124 0.119097 0.406398,7.92124 0.122009 0.414719,7.92124 0.126699 0.422184,7.88187 0.0807142 0.415158,7.88187 0.0865377 0.431801,7.88187 0.0959186 0.446731,7.90156 0.115722 0.439395,7.92124 0.132933 0.428418,7.88187 0.108386 0.459198,7.90156 0.134881 0.452197,7.92124 0.140398 0.433108,7.92124 0.148719 0.43602,7.92124 0.15748 0.437007,7.88187 0.15748 0.476377,7.88187 0.123316 0.468579,7.88187 0.139959 0.474403] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [8.07872 4.4055 0.437007,8.07872 0.15748 0.437007,7.92124 0.15748 0.437007,7.92124 4.4055 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [8.11809 0.07874 0.397637,8.11809 0.07874 -1.09055,8.07872 0.11811 0.397637,8.07872 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [7.92124 0.11811 -1.09055,7.88187 0.07874 0.397637,7.92124 0.11811 0.397637,7.88187 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [7.92124 0.11811 -1.09055,8.07872 0.11811 -1.09055,8.07872 0.07874 -1.12992,7.92124 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [8.11809 4.4055 0.476377,8.11809 0.15748 0.476377,8.07872 4.4055 0.437007,8.07872 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,0,2,-1,4,5,0,-1,4,0,3,-1,6,7,5,-1,6,5,4,-1,8,9,7,-1,8,7,6,-1,10,9,8,-1,11,10,12,-1,11,9,10,-1,13,12,14,-1,13,11,12,-1,15,13,14,-1,16,14,17,-1,16,15,14,-1,18,16,17,-1,19,16,18,-1] -coord Coordinate { point [8.11809 -0.07874 0.397637,8.11809 -0.07874 -1.09055,8.11809 0.07874 -1.09055,8.11809 0.07874 0.397637,8.11809 0.0807142 0.415158,8.11809 -0.0728175 0.450201,8.11809 0.0865377 0.431801,8.11809 -0.0553469 0.500129,8.11809 0.0959186 0.446731,8.11809 -0.0272042 0.544918,8.11809 0.108386 0.459198,8.11809 0.0101992 0.582321,8.11809 0.123316 0.468579,8.11809 0.054988 0.610464,8.11809 0.139959 0.474403,8.11809 0.104916 0.627934,8.11809 0.15748 0.633857,8.11809 0.15748 0.476377,8.11809 4.4055 0.476377,8.11809 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,4,5,0,-1,0,5,1,-1,6,7,4,-1,4,7,5,-1,8,9,6,-1,6,9,7,-1,8,10,9,-1,10,11,12,-1,8,11,10,-1,12,13,14,-1,11,13,12,-1,13,15,14,-1,14,16,17,-1,15,16,14,-1,16,18,17,-1,16,19,18,-1] -coord Coordinate { point [7.88187 -0.07874 0.397637,7.88187 0.07874 0.397637,7.88187 -0.07874 -1.09055,7.88187 0.07874 -1.09055,7.88187 -0.0728175 0.450201,7.88187 0.0807142 0.415158,7.88187 -0.0553469 0.500129,7.88187 0.0865377 0.431801,7.88187 -0.0272042 0.544918,7.88187 0.0959186 0.446731,7.88187 0.108386 0.459198,7.88187 0.0101992 0.582321,7.88187 0.123316 0.468579,7.88187 0.054988 0.610464,7.88187 0.139959 0.474403,7.88187 0.104916 0.627934,7.88187 0.15748 0.633857,7.88187 0.15748 0.476377,7.88187 4.4055 0.476377,7.88187 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [7.88187 0.15748 0.476377,7.92124 4.4055 0.437007,7.92124 0.15748 0.437007,7.88187 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [7.92124 4.4055 0.437007,8.07872 4.44487 0.476377,8.07872 4.4055 0.437007,7.92124 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [8.07872 0.11811 -1.09055,8.11809 0.07874 -1.09055,8.07872 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [7.88187 0.07874 -1.09055,7.92124 0.11811 -1.09055,7.92124 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [8.07872 0.07874 -1.12992,8.07872 -0.07874 -1.12992,7.92124 -0.07874 -1.12992,7.92124 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [8.07872 4.4055 0.437007,8.07872 4.44487 0.476377,8.11809 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [8.07872 0.15748 0.673227,8.11809 4.4055 0.633857,8.07872 4.4055 0.673227,8.11809 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [8.11809 4.4055 0.633857,8.11809 4.4055 0.476377,8.07872 4.44487 0.476377,8.07872 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [8.11809 0.104916 0.627934,8.11809 0.15748 0.633857,8.07872 0.15748 0.673227,8.07872 0.0961555 0.666317,8.11809 0.054988 0.610464,8.07872 0.037906 0.645935,8.11809 0.0101992 0.582321,8.07872 -0.0143476 0.613102,8.11809 -0.0272042 0.544918,8.07872 -0.0579849 0.569465,8.11809 -0.0553469 0.500129,8.07872 -0.090818 0.517211,8.11809 -0.0728175 0.450201,8.07872 -0.1112 0.458962,8.11809 -0.07874 0.397637,8.07872 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [8.07872 -0.11811 -1.09055,8.11809 -0.07874 0.397637,8.07872 -0.11811 0.397637,8.11809 -0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [8.07872 0.07874 -1.12992,8.11809 -0.07874 -1.09055,8.07872 -0.07874 -1.12992,8.11809 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [7.88187 4.4055 0.633857,7.92124 0.15748 0.673227,7.92124 4.4055 0.673227,7.88187 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [7.88187 4.4055 0.476377,7.88187 4.4055 0.633857,7.92124 4.44487 0.476377,7.92124 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,10,12,11,-1,10,13,12,-1,12,14,15,-1,13,14,12,-1] -coord Coordinate { point [7.88187 0.15748 0.633857,7.88187 0.104916 0.627934,7.92124 0.15748 0.673227,7.92124 0.0961555 0.666317,7.88187 0.054988 0.610464,7.92124 0.037906 0.645935,7.88187 0.0101992 0.582321,7.92124 -0.0143476 0.613102,7.88187 -0.0272042 0.544918,7.92124 -0.0579849 0.569465,7.88187 -0.0553469 0.500129,7.92124 -0.090818 0.517211,7.92124 -0.1112 0.458962,7.88187 -0.0728175 0.450201,7.88187 -0.07874 0.397637,7.92124 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [7.88187 -0.07874 0.397637,7.88187 -0.07874 -1.09055,7.92124 -0.11811 0.397637,7.92124 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [7.88187 -0.07874 -1.09055,7.92124 0.07874 -1.12992,7.92124 -0.07874 -1.12992,7.88187 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [7.92124 4.4055 0.437007,7.88187 4.4055 0.476377,7.92124 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [8.07872 4.44487 0.633857,8.07872 4.44487 0.476377,7.92124 4.44487 0.476377,7.92124 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [7.92124 -0.07874 -1.12992,8.07872 -0.07874 -1.12992,8.07872 -0.11811 -1.09055,7.92124 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [8.07872 0.15748 0.673227,8.07872 4.4055 0.673227,7.92124 4.4055 0.673227,7.92124 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [8.07872 4.4055 0.673227,8.11809 4.4055 0.633857,8.07872 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,12,13,14,-1,11,13,12,-1,10,13,11,-1,13,15,14,-1] -coord Coordinate { point [8.07872 -0.11811 0.397637,8.07872 -0.1112 0.458962,7.92124 -0.11811 0.397637,7.92124 -0.1112 0.458962,8.07872 -0.090818 0.517211,7.92124 -0.090818 0.517211,8.07872 -0.0579849 0.569465,7.92124 -0.0579849 0.569465,8.07872 -0.0143476 0.613102,7.92124 -0.0143476 0.613102,8.07872 0.037906 0.645935,7.92124 0.037906 0.645935,7.92124 0.0961555 0.666317,8.07872 0.0961555 0.666317,7.92124 0.15748 0.673227,8.07872 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [8.07872 -0.11811 -1.09055,8.07872 -0.11811 0.397637,7.92124 -0.11811 0.397637,7.92124 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [8.11809 -0.07874 -1.09055,8.07872 -0.11811 -1.09055,8.07872 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [7.88187 4.4055 0.633857,7.92124 4.4055 0.673227,7.92124 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [7.92124 -0.11811 -1.09055,7.88187 -0.07874 -1.09055,7.92124 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [7.92124 4.4055 0.673227,8.07872 4.4055 0.673227,8.07872 4.44487 0.633857,7.92124 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [9.07872 0.119097 0.406398,9.07872 0.11811 0.397637,8.92124 0.11811 0.397637,8.92124 0.119097 0.406398,9.07872 0.122009 0.414719,8.92124 0.122009 0.414719,9.07872 0.126699 0.422184,8.92124 0.126699 0.422184,9.07872 0.132933 0.428418,8.92124 0.132933 0.428418,9.07872 0.140398 0.433108,8.92124 0.140398 0.433108,9.07872 0.148719 0.43602,8.92124 0.148719 0.43602,9.07872 0.15748 0.437007,8.92124 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [9.07872 0.11811 0.397637,9.07872 0.11811 -1.09055,8.92124 0.11811 0.397637,8.92124 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [9.11809 0.15748 0.476377,9.09841 0.134881 0.452197,9.07872 0.15748 0.437007,9.07872 0.148719 0.43602,9.07872 0.140398 0.433108,9.07872 0.132933 0.428418,9.11809 0.139959 0.474403,9.11809 0.123316 0.468579,9.11809 0.108386 0.459198,9.09841 0.115722 0.439395,9.07872 0.126699 0.422184,9.11809 0.0959186 0.446731,9.09841 0.10292 0.420236,9.07872 0.122009 0.414719,9.07872 0.119097 0.406398,9.07872 0.11811 0.397637,9.11809 0.07874 0.397637,9.11809 0.0865377 0.431801,9.11809 0.0807142 0.415158] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [8.88187 0.07874 0.397637,8.90156 0.10292 0.420236,8.92124 0.11811 0.397637,8.92124 0.119097 0.406398,8.92124 0.122009 0.414719,8.92124 0.126699 0.422184,8.88187 0.0807142 0.415158,8.88187 0.0865377 0.431801,8.88187 0.0959186 0.446731,8.90156 0.115722 0.439395,8.92124 0.132933 0.428418,8.88187 0.108386 0.459198,8.90156 0.134881 0.452197,8.92124 0.140398 0.433108,8.92124 0.148719 0.43602,8.92124 0.15748 0.437007,8.88187 0.15748 0.476377,8.88187 0.123316 0.468579,8.88187 0.139959 0.474403] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [9.07872 4.4055 0.437007,9.07872 0.15748 0.437007,8.92124 0.15748 0.437007,8.92124 4.4055 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [9.11809 0.07874 0.397637,9.11809 0.07874 -1.09055,9.07872 0.11811 0.397637,9.07872 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [8.92124 0.11811 -1.09055,8.88187 0.07874 0.397637,8.92124 0.11811 0.397637,8.88187 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [8.92124 0.11811 -1.09055,9.07872 0.11811 -1.09055,9.07872 0.07874 -1.12992,8.92124 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [9.11809 4.4055 0.476377,9.11809 0.15748 0.476377,9.07872 4.4055 0.437007,9.07872 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,0,2,-1,4,5,0,-1,4,0,3,-1,6,7,5,-1,6,5,4,-1,8,9,7,-1,8,7,6,-1,10,9,8,-1,11,10,12,-1,11,9,10,-1,13,12,14,-1,13,11,12,-1,15,13,14,-1,16,14,17,-1,16,15,14,-1,18,16,17,-1,19,16,18,-1] -coord Coordinate { point [9.11809 -0.07874 0.397637,9.11809 -0.07874 -1.09055,9.11809 0.07874 -1.09055,9.11809 0.07874 0.397637,9.11809 0.0807142 0.415158,9.11809 -0.0728175 0.450201,9.11809 0.0865377 0.431801,9.11809 -0.0553469 0.500129,9.11809 0.0959186 0.446731,9.11809 -0.0272042 0.544918,9.11809 0.108386 0.459198,9.11809 0.0101992 0.582321,9.11809 0.123316 0.468579,9.11809 0.054988 0.610464,9.11809 0.139959 0.474403,9.11809 0.104916 0.627934,9.11809 0.15748 0.633857,9.11809 0.15748 0.476377,9.11809 4.4055 0.476377,9.11809 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,4,5,0,-1,0,5,1,-1,6,7,4,-1,4,7,5,-1,8,9,6,-1,6,9,7,-1,8,10,9,-1,10,11,12,-1,8,11,10,-1,12,13,14,-1,11,13,12,-1,13,15,14,-1,14,16,17,-1,15,16,14,-1,16,18,17,-1,16,19,18,-1] -coord Coordinate { point [8.88187 -0.07874 0.397637,8.88187 0.07874 0.397637,8.88187 -0.07874 -1.09055,8.88187 0.07874 -1.09055,8.88187 -0.0728175 0.450201,8.88187 0.0807142 0.415158,8.88187 -0.0553469 0.500129,8.88187 0.0865377 0.431801,8.88187 -0.0272042 0.544918,8.88187 0.0959186 0.446731,8.88187 0.108386 0.459198,8.88187 0.0101992 0.582321,8.88187 0.123316 0.468579,8.88187 0.054988 0.610464,8.88187 0.139959 0.474403,8.88187 0.104916 0.627934,8.88187 0.15748 0.633857,8.88187 0.15748 0.476377,8.88187 4.4055 0.476377,8.88187 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [8.88187 0.15748 0.476377,8.92124 4.4055 0.437007,8.92124 0.15748 0.437007,8.88187 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [8.92124 4.4055 0.437007,9.07872 4.44487 0.476377,9.07872 4.4055 0.437007,8.92124 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [9.07872 0.11811 -1.09055,9.11809 0.07874 -1.09055,9.07872 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [8.88187 0.07874 -1.09055,8.92124 0.11811 -1.09055,8.92124 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [9.07872 0.07874 -1.12992,9.07872 -0.07874 -1.12992,8.92124 -0.07874 -1.12992,8.92124 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [9.07872 4.4055 0.437007,9.07872 4.44487 0.476377,9.11809 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [9.07872 0.15748 0.673227,9.11809 4.4055 0.633857,9.07872 4.4055 0.673227,9.11809 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [9.11809 4.4055 0.633857,9.11809 4.4055 0.476377,9.07872 4.44487 0.476377,9.07872 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [9.11809 0.104916 0.627934,9.11809 0.15748 0.633857,9.07872 0.15748 0.673227,9.07872 0.0961555 0.666317,9.11809 0.054988 0.610464,9.07872 0.037906 0.645935,9.11809 0.0101992 0.582321,9.07872 -0.0143476 0.613102,9.11809 -0.0272042 0.544918,9.07872 -0.0579849 0.569465,9.11809 -0.0553469 0.500129,9.07872 -0.090818 0.517211,9.11809 -0.0728175 0.450201,9.07872 -0.1112 0.458962,9.11809 -0.07874 0.397637,9.07872 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [9.07872 -0.11811 -1.09055,9.11809 -0.07874 0.397637,9.07872 -0.11811 0.397637,9.11809 -0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [9.07872 0.07874 -1.12992,9.11809 -0.07874 -1.09055,9.07872 -0.07874 -1.12992,9.11809 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [8.88187 4.4055 0.633857,8.92124 0.15748 0.673227,8.92124 4.4055 0.673227,8.88187 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [8.88187 4.4055 0.476377,8.88187 4.4055 0.633857,8.92124 4.44487 0.476377,8.92124 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,10,12,11,-1,10,13,12,-1,12,14,15,-1,13,14,12,-1] -coord Coordinate { point [8.88187 0.15748 0.633857,8.88187 0.104916 0.627934,8.92124 0.15748 0.673227,8.92124 0.0961555 0.666317,8.88187 0.054988 0.610464,8.92124 0.037906 0.645935,8.88187 0.0101992 0.582321,8.92124 -0.0143476 0.613102,8.88187 -0.0272042 0.544918,8.92124 -0.0579849 0.569465,8.88187 -0.0553469 0.500129,8.92124 -0.090818 0.517211,8.92124 -0.1112 0.458962,8.88187 -0.0728175 0.450201,8.88187 -0.07874 0.397637,8.92124 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [8.88187 -0.07874 0.397637,8.88187 -0.07874 -1.09055,8.92124 -0.11811 0.397637,8.92124 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [8.88187 -0.07874 -1.09055,8.92124 0.07874 -1.12992,8.92124 -0.07874 -1.12992,8.88187 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [8.92124 4.4055 0.437007,8.88187 4.4055 0.476377,8.92124 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [9.07872 4.44487 0.633857,9.07872 4.44487 0.476377,8.92124 4.44487 0.476377,8.92124 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [8.92124 -0.07874 -1.12992,9.07872 -0.07874 -1.12992,9.07872 -0.11811 -1.09055,8.92124 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [9.07872 0.15748 0.673227,9.07872 4.4055 0.673227,8.92124 4.4055 0.673227,8.92124 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [9.07872 4.4055 0.673227,9.11809 4.4055 0.633857,9.07872 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,12,13,14,-1,11,13,12,-1,10,13,11,-1,13,15,14,-1] -coord Coordinate { point [9.07872 -0.11811 0.397637,9.07872 -0.1112 0.458962,8.92124 -0.11811 0.397637,8.92124 -0.1112 0.458962,9.07872 -0.090818 0.517211,8.92124 -0.090818 0.517211,9.07872 -0.0579849 0.569465,8.92124 -0.0579849 0.569465,9.07872 -0.0143476 0.613102,8.92124 -0.0143476 0.613102,9.07872 0.037906 0.645935,8.92124 0.037906 0.645935,8.92124 0.0961555 0.666317,9.07872 0.0961555 0.666317,8.92124 0.15748 0.673227,9.07872 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [9.07872 -0.11811 -1.09055,9.07872 -0.11811 0.397637,8.92124 -0.11811 0.397637,8.92124 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [9.11809 -0.07874 -1.09055,9.07872 -0.11811 -1.09055,9.07872 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [8.88187 4.4055 0.633857,8.92124 4.4055 0.673227,8.92124 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [8.92124 -0.11811 -1.09055,8.88187 -0.07874 -1.09055,8.92124 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [8.92124 4.4055 0.673227,9.07872 4.4055 0.673227,9.07872 4.44487 0.633857,8.92124 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [10.0787 0.119097 0.406398,10.0787 0.11811 0.397637,9.92124 0.11811 0.397637,9.92124 0.119097 0.406398,10.0787 0.122009 0.414719,9.92124 0.122009 0.414719,10.0787 0.126699 0.422184,9.92124 0.126699 0.422184,10.0787 0.132933 0.428418,9.92124 0.132933 0.428418,10.0787 0.140398 0.433108,9.92124 0.140398 0.433108,10.0787 0.148719 0.43602,9.92124 0.148719 0.43602,10.0787 0.15748 0.437007,9.92124 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [10.0787 0.11811 0.397637,10.0787 0.11811 -1.09055,9.92124 0.11811 0.397637,9.92124 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [10.1181 0.15748 0.476377,10.0984 0.134881 0.452197,10.0787 0.15748 0.437007,10.0787 0.148719 0.43602,10.0787 0.140398 0.433108,10.0787 0.132933 0.428418,10.1181 0.139959 0.474403,10.1181 0.123316 0.468579,10.1181 0.108386 0.459198,10.0984 0.115722 0.439395,10.0787 0.126699 0.422184,10.1181 0.0959186 0.446731,10.0984 0.10292 0.420236,10.0787 0.122009 0.414719,10.0787 0.119097 0.406398,10.0787 0.11811 0.397637,10.1181 0.07874 0.397637,10.1181 0.0865377 0.431801,10.1181 0.0807142 0.415158] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [9.88187 0.07874 0.397637,9.90156 0.10292 0.420236,9.92124 0.11811 0.397637,9.92124 0.119097 0.406398,9.92124 0.122009 0.414719,9.92124 0.126699 0.422184,9.88187 0.0807142 0.415158,9.88187 0.0865377 0.431801,9.88187 0.0959186 0.446731,9.90156 0.115722 0.439395,9.92124 0.132933 0.428418,9.88187 0.108386 0.459198,9.90156 0.134881 0.452197,9.92124 0.140398 0.433108,9.92124 0.148719 0.43602,9.92124 0.15748 0.437007,9.88187 0.15748 0.476377,9.88187 0.123316 0.468579,9.88187 0.139959 0.474403] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [10.0787 4.4055 0.437007,10.0787 0.15748 0.437007,9.92124 0.15748 0.437007,9.92124 4.4055 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [10.1181 0.07874 0.397637,10.1181 0.07874 -1.09055,10.0787 0.11811 0.397637,10.0787 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [9.92124 0.11811 -1.09055,9.88187 0.07874 0.397637,9.92124 0.11811 0.397637,9.88187 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [9.92124 0.11811 -1.09055,10.0787 0.11811 -1.09055,10.0787 0.07874 -1.12992,9.92124 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [10.1181 4.4055 0.476377,10.1181 0.15748 0.476377,10.0787 4.4055 0.437007,10.0787 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,0,2,-1,4,5,0,-1,4,0,3,-1,6,7,5,-1,6,5,4,-1,8,9,7,-1,8,7,6,-1,10,9,8,-1,11,10,12,-1,11,9,10,-1,13,12,14,-1,13,11,12,-1,15,13,14,-1,16,14,17,-1,16,15,14,-1,18,16,17,-1,19,16,18,-1] -coord Coordinate { point [10.1181 -0.07874 0.397637,10.1181 -0.07874 -1.09055,10.1181 0.07874 -1.09055,10.1181 0.07874 0.397637,10.1181 0.0807142 0.415158,10.1181 -0.0728175 0.450201,10.1181 0.0865377 0.431801,10.1181 -0.0553469 0.500129,10.1181 0.0959186 0.446731,10.1181 -0.0272042 0.544918,10.1181 0.108386 0.459198,10.1181 0.0101992 0.582321,10.1181 0.123316 0.468579,10.1181 0.054988 0.610464,10.1181 0.139959 0.474403,10.1181 0.104916 0.627934,10.1181 0.15748 0.633857,10.1181 0.15748 0.476377,10.1181 4.4055 0.476377,10.1181 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,4,5,0,-1,0,5,1,-1,6,7,4,-1,4,7,5,-1,8,9,6,-1,6,9,7,-1,8,10,9,-1,10,11,12,-1,8,11,10,-1,12,13,14,-1,11,13,12,-1,13,15,14,-1,14,16,17,-1,15,16,14,-1,16,18,17,-1,16,19,18,-1] -coord Coordinate { point [9.88187 -0.07874 0.397637,9.88187 0.07874 0.397637,9.88187 -0.07874 -1.09055,9.88187 0.07874 -1.09055,9.88187 -0.0728175 0.450201,9.88187 0.0807142 0.415158,9.88187 -0.0553469 0.500129,9.88187 0.0865377 0.431801,9.88187 -0.0272042 0.544918,9.88187 0.0959186 0.446731,9.88187 0.108386 0.459198,9.88187 0.0101992 0.582321,9.88187 0.123316 0.468579,9.88187 0.054988 0.610464,9.88187 0.139959 0.474403,9.88187 0.104916 0.627934,9.88187 0.15748 0.633857,9.88187 0.15748 0.476377,9.88187 4.4055 0.476377,9.88187 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [9.88187 0.15748 0.476377,9.92124 4.4055 0.437007,9.92124 0.15748 0.437007,9.88187 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [9.92124 4.4055 0.437007,10.0787 4.44487 0.476377,10.0787 4.4055 0.437007,9.92124 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [10.0787 0.11811 -1.09055,10.1181 0.07874 -1.09055,10.0787 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [9.88187 0.07874 -1.09055,9.92124 0.11811 -1.09055,9.92124 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [10.0787 0.07874 -1.12992,10.0787 -0.07874 -1.12992,9.92124 -0.07874 -1.12992,9.92124 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [10.0787 4.4055 0.437007,10.0787 4.44487 0.476377,10.1181 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [10.0787 0.15748 0.673227,10.1181 4.4055 0.633857,10.0787 4.4055 0.673227,10.1181 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [10.1181 4.4055 0.633857,10.1181 4.4055 0.476377,10.0787 4.44487 0.476377,10.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [10.1181 0.104916 0.627934,10.1181 0.15748 0.633857,10.0787 0.15748 0.673227,10.0787 0.0961555 0.666317,10.1181 0.054988 0.610464,10.0787 0.037906 0.645935,10.1181 0.0101992 0.582321,10.0787 -0.0143476 0.613102,10.1181 -0.0272042 0.544918,10.0787 -0.0579849 0.569465,10.1181 -0.0553469 0.500129,10.0787 -0.090818 0.517211,10.1181 -0.0728175 0.450201,10.0787 -0.1112 0.458962,10.1181 -0.07874 0.397637,10.0787 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [10.0787 -0.11811 -1.09055,10.1181 -0.07874 0.397637,10.0787 -0.11811 0.397637,10.1181 -0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [10.0787 0.07874 -1.12992,10.1181 -0.07874 -1.09055,10.0787 -0.07874 -1.12992,10.1181 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [9.88187 4.4055 0.633857,9.92124 0.15748 0.673227,9.92124 4.4055 0.673227,9.88187 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [9.88187 4.4055 0.476377,9.88187 4.4055 0.633857,9.92124 4.44487 0.476377,9.92124 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,10,12,11,-1,10,13,12,-1,12,14,15,-1,13,14,12,-1] -coord Coordinate { point [9.88187 0.15748 0.633857,9.88187 0.104916 0.627934,9.92124 0.15748 0.673227,9.92124 0.0961555 0.666317,9.88187 0.054988 0.610464,9.92124 0.037906 0.645935,9.88187 0.0101992 0.582321,9.92124 -0.0143476 0.613102,9.88187 -0.0272042 0.544918,9.92124 -0.0579849 0.569465,9.88187 -0.0553469 0.500129,9.92124 -0.090818 0.517211,9.92124 -0.1112 0.458962,9.88187 -0.0728175 0.450201,9.88187 -0.07874 0.397637,9.92124 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [9.88187 -0.07874 0.397637,9.88187 -0.07874 -1.09055,9.92124 -0.11811 0.397637,9.92124 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [9.88187 -0.07874 -1.09055,9.92124 0.07874 -1.12992,9.92124 -0.07874 -1.12992,9.88187 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [9.92124 4.4055 0.437007,9.88187 4.4055 0.476377,9.92124 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [10.0787 4.44487 0.633857,10.0787 4.44487 0.476377,9.92124 4.44487 0.476377,9.92124 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [9.92124 -0.07874 -1.12992,10.0787 -0.07874 -1.12992,10.0787 -0.11811 -1.09055,9.92124 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [10.0787 0.15748 0.673227,10.0787 4.4055 0.673227,9.92124 4.4055 0.673227,9.92124 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [10.0787 4.4055 0.673227,10.1181 4.4055 0.633857,10.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,12,13,14,-1,11,13,12,-1,10,13,11,-1,13,15,14,-1] -coord Coordinate { point [10.0787 -0.11811 0.397637,10.0787 -0.1112 0.458962,9.92124 -0.11811 0.397637,9.92124 -0.1112 0.458962,10.0787 -0.090818 0.517211,9.92124 -0.090818 0.517211,10.0787 -0.0579849 0.569465,9.92124 -0.0579849 0.569465,10.0787 -0.0143476 0.613102,9.92124 -0.0143476 0.613102,10.0787 0.037906 0.645935,9.92124 0.037906 0.645935,9.92124 0.0961555 0.666317,10.0787 0.0961555 0.666317,9.92124 0.15748 0.673227,10.0787 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [10.0787 -0.11811 -1.09055,10.0787 -0.11811 0.397637,9.92124 -0.11811 0.397637,9.92124 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [10.1181 -0.07874 -1.09055,10.0787 -0.11811 -1.09055,10.0787 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [9.88187 4.4055 0.633857,9.92124 4.4055 0.673227,9.92124 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [9.92124 -0.11811 -1.09055,9.88187 -0.07874 -1.09055,9.92124 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [9.92124 4.4055 0.673227,10.0787 4.4055 0.673227,10.0787 4.44487 0.633857,9.92124 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [11.0787 0.119097 0.406398,11.0787 0.11811 0.397637,10.9212 0.11811 0.397637,10.9212 0.119097 0.406398,11.0787 0.122009 0.414719,10.9212 0.122009 0.414719,11.0787 0.126699 0.422184,10.9212 0.126699 0.422184,11.0787 0.132933 0.428418,10.9212 0.132933 0.428418,11.0787 0.140398 0.433108,10.9212 0.140398 0.433108,11.0787 0.148719 0.43602,10.9212 0.148719 0.43602,11.0787 0.15748 0.437007,10.9212 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [11.0787 0.11811 0.397637,11.0787 0.11811 -1.09055,10.9212 0.11811 0.397637,10.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [11.1181 0.15748 0.476377,11.0984 0.134881 0.452197,11.0787 0.15748 0.437007,11.0787 0.148719 0.43602,11.0787 0.140398 0.433108,11.0787 0.132933 0.428418,11.1181 0.139959 0.474403,11.1181 0.123316 0.468579,11.1181 0.108386 0.459198,11.0984 0.115722 0.439395,11.0787 0.126699 0.422184,11.1181 0.0959186 0.446731,11.0984 0.10292 0.420236,11.0787 0.122009 0.414719,11.0787 0.119097 0.406398,11.0787 0.11811 0.397637,11.1181 0.07874 0.397637,11.1181 0.0865377 0.431801,11.1181 0.0807142 0.415158] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [10.8819 0.07874 0.397637,10.9016 0.10292 0.420236,10.9212 0.11811 0.397637,10.9212 0.119097 0.406398,10.9212 0.122009 0.414719,10.9212 0.126699 0.422184,10.8819 0.0807142 0.415158,10.8819 0.0865377 0.431801,10.8819 0.0959186 0.446731,10.9016 0.115722 0.439395,10.9212 0.132933 0.428418,10.8819 0.108386 0.459198,10.9016 0.134881 0.452197,10.9212 0.140398 0.433108,10.9212 0.148719 0.43602,10.9212 0.15748 0.437007,10.8819 0.15748 0.476377,10.8819 0.123316 0.468579,10.8819 0.139959 0.474403] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [11.0787 4.4055 0.437007,11.0787 0.15748 0.437007,10.9212 0.15748 0.437007,10.9212 4.4055 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [11.1181 0.07874 0.397637,11.1181 0.07874 -1.09055,11.0787 0.11811 0.397637,11.0787 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [10.9212 0.11811 -1.09055,10.8819 0.07874 0.397637,10.9212 0.11811 0.397637,10.8819 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [10.9212 0.11811 -1.09055,11.0787 0.11811 -1.09055,11.0787 0.07874 -1.12992,10.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [11.1181 4.4055 0.476377,11.1181 0.15748 0.476377,11.0787 4.4055 0.437007,11.0787 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,0,2,-1,4,5,0,-1,4,0,3,-1,6,7,5,-1,6,5,4,-1,8,9,7,-1,8,7,6,-1,10,9,8,-1,11,10,12,-1,11,9,10,-1,13,12,14,-1,13,11,12,-1,15,13,14,-1,16,14,17,-1,16,15,14,-1,18,16,17,-1,19,16,18,-1] -coord Coordinate { point [11.1181 -0.07874 0.397637,11.1181 -0.07874 -1.09055,11.1181 0.07874 -1.09055,11.1181 0.07874 0.397637,11.1181 0.0807142 0.415158,11.1181 -0.0728175 0.450201,11.1181 0.0865377 0.431801,11.1181 -0.0553469 0.500129,11.1181 0.0959186 0.446731,11.1181 -0.0272042 0.544918,11.1181 0.108386 0.459198,11.1181 0.0101992 0.582321,11.1181 0.123316 0.468579,11.1181 0.054988 0.610464,11.1181 0.139959 0.474403,11.1181 0.104916 0.627934,11.1181 0.15748 0.633857,11.1181 0.15748 0.476377,11.1181 4.4055 0.476377,11.1181 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,4,5,0,-1,0,5,1,-1,6,7,4,-1,4,7,5,-1,8,9,6,-1,6,9,7,-1,8,10,9,-1,10,11,12,-1,8,11,10,-1,12,13,14,-1,11,13,12,-1,13,15,14,-1,14,16,17,-1,15,16,14,-1,16,18,17,-1,16,19,18,-1] -coord Coordinate { point [10.8819 -0.07874 0.397637,10.8819 0.07874 0.397637,10.8819 -0.07874 -1.09055,10.8819 0.07874 -1.09055,10.8819 -0.0728175 0.450201,10.8819 0.0807142 0.415158,10.8819 -0.0553469 0.500129,10.8819 0.0865377 0.431801,10.8819 -0.0272042 0.544918,10.8819 0.0959186 0.446731,10.8819 0.108386 0.459198,10.8819 0.0101992 0.582321,10.8819 0.123316 0.468579,10.8819 0.054988 0.610464,10.8819 0.139959 0.474403,10.8819 0.104916 0.627934,10.8819 0.15748 0.633857,10.8819 0.15748 0.476377,10.8819 4.4055 0.476377,10.8819 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [10.8819 0.15748 0.476377,10.9212 4.4055 0.437007,10.9212 0.15748 0.437007,10.8819 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [10.9212 4.4055 0.437007,11.0787 4.44487 0.476377,11.0787 4.4055 0.437007,10.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [11.0787 0.11811 -1.09055,11.1181 0.07874 -1.09055,11.0787 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [10.8819 0.07874 -1.09055,10.9212 0.11811 -1.09055,10.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [11.0787 0.07874 -1.12992,11.0787 -0.07874 -1.12992,10.9212 -0.07874 -1.12992,10.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [11.0787 4.4055 0.437007,11.0787 4.44487 0.476377,11.1181 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [11.0787 0.15748 0.673227,11.1181 4.4055 0.633857,11.0787 4.4055 0.673227,11.1181 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [11.1181 4.4055 0.633857,11.1181 4.4055 0.476377,11.0787 4.44487 0.476377,11.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [11.1181 0.104916 0.627934,11.1181 0.15748 0.633857,11.0787 0.15748 0.673227,11.0787 0.0961555 0.666317,11.1181 0.054988 0.610464,11.0787 0.037906 0.645935,11.1181 0.0101992 0.582321,11.0787 -0.0143476 0.613102,11.1181 -0.0272042 0.544918,11.0787 -0.0579849 0.569465,11.1181 -0.0553469 0.500129,11.0787 -0.090818 0.517211,11.1181 -0.0728175 0.450201,11.0787 -0.1112 0.458962,11.1181 -0.07874 0.397637,11.0787 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [11.0787 -0.11811 -1.09055,11.1181 -0.07874 0.397637,11.0787 -0.11811 0.397637,11.1181 -0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [11.0787 0.07874 -1.12992,11.1181 -0.07874 -1.09055,11.0787 -0.07874 -1.12992,11.1181 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [10.8819 4.4055 0.633857,10.9212 0.15748 0.673227,10.9212 4.4055 0.673227,10.8819 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [10.8819 4.4055 0.476377,10.8819 4.4055 0.633857,10.9212 4.44487 0.476377,10.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,10,12,11,-1,10,13,12,-1,12,14,15,-1,13,14,12,-1] -coord Coordinate { point [10.8819 0.15748 0.633857,10.8819 0.104916 0.627934,10.9212 0.15748 0.673227,10.9212 0.0961555 0.666317,10.8819 0.054988 0.610464,10.9212 0.037906 0.645935,10.8819 0.0101992 0.582321,10.9212 -0.0143476 0.613102,10.8819 -0.0272042 0.544918,10.9212 -0.0579849 0.569465,10.8819 -0.0553469 0.500129,10.9212 -0.090818 0.517211,10.9212 -0.1112 0.458962,10.8819 -0.0728175 0.450201,10.8819 -0.07874 0.397637,10.9212 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [10.8819 -0.07874 0.397637,10.8819 -0.07874 -1.09055,10.9212 -0.11811 0.397637,10.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [10.8819 -0.07874 -1.09055,10.9212 0.07874 -1.12992,10.9212 -0.07874 -1.12992,10.8819 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [10.9212 4.4055 0.437007,10.8819 4.4055 0.476377,10.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [11.0787 4.44487 0.633857,11.0787 4.44487 0.476377,10.9212 4.44487 0.476377,10.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [10.9212 -0.07874 -1.12992,11.0787 -0.07874 -1.12992,11.0787 -0.11811 -1.09055,10.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [11.0787 0.15748 0.673227,11.0787 4.4055 0.673227,10.9212 4.4055 0.673227,10.9212 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [11.0787 4.4055 0.673227,11.1181 4.4055 0.633857,11.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,12,13,14,-1,11,13,12,-1,10,13,11,-1,13,15,14,-1] -coord Coordinate { point [11.0787 -0.11811 0.397637,11.0787 -0.1112 0.458962,10.9212 -0.11811 0.397637,10.9212 -0.1112 0.458962,11.0787 -0.090818 0.517211,10.9212 -0.090818 0.517211,11.0787 -0.0579849 0.569465,10.9212 -0.0579849 0.569465,11.0787 -0.0143476 0.613102,10.9212 -0.0143476 0.613102,11.0787 0.037906 0.645935,10.9212 0.037906 0.645935,10.9212 0.0961555 0.666317,11.0787 0.0961555 0.666317,10.9212 0.15748 0.673227,11.0787 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [11.0787 -0.11811 -1.09055,11.0787 -0.11811 0.397637,10.9212 -0.11811 0.397637,10.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [11.1181 -0.07874 -1.09055,11.0787 -0.11811 -1.09055,11.0787 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [10.8819 4.4055 0.633857,10.9212 4.4055 0.673227,10.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [10.9212 -0.11811 -1.09055,10.8819 -0.07874 -1.09055,10.9212 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [10.9212 4.4055 0.673227,11.0787 4.4055 0.673227,11.0787 4.44487 0.633857,10.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [12.0787 0.119097 0.406398,12.0787 0.11811 0.397637,11.9212 0.11811 0.397637,11.9212 0.119097 0.406398,12.0787 0.122009 0.414719,11.9212 0.122009 0.414719,12.0787 0.126699 0.422184,11.9212 0.126699 0.422184,12.0787 0.132933 0.428418,11.9212 0.132933 0.428418,12.0787 0.140398 0.433108,11.9212 0.140398 0.433108,12.0787 0.148719 0.43602,11.9212 0.148719 0.43602,12.0787 0.15748 0.437007,11.9212 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [12.0787 0.11811 0.397637,12.0787 0.11811 -1.09055,11.9212 0.11811 0.397637,11.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [12.1181 0.15748 0.476377,12.0984 0.134881 0.452197,12.0787 0.15748 0.437007,12.0787 0.148719 0.43602,12.0787 0.140398 0.433108,12.0787 0.132933 0.428418,12.1181 0.139959 0.474403,12.1181 0.123316 0.468579,12.1181 0.108386 0.459198,12.0984 0.115722 0.439395,12.0787 0.126699 0.422184,12.1181 0.0959186 0.446731,12.0984 0.10292 0.420236,12.0787 0.122009 0.414719,12.0787 0.119097 0.406398,12.0787 0.11811 0.397637,12.1181 0.07874 0.397637,12.1181 0.0865377 0.431801,12.1181 0.0807142 0.415158] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [11.8819 0.07874 0.397637,11.9016 0.10292 0.420236,11.9212 0.11811 0.397637,11.9212 0.119097 0.406398,11.9212 0.122009 0.414719,11.9212 0.126699 0.422184,11.8819 0.0807142 0.415158,11.8819 0.0865377 0.431801,11.8819 0.0959186 0.446731,11.9016 0.115722 0.439395,11.9212 0.132933 0.428418,11.8819 0.108386 0.459198,11.9016 0.134881 0.452197,11.9212 0.140398 0.433108,11.9212 0.148719 0.43602,11.9212 0.15748 0.437007,11.8819 0.15748 0.476377,11.8819 0.123316 0.468579,11.8819 0.139959 0.474403] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [12.0787 4.4055 0.437007,12.0787 0.15748 0.437007,11.9212 0.15748 0.437007,11.9212 4.4055 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [12.1181 0.07874 0.397637,12.1181 0.07874 -1.09055,12.0787 0.11811 0.397637,12.0787 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [11.9212 0.11811 -1.09055,11.8819 0.07874 0.397637,11.9212 0.11811 0.397637,11.8819 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [11.9212 0.11811 -1.09055,12.0787 0.11811 -1.09055,12.0787 0.07874 -1.12992,11.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [12.1181 4.4055 0.476377,12.1181 0.15748 0.476377,12.0787 4.4055 0.437007,12.0787 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,0,2,-1,4,5,0,-1,4,0,3,-1,6,7,5,-1,6,5,4,-1,8,9,7,-1,8,7,6,-1,10,9,8,-1,11,10,12,-1,11,9,10,-1,13,12,14,-1,13,11,12,-1,15,13,14,-1,16,14,17,-1,16,15,14,-1,18,16,17,-1,19,16,18,-1] -coord Coordinate { point [12.1181 -0.07874 0.397637,12.1181 -0.07874 -1.09055,12.1181 0.07874 -1.09055,12.1181 0.07874 0.397637,12.1181 0.0807142 0.415158,12.1181 -0.0728175 0.450201,12.1181 0.0865377 0.431801,12.1181 -0.0553469 0.500129,12.1181 0.0959186 0.446731,12.1181 -0.0272042 0.544918,12.1181 0.108386 0.459198,12.1181 0.0101992 0.582321,12.1181 0.123316 0.468579,12.1181 0.054988 0.610464,12.1181 0.139959 0.474403,12.1181 0.104916 0.627934,12.1181 0.15748 0.633857,12.1181 0.15748 0.476377,12.1181 4.4055 0.476377,12.1181 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,4,5,0,-1,0,5,1,-1,6,7,4,-1,4,7,5,-1,8,9,6,-1,6,9,7,-1,8,10,9,-1,10,11,12,-1,8,11,10,-1,12,13,14,-1,11,13,12,-1,13,15,14,-1,14,16,17,-1,15,16,14,-1,16,18,17,-1,16,19,18,-1] -coord Coordinate { point [11.8819 -0.07874 0.397637,11.8819 0.07874 0.397637,11.8819 -0.07874 -1.09055,11.8819 0.07874 -1.09055,11.8819 -0.0728175 0.450201,11.8819 0.0807142 0.415158,11.8819 -0.0553469 0.500129,11.8819 0.0865377 0.431801,11.8819 -0.0272042 0.544918,11.8819 0.0959186 0.446731,11.8819 0.108386 0.459198,11.8819 0.0101992 0.582321,11.8819 0.123316 0.468579,11.8819 0.054988 0.610464,11.8819 0.139959 0.474403,11.8819 0.104916 0.627934,11.8819 0.15748 0.633857,11.8819 0.15748 0.476377,11.8819 4.4055 0.476377,11.8819 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [11.8819 0.15748 0.476377,11.9212 4.4055 0.437007,11.9212 0.15748 0.437007,11.8819 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [11.9212 4.4055 0.437007,12.0787 4.44487 0.476377,12.0787 4.4055 0.437007,11.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [12.0787 0.11811 -1.09055,12.1181 0.07874 -1.09055,12.0787 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [11.8819 0.07874 -1.09055,11.9212 0.11811 -1.09055,11.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [12.0787 0.07874 -1.12992,12.0787 -0.07874 -1.12992,11.9212 -0.07874 -1.12992,11.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [12.0787 4.4055 0.437007,12.0787 4.44487 0.476377,12.1181 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [12.0787 0.15748 0.673227,12.1181 4.4055 0.633857,12.0787 4.4055 0.673227,12.1181 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [12.1181 4.4055 0.633857,12.1181 4.4055 0.476377,12.0787 4.44487 0.476377,12.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [12.1181 0.104916 0.627934,12.1181 0.15748 0.633857,12.0787 0.15748 0.673227,12.0787 0.0961555 0.666317,12.1181 0.054988 0.610464,12.0787 0.037906 0.645935,12.1181 0.0101992 0.582321,12.0787 -0.0143476 0.613102,12.1181 -0.0272042 0.544918,12.0787 -0.0579849 0.569465,12.1181 -0.0553469 0.500129,12.0787 -0.090818 0.517211,12.1181 -0.0728175 0.450201,12.0787 -0.1112 0.458962,12.1181 -0.07874 0.397637,12.0787 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [12.0787 -0.11811 -1.09055,12.1181 -0.07874 0.397637,12.0787 -0.11811 0.397637,12.1181 -0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [12.0787 0.07874 -1.12992,12.1181 -0.07874 -1.09055,12.0787 -0.07874 -1.12992,12.1181 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [11.8819 4.4055 0.633857,11.9212 0.15748 0.673227,11.9212 4.4055 0.673227,11.8819 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [11.8819 4.4055 0.476377,11.8819 4.4055 0.633857,11.9212 4.44487 0.476377,11.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,10,12,11,-1,10,13,12,-1,12,14,15,-1,13,14,12,-1] -coord Coordinate { point [11.8819 0.15748 0.633857,11.8819 0.104916 0.627934,11.9212 0.15748 0.673227,11.9212 0.0961555 0.666317,11.8819 0.054988 0.610464,11.9212 0.037906 0.645935,11.8819 0.0101992 0.582321,11.9212 -0.0143476 0.613102,11.8819 -0.0272042 0.544918,11.9212 -0.0579849 0.569465,11.8819 -0.0553469 0.500129,11.9212 -0.090818 0.517211,11.9212 -0.1112 0.458962,11.8819 -0.0728175 0.450201,11.8819 -0.07874 0.397637,11.9212 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [11.8819 -0.07874 0.397637,11.8819 -0.07874 -1.09055,11.9212 -0.11811 0.397637,11.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [11.8819 -0.07874 -1.09055,11.9212 0.07874 -1.12992,11.9212 -0.07874 -1.12992,11.8819 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [11.9212 4.4055 0.437007,11.8819 4.4055 0.476377,11.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [12.0787 4.44487 0.633857,12.0787 4.44487 0.476377,11.9212 4.44487 0.476377,11.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [11.9212 -0.07874 -1.12992,12.0787 -0.07874 -1.12992,12.0787 -0.11811 -1.09055,11.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [12.0787 0.15748 0.673227,12.0787 4.4055 0.673227,11.9212 4.4055 0.673227,11.9212 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [12.0787 4.4055 0.673227,12.1181 4.4055 0.633857,12.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,12,13,14,-1,11,13,12,-1,10,13,11,-1,13,15,14,-1] -coord Coordinate { point [12.0787 -0.11811 0.397637,12.0787 -0.1112 0.458962,11.9212 -0.11811 0.397637,11.9212 -0.1112 0.458962,12.0787 -0.090818 0.517211,11.9212 -0.090818 0.517211,12.0787 -0.0579849 0.569465,11.9212 -0.0579849 0.569465,12.0787 -0.0143476 0.613102,11.9212 -0.0143476 0.613102,12.0787 0.037906 0.645935,11.9212 0.037906 0.645935,11.9212 0.0961555 0.666317,12.0787 0.0961555 0.666317,11.9212 0.15748 0.673227,12.0787 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [12.0787 -0.11811 -1.09055,12.0787 -0.11811 0.397637,11.9212 -0.11811 0.397637,11.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [12.1181 -0.07874 -1.09055,12.0787 -0.11811 -1.09055,12.0787 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [11.8819 4.4055 0.633857,11.9212 4.4055 0.673227,11.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [11.9212 -0.11811 -1.09055,11.8819 -0.07874 -1.09055,11.9212 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [11.9212 4.4055 0.673227,12.0787 4.4055 0.673227,12.0787 4.44487 0.633857,11.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [13.0787 0.119097 0.406398,13.0787 0.11811 0.397637,12.9212 0.11811 0.397637,12.9212 0.119097 0.406398,13.0787 0.122009 0.414719,12.9212 0.122009 0.414719,13.0787 0.126699 0.422184,12.9212 0.126699 0.422184,13.0787 0.132933 0.428418,12.9212 0.132933 0.428418,13.0787 0.140398 0.433108,12.9212 0.140398 0.433108,13.0787 0.148719 0.43602,12.9212 0.148719 0.43602,13.0787 0.15748 0.437007,12.9212 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [13.0787 0.11811 0.397637,13.0787 0.11811 -1.09055,12.9212 0.11811 0.397637,12.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [13.1181 0.15748 0.476377,13.0984 0.134881 0.452197,13.0787 0.15748 0.437007,13.0787 0.148719 0.43602,13.0787 0.140398 0.433108,13.0787 0.132933 0.428418,13.1181 0.139959 0.474403,13.1181 0.123316 0.468579,13.1181 0.108386 0.459198,13.0984 0.115722 0.439395,13.0787 0.126699 0.422184,13.1181 0.0959186 0.446731,13.0984 0.10292 0.420236,13.0787 0.122009 0.414719,13.0787 0.119097 0.406398,13.0787 0.11811 0.397637,13.1181 0.07874 0.397637,13.1181 0.0865377 0.431801,13.1181 0.0807142 0.415158] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [12.8819 0.07874 0.397637,12.9015 0.10292 0.420236,12.9212 0.11811 0.397637,12.9212 0.119097 0.406398,12.9212 0.122009 0.414719,12.9212 0.126699 0.422184,12.8819 0.0807142 0.415158,12.8819 0.0865377 0.431801,12.8819 0.0959186 0.446731,12.9015 0.115722 0.439395,12.9212 0.132933 0.428418,12.8819 0.108386 0.459198,12.9015 0.134881 0.452197,12.9212 0.140398 0.433108,12.9212 0.148719 0.43602,12.9212 0.15748 0.437007,12.8819 0.15748 0.476377,12.8819 0.123316 0.468579,12.8819 0.139959 0.474403] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [13.0787 4.4055 0.437007,13.0787 0.15748 0.437007,12.9212 0.15748 0.437007,12.9212 4.4055 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [13.1181 0.07874 0.397637,13.1181 0.07874 -1.09055,13.0787 0.11811 0.397637,13.0787 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [12.9212 0.11811 -1.09055,12.8819 0.07874 0.397637,12.9212 0.11811 0.397637,12.8819 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [12.9212 0.07874 -1.12992,13.0787 0.11811 -1.09055,13.0787 0.07874 -1.12992,12.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [13.1181 4.4055 0.476377,13.1181 0.15748 0.476377,13.0787 4.4055 0.437007,13.0787 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,0,2,-1,4,5,0,-1,4,0,3,-1,6,7,5,-1,6,5,4,-1,8,9,7,-1,8,7,6,-1,10,9,8,-1,11,10,12,-1,11,9,10,-1,13,12,14,-1,13,11,12,-1,15,13,14,-1,16,14,17,-1,16,15,14,-1,18,16,17,-1,19,16,18,-1] -coord Coordinate { point [13.1181 -0.07874 0.397637,13.1181 -0.07874 -1.09055,13.1181 0.07874 -1.09055,13.1181 0.07874 0.397637,13.1181 0.0807142 0.415158,13.1181 -0.0728175 0.450201,13.1181 0.0865377 0.431801,13.1181 -0.0553469 0.500129,13.1181 0.0959186 0.446731,13.1181 -0.0272042 0.544918,13.1181 0.108386 0.459198,13.1181 0.0101992 0.582321,13.1181 0.123316 0.468579,13.1181 0.054988 0.610464,13.1181 0.139959 0.474403,13.1181 0.104916 0.627934,13.1181 0.15748 0.633857,13.1181 0.15748 0.476377,13.1181 4.4055 0.476377,13.1181 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,4,5,0,-1,0,5,1,-1,6,7,4,-1,4,7,5,-1,8,9,6,-1,6,9,7,-1,8,10,9,-1,10,11,12,-1,8,11,10,-1,12,13,14,-1,11,13,12,-1,13,15,14,-1,14,16,17,-1,15,16,14,-1,16,18,17,-1,16,19,18,-1] -coord Coordinate { point [12.8819 -0.07874 0.397637,12.8819 0.07874 0.397637,12.8819 -0.07874 -1.09055,12.8819 0.07874 -1.09055,12.8819 -0.0728175 0.450201,12.8819 0.0807142 0.415158,12.8819 -0.0553469 0.500129,12.8819 0.0865377 0.431801,12.8819 -0.0272042 0.544918,12.8819 0.0959186 0.446731,12.8819 0.108386 0.459198,12.8819 0.0101992 0.582321,12.8819 0.123316 0.468579,12.8819 0.054988 0.610464,12.8819 0.139959 0.474403,12.8819 0.104916 0.627934,12.8819 0.15748 0.633857,12.8819 0.15748 0.476377,12.8819 4.4055 0.476377,12.8819 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [12.8819 0.15748 0.476377,12.9212 4.4055 0.437007,12.9212 0.15748 0.437007,12.8819 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [12.9212 4.4055 0.437007,13.0787 4.44487 0.476377,13.0787 4.4055 0.437007,12.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [13.0787 0.11811 -1.09055,13.1181 0.07874 -1.09055,13.0787 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [12.8819 0.07874 -1.09055,12.9212 0.11811 -1.09055,12.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [13.0787 0.07874 -1.12992,13.0787 -0.07874 -1.12992,12.9212 -0.07874 -1.12992,12.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [13.0787 4.4055 0.437007,13.0787 4.44487 0.476377,13.1181 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [13.0787 0.15748 0.673227,13.1181 4.4055 0.633857,13.0787 4.4055 0.673227,13.1181 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [13.1181 4.4055 0.633857,13.1181 4.4055 0.476377,13.0787 4.44487 0.476377,13.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [13.1181 0.104916 0.627934,13.1181 0.15748 0.633857,13.0787 0.15748 0.673227,13.0787 0.0961555 0.666317,13.1181 0.054988 0.610464,13.0787 0.037906 0.645935,13.1181 0.0101992 0.582321,13.0787 -0.0143476 0.613102,13.1181 -0.0272042 0.544918,13.0787 -0.0579849 0.569465,13.1181 -0.0553469 0.500129,13.0787 -0.090818 0.517211,13.1181 -0.0728175 0.450201,13.0787 -0.1112 0.458962,13.1181 -0.07874 0.397637,13.0787 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [13.0787 -0.11811 -1.09055,13.1181 -0.07874 0.397637,13.0787 -0.11811 0.397637,13.1181 -0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [13.0787 0.07874 -1.12992,13.1181 -0.07874 -1.09055,13.0787 -0.07874 -1.12992,13.1181 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [12.8819 4.4055 0.633857,12.9212 0.15748 0.673227,12.9212 4.4055 0.673227,12.8819 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [12.8819 4.4055 0.476377,12.8819 4.4055 0.633857,12.9212 4.44487 0.476377,12.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1] -coord Coordinate { point [12.8819 0.15748 0.633857,12.8819 0.104916 0.627934,12.9212 0.15748 0.673227,12.9212 0.0961555 0.666317,12.8819 0.054988 0.610464,12.9212 0.037906 0.645935,12.8819 0.0101992 0.582321,12.9212 -0.0143476 0.613102,12.8819 -0.0272042 0.544918,12.9212 -0.0579849 0.569465,12.8819 -0.0553469 0.500129,12.9212 -0.090818 0.517211,12.8819 -0.0728175 0.450201,12.9212 -0.1112 0.458962,12.8819 -0.07874 0.397637,12.9212 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [12.8819 -0.07874 0.397637,12.8819 -0.07874 -1.09055,12.9212 -0.11811 0.397637,12.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [12.8819 -0.07874 -1.09055,12.9212 0.07874 -1.12992,12.9212 -0.07874 -1.12992,12.8819 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [12.9212 4.4055 0.437007,12.8819 4.4055 0.476377,12.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [13.0787 4.44487 0.633857,13.0787 4.44487 0.476377,12.9212 4.44487 0.476377,12.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [12.9212 -0.07874 -1.12992,13.0787 -0.07874 -1.12992,13.0787 -0.11811 -1.09055,12.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [13.0787 0.15748 0.673227,13.0787 4.4055 0.673227,12.9212 4.4055 0.673227,12.9212 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [13.0787 4.4055 0.673227,13.1181 4.4055 0.633857,13.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,12,13,14,-1,11,13,12,-1,10,13,11,-1,13,15,14,-1] -coord Coordinate { point [13.0787 -0.11811 0.397637,13.0787 -0.1112 0.458962,12.9212 -0.11811 0.397637,12.9212 -0.1112 0.458962,13.0787 -0.090818 0.517211,12.9212 -0.090818 0.517211,13.0787 -0.0579849 0.569465,12.9212 -0.0579849 0.569465,13.0787 -0.0143476 0.613102,12.9212 -0.0143476 0.613102,13.0787 0.037906 0.645935,12.9212 0.037906 0.645935,12.9212 0.0961555 0.666317,13.0787 0.0961555 0.666317,12.9212 0.15748 0.673227,13.0787 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [13.0787 -0.11811 -1.09055,13.0787 -0.11811 0.397637,12.9212 -0.11811 0.397637,12.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [13.1181 -0.07874 -1.09055,13.0787 -0.11811 -1.09055,13.0787 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [12.8819 4.4055 0.633857,12.9212 4.4055 0.673227,12.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [12.9212 -0.11811 -1.09055,12.8819 -0.07874 -1.09055,12.9212 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [12.9212 4.4055 0.673227,13.0787 4.4055 0.673227,13.0787 4.44487 0.633857,12.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [14.0787 0.119097 0.406398,14.0787 0.11811 0.397637,13.9212 0.11811 0.397637,13.9212 0.119097 0.406398,14.0787 0.122009 0.414719,13.9212 0.122009 0.414719,14.0787 0.126699 0.422184,13.9212 0.126699 0.422184,14.0787 0.132933 0.428418,13.9212 0.132933 0.428418,14.0787 0.140398 0.433108,13.9212 0.140398 0.433108,14.0787 0.148719 0.43602,13.9212 0.148719 0.43602,14.0787 0.15748 0.437007,13.9212 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [14.0787 0.11811 0.397637,14.0787 0.11811 -1.09055,13.9212 0.11811 0.397637,13.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [14.1181 0.15748 0.476377,14.0984 0.134881 0.452197,14.0787 0.15748 0.437007,14.0787 0.148719 0.43602,14.0787 0.140398 0.433108,14.0787 0.132933 0.428418,14.1181 0.139959 0.474403,14.1181 0.123316 0.468579,14.1181 0.108386 0.459198,14.0984 0.115722 0.439395,14.0787 0.126699 0.422184,14.1181 0.0959186 0.446731,14.0984 0.10292 0.420236,14.0787 0.122009 0.414719,14.0787 0.119097 0.406398,14.0787 0.11811 0.397637,14.1181 0.07874 0.397637,14.1181 0.0865377 0.431801,14.1181 0.0807142 0.415158] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [13.8819 0.07874 0.397637,13.9015 0.10292 0.420236,13.9212 0.11811 0.397637,13.9212 0.119097 0.406398,13.9212 0.122009 0.414719,13.9212 0.126699 0.422184,13.8819 0.0807142 0.415158,13.8819 0.0865377 0.431801,13.8819 0.0959186 0.446731,13.9015 0.115722 0.439395,13.9212 0.132933 0.428418,13.8819 0.108386 0.459198,13.9015 0.134881 0.452197,13.9212 0.140398 0.433108,13.9212 0.148719 0.43602,13.9212 0.15748 0.437007,13.8819 0.15748 0.476377,13.8819 0.123316 0.468579,13.8819 0.139959 0.474403] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [14.0787 4.4055 0.437007,14.0787 0.15748 0.437007,13.9212 0.15748 0.437007,13.9212 4.4055 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [14.1181 0.07874 0.397637,14.1181 0.07874 -1.09055,14.0787 0.11811 0.397637,14.0787 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [13.9212 0.11811 -1.09055,13.8819 0.07874 0.397637,13.9212 0.11811 0.397637,13.8819 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [13.9212 0.07874 -1.12992,14.0787 0.11811 -1.09055,14.0787 0.07874 -1.12992,13.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [14.1181 4.4055 0.476377,14.1181 0.15748 0.476377,14.0787 4.4055 0.437007,14.0787 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,0,2,-1,4,5,0,-1,4,0,3,-1,6,7,5,-1,6,5,4,-1,8,9,7,-1,8,7,6,-1,10,9,8,-1,11,10,12,-1,11,9,10,-1,13,12,14,-1,13,11,12,-1,15,13,14,-1,16,14,17,-1,16,15,14,-1,18,16,17,-1,19,16,18,-1] -coord Coordinate { point [14.1181 -0.07874 0.397637,14.1181 -0.07874 -1.09055,14.1181 0.07874 -1.09055,14.1181 0.07874 0.397637,14.1181 0.0807142 0.415158,14.1181 -0.0728175 0.450201,14.1181 0.0865377 0.431801,14.1181 -0.0553469 0.500129,14.1181 0.0959186 0.446731,14.1181 -0.0272042 0.544918,14.1181 0.108386 0.459198,14.1181 0.0101992 0.582321,14.1181 0.123316 0.468579,14.1181 0.054988 0.610464,14.1181 0.139959 0.474403,14.1181 0.104916 0.627934,14.1181 0.15748 0.633857,14.1181 0.15748 0.476377,14.1181 4.4055 0.476377,14.1181 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,4,5,0,-1,0,5,1,-1,6,7,4,-1,4,7,5,-1,8,9,6,-1,6,9,7,-1,8,10,9,-1,10,11,12,-1,8,11,10,-1,12,13,14,-1,11,13,12,-1,13,15,14,-1,14,16,17,-1,15,16,14,-1,16,18,17,-1,16,19,18,-1] -coord Coordinate { point [13.8819 -0.07874 0.397637,13.8819 0.07874 0.397637,13.8819 -0.07874 -1.09055,13.8819 0.07874 -1.09055,13.8819 -0.0728175 0.450201,13.8819 0.0807142 0.415158,13.8819 -0.0553469 0.500129,13.8819 0.0865377 0.431801,13.8819 -0.0272042 0.544918,13.8819 0.0959186 0.446731,13.8819 0.108386 0.459198,13.8819 0.0101992 0.582321,13.8819 0.123316 0.468579,13.8819 0.054988 0.610464,13.8819 0.139959 0.474403,13.8819 0.104916 0.627934,13.8819 0.15748 0.633857,13.8819 0.15748 0.476377,13.8819 4.4055 0.476377,13.8819 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [13.8819 0.15748 0.476377,13.9212 4.4055 0.437007,13.9212 0.15748 0.437007,13.8819 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [13.9212 4.4055 0.437007,14.0787 4.44487 0.476377,14.0787 4.4055 0.437007,13.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [14.0787 0.11811 -1.09055,14.1181 0.07874 -1.09055,14.0787 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [13.8819 0.07874 -1.09055,13.9212 0.11811 -1.09055,13.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [14.0787 0.07874 -1.12992,14.0787 -0.07874 -1.12992,13.9212 -0.07874 -1.12992,13.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [14.0787 4.4055 0.437007,14.0787 4.44487 0.476377,14.1181 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [14.0787 0.15748 0.673227,14.1181 4.4055 0.633857,14.0787 4.4055 0.673227,14.1181 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [14.1181 4.4055 0.633857,14.1181 4.4055 0.476377,14.0787 4.44487 0.476377,14.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [14.1181 0.104916 0.627934,14.1181 0.15748 0.633857,14.0787 0.15748 0.673227,14.0787 0.0961555 0.666317,14.1181 0.054988 0.610464,14.0787 0.037906 0.645935,14.1181 0.0101992 0.582321,14.0787 -0.0143476 0.613102,14.1181 -0.0272042 0.544918,14.0787 -0.0579849 0.569465,14.1181 -0.0553469 0.500129,14.0787 -0.090818 0.517211,14.1181 -0.0728175 0.450201,14.0787 -0.1112 0.458962,14.1181 -0.07874 0.397637,14.0787 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [14.0787 -0.11811 -1.09055,14.1181 -0.07874 0.397637,14.0787 -0.11811 0.397637,14.1181 -0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [14.0787 0.07874 -1.12992,14.1181 -0.07874 -1.09055,14.0787 -0.07874 -1.12992,14.1181 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [13.8819 4.4055 0.633857,13.9212 0.15748 0.673227,13.9212 4.4055 0.673227,13.8819 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [13.8819 4.4055 0.476377,13.8819 4.4055 0.633857,13.9212 4.44487 0.476377,13.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1] -coord Coordinate { point [13.8819 0.15748 0.633857,13.8819 0.104916 0.627934,13.9212 0.15748 0.673227,13.9212 0.0961555 0.666317,13.8819 0.054988 0.610464,13.9212 0.037906 0.645935,13.8819 0.0101992 0.582321,13.9212 -0.0143476 0.613102,13.8819 -0.0272042 0.544918,13.9212 -0.0579849 0.569465,13.8819 -0.0553469 0.500129,13.9212 -0.090818 0.517211,13.8819 -0.0728175 0.450201,13.9212 -0.1112 0.458962,13.8819 -0.07874 0.397637,13.9212 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [13.8819 -0.07874 0.397637,13.8819 -0.07874 -1.09055,13.9212 -0.11811 0.397637,13.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [13.8819 -0.07874 -1.09055,13.9212 0.07874 -1.12992,13.9212 -0.07874 -1.12992,13.8819 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [13.9212 4.4055 0.437007,13.8819 4.4055 0.476377,13.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [14.0787 4.44487 0.633857,14.0787 4.44487 0.476377,13.9212 4.44487 0.476377,13.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [13.9212 -0.07874 -1.12992,14.0787 -0.07874 -1.12992,14.0787 -0.11811 -1.09055,13.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [14.0787 0.15748 0.673227,14.0787 4.4055 0.673227,13.9212 4.4055 0.673227,13.9212 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [14.0787 4.4055 0.673227,14.1181 4.4055 0.633857,14.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,12,13,14,-1,11,13,12,-1,10,13,11,-1,13,15,14,-1] -coord Coordinate { point [14.0787 -0.11811 0.397637,14.0787 -0.1112 0.458962,13.9212 -0.11811 0.397637,13.9212 -0.1112 0.458962,14.0787 -0.090818 0.517211,13.9212 -0.090818 0.517211,14.0787 -0.0579849 0.569465,13.9212 -0.0579849 0.569465,14.0787 -0.0143476 0.613102,13.9212 -0.0143476 0.613102,14.0787 0.037906 0.645935,13.9212 0.037906 0.645935,13.9212 0.0961555 0.666317,14.0787 0.0961555 0.666317,13.9212 0.15748 0.673227,14.0787 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [14.0787 -0.11811 -1.09055,14.0787 -0.11811 0.397637,13.9212 -0.11811 0.397637,13.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [14.1181 -0.07874 -1.09055,14.0787 -0.11811 -1.09055,14.0787 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [13.8819 4.4055 0.633857,13.9212 4.4055 0.673227,13.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [13.9212 -0.11811 -1.09055,13.8819 -0.07874 -1.09055,13.9212 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [13.9212 4.4055 0.673227,14.0787 4.4055 0.673227,14.0787 4.44487 0.633857,13.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [15.0787 0.119097 0.406398,15.0787 0.11811 0.397637,14.9212 0.11811 0.397637,14.9212 0.119097 0.406398,15.0787 0.122009 0.414719,14.9212 0.122009 0.414719,15.0787 0.126699 0.422184,14.9212 0.126699 0.422184,15.0787 0.132933 0.428418,14.9212 0.132933 0.428418,15.0787 0.140398 0.433108,14.9212 0.140398 0.433108,15.0787 0.148719 0.43602,14.9212 0.148719 0.43602,15.0787 0.15748 0.437007,14.9212 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [15.0787 0.11811 0.397637,15.0787 0.11811 -1.09055,14.9212 0.11811 0.397637,14.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [15.1181 0.15748 0.476377,15.0984 0.134881 0.452197,15.0787 0.15748 0.437007,15.0787 0.148719 0.43602,15.0787 0.140398 0.433108,15.0787 0.132933 0.428418,15.1181 0.139959 0.474403,15.1181 0.123316 0.468579,15.1181 0.108386 0.459198,15.0984 0.115722 0.439395,15.0787 0.126699 0.422184,15.1181 0.0959186 0.446731,15.0984 0.10292 0.420236,15.0787 0.122009 0.414719,15.0787 0.119097 0.406398,15.0787 0.11811 0.397637,15.1181 0.07874 0.397637,15.1181 0.0865377 0.431801,15.1181 0.0807142 0.415158] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [14.8819 0.07874 0.397637,14.9015 0.10292 0.420236,14.9212 0.11811 0.397637,14.9212 0.119097 0.406398,14.9212 0.122009 0.414719,14.9212 0.126699 0.422184,14.8819 0.0807142 0.415158,14.8819 0.0865377 0.431801,14.8819 0.0959186 0.446731,14.9015 0.115722 0.439395,14.9212 0.132933 0.428418,14.8819 0.108386 0.459198,14.9015 0.134881 0.452197,14.9212 0.140398 0.433108,14.9212 0.148719 0.43602,14.9212 0.15748 0.437007,14.8819 0.15748 0.476377,14.8819 0.123316 0.468579,14.8819 0.139959 0.474403] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [15.0787 4.4055 0.437007,15.0787 0.15748 0.437007,14.9212 0.15748 0.437007,14.9212 4.4055 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [15.1181 0.07874 0.397637,15.1181 0.07874 -1.09055,15.0787 0.11811 0.397637,15.0787 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [14.9212 0.11811 -1.09055,14.8819 0.07874 0.397637,14.9212 0.11811 0.397637,14.8819 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [14.9212 0.07874 -1.12992,15.0787 0.11811 -1.09055,15.0787 0.07874 -1.12992,14.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [15.1181 4.4055 0.476377,15.1181 0.15748 0.476377,15.0787 4.4055 0.437007,15.0787 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,0,2,-1,4,5,0,-1,4,0,3,-1,6,7,5,-1,6,5,4,-1,8,9,7,-1,8,7,6,-1,10,9,8,-1,11,10,12,-1,11,9,10,-1,13,12,14,-1,13,11,12,-1,15,13,14,-1,16,14,17,-1,16,15,14,-1,18,16,17,-1,19,16,18,-1] -coord Coordinate { point [15.1181 -0.07874 0.397637,15.1181 -0.07874 -1.09055,15.1181 0.07874 -1.09055,15.1181 0.07874 0.397637,15.1181 0.0807142 0.415158,15.1181 -0.0728175 0.450201,15.1181 0.0865377 0.431801,15.1181 -0.0553469 0.500129,15.1181 0.0959186 0.446731,15.1181 -0.0272042 0.544918,15.1181 0.108386 0.459198,15.1181 0.0101992 0.582321,15.1181 0.123316 0.468579,15.1181 0.054988 0.610464,15.1181 0.139959 0.474403,15.1181 0.104916 0.627934,15.1181 0.15748 0.633857,15.1181 0.15748 0.476377,15.1181 4.4055 0.476377,15.1181 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,4,5,0,-1,0,5,1,-1,6,7,4,-1,4,7,5,-1,8,9,6,-1,6,9,7,-1,8,10,9,-1,10,11,12,-1,8,11,10,-1,12,13,14,-1,11,13,12,-1,13,15,14,-1,14,16,17,-1,15,16,14,-1,16,18,17,-1,16,19,18,-1] -coord Coordinate { point [14.8819 -0.07874 0.397637,14.8819 0.07874 0.397637,14.8819 -0.07874 -1.09055,14.8819 0.07874 -1.09055,14.8819 -0.0728175 0.450201,14.8819 0.0807142 0.415158,14.8819 -0.0553469 0.500129,14.8819 0.0865377 0.431801,14.8819 -0.0272042 0.544918,14.8819 0.0959186 0.446731,14.8819 0.108386 0.459198,14.8819 0.0101992 0.582321,14.8819 0.123316 0.468579,14.8819 0.054988 0.610464,14.8819 0.139959 0.474403,14.8819 0.104916 0.627934,14.8819 0.15748 0.633857,14.8819 0.15748 0.476377,14.8819 4.4055 0.476377,14.8819 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [14.8819 0.15748 0.476377,14.9212 4.4055 0.437007,14.9212 0.15748 0.437007,14.8819 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [14.9212 4.4055 0.437007,15.0787 4.44487 0.476377,15.0787 4.4055 0.437007,14.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [15.0787 0.11811 -1.09055,15.1181 0.07874 -1.09055,15.0787 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [14.8819 0.07874 -1.09055,14.9212 0.11811 -1.09055,14.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [15.0787 0.07874 -1.12992,15.0787 -0.07874 -1.12992,14.9212 -0.07874 -1.12992,14.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [15.0787 4.4055 0.437007,15.0787 4.44487 0.476377,15.1181 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [15.0787 0.15748 0.673227,15.1181 4.4055 0.633857,15.0787 4.4055 0.673227,15.1181 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [15.1181 4.4055 0.633857,15.1181 4.4055 0.476377,15.0787 4.44487 0.476377,15.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [15.1181 0.104916 0.627934,15.1181 0.15748 0.633857,15.0787 0.15748 0.673227,15.0787 0.0961555 0.666317,15.1181 0.054988 0.610464,15.0787 0.037906 0.645935,15.1181 0.0101992 0.582321,15.0787 -0.0143476 0.613102,15.1181 -0.0272042 0.544918,15.0787 -0.0579849 0.569465,15.1181 -0.0553469 0.500129,15.0787 -0.090818 0.517211,15.1181 -0.0728175 0.450201,15.0787 -0.1112 0.458962,15.1181 -0.07874 0.397637,15.0787 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [15.0787 -0.11811 -1.09055,15.1181 -0.07874 0.397637,15.0787 -0.11811 0.397637,15.1181 -0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [15.0787 0.07874 -1.12992,15.1181 -0.07874 -1.09055,15.0787 -0.07874 -1.12992,15.1181 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [14.8819 4.4055 0.633857,14.9212 0.15748 0.673227,14.9212 4.4055 0.673227,14.8819 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [14.8819 4.4055 0.476377,14.8819 4.4055 0.633857,14.9212 4.44487 0.476377,14.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1] -coord Coordinate { point [14.8819 0.15748 0.633857,14.8819 0.104916 0.627934,14.9212 0.15748 0.673227,14.9212 0.0961555 0.666317,14.8819 0.054988 0.610464,14.9212 0.037906 0.645935,14.8819 0.0101992 0.582321,14.9212 -0.0143476 0.613102,14.8819 -0.0272042 0.544918,14.9212 -0.0579849 0.569465,14.8819 -0.0553469 0.500129,14.9212 -0.090818 0.517211,14.8819 -0.0728175 0.450201,14.9212 -0.1112 0.458962,14.8819 -0.07874 0.397637,14.9212 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [14.8819 -0.07874 0.397637,14.8819 -0.07874 -1.09055,14.9212 -0.11811 0.397637,14.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [14.8819 -0.07874 -1.09055,14.9212 0.07874 -1.12992,14.9212 -0.07874 -1.12992,14.8819 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [14.9212 4.4055 0.437007,14.8819 4.4055 0.476377,14.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [15.0787 4.44487 0.633857,15.0787 4.44487 0.476377,14.9212 4.44487 0.476377,14.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [14.9212 -0.07874 -1.12992,15.0787 -0.07874 -1.12992,15.0787 -0.11811 -1.09055,14.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [15.0787 0.15748 0.673227,15.0787 4.4055 0.673227,14.9212 4.4055 0.673227,14.9212 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [15.0787 4.4055 0.673227,15.1181 4.4055 0.633857,15.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,12,13,14,-1,11,13,12,-1,10,13,11,-1,13,15,14,-1] -coord Coordinate { point [15.0787 -0.11811 0.397637,15.0787 -0.1112 0.458962,14.9212 -0.11811 0.397637,14.9212 -0.1112 0.458962,15.0787 -0.090818 0.517211,14.9212 -0.090818 0.517211,15.0787 -0.0579849 0.569465,14.9212 -0.0579849 0.569465,15.0787 -0.0143476 0.613102,14.9212 -0.0143476 0.613102,15.0787 0.037906 0.645935,14.9212 0.037906 0.645935,14.9212 0.0961555 0.666317,15.0787 0.0961555 0.666317,14.9212 0.15748 0.673227,15.0787 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [15.0787 -0.11811 -1.09055,15.0787 -0.11811 0.397637,14.9212 -0.11811 0.397637,14.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [15.1181 -0.07874 -1.09055,15.0787 -0.11811 -1.09055,15.0787 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [14.8819 4.4055 0.633857,14.9212 4.4055 0.673227,14.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [14.9212 -0.11811 -1.09055,14.8819 -0.07874 -1.09055,14.9212 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [14.9212 4.4055 0.673227,15.0787 4.4055 0.673227,15.0787 4.44487 0.633857,14.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [16.0787 0.119097 0.406398,16.0787 0.11811 0.397637,15.9212 0.11811 0.397637,15.9212 0.119097 0.406398,16.0787 0.122009 0.414719,15.9212 0.122009 0.414719,16.0787 0.126699 0.422184,15.9212 0.126699 0.422184,16.0787 0.132933 0.428418,15.9212 0.132933 0.428418,16.0787 0.140398 0.433108,15.9212 0.140398 0.433108,16.0787 0.148719 0.43602,15.9212 0.148719 0.43602,16.0787 0.15748 0.437007,15.9212 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [16.0787 0.11811 0.397637,16.0787 0.11811 -1.09055,15.9212 0.11811 0.397637,15.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [16.1181 0.15748 0.476377,16.0984 0.134881 0.452197,16.0787 0.15748 0.437007,16.0787 0.148719 0.43602,16.0787 0.140398 0.433108,16.0787 0.132933 0.428418,16.1181 0.139959 0.474403,16.1181 0.123316 0.468579,16.1181 0.108386 0.459198,16.0984 0.115722 0.439395,16.0787 0.126699 0.422184,16.1181 0.0959186 0.446731,16.0984 0.10292 0.420236,16.0787 0.122009 0.414719,16.0787 0.119097 0.406398,16.0787 0.11811 0.397637,16.1181 0.07874 0.397637,16.1181 0.0865377 0.431801,16.1181 0.0807142 0.415158] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [15.8819 0.07874 0.397637,15.9015 0.10292 0.420236,15.9212 0.11811 0.397637,15.9212 0.119097 0.406398,15.9212 0.122009 0.414719,15.9212 0.126699 0.422184,15.8819 0.0807142 0.415158,15.8819 0.0865377 0.431801,15.8819 0.0959186 0.446731,15.9015 0.115722 0.439395,15.9212 0.132933 0.428418,15.8819 0.108386 0.459198,15.9015 0.134881 0.452197,15.9212 0.140398 0.433108,15.9212 0.148719 0.43602,15.9212 0.15748 0.437007,15.8819 0.15748 0.476377,15.8819 0.123316 0.468579,15.8819 0.139959 0.474403] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [16.0787 4.4055 0.437007,16.0787 0.15748 0.437007,15.9212 0.15748 0.437007,15.9212 4.4055 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [16.1181 0.07874 0.397637,16.1181 0.07874 -1.09055,16.0787 0.11811 0.397637,16.0787 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [15.9212 0.11811 -1.09055,15.8819 0.07874 0.397637,15.9212 0.11811 0.397637,15.8819 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [15.9212 0.07874 -1.12992,16.0787 0.11811 -1.09055,16.0787 0.07874 -1.12992,15.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [16.1181 4.4055 0.476377,16.1181 0.15748 0.476377,16.0787 4.4055 0.437007,16.0787 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,0,2,-1,4,5,0,-1,4,0,3,-1,6,7,5,-1,6,5,4,-1,8,9,7,-1,8,7,6,-1,10,9,8,-1,11,10,12,-1,11,9,10,-1,13,12,14,-1,13,11,12,-1,15,13,14,-1,16,14,17,-1,16,15,14,-1,18,16,17,-1,19,16,18,-1] -coord Coordinate { point [16.1181 -0.07874 0.397637,16.1181 -0.07874 -1.09055,16.1181 0.07874 -1.09055,16.1181 0.07874 0.397637,16.1181 0.0807142 0.415158,16.1181 -0.0728175 0.450201,16.1181 0.0865377 0.431801,16.1181 -0.0553469 0.500129,16.1181 0.0959186 0.446731,16.1181 -0.0272042 0.544918,16.1181 0.108386 0.459198,16.1181 0.0101992 0.582321,16.1181 0.123316 0.468579,16.1181 0.054988 0.610464,16.1181 0.139959 0.474403,16.1181 0.104916 0.627934,16.1181 0.15748 0.633857,16.1181 0.15748 0.476377,16.1181 4.4055 0.476377,16.1181 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,4,5,0,-1,0,5,1,-1,6,7,4,-1,4,7,5,-1,8,9,6,-1,6,9,7,-1,8,10,9,-1,10,11,12,-1,8,11,10,-1,12,13,14,-1,11,13,12,-1,13,15,14,-1,14,16,17,-1,15,16,14,-1,16,18,17,-1,16,19,18,-1] -coord Coordinate { point [15.8819 -0.07874 0.397637,15.8819 0.07874 0.397637,15.8819 -0.07874 -1.09055,15.8819 0.07874 -1.09055,15.8819 -0.0728175 0.450201,15.8819 0.0807142 0.415158,15.8819 -0.0553469 0.500129,15.8819 0.0865377 0.431801,15.8819 -0.0272042 0.544918,15.8819 0.0959186 0.446731,15.8819 0.108386 0.459198,15.8819 0.0101992 0.582321,15.8819 0.123316 0.468579,15.8819 0.054988 0.610464,15.8819 0.139959 0.474403,15.8819 0.104916 0.627934,15.8819 0.15748 0.633857,15.8819 0.15748 0.476377,15.8819 4.4055 0.476377,15.8819 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [15.8819 0.15748 0.476377,15.9212 4.4055 0.437007,15.9212 0.15748 0.437007,15.8819 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [15.9212 4.4055 0.437007,16.0787 4.44487 0.476377,16.0787 4.4055 0.437007,15.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [16.0787 0.11811 -1.09055,16.1181 0.07874 -1.09055,16.0787 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [15.8819 0.07874 -1.09055,15.9212 0.11811 -1.09055,15.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [16.0787 0.07874 -1.12992,16.0787 -0.07874 -1.12992,15.9212 -0.07874 -1.12992,15.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [16.0787 4.4055 0.437007,16.0787 4.44487 0.476377,16.1181 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [16.0787 0.15748 0.673227,16.1181 4.4055 0.633857,16.0787 4.4055 0.673227,16.1181 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [16.1181 4.4055 0.633857,16.1181 4.4055 0.476377,16.0787 4.44487 0.476377,16.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [16.1181 0.104916 0.627934,16.1181 0.15748 0.633857,16.0787 0.15748 0.673227,16.0787 0.0961555 0.666317,16.1181 0.054988 0.610464,16.0787 0.037906 0.645935,16.1181 0.0101992 0.582321,16.0787 -0.0143476 0.613102,16.1181 -0.0272042 0.544918,16.0787 -0.0579849 0.569465,16.1181 -0.0553469 0.500129,16.0787 -0.090818 0.517211,16.1181 -0.0728175 0.450201,16.0787 -0.1112 0.458962,16.1181 -0.07874 0.397637,16.0787 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [16.0787 -0.11811 -1.09055,16.1181 -0.07874 0.397637,16.0787 -0.11811 0.397637,16.1181 -0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [16.0787 0.07874 -1.12992,16.1181 -0.07874 -1.09055,16.0787 -0.07874 -1.12992,16.1181 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [15.8819 4.4055 0.633857,15.9212 0.15748 0.673227,15.9212 4.4055 0.673227,15.8819 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [15.8819 4.4055 0.476377,15.8819 4.4055 0.633857,15.9212 4.44487 0.476377,15.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1] -coord Coordinate { point [15.8819 0.15748 0.633857,15.8819 0.104916 0.627934,15.9212 0.15748 0.673227,15.9212 0.0961555 0.666317,15.8819 0.054988 0.610464,15.9212 0.037906 0.645935,15.8819 0.0101992 0.582321,15.9212 -0.0143476 0.613102,15.8819 -0.0272042 0.544918,15.9212 -0.0579849 0.569465,15.8819 -0.0553469 0.500129,15.9212 -0.090818 0.517211,15.8819 -0.0728175 0.450201,15.9212 -0.1112 0.458962,15.8819 -0.07874 0.397637,15.9212 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [15.8819 -0.07874 0.397637,15.8819 -0.07874 -1.09055,15.9212 -0.11811 0.397637,15.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [15.8819 -0.07874 -1.09055,15.9212 0.07874 -1.12992,15.9212 -0.07874 -1.12992,15.8819 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [15.9212 4.4055 0.437007,15.8819 4.4055 0.476377,15.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [16.0787 4.44487 0.633857,16.0787 4.44487 0.476377,15.9212 4.44487 0.476377,15.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [15.9212 -0.07874 -1.12992,16.0787 -0.07874 -1.12992,16.0787 -0.11811 -1.09055,15.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [16.0787 0.15748 0.673227,16.0787 4.4055 0.673227,15.9212 4.4055 0.673227,15.9212 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [16.0787 4.4055 0.673227,16.1181 4.4055 0.633857,16.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,12,13,14,-1,11,13,12,-1,10,13,11,-1,13,15,14,-1] -coord Coordinate { point [16.0787 -0.11811 0.397637,16.0787 -0.1112 0.458962,15.9212 -0.11811 0.397637,15.9212 -0.1112 0.458962,16.0787 -0.090818 0.517211,15.9212 -0.090818 0.517211,16.0787 -0.0579849 0.569465,15.9212 -0.0579849 0.569465,16.0787 -0.0143476 0.613102,15.9212 -0.0143476 0.613102,16.0787 0.037906 0.645935,15.9212 0.037906 0.645935,15.9212 0.0961555 0.666317,16.0787 0.0961555 0.666317,15.9212 0.15748 0.673227,16.0787 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [16.0787 -0.11811 -1.09055,16.0787 -0.11811 0.397637,15.9212 -0.11811 0.397637,15.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [16.1181 -0.07874 -1.09055,16.0787 -0.11811 -1.09055,16.0787 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [15.8819 4.4055 0.633857,15.9212 4.4055 0.673227,15.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [15.9212 -0.11811 -1.09055,15.8819 -0.07874 -1.09055,15.9212 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [15.9212 4.4055 0.673227,16.0787 4.4055 0.673227,16.0787 4.44487 0.633857,15.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [17.0787 0.119097 0.406398,17.0787 0.11811 0.397637,16.9212 0.11811 0.397637,16.9212 0.119097 0.406398,17.0787 0.122009 0.414719,16.9212 0.122009 0.414719,17.0787 0.126699 0.422184,16.9212 0.126699 0.422184,17.0787 0.132933 0.428418,16.9212 0.132933 0.428418,17.0787 0.140398 0.433108,16.9212 0.140398 0.433108,17.0787 0.148719 0.43602,16.9212 0.148719 0.43602,17.0787 0.15748 0.437007,16.9212 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [17.0787 0.11811 0.397637,17.0787 0.11811 -1.09055,16.9212 0.11811 0.397637,16.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [17.1181 0.15748 0.476377,17.0984 0.134881 0.452197,17.0787 0.15748 0.437007,17.0787 0.148719 0.43602,17.0787 0.140398 0.433108,17.0787 0.132933 0.428418,17.1181 0.139959 0.474403,17.1181 0.123316 0.468579,17.1181 0.108386 0.459198,17.0984 0.115722 0.439395,17.0787 0.126699 0.422184,17.1181 0.0959186 0.446731,17.0984 0.10292 0.420236,17.0787 0.122009 0.414719,17.0787 0.119097 0.406398,17.0787 0.11811 0.397637,17.1181 0.07874 0.397637,17.1181 0.0865377 0.431801,17.1181 0.0807142 0.415158] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [16.8819 0.07874 0.397637,16.9015 0.10292 0.420236,16.9212 0.11811 0.397637,16.9212 0.119097 0.406398,16.9212 0.122009 0.414719,16.9212 0.126699 0.422184,16.8819 0.0807142 0.415158,16.8819 0.0865377 0.431801,16.8819 0.0959186 0.446731,16.9015 0.115722 0.439395,16.9212 0.132933 0.428418,16.8819 0.108386 0.459198,16.9015 0.134881 0.452197,16.9212 0.140398 0.433108,16.9212 0.148719 0.43602,16.9212 0.15748 0.437007,16.8819 0.15748 0.476377,16.8819 0.123316 0.468579,16.8819 0.139959 0.474403] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [17.0787 4.4055 0.437007,17.0787 0.15748 0.437007,16.9212 0.15748 0.437007,16.9212 4.4055 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [17.1181 0.07874 0.397637,17.1181 0.07874 -1.09055,17.0787 0.11811 0.397637,17.0787 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [16.9212 0.11811 -1.09055,16.8819 0.07874 0.397637,16.9212 0.11811 0.397637,16.8819 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [16.9212 0.07874 -1.12992,17.0787 0.11811 -1.09055,17.0787 0.07874 -1.12992,16.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [17.1181 4.4055 0.476377,17.1181 0.15748 0.476377,17.0787 4.4055 0.437007,17.0787 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,0,2,-1,4,5,0,-1,4,0,3,-1,6,7,5,-1,6,5,4,-1,8,9,7,-1,8,7,6,-1,10,9,8,-1,11,10,12,-1,11,9,10,-1,13,12,14,-1,13,11,12,-1,15,13,14,-1,16,14,17,-1,16,15,14,-1,18,16,17,-1,19,16,18,-1] -coord Coordinate { point [17.1181 -0.07874 0.397637,17.1181 -0.07874 -1.09055,17.1181 0.07874 -1.09055,17.1181 0.07874 0.397637,17.1181 0.0807142 0.415158,17.1181 -0.0728175 0.450201,17.1181 0.0865377 0.431801,17.1181 -0.0553469 0.500129,17.1181 0.0959186 0.446731,17.1181 -0.0272042 0.544918,17.1181 0.108386 0.459198,17.1181 0.0101992 0.582321,17.1181 0.123316 0.468579,17.1181 0.054988 0.610464,17.1181 0.139959 0.474403,17.1181 0.104916 0.627934,17.1181 0.15748 0.633857,17.1181 0.15748 0.476377,17.1181 4.4055 0.476377,17.1181 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,4,5,0,-1,0,5,1,-1,6,7,4,-1,4,7,5,-1,8,9,6,-1,6,9,7,-1,8,10,9,-1,10,11,12,-1,8,11,10,-1,12,13,14,-1,11,13,12,-1,13,15,14,-1,14,16,17,-1,15,16,14,-1,16,18,17,-1,16,19,18,-1] -coord Coordinate { point [16.8819 -0.07874 0.397637,16.8819 0.07874 0.397637,16.8819 -0.07874 -1.09055,16.8819 0.07874 -1.09055,16.8819 -0.0728175 0.450201,16.8819 0.0807142 0.415158,16.8819 -0.0553469 0.500129,16.8819 0.0865377 0.431801,16.8819 -0.0272042 0.544918,16.8819 0.0959186 0.446731,16.8819 0.108386 0.459198,16.8819 0.0101992 0.582321,16.8819 0.123316 0.468579,16.8819 0.054988 0.610464,16.8819 0.139959 0.474403,16.8819 0.104916 0.627934,16.8819 0.15748 0.633857,16.8819 0.15748 0.476377,16.8819 4.4055 0.476377,16.8819 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [16.8819 0.15748 0.476377,16.9212 4.4055 0.437007,16.9212 0.15748 0.437007,16.8819 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [16.9212 4.4055 0.437007,17.0787 4.44487 0.476377,17.0787 4.4055 0.437007,16.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [17.0787 0.11811 -1.09055,17.1181 0.07874 -1.09055,17.0787 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [16.8819 0.07874 -1.09055,16.9212 0.11811 -1.09055,16.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [17.0787 0.07874 -1.12992,17.0787 -0.07874 -1.12992,16.9212 -0.07874 -1.12992,16.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [17.0787 4.4055 0.437007,17.0787 4.44487 0.476377,17.1181 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [17.0787 0.15748 0.673227,17.1181 4.4055 0.633857,17.0787 4.4055 0.673227,17.1181 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [17.1181 4.4055 0.633857,17.1181 4.4055 0.476377,17.0787 4.44487 0.476377,17.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [17.1181 0.104916 0.627934,17.1181 0.15748 0.633857,17.0787 0.15748 0.673227,17.0787 0.0961555 0.666317,17.1181 0.054988 0.610464,17.0787 0.037906 0.645935,17.1181 0.0101992 0.582321,17.0787 -0.0143476 0.613102,17.1181 -0.0272042 0.544918,17.0787 -0.0579849 0.569465,17.1181 -0.0553469 0.500129,17.0787 -0.090818 0.517211,17.1181 -0.0728175 0.450201,17.0787 -0.1112 0.458962,17.1181 -0.07874 0.397637,17.0787 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [17.0787 -0.11811 -1.09055,17.1181 -0.07874 0.397637,17.0787 -0.11811 0.397637,17.1181 -0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [17.0787 0.07874 -1.12992,17.1181 -0.07874 -1.09055,17.0787 -0.07874 -1.12992,17.1181 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [16.8819 4.4055 0.633857,16.9212 0.15748 0.673227,16.9212 4.4055 0.673227,16.8819 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [16.8819 4.4055 0.476377,16.8819 4.4055 0.633857,16.9212 4.44487 0.476377,16.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1] -coord Coordinate { point [16.8819 0.15748 0.633857,16.8819 0.104916 0.627934,16.9212 0.15748 0.673227,16.9212 0.0961555 0.666317,16.8819 0.054988 0.610464,16.9212 0.037906 0.645935,16.8819 0.0101992 0.582321,16.9212 -0.0143476 0.613102,16.8819 -0.0272042 0.544918,16.9212 -0.0579849 0.569465,16.8819 -0.0553469 0.500129,16.9212 -0.090818 0.517211,16.8819 -0.0728175 0.450201,16.9212 -0.1112 0.458962,16.8819 -0.07874 0.397637,16.9212 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [16.8819 -0.07874 0.397637,16.8819 -0.07874 -1.09055,16.9212 -0.11811 0.397637,16.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [16.8819 -0.07874 -1.09055,16.9212 0.07874 -1.12992,16.9212 -0.07874 -1.12992,16.8819 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [16.9212 4.4055 0.437007,16.8819 4.4055 0.476377,16.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [17.0787 4.44487 0.633857,17.0787 4.44487 0.476377,16.9212 4.44487 0.476377,16.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [16.9212 -0.07874 -1.12992,17.0787 -0.07874 -1.12992,17.0787 -0.11811 -1.09055,16.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [17.0787 0.15748 0.673227,17.0787 4.4055 0.673227,16.9212 4.4055 0.673227,16.9212 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [17.0787 4.4055 0.673227,17.1181 4.4055 0.633857,17.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,12,13,14,-1,11,13,12,-1,10,13,11,-1,13,15,14,-1] -coord Coordinate { point [17.0787 -0.11811 0.397637,17.0787 -0.1112 0.458962,16.9212 -0.11811 0.397637,16.9212 -0.1112 0.458962,17.0787 -0.090818 0.517211,16.9212 -0.090818 0.517211,17.0787 -0.0579849 0.569465,16.9212 -0.0579849 0.569465,17.0787 -0.0143476 0.613102,16.9212 -0.0143476 0.613102,17.0787 0.037906 0.645935,16.9212 0.037906 0.645935,16.9212 0.0961555 0.666317,17.0787 0.0961555 0.666317,16.9212 0.15748 0.673227,17.0787 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [17.0787 -0.11811 -1.09055,17.0787 -0.11811 0.397637,16.9212 -0.11811 0.397637,16.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [17.1181 -0.07874 -1.09055,17.0787 -0.11811 -1.09055,17.0787 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [16.8819 4.4055 0.633857,16.9212 4.4055 0.673227,16.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [16.9212 -0.11811 -1.09055,16.8819 -0.07874 -1.09055,16.9212 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [16.9212 4.4055 0.673227,17.0787 4.4055 0.673227,17.0787 4.44487 0.633857,16.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [18.0787 0.119097 0.406398,18.0787 0.11811 0.397637,17.9212 0.11811 0.397637,17.9212 0.119097 0.406398,18.0787 0.122009 0.414719,17.9212 0.122009 0.414719,18.0787 0.126699 0.422184,17.9212 0.126699 0.422184,18.0787 0.132933 0.428418,17.9212 0.132933 0.428418,18.0787 0.140398 0.433108,17.9212 0.140398 0.433108,18.0787 0.148719 0.43602,17.9212 0.148719 0.43602,18.0787 0.15748 0.437007,17.9212 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [18.0787 0.11811 0.397637,18.0787 0.11811 -1.09055,17.9212 0.11811 0.397637,17.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [18.1181 0.15748 0.476377,18.0984 0.134881 0.452197,18.0787 0.15748 0.437007,18.0787 0.148719 0.43602,18.0787 0.140398 0.433108,18.0787 0.132933 0.428418,18.1181 0.139959 0.474403,18.1181 0.123316 0.468579,18.1181 0.108386 0.459198,18.0984 0.115722 0.439395,18.0787 0.126699 0.422184,18.1181 0.0959186 0.446731,18.0984 0.10292 0.420236,18.0787 0.122009 0.414719,18.0787 0.119097 0.406398,18.0787 0.11811 0.397637,18.1181 0.07874 0.397637,18.1181 0.0865377 0.431801,18.1181 0.0807142 0.415158] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [17.8819 0.07874 0.397637,17.9015 0.10292 0.420236,17.9212 0.11811 0.397637,17.9212 0.119097 0.406398,17.9212 0.122009 0.414719,17.9212 0.126699 0.422184,17.8819 0.0807142 0.415158,17.8819 0.0865377 0.431801,17.8819 0.0959186 0.446731,17.9015 0.115722 0.439395,17.9212 0.132933 0.428418,17.8819 0.108386 0.459198,17.9015 0.134881 0.452197,17.9212 0.140398 0.433108,17.9212 0.148719 0.43602,17.9212 0.15748 0.437007,17.8819 0.15748 0.476377,17.8819 0.123316 0.468579,17.8819 0.139959 0.474403] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [18.0787 4.4055 0.437007,18.0787 0.15748 0.437007,17.9212 0.15748 0.437007,17.9212 4.4055 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [18.1181 0.07874 0.397637,18.1181 0.07874 -1.09055,18.0787 0.11811 0.397637,18.0787 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [17.9212 0.11811 -1.09055,17.8819 0.07874 0.397637,17.9212 0.11811 0.397637,17.8819 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [17.9212 0.07874 -1.12992,18.0787 0.11811 -1.09055,18.0787 0.07874 -1.12992,17.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [18.1181 4.4055 0.476377,18.1181 0.15748 0.476377,18.0787 4.4055 0.437007,18.0787 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,0,2,-1,4,5,0,-1,4,0,3,-1,6,7,5,-1,6,5,4,-1,8,9,7,-1,8,7,6,-1,10,9,8,-1,11,10,12,-1,11,9,10,-1,13,12,14,-1,13,11,12,-1,15,13,14,-1,16,14,17,-1,16,15,14,-1,18,16,17,-1,19,16,18,-1] -coord Coordinate { point [18.1181 -0.07874 0.397637,18.1181 -0.07874 -1.09055,18.1181 0.07874 -1.09055,18.1181 0.07874 0.397637,18.1181 0.0807142 0.415158,18.1181 -0.0728175 0.450201,18.1181 0.0865377 0.431801,18.1181 -0.0553469 0.500129,18.1181 0.0959186 0.446731,18.1181 -0.0272042 0.544918,18.1181 0.108386 0.459198,18.1181 0.0101992 0.582321,18.1181 0.123316 0.468579,18.1181 0.054988 0.610464,18.1181 0.139959 0.474403,18.1181 0.104916 0.627934,18.1181 0.15748 0.633857,18.1181 0.15748 0.476377,18.1181 4.4055 0.476377,18.1181 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,4,5,0,-1,0,5,1,-1,6,7,4,-1,4,7,5,-1,8,9,6,-1,6,9,7,-1,8,10,9,-1,10,11,12,-1,8,11,10,-1,12,13,14,-1,11,13,12,-1,13,15,14,-1,14,16,17,-1,15,16,14,-1,16,18,17,-1,16,19,18,-1] -coord Coordinate { point [17.8819 -0.07874 0.397637,17.8819 0.07874 0.397637,17.8819 -0.07874 -1.09055,17.8819 0.07874 -1.09055,17.8819 -0.0728175 0.450201,17.8819 0.0807142 0.415158,17.8819 -0.0553469 0.500129,17.8819 0.0865377 0.431801,17.8819 -0.0272042 0.544918,17.8819 0.0959186 0.446731,17.8819 0.108386 0.459198,17.8819 0.0101992 0.582321,17.8819 0.123316 0.468579,17.8819 0.054988 0.610464,17.8819 0.139959 0.474403,17.8819 0.104916 0.627934,17.8819 0.15748 0.633857,17.8819 0.15748 0.476377,17.8819 4.4055 0.476377,17.8819 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [17.8819 0.15748 0.476377,17.9212 4.4055 0.437007,17.9212 0.15748 0.437007,17.8819 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [17.9212 4.4055 0.437007,18.0787 4.44487 0.476377,18.0787 4.4055 0.437007,17.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [18.0787 0.11811 -1.09055,18.1181 0.07874 -1.09055,18.0787 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [17.8819 0.07874 -1.09055,17.9212 0.11811 -1.09055,17.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [18.0787 0.07874 -1.12992,18.0787 -0.07874 -1.12992,17.9212 -0.07874 -1.12992,17.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [18.0787 4.4055 0.437007,18.0787 4.44487 0.476377,18.1181 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [18.0787 0.15748 0.673227,18.1181 4.4055 0.633857,18.0787 4.4055 0.673227,18.1181 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [18.1181 4.4055 0.633857,18.1181 4.4055 0.476377,18.0787 4.44487 0.476377,18.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [18.1181 0.104916 0.627934,18.1181 0.15748 0.633857,18.0787 0.15748 0.673227,18.0787 0.0961555 0.666317,18.1181 0.054988 0.610464,18.0787 0.037906 0.645935,18.1181 0.0101992 0.582321,18.0787 -0.0143476 0.613102,18.1181 -0.0272042 0.544918,18.0787 -0.0579849 0.569465,18.1181 -0.0553469 0.500129,18.0787 -0.090818 0.517211,18.1181 -0.0728175 0.450201,18.0787 -0.1112 0.458962,18.1181 -0.07874 0.397637,18.0787 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [18.0787 -0.11811 -1.09055,18.1181 -0.07874 0.397637,18.0787 -0.11811 0.397637,18.1181 -0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [18.0787 0.07874 -1.12992,18.1181 -0.07874 -1.09055,18.0787 -0.07874 -1.12992,18.1181 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [17.8819 4.4055 0.633857,17.9212 0.15748 0.673227,17.9212 4.4055 0.673227,17.8819 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [17.8819 4.4055 0.476377,17.8819 4.4055 0.633857,17.9212 4.44487 0.476377,17.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1] -coord Coordinate { point [17.8819 0.15748 0.633857,17.8819 0.104916 0.627934,17.9212 0.15748 0.673227,17.9212 0.0961555 0.666317,17.8819 0.054988 0.610464,17.9212 0.037906 0.645935,17.8819 0.0101992 0.582321,17.9212 -0.0143476 0.613102,17.8819 -0.0272042 0.544918,17.9212 -0.0579849 0.569465,17.8819 -0.0553469 0.500129,17.9212 -0.090818 0.517211,17.8819 -0.0728175 0.450201,17.9212 -0.1112 0.458962,17.8819 -0.07874 0.397637,17.9212 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [17.8819 -0.07874 0.397637,17.8819 -0.07874 -1.09055,17.9212 -0.11811 0.397637,17.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [17.8819 -0.07874 -1.09055,17.9212 0.07874 -1.12992,17.9212 -0.07874 -1.12992,17.8819 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [17.9212 4.4055 0.437007,17.8819 4.4055 0.476377,17.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [18.0787 4.44487 0.633857,18.0787 4.44487 0.476377,17.9212 4.44487 0.476377,17.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [17.9212 -0.07874 -1.12992,18.0787 -0.07874 -1.12992,18.0787 -0.11811 -1.09055,17.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [18.0787 0.15748 0.673227,18.0787 4.4055 0.673227,17.9212 4.4055 0.673227,17.9212 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [18.0787 4.4055 0.673227,18.1181 4.4055 0.633857,18.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,12,13,14,-1,11,13,12,-1,10,13,11,-1,13,15,14,-1] -coord Coordinate { point [18.0787 -0.11811 0.397637,18.0787 -0.1112 0.458962,17.9212 -0.11811 0.397637,17.9212 -0.1112 0.458962,18.0787 -0.090818 0.517211,17.9212 -0.090818 0.517211,18.0787 -0.0579849 0.569465,17.9212 -0.0579849 0.569465,18.0787 -0.0143476 0.613102,17.9212 -0.0143476 0.613102,18.0787 0.037906 0.645935,17.9212 0.037906 0.645935,17.9212 0.0961555 0.666317,18.0787 0.0961555 0.666317,17.9212 0.15748 0.673227,18.0787 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [18.0787 -0.11811 -1.09055,18.0787 -0.11811 0.397637,17.9212 -0.11811 0.397637,17.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [18.1181 -0.07874 -1.09055,18.0787 -0.11811 -1.09055,18.0787 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [17.8819 4.4055 0.633857,17.9212 4.4055 0.673227,17.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [17.9212 -0.11811 -1.09055,17.8819 -0.07874 -1.09055,17.9212 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [17.9212 4.4055 0.673227,18.0787 4.4055 0.673227,18.0787 4.44487 0.633857,17.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [19.0787 0.119097 0.406398,19.0787 0.11811 0.397637,18.9212 0.11811 0.397637,18.9212 0.119097 0.406398,19.0787 0.122009 0.414719,18.9212 0.122009 0.414719,19.0787 0.126699 0.422184,18.9212 0.126699 0.422184,19.0787 0.132933 0.428418,18.9212 0.132933 0.428418,19.0787 0.140398 0.433108,18.9212 0.140398 0.433108,19.0787 0.148719 0.43602,18.9212 0.148719 0.43602,19.0787 0.15748 0.437007,18.9212 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [19.0787 0.11811 0.397637,19.0787 0.11811 -1.09055,18.9212 0.11811 0.397637,18.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [19.1181 0.15748 0.476377,19.0984 0.134881 0.452197,19.0787 0.15748 0.437007,19.0787 0.148719 0.43602,19.0787 0.140398 0.433108,19.0787 0.132933 0.428418,19.1181 0.139959 0.474403,19.1181 0.123316 0.468579,19.1181 0.108386 0.459198,19.0984 0.115722 0.439395,19.0787 0.126699 0.422184,19.1181 0.0959186 0.446731,19.0984 0.10292 0.420236,19.0787 0.122009 0.414719,19.0787 0.119097 0.406398,19.0787 0.11811 0.397637,19.1181 0.07874 0.397637,19.1181 0.0865377 0.431801,19.1181 0.0807142 0.415158] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [18.8819 0.07874 0.397637,18.9015 0.10292 0.420236,18.9212 0.11811 0.397637,18.9212 0.119097 0.406398,18.9212 0.122009 0.414719,18.9212 0.126699 0.422184,18.8819 0.0807142 0.415158,18.8819 0.0865377 0.431801,18.8819 0.0959186 0.446731,18.9015 0.115722 0.439395,18.9212 0.132933 0.428418,18.8819 0.108386 0.459198,18.9015 0.134881 0.452197,18.9212 0.140398 0.433108,18.9212 0.148719 0.43602,18.9212 0.15748 0.437007,18.8819 0.15748 0.476377,18.8819 0.123316 0.468579,18.8819 0.139959 0.474403] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [19.0787 4.4055 0.437007,19.0787 0.15748 0.437007,18.9212 0.15748 0.437007,18.9212 4.4055 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [19.1181 0.07874 0.397637,19.1181 0.07874 -1.09055,19.0787 0.11811 0.397637,19.0787 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [18.9212 0.11811 -1.09055,18.8819 0.07874 0.397637,18.9212 0.11811 0.397637,18.8819 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [18.9212 0.07874 -1.12992,19.0787 0.11811 -1.09055,19.0787 0.07874 -1.12992,18.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [19.1181 4.4055 0.476377,19.1181 0.15748 0.476377,19.0787 4.4055 0.437007,19.0787 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,0,2,-1,4,5,0,-1,4,0,3,-1,6,7,5,-1,6,5,4,-1,8,9,7,-1,8,7,6,-1,10,9,8,-1,11,10,12,-1,11,9,10,-1,13,12,14,-1,13,11,12,-1,15,13,14,-1,16,14,17,-1,16,15,14,-1,18,16,17,-1,19,16,18,-1] -coord Coordinate { point [19.1181 -0.07874 0.397637,19.1181 -0.07874 -1.09055,19.1181 0.07874 -1.09055,19.1181 0.07874 0.397637,19.1181 0.0807142 0.415158,19.1181 -0.0728175 0.450201,19.1181 0.0865377 0.431801,19.1181 -0.0553469 0.500129,19.1181 0.0959186 0.446731,19.1181 -0.0272042 0.544918,19.1181 0.108386 0.459198,19.1181 0.0101992 0.582321,19.1181 0.123316 0.468579,19.1181 0.054988 0.610464,19.1181 0.139959 0.474403,19.1181 0.104916 0.627934,19.1181 0.15748 0.633857,19.1181 0.15748 0.476377,19.1181 4.4055 0.476377,19.1181 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,4,5,0,-1,0,5,1,-1,6,7,4,-1,4,7,5,-1,8,9,6,-1,6,9,7,-1,8,10,9,-1,10,11,12,-1,8,11,10,-1,12,13,14,-1,11,13,12,-1,13,15,14,-1,14,16,17,-1,15,16,14,-1,16,18,17,-1,16,19,18,-1] -coord Coordinate { point [18.8819 -0.07874 0.397637,18.8819 0.07874 0.397637,18.8819 -0.07874 -1.09055,18.8819 0.07874 -1.09055,18.8819 -0.0728175 0.450201,18.8819 0.0807142 0.415158,18.8819 -0.0553469 0.500129,18.8819 0.0865377 0.431801,18.8819 -0.0272042 0.544918,18.8819 0.0959186 0.446731,18.8819 0.108386 0.459198,18.8819 0.0101992 0.582321,18.8819 0.123316 0.468579,18.8819 0.054988 0.610464,18.8819 0.139959 0.474403,18.8819 0.104916 0.627934,18.8819 0.15748 0.633857,18.8819 0.15748 0.476377,18.8819 4.4055 0.476377,18.8819 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [18.8819 0.15748 0.476377,18.9212 4.4055 0.437007,18.9212 0.15748 0.437007,18.8819 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [18.9212 4.4055 0.437007,19.0787 4.44487 0.476377,19.0787 4.4055 0.437007,18.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [19.0787 0.11811 -1.09055,19.1181 0.07874 -1.09055,19.0787 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [18.8819 0.07874 -1.09055,18.9212 0.11811 -1.09055,18.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [19.0787 0.07874 -1.12992,19.0787 -0.07874 -1.12992,18.9212 -0.07874 -1.12992,18.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [19.0787 4.4055 0.437007,19.0787 4.44487 0.476377,19.1181 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [19.0787 0.15748 0.673227,19.1181 4.4055 0.633857,19.0787 4.4055 0.673227,19.1181 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [19.1181 4.4055 0.633857,19.1181 4.4055 0.476377,19.0787 4.44487 0.476377,19.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [19.1181 0.104916 0.627934,19.1181 0.15748 0.633857,19.0787 0.15748 0.673227,19.0787 0.0961555 0.666317,19.1181 0.054988 0.610464,19.0787 0.037906 0.645935,19.1181 0.0101992 0.582321,19.0787 -0.0143476 0.613102,19.1181 -0.0272042 0.544918,19.0787 -0.0579849 0.569465,19.1181 -0.0553469 0.500129,19.0787 -0.090818 0.517211,19.1181 -0.0728175 0.450201,19.0787 -0.1112 0.458962,19.1181 -0.07874 0.397637,19.0787 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [19.0787 -0.11811 -1.09055,19.1181 -0.07874 0.397637,19.0787 -0.11811 0.397637,19.1181 -0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [19.0787 0.07874 -1.12992,19.1181 -0.07874 -1.09055,19.0787 -0.07874 -1.12992,19.1181 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [18.8819 4.4055 0.633857,18.9212 0.15748 0.673227,18.9212 4.4055 0.673227,18.8819 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [18.8819 4.4055 0.476377,18.8819 4.4055 0.633857,18.9212 4.44487 0.476377,18.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1] -coord Coordinate { point [18.8819 0.15748 0.633857,18.8819 0.104916 0.627934,18.9212 0.15748 0.673227,18.9212 0.0961555 0.666317,18.8819 0.054988 0.610464,18.9212 0.037906 0.645935,18.8819 0.0101992 0.582321,18.9212 -0.0143476 0.613102,18.8819 -0.0272042 0.544918,18.9212 -0.0579849 0.569465,18.8819 -0.0553469 0.500129,18.9212 -0.090818 0.517211,18.8819 -0.0728175 0.450201,18.9212 -0.1112 0.458962,18.8819 -0.07874 0.397637,18.9212 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [18.8819 -0.07874 0.397637,18.8819 -0.07874 -1.09055,18.9212 -0.11811 0.397637,18.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [18.8819 -0.07874 -1.09055,18.9212 0.07874 -1.12992,18.9212 -0.07874 -1.12992,18.8819 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [18.9212 4.4055 0.437007,18.8819 4.4055 0.476377,18.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [19.0787 4.44487 0.633857,19.0787 4.44487 0.476377,18.9212 4.44487 0.476377,18.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [18.9212 -0.07874 -1.12992,19.0787 -0.07874 -1.12992,19.0787 -0.11811 -1.09055,18.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [19.0787 0.15748 0.673227,19.0787 4.4055 0.673227,18.9212 4.4055 0.673227,18.9212 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [19.0787 4.4055 0.673227,19.1181 4.4055 0.633857,19.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,12,13,14,-1,11,13,12,-1,10,13,11,-1,13,15,14,-1] -coord Coordinate { point [19.0787 -0.11811 0.397637,19.0787 -0.1112 0.458962,18.9212 -0.11811 0.397637,18.9212 -0.1112 0.458962,19.0787 -0.090818 0.517211,18.9212 -0.090818 0.517211,19.0787 -0.0579849 0.569465,18.9212 -0.0579849 0.569465,19.0787 -0.0143476 0.613102,18.9212 -0.0143476 0.613102,19.0787 0.037906 0.645935,18.9212 0.037906 0.645935,18.9212 0.0961555 0.666317,19.0787 0.0961555 0.666317,18.9212 0.15748 0.673227,19.0787 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [19.0787 -0.11811 -1.09055,19.0787 -0.11811 0.397637,18.9212 -0.11811 0.397637,18.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [19.1181 -0.07874 -1.09055,19.0787 -0.11811 -1.09055,19.0787 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [18.8819 4.4055 0.633857,18.9212 4.4055 0.673227,18.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [18.9212 -0.11811 -1.09055,18.8819 -0.07874 -1.09055,18.9212 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [18.9212 4.4055 0.673227,19.0787 4.4055 0.673227,19.0787 4.44487 0.633857,18.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [20.0787 0.119097 0.406398,20.0787 0.11811 0.397637,19.9212 0.11811 0.397637,19.9212 0.119097 0.406398,20.0787 0.122009 0.414719,19.9212 0.122009 0.414719,20.0787 0.126699 0.422184,19.9212 0.126699 0.422184,20.0787 0.132933 0.428418,19.9212 0.132933 0.428418,20.0787 0.140398 0.433108,19.9212 0.140398 0.433108,20.0787 0.148719 0.43602,19.9212 0.148719 0.43602,20.0787 0.15748 0.437007,19.9212 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [20.0787 0.11811 0.397637,20.0787 0.11811 -1.09055,19.9212 0.11811 0.397637,19.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [20.1181 0.15748 0.476377,20.0984 0.134881 0.452197,20.0787 0.15748 0.437007,20.0787 0.148719 0.43602,20.0787 0.140398 0.433108,20.0787 0.132933 0.428418,20.1181 0.139959 0.474403,20.1181 0.123316 0.468579,20.1181 0.108386 0.459198,20.0984 0.115722 0.439395,20.0787 0.126699 0.422184,20.1181 0.0959186 0.446731,20.0984 0.10292 0.420236,20.0787 0.122009 0.414719,20.0787 0.119097 0.406398,20.0787 0.11811 0.397637,20.1181 0.07874 0.397637,20.1181 0.0865377 0.431801,20.1181 0.0807142 0.415158] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [19.8818 0.07874 0.397637,19.9015 0.10292 0.420236,19.9212 0.11811 0.397637,19.9212 0.119097 0.406398,19.9212 0.122009 0.414719,19.9212 0.126699 0.422184,19.8818 0.0807142 0.415158,19.8818 0.0865377 0.431801,19.8818 0.0959186 0.446731,19.9015 0.115722 0.439395,19.9212 0.132933 0.428418,19.8818 0.108386 0.459198,19.9015 0.134881 0.452197,19.9212 0.140398 0.433108,19.9212 0.148719 0.43602,19.9212 0.15748 0.437007,19.8818 0.15748 0.476377,19.8818 0.123316 0.468579,19.8818 0.139959 0.474403] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [20.0787 4.4055 0.437007,20.0787 0.15748 0.437007,19.9212 0.15748 0.437007,19.9212 4.4055 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [20.1181 0.07874 0.397637,20.1181 0.07874 -1.09055,20.0787 0.11811 0.397637,20.0787 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [19.9212 0.11811 -1.09055,19.8818 0.07874 0.397637,19.9212 0.11811 0.397637,19.8819 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [19.9212 0.07874 -1.12992,20.0787 0.11811 -1.09055,20.0787 0.07874 -1.12992,19.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [20.1181 4.4055 0.476377,20.1181 0.15748 0.476377,20.0787 4.4055 0.437007,20.0787 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,0,2,-1,4,5,0,-1,4,0,3,-1,6,7,5,-1,6,5,4,-1,8,9,7,-1,8,7,6,-1,10,9,8,-1,11,10,12,-1,11,9,10,-1,13,12,14,-1,13,11,12,-1,15,13,14,-1,16,14,17,-1,16,15,14,-1,18,16,17,-1,19,16,18,-1] -coord Coordinate { point [20.1181 -0.07874 0.397637,20.1181 -0.07874 -1.09055,20.1181 0.07874 -1.09055,20.1181 0.07874 0.397637,20.1181 0.0807142 0.415158,20.1181 -0.0728175 0.450201,20.1181 0.0865377 0.431801,20.1181 -0.0553469 0.500129,20.1181 0.0959186 0.446731,20.1181 -0.0272042 0.544918,20.1181 0.108386 0.459198,20.1181 0.0101992 0.582321,20.1181 0.123316 0.468579,20.1181 0.054988 0.610464,20.1181 0.139959 0.474403,20.1181 0.104916 0.627934,20.1181 0.15748 0.633857,20.1181 0.15748 0.476377,20.1181 4.4055 0.476377,20.1181 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,4,5,0,-1,0,5,1,-1,6,7,4,-1,4,7,5,-1,8,9,6,-1,6,9,7,-1,8,10,9,-1,10,11,12,-1,8,11,10,-1,12,13,14,-1,11,13,12,-1,13,15,14,-1,14,16,17,-1,15,16,14,-1,16,18,17,-1,16,19,18,-1] -coord Coordinate { point [19.8819 -0.07874 0.397637,19.8819 0.07874 0.397637,19.8819 -0.07874 -1.09055,19.8819 0.07874 -1.09055,19.8819 -0.0728175 0.450201,19.8819 0.0807142 0.415158,19.8819 -0.0553469 0.500129,19.8819 0.0865377 0.431801,19.8819 -0.0272042 0.544918,19.8819 0.0959186 0.446731,19.8819 0.108386 0.459198,19.8819 0.0101992 0.582321,19.8819 0.123316 0.468579,19.8819 0.054988 0.610464,19.8819 0.139959 0.474403,19.8819 0.104916 0.627934,19.8819 0.15748 0.633857,19.8819 0.15748 0.476377,19.8818 4.4055 0.476377,19.8819 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [19.8818 0.15748 0.476377,19.9212 4.4055 0.437007,19.9212 0.15748 0.437007,19.8818 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [19.9212 4.4055 0.437007,20.0787 4.44487 0.476377,20.0787 4.4055 0.437007,19.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [20.0787 0.11811 -1.09055,20.1181 0.07874 -1.09055,20.0787 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [19.8819 0.07874 -1.09055,19.9212 0.11811 -1.09055,19.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [20.0787 0.07874 -1.12992,20.0787 -0.07874 -1.12992,19.9212 -0.07874 -1.12992,19.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [20.0787 4.4055 0.437007,20.0787 4.44487 0.476377,20.1181 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [20.0787 0.15748 0.673227,20.1181 4.4055 0.633857,20.0787 4.4055 0.673227,20.1181 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [20.1181 4.4055 0.633857,20.1181 4.4055 0.476377,20.0787 4.44487 0.476377,20.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [20.1181 0.104916 0.627934,20.1181 0.15748 0.633857,20.0787 0.15748 0.673227,20.0787 0.0961555 0.666317,20.1181 0.054988 0.610464,20.0787 0.037906 0.645935,20.1181 0.0101992 0.582321,20.0787 -0.0143476 0.613102,20.1181 -0.0272042 0.544918,20.0787 -0.0579849 0.569465,20.1181 -0.0553469 0.500129,20.0787 -0.090818 0.517211,20.1181 -0.0728175 0.450201,20.0787 -0.1112 0.458962,20.1181 -0.07874 0.397637,20.0787 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [20.0787 -0.11811 -1.09055,20.1181 -0.07874 0.397637,20.0787 -0.11811 0.397637,20.1181 -0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [20.0787 0.07874 -1.12992,20.1181 -0.07874 -1.09055,20.0787 -0.07874 -1.12992,20.1181 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [19.8818 4.4055 0.633857,19.9212 0.15748 0.673227,19.9212 4.4055 0.673227,19.8818 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [19.8818 4.4055 0.476377,19.8818 4.4055 0.633857,19.9212 4.44487 0.476377,19.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1] -coord Coordinate { point [19.8818 0.15748 0.633857,19.8818 0.104916 0.627934,19.9212 0.15748 0.673227,19.9212 0.0961555 0.666317,19.8818 0.054988 0.610464,19.9212 0.037906 0.645935,19.8818 0.0101992 0.582321,19.9212 -0.0143476 0.613102,19.8818 -0.0272042 0.544918,19.9212 -0.0579849 0.569465,19.8818 -0.0553469 0.500129,19.9212 -0.090818 0.517211,19.8818 -0.0728175 0.450201,19.9212 -0.1112 0.458962,19.8819 -0.07874 0.397637,19.9212 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [19.8819 -0.07874 0.397637,19.8819 -0.07874 -1.09055,19.9212 -0.11811 0.397637,19.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [19.8819 -0.07874 -1.09055,19.9212 0.07874 -1.12992,19.9212 -0.07874 -1.12992,19.8819 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [19.9212 4.4055 0.437007,19.8818 4.4055 0.476377,19.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [20.0787 4.44487 0.633857,20.0787 4.44487 0.476377,19.9212 4.44487 0.476377,19.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [19.9212 -0.07874 -1.12992,20.0787 -0.07874 -1.12992,20.0787 -0.11811 -1.09055,19.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [20.0787 0.15748 0.673227,20.0787 4.4055 0.673227,19.9212 4.4055 0.673227,19.9212 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [20.0787 4.4055 0.673227,20.1181 4.4055 0.633857,20.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,12,13,14,-1,11,13,12,-1,10,13,11,-1,13,15,14,-1] -coord Coordinate { point [20.0787 -0.11811 0.397637,20.0787 -0.1112 0.458962,19.9212 -0.11811 0.397637,19.9212 -0.1112 0.458962,20.0787 -0.090818 0.517211,19.9212 -0.090818 0.517211,20.0787 -0.0579849 0.569465,19.9212 -0.0579849 0.569465,20.0787 -0.0143476 0.613102,19.9212 -0.0143476 0.613102,20.0787 0.037906 0.645935,19.9212 0.037906 0.645935,19.9212 0.0961555 0.666317,20.0787 0.0961555 0.666317,19.9212 0.15748 0.673227,20.0787 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [20.0787 -0.11811 -1.09055,20.0787 -0.11811 0.397637,19.9212 -0.11811 0.397637,19.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [20.1181 -0.07874 -1.09055,20.0787 -0.11811 -1.09055,20.0787 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [19.8818 4.4055 0.633857,19.9212 4.4055 0.673227,19.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [19.9212 -0.11811 -1.09055,19.8819 -0.07874 -1.09055,19.9212 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [19.9212 4.4055 0.673227,20.0787 4.4055 0.673227,20.0787 4.44487 0.633857,19.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [21.0787 0.119097 0.406398,21.0787 0.11811 0.397637,20.9212 0.11811 0.397637,20.9212 0.119097 0.406398,21.0787 0.122009 0.414719,20.9212 0.122009 0.414719,21.0787 0.126699 0.422184,20.9212 0.126699 0.422184,21.0787 0.132933 0.428418,20.9212 0.132933 0.428418,21.0787 0.140398 0.433108,20.9212 0.140398 0.433108,21.0787 0.148719 0.43602,20.9212 0.148719 0.43602,21.0787 0.15748 0.437007,20.9212 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [21.0787 0.11811 0.397637,21.0787 0.11811 -1.09055,20.9212 0.11811 0.397637,20.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [21.1181 0.15748 0.476377,21.0984 0.134881 0.452197,21.0787 0.15748 0.437007,21.0787 0.148719 0.43602,21.0787 0.140398 0.433108,21.0787 0.132933 0.428418,21.1181 0.139959 0.474403,21.1181 0.123316 0.468579,21.1181 0.108386 0.459198,21.0984 0.115722 0.439395,21.0787 0.126699 0.422184,21.1181 0.0959186 0.446731,21.0984 0.10292 0.420236,21.0787 0.122009 0.414719,21.0787 0.119097 0.406398,21.0787 0.11811 0.397637,21.1181 0.07874 0.397637,21.1181 0.0865377 0.431801,21.1181 0.0807142 0.415158] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [20.8818 0.07874 0.397637,20.9015 0.10292 0.420236,20.9212 0.11811 0.397637,20.9212 0.119097 0.406398,20.9212 0.122009 0.414719,20.9212 0.126699 0.422184,20.8818 0.0807142 0.415158,20.8818 0.0865377 0.431801,20.8818 0.0959186 0.446731,20.9015 0.115722 0.439395,20.9212 0.132933 0.428418,20.8818 0.108386 0.459198,20.9015 0.134881 0.452197,20.9212 0.140398 0.433108,20.9212 0.148719 0.43602,20.9212 0.15748 0.437007,20.8818 0.15748 0.476377,20.8818 0.123316 0.468579,20.8818 0.139959 0.474403] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [21.0787 4.4055 0.437007,21.0787 0.15748 0.437007,20.9212 0.15748 0.437007,20.9212 4.4055 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [21.1181 0.07874 0.397637,21.1181 0.07874 -1.09055,21.0787 0.11811 0.397637,21.0787 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [20.9212 0.11811 -1.09055,20.8818 0.07874 0.397637,20.9212 0.11811 0.397637,20.8818 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [20.9212 0.07874 -1.12992,21.0787 0.11811 -1.09055,21.0787 0.07874 -1.12992,20.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [21.1181 4.4055 0.476377,21.1181 0.15748 0.476377,21.0787 4.4055 0.437007,21.0787 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,0,2,-1,4,5,0,-1,4,0,3,-1,6,7,5,-1,6,5,4,-1,8,9,7,-1,8,7,6,-1,10,9,8,-1,11,10,12,-1,11,9,10,-1,13,12,14,-1,13,11,12,-1,15,13,14,-1,16,14,17,-1,16,15,14,-1,18,16,17,-1,19,16,18,-1] -coord Coordinate { point [21.1181 -0.07874 0.397637,21.1181 -0.07874 -1.09055,21.1181 0.07874 -1.09055,21.1181 0.07874 0.397637,21.1181 0.0807142 0.415158,21.1181 -0.0728175 0.450201,21.1181 0.0865377 0.431801,21.1181 -0.0553469 0.500129,21.1181 0.0959186 0.446731,21.1181 -0.0272042 0.544918,21.1181 0.108386 0.459198,21.1181 0.0101992 0.582321,21.1181 0.123316 0.468579,21.1181 0.054988 0.610464,21.1181 0.139959 0.474403,21.1181 0.104916 0.627934,21.1181 0.15748 0.633857,21.1181 0.15748 0.476377,21.1181 4.4055 0.476377,21.1181 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,4,5,0,-1,0,5,1,-1,6,7,4,-1,4,7,5,-1,8,9,6,-1,6,9,7,-1,8,10,9,-1,10,11,12,-1,8,11,10,-1,12,13,14,-1,11,13,12,-1,13,15,14,-1,14,16,17,-1,15,16,14,-1,16,18,17,-1,16,19,18,-1] -coord Coordinate { point [20.8818 -0.07874 0.397637,20.8818 0.07874 0.397637,20.8818 -0.07874 -1.09055,20.8818 0.07874 -1.09055,20.8818 -0.0728175 0.450201,20.8818 0.0807142 0.415158,20.8818 -0.0553469 0.500129,20.8818 0.0865377 0.431801,20.8818 -0.0272042 0.544918,20.8818 0.0959186 0.446731,20.8818 0.108386 0.459198,20.8818 0.0101992 0.582321,20.8818 0.123316 0.468579,20.8818 0.054988 0.610464,20.8818 0.139959 0.474403,20.8818 0.104916 0.627934,20.8818 0.15748 0.633857,20.8818 0.15748 0.476377,20.8818 4.4055 0.476377,20.8818 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [20.8818 0.15748 0.476377,20.9212 4.4055 0.437007,20.9212 0.15748 0.437007,20.8818 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [20.9212 4.4055 0.437007,21.0787 4.44487 0.476377,21.0787 4.4055 0.437007,20.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [21.0787 0.11811 -1.09055,21.1181 0.07874 -1.09055,21.0787 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [20.8818 0.07874 -1.09055,20.9212 0.11811 -1.09055,20.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [21.0787 0.07874 -1.12992,21.0787 -0.07874 -1.12992,20.9212 -0.07874 -1.12992,20.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [21.0787 4.4055 0.437007,21.0787 4.44487 0.476377,21.1181 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [21.0787 0.15748 0.673227,21.1181 4.4055 0.633857,21.0787 4.4055 0.673227,21.1181 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [21.1181 4.4055 0.633857,21.1181 4.4055 0.476377,21.0787 4.44487 0.476377,21.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [21.1181 0.104916 0.627934,21.1181 0.15748 0.633857,21.0787 0.15748 0.673227,21.0787 0.0961555 0.666317,21.1181 0.054988 0.610464,21.0787 0.037906 0.645935,21.1181 0.0101992 0.582321,21.0787 -0.0143476 0.613102,21.1181 -0.0272042 0.544918,21.0787 -0.0579849 0.569465,21.1181 -0.0553469 0.500129,21.0787 -0.090818 0.517211,21.1181 -0.0728175 0.450201,21.0787 -0.1112 0.458962,21.1181 -0.07874 0.397637,21.0787 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [21.0787 -0.11811 -1.09055,21.1181 -0.07874 0.397637,21.0787 -0.11811 0.397637,21.1181 -0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [21.0787 0.07874 -1.12992,21.1181 -0.07874 -1.09055,21.0787 -0.07874 -1.12992,21.1181 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [20.8818 4.4055 0.633857,20.9212 0.15748 0.673227,20.9212 4.4055 0.673227,20.8818 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [20.8818 4.4055 0.476377,20.8818 4.4055 0.633857,20.9212 4.44487 0.476377,20.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1] -coord Coordinate { point [20.8818 0.15748 0.633857,20.8818 0.104916 0.627934,20.9212 0.15748 0.673227,20.9212 0.0961555 0.666317,20.8818 0.054988 0.610464,20.9212 0.037906 0.645935,20.8818 0.0101992 0.582321,20.9212 -0.0143476 0.613102,20.8818 -0.0272042 0.544918,20.9212 -0.0579849 0.569465,20.8818 -0.0553469 0.500129,20.9212 -0.090818 0.517211,20.8818 -0.0728175 0.450201,20.9212 -0.1112 0.458962,20.8818 -0.07874 0.397637,20.9212 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [20.8818 -0.07874 0.397637,20.8818 -0.07874 -1.09055,20.9212 -0.11811 0.397637,20.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [20.8818 -0.07874 -1.09055,20.9212 0.07874 -1.12992,20.9212 -0.07874 -1.12992,20.8818 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [20.9212 4.4055 0.437007,20.8818 4.4055 0.476377,20.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [21.0787 4.44487 0.633857,21.0787 4.44487 0.476377,20.9212 4.44487 0.476377,20.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [20.9212 -0.07874 -1.12992,21.0787 -0.07874 -1.12992,21.0787 -0.11811 -1.09055,20.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [21.0787 0.15748 0.673227,21.0787 4.4055 0.673227,20.9212 4.4055 0.673227,20.9212 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [21.0787 4.4055 0.673227,21.1181 4.4055 0.633857,21.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,12,13,14,-1,11,13,12,-1,10,13,11,-1,13,15,14,-1] -coord Coordinate { point [21.0787 -0.11811 0.397637,21.0787 -0.1112 0.458962,20.9212 -0.11811 0.397637,20.9212 -0.1112 0.458962,21.0787 -0.090818 0.517211,20.9212 -0.090818 0.517211,21.0787 -0.0579849 0.569465,20.9212 -0.0579849 0.569465,21.0787 -0.0143476 0.613102,20.9212 -0.0143476 0.613102,21.0787 0.037906 0.645935,20.9212 0.037906 0.645935,20.9212 0.0961555 0.666317,21.0787 0.0961555 0.666317,20.9212 0.15748 0.673227,21.0787 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [21.0787 -0.11811 -1.09055,21.0787 -0.11811 0.397637,20.9212 -0.11811 0.397637,20.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [21.1181 -0.07874 -1.09055,21.0787 -0.11811 -1.09055,21.0787 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [20.8818 4.4055 0.633857,20.9212 4.4055 0.673227,20.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [20.9212 -0.11811 -1.09055,20.8818 -0.07874 -1.09055,20.9212 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [20.9212 4.4055 0.673227,21.0787 4.4055 0.673227,21.0787 4.44487 0.633857,20.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [22.0787 0.119097 0.406398,22.0787 0.11811 0.397637,21.9212 0.11811 0.397637,21.9212 0.119097 0.406398,22.0787 0.122009 0.414719,21.9212 0.122009 0.414719,22.0787 0.126699 0.422184,21.9212 0.126699 0.422184,22.0787 0.132933 0.428418,21.9212 0.132933 0.428418,22.0787 0.140398 0.433108,21.9212 0.140398 0.433108,22.0787 0.148719 0.43602,21.9212 0.148719 0.43602,22.0787 0.15748 0.437007,21.9212 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [22.0787 0.11811 0.397637,22.0787 0.11811 -1.09055,21.9212 0.11811 0.397637,21.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [22.1181 0.15748 0.476377,22.0984 0.134881 0.452197,22.0787 0.15748 0.437007,22.0787 0.148719 0.43602,22.0787 0.140398 0.433108,22.0787 0.132933 0.428418,22.1181 0.139959 0.474403,22.1181 0.123316 0.468579,22.1181 0.108386 0.459198,22.0984 0.115722 0.439395,22.0787 0.126699 0.422184,22.1181 0.0959186 0.446731,22.0984 0.10292 0.420236,22.0787 0.122009 0.414719,22.0787 0.119097 0.406398,22.0787 0.11811 0.397637,22.1181 0.07874 0.397637,22.1181 0.0865377 0.431801,22.1181 0.0807142 0.415158] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [21.8818 0.07874 0.397637,21.9015 0.10292 0.420236,21.9212 0.11811 0.397637,21.9212 0.119097 0.406398,21.9212 0.122009 0.414719,21.9212 0.126699 0.422184,21.8818 0.0807142 0.415158,21.8818 0.0865377 0.431801,21.8818 0.0959186 0.446731,21.9015 0.115722 0.439395,21.9212 0.132933 0.428418,21.8818 0.108386 0.459198,21.9015 0.134881 0.452197,21.9212 0.140398 0.433108,21.9212 0.148719 0.43602,21.9212 0.15748 0.437007,21.8818 0.15748 0.476377,21.8818 0.123316 0.468579,21.8818 0.139959 0.474403] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [22.0787 4.4055 0.437007,22.0787 0.15748 0.437007,21.9212 0.15748 0.437007,21.9212 4.4055 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [22.1181 0.07874 0.397637,22.1181 0.07874 -1.09055,22.0787 0.11811 0.397637,22.0787 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [21.9212 0.11811 -1.09055,21.8818 0.07874 0.397637,21.9212 0.11811 0.397637,21.8818 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [21.9212 0.07874 -1.12992,22.0787 0.11811 -1.09055,22.0787 0.07874 -1.12992,21.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [22.1181 4.4055 0.476377,22.1181 0.15748 0.476377,22.0787 4.4055 0.437007,22.0787 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,0,2,-1,4,5,0,-1,4,0,3,-1,6,7,5,-1,6,5,4,-1,8,9,7,-1,8,7,6,-1,10,9,8,-1,11,10,12,-1,11,9,10,-1,13,12,14,-1,13,11,12,-1,15,13,14,-1,16,14,17,-1,16,15,14,-1,18,16,17,-1,19,16,18,-1] -coord Coordinate { point [22.1181 -0.07874 0.397637,22.1181 -0.07874 -1.09055,22.1181 0.07874 -1.09055,22.1181 0.07874 0.397637,22.1181 0.0807142 0.415158,22.1181 -0.0728175 0.450201,22.1181 0.0865377 0.431801,22.1181 -0.0553469 0.500129,22.1181 0.0959186 0.446731,22.1181 -0.0272042 0.544918,22.1181 0.108386 0.459198,22.1181 0.0101992 0.582321,22.1181 0.123316 0.468579,22.1181 0.054988 0.610464,22.1181 0.139959 0.474403,22.1181 0.104916 0.627934,22.1181 0.15748 0.633857,22.1181 0.15748 0.476377,22.1181 4.4055 0.476377,22.1181 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,4,5,0,-1,0,5,1,-1,6,7,4,-1,4,7,5,-1,8,9,6,-1,6,9,7,-1,8,10,9,-1,10,11,12,-1,8,11,10,-1,12,13,14,-1,11,13,12,-1,13,15,14,-1,14,16,17,-1,15,16,14,-1,16,18,17,-1,16,19,18,-1] -coord Coordinate { point [21.8818 -0.07874 0.397637,21.8818 0.07874 0.397637,21.8818 -0.07874 -1.09055,21.8818 0.07874 -1.09055,21.8818 -0.0728175 0.450201,21.8818 0.0807142 0.415158,21.8818 -0.0553469 0.500129,21.8818 0.0865377 0.431801,21.8818 -0.0272042 0.544918,21.8818 0.0959186 0.446731,21.8818 0.108386 0.459198,21.8818 0.0101992 0.582321,21.8818 0.123316 0.468579,21.8818 0.054988 0.610464,21.8818 0.139959 0.474403,21.8818 0.104916 0.627934,21.8818 0.15748 0.633857,21.8818 0.15748 0.476377,21.8818 4.4055 0.476377,21.8818 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [21.8818 0.15748 0.476377,21.9212 4.4055 0.437007,21.9212 0.15748 0.437007,21.8818 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [21.9212 4.4055 0.437007,22.0787 4.44487 0.476377,22.0787 4.4055 0.437007,21.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [22.0787 0.11811 -1.09055,22.1181 0.07874 -1.09055,22.0787 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [21.8818 0.07874 -1.09055,21.9212 0.11811 -1.09055,21.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [22.0787 0.07874 -1.12992,22.0787 -0.07874 -1.12992,21.9212 -0.07874 -1.12992,21.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [22.0787 4.4055 0.437007,22.0787 4.44487 0.476377,22.1181 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [22.0787 0.15748 0.673227,22.1181 4.4055 0.633857,22.0787 4.4055 0.673227,22.1181 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [22.1181 4.4055 0.633857,22.1181 4.4055 0.476377,22.0787 4.44487 0.476377,22.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [22.1181 0.104916 0.627934,22.1181 0.15748 0.633857,22.0787 0.15748 0.673227,22.0787 0.0961555 0.666317,22.1181 0.054988 0.610464,22.0787 0.037906 0.645935,22.1181 0.0101992 0.582321,22.0787 -0.0143476 0.613102,22.1181 -0.0272042 0.544918,22.0787 -0.0579849 0.569465,22.1181 -0.0553469 0.500129,22.0787 -0.090818 0.517211,22.1181 -0.0728175 0.450201,22.0787 -0.1112 0.458962,22.1181 -0.07874 0.397637,22.0787 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [22.0787 -0.11811 -1.09055,22.1181 -0.07874 0.397637,22.0787 -0.11811 0.397637,22.1181 -0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [22.0787 0.07874 -1.12992,22.1181 -0.07874 -1.09055,22.0787 -0.07874 -1.12992,22.1181 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [21.8818 4.4055 0.633857,21.9212 0.15748 0.673227,21.9212 4.4055 0.673227,21.8818 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [21.8818 4.4055 0.476377,21.8818 4.4055 0.633857,21.9212 4.44487 0.476377,21.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1] -coord Coordinate { point [21.8818 0.15748 0.633857,21.8818 0.104916 0.627934,21.9212 0.15748 0.673227,21.9212 0.0961555 0.666317,21.8818 0.054988 0.610464,21.9212 0.037906 0.645935,21.8818 0.0101992 0.582321,21.9212 -0.0143476 0.613102,21.8818 -0.0272042 0.544918,21.9212 -0.0579849 0.569465,21.8818 -0.0553469 0.500129,21.9212 -0.090818 0.517211,21.8818 -0.0728175 0.450201,21.9212 -0.1112 0.458962,21.8818 -0.07874 0.397637,21.9212 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [21.8818 -0.07874 0.397637,21.8818 -0.07874 -1.09055,21.9212 -0.11811 0.397637,21.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [21.8818 -0.07874 -1.09055,21.9212 0.07874 -1.12992,21.9212 -0.07874 -1.12992,21.8818 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [21.9212 4.4055 0.437007,21.8818 4.4055 0.476377,21.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [22.0787 4.44487 0.633857,22.0787 4.44487 0.476377,21.9212 4.44487 0.476377,21.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [21.9212 -0.07874 -1.12992,22.0787 -0.07874 -1.12992,22.0787 -0.11811 -1.09055,21.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [22.0787 0.15748 0.673227,22.0787 4.4055 0.673227,21.9212 4.4055 0.673227,21.9212 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [22.0787 4.4055 0.673227,22.1181 4.4055 0.633857,22.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,12,13,14,-1,11,13,12,-1,10,13,11,-1,13,15,14,-1] -coord Coordinate { point [22.0787 -0.11811 0.397637,22.0787 -0.1112 0.458962,21.9212 -0.11811 0.397637,21.9212 -0.1112 0.458962,22.0787 -0.090818 0.517211,21.9212 -0.090818 0.517211,22.0787 -0.0579849 0.569465,21.9212 -0.0579849 0.569465,22.0787 -0.0143476 0.613102,21.9212 -0.0143476 0.613102,22.0787 0.037906 0.645935,21.9212 0.037906 0.645935,21.9212 0.0961555 0.666317,22.0787 0.0961555 0.666317,21.9212 0.15748 0.673227,22.0787 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [22.0787 -0.11811 -1.09055,22.0787 -0.11811 0.397637,21.9212 -0.11811 0.397637,21.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [22.1181 -0.07874 -1.09055,22.0787 -0.11811 -1.09055,22.0787 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [21.8818 4.4055 0.633857,21.9212 4.4055 0.673227,21.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [21.9212 -0.11811 -1.09055,21.8818 -0.07874 -1.09055,21.9212 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [21.9212 4.4055 0.673227,22.0787 4.4055 0.673227,22.0787 4.44487 0.633857,21.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [23.0787 0.119097 0.406398,23.0787 0.11811 0.397637,22.9212 0.11811 0.397637,22.9212 0.119097 0.406398,23.0787 0.122009 0.414719,22.9212 0.122009 0.414719,23.0787 0.126699 0.422184,22.9212 0.126699 0.422184,23.0787 0.132933 0.428418,22.9212 0.132933 0.428418,23.0787 0.140398 0.433108,22.9212 0.140398 0.433108,23.0787 0.148719 0.43602,22.9212 0.148719 0.43602,23.0787 0.15748 0.437007,22.9212 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [23.0787 0.11811 0.397637,23.0787 0.11811 -1.09055,22.9212 0.11811 0.397637,22.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [23.1181 0.15748 0.476377,23.0984 0.134881 0.452197,23.0787 0.15748 0.437007,23.0787 0.148719 0.43602,23.0787 0.140398 0.433108,23.0787 0.132933 0.428418,23.1181 0.139959 0.474403,23.1181 0.123316 0.468579,23.1181 0.108386 0.459198,23.0984 0.115722 0.439395,23.0787 0.126699 0.422184,23.1181 0.0959186 0.446731,23.0984 0.10292 0.420236,23.0787 0.122009 0.414719,23.0787 0.119097 0.406398,23.0787 0.11811 0.397637,23.1181 0.07874 0.397637,23.1181 0.0865377 0.431801,23.1181 0.0807142 0.415158] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [22.8818 0.07874 0.397637,22.9015 0.10292 0.420236,22.9212 0.11811 0.397637,22.9212 0.119097 0.406398,22.9212 0.122009 0.414719,22.9212 0.126699 0.422184,22.8818 0.0807142 0.415158,22.8818 0.0865377 0.431801,22.8818 0.0959186 0.446731,22.9015 0.115722 0.439395,22.9212 0.132933 0.428418,22.8818 0.108386 0.459198,22.9015 0.134881 0.452197,22.9212 0.140398 0.433108,22.9212 0.148719 0.43602,22.9212 0.15748 0.437007,22.8818 0.15748 0.476377,22.8818 0.123316 0.468579,22.8818 0.139959 0.474403] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [23.0787 4.4055 0.437007,23.0787 0.15748 0.437007,22.9212 0.15748 0.437007,22.9212 4.4055 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [23.1181 0.07874 0.397637,23.1181 0.07874 -1.09055,23.0787 0.11811 0.397637,23.0787 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [22.9212 0.11811 -1.09055,22.8818 0.07874 0.397637,22.9212 0.11811 0.397637,22.8818 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [22.9212 0.07874 -1.12992,23.0787 0.11811 -1.09055,23.0787 0.07874 -1.12992,22.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [23.1181 4.4055 0.476377,23.1181 0.15748 0.476377,23.0787 4.4055 0.437007,23.0787 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,0,2,-1,4,5,0,-1,4,0,3,-1,6,7,5,-1,6,5,4,-1,8,9,7,-1,8,7,6,-1,10,9,8,-1,11,10,12,-1,11,9,10,-1,13,12,14,-1,13,11,12,-1,15,13,14,-1,16,14,17,-1,16,15,14,-1,18,16,17,-1,19,16,18,-1] -coord Coordinate { point [23.1181 -0.07874 0.397637,23.1181 -0.07874 -1.09055,23.1181 0.07874 -1.09055,23.1181 0.07874 0.397637,23.1181 0.0807142 0.415158,23.1181 -0.0728175 0.450201,23.1181 0.0865377 0.431801,23.1181 -0.0553469 0.500129,23.1181 0.0959186 0.446731,23.1181 -0.0272042 0.544918,23.1181 0.108386 0.459198,23.1181 0.0101992 0.582321,23.1181 0.123316 0.468579,23.1181 0.054988 0.610464,23.1181 0.139959 0.474403,23.1181 0.104916 0.627934,23.1181 0.15748 0.633857,23.1181 0.15748 0.476377,23.1181 4.4055 0.476377,23.1181 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,4,5,0,-1,0,5,1,-1,6,7,4,-1,4,7,5,-1,8,9,6,-1,6,9,7,-1,8,10,9,-1,10,11,12,-1,8,11,10,-1,12,13,14,-1,11,13,12,-1,13,15,14,-1,14,16,17,-1,15,16,14,-1,16,18,17,-1,16,19,18,-1] -coord Coordinate { point [22.8818 -0.07874 0.397637,22.8818 0.07874 0.397637,22.8818 -0.07874 -1.09055,22.8818 0.07874 -1.09055,22.8818 -0.0728175 0.450201,22.8818 0.0807142 0.415158,22.8818 -0.0553469 0.500129,22.8818 0.0865377 0.431801,22.8818 -0.0272042 0.544918,22.8818 0.0959186 0.446731,22.8818 0.108386 0.459198,22.8818 0.0101992 0.582321,22.8818 0.123316 0.468579,22.8818 0.054988 0.610464,22.8818 0.139959 0.474403,22.8818 0.104916 0.627934,22.8818 0.15748 0.633857,22.8818 0.15748 0.476377,22.8818 4.4055 0.476377,22.8818 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [22.8818 0.15748 0.476377,22.9212 4.4055 0.437007,22.9212 0.15748 0.437007,22.8818 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [22.9212 4.4055 0.437007,23.0787 4.44487 0.476377,23.0787 4.4055 0.437007,22.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [23.0787 0.11811 -1.09055,23.1181 0.07874 -1.09055,23.0787 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [22.8818 0.07874 -1.09055,22.9212 0.11811 -1.09055,22.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [23.0787 0.07874 -1.12992,23.0787 -0.07874 -1.12992,22.9212 -0.07874 -1.12992,22.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [23.0787 4.4055 0.437007,23.0787 4.44487 0.476377,23.1181 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [23.0787 0.15748 0.673227,23.1181 4.4055 0.633857,23.0787 4.4055 0.673227,23.1181 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [23.1181 4.4055 0.633857,23.1181 4.4055 0.476377,23.0787 4.44487 0.476377,23.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [23.1181 0.104916 0.627934,23.1181 0.15748 0.633857,23.0787 0.15748 0.673227,23.0787 0.0961555 0.666317,23.1181 0.054988 0.610464,23.0787 0.037906 0.645935,23.1181 0.0101992 0.582321,23.0787 -0.0143476 0.613102,23.1181 -0.0272042 0.544918,23.0787 -0.0579849 0.569465,23.1181 -0.0553469 0.500129,23.0787 -0.090818 0.517211,23.1181 -0.0728175 0.450201,23.0787 -0.1112 0.458962,23.1181 -0.07874 0.397637,23.0787 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [23.0787 -0.11811 -1.09055,23.1181 -0.07874 0.397637,23.0787 -0.11811 0.397637,23.1181 -0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [23.0787 0.07874 -1.12992,23.1181 -0.07874 -1.09055,23.0787 -0.07874 -1.12992,23.1181 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [22.8818 4.4055 0.633857,22.9212 0.15748 0.673227,22.9212 4.4055 0.673227,22.8818 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [22.8818 4.4055 0.476377,22.8818 4.4055 0.633857,22.9212 4.44487 0.476377,22.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1] -coord Coordinate { point [22.8818 0.15748 0.633857,22.8818 0.104916 0.627934,22.9212 0.15748 0.673227,22.9212 0.0961555 0.666317,22.8818 0.054988 0.610464,22.9212 0.037906 0.645935,22.8818 0.0101992 0.582321,22.9212 -0.0143476 0.613102,22.8818 -0.0272042 0.544918,22.9212 -0.0579849 0.569465,22.8818 -0.0553469 0.500129,22.9212 -0.090818 0.517211,22.8818 -0.0728175 0.450201,22.9212 -0.1112 0.458962,22.8818 -0.07874 0.397637,22.9212 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [22.8818 -0.07874 0.397637,22.8818 -0.07874 -1.09055,22.9212 -0.11811 0.397637,22.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [22.8818 -0.07874 -1.09055,22.9212 0.07874 -1.12992,22.9212 -0.07874 -1.12992,22.8818 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [22.9212 4.4055 0.437007,22.8818 4.4055 0.476377,22.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [23.0787 4.44487 0.633857,23.0787 4.44487 0.476377,22.9212 4.44487 0.476377,22.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [22.9212 -0.07874 -1.12992,23.0787 -0.07874 -1.12992,23.0787 -0.11811 -1.09055,22.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [23.0787 0.15748 0.673227,23.0787 4.4055 0.673227,22.9212 4.4055 0.673227,22.9212 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [23.0787 4.4055 0.673227,23.1181 4.4055 0.633857,23.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,12,13,14,-1,11,13,12,-1,10,13,11,-1,13,15,14,-1] -coord Coordinate { point [23.0787 -0.11811 0.397637,23.0787 -0.1112 0.458962,22.9212 -0.11811 0.397637,22.9212 -0.1112 0.458962,23.0787 -0.090818 0.517211,22.9212 -0.090818 0.517211,23.0787 -0.0579849 0.569465,22.9212 -0.0579849 0.569465,23.0787 -0.0143476 0.613102,22.9212 -0.0143476 0.613102,23.0787 0.037906 0.645935,22.9212 0.037906 0.645935,22.9212 0.0961555 0.666317,23.0787 0.0961555 0.666317,22.9212 0.15748 0.673227,23.0787 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [23.0787 -0.11811 -1.09055,23.0787 -0.11811 0.397637,22.9212 -0.11811 0.397637,22.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [23.1181 -0.07874 -1.09055,23.0787 -0.11811 -1.09055,23.0787 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [22.8818 4.4055 0.633857,22.9212 4.4055 0.673227,22.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [22.9212 -0.11811 -1.09055,22.8818 -0.07874 -1.09055,22.9212 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [22.9212 4.4055 0.673227,23.0787 4.4055 0.673227,23.0787 4.44487 0.633857,22.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [24.0787 0.119097 0.406398,24.0787 0.11811 0.397637,23.9212 0.11811 0.397637,23.9212 0.119097 0.406398,24.0787 0.122009 0.414719,23.9212 0.122009 0.414719,24.0787 0.126699 0.422184,23.9212 0.126699 0.422184,24.0787 0.132933 0.428418,23.9212 0.132933 0.428418,24.0787 0.140398 0.433108,23.9212 0.140398 0.433108,24.0787 0.148719 0.43602,23.9212 0.148719 0.43602,24.0787 0.15748 0.437007,23.9212 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [24.0787 0.11811 0.397637,24.0787 0.11811 -1.09055,23.9212 0.11811 0.397637,23.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [24.1181 0.15748 0.476377,24.0984 0.134881 0.452197,24.0787 0.15748 0.437007,24.0787 0.148719 0.43602,24.0787 0.140398 0.433108,24.0787 0.132933 0.428418,24.1181 0.139959 0.474403,24.1181 0.123316 0.468579,24.1181 0.108386 0.459198,24.0984 0.115722 0.439395,24.0787 0.126699 0.422184,24.1181 0.0959186 0.446731,24.0984 0.10292 0.420236,24.0787 0.122009 0.414719,24.0787 0.119097 0.406398,24.0787 0.11811 0.397637,24.1181 0.07874 0.397637,24.1181 0.0865377 0.431801,24.1181 0.0807142 0.415158] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [23.8818 0.07874 0.397637,23.9015 0.10292 0.420236,23.9212 0.11811 0.397637,23.9212 0.119097 0.406398,23.9212 0.122009 0.414719,23.9212 0.126699 0.422184,23.8818 0.0807142 0.415158,23.8818 0.0865377 0.431801,23.8818 0.0959186 0.446731,23.9015 0.115722 0.439395,23.9212 0.132933 0.428418,23.8818 0.108386 0.459198,23.9015 0.134881 0.452197,23.9212 0.140398 0.433108,23.9212 0.148719 0.43602,23.9212 0.15748 0.437007,23.8818 0.15748 0.476377,23.8818 0.123316 0.468579,23.8818 0.139959 0.474403] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [24.0787 4.4055 0.437007,24.0787 0.15748 0.437007,23.9212 0.15748 0.437007,23.9212 4.4055 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [24.1181 0.07874 0.397637,24.1181 0.07874 -1.09055,24.0787 0.11811 0.397637,24.0787 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [23.9212 0.11811 -1.09055,23.8818 0.07874 0.397637,23.9212 0.11811 0.397637,23.8818 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [23.9212 0.07874 -1.12992,24.0787 0.11811 -1.09055,24.0787 0.07874 -1.12992,23.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [24.1181 4.4055 0.476377,24.1181 0.15748 0.476377,24.0787 4.4055 0.437007,24.0787 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,0,2,-1,4,5,0,-1,4,0,3,-1,6,7,5,-1,6,5,4,-1,8,9,7,-1,8,7,6,-1,10,9,8,-1,11,10,12,-1,11,9,10,-1,13,12,14,-1,13,11,12,-1,15,13,14,-1,16,14,17,-1,16,15,14,-1,18,16,17,-1,19,16,18,-1] -coord Coordinate { point [24.1181 -0.07874 0.397637,24.1181 -0.07874 -1.09055,24.1181 0.07874 -1.09055,24.1181 0.07874 0.397637,24.1181 0.0807142 0.415158,24.1181 -0.0728175 0.450201,24.1181 0.0865377 0.431801,24.1181 -0.0553469 0.500129,24.1181 0.0959186 0.446731,24.1181 -0.0272042 0.544918,24.1181 0.108386 0.459198,24.1181 0.0101992 0.582321,24.1181 0.123316 0.468579,24.1181 0.054988 0.610464,24.1181 0.139959 0.474403,24.1181 0.104916 0.627934,24.1181 0.15748 0.633857,24.1181 0.15748 0.476377,24.1181 4.4055 0.476377,24.1181 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,4,5,0,-1,0,5,1,-1,6,7,4,-1,4,7,5,-1,8,9,6,-1,6,9,7,-1,8,10,9,-1,10,11,12,-1,8,11,10,-1,12,13,14,-1,11,13,12,-1,13,15,14,-1,14,16,17,-1,15,16,14,-1,16,18,17,-1,16,19,18,-1] -coord Coordinate { point [23.8818 -0.07874 0.397637,23.8818 0.07874 0.397637,23.8818 -0.07874 -1.09055,23.8818 0.07874 -1.09055,23.8818 -0.0728175 0.450201,23.8818 0.0807142 0.415158,23.8818 -0.0553469 0.500129,23.8818 0.0865377 0.431801,23.8818 -0.0272042 0.544918,23.8818 0.0959186 0.446731,23.8818 0.108386 0.459198,23.8818 0.0101992 0.582321,23.8818 0.123316 0.468579,23.8818 0.054988 0.610464,23.8818 0.139959 0.474403,23.8818 0.104916 0.627934,23.8818 0.15748 0.633857,23.8818 0.15748 0.476377,23.8818 4.4055 0.476377,23.8818 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [23.8818 0.15748 0.476377,23.9212 4.4055 0.437007,23.9212 0.15748 0.437007,23.8818 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [23.9212 4.4055 0.437007,24.0787 4.44487 0.476377,24.0787 4.4055 0.437007,23.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [24.0787 0.11811 -1.09055,24.1181 0.07874 -1.09055,24.0787 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [23.8818 0.07874 -1.09055,23.9212 0.11811 -1.09055,23.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [24.0787 0.07874 -1.12992,24.0787 -0.07874 -1.12992,23.9212 -0.07874 -1.12992,23.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [24.0787 4.4055 0.437007,24.0787 4.44487 0.476377,24.1181 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [24.0787 0.15748 0.673227,24.1181 4.4055 0.633857,24.0787 4.4055 0.673227,24.1181 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [24.1181 4.4055 0.633857,24.1181 4.4055 0.476377,24.0787 4.44487 0.476377,24.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [24.1181 0.104916 0.627934,24.1181 0.15748 0.633857,24.0787 0.15748 0.673227,24.0787 0.0961555 0.666317,24.1181 0.054988 0.610464,24.0787 0.037906 0.645935,24.1181 0.0101992 0.582321,24.0787 -0.0143476 0.613102,24.1181 -0.0272042 0.544918,24.0787 -0.0579849 0.569465,24.1181 -0.0553469 0.500129,24.0787 -0.090818 0.517211,24.1181 -0.0728175 0.450201,24.0787 -0.1112 0.458962,24.1181 -0.07874 0.397637,24.0787 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [24.0787 -0.11811 -1.09055,24.1181 -0.07874 0.397637,24.0787 -0.11811 0.397637,24.1181 -0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [24.0787 0.07874 -1.12992,24.1181 -0.07874 -1.09055,24.0787 -0.07874 -1.12992,24.1181 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [23.8818 4.4055 0.633857,23.9212 0.15748 0.673227,23.9212 4.4055 0.673227,23.8818 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [23.8818 4.4055 0.476377,23.8818 4.4055 0.633857,23.9212 4.44487 0.476377,23.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1] -coord Coordinate { point [23.8818 0.15748 0.633857,23.8818 0.104916 0.627934,23.9212 0.15748 0.673227,23.9212 0.0961555 0.666317,23.8818 0.054988 0.610464,23.9212 0.037906 0.645935,23.8818 0.0101992 0.582321,23.9212 -0.0143476 0.613102,23.8818 -0.0272042 0.544918,23.9212 -0.0579849 0.569465,23.8818 -0.0553469 0.500129,23.9212 -0.090818 0.517211,23.8818 -0.0728175 0.450201,23.9212 -0.1112 0.458962,23.8818 -0.07874 0.397637,23.9212 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [23.8818 -0.07874 0.397637,23.8818 -0.07874 -1.09055,23.9212 -0.11811 0.397637,23.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [23.8818 -0.07874 -1.09055,23.9212 0.07874 -1.12992,23.9212 -0.07874 -1.12992,23.8818 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [23.9212 4.4055 0.437007,23.8818 4.4055 0.476377,23.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [24.0787 4.44487 0.633857,24.0787 4.44487 0.476377,23.9212 4.44487 0.476377,23.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [23.9212 -0.07874 -1.12992,24.0787 -0.07874 -1.12992,24.0787 -0.11811 -1.09055,23.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [24.0787 0.15748 0.673227,24.0787 4.4055 0.673227,23.9212 4.4055 0.673227,23.9212 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [24.0787 4.4055 0.673227,24.1181 4.4055 0.633857,24.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,12,13,14,-1,11,13,12,-1,10,13,11,-1,13,15,14,-1] -coord Coordinate { point [24.0787 -0.11811 0.397637,24.0787 -0.1112 0.458962,23.9212 -0.11811 0.397637,23.9212 -0.1112 0.458962,24.0787 -0.090818 0.517211,23.9212 -0.090818 0.517211,24.0787 -0.0579849 0.569465,23.9212 -0.0579849 0.569465,24.0787 -0.0143476 0.613102,23.9212 -0.0143476 0.613102,24.0787 0.037906 0.645935,23.9212 0.037906 0.645935,23.9212 0.0961555 0.666317,24.0787 0.0961555 0.666317,23.9212 0.15748 0.673227,24.0787 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [24.0787 -0.11811 -1.09055,24.0787 -0.11811 0.397637,23.9212 -0.11811 0.397637,23.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [24.1181 -0.07874 -1.09055,24.0787 -0.11811 -1.09055,24.0787 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [23.8818 4.4055 0.633857,23.9212 4.4055 0.673227,23.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [23.9212 -0.11811 -1.09055,23.8818 -0.07874 -1.09055,23.9212 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [23.9212 4.4055 0.673227,24.0787 4.4055 0.673227,24.0787 4.44487 0.633857,23.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [25.0787 0.119097 0.406398,25.0787 0.11811 0.397637,24.9212 0.11811 0.397637,24.9212 0.119097 0.406398,25.0787 0.122009 0.414719,24.9212 0.122009 0.414719,25.0787 0.126699 0.422184,24.9212 0.126699 0.422184,25.0787 0.132933 0.428418,24.9212 0.132933 0.428418,25.0787 0.140398 0.433108,24.9212 0.140398 0.433108,25.0787 0.148719 0.43602,24.9212 0.148719 0.43602,25.0787 0.15748 0.437007,24.9212 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [25.0787 0.11811 0.397637,25.0787 0.11811 -1.09055,24.9212 0.11811 0.397637,24.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [25.1181 0.15748 0.476377,25.0984 0.134881 0.452197,25.0787 0.15748 0.437007,25.0787 0.148719 0.43602,25.0787 0.140398 0.433108,25.0787 0.132933 0.428418,25.1181 0.139959 0.474403,25.1181 0.123316 0.468579,25.1181 0.108386 0.459198,25.0984 0.115722 0.439395,25.0787 0.126699 0.422184,25.1181 0.0959186 0.446731,25.0984 0.10292 0.420236,25.0787 0.122009 0.414719,25.0787 0.119097 0.406398,25.0787 0.11811 0.397637,25.1181 0.07874 0.397637,25.1181 0.0865377 0.431801,25.1181 0.0807142 0.415158] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [24.8818 0.07874 0.397637,24.9015 0.10292 0.420236,24.9212 0.11811 0.397637,24.9212 0.119097 0.406398,24.9212 0.122009 0.414719,24.9212 0.126699 0.422184,24.8818 0.0807142 0.415158,24.8818 0.0865377 0.431801,24.8818 0.0959186 0.446731,24.9015 0.115722 0.439395,24.9212 0.132933 0.428418,24.8818 0.108386 0.459198,24.9015 0.134881 0.452197,24.9212 0.140398 0.433108,24.9212 0.148719 0.43602,24.9212 0.15748 0.437007,24.8818 0.15748 0.476377,24.8818 0.123316 0.468579,24.8818 0.139959 0.474403] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [25.0787 4.4055 0.437007,25.0787 0.15748 0.437007,24.9212 0.15748 0.437007,24.9212 4.4055 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [25.1181 0.07874 0.397637,25.1181 0.07874 -1.09055,25.0787 0.11811 0.397637,25.0787 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [24.9212 0.11811 -1.09055,24.8818 0.07874 0.397637,24.9212 0.11811 0.397637,24.8818 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [24.9212 0.07874 -1.12992,25.0787 0.11811 -1.09055,25.0787 0.07874 -1.12992,24.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [25.1181 4.4055 0.476377,25.1181 0.15748 0.476377,25.0787 4.4055 0.437007,25.0787 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,0,2,-1,4,5,0,-1,4,0,3,-1,6,7,5,-1,6,5,4,-1,8,9,7,-1,8,7,6,-1,10,9,8,-1,11,10,12,-1,11,9,10,-1,13,12,14,-1,13,11,12,-1,15,13,14,-1,16,14,17,-1,16,15,14,-1,18,16,17,-1,19,16,18,-1] -coord Coordinate { point [25.1181 -0.07874 0.397637,25.1181 -0.07874 -1.09055,25.1181 0.07874 -1.09055,25.1181 0.07874 0.397637,25.1181 0.0807142 0.415158,25.1181 -0.0728175 0.450201,25.1181 0.0865377 0.431801,25.1181 -0.0553469 0.500129,25.1181 0.0959186 0.446731,25.1181 -0.0272042 0.544918,25.1181 0.108386 0.459198,25.1181 0.0101992 0.582321,25.1181 0.123316 0.468579,25.1181 0.054988 0.610464,25.1181 0.139959 0.474403,25.1181 0.104916 0.627934,25.1181 0.15748 0.633857,25.1181 0.15748 0.476377,25.1181 4.4055 0.476377,25.1181 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,4,5,0,-1,0,5,1,-1,6,7,4,-1,4,7,5,-1,8,9,6,-1,6,9,7,-1,8,10,9,-1,10,11,12,-1,8,11,10,-1,12,13,14,-1,11,13,12,-1,13,15,14,-1,14,16,17,-1,15,16,14,-1,16,18,17,-1,16,19,18,-1] -coord Coordinate { point [24.8818 -0.07874 0.397637,24.8818 0.07874 0.397637,24.8818 -0.07874 -1.09055,24.8818 0.07874 -1.09055,24.8818 -0.0728175 0.450201,24.8818 0.0807142 0.415158,24.8818 -0.0553469 0.500129,24.8818 0.0865377 0.431801,24.8818 -0.0272042 0.544918,24.8818 0.0959186 0.446731,24.8818 0.108386 0.459198,24.8818 0.0101992 0.582321,24.8818 0.123316 0.468579,24.8818 0.054988 0.610464,24.8818 0.139959 0.474403,24.8818 0.104916 0.627934,24.8818 0.15748 0.633857,24.8818 0.15748 0.476377,24.8818 4.4055 0.476377,24.8818 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [24.8818 0.15748 0.476377,24.9212 4.4055 0.437007,24.9212 0.15748 0.437007,24.8818 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [24.9212 4.4055 0.437007,25.0787 4.44487 0.476377,25.0787 4.4055 0.437007,24.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [25.0787 0.11811 -1.09055,25.1181 0.07874 -1.09055,25.0787 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [24.8818 0.07874 -1.09055,24.9212 0.11811 -1.09055,24.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [25.0787 0.07874 -1.12992,25.0787 -0.07874 -1.12992,24.9212 -0.07874 -1.12992,24.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [25.0787 4.4055 0.437007,25.0787 4.44487 0.476377,25.1181 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [25.0787 0.15748 0.673227,25.1181 4.4055 0.633857,25.0787 4.4055 0.673227,25.1181 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [25.1181 4.4055 0.633857,25.1181 4.4055 0.476377,25.0787 4.44487 0.476377,25.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [25.1181 0.104916 0.627934,25.1181 0.15748 0.633857,25.0787 0.15748 0.673227,25.0787 0.0961555 0.666317,25.1181 0.054988 0.610464,25.0787 0.037906 0.645935,25.1181 0.0101992 0.582321,25.0787 -0.0143476 0.613102,25.1181 -0.0272042 0.544918,25.0787 -0.0579849 0.569465,25.1181 -0.0553469 0.500129,25.0787 -0.090818 0.517211,25.1181 -0.0728175 0.450201,25.0787 -0.1112 0.458962,25.1181 -0.07874 0.397637,25.0787 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [25.0787 -0.11811 -1.09055,25.1181 -0.07874 0.397637,25.0787 -0.11811 0.397637,25.1181 -0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [25.0787 0.07874 -1.12992,25.1181 -0.07874 -1.09055,25.0787 -0.07874 -1.12992,25.1181 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [24.8818 4.4055 0.633857,24.9212 0.15748 0.673227,24.9212 4.4055 0.673227,24.8818 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [24.8818 4.4055 0.476377,24.8818 4.4055 0.633857,24.9212 4.44487 0.476377,24.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1] -coord Coordinate { point [24.8818 0.15748 0.633857,24.8818 0.104916 0.627934,24.9212 0.15748 0.673227,24.9212 0.0961555 0.666317,24.8818 0.054988 0.610464,24.9212 0.037906 0.645935,24.8818 0.0101992 0.582321,24.9212 -0.0143476 0.613102,24.8818 -0.0272042 0.544918,24.9212 -0.0579849 0.569465,24.8818 -0.0553469 0.500129,24.9212 -0.090818 0.517211,24.8818 -0.0728175 0.450201,24.9212 -0.1112 0.458962,24.8818 -0.07874 0.397637,24.9212 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [24.8818 -0.07874 0.397637,24.8818 -0.07874 -1.09055,24.9212 -0.11811 0.397637,24.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [24.8818 -0.07874 -1.09055,24.9212 0.07874 -1.12992,24.9212 -0.07874 -1.12992,24.8818 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [24.9212 4.4055 0.437007,24.8818 4.4055 0.476377,24.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [25.0787 4.44487 0.633857,25.0787 4.44487 0.476377,24.9212 4.44487 0.476377,24.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [24.9212 -0.07874 -1.12992,25.0787 -0.07874 -1.12992,25.0787 -0.11811 -1.09055,24.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [25.0787 0.15748 0.673227,25.0787 4.4055 0.673227,24.9212 4.4055 0.673227,24.9212 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [25.0787 4.4055 0.673227,25.1181 4.4055 0.633857,25.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,12,13,14,-1,11,13,12,-1,10,13,11,-1,13,15,14,-1] -coord Coordinate { point [25.0787 -0.11811 0.397637,25.0787 -0.1112 0.458962,24.9212 -0.11811 0.397637,24.9212 -0.1112 0.458962,25.0787 -0.090818 0.517211,24.9212 -0.090818 0.517211,25.0787 -0.0579849 0.569465,24.9212 -0.0579849 0.569465,25.0787 -0.0143476 0.613102,24.9212 -0.0143476 0.613102,25.0787 0.037906 0.645935,24.9212 0.037906 0.645935,24.9212 0.0961555 0.666317,25.0787 0.0961555 0.666317,24.9212 0.15748 0.673227,25.0787 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [25.0787 -0.11811 -1.09055,25.0787 -0.11811 0.397637,24.9212 -0.11811 0.397637,24.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [25.1181 -0.07874 -1.09055,25.0787 -0.11811 -1.09055,25.0787 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [24.8818 4.4055 0.633857,24.9212 4.4055 0.673227,24.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [24.9212 -0.11811 -1.09055,24.8818 -0.07874 -1.09055,24.9212 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [24.9212 4.4055 0.673227,25.0787 4.4055 0.673227,25.0787 4.44487 0.633857,24.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [26.0787 0.119097 0.406398,26.0787 0.11811 0.397637,25.9212 0.11811 0.397637,25.9212 0.119097 0.406398,26.0787 0.122009 0.414719,25.9212 0.122009 0.414719,26.0787 0.126699 0.422184,25.9212 0.126699 0.422184,26.0787 0.132933 0.428418,25.9212 0.132933 0.428418,26.0787 0.140398 0.433108,25.9212 0.140398 0.433108,26.0787 0.148719 0.43602,25.9212 0.148719 0.43602,26.0787 0.15748 0.437007,25.9212 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [26.0787 0.11811 0.397637,26.0787 0.11811 -1.09055,25.9212 0.11811 0.397637,25.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [26.1181 0.15748 0.476377,26.0984 0.134881 0.452197,26.0787 0.15748 0.437007,26.0787 0.148719 0.43602,26.0787 0.140398 0.433108,26.0787 0.132933 0.428418,26.1181 0.139959 0.474403,26.1181 0.123316 0.468579,26.1181 0.108386 0.459198,26.0984 0.115722 0.439395,26.0787 0.126699 0.422184,26.1181 0.0959186 0.446731,26.0984 0.10292 0.420236,26.0787 0.122009 0.414719,26.0787 0.119097 0.406398,26.0787 0.11811 0.397637,26.1181 0.07874 0.397637,26.1181 0.0865377 0.431801,26.1181 0.0807142 0.415158] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [25.8818 0.07874 0.397637,25.9015 0.10292 0.420236,25.9212 0.11811 0.397637,25.9212 0.119097 0.406398,25.9212 0.122009 0.414719,25.9212 0.126699 0.422184,25.8818 0.0807142 0.415158,25.8818 0.0865377 0.431801,25.8818 0.0959186 0.446731,25.9015 0.115722 0.439395,25.9212 0.132933 0.428418,25.8818 0.108386 0.459198,25.9015 0.134881 0.452197,25.9212 0.140398 0.433108,25.9212 0.148719 0.43602,25.9212 0.15748 0.437007,25.8818 0.15748 0.476377,25.8818 0.123316 0.468579,25.8818 0.139959 0.474403] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [26.0787 4.4055 0.437007,26.0787 0.15748 0.437007,25.9212 0.15748 0.437007,25.9212 4.4055 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [26.1181 0.07874 0.397637,26.1181 0.07874 -1.09055,26.0787 0.11811 0.397637,26.0787 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [25.9212 0.11811 -1.09055,25.8818 0.07874 0.397637,25.9212 0.11811 0.397637,25.8818 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [25.9212 0.07874 -1.12992,26.0787 0.11811 -1.09055,26.0787 0.07874 -1.12992,25.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [26.1181 4.4055 0.476377,26.1181 0.15748 0.476377,26.0787 4.4055 0.437007,26.0787 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,0,2,-1,4,5,0,-1,4,0,3,-1,6,7,5,-1,6,5,4,-1,8,9,7,-1,8,7,6,-1,10,9,8,-1,11,10,12,-1,11,9,10,-1,13,12,14,-1,13,11,12,-1,15,13,14,-1,16,14,17,-1,16,15,14,-1,18,16,17,-1,19,16,18,-1] -coord Coordinate { point [26.1181 -0.07874 0.397637,26.1181 -0.07874 -1.09055,26.1181 0.07874 -1.09055,26.1181 0.07874 0.397637,26.1181 0.0807142 0.415158,26.1181 -0.0728175 0.450201,26.1181 0.0865377 0.431801,26.1181 -0.0553469 0.500129,26.1181 0.0959186 0.446731,26.1181 -0.0272042 0.544918,26.1181 0.108386 0.459198,26.1181 0.0101992 0.582321,26.1181 0.123316 0.468579,26.1181 0.054988 0.610464,26.1181 0.139959 0.474403,26.1181 0.104916 0.627934,26.1181 0.15748 0.633857,26.1181 0.15748 0.476377,26.1181 4.4055 0.476377,26.1181 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,4,5,0,-1,0,5,1,-1,6,7,4,-1,4,7,5,-1,8,9,6,-1,6,9,7,-1,8,10,9,-1,10,11,12,-1,8,11,10,-1,12,13,14,-1,11,13,12,-1,13,15,14,-1,14,16,17,-1,15,16,14,-1,16,18,17,-1,16,19,18,-1] -coord Coordinate { point [25.8818 -0.07874 0.397637,25.8818 0.07874 0.397637,25.8818 -0.07874 -1.09055,25.8818 0.07874 -1.09055,25.8818 -0.0728175 0.450201,25.8818 0.0807142 0.415158,25.8818 -0.0553469 0.500129,25.8818 0.0865377 0.431801,25.8818 -0.0272042 0.544918,25.8818 0.0959186 0.446731,25.8818 0.108386 0.459198,25.8818 0.0101992 0.582321,25.8818 0.123316 0.468579,25.8818 0.054988 0.610464,25.8818 0.139959 0.474403,25.8818 0.104916 0.627934,25.8818 0.15748 0.633857,25.8818 0.15748 0.476377,25.8818 4.4055 0.476377,25.8818 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [25.8818 0.15748 0.476377,25.9212 4.4055 0.437007,25.9212 0.15748 0.437007,25.8818 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [25.9212 4.4055 0.437007,26.0787 4.44487 0.476377,26.0787 4.4055 0.437007,25.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [26.0787 0.11811 -1.09055,26.1181 0.07874 -1.09055,26.0787 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [25.8818 0.07874 -1.09055,25.9212 0.11811 -1.09055,25.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [26.0787 0.07874 -1.12992,26.0787 -0.07874 -1.12992,25.9212 -0.07874 -1.12992,25.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [26.0787 4.4055 0.437007,26.0787 4.44487 0.476377,26.1181 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [26.0787 0.15748 0.673227,26.1181 4.4055 0.633857,26.0787 4.4055 0.673227,26.1181 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [26.1181 4.4055 0.633857,26.1181 4.4055 0.476377,26.0787 4.44487 0.476377,26.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [26.1181 0.104916 0.627934,26.1181 0.15748 0.633857,26.0787 0.15748 0.673227,26.0787 0.0961555 0.666317,26.1181 0.054988 0.610464,26.0787 0.037906 0.645935,26.1181 0.0101992 0.582321,26.0787 -0.0143476 0.613102,26.1181 -0.0272042 0.544918,26.0787 -0.0579849 0.569465,26.1181 -0.0553469 0.500129,26.0787 -0.090818 0.517211,26.1181 -0.0728175 0.450201,26.0787 -0.1112 0.458962,26.1181 -0.07874 0.397637,26.0787 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [26.0787 -0.11811 -1.09055,26.1181 -0.07874 0.397637,26.0787 -0.11811 0.397637,26.1181 -0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [26.0787 0.07874 -1.12992,26.1181 -0.07874 -1.09055,26.0787 -0.07874 -1.12992,26.1181 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [25.8818 4.4055 0.633857,25.9212 0.15748 0.673227,25.9212 4.4055 0.673227,25.8818 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [25.8818 4.4055 0.476377,25.8818 4.4055 0.633857,25.9212 4.44487 0.476377,25.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1] -coord Coordinate { point [25.8818 0.15748 0.633857,25.8818 0.104916 0.627934,25.9212 0.15748 0.673227,25.9212 0.0961555 0.666317,25.8818 0.054988 0.610464,25.9212 0.037906 0.645935,25.8818 0.0101992 0.582321,25.9212 -0.0143476 0.613102,25.8818 -0.0272042 0.544918,25.9212 -0.0579849 0.569465,25.8818 -0.0553469 0.500129,25.9212 -0.090818 0.517211,25.8818 -0.0728175 0.450201,25.9212 -0.1112 0.458962,25.8818 -0.07874 0.397637,25.9212 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [25.8818 -0.07874 0.397637,25.8818 -0.07874 -1.09055,25.9212 -0.11811 0.397637,25.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [25.8818 -0.07874 -1.09055,25.9212 0.07874 -1.12992,25.9212 -0.07874 -1.12992,25.8818 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [25.9212 4.4055 0.437007,25.8818 4.4055 0.476377,25.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [26.0787 4.44487 0.633857,26.0787 4.44487 0.476377,25.9212 4.44487 0.476377,25.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [25.9212 -0.07874 -1.12992,26.0787 -0.07874 -1.12992,26.0787 -0.11811 -1.09055,25.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [25.9212 0.15748 0.673227,26.0787 4.4055 0.673227,25.9212 4.4055 0.673227,26.0787 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [26.0787 4.4055 0.673227,26.1181 4.4055 0.633857,26.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,12,13,14,-1,11,13,12,-1,10,13,11,-1,13,15,14,-1] -coord Coordinate { point [26.0787 -0.11811 0.397637,26.0787 -0.1112 0.458962,25.9212 -0.11811 0.397637,25.9212 -0.1112 0.458962,26.0787 -0.090818 0.517211,25.9212 -0.090818 0.517211,26.0787 -0.0579849 0.569465,25.9212 -0.0579849 0.569465,26.0787 -0.0143476 0.613102,25.9212 -0.0143476 0.613102,26.0787 0.037906 0.645935,25.9212 0.037906 0.645935,25.9212 0.0961555 0.666317,26.0787 0.0961555 0.666317,25.9212 0.15748 0.673227,26.0787 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [26.0787 -0.11811 -1.09055,26.0787 -0.11811 0.397637,25.9212 -0.11811 0.397637,25.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [26.1181 -0.07874 -1.09055,26.0787 -0.11811 -1.09055,26.0787 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [25.8818 4.4055 0.633857,25.9212 4.4055 0.673227,25.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [25.9212 -0.11811 -1.09055,25.8818 -0.07874 -1.09055,25.9212 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [25.9212 4.4055 0.673227,26.0787 4.4055 0.673227,26.0787 4.44487 0.633857,25.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [27.0787 0.119097 0.406398,27.0787 0.11811 0.397637,26.9212 0.11811 0.397637,26.9212 0.119097 0.406398,27.0787 0.122009 0.414719,26.9212 0.122009 0.414719,27.0787 0.126699 0.422184,26.9212 0.126699 0.422184,27.0787 0.132933 0.428418,26.9212 0.132933 0.428418,27.0787 0.140398 0.433108,26.9212 0.140398 0.433108,27.0787 0.148719 0.43602,26.9212 0.148719 0.43602,27.0787 0.15748 0.437007,26.9212 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [27.0787 0.11811 0.397637,27.0787 0.11811 -1.09055,26.9212 0.11811 0.397637,26.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [27.1181 0.15748 0.476377,27.0984 0.134881 0.452197,27.0787 0.15748 0.437007,27.0787 0.148719 0.43602,27.0787 0.140398 0.433108,27.0787 0.132933 0.428418,27.1181 0.139959 0.474403,27.1181 0.123316 0.468579,27.1181 0.108386 0.459198,27.0984 0.115722 0.439395,27.0787 0.126699 0.422184,27.1181 0.0959186 0.446731,27.0984 0.10292 0.420236,27.0787 0.122009 0.414719,27.0787 0.119097 0.406398,27.0787 0.11811 0.397637,27.1181 0.07874 0.397637,27.1181 0.0865377 0.431801,27.1181 0.0807142 0.415158] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [26.8818 0.07874 0.397637,26.9015 0.10292 0.420236,26.9212 0.11811 0.397637,26.9212 0.119097 0.406398,26.9212 0.122009 0.414719,26.9212 0.126699 0.422184,26.8818 0.0807142 0.415158,26.8818 0.0865377 0.431801,26.8818 0.0959186 0.446731,26.9015 0.115722 0.439395,26.9212 0.132933 0.428418,26.8818 0.108386 0.459198,26.9015 0.134881 0.452197,26.9212 0.140398 0.433108,26.9212 0.148719 0.43602,26.9212 0.15748 0.437007,26.8818 0.15748 0.476377,26.8818 0.123316 0.468579,26.8818 0.139959 0.474403] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [27.0787 4.4055 0.437007,27.0787 0.15748 0.437007,26.9212 0.15748 0.437007,26.9212 4.4055 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [27.1181 0.07874 0.397637,27.1181 0.07874 -1.09055,27.0787 0.11811 0.397637,27.0787 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [26.9212 0.11811 -1.09055,26.8818 0.07874 0.397637,26.9212 0.11811 0.397637,26.8818 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [26.9212 0.07874 -1.12992,27.0787 0.11811 -1.09055,27.0787 0.07874 -1.12992,26.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [27.1181 4.4055 0.476377,27.1181 0.15748 0.476377,27.0787 4.4055 0.437007,27.0787 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,0,2,-1,4,5,0,-1,4,0,3,-1,6,7,5,-1,6,5,4,-1,8,9,7,-1,8,7,6,-1,10,9,8,-1,11,10,12,-1,11,9,10,-1,13,12,14,-1,13,11,12,-1,15,13,14,-1,16,14,17,-1,16,15,14,-1,18,16,17,-1,19,16,18,-1] -coord Coordinate { point [27.1181 -0.07874 0.397637,27.1181 -0.07874 -1.09055,27.1181 0.07874 -1.09055,27.1181 0.07874 0.397637,27.1181 0.0807142 0.415158,27.1181 -0.0728175 0.450201,27.1181 0.0865377 0.431801,27.1181 -0.0553469 0.500129,27.1181 0.0959186 0.446731,27.1181 -0.0272042 0.544918,27.1181 0.108386 0.459198,27.1181 0.0101992 0.582321,27.1181 0.123316 0.468579,27.1181 0.054988 0.610464,27.1181 0.139959 0.474403,27.1181 0.104916 0.627934,27.1181 0.15748 0.633857,27.1181 0.15748 0.476377,27.1181 4.4055 0.476377,27.1181 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,4,5,0,-1,0,5,1,-1,6,7,4,-1,4,7,5,-1,8,9,6,-1,6,9,7,-1,8,10,9,-1,10,11,12,-1,8,11,10,-1,12,13,14,-1,11,13,12,-1,13,15,14,-1,14,16,17,-1,15,16,14,-1,16,18,17,-1,16,19,18,-1] -coord Coordinate { point [26.8818 -0.07874 0.397637,26.8818 0.07874 0.397637,26.8818 -0.07874 -1.09055,26.8818 0.07874 -1.09055,26.8818 -0.0728175 0.450201,26.8818 0.0807142 0.415158,26.8818 -0.0553469 0.500129,26.8818 0.0865377 0.431801,26.8818 -0.0272042 0.544918,26.8818 0.0959186 0.446731,26.8818 0.108386 0.459198,26.8818 0.0101992 0.582321,26.8818 0.123316 0.468579,26.8818 0.054988 0.610464,26.8818 0.139959 0.474403,26.8818 0.104916 0.627934,26.8818 0.15748 0.633857,26.8818 0.15748 0.476377,26.8818 4.4055 0.476377,26.8818 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [26.8818 0.15748 0.476377,26.9212 4.4055 0.437007,26.9212 0.15748 0.437007,26.8818 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [26.9212 4.4055 0.437007,27.0787 4.44487 0.476377,27.0787 4.4055 0.437007,26.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [27.0787 0.11811 -1.09055,27.1181 0.07874 -1.09055,27.0787 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [26.8818 0.07874 -1.09055,26.9212 0.11811 -1.09055,26.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [27.0787 0.07874 -1.12992,27.0787 -0.07874 -1.12992,26.9212 -0.07874 -1.12992,26.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [27.0787 4.4055 0.437007,27.0787 4.44487 0.476377,27.1181 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [27.0787 0.15748 0.673227,27.1181 4.4055 0.633857,27.0787 4.4055 0.673227,27.1181 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [27.1181 4.4055 0.633857,27.1181 4.4055 0.476377,27.0787 4.44487 0.476377,27.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [27.1181 0.104916 0.627934,27.1181 0.15748 0.633857,27.0787 0.15748 0.673227,27.0787 0.0961555 0.666317,27.1181 0.054988 0.610464,27.0787 0.037906 0.645935,27.1181 0.0101992 0.582321,27.0787 -0.0143476 0.613102,27.1181 -0.0272042 0.544918,27.0787 -0.0579849 0.569465,27.1181 -0.0553469 0.500129,27.0787 -0.090818 0.517211,27.1181 -0.0728175 0.450201,27.0787 -0.1112 0.458962,27.1181 -0.07874 0.397637,27.0787 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [27.0787 -0.11811 -1.09055,27.1181 -0.07874 0.397637,27.0787 -0.11811 0.397637,27.1181 -0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [27.0787 0.07874 -1.12992,27.1181 -0.07874 -1.09055,27.0787 -0.07874 -1.12992,27.1181 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [26.8818 4.4055 0.633857,26.9212 0.15748 0.673227,26.9212 4.4055 0.673227,26.8818 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [26.8818 4.4055 0.476377,26.8818 4.4055 0.633857,26.9212 4.44487 0.476377,26.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1] -coord Coordinate { point [26.8818 0.15748 0.633857,26.8818 0.104916 0.627934,26.9212 0.15748 0.673227,26.9212 0.0961555 0.666317,26.8818 0.054988 0.610464,26.9212 0.037906 0.645935,26.8818 0.0101992 0.582321,26.9212 -0.0143476 0.613102,26.8818 -0.0272042 0.544918,26.9212 -0.0579849 0.569465,26.8818 -0.0553469 0.500129,26.9212 -0.090818 0.517211,26.8818 -0.0728175 0.450201,26.9212 -0.1112 0.458962,26.8818 -0.07874 0.397637,26.9212 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [26.8818 -0.07874 0.397637,26.8818 -0.07874 -1.09055,26.9212 -0.11811 0.397637,26.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [26.8818 -0.07874 -1.09055,26.9212 0.07874 -1.12992,26.9212 -0.07874 -1.12992,26.8818 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [26.9212 4.4055 0.437007,26.8818 4.4055 0.476377,26.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [27.0787 4.44487 0.633857,27.0787 4.44487 0.476377,26.9212 4.44487 0.476377,26.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [26.9212 -0.07874 -1.12992,27.0787 -0.07874 -1.12992,27.0787 -0.11811 -1.09055,26.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [26.9212 0.15748 0.673227,27.0787 4.4055 0.673227,26.9212 4.4055 0.673227,27.0787 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [27.0787 4.4055 0.673227,27.1181 4.4055 0.633857,27.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,12,13,14,-1,11,13,12,-1,10,13,11,-1,13,15,14,-1] -coord Coordinate { point [27.0787 -0.11811 0.397637,27.0787 -0.1112 0.458962,26.9212 -0.11811 0.397637,26.9212 -0.1112 0.458962,27.0787 -0.090818 0.517211,26.9212 -0.090818 0.517211,27.0787 -0.0579849 0.569465,26.9212 -0.0579849 0.569465,27.0787 -0.0143476 0.613102,26.9212 -0.0143476 0.613102,27.0787 0.037906 0.645935,26.9212 0.037906 0.645935,26.9212 0.0961555 0.666317,27.0787 0.0961555 0.666317,26.9212 0.15748 0.673227,27.0787 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [27.0787 -0.11811 -1.09055,27.0787 -0.11811 0.397637,26.9212 -0.11811 0.397637,26.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [27.1181 -0.07874 -1.09055,27.0787 -0.11811 -1.09055,27.0787 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [26.8818 4.4055 0.633857,26.9212 4.4055 0.673227,26.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [26.9212 -0.11811 -1.09055,26.8818 -0.07874 -1.09055,26.9212 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [26.9212 4.4055 0.673227,27.0787 4.4055 0.673227,27.0787 4.44487 0.633857,26.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [28.0787 0.119097 0.406398,28.0787 0.11811 0.397637,27.9212 0.11811 0.397637,27.9212 0.119097 0.406398,28.0787 0.122009 0.414719,27.9212 0.122009 0.414719,28.0787 0.126699 0.422184,27.9212 0.126699 0.422184,28.0787 0.132933 0.428418,27.9212 0.132933 0.428418,28.0787 0.140398 0.433108,27.9212 0.140398 0.433108,28.0787 0.148719 0.43602,27.9212 0.148719 0.43602,28.0787 0.15748 0.437007,27.9212 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [28.0787 0.11811 0.397637,28.0787 0.11811 -1.09055,27.9212 0.11811 0.397637,27.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [28.1181 0.15748 0.476377,28.0984 0.134881 0.452197,28.0787 0.15748 0.437007,28.0787 0.148719 0.43602,28.0787 0.140398 0.433108,28.0787 0.132933 0.428418,28.1181 0.139959 0.474403,28.1181 0.123316 0.468579,28.1181 0.108386 0.459198,28.0984 0.115722 0.439395,28.0787 0.126699 0.422184,28.1181 0.0959186 0.446731,28.0984 0.10292 0.420236,28.0787 0.122009 0.414719,28.0787 0.119097 0.406398,28.0787 0.11811 0.397637,28.1181 0.07874 0.397637,28.1181 0.0865377 0.431801,28.1181 0.0807142 0.415158] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [27.8818 0.07874 0.397637,27.9015 0.10292 0.420236,27.9212 0.11811 0.397637,27.9212 0.119097 0.406398,27.9212 0.122009 0.414719,27.9212 0.126699 0.422184,27.8818 0.0807142 0.415158,27.8818 0.0865377 0.431801,27.8818 0.0959186 0.446731,27.9015 0.115722 0.439395,27.9212 0.132933 0.428418,27.8818 0.108386 0.459198,27.9015 0.134881 0.452197,27.9212 0.140398 0.433108,27.9212 0.148719 0.43602,27.9212 0.15748 0.437007,27.8818 0.15748 0.476377,27.8818 0.123316 0.468579,27.8818 0.139959 0.474403] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [28.0787 4.4055 0.437007,28.0787 0.15748 0.437007,27.9212 0.15748 0.437007,27.9212 4.4055 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [28.1181 0.07874 0.397637,28.1181 0.07874 -1.09055,28.0787 0.11811 0.397637,28.0787 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [27.9212 0.11811 -1.09055,27.8818 0.07874 0.397637,27.9212 0.11811 0.397637,27.8818 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [27.9212 0.07874 -1.12992,28.0787 0.11811 -1.09055,28.0787 0.07874 -1.12992,27.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [28.1181 4.4055 0.476377,28.1181 0.15748 0.476377,28.0787 4.4055 0.437007,28.0787 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,0,2,-1,4,5,0,-1,4,0,3,-1,6,7,5,-1,6,5,4,-1,8,9,7,-1,8,7,6,-1,10,9,8,-1,11,10,12,-1,11,9,10,-1,13,12,14,-1,13,11,12,-1,15,13,14,-1,16,14,17,-1,16,15,14,-1,18,16,17,-1,19,16,18,-1] -coord Coordinate { point [28.1181 -0.07874 0.397637,28.1181 -0.07874 -1.09055,28.1181 0.07874 -1.09055,28.1181 0.07874 0.397637,28.1181 0.0807142 0.415158,28.1181 -0.0728175 0.450201,28.1181 0.0865377 0.431801,28.1181 -0.0553469 0.500129,28.1181 0.0959186 0.446731,28.1181 -0.0272042 0.544918,28.1181 0.108386 0.459198,28.1181 0.0101992 0.582321,28.1181 0.123316 0.468579,28.1181 0.054988 0.610464,28.1181 0.139959 0.474403,28.1181 0.104916 0.627934,28.1181 0.15748 0.633857,28.1181 0.15748 0.476377,28.1181 4.4055 0.476377,28.1181 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,4,5,0,-1,0,5,1,-1,6,7,4,-1,4,7,5,-1,8,9,6,-1,6,9,7,-1,8,10,9,-1,10,11,12,-1,8,11,10,-1,12,13,14,-1,11,13,12,-1,13,15,14,-1,14,16,17,-1,15,16,14,-1,16,18,17,-1,16,19,18,-1] -coord Coordinate { point [27.8818 -0.07874 0.397637,27.8818 0.07874 0.397637,27.8818 -0.07874 -1.09055,27.8818 0.07874 -1.09055,27.8818 -0.0728175 0.450201,27.8818 0.0807142 0.415158,27.8818 -0.0553469 0.500129,27.8818 0.0865377 0.431801,27.8818 -0.0272042 0.544918,27.8818 0.0959186 0.446731,27.8818 0.108386 0.459198,27.8818 0.0101992 0.582321,27.8818 0.123316 0.468579,27.8818 0.054988 0.610464,27.8818 0.139959 0.474403,27.8818 0.104916 0.627934,27.8818 0.15748 0.633857,27.8818 0.15748 0.476377,27.8818 4.4055 0.476377,27.8818 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [27.8818 0.15748 0.476377,27.9212 4.4055 0.437007,27.9212 0.15748 0.437007,27.8818 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [27.9212 4.4055 0.437007,28.0787 4.44487 0.476377,28.0787 4.4055 0.437007,27.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [28.0787 0.11811 -1.09055,28.1181 0.07874 -1.09055,28.0787 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [27.8818 0.07874 -1.09055,27.9212 0.11811 -1.09055,27.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [28.0787 0.07874 -1.12992,28.0787 -0.07874 -1.12992,27.9212 -0.07874 -1.12992,27.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [28.0787 4.4055 0.437007,28.0787 4.44487 0.476377,28.1181 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [28.0787 0.15748 0.673227,28.1181 4.4055 0.633857,28.0787 4.4055 0.673227,28.1181 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [28.1181 4.4055 0.633857,28.1181 4.4055 0.476377,28.0787 4.44487 0.476377,28.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [28.1181 0.104916 0.627934,28.1181 0.15748 0.633857,28.0787 0.15748 0.673227,28.0787 0.0961555 0.666317,28.1181 0.054988 0.610464,28.0787 0.037906 0.645935,28.1181 0.0101992 0.582321,28.0787 -0.0143476 0.613102,28.1181 -0.0272042 0.544918,28.0787 -0.0579849 0.569465,28.1181 -0.0553469 0.500129,28.0787 -0.090818 0.517211,28.1181 -0.0728175 0.450201,28.0787 -0.1112 0.458962,28.1181 -0.07874 0.397637,28.0787 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [28.0787 -0.11811 -1.09055,28.1181 -0.07874 0.397637,28.0787 -0.11811 0.397637,28.1181 -0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [28.0787 0.07874 -1.12992,28.1181 -0.07874 -1.09055,28.0787 -0.07874 -1.12992,28.1181 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [27.8818 4.4055 0.633857,27.9212 0.15748 0.673227,27.9212 4.4055 0.673227,27.8818 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [27.8818 4.4055 0.476377,27.8818 4.4055 0.633857,27.9212 4.44487 0.476377,27.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1] -coord Coordinate { point [27.8818 0.15748 0.633857,27.8818 0.104916 0.627934,27.9212 0.15748 0.673227,27.9212 0.0961555 0.666317,27.8818 0.054988 0.610464,27.9212 0.037906 0.645935,27.8818 0.0101992 0.582321,27.9212 -0.0143476 0.613102,27.8818 -0.0272042 0.544918,27.9212 -0.0579849 0.569465,27.8818 -0.0553469 0.500129,27.9212 -0.090818 0.517211,27.8818 -0.0728175 0.450201,27.9212 -0.1112 0.458962,27.8818 -0.07874 0.397637,27.9212 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [27.8818 -0.07874 0.397637,27.8818 -0.07874 -1.09055,27.9212 -0.11811 0.397637,27.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [27.8818 -0.07874 -1.09055,27.9212 0.07874 -1.12992,27.9212 -0.07874 -1.12992,27.8818 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [27.9212 4.4055 0.437007,27.8818 4.4055 0.476377,27.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [28.0787 4.44487 0.633857,28.0787 4.44487 0.476377,27.9212 4.44487 0.476377,27.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [27.9212 -0.07874 -1.12992,28.0787 -0.07874 -1.12992,28.0787 -0.11811 -1.09055,27.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [27.9212 0.15748 0.673227,28.0787 4.4055 0.673227,27.9212 4.4055 0.673227,28.0787 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [28.0787 4.4055 0.673227,28.1181 4.4055 0.633857,28.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,12,13,14,-1,11,13,12,-1,10,13,11,-1,13,15,14,-1] -coord Coordinate { point [28.0787 -0.11811 0.397637,28.0787 -0.1112 0.458962,27.9212 -0.11811 0.397637,27.9212 -0.1112 0.458962,28.0787 -0.090818 0.517211,27.9212 -0.090818 0.517211,28.0787 -0.0579849 0.569465,27.9212 -0.0579849 0.569465,28.0787 -0.0143476 0.613102,27.9212 -0.0143476 0.613102,28.0787 0.037906 0.645935,27.9212 0.037906 0.645935,27.9212 0.0961555 0.666317,28.0787 0.0961555 0.666317,27.9212 0.15748 0.673227,28.0787 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [28.0787 -0.11811 -1.09055,28.0787 -0.11811 0.397637,27.9212 -0.11811 0.397637,27.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [28.1181 -0.07874 -1.09055,28.0787 -0.11811 -1.09055,28.0787 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [27.8818 4.4055 0.633857,27.9212 4.4055 0.673227,27.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [27.9212 -0.11811 -1.09055,27.8818 -0.07874 -1.09055,27.9212 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [27.9212 4.4055 0.673227,28.0787 4.4055 0.673227,28.0787 4.44487 0.633857,27.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [29.0787 0.119097 0.406398,29.0787 0.11811 0.397637,28.9212 0.11811 0.397637,28.9212 0.119097 0.406398,29.0787 0.122009 0.414719,28.9212 0.122009 0.414719,29.0787 0.126699 0.422184,28.9212 0.126699 0.422184,29.0787 0.132933 0.428418,28.9212 0.132933 0.428418,29.0787 0.140398 0.433108,28.9212 0.140398 0.433108,29.0787 0.148719 0.43602,28.9212 0.148719 0.43602,29.0787 0.15748 0.437007,28.9212 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [29.0787 0.11811 0.397637,29.0787 0.11811 -1.09055,28.9212 0.11811 0.397637,28.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [29.1181 0.15748 0.476377,29.0984 0.134881 0.452197,29.0787 0.15748 0.437007,29.0787 0.148719 0.43602,29.0787 0.140398 0.433108,29.0787 0.132933 0.428418,29.1181 0.139959 0.474403,29.1181 0.123316 0.468579,29.1181 0.108386 0.459198,29.0984 0.115722 0.439395,29.0787 0.126699 0.422184,29.1181 0.0959186 0.446731,29.0984 0.10292 0.420236,29.0787 0.122009 0.414719,29.0787 0.119097 0.406398,29.0787 0.11811 0.397637,29.1181 0.07874 0.397637,29.1181 0.0865377 0.431801,29.1181 0.0807142 0.415158] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [28.8818 0.07874 0.397637,28.9015 0.10292 0.420236,28.9212 0.11811 0.397637,28.9212 0.119097 0.406398,28.9212 0.122009 0.414719,28.9212 0.126699 0.422184,28.8818 0.0807142 0.415158,28.8818 0.0865377 0.431801,28.8818 0.0959186 0.446731,28.9015 0.115722 0.439395,28.9212 0.132933 0.428418,28.8818 0.108386 0.459198,28.9015 0.134881 0.452197,28.9212 0.140398 0.433108,28.9212 0.148719 0.43602,28.9212 0.15748 0.437007,28.8818 0.15748 0.476377,28.8818 0.123316 0.468579,28.8818 0.139959 0.474403] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [29.0787 4.4055 0.437007,29.0787 0.15748 0.437007,28.9212 0.15748 0.437007,28.9212 4.4055 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [29.1181 0.07874 0.397637,29.1181 0.07874 -1.09055,29.0787 0.11811 0.397637,29.0787 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [28.9212 0.11811 -1.09055,28.8818 0.07874 0.397637,28.9212 0.11811 0.397637,28.8818 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [28.9212 0.07874 -1.12992,29.0787 0.11811 -1.09055,29.0787 0.07874 -1.12992,28.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [29.1181 4.4055 0.476377,29.1181 0.15748 0.476377,29.0787 4.4055 0.437007,29.0787 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,0,2,-1,4,5,0,-1,4,0,3,-1,6,7,5,-1,6,5,4,-1,8,9,7,-1,8,7,6,-1,10,9,8,-1,11,10,12,-1,11,9,10,-1,13,12,14,-1,13,11,12,-1,15,13,14,-1,16,14,17,-1,16,15,14,-1,18,16,17,-1,19,16,18,-1] -coord Coordinate { point [29.1181 -0.07874 0.397637,29.1181 -0.07874 -1.09055,29.1181 0.07874 -1.09055,29.1181 0.07874 0.397637,29.1181 0.0807142 0.415158,29.1181 -0.0728175 0.450201,29.1181 0.0865377 0.431801,29.1181 -0.0553469 0.500129,29.1181 0.0959186 0.446731,29.1181 -0.0272042 0.544918,29.1181 0.108386 0.459198,29.1181 0.0101992 0.582321,29.1181 0.123316 0.468579,29.1181 0.054988 0.610464,29.1181 0.139959 0.474403,29.1181 0.104916 0.627934,29.1181 0.15748 0.633857,29.1181 0.15748 0.476377,29.1181 4.4055 0.476377,29.1181 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,4,5,0,-1,0,5,1,-1,6,7,4,-1,4,7,5,-1,8,9,6,-1,6,9,7,-1,8,10,9,-1,10,11,12,-1,8,11,10,-1,12,13,14,-1,11,13,12,-1,13,15,14,-1,14,16,17,-1,15,16,14,-1,16,18,17,-1,16,19,18,-1] -coord Coordinate { point [28.8818 -0.07874 0.397637,28.8818 0.07874 0.397637,28.8818 -0.07874 -1.09055,28.8818 0.07874 -1.09055,28.8818 -0.0728175 0.450201,28.8818 0.0807142 0.415158,28.8818 -0.0553469 0.500129,28.8818 0.0865377 0.431801,28.8818 -0.0272042 0.544918,28.8818 0.0959186 0.446731,28.8818 0.108386 0.459198,28.8818 0.0101992 0.582321,28.8818 0.123316 0.468579,28.8818 0.054988 0.610464,28.8818 0.139959 0.474403,28.8818 0.104916 0.627934,28.8818 0.15748 0.633857,28.8818 0.15748 0.476377,28.8818 4.4055 0.476377,28.8818 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [28.8818 0.15748 0.476377,28.9212 4.4055 0.437007,28.9212 0.15748 0.437007,28.8818 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [28.9212 4.4055 0.437007,29.0787 4.44487 0.476377,29.0787 4.4055 0.437007,28.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [29.0787 0.11811 -1.09055,29.1181 0.07874 -1.09055,29.0787 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [28.8818 0.07874 -1.09055,28.9212 0.11811 -1.09055,28.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [29.0787 0.07874 -1.12992,29.0787 -0.07874 -1.12992,28.9212 -0.07874 -1.12992,28.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [29.0787 4.4055 0.437007,29.0787 4.44487 0.476377,29.1181 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [29.0787 0.15748 0.673227,29.1181 4.4055 0.633857,29.0787 4.4055 0.673227,29.1181 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [29.1181 4.4055 0.633857,29.1181 4.4055 0.476377,29.0787 4.44487 0.476377,29.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [29.1181 0.104916 0.627934,29.1181 0.15748 0.633857,29.0787 0.15748 0.673227,29.0787 0.0961555 0.666317,29.1181 0.054988 0.610464,29.0787 0.037906 0.645935,29.1181 0.0101992 0.582321,29.0787 -0.0143476 0.613102,29.1181 -0.0272042 0.544918,29.0787 -0.0579849 0.569465,29.1181 -0.0553469 0.500129,29.0787 -0.090818 0.517211,29.1181 -0.0728175 0.450201,29.0787 -0.1112 0.458962,29.1181 -0.07874 0.397637,29.0787 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [29.0787 -0.11811 -1.09055,29.1181 -0.07874 0.397637,29.0787 -0.11811 0.397637,29.1181 -0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [29.0787 0.07874 -1.12992,29.1181 -0.07874 -1.09055,29.0787 -0.07874 -1.12992,29.1181 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [28.8818 4.4055 0.633857,28.9212 0.15748 0.673227,28.9212 4.4055 0.673227,28.8818 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [28.8818 4.4055 0.476377,28.8818 4.4055 0.633857,28.9212 4.44487 0.476377,28.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1] -coord Coordinate { point [28.8818 0.15748 0.633857,28.8818 0.104916 0.627934,28.9212 0.15748 0.673227,28.9212 0.0961555 0.666317,28.8818 0.054988 0.610464,28.9212 0.037906 0.645935,28.8818 0.0101992 0.582321,28.9212 -0.0143476 0.613102,28.8818 -0.0272042 0.544918,28.9212 -0.0579849 0.569465,28.8818 -0.0553469 0.500129,28.9212 -0.090818 0.517211,28.8818 -0.0728175 0.450201,28.9212 -0.1112 0.458962,28.8818 -0.07874 0.397637,28.9212 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [28.8818 -0.07874 0.397637,28.8818 -0.07874 -1.09055,28.9212 -0.11811 0.397637,28.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [28.8818 -0.07874 -1.09055,28.9212 0.07874 -1.12992,28.9212 -0.07874 -1.12992,28.8818 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [28.9212 4.4055 0.437007,28.8818 4.4055 0.476377,28.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [29.0787 4.44487 0.633857,29.0787 4.44487 0.476377,28.9212 4.44487 0.476377,28.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [28.9212 -0.07874 -1.12992,29.0787 -0.07874 -1.12992,29.0787 -0.11811 -1.09055,28.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [28.9212 0.15748 0.673227,29.0787 4.4055 0.673227,28.9212 4.4055 0.673227,29.0787 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [29.0787 4.4055 0.673227,29.1181 4.4055 0.633857,29.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,12,13,14,-1,11,13,12,-1,10,13,11,-1,13,15,14,-1] -coord Coordinate { point [29.0787 -0.11811 0.397637,29.0787 -0.1112 0.458962,28.9212 -0.11811 0.397637,28.9212 -0.1112 0.458962,29.0787 -0.090818 0.517211,28.9212 -0.090818 0.517211,29.0787 -0.0579849 0.569465,28.9212 -0.0579849 0.569465,29.0787 -0.0143476 0.613102,28.9212 -0.0143476 0.613102,29.0787 0.037906 0.645935,28.9212 0.037906 0.645935,28.9212 0.0961555 0.666317,29.0787 0.0961555 0.666317,28.9212 0.15748 0.673227,29.0787 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [29.0787 -0.11811 -1.09055,29.0787 -0.11811 0.397637,28.9212 -0.11811 0.397637,28.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [29.1181 -0.07874 -1.09055,29.0787 -0.11811 -1.09055,29.0787 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [28.8818 4.4055 0.633857,28.9212 4.4055 0.673227,28.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [28.9212 -0.11811 -1.09055,28.8818 -0.07874 -1.09055,28.9212 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [28.9212 4.4055 0.673227,29.0787 4.4055 0.673227,29.0787 4.44487 0.633857,28.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [30.0787 0.119097 0.406398,30.0787 0.11811 0.397637,29.9212 0.11811 0.397637,29.9212 0.119097 0.406398,30.0787 0.122009 0.414719,29.9212 0.122009 0.414719,30.0787 0.126699 0.422184,29.9212 0.126699 0.422184,30.0787 0.132933 0.428418,29.9212 0.132933 0.428418,30.0787 0.140398 0.433108,29.9212 0.140398 0.433108,30.0787 0.148719 0.43602,29.9212 0.148719 0.43602,30.0787 0.15748 0.437007,29.9212 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [30.0787 0.11811 0.397637,30.0787 0.11811 -1.09055,29.9212 0.11811 0.397637,29.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [30.1181 0.15748 0.476377,30.0984 0.134881 0.452197,30.0787 0.15748 0.437007,30.0787 0.148719 0.43602,30.0787 0.140398 0.433108,30.0787 0.132933 0.428418,30.1181 0.139959 0.474403,30.1181 0.123316 0.468579,30.1181 0.108386 0.459198,30.0984 0.115722 0.439395,30.0787 0.126699 0.422184,30.1181 0.0959186 0.446731,30.0984 0.10292 0.420236,30.0787 0.122009 0.414719,30.0787 0.119097 0.406398,30.0787 0.11811 0.397637,30.1181 0.07874 0.397637,30.1181 0.0865377 0.431801,30.1181 0.0807142 0.415158] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [29.8818 0.07874 0.397637,29.9015 0.10292 0.420236,29.9212 0.11811 0.397637,29.9212 0.119097 0.406398,29.9212 0.122009 0.414719,29.9212 0.126699 0.422184,29.8818 0.0807142 0.415158,29.8818 0.0865377 0.431801,29.8818 0.0959186 0.446731,29.9015 0.115722 0.439395,29.9212 0.132933 0.428418,29.8818 0.108386 0.459198,29.9015 0.134881 0.452197,29.9212 0.140398 0.433108,29.9212 0.148719 0.43602,29.9212 0.15748 0.437007,29.8818 0.15748 0.476377,29.8818 0.123316 0.468579,29.8818 0.139959 0.474403] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [30.0787 4.4055 0.437007,30.0787 0.15748 0.437007,29.9212 0.15748 0.437007,29.9212 4.4055 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [30.1181 0.07874 0.397637,30.1181 0.07874 -1.09055,30.0787 0.11811 0.397637,30.0787 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [29.9212 0.11811 -1.09055,29.8818 0.07874 0.397637,29.9212 0.11811 0.397637,29.8818 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [29.9212 0.07874 -1.12992,30.0787 0.11811 -1.09055,30.0787 0.07874 -1.12992,29.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [30.1181 4.4055 0.476377,30.1181 0.15748 0.476377,30.0787 4.4055 0.437007,30.0787 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,0,2,-1,4,5,0,-1,4,0,3,-1,6,7,5,-1,6,5,4,-1,8,9,7,-1,8,7,6,-1,10,9,8,-1,11,10,12,-1,11,9,10,-1,13,12,14,-1,13,11,12,-1,15,13,14,-1,16,14,17,-1,16,15,14,-1,18,16,17,-1,19,16,18,-1] -coord Coordinate { point [30.1181 -0.07874 0.397637,30.1181 -0.07874 -1.09055,30.1181 0.07874 -1.09055,30.1181 0.07874 0.397637,30.1181 0.0807142 0.415158,30.1181 -0.0728175 0.450201,30.1181 0.0865377 0.431801,30.1181 -0.0553469 0.500129,30.1181 0.0959186 0.446731,30.1181 -0.0272042 0.544918,30.1181 0.108386 0.459198,30.1181 0.0101992 0.582321,30.1181 0.123316 0.468579,30.1181 0.054988 0.610464,30.1181 0.139959 0.474403,30.1181 0.104916 0.627934,30.1181 0.15748 0.633857,30.1181 0.15748 0.476377,30.1181 4.4055 0.476377,30.1181 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,4,5,0,-1,0,5,1,-1,6,7,4,-1,4,7,5,-1,8,9,6,-1,6,9,7,-1,8,10,9,-1,10,11,12,-1,8,11,10,-1,12,13,14,-1,11,13,12,-1,13,15,14,-1,14,16,17,-1,15,16,14,-1,16,18,17,-1,16,19,18,-1] -coord Coordinate { point [29.8818 -0.07874 0.397637,29.8818 0.07874 0.397637,29.8818 -0.07874 -1.09055,29.8818 0.07874 -1.09055,29.8818 -0.0728175 0.450201,29.8818 0.0807142 0.415158,29.8818 -0.0553469 0.500129,29.8818 0.0865377 0.431801,29.8818 -0.0272042 0.544918,29.8818 0.0959186 0.446731,29.8818 0.108386 0.459198,29.8818 0.0101992 0.582321,29.8818 0.123316 0.468579,29.8818 0.054988 0.610464,29.8818 0.139959 0.474403,29.8818 0.104916 0.627934,29.8818 0.15748 0.633857,29.8818 0.15748 0.476377,29.8818 4.4055 0.476377,29.8818 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [29.8818 0.15748 0.476377,29.9212 4.4055 0.437007,29.9212 0.15748 0.437007,29.8818 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [29.9212 4.4055 0.437007,30.0787 4.44487 0.476377,30.0787 4.4055 0.437007,29.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [30.0787 0.11811 -1.09055,30.1181 0.07874 -1.09055,30.0787 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [29.8818 0.07874 -1.09055,29.9212 0.11811 -1.09055,29.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [30.0787 0.07874 -1.12992,30.0787 -0.07874 -1.12992,29.9212 -0.07874 -1.12992,29.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [30.0787 4.4055 0.437007,30.0787 4.44487 0.476377,30.1181 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [30.0787 0.15748 0.673227,30.1181 4.4055 0.633857,30.0787 4.4055 0.673227,30.1181 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [30.1181 4.4055 0.633857,30.1181 4.4055 0.476377,30.0787 4.44487 0.476377,30.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [30.1181 0.104916 0.627934,30.1181 0.15748 0.633857,30.0787 0.15748 0.673227,30.0787 0.0961555 0.666317,30.1181 0.054988 0.610464,30.0787 0.037906 0.645935,30.1181 0.0101992 0.582321,30.0787 -0.0143476 0.613102,30.1181 -0.0272042 0.544918,30.0787 -0.0579849 0.569465,30.1181 -0.0553469 0.500129,30.0787 -0.090818 0.517211,30.1181 -0.0728175 0.450201,30.0787 -0.1112 0.458962,30.1181 -0.07874 0.397637,30.0787 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [30.0787 -0.11811 -1.09055,30.1181 -0.07874 0.397637,30.0787 -0.11811 0.397637,30.1181 -0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [30.0787 0.07874 -1.12992,30.1181 -0.07874 -1.09055,30.0787 -0.07874 -1.12992,30.1181 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [29.8818 4.4055 0.633857,29.9212 0.15748 0.673227,29.9212 4.4055 0.673227,29.8818 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [29.8818 4.4055 0.476377,29.8818 4.4055 0.633857,29.9212 4.44487 0.476377,29.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1] -coord Coordinate { point [29.8818 0.15748 0.633857,29.8818 0.104916 0.627934,29.9212 0.15748 0.673227,29.9212 0.0961555 0.666317,29.8818 0.054988 0.610464,29.9212 0.037906 0.645935,29.8818 0.0101992 0.582321,29.9212 -0.0143476 0.613102,29.8818 -0.0272042 0.544918,29.9212 -0.0579849 0.569465,29.8818 -0.0553469 0.500129,29.9212 -0.090818 0.517211,29.8818 -0.0728175 0.450201,29.9212 -0.1112 0.458962,29.8818 -0.07874 0.397637,29.9212 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [29.8818 -0.07874 0.397637,29.8818 -0.07874 -1.09055,29.9212 -0.11811 0.397637,29.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [29.8818 -0.07874 -1.09055,29.9212 0.07874 -1.12992,29.9212 -0.07874 -1.12992,29.8818 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [29.9212 4.4055 0.437007,29.8818 4.4055 0.476377,29.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [30.0787 4.44487 0.633857,30.0787 4.44487 0.476377,29.9212 4.44487 0.476377,29.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [29.9212 -0.07874 -1.12992,30.0787 -0.07874 -1.12992,30.0787 -0.11811 -1.09055,29.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [29.9212 0.15748 0.673227,30.0787 4.4055 0.673227,29.9212 4.4055 0.673227,30.0787 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [30.0787 4.4055 0.673227,30.1181 4.4055 0.633857,30.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,12,13,14,-1,11,13,12,-1,10,13,11,-1,13,15,14,-1] -coord Coordinate { point [30.0787 -0.11811 0.397637,30.0787 -0.1112 0.458962,29.9212 -0.11811 0.397637,29.9212 -0.1112 0.458962,30.0787 -0.090818 0.517211,29.9212 -0.090818 0.517211,30.0787 -0.0579849 0.569465,29.9212 -0.0579849 0.569465,30.0787 -0.0143476 0.613102,29.9212 -0.0143476 0.613102,30.0787 0.037906 0.645935,29.9212 0.037906 0.645935,29.9212 0.0961555 0.666317,30.0787 0.0961555 0.666317,29.9212 0.15748 0.673227,30.0787 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [30.0787 -0.11811 -1.09055,30.0787 -0.11811 0.397637,29.9212 -0.11811 0.397637,29.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [30.1181 -0.07874 -1.09055,30.0787 -0.11811 -1.09055,30.0787 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [29.8818 4.4055 0.633857,29.9212 4.4055 0.673227,29.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [29.9212 -0.11811 -1.09055,29.8818 -0.07874 -1.09055,29.9212 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [29.9212 4.4055 0.673227,30.0787 4.4055 0.673227,30.0787 4.44487 0.633857,29.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [31.0787 0.119097 0.406398,31.0787 0.11811 0.397637,30.9212 0.11811 0.397637,30.9212 0.119097 0.406398,31.0787 0.122009 0.414719,30.9212 0.122009 0.414719,31.0787 0.126699 0.422184,30.9212 0.126699 0.422184,31.0787 0.132933 0.428418,30.9212 0.132933 0.428418,31.0787 0.140398 0.433108,30.9212 0.140398 0.433108,31.0787 0.148719 0.43602,30.9212 0.148719 0.43602,31.0787 0.15748 0.437007,30.9212 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [31.0787 0.11811 0.397637,31.0787 0.11811 -1.09055,30.9212 0.11811 0.397637,30.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [31.118 0.15748 0.476377,31.0984 0.134881 0.452197,31.0787 0.15748 0.437007,31.0787 0.148719 0.43602,31.0787 0.140398 0.433108,31.0787 0.132933 0.428418,31.118 0.139959 0.474403,31.118 0.123316 0.468579,31.118 0.108386 0.459198,31.0984 0.115722 0.439395,31.0787 0.126699 0.422184,31.118 0.0959186 0.446731,31.0984 0.10292 0.420236,31.0787 0.122009 0.414719,31.0787 0.119097 0.406398,31.0787 0.11811 0.397637,31.118 0.07874 0.397637,31.118 0.0865377 0.431801,31.118 0.0807142 0.415158] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,1,4,-1,4,1,5,-1,6,1,0,-1,7,1,6,-1,8,1,7,-1,5,9,10,-1,11,9,8,-1,1,9,5,-1,8,9,1,-1,10,12,13,-1,13,12,14,-1,14,12,15,-1,15,12,16,-1,17,12,11,-1,18,12,17,-1,16,12,18,-1,11,12,9,-1,9,12,10,-1] -coord Coordinate { point [30.8818 0.07874 0.397637,30.9015 0.10292 0.420236,30.9212 0.11811 0.397637,30.9212 0.119097 0.406398,30.9212 0.122009 0.414719,30.9212 0.126699 0.422184,30.8818 0.0807142 0.415158,30.8818 0.0865377 0.431801,30.8818 0.0959186 0.446731,30.9015 0.115722 0.439395,30.9212 0.132933 0.428418,30.8818 0.108386 0.459198,30.9015 0.134881 0.452197,30.9212 0.140398 0.433108,30.9212 0.148719 0.43602,30.9212 0.15748 0.437007,30.8818 0.15748 0.476377,30.8818 0.123316 0.468579,30.8818 0.139959 0.474403] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [31.0787 4.4055 0.437007,31.0787 0.15748 0.437007,30.9212 0.15748 0.437007,30.9212 4.4055 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [31.118 0.07874 0.397637,31.118 0.07874 -1.09055,31.0787 0.11811 0.397637,31.0787 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [30.9212 0.11811 -1.09055,30.8818 0.07874 0.397637,30.9212 0.11811 0.397637,30.8818 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [30.9212 0.07874 -1.12992,31.0787 0.11811 -1.09055,31.0787 0.07874 -1.12992,30.9212 0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [31.118 4.4055 0.476377,31.118 0.15748 0.476377,31.0787 4.4055 0.437007,31.0787 0.15748 0.437007] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,0,2,-1,4,5,0,-1,4,0,3,-1,6,7,5,-1,6,5,4,-1,8,9,7,-1,8,7,6,-1,10,9,8,-1,11,10,12,-1,11,9,10,-1,13,12,14,-1,13,11,12,-1,15,13,14,-1,16,14,17,-1,16,15,14,-1,18,16,17,-1,19,16,18,-1] -coord Coordinate { point [31.118 -0.07874 0.397637,31.118 -0.07874 -1.09055,31.118 0.07874 -1.09055,31.118 0.07874 0.397637,31.118 0.0807142 0.415158,31.118 -0.0728175 0.450201,31.118 0.0865377 0.431801,31.118 -0.0553469 0.500129,31.118 0.0959186 0.446731,31.118 -0.0272042 0.544918,31.118 0.108386 0.459198,31.118 0.0101992 0.582321,31.118 0.123316 0.468579,31.118 0.054988 0.610464,31.118 0.139959 0.474403,31.118 0.104916 0.627934,31.118 0.15748 0.633857,31.118 0.15748 0.476377,31.118 4.4055 0.476377,31.118 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,4,5,0,-1,0,5,1,-1,6,7,4,-1,4,7,5,-1,8,9,6,-1,6,9,7,-1,8,10,9,-1,10,11,12,-1,8,11,10,-1,12,13,14,-1,11,13,12,-1,13,15,14,-1,14,16,17,-1,15,16,14,-1,16,18,17,-1,16,19,18,-1] -coord Coordinate { point [30.8818 -0.07874 0.397637,30.8818 0.07874 0.397637,30.8818 -0.07874 -1.09055,30.8818 0.07874 -1.09055,30.8818 -0.0728175 0.450201,30.8818 0.0807142 0.415158,30.8818 -0.0553469 0.500129,30.8818 0.0865377 0.431801,30.8818 -0.0272042 0.544918,30.8818 0.0959186 0.446731,30.8818 0.108386 0.459198,30.8818 0.0101992 0.582321,30.8818 0.123316 0.468579,30.8818 0.054988 0.610464,30.8818 0.139959 0.474403,30.8818 0.104916 0.627934,30.8818 0.15748 0.633857,30.8818 0.15748 0.476377,30.8818 4.4055 0.476377,30.8818 4.4055 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [30.8818 0.15748 0.476377,30.9212 4.4055 0.437007,30.9212 0.15748 0.437007,30.8818 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [30.9212 4.4055 0.437007,31.0787 4.44487 0.476377,31.0787 4.4055 0.437007,30.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [31.0787 0.11811 -1.09055,31.118 0.07874 -1.09055,31.0787 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [30.8818 0.07874 -1.09055,30.9212 0.11811 -1.09055,30.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [31.0787 0.07874 -1.12992,31.0787 -0.07874 -1.12992,30.9212 -0.07874 -1.12992,30.9212 0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [31.0787 4.4055 0.437007,31.0787 4.44487 0.476377,31.118 4.4055 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [31.0787 0.15748 0.673227,31.118 4.4055 0.633857,31.0787 4.4055 0.673227,31.118 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [31.118 4.4055 0.633857,31.118 4.4055 0.476377,31.0787 4.44487 0.476377,31.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1,4,3,5,-1,4,0,3,-1,6,5,7,-1,6,4,5,-1,8,7,9,-1,8,6,7,-1,10,9,11,-1,10,8,9,-1,12,11,13,-1,12,10,11,-1,14,13,15,-1,14,12,13,-1] -coord Coordinate { point [31.118 0.104916 0.627934,31.118 0.15748 0.633857,31.0787 0.15748 0.673227,31.0787 0.0961555 0.666317,31.118 0.054988 0.610464,31.0787 0.037906 0.645935,31.118 0.0101992 0.582321,31.0787 -0.0143476 0.613102,31.118 -0.0272042 0.544918,31.0787 -0.0579849 0.569465,31.118 -0.0553469 0.500129,31.0787 -0.090818 0.517211,31.118 -0.0728175 0.450201,31.0787 -0.1112 0.458962,31.118 -0.07874 0.397637,31.0787 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [31.0787 -0.11811 -1.09055,31.118 -0.07874 0.397637,31.0787 -0.11811 0.397637,31.118 -0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [31.0787 0.07874 -1.12992,31.118 -0.07874 -1.09055,31.0787 -0.07874 -1.12992,31.118 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [30.8818 4.4055 0.633857,30.9212 0.15748 0.673227,30.9212 4.4055 0.673227,30.8818 0.15748 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [30.8818 4.4055 0.476377,30.8818 4.4055 0.633857,30.9212 4.44487 0.476377,30.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,11,12,13,-1,10,12,11,-1,13,14,15,-1,12,14,13,-1] -coord Coordinate { point [30.8818 0.15748 0.633857,30.8818 0.104916 0.627934,30.9212 0.15748 0.673227,30.9212 0.0961555 0.666317,30.8818 0.054988 0.610464,30.9212 0.037906 0.645935,30.8818 0.0101992 0.582321,30.9212 -0.0143476 0.613102,30.8818 -0.0272042 0.544918,30.9212 -0.0579849 0.569465,30.8818 -0.0553469 0.500129,30.9212 -0.090818 0.517211,30.8818 -0.0728175 0.450201,30.9212 -0.1112 0.458962,30.8818 -0.07874 0.397637,30.9212 -0.11811 0.397637] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1] -coord Coordinate { point [30.8818 -0.07874 0.397637,30.8818 -0.07874 -1.09055,30.9212 -0.11811 0.397637,30.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,3,1,-1] -coord Coordinate { point [30.8818 -0.07874 -1.09055,30.9212 0.07874 -1.12992,30.9212 -0.07874 -1.12992,30.8818 0.07874 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [30.9212 4.4055 0.437007,30.8818 4.4055 0.476377,30.9212 4.44487 0.476377] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [31.0787 4.44487 0.633857,31.0787 4.44487 0.476377,30.9212 4.44487 0.476377,30.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [30.9212 -0.07874 -1.12992,31.0787 -0.07874 -1.12992,31.0787 -0.11811 -1.09055,30.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,3,1,0,-1] -coord Coordinate { point [30.9212 0.15748 0.673227,31.0787 4.4055 0.673227,30.9212 4.4055 0.673227,31.0787 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [31.0787 4.4055 0.673227,31.118 4.4055 0.633857,31.0787 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,2,1,3,-1,3,4,5,-1,1,4,3,-1,5,6,7,-1,4,6,5,-1,7,8,9,-1,6,8,7,-1,9,10,11,-1,8,10,9,-1,12,13,14,-1,11,13,12,-1,10,13,11,-1,13,15,14,-1] -coord Coordinate { point [31.0787 -0.11811 0.397637,31.0787 -0.1112 0.458962,30.9212 -0.11811 0.397637,30.9212 -0.1112 0.458962,31.0787 -0.090818 0.517211,30.9212 -0.090818 0.517211,31.0787 -0.0579849 0.569465,30.9212 -0.0579849 0.569465,31.0787 -0.0143476 0.613102,30.9212 -0.0143476 0.613102,31.0787 0.037906 0.645935,30.9212 0.037906 0.645935,30.9212 0.0961555 0.666317,31.0787 0.0961555 0.666317,30.9212 0.15748 0.673227,31.0787 0.15748 0.673227] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [31.0787 -0.11811 -1.09055,31.0787 -0.11811 0.397637,30.9212 -0.11811 0.397637,30.9212 -0.11811 -1.09055] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [31.118 -0.07874 -1.09055,31.0787 -0.11811 -1.09055,31.0787 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [30.8818 4.4055 0.633857,30.9212 4.4055 0.673227,30.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1] -coord Coordinate { point [30.9212 -0.11811 -1.09055,30.8818 -0.07874 -1.09055,30.9212 -0.07874 -1.12992] -}} -appearance Appearance{material USE PIN-01 }} -Shape { geometry IndexedFaceSet -{ coordIndex [0,1,2,-1,0,2,3,-1] -coord Coordinate { point [30.9212 4.4055 0.673227,31.0787 4.4055 0.673227,31.0787 4.44487 0.633857,30.9212 4.44487 0.633857] -}} -appearance Appearance{material USE PIN-01 }} diff --git a/pcb/KiCad/Input_Output_Module.kicad_sch b/pcb/KiCad/Input_Output_Module.kicad_sch index d2ca345..4848b25 100644 --- a/pcb/KiCad/Input_Output_Module.kicad_sch +++ b/pcb/KiCad/Input_Output_Module.kicad_sch @@ -1,3913 +1,10451 @@ -(kicad_sch (version 20230121) (generator eeschema) - - (uuid 4cafb73d-1ad8-4d24-acf7-63d78095ae46) - - (paper "A4") - - (title_block - (title "RedPitaya Lockbox") - (date "2023-11-03") - (rev "1.6.2") - (company "Atoms-Photons-Quanta, Institut für Angewandte Physik, TU Darmstadt") - (comment 1 "Tilman Preuschoff") - ) - - (lib_symbols - (symbol "Amplifier_Operational:OPA1602" (pin_names (offset 0.127)) (in_bom yes) (on_board yes) - (property "Reference" "U" (at 0 5.08 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "OPA1602" (at 0 -5.08 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "http://www.ti.com/lit/ds/symlink/opa1604.pdf" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_locked" "" (at 0 0 0) - (effects (font (size 1.27 1.27))) - ) - (property "ki_keywords" "dual opamp" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Dual SoundPlus High Performance, Bipolar-Input Audio Operational Amplifiers, SOIC-8/MSOP-8" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "SOIC*3.9x4.9mm*P1.27mm* DIP*W7.62mm* TO*99* OnSemi*Micro8* TSSOP*3x3mm*P0.65mm* TSSOP*4.4x3mm*P0.65mm* MSOP*3x3mm*P0.65mm* SSOP*3.9x4.9mm*P0.635mm* LFCSP*2x2mm*P0.5mm* *SIP* SOIC*5.3x6.2mm*P1.27mm*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "OPA1602_1_1" - (polyline - (pts - (xy -5.08 5.08) - (xy 5.08 0) - (xy -5.08 -5.08) - (xy -5.08 5.08) - ) - (stroke (width 0.254) (type default)) - (fill (type background)) - ) - (pin output line (at 7.62 0 180) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 -2.54 0) (length 2.54) - (name "-" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 2.54 0) (length 2.54) - (name "+" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - ) - (symbol "OPA1602_2_1" - (polyline - (pts - (xy -5.08 5.08) - (xy 5.08 0) - (xy -5.08 -5.08) - (xy -5.08 5.08) - ) - (stroke (width 0.254) (type default)) - (fill (type background)) - ) - (pin input line (at -7.62 2.54 0) (length 2.54) - (name "+" (effects (font (size 1.27 1.27)))) - (number "5" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 -2.54 0) (length 2.54) - (name "-" (effects (font (size 1.27 1.27)))) - (number "6" (effects (font (size 1.27 1.27)))) - ) - (pin output line (at 7.62 0 180) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "7" (effects (font (size 1.27 1.27)))) - ) - ) - (symbol "OPA1602_3_1" - (pin power_in line (at -2.54 -7.62 90) (length 3.81) - (name "V-" (effects (font (size 1.27 1.27)))) - (number "4" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at -2.54 7.62 270) (length 3.81) - (name "V+" (effects (font (size 1.27 1.27)))) - (number "8" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Amplifier_Operational:OPA1604" (pin_names (offset 0.127)) (in_bom yes) (on_board yes) - (property "Reference" "U" (at 0 5.08 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "OPA1604" (at 0 -5.08 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "" (at -1.27 2.54 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "http://www.ti.com/lit/ds/symlink/opa1604.pdf" (at 1.27 5.08 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_locked" "" (at 0 0 0) - (effects (font (size 1.27 1.27))) - ) - (property "ki_keywords" "quad opamp" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Quad SoundPlus High Performance, Bipolar-Input Audio Operational Amplifiers, SOIC-14/TSSOP-14" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "SOIC*3.9x8.7mm*P1.27mm* DIP*W7.62mm* TSSOP*4.4x5mm*P0.65mm* SSOP*5.3x6.2mm*P0.65mm* MSOP*3x3mm*P0.5mm*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "OPA1604_1_1" - (polyline - (pts - (xy -5.08 5.08) - (xy 5.08 0) - (xy -5.08 -5.08) - (xy -5.08 5.08) - ) - (stroke (width 0.254) (type default)) - (fill (type background)) - ) - (pin output line (at 7.62 0 180) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 -2.54 0) (length 2.54) - (name "-" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 2.54 0) (length 2.54) - (name "+" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - ) - (symbol "OPA1604_2_1" - (polyline - (pts - (xy -5.08 5.08) - (xy 5.08 0) - (xy -5.08 -5.08) - (xy -5.08 5.08) - ) - (stroke (width 0.254) (type default)) - (fill (type background)) - ) - (pin input line (at -7.62 2.54 0) (length 2.54) - (name "+" (effects (font (size 1.27 1.27)))) - (number "5" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 -2.54 0) (length 2.54) - (name "-" (effects (font (size 1.27 1.27)))) - (number "6" (effects (font (size 1.27 1.27)))) - ) - (pin output line (at 7.62 0 180) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "7" (effects (font (size 1.27 1.27)))) - ) - ) - (symbol "OPA1604_3_1" - (polyline - (pts - (xy -5.08 5.08) - (xy 5.08 0) - (xy -5.08 -5.08) - (xy -5.08 5.08) - ) - (stroke (width 0.254) (type default)) - (fill (type background)) - ) - (pin input line (at -7.62 2.54 0) (length 2.54) - (name "+" (effects (font (size 1.27 1.27)))) - (number "10" (effects (font (size 1.27 1.27)))) - ) - (pin output line (at 7.62 0 180) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "8" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 -2.54 0) (length 2.54) - (name "-" (effects (font (size 1.27 1.27)))) - (number "9" (effects (font (size 1.27 1.27)))) - ) - ) - (symbol "OPA1604_4_1" - (polyline - (pts - (xy -5.08 5.08) - (xy 5.08 0) - (xy -5.08 -5.08) - (xy -5.08 5.08) - ) - (stroke (width 0.254) (type default)) - (fill (type background)) - ) - (pin input line (at -7.62 2.54 0) (length 2.54) - (name "+" (effects (font (size 1.27 1.27)))) - (number "12" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 -2.54 0) (length 2.54) - (name "-" (effects (font (size 1.27 1.27)))) - (number "13" (effects (font (size 1.27 1.27)))) - ) - (pin output line (at 7.62 0 180) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "14" (effects (font (size 1.27 1.27)))) - ) - ) - (symbol "OPA1604_5_1" - (pin power_in line (at -2.54 -7.62 90) (length 3.81) - (name "V-" (effects (font (size 1.27 1.27)))) - (number "11" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at -2.54 7.62 270) (length 3.81) - (name "V+" (effects (font (size 1.27 1.27)))) - (number "4" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Connector:Conn_Coaxial" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) - (property "Reference" "J" (at 0.254 3.048 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "Conn_Coaxial" (at 2.921 0 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" " ~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "BNC SMA SMB SMC LEMO coaxial connector CINCH RCA" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "coaxial connector (BNC, SMA, SMB, SMC, Cinch/RCA, LEMO, ...)" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "*BNC* *SMA* *SMB* *SMC* *Cinch* *LEMO*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "Conn_Coaxial_0_1" - (arc (start -1.778 -0.508) (mid 0.2311 -1.8066) (end 1.778 0) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -2.54 0) - (xy -0.508 0) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 0 -2.54) - (xy 0 -1.778) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (circle (center 0 0) (radius 0.508) - (stroke (width 0.2032) (type default)) - (fill (type none)) - ) - (arc (start 1.778 0) (mid 0.2099 1.8101) (end -1.778 0.508) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - ) - (symbol "Conn_Coaxial_1_1" - (pin passive line (at -5.08 0 0) (length 2.54) - (name "In" (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 2.54) - (name "Ext" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Device:C_Polarized" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes) - (property "Reference" "C" (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) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "cap capacitor" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Polarized capacitor" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "CP_*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "C_Polarized_0_1" - (rectangle (start -2.286 0.508) (end 2.286 1.016) - (stroke (width 0) (type default)) - (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)))) - ) - ) - ) - (symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes) - (property "Reference" "C" (at 0.254 1.778 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "C_Small" (at 0.254 -2.032 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "capacitor cap" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Unpolarized capacitor, small symbol" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "C_*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "C_Small_0_1" - (polyline - (pts - (xy -1.524 -0.508) - (xy 1.524 -0.508) - ) - (stroke (width 0.3302) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -1.524 0.508) - (xy 1.524 0.508) - ) - (stroke (width 0.3048) (type default)) - (fill (type none)) - ) - ) - (symbol "C_Small_1_1" - (pin passive line (at 0 2.54 270) (length 2.032) - (name "~" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 0 -2.54 90) (length 2.032) - (name "~" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) - (property "Reference" "R" (at 2.032 0 90) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "R" (at 0 0 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at -1.778 0 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "R res resistor" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Resistor" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "R_*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "R_0_1" - (rectangle (start -1.016 -2.54) (end 1.016 2.54) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - ) - (symbol "R_1_1" - (pin passive line (at 0 3.81 270) (length 1.27) - (name "~" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 0 -3.81 90) (length 1.27) - (name "~" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes) - (property "Reference" "R" (at 0.762 0.508 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "R_Small" (at 0.762 -1.016 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "R resistor" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Resistor, small symbol" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "R_*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "R_Small_0_1" - (rectangle (start -0.762 1.778) (end 0.762 -1.778) - (stroke (width 0.2032) (type default)) - (fill (type none)) - ) - ) - (symbol "R_Small_1_1" - (pin passive line (at 0 2.54 270) (length 0.762) - (name "~" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 0 -2.54 90) (length 0.762) - (name "~" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "TexasInstruments:BUF634" (in_bom yes) (on_board yes) - (property "Reference" "U" (at 5.08 2.54 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "BUF634" (at 5.08 -2.54 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Field4" "1" (at 0 0 0) - (effects (font (size 1.27 1.27))) - ) - (property "ki_description" "250mA, High-Speed Buffer" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "BUF634_0_1" - (polyline - (pts - (xy 5.08 0) - (xy -5.08 5.08) - (xy -5.08 -5.08) - (xy 5.08 0) - ) - (stroke (width 0.254) (type default)) - (fill (type background)) - ) - (pin power_in line (at -2.54 -7.62 90) (length 3.81) - (name "V-" (effects (font (size 1.27 1.27)))) - (number "4" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at -2.54 7.62 270) (length 3.81) - (name "V+" (effects (font (size 1.27 1.27)))) - (number "7" (effects (font (size 1.27 1.27)))) - ) - ) - (symbol "BUF634_1_1" - (pin passive inverted (at 2.54 -7.62 90) (length 6.35) - (name "BW" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin no_connect line (at 0 5.08 270) (length 2.54) hide - (name "" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 0 0) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - (pin no_connect line (at 5.08 2.54 270) (length 2.54) hide - (name "" (effects (font (size 1.27 1.27)))) - (number "5" (effects (font (size 1.27 1.27)))) - ) - (pin output line (at 7.62 0 180) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "6" (effects (font (size 1.27 1.27)))) - ) - (pin no_connect line (at 2.54 3.81 270) (length 2.54) hide - (name "" (effects (font (size 1.27 1.27)))) - (number "8" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) - (property "Reference" "#PWR" (at 0 -6.35 0) - (effects (font (size 1.27 1.27)) hide) - ) - (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) - ) - (property "Datasheet" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "global power" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "GND_0_1" - (polyline - (pts - (xy 0 0) - (xy 0 -1.27) - (xy 1.27 -1.27) - (xy 0 -2.54) - (xy -1.27 -1.27) - (xy 0 -1.27) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - ) - (symbol "GND_1_1" - (pin power_in line (at 0 0 270) (length 0) hide - (name "GND" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - ) - ) - ) - - (junction (at 67.31 34.29) (diameter 0) (color 0 0 0 0) - (uuid 01db82c9-0728-48dc-a507-2a0ab8bda11f) - ) - (junction (at 229.87 85.09) (diameter 0) (color 0 0 0 0) - (uuid 0dfdfa9f-1e3f-4e14-b64b-12bde76a80c7) - ) - (junction (at 78.74 90.17) (diameter 0) (color 0 0 0 0) - (uuid 1dfbf353-5b24-4c0f-8322-8fcd514ae75e) - ) - (junction (at 86.36 55.88) (diameter 0) (color 0 0 0 0) - (uuid 24aed798-4ced-4241-a5a7-52a2822f3c9a) - ) - (junction (at 39.37 97.79) (diameter 0) (color 0 0 0 0) - (uuid 269f19c3-6824-45a8-be29-fa58d70cbb42) - ) - (junction (at 71.12 124.46) (diameter 0) (color 0 0 0 0) - (uuid 2e0a9f64-1b78-4597-8d50-d12d2268a95a) - ) - (junction (at 35.56 43.18) (diameter 0) (color 0 0 0 0) - (uuid 3064bbf6-b65a-4f35-b428-9c3da8ceeb16) - ) - (junction (at 62.23 55.88) (diameter 0) (color 0 0 0 0) - (uuid 38cfe839-c630-43d3-a9ec-6a89ba9e318a) - ) - (junction (at 209.55 116.84) (diameter 0) (color 0 0 0 0) - (uuid 3a41dd27-ec14-44d5-b505-aad1d829f79a) - ) - (junction (at 26.67 106.68) (diameter 0) (color 0 0 0 0) - (uuid 5889287d-b845-4684-b23e-663811b25d27) - ) - (junction (at 106.68 100.33) (diameter 0) (color 0 0 0 0) - (uuid 59fc765e-1357-4c94-9529-5635418c7d73) - ) - (junction (at 134.62 114.3) (diameter 0) (color 0 0 0 0) - (uuid 5c7d6eaf-f256-4349-8203-d2e836872231) - ) - (junction (at 134.62 92.71) (diameter 0) (color 0 0 0 0) - (uuid 6f580eb1-88cc-489d-a7ca-9efa5e590715) - ) - (junction (at 114.3 43.18) (diameter 0) (color 0 0 0 0) - (uuid 89a8e170-a222-41c0-b545-c9f4c5604011) - ) - (junction (at 78.74 66.04) (diameter 0) (color 0 0 0 0) - (uuid 8c77499b-832c-4b0b-a320-dd95629f6b2c) - ) - (junction (at 114.3 125.73) (diameter 0) (color 0 0 0 0) - (uuid 9529c01f-e1cd-40be-b7f0-83780a544249) - ) - (junction (at 240.03 72.39) (diameter 0) (color 0 0 0 0) - (uuid 98fe66f3-ec8b-4515-ae34-617f2124a7ec) - ) - (junction (at 63.5 158.75) (diameter 0) (color 0 0 0 0) - (uuid 9aaeec6e-84fe-4644-b0bc-5de24626ff48) - ) - (junction (at 134.62 111.76) (diameter 0) (color 0 0 0 0) - (uuid b13e8448-bf35-4ec0-9c70-3f2250718cc2) - ) - (junction (at 104.14 34.29) (diameter 0) (color 0 0 0 0) - (uuid b4cc04e5-052f-4c96-8757-f40f4dbf9e88) - ) - (junction (at 49.53 64.77) (diameter 0) (color 0 0 0 0) - (uuid be4b72db-0e02-4d9b-844a-aff689b4e648) - ) - (junction (at 172.72 83.82) (diameter 0) (color 0 0 0 0) - (uuid c7df8431-dcf5-4ab4-b8f8-21c1cafc5246) - ) - (junction (at 209.55 85.09) (diameter 0) (color 0 0 0 0) - (uuid d38aa458-d7c4-47af-ba08-2b6be506a3fd) - ) - (junction (at 62.23 97.79) (diameter 0) (color 0 0 0 0) - (uuid d3e133b7-2c84-4206-a2b1-e693cb57fe56) - ) - (junction (at 125.73 53.34) (diameter 0) (color 0 0 0 0) - (uuid d68e5ddb-039c-483f-88a3-1b0b7964b482) - ) - (junction (at 151.13 102.87) (diameter 0) (color 0 0 0 0) - (uuid dde8619c-5a8c-40eb-9845-65e6a654222d) - ) - (junction (at 78.74 110.49) (diameter 0) (color 0 0 0 0) - (uuid e0c7ddff-8c90-465f-be62-21fb49b059fa) - ) - (junction (at 229.87 109.22) (diameter 0) (color 0 0 0 0) - (uuid e7d81bce-286e-41e4-9181-3511e9c0455e) - ) - (junction (at 95.25 156.21) (diameter 0) (color 0 0 0 0) - (uuid f0ff5d1c-5481-4958-b844-4f68a17d4166) - ) - (junction (at 78.74 55.88) (diameter 0) (color 0 0 0 0) - (uuid f988d6ea-11c5-4837-b1d1-5c292ded50c6) - ) - (junction (at 35.56 31.75) (diameter 0) (color 0 0 0 0) - (uuid f9eca775-6acf-4ed8-bfb2-2639653c23c4) - ) - (junction (at 251.46 82.55) (diameter 0) (color 0 0 0 0) - (uuid fc3d51c1-8b35-4da3-a742-0ebe104989d7) - ) - (junction (at 95.25 100.33) (diameter 0) (color 0 0 0 0) - (uuid fdc60c06-30fa-4dfb-96b4-809b755999e1) - ) - - (wire (pts (xy 88.9 100.33) (xy 95.25 100.33)) - (stroke (width 0) (type default)) - (uuid 014d13cd-26ad-4d0e-86ad-a43b541cab14) - ) - (wire (pts (xy 63.5 158.75) (xy 63.5 162.56)) - (stroke (width 0) (type default)) - (uuid 01f82238-6335-48fe-8b0a-6853e227345a) - ) - (wire (pts (xy 104.14 34.29) (xy 104.14 50.8)) - (stroke (width 0) (type default)) - (uuid 091ae598-f94b-43af-b35c-801f18a5323e) - ) - (wire (pts (xy 240.03 90.17) (xy 240.03 92.71)) - (stroke (width 0) (type default)) - (uuid 0b9f21ed-3d41-4f23-ae45-74117a5f3153) - ) - (wire (pts (xy 78.74 113.03) (xy 78.74 110.49)) - (stroke (width 0) (type default)) - (uuid 0cbeb329-a88d-4a47-a5c2-a1d693de2f8c) - ) - (wire (pts (xy 151.13 102.87) (xy 151.13 125.73)) - (stroke (width 0) (type default)) - (uuid 0cc9bf07-55b9-458f-b8aa-41b2f51fa940) - ) - (wire (pts (xy 63.5 158.75) (xy 74.93 158.75)) - (stroke (width 0) (type default)) - (uuid 0e249018-17e7-42b3-ae5d-5ebf3ae299ae) - ) - (wire (pts (xy 39.37 97.79) (xy 52.07 97.79)) - (stroke (width 0) (type default)) - (uuid 0fc5db66-6188-4c1f-bb14-0868bef113eb) - ) - (wire (pts (xy 54.61 55.88) (xy 62.23 55.88)) - (stroke (width 0) (type default)) - (uuid 10e52e95-44f3-4059-a86d-dcda603e0623) - ) - (wire (pts (xy 62.23 97.79) (xy 73.66 97.79)) - (stroke (width 0) (type default)) - (uuid 13bbfffc-affb-4b43-9eb1-f2ed90a8a919) - ) - (wire (pts (xy 101.6 100.33) (xy 106.68 100.33)) - (stroke (width 0) (type default)) - (uuid 14094ad2-b562-4efa-8c6f-51d7a3134345) - ) - (wire (pts (xy 62.23 63.5) (xy 62.23 64.77)) - (stroke (width 0) (type default)) - (uuid 142dd724-2a9f-4eea-ab21-209b1bc7ec65) - ) - (wire (pts (xy 62.23 64.77) (xy 49.53 64.77)) - (stroke (width 0) (type default)) - (uuid 15a82541-58d8-45b5-99c5-fb52e017e3ea) - ) - (wire (pts (xy 44.45 36.83) (xy 44.45 44.45)) - (stroke (width 0) (type default)) - (uuid 1ac56c9d-efc5-4b04-baf1-1615a8bb4673) - ) - (wire (pts (xy 229.87 109.22) (xy 231.14 109.22)) - (stroke (width 0) (type default)) - (uuid 1b023dd4-5185-4576-b544-68a05b9c360b) - ) - (wire (pts (xy 114.3 60.96) (xy 114.3 63.5)) - (stroke (width 0) (type default)) - (uuid 1cb22080-0f59-4c18-a6e6-8685ef44ec53) - ) - (wire (pts (xy 200.66 116.84) (xy 203.2 116.84)) - (stroke (width 0) (type default)) - (uuid 212bf70c-2324-47d9-8700-59771063baeb) - ) - (wire (pts (xy 134.62 90.17) (xy 134.62 92.71)) - (stroke (width 0) (type default)) - (uuid 2165c9a4-eb84-4cb6-a870-2fdc39d2511b) - ) - (wire (pts (xy 114.3 125.73) (xy 114.3 127)) - (stroke (width 0) (type default)) - (uuid 235067e2-1686-40fe-a9a0-61704311b2b1) - ) - (wire (pts (xy 151.13 102.87) (xy 154.94 102.87)) - (stroke (width 0) (type default)) - (uuid 241e0c85-4796-48eb-a5a0-1c0f2d6e5910) - ) - (wire (pts (xy 49.53 64.77) (xy 49.53 67.31)) - (stroke (width 0) (type default)) - (uuid 252f1275-081d-4d77-8bd5-3b9e6916ef42) - ) - (wire (pts (xy 241.3 92.71) (xy 240.03 92.71)) - (stroke (width 0) (type default)) - (uuid 2c95b9a6-9c71-4108-9cde-57ddfdd2dd19) - ) - (wire (pts (xy 67.31 34.29) (xy 90.17 34.29)) - (stroke (width 0) (type default)) - (uuid 2cb43313-608a-46b8-8c6d-5c80bfcf7b3e) - ) - (wire (pts (xy 134.62 111.76) (xy 134.62 114.3)) - (stroke (width 0) (type default)) - (uuid 2de1ffee-2174-41d2-8969-68b8d21e5a7d) - ) - (wire (pts (xy 48.26 158.75) (xy 54.61 158.75)) - (stroke (width 0) (type default)) - (uuid 2f291a4b-4ecb-4692-9ad2-324f9784c0d4) - ) - (wire (pts (xy 114.3 125.73) (xy 121.92 125.73)) - (stroke (width 0) (type default)) - (uuid 31f91ec8-56e4-4e08-9ccd-012652772211) - ) - (wire (pts (xy 229.87 59.69) (xy 229.87 80.01)) - (stroke (width 0) (type default)) - (uuid 3249bd81-9fd4-4194-9b4f-2e333b2195b8) - ) - (wire (pts (xy 209.55 125.73) (xy 209.55 127)) - (stroke (width 0) (type default)) - (uuid 347562f5-b152-4e7b-8a69-40ca6daaaad4) - ) - (wire (pts (xy 139.7 111.76) (xy 139.7 110.49)) - (stroke (width 0) (type default)) - (uuid 34c0bee6-7425-4435-8857-d1fe8dfb6d89) - ) - (wire (pts (xy 151.13 81.28) (xy 151.13 102.87)) - (stroke (width 0) (type default)) - (uuid 363945f6-fbef-42be-99cf-4a8a48434d92) - ) - (wire (pts (xy 151.13 125.73) (xy 127 125.73)) - (stroke (width 0) (type default)) - (uuid 386ad9e3-71fa-420f-8722-88548b024fc5) - ) - (wire (pts (xy 62.23 58.42) (xy 62.23 55.88)) - (stroke (width 0) (type default)) - (uuid 3c8d03bf-f31d-4aa0-b8db-a227ffd7d8d6) - ) - (wire (pts (xy 124.46 53.34) (xy 125.73 53.34)) - (stroke (width 0) (type default)) - (uuid 3c9169cc-3a77-4ae0-8afc-cbfc472a28c5) - ) - (wire (pts (xy 39.37 100.33) (xy 39.37 97.79)) - (stroke (width 0) (type default)) - (uuid 3d6cdd62-5634-4e30-acf8-1b9c1dbf6653) - ) - (wire (pts (xy 125.73 26.67) (xy 125.73 53.34)) - (stroke (width 0) (type default)) - (uuid 3e57b728-64e6-4470-8f27-a43c0dd85050) - ) - (wire (pts (xy 209.55 111.76) (xy 209.55 116.84)) - (stroke (width 0) (type default)) - (uuid 3efa2ece-8f3f-4a8c-96e9-6ab3ec6f1f70) - ) - (wire (pts (xy 209.55 106.68) (xy 213.36 106.68)) - (stroke (width 0) (type default)) - (uuid 430d6d73-9de6-41ca-b788-178d709f4aae) - ) - (wire (pts (xy 201.93 85.09) (xy 209.55 85.09)) - (stroke (width 0) (type default)) - (uuid 44035e53-ff94-45ad-801f-55a1ce042a0d) - ) - (wire (pts (xy 86.36 90.17) (xy 88.9 90.17)) - (stroke (width 0) (type default)) - (uuid 443bc73a-8dc0-4e2f-a292-a5eff00efa5b) - ) - (wire (pts (xy 86.36 55.88) (xy 86.36 59.69)) - (stroke (width 0) (type default)) - (uuid 45908012-848d-44ce-8f24-6fded37b170d) - ) - (wire (pts (xy 257.81 82.55) (xy 260.35 82.55)) - (stroke (width 0) (type default)) - (uuid 475ed8b3-90bf-48cd-bce5-d8f48b689541) - ) - (wire (pts (xy 35.56 31.75) (xy 46.99 31.75)) - (stroke (width 0) (type default)) - (uuid 476067de-f6f7-443b-8783-ea28b0229d00) - ) - (wire (pts (xy 86.36 66.04) (xy 86.36 64.77)) - (stroke (width 0) (type default)) - (uuid 4768945d-a155-44d8-8980-5f39db4e64b9) - ) - (wire (pts (xy 35.56 43.18) (xy 35.56 44.45)) - (stroke (width 0) (type default)) - (uuid 47e766dd-8d4d-422f-b72f-2290836ebee6) - ) - (wire (pts (xy 67.31 34.29) (xy 62.23 34.29)) - (stroke (width 0) (type default)) - (uuid 4a401f22-b02c-4bf1-9ad1-e464192b168c) - ) - (wire (pts (xy 78.74 66.04) (xy 78.74 67.31)) - (stroke (width 0) (type default)) - (uuid 50170352-30c1-43a5-9a46-8f9cbbb34b22) - ) - (wire (pts (xy 71.12 153.67) (xy 71.12 144.78)) - (stroke (width 0) (type default)) - (uuid 52a8f1be-73ca-41a8-bc24-2320706b0ec1) - ) - (wire (pts (xy 157.48 81.28) (xy 151.13 81.28)) - (stroke (width 0) (type default)) - (uuid 5d49e9a6-41dd-4072-adde-ef1036c1979b) - ) - (wire (pts (xy 30.48 31.75) (xy 35.56 31.75)) - (stroke (width 0) (type default)) - (uuid 5dcd7473-8656-4080-9e0e-1fde08c683d8) - ) - (wire (pts (xy 115.57 63.5) (xy 114.3 63.5)) - (stroke (width 0) (type default)) - (uuid 5e7c3a32-8dda-4e6a-9838-c94d1f165575) - ) - (wire (pts (xy 116.84 26.67) (xy 125.73 26.67)) - (stroke (width 0) (type default)) - (uuid 5f31b97b-d794-46d6-bbd9-7a5638bcf704) - ) - (wire (pts (xy 35.56 29.21) (xy 35.56 31.75)) - (stroke (width 0) (type default)) - (uuid 5f76723c-060a-4c15-b6ff-5cd4e2082488) - ) - (wire (pts (xy 106.68 100.33) (xy 114.3 100.33)) - (stroke (width 0) (type default)) - (uuid 5ff19d63-2cb4-438b-93c4-e66d37a05329) - ) - (wire (pts (xy 109.22 50.8) (xy 104.14 50.8)) - (stroke (width 0) (type default)) - (uuid 616287d9-a51f-498c-8b91-be46a0aa3a7f) - ) - (wire (pts (xy 49.53 64.77) (xy 49.53 60.96)) - (stroke (width 0) (type default)) - (uuid 62e8c4d4-266c-4e53-8981-1028251d724c) - ) - (wire (pts (xy 90.17 156.21) (xy 95.25 156.21)) - (stroke (width 0) (type default)) - (uuid 633292d3-80c5-4986-be82-ce926e9f09f4) - ) - (wire (pts (xy 63.5 170.18) (xy 63.5 172.72)) - (stroke (width 0) (type default)) - (uuid 63489ebf-0f52-43a6-a0ab-158b1a7d4988) - ) - (wire (pts (xy 106.68 100.33) (xy 106.68 105.41)) - (stroke (width 0) (type default)) - (uuid 637f12be-fa48-4ce4-96b2-04c21a8795c8) - ) - (wire (pts (xy 35.56 41.91) (xy 35.56 43.18)) - (stroke (width 0) (type default)) - (uuid 6619b08c-68d0-4a19-86e8-54eadb8c6336) - ) - (wire (pts (xy 208.28 116.84) (xy 209.55 116.84)) - (stroke (width 0) (type default)) - (uuid 6a2bcc72-047b-4846-8583-1109e3552669) - ) - (wire (pts (xy 95.25 34.29) (xy 104.14 34.29)) - (stroke (width 0) (type default)) - (uuid 6b2d53ae-cfce-4e93-97f9-20ef169eb17b) - ) - (wire (pts (xy 26.67 102.87) (xy 26.67 106.68)) - (stroke (width 0) (type default)) - (uuid 6b91a3ee-fdcd-4bfe-ad57-c8d5ea9903a8) - ) - (wire (pts (xy 142.24 92.71) (xy 144.78 92.71)) - (stroke (width 0) (type default)) - (uuid 6cb535a7-247d-4f99-997d-c21b160eadfa) - ) - (wire (pts (xy 137.16 92.71) (xy 134.62 92.71)) - (stroke (width 0) (type default)) - (uuid 6cb93665-0bcd-4104-8633-fffd1811eee0) - ) - (wire (pts (xy 78.74 87.63) (xy 78.74 90.17)) - (stroke (width 0) (type default)) - (uuid 6d0c9e39-9878-44c8-8283-9a59e45006fa) - ) - (wire (pts (xy 114.3 105.41) (xy 114.3 125.73)) - (stroke (width 0) (type default)) - (uuid 701e1517-e8cf-46f4-b538-98e721c97380) - ) - (wire (pts (xy 209.55 111.76) (xy 213.36 111.76)) - (stroke (width 0) (type default)) - (uuid 70d34adf-9bd8-469e-8c77-5c0d7adf511e) - ) - (wire (pts (xy 78.74 64.77) (xy 78.74 66.04)) - (stroke (width 0) (type default)) - (uuid 715eeee6-5319-44c2-bb16-29e963188d0a) - ) - (wire (pts (xy 229.87 59.69) (xy 251.46 59.69)) - (stroke (width 0) (type default)) - (uuid 718e5c6d-0e4c-46d8-a149-2f2bfc54c7f1) - ) - (wire (pts (xy 62.23 105.41) (xy 62.23 97.79)) - (stroke (width 0) (type default)) - (uuid 71f8d568-0f23-4ff2-8e60-1600ce517a48) - ) - (wire (pts (xy 78.74 55.88) (xy 86.36 55.88)) - (stroke (width 0) (type default)) - (uuid 7325fe10-235e-4301-8706-2a8ae9f0e4be) - ) - (wire (pts (xy 31.75 97.79) (xy 39.37 97.79)) - (stroke (width 0) (type default)) - (uuid 74f5ec08-7600-4a0b-a9e4-aae29f9ea08a) - ) - (wire (pts (xy 132.08 53.34) (xy 134.62 53.34)) - (stroke (width 0) (type default)) - (uuid 75b944f9-bf25-4dc7-8104-e9f80b4f359b) - ) - (wire (pts (xy 240.03 69.85) (xy 240.03 72.39)) - (stroke (width 0) (type default)) - (uuid 76afa8e0-9b3a-439d-843c-ad039d3b6354) - ) - (wire (pts (xy 88.9 110.49) (xy 88.9 111.76)) - (stroke (width 0) (type default)) - (uuid 7744b6ee-910d-401d-b730-65c35d3d8092) - ) - (wire (pts (xy 209.55 85.09) (xy 217.17 85.09)) - (stroke (width 0) (type default)) - (uuid 775e8983-a723-43c5-bf00-61681f0840f3) - ) - (wire (pts (xy 95.25 156.21) (xy 114.3 156.21)) - (stroke (width 0) (type default)) - (uuid 78f9c3d3-3556-46f6-9744-05ad54b330f0) - ) - (wire (pts (xy 251.46 59.69) (xy 251.46 82.55)) - (stroke (width 0) (type default)) - (uuid 7b766787-7689-40b8-9ef5-c0b1af45a9ae) - ) - (wire (pts (xy 62.23 113.03) (xy 62.23 110.49)) - (stroke (width 0) (type default)) - (uuid 7c00778a-4692-4f9b-87d5-2d355077ce1e) - ) - (wire (pts (xy 74.93 153.67) (xy 71.12 153.67)) - (stroke (width 0) (type default)) - (uuid 7c2008c8-0626-4a09-a873-065e83502a0e) - ) - (wire (pts (xy 144.78 92.71) (xy 144.78 93.98)) - (stroke (width 0) (type default)) - (uuid 7c5f3091-7791-43b3-8d50-43f6a72274c9) - ) - (wire (pts (xy 78.74 66.04) (xy 86.36 66.04)) - (stroke (width 0) (type default)) - (uuid 7d1afd34-6bdc-40c0-8802-0f30d0b47af4) - ) - (wire (pts (xy 71.12 124.46) (xy 71.12 127)) - (stroke (width 0) (type default)) - (uuid 7db990e4-92e1-4f99-b4d2-435bbec1ba83) - ) - (wire (pts (xy 134.62 116.84) (xy 134.62 114.3)) - (stroke (width 0) (type default)) - (uuid 7f2b3ce3-2f20-426d-b769-e0329b6a8111) - ) - (wire (pts (xy 172.72 83.82) (xy 175.26 83.82)) - (stroke (width 0) (type default)) - (uuid 7f9683c1-2203-43df-8fa1-719a0dc360df) - ) - (wire (pts (xy 81.28 110.49) (xy 78.74 110.49)) - (stroke (width 0) (type default)) - (uuid 810ed4ff-ffe2-4032-9af6-fb5ada3bae5b) - ) - (wire (pts (xy 86.36 124.46) (xy 95.25 124.46)) - (stroke (width 0) (type default)) - (uuid 83021f70-e61e-4ad3-bae7-b9f02b28be4f) - ) - (wire (pts (xy 241.3 72.39) (xy 240.03 72.39)) - (stroke (width 0) (type default)) - (uuid 8486c294-aa7e-43c3-b257-1ca3356dd17a) - ) - (wire (pts (xy 134.62 92.71) (xy 134.62 95.25)) - (stroke (width 0) (type default)) - (uuid 84d4e166-b429-409a-ab37-c6a10fd82ff5) - ) - (wire (pts (xy 154.94 92.71) (xy 172.72 92.71)) - (stroke (width 0) (type default)) - (uuid 87a1984f-543d-4f2e-ad8a-7a3a24ee6047) - ) - (wire (pts (xy 95.25 124.46) (xy 95.25 100.33)) - (stroke (width 0) (type default)) - (uuid 89c9afdc-c346-4300-a392-5f9dd8c1e5bd) - ) - (wire (pts (xy 144.78 102.87) (xy 151.13 102.87)) - (stroke (width 0) (type default)) - (uuid 8ac400bf-c9b3-4af4-b0a7-9aa9ab4ad17e) - ) - (wire (pts (xy 95.25 144.78) (xy 95.25 156.21)) - (stroke (width 0) (type default)) - (uuid 8b7bbefd-8f78-41f8-809c-2534a5de3b39) - ) - (wire (pts (xy 114.3 45.72) (xy 114.3 43.18)) - (stroke (width 0) (type default)) - (uuid 8bdea5f6-7a53-427a-92b8-fd15994c2e8c) - ) - (wire (pts (xy 154.94 86.36) (xy 154.94 92.71)) - (stroke (width 0) (type default)) - (uuid 8cb2cd3a-4ef9-4ae5-b6bc-2b1d16f657d6) - ) - (wire (pts (xy 71.12 132.08) (xy 71.12 134.62)) - (stroke (width 0) (type default)) - (uuid 8efee08b-b92e-4ba6-8722-c058e18114fe) - ) - (wire (pts (xy 229.87 109.22) (xy 229.87 85.09)) - (stroke (width 0) (type default)) - (uuid 90f81af1-b6de-44aa-a46b-6504a157ce6c) - ) - (wire (pts (xy 236.22 109.22) (xy 237.49 109.22)) - (stroke (width 0) (type default)) - (uuid 946404ba-9297-43ec-9d67-30184041145f) - ) - (wire (pts (xy 59.69 158.75) (xy 63.5 158.75)) - (stroke (width 0) (type default)) - (uuid 97581b9a-3f6b-4e88-8768-6fdb60e6aca6) - ) - (wire (pts (xy 144.78 114.3) (xy 144.78 116.84)) - (stroke (width 0) (type default)) - (uuid 97dcf785-3264-40a1-a36e-8842acab24fb) - ) - (wire (pts (xy 115.57 43.18) (xy 114.3 43.18)) - (stroke (width 0) (type default)) - (uuid 98861672-254d-432b-8e5a-10d885a5ffdc) - ) - (wire (pts (xy 78.74 92.71) (xy 78.74 90.17)) - (stroke (width 0) (type default)) - (uuid 9c607e49-ee5c-4e85-a7da-6fede9912412) - ) - (wire (pts (xy 46.99 36.83) (xy 44.45 36.83)) - (stroke (width 0) (type default)) - (uuid 9ca6c54d-82cd-4c13-971f-cbabc908ce97) - ) - (wire (pts (xy 229.87 85.09) (xy 234.95 85.09)) - (stroke (width 0) (type default)) - (uuid 9e0e6fc0-a269-4822-b93d-4c5e6689ff11) - ) - (wire (pts (xy 209.55 106.68) (xy 209.55 85.09)) - (stroke (width 0) (type default)) - (uuid a0e7a81b-2259-4f8d-8368-ba75f2004714) - ) - (wire (pts (xy 88.9 90.17) (xy 88.9 91.44)) - (stroke (width 0) (type default)) - (uuid a25b7e01-1754-4cc9-8a14-3d9c461e5af5) - ) - (wire (pts (xy 114.3 40.64) (xy 114.3 43.18)) - (stroke (width 0) (type default)) - (uuid a599509f-fbb9-4db4-9adf-9e96bab1138d) - ) - (wire (pts (xy 234.95 80.01) (xy 229.87 80.01)) - (stroke (width 0) (type default)) - (uuid a64aeb89-c24a-493b-9aab-87a6be930bde) - ) - (wire (pts (xy 240.03 74.93) (xy 240.03 72.39)) - (stroke (width 0) (type default)) - (uuid a76a574b-1cac-43eb-81e6-0e2e278cea39) - ) - (wire (pts (xy 134.62 111.76) (xy 139.7 111.76)) - (stroke (width 0) (type default)) - (uuid a7f2e97b-29f3-44fd-bf8a-97a3c1528b61) - ) - (wire (pts (xy 30.48 39.37) (xy 30.48 43.18)) - (stroke (width 0) (type default)) - (uuid acff8fa4-cd06-42f1-8a86-8290c86d18d8) - ) - (wire (pts (xy 250.19 82.55) (xy 251.46 82.55)) - (stroke (width 0) (type default)) - (uuid aee7520e-3bfc-435f-a66b-1dd1f5aa6a87) - ) - (wire (pts (xy 166.37 102.87) (xy 162.56 102.87)) - (stroke (width 0) (type default)) - (uuid b0054ce1-b60e-41de-a6a2-bf712784dd39) - ) - (wire (pts (xy 35.56 19.05) (xy 35.56 24.13)) - (stroke (width 0) (type default)) - (uuid b3294856-8e3c-4d49-a94f-50271c26ad17) - ) - (wire (pts (xy 27.94 19.05) (xy 35.56 19.05)) - (stroke (width 0) (type default)) - (uuid b7c1076b-b00f-428f-aae7-934835af0036) - ) - (wire (pts (xy 125.73 53.34) (xy 127 53.34)) - (stroke (width 0) (type default)) - (uuid bac7c5b3-99df-445a-ade9-1e608bbbe27e) - ) - (wire (pts (xy 39.37 105.41) (xy 39.37 106.68)) - (stroke (width 0) (type default)) - (uuid bb59b92a-e4d0-4b9e-82cd-26304f5c15b8) - ) - (wire (pts (xy 26.67 106.68) (xy 26.67 107.95)) - (stroke (width 0) (type default)) - (uuid bd793ae5-cde5-43f6-8def-1f95f35b1be6) - ) - (wire (pts (xy 182.88 83.82) (xy 180.34 83.82)) - (stroke (width 0) (type default)) - (uuid be2983fa-f06e-485e-bea1-3dd96b916ec5) - ) - (wire (pts (xy 114.3 156.21) (xy 114.3 132.08)) - (stroke (width 0) (type default)) - (uuid be41ac9e-b8ba-4089-983b-b84269707f1c) - ) - (wire (pts (xy 78.74 55.88) (xy 78.74 59.69)) - (stroke (width 0) (type default)) - (uuid c71f56c1-5b7c-4373-9716-fffac482104c) - ) - (wire (pts (xy 201.93 99.06) (xy 201.93 96.52)) - (stroke (width 0) (type default)) - (uuid c873689a-d206-42f5-aead-9199b4d63f51) - ) - (wire (pts (xy 157.48 86.36) (xy 154.94 86.36)) - (stroke (width 0) (type default)) - (uuid c8ab8246-b2bb-4b06-b45e-2548482466fd) - ) - (wire (pts (xy 209.55 116.84) (xy 209.55 120.65)) - (stroke (width 0) (type default)) - (uuid cb083d38-4f11-4a80-8b19-ab751c405e4a) - ) - (wire (pts (xy 228.6 109.22) (xy 229.87 109.22)) - (stroke (width 0) (type default)) - (uuid cbde200f-1075-469a-89f8-abbdcf30e36a) - ) - (wire (pts (xy 104.14 26.67) (xy 104.14 34.29)) - (stroke (width 0) (type default)) - (uuid cbebc05a-c4dd-4baf-8c08-196e84e08b27) - ) - (wire (pts (xy 86.36 110.49) (xy 88.9 110.49)) - (stroke (width 0) (type default)) - (uuid cc75e5ae-3348-4e7a-bd16-4df685ee47bd) - ) - (wire (pts (xy 71.12 102.87) (xy 71.12 124.46)) - (stroke (width 0) (type default)) - (uuid cd5e758d-cb66-484a-ae8b-21f53ceee49e) - ) - (wire (pts (xy 201.93 91.44) (xy 201.93 85.09)) - (stroke (width 0) (type default)) - (uuid cee2f43a-7d22-4585-a857-73949bd17a9d) - ) - (wire (pts (xy 67.31 44.45) (xy 67.31 34.29)) - (stroke (width 0) (type default)) - (uuid da954e7c-4bc9-47d3-9c46-cff3365d1372) - ) - (wire (pts (xy 57.15 97.79) (xy 62.23 97.79)) - (stroke (width 0) (type default)) - (uuid dbe92a0d-89cb-4d3f-9497-c2c1d93a3018) - ) - (wire (pts (xy 172.72 92.71) (xy 172.72 83.82)) - (stroke (width 0) (type default)) - (uuid dc1d84c8-33da-4489-be8e-2a1de3001779) - ) - (wire (pts (xy 30.48 43.18) (xy 35.56 43.18)) - (stroke (width 0) (type default)) - (uuid dd04ac86-45d5-4ad5-a7fc-010d917decbc) - ) - (wire (pts (xy 251.46 82.55) (xy 252.73 82.55)) - (stroke (width 0) (type default)) - (uuid df2a6036-7274-4398-9365-148b6ddab90d) - ) - (wire (pts (xy 137.16 114.3) (xy 134.62 114.3)) - (stroke (width 0) (type default)) - (uuid e0830067-5b66-4ce1-b2d1-aaa8af20baf7) - ) - (wire (pts (xy 30.48 34.29) (xy 30.48 31.75)) - (stroke (width 0) (type default)) - (uuid e1d43c08-3da9-495e-9040-1994977b887e) - ) - (wire (pts (xy 71.12 144.78) (xy 95.25 144.78)) - (stroke (width 0) (type default)) - (uuid e300709f-6c72-488d-a598-efcbd6d3af54) - ) - (wire (pts (xy 73.66 102.87) (xy 71.12 102.87)) - (stroke (width 0) (type default)) - (uuid e36988d2-ecb2-461b-a443-7006f447e828) - ) - (wire (pts (xy 78.74 110.49) (xy 78.74 107.95)) - (stroke (width 0) (type default)) - (uuid e5e5220d-5b7e-47da-a902-b997ec8d4d58) - ) - (wire (pts (xy 62.23 55.88) (xy 72.39 55.88)) - (stroke (width 0) (type default)) - (uuid e70b6168-f98e-4322-bc55-500948ef7b77) - ) - (wire (pts (xy 134.62 110.49) (xy 134.62 111.76)) - (stroke (width 0) (type default)) - (uuid e87738fc-e372-4c48-9de9-398fd8b4874c) - ) - (wire (pts (xy 35.56 31.75) (xy 35.56 34.29)) - (stroke (width 0) (type default)) - (uuid e9e5add4-52bc-4c3a-baee-ebd6b07707ba) - ) - (wire (pts (xy 86.36 55.88) (xy 109.22 55.88)) - (stroke (width 0) (type default)) - (uuid eac8d865-0226-4958-b547-6b5592f39713) - ) - (wire (pts (xy 81.28 124.46) (xy 71.12 124.46)) - (stroke (width 0) (type default)) - (uuid f2480d0c-9b08-4037-9175-b2369af04d4c) - ) - (wire (pts (xy 81.28 90.17) (xy 78.74 90.17)) - (stroke (width 0) (type default)) - (uuid f345e52a-8e0a-425a-b438-90809dd3b799) - ) - (wire (pts (xy 77.47 55.88) (xy 78.74 55.88)) - (stroke (width 0) (type default)) - (uuid f447e585-df78-4239-b8cb-4653b3837bb1) - ) - (wire (pts (xy 222.25 85.09) (xy 229.87 85.09)) - (stroke (width 0) (type default)) - (uuid f50dae73-c5b5-475d-ac8c-5b555be54fa3) - ) - (wire (pts (xy 95.25 100.33) (xy 96.52 100.33)) - (stroke (width 0) (type default)) - (uuid f5bf5b4a-5213-48af-a5cd-0d67969d2de6) - ) - (wire (pts (xy 142.24 114.3) (xy 144.78 114.3)) - (stroke (width 0) (type default)) - (uuid f5c43e09-08d6-4a29-a53a-3b9ea7fb34cd) - ) - (wire (pts (xy 39.37 106.68) (xy 26.67 106.68)) - (stroke (width 0) (type default)) - (uuid f6983918-fe05-46ea-b355-bc522ec53440) - ) - (wire (pts (xy 104.14 26.67) (xy 111.76 26.67)) - (stroke (width 0) (type default)) - (uuid f7447e92-4293-41c4-be3f-69b30aad1f17) - ) - (wire (pts (xy 106.68 110.49) (xy 106.68 111.76)) - (stroke (width 0) (type default)) - (uuid fa00d3f4-bb71-4b1d-aa40-ae9267e2c41f) - ) - (wire (pts (xy 44.45 44.45) (xy 67.31 44.45)) - (stroke (width 0) (type default)) - (uuid fc6c0750-2e63-446b-a4d5-825caa091858) - ) - - (text "R19,C25 set the output filter cut-off frequency \nDefault: 10 MHz" - (at 133.35 24.13 0) - (effects (font (size 1.524 1.524)) (justify left bottom)) - (uuid 10d8ad0e-6a08-4053-92aa-23a15910fd21) - ) - (text "R16 and piezo capacitance\nform a low-pass filter. \nChange R16 to set the \ncut-off frequency." - (at 153.67 125.73 0) - (effects (font (size 1.524 1.524)) (justify left bottom)) - (uuid 2b64d2cb-d62a-4762-97ea-f1b0d4293c4f) - ) - (text "Use as non-inv. amp (R7,R27)\nor divider (R23,R25)\nfor level adjustment." - (at 195.58 138.43 0) - (effects (font (size 1.524 1.524)) (justify left bottom)) - (uuid 99186658-0361-40ba-ae93-62f23c5622e6) - ) - - (hierarchical_label "+10V_ref" (shape input) (at 27.94 19.05 180) (fields_autoplaced) - (effects (font (size 1.524 1.524)) (justify right)) - (uuid 11a5ce0b-ddcd-4f4b-b62b-260eef58ff29) - ) - (hierarchical_label "+12V" (shape input) (at 240.03 92.71 270) (fields_autoplaced) - (effects (font (size 1.524 1.524)) (justify right)) - (uuid 26d26af1-aac3-4a64-b170-032002954c04) - ) - (hierarchical_label "-12V" (shape input) (at 134.62 116.84 270) (fields_autoplaced) - (effects (font (size 1.524 1.524)) (justify right)) - (uuid 3c4f222b-1961-43d2-90d8-2922e33e595d) - ) - (hierarchical_label "-12V" (shape input) (at 114.3 40.64 90) (fields_autoplaced) - (effects (font (size 1.524 1.524)) (justify left)) - (uuid 638155e7-3d82-48c6-8cc2-b3f464c3fa2c) - ) - (hierarchical_label "+12V" (shape input) (at 134.62 90.17 90) (fields_autoplaced) - (effects (font (size 1.524 1.524)) (justify left)) - (uuid 6d98fbe8-8ad8-4d5d-9122-f418466ef1d2) - ) - (hierarchical_label "-12V" (shape input) (at 240.03 69.85 90) (fields_autoplaced) - (effects (font (size 1.524 1.524)) (justify left)) - (uuid a1dbe95f-6fa8-47e2-b55d-25a086860635) - ) - (hierarchical_label "+12V" (shape input) (at 114.3 63.5 270) (fields_autoplaced) - (effects (font (size 1.524 1.524)) (justify right)) - (uuid a70e670a-af69-4dd7-a0c3-a647916caab4) - ) - (hierarchical_label "+12V" (shape input) (at 78.74 87.63 90) (fields_autoplaced) - (effects (font (size 1.524 1.524)) (justify left)) - (uuid ed47e1f4-1a91-4875-be4d-7e78cdfcb447) - ) - (hierarchical_label "SET" (shape input) (at 48.26 158.75 180) (fields_autoplaced) - (effects (font (size 1.524 1.524)) (justify right)) - (uuid f9ac96b1-e75a-429d-9cbd-97307d0bca2a) - ) - (hierarchical_label "-12V" (shape input) (at 78.74 113.03 270) (fields_autoplaced) - (effects (font (size 1.524 1.524)) (justify right)) - (uuid fd9538bc-ec52-4ddc-b2f3-932905f1c571) - ) - - (symbol (lib_id "Amplifier_Operational:OPA1604") (at 121.92 102.87 0) (unit 2) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b057930) - (property "Reference" "U4" (at 121.92 97.79 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "OPA1604" (at 121.92 107.95 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 120.65 100.33 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "http://www.ti.com/lit/ds/symlink/opa1604.pdf" (at 123.19 97.79 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Texas Instruments" (at 121.92 102.87 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "OPA1604AIDR" (at 121.92 102.87 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 1e1e3a29-5fd9-4a3e-ba42-6dd7a361b18a)) - (pin "2" (uuid 9e6d985f-2df8-41ad-9f9f-1f00ae725ca9)) - (pin "3" (uuid 6c072fe2-0e9e-4c73-9a92-639a06743191)) - (pin "5" (uuid 00dd6f52-63d0-4679-a71b-f8fc5a06e8c3)) - (pin "6" (uuid 910b5d8a-b1af-4e84-ac07-c89c582ac4d5)) - (pin "7" (uuid 4a3382f4-c28e-4147-b5e4-73f87a0b6d2b)) - (pin "10" (uuid 3804c20c-edf1-4730-b01a-2c92a23ad2b3)) - (pin "8" (uuid 9cbc8fc1-022f-47b4-8d9b-06853826504e)) - (pin "9" (uuid 712ca4ba-0569-4cc7-b6bf-ee818a027c73)) - (pin "12" (uuid 44be95c5-a811-494b-9904-b96340fb7eaa)) - (pin "13" (uuid b110a8fc-4ff5-40c7-b588-5398978d1962)) - (pin "14" (uuid 0357b5ff-df48-499b-b96b-8a8e9a03372a)) - (pin "11" (uuid 9456ac28-da9d-4d9f-bea2-8856d131e5fe)) - (pin "4" (uuid 06823cca-383f-40d3-8a9d-bc906071a249)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "U4") (unit 2) - ) - ) - ) - ) - - (symbol (lib_id "Device:C_Small") (at 83.82 90.17 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b057937) - (property "Reference" "C14" (at 85.598 90.424 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "100n" (at 83.82 87.63 90) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 83.82 90.17 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 83.82 90.17 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Kemet" (at 83.82 90.17 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "C0603C104K5RECAUTO" (at 83.82 90.17 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid e910650f-f039-4f57-804b-bcdcddf1f00a)) - (pin "2" (uuid a9352142-1822-465f-9e27-c4ec8e869c39)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "C14") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 88.9 91.44 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b05793e) - (property "Reference" "#PWR012" (at 88.9 97.79 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 88.9 95.25 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 88.9 91.44 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 88.9 91.44 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid e4756e5c-2bb9-4fa0-b56c-795a8d1ee44c)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "#PWR012") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 88.9 111.76 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b057944) - (property "Reference" "#PWR013" (at 88.9 118.11 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 88.9 115.57 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 88.9 111.76 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 88.9 111.76 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid f3d16685-f2bb-498a-8bb1-3461d41f2123)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "#PWR013") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Connector:Conn_Coaxial") (at 26.67 97.79 0) (mirror y) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b057966) - (property "Reference" "J3" (at 26.67 93.98 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "Piezo_In (Out1)" (at 24.13 97.79 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Connector_Coaxial:SMA_Amphenol_132134_Vertical" (at 26.67 97.79 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 26.67 97.79 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Config" "" (at 26.67 97.79 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "MFN" "Amphenol" (at 26.67 97.79 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "901-144-8RFX" (at 26.67 97.79 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 93b8e397-8481-447c-b63e-a05bc2fe0f17)) - (pin "2" (uuid 649c3555-a042-4726-8a52-b010b0c0eb4d)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "J3") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 26.67 107.95 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b05796d) - (property "Reference" "#PWR014" (at 26.67 114.3 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 26.67 111.76 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 26.67 107.95 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 26.67 107.95 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 02855b7f-553d-4cd0-8e87-028364f323f1)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "#PWR014") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 62.23 113.03 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b057973) - (property "Reference" "#PWR015" (at 62.23 119.38 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 62.23 116.84 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 62.23 113.03 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 62.23 113.03 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid bcf95231-6657-4776-b9d4-11041e1d83af)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "#PWR015") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "TexasInstruments:BUF634") (at 137.16 102.87 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b05797a) - (property "Reference" "U5" (at 142.24 100.33 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "BUF634" (at 142.24 105.41 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (at 137.16 102.87 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 137.16 102.87 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Texas Instruments" (at 137.16 102.87 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "BUF634AIDR" (at 137.16 102.87 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Field4" "1" (at 137.16 102.87 0) - (effects (font (size 1.27 1.27))) - ) - (pin "4" (uuid 8c6d2a68-1e86-4cd8-86da-9252a6831921)) - (pin "7" (uuid 2c75b0fd-8d39-4134-8230-331aada634fa)) - (pin "1" (uuid 0ae91059-c3cb-42ca-b237-3365d95bbdf4)) - (pin "2" (uuid 5413cfb2-f01c-497a-8227-7c9b29df3e1a)) - (pin "3" (uuid 0e8b54b8-a5f4-4bb5-915f-c2ac7f05bd90)) - (pin "5" (uuid ee4970b1-f439-4c11-9a72-4282be4dd4d3)) - (pin "6" (uuid 413ed2ad-bd97-4c0d-9d65-9fd24c3213ef)) - (pin "8" (uuid efee7332-9835-44f9-a57f-afd8c41d7573)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "U5") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 144.78 93.98 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b057981) - (property "Reference" "#PWR016" (at 144.78 100.33 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 144.78 97.79 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 144.78 93.98 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 144.78 93.98 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 14dae859-8a5e-4c74-8dd1-33305fc12529)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "#PWR016") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R") (at 158.75 102.87 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b057987) - (property "Reference" "R16" (at 158.75 104.902 90) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "4.7" (at 158.75 102.87 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Resistor_SMD:R_1210_3225Metric" (at 158.75 101.092 90) - (effects (font (size 1.27 1.27) bold) hide) - ) - (property "Datasheet" "~" (at 158.75 102.87 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Panasonic" (at 158.75 102.87 90) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "ERJ-14YJ4R7U" (at 158.75 102.87 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 22f7a9a7-52b7-4def-9f01-74ce752895c6)) - (pin "2" (uuid 3d357196-16a7-43c8-a9c0-2fb0aec0b012)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "R16") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Connector:Conn_Coaxial") (at 171.45 102.87 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b05798e) - (property "Reference" "J5" (at 171.45 99.06 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "Piezo_Out" (at 173.99 102.87 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Connector_Coaxial:SMA_Amphenol_132134_Vertical" (at 171.45 102.87 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 171.45 102.87 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Config" "" (at 171.45 102.87 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "MFN" "Amphenol" (at 171.45 102.87 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "901-144-8RFX" (at 171.45 102.87 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid afb11357-1c53-4a8e-9b7f-b8995b3d515b)) - (pin "2" (uuid 17875c8c-8727-42c5-8872-c4d3b4705644)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "J5") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 171.45 107.95 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b057995) - (property "Reference" "#PWR017" (at 171.45 114.3 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 171.45 111.76 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 171.45 107.95 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 171.45 107.95 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid a7059164-29ca-42a4-97d0-e8e563d26094)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "#PWR017") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Amplifier_Operational:OPA1604") (at 165.1 83.82 0) (unit 3) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b05799b) - (property "Reference" "U4" (at 165.1 78.74 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "OPA1604" (at 165.1 88.9 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 163.83 81.28 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "http://www.ti.com/lit/ds/symlink/opa1604.pdf" (at 166.37 78.74 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Texas Instruments" (at 165.1 83.82 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "OPA1604AIDR" (at 165.1 83.82 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 44cb3a2d-98a3-45bc-b19f-0914c6d3ad5b)) - (pin "2" (uuid 35b63703-e4f2-47d4-ba8c-44b4718a187f)) - (pin "3" (uuid c360155b-ac86-4f11-a98e-cc3352f022a5)) - (pin "5" (uuid 6dba759f-f208-453a-9723-1396f3386552)) - (pin "6" (uuid ce8a0053-6ffb-4645-b0a3-5ee42e92cf2a)) - (pin "7" (uuid 846f0dfb-3855-4b4e-9daa-f88392604639)) - (pin "10" (uuid 6555b1d2-85d4-4bd7-9164-d3a136d4dd84)) - (pin "8" (uuid ccaa07c3-e0c0-4a0e-8ceb-b9a248489eb6)) - (pin "9" (uuid 24381925-eb4d-4686-945e-f9dc83f3ca3e)) - (pin "12" (uuid 3618c087-2c90-4d2e-806f-183c21730684)) - (pin "13" (uuid 263938d2-1496-464f-bf6e-4d74879eb372)) - (pin "14" (uuid 8f3ab412-8ef6-44fe-8b42-0680daf5d1b7)) - (pin "11" (uuid 7daee1ea-7cc4-411d-9f67-80c226e959bf)) - (pin "4" (uuid d0759856-8433-49ae-bf85-9ca252d32150)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "U4") (unit 3) - ) - ) - ) - ) - - (symbol (lib_id "Device:R_Small") (at 177.8 83.82 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b0579a2) - (property "Reference" "R18" (at 178.308 84.582 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "49.9" (at 176.784 84.582 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_1210_3225Metric" (at 177.8 83.82 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 177.8 83.82 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Yageo" (at 177.8 83.82 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "RC1210FR-0749R9L" (at 177.8 83.82 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 47b6694c-c477-4176-af38-50c331ec0ae7)) - (pin "2" (uuid 32bac44f-1573-49d9-b256-779e022f86cf)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "R18") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Connector:Conn_Coaxial") (at 187.96 83.82 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b0579a9) - (property "Reference" "J7" (at 187.96 80.01 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "Piezo_Monitor" (at 190.5 83.82 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Connector_Coaxial:SMA_Amphenol_132134_Vertical" (at 187.96 83.82 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 187.96 83.82 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Config" "" (at 187.96 83.82 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "MFN" "Amphenol" (at 187.96 83.82 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "901-144-8RFX" (at 187.96 83.82 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 3c41cbd6-a157-4677-95fb-3dcb00e63628)) - (pin "2" (uuid 202d5f78-ae9c-438e-9dd2-98379b2148d1)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "J7") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 187.96 88.9 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b0579b0) - (property "Reference" "#PWR018" (at 187.96 95.25 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 187.96 92.71 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 187.96 88.9 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 187.96 88.9 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 77764113-01f9-4080-be5e-3f5e417724ed)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "#PWR018") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Amplifier_Operational:OPA1604") (at 81.28 100.33 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b057a01) - (property "Reference" "U4" (at 81.28 95.25 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "OPA1604" (at 81.28 105.41 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 80.01 97.79 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "http://www.ti.com/lit/ds/symlink/opa1604.pdf" (at 82.55 95.25 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Texas Instruments" (at 81.28 100.33 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "OPA1604AIDR" (at 81.28 100.33 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 3a490b2c-e0ce-411b-abf5-7f02ffe136b7)) - (pin "2" (uuid 87bc0137-cfa3-4855-aeb1-c59dcdeaf0e7)) - (pin "3" (uuid 5189aa6e-70ab-4a3f-b077-dda1741f91b7)) - (pin "5" (uuid 58a18b30-dde5-471b-aadb-4df564adac6e)) - (pin "6" (uuid 676c8c6c-5758-4944-92ef-f676eb79bece)) - (pin "7" (uuid 00c7d6d6-f6f2-4ee1-af46-bcf6e0d153a7)) - (pin "10" (uuid d6a51d8f-d58c-4aff-bd86-aabd45535cb8)) - (pin "8" (uuid ec9124ac-be00-4ec0-b39e-64fec244e85b)) - (pin "9" (uuid 2b7fd2a9-b0d1-4169-b2fb-c83c08c39cd2)) - (pin "12" (uuid db518c2e-f672-4503-98cb-7bac2e30e4a9)) - (pin "13" (uuid 94354d44-479b-4945-af24-170c1ea693da)) - (pin "14" (uuid 5778f0b0-32c4-46af-974b-a7dc53b692d1)) - (pin "11" (uuid 0f93b532-76de-49be-9279-49b264413c9f)) - (pin "4" (uuid 4180d6c4-fad3-4f67-bfe2-f28a8049a012)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "U4") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C_Small") (at 83.82 110.49 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b057a08) - (property "Reference" "C15" (at 85.598 110.744 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "100n" (at 81.788 110.744 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 83.82 110.49 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 83.82 110.49 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Kemet" (at 83.82 110.49 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "C0603C104K5RECAUTO" (at 83.82 110.49 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid bacf6344-ee3a-46c7-8cbb-4031422852e4)) - (pin "2" (uuid ccb69b81-201b-4c4f-8778-27aa5f8225c1)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "C15") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R_Small") (at 99.06 100.33 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b057a11) - (property "Reference" "R9" (at 99.568 101.092 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "1k" (at 98.044 101.092 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 99.06 100.33 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 99.06 100.33 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Susumu" (at 99.06 100.33 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "RR0816P-102-D" (at 99.06 100.33 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 42eaa9c5-0fee-4a98-add2-e062176deef9)) - (pin "2" (uuid 3b7f0654-6e72-42da-835b-cdd9d7384bf4)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "R9") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R_Small") (at 124.46 125.73 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b057a18) - (property "Reference" "R14" (at 124.968 126.492 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "2k" (at 123.444 126.492 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 124.46 125.73 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 124.46 125.73 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Susumu" (at 124.46 125.73 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "RR0816P-202-D" (at 124.46 125.73 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 697ef020-7c90-47dc-b54e-2dc78623c440)) - (pin "2" (uuid e2b2a47e-f126-4d77-a2fc-7296174ded72)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "R14") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R_Small") (at 114.3 129.54 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b057a35) - (property "Reference" "R12" (at 115.062 129.032 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "1k" (at 115.062 130.556 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 114.3 129.54 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 114.3 129.54 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Susumu" (at 114.3 129.54 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "RR0816P-102-D" (at 114.3 129.54 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 1bc808c2-7aeb-4546-9485-b34352cea986)) - (pin "2" (uuid 09af8c62-9922-473d-b470-8e39b61ece87)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "R12") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 106.68 111.76 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b057a3c) - (property "Reference" "#PWR029" (at 106.68 118.11 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 106.68 115.57 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 106.68 111.76 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 106.68 111.76 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 1775540d-aec8-4594-9f46-ec7b6975da5f)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "#PWR029") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Connector:Conn_Coaxial") (at 242.57 109.22 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b0591a2) - (property "Reference" "J14" (at 242.57 105.41 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "Error_Out (In1)" (at 245.11 109.22 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Connector_Coaxial:SMA_Amphenol_132134_Vertical" (at 242.57 109.22 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 242.57 109.22 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Config" "" (at 242.57 109.22 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "MFN" "Amphenol" (at 242.57 109.22 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "901-144-8RFX" (at 242.57 109.22 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid c9af946f-b7e2-4039-8e5f-6bc0b530f0f1)) - (pin "2" (uuid 84d9c686-cfb8-45e3-96ca-ce4ba0200ee3)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "J14") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Connector:Conn_Coaxial") (at 195.58 116.84 0) (mirror y) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b0591ae) - (property "Reference" "J12" (at 195.58 113.03 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "Error_In" (at 193.04 116.84 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Connector_Coaxial:SMA_Amphenol_132134_Vertical" (at 195.58 116.84 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 195.58 116.84 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Config" "" (at 195.58 116.84 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "MFN" "Amphenol" (at 195.58 116.84 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "901-144-8RFX" (at 195.58 116.84 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid aa7a268d-95c3-415d-b496-a31927c1db12)) - (pin "2" (uuid a11faa0b-e8ea-4df5-9c48-0fcb89cfdf83)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "J12") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R_Small") (at 205.74 116.84 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b0591b4) - (property "Reference" "R23" (at 206.248 117.602 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "0" (at 204.724 117.602 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 205.74 116.84 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 205.74 116.84 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Vishay" (at 205.74 116.84 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "CRCW06030000Z0EB" (at 205.74 116.84 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 8415fb44-de71-4cbc-9133-9df37162e986)) - (pin "2" (uuid a1c4e8cd-207e-42eb-a8c2-7d09a891d7e5)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "R23") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R_Small") (at 209.55 123.19 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b0591c0) - (property "Reference" "R25" (at 210.312 122.682 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "1M" (at 210.312 124.206 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 209.55 123.19 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 209.55 123.19 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Panasonic" (at 209.55 123.19 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "ERJ-3RED1004V" (at 209.55 123.19 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid fb1daf15-ac6a-48e5-81de-fe40cb6308b6)) - (pin "2" (uuid bf0a3c89-f7df-4d76-8d2b-8e1fcdde08b0)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "R25") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R_Small") (at 219.71 85.09 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b0591c6) - (property "Reference" "R27" (at 220.218 85.852 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "0" (at 218.694 85.852 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 219.71 85.09 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 219.71 85.09 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Vishay" (at 219.71 85.09 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "CRCW06030000Z0EB" (at 219.71 85.09 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 5b259a34-0f5c-403a-a579-804f5da1b696)) - (pin "2" (uuid 946acd9f-c9c2-4744-ad6a-98f62a6c22cc)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "R27") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 242.57 114.3 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b0591cc) - (property "Reference" "#PWR020" (at 242.57 120.65 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 242.57 118.11 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 242.57 114.3 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 242.57 114.3 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 80e3ad5d-889e-4a8a-b73e-70274e2b680b)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "#PWR020") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 209.55 127 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b0591d2) - (property "Reference" "#PWR021" (at 209.55 133.35 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 209.55 130.81 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 209.55 127 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 209.55 127 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid f7e5e016-e989-4803-aa41-84ec0d5c0c32)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "#PWR021") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 195.58 121.92 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b0591d8) - (property "Reference" "#PWR022" (at 195.58 128.27 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 195.58 125.73 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 195.58 121.92 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 195.58 121.92 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid accabc6c-343c-451b-b8a8-93d03011d950)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "#PWR022") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Amplifier_Operational:OPA1604") (at 82.55 156.21 0) (mirror x) (unit 4) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b0591f9) - (property "Reference" "U4" (at 82.55 161.29 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "OPA1604" (at 82.55 151.13 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 81.28 158.75 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "http://www.ti.com/lit/ds/symlink/opa1604.pdf" (at 83.82 161.29 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Texas Instruments" (at 82.55 156.21 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "OPA1604AIDR" (at 82.55 156.21 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 6284514c-c8f8-469d-8a88-e192e1fa51b4)) - (pin "2" (uuid 19137aa6-8d2b-46bd-ad0e-307c27bb5fb0)) - (pin "3" (uuid ab391e5a-b369-4ade-bcd1-905e88bb2e28)) - (pin "5" (uuid 414ed16d-bf1a-4900-9a27-7fdc84024bd9)) - (pin "6" (uuid 206acbb2-b9f4-451a-8523-5225e743d44a)) - (pin "7" (uuid 3466fa9e-10cb-4f47-8cd5-6e978ec2949b)) - (pin "10" (uuid f45b8dfd-0089-4e42-a8c3-7401861d5cb2)) - (pin "8" (uuid 487ead0c-c849-4b2a-adac-54a1490ebdfe)) - (pin "9" (uuid b8edfe6e-9c31-4274-a8cb-9ac25eff49f7)) - (pin "12" (uuid 9f1ac98c-8a47-48c2-a6e7-b95457096c8b)) - (pin "13" (uuid e93ee68d-eaca-4d5f-8039-2c05a18d1184)) - (pin "14" (uuid 4f84cf8a-c98b-44cf-9573-097770651546)) - (pin "11" (uuid b4131ae8-9d28-4c3c-9f99-08b94256720b)) - (pin "4" (uuid b07c1ab7-80bc-4b00-bf88-f2df3a72c976)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "U4") (unit 4) - ) - ) - ) - ) - - (symbol (lib_id "Connector:Conn_Coaxial") (at 265.43 82.55 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b0591ff) - (property "Reference" "J16" (at 265.43 78.74 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "Error_Mon" (at 267.97 82.55 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Connector_Coaxial:SMA_Amphenol_132134_Vertical" (at 265.43 82.55 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 265.43 82.55 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Config" "" (at 265.43 82.55 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "MFN" "Amphenol" (at 265.43 82.55 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "901-144-8RFX" (at 265.43 82.55 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 02b04eef-35be-4f6e-bdc5-b507e158620c)) - (pin "2" (uuid 7cd6cd6f-dc77-4a25-9f5f-91b72069ae81)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "J16") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R_Small") (at 255.27 82.55 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b059205) - (property "Reference" "R29" (at 255.778 83.312 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "49.9" (at 254.254 83.312 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_1210_3225Metric" (at 255.27 82.55 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 255.27 82.55 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Yageo" (at 255.27 82.55 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "RC1210FR-0749R9L" (at 255.27 82.55 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid d1238931-fd05-48ce-b254-cf6847b09b08)) - (pin "2" (uuid a09a43e1-08da-4f53-bd30-8877493490a3)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "R29") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 265.43 87.63 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b05920e) - (property "Reference" "#PWR023" (at 265.43 93.98 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 265.43 91.44 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 265.43 87.63 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 265.43 87.63 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid d261f35d-0cbc-4647-a972-96323318fdbd)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "#PWR023") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Amplifier_Operational:OPA1602") (at 220.98 109.22 0) (mirror x) (unit 2) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b05975d) - (property "Reference" "U8" (at 220.98 114.3 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "OPA1602" (at 220.98 104.14 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (at 220.98 102.235 0) - (effects (font (size 1.27 1.27)) (justify left) hide) - ) - (property "Datasheet" "http://www.ti.com/lit/ds/symlink/opa1604.pdf" (at 220.98 109.22 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Texas Instruments" (at 220.98 109.22 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "OPA1602AIDR" (at 220.98 109.22 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid bd3ab455-c5dc-4f43-8569-b8ee8f8cd209)) - (pin "2" (uuid 5aea360f-7c09-4e5b-b0ee-1e11f718320e)) - (pin "3" (uuid 085f3a55-216e-4866-bf12-b7ee5b4555bb)) - (pin "5" (uuid 5945caf4-d62b-4d80-ac8a-25d831dac01b)) - (pin "6" (uuid b5a65e37-67a1-47d2-9507-0b2712638ff6)) - (pin "7" (uuid 94db4bde-c0ea-42be-8225-452b32a2a943)) - (pin "4" (uuid 6295b3c3-d678-40ff-9204-77a43d3efdf7)) - (pin "8" (uuid 1a1ab387-e2b1-4d44-8079-5e4746ceb830)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "U8") (unit 2) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 246.38 72.39 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b059a6b) - (property "Reference" "#PWR024" (at 246.38 78.74 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 246.38 76.2 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 246.38 72.39 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 246.38 72.39 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid cbe66445-f484-4956-801f-fede2b75f79e)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "#PWR024") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 246.38 92.71 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b05a24d) - (property "Reference" "#PWR025" (at 246.38 99.06 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 246.38 96.52 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 246.38 92.71 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 246.38 92.71 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 7a2f8939-870f-4168-b4e6-0c9c1bf69642)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "#PWR025") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R_Small") (at 201.93 93.98 180) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b3fa4a8) - (property "Reference" "R7" (at 201.168 94.488 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "DNF" (at 201.168 92.964 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 201.93 93.98 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 201.93 93.98 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Config" "DNF" (at 201.93 93.98 0) - (effects (font (size 1.524 1.524)) hide) - ) - (pin "1" (uuid 36ee6cee-2684-44cd-9dba-5a4e809c4304)) - (pin "2" (uuid 805f93df-798e-4572-8612-6d5c10b2364e)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "R7") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 201.93 99.06 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b3fa542) - (property "Reference" "#PWR026" (at 201.93 105.41 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 201.93 102.87 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 201.93 99.06 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 201.93 99.06 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid e92bce43-9c3b-455d-88d1-f9ac0e202bf9)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "#PWR026") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Amplifier_Operational:OPA1602") (at 242.57 82.55 0) (mirror x) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b4016af) - (property "Reference" "U8" (at 242.57 87.63 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "OPA1602" (at 242.57 77.47 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (at 242.57 75.565 0) - (effects (font (size 1.27 1.27)) (justify left) hide) - ) - (property "Datasheet" "http://www.ti.com/lit/ds/symlink/opa1604.pdf" (at 242.57 82.55 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Texas Instruments" (at 242.57 82.55 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "OPA1602AIDR" (at 242.57 82.55 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 47b3834c-8a87-4af3-9143-c88b9cd89304)) - (pin "2" (uuid adc74667-5dec-4b95-9d35-ffc7db9ad260)) - (pin "3" (uuid af58d6aa-33e4-4da2-8ea3-2304125e31c0)) - (pin "5" (uuid 3c58c7c3-b16e-4def-8979-0b4ef9937989)) - (pin "6" (uuid 6afea985-dd81-49c6-a1f1-ddf2bb8b2ba5)) - (pin "7" (uuid 9b30aba0-6e57-4de7-9fad-733e147e18e9)) - (pin "4" (uuid c9bf622e-d51d-41f1-8de2-337fe4ac5abb)) - (pin "8" (uuid 44622ffd-7e7d-4bb2-afb7-4b3302d73b1f)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "U8") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C_Small") (at 62.23 107.95 0) (mirror y) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b6d8fe5) - (property "Reference" "C10" (at 61.976 106.172 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "16n (C0G)" (at 61.976 109.982 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_SMD:C_1206_3216Metric" (at 62.23 107.95 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 62.23 107.95 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Murata Electronics" (at 62.23 107.95 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "GRM3195C1H163JA01D" (at 62.23 107.95 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid f6dd86d1-d812-46b6-9d75-34e3413faa14)) - (pin "2" (uuid a212ca99-b62e-469e-8301-b9b2c1f3389e)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "C10") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 63.5 172.72 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b6d90a7) - (property "Reference" "#PWR027" (at 63.5 179.07 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 63.5 176.53 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 63.5 172.72 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 63.5 172.72 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid bd7d5bca-5f22-4960-a330-d26a208f450b)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "#PWR027") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R_Small") (at 233.68 109.22 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005c1a6223) - (property "Reference" "R11" (at 234.188 109.982 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "49.9" (at 232.664 109.982 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_1210_3225Metric" (at 233.68 109.22 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 233.68 109.22 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Yageo" (at 233.68 109.22 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "RC1210FR-0749R9L" (at 233.68 109.22 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 5a5e12c1-9b8e-4895-b251-403c1eb19c78)) - (pin "2" (uuid 1e77d05a-47c6-4779-a271-263f4100b67f)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "R11") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C_Small") (at 139.7 114.3 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005c1ade01) - (property "Reference" "C19" (at 141.478 114.554 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "100n" (at 137.668 114.554 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 139.7 114.3 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 139.7 114.3 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Kemet" (at 139.7 114.3 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "C0603C104K5RECAUTO" (at 139.7 114.3 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 9e9f7fb4-5a29-4eca-8d85-dd7ab5d886ee)) - (pin "2" (uuid 6ff27d99-78b4-450f-95c6-9a1e30d273c9)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "C19") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C_Small") (at 139.7 92.71 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005c1ae145) - (property "Reference" "C18" (at 141.478 92.964 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "100n" (at 137.668 92.964 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 139.7 92.71 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 139.7 92.71 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Kemet" (at 139.7 92.71 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "C0603C104K5RECAUTO" (at 139.7 92.71 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid efeb0491-736e-4858-bfe9-9b280ea164d3)) - (pin "2" (uuid 7d4b3007-700f-4d99-8036-8b2ac9569f47)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "C18") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C_Small") (at 243.84 72.39 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005c1ae57d) - (property "Reference" "C22" (at 243.84 66.04 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "100n" (at 246.38 64.77 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 243.84 72.39 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 243.84 72.39 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Kemet" (at 243.84 72.39 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "C0603C104K5RECAUTO" (at 243.84 72.39 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid a72628da-f0e4-47b4-aa55-a276fe6cc5c1)) - (pin "2" (uuid 9e0b7d56-2e3f-4b77-a4d9-8c8c2862236e)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "C22") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C_Small") (at 243.84 92.71 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005c1aecc1) - (property "Reference" "C23" (at 242.57 88.9 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "100n" (at 246.38 87.63 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 243.84 92.71 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 243.84 92.71 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Kemet" (at 243.84 92.71 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "C0603C104K5RECAUTO" (at 243.84 92.71 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 6c2a77f4-a653-4fa9-bea7-a506b5f5ed15)) - (pin "2" (uuid be35a29e-e94c-43a3-8966-07c4b1d79211)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "C23") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R_Small") (at 57.15 158.75 90) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005ccf959d) - (property "Reference" "R10" (at 56.642 157.988 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "10k" (at 58.166 157.988 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 57.15 158.75 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 57.15 158.75 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Susumu" (at 57.15 158.75 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "RR0816P-103-D" (at 57.15 158.75 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid d053fe1b-58d3-41fb-a760-ad8b78514e86)) - (pin "2" (uuid 15236865-1d05-4059-ac76-08843c9a7ebe)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "R10") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C_Polarized") (at 63.5 166.37 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005ccf9c5e) - (property "Reference" "C17" (at 64.135 163.83 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "10u" (at 64.135 168.91 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3528-21_Kemet-B" (at 64.4652 170.18 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 63.5 166.37 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "AVX" (at 63.5 166.37 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "TCJB106M025R0150" (at 63.5 166.37 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 512c83c2-c35d-458e-9913-51a4ff7341ca)) - (pin "2" (uuid 55494837-764a-43f9-b640-762189bbf2b3)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "C17") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R_Small") (at 54.61 97.79 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005ccfabd0) - (property "Reference" "R6" (at 55.118 98.552 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "1k" (at 53.594 98.552 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 54.61 97.79 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 54.61 97.79 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Susumu" (at 54.61 97.79 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "RR0816P-102-D" (at 54.61 97.79 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid bfee4676-4c90-4868-bf57-8c649ad376b9)) - (pin "2" (uuid c4586fab-b641-4f68-8467-aadab02aa33a)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "R6") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R_Small") (at 83.82 124.46 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005ccfcd96) - (property "Reference" "R4" (at 84.328 125.222 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "1k" (at 82.804 125.222 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 83.82 124.46 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 83.82 124.46 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Susumu" (at 83.82 124.46 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "RR0816P-102-D" (at 83.82 124.46 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 711ff2ec-a10f-44bd-ab47-2c36d7085568)) - (pin "2" (uuid ef53bb34-7445-45f1-994b-3c51df8e8823)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "R4") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R_Small") (at 71.12 129.54 180) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005ccfce48) - (property "Reference" "R3" (at 70.358 130.048 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "249" (at 70.358 128.524 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 71.12 129.54 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 71.12 129.54 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Vishay" (at 71.12 129.54 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "RCS0603249RFKEA" (at 71.12 129.54 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 062bf0b5-6b50-4d67-a107-cc9673c0b644)) - (pin "2" (uuid fa8fee6d-e77f-46fd-81e8-4aa7fdad1529)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "R3") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 71.12 134.62 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005ccfcf01) - (property "Reference" "#PWR028" (at 71.12 140.97 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 71.12 138.43 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 71.12 134.62 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 71.12 134.62 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 8bc42bf5-3610-4e8c-ad02-9d0a443c1dda)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "#PWR028") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 144.78 116.84 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005d733971) - (property "Reference" "#PWR0106" (at 144.78 123.19 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 144.907 121.2342 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 144.78 116.84 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 144.78 116.84 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 74d820be-cd7a-43ef-bb54-6d1cda7970b0)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "#PWR0106") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R_Small") (at 106.68 107.95 180) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005e14075d) - (property "Reference" "R8" (at 105.918 108.458 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "2k" (at 105.918 106.934 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 106.68 107.95 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 106.68 107.95 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Susumu" (at 106.68 107.95 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "RR0816P-202-D" (at 106.68 107.95 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 01e312fb-40d3-49e4-a54b-a307a66e96ef)) - (pin "2" (uuid 9da477a5-8c72-43e7-a7c9-6a80d493c546)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "R8") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Amplifier_Operational:OPA1604") (at 81.28 100.33 0) (unit 5) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005e66c91a) - (property "Reference" "U4" (at 80.2132 99.1616 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "OPA1604" (at 80.2132 101.473 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (at 80.01 97.79 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "http://www.ti.com/lit/ds/symlink/opa1604.pdf" (at 82.55 95.25 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Texas Instruments" (at 81.28 100.33 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "OPA1604AIDR" (at 81.28 100.33 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid fe8a0d95-d3d4-45c5-bbe3-2c2ead8189fb)) - (pin "2" (uuid 684712c1-8004-44fc-b0e8-208d2d38eab1)) - (pin "3" (uuid 15de86da-911d-428d-ab78-f71a8cb55c7b)) - (pin "5" (uuid ae2efcf4-656b-41ec-8123-816adcce63a1)) - (pin "6" (uuid 7fc7c6d2-ddc3-450d-af30-3868ad26f0e6)) - (pin "7" (uuid 9bd35d84-7c93-4013-a702-20b19f6af059)) - (pin "10" (uuid 88132710-94ef-4a96-b5ac-4548632fa466)) - (pin "8" (uuid df93ca1a-00be-4fb6-bad3-8ac7f58b81a3)) - (pin "9" (uuid 61225e22-82f0-4c9a-9233-d1a2508dfe3d)) - (pin "12" (uuid 5bf92d31-3f01-45e6-a5d6-71522e95b637)) - (pin "13" (uuid 67226f9d-692d-4384-9503-e42e1f3d0e9c)) - (pin "14" (uuid 0a6f5038-516a-4932-9d59-d193f41d728f)) - (pin "11" (uuid 14c83a99-b0ff-4b96-8865-13ca7bdc685e)) - (pin "4" (uuid c4d88ebc-4d01-43db-b569-d4806bca98fc)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "U4") (unit 5) - ) - ) - ) - ) - - (symbol (lib_id "Amplifier_Operational:OPA1602") (at 237.49 82.55 180) (unit 3) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005e67ed6d) - (property "Reference" "U8" (at 242.2652 81.3816 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Value" "OPA1602" (at 242.2652 83.693 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (at 237.49 82.55 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "http://www.ti.com/lit/ds/symlink/opa1604.pdf" (at 237.49 82.55 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Texas Instruments" (at 237.49 82.55 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "OPA1602AIDR" (at 237.49 82.55 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 0d5b5ea1-167f-4076-ad5a-ecc491823cf5)) - (pin "2" (uuid e5c77c5b-7feb-42af-a294-83cf4e083419)) - (pin "3" (uuid d2c3fc0c-a99e-458b-b677-7bd25d165984)) - (pin "5" (uuid a1e2fbe8-0ad6-430e-807c-17e59e064afe)) - (pin "6" (uuid 7e3b191f-b0ef-44e7-b854-957a511ea57a)) - (pin "7" (uuid 6323e0cc-4e0d-4411-bf75-6eb61250518a)) - (pin "4" (uuid 68cc97a1-6c76-411f-a28b-36162918d55d)) - (pin "8" (uuid 4013842c-f594-4f18-a07a-785be971cdaf)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "U8") (unit 3) - ) - ) - ) - ) - - (symbol (lib_id "Connector:Conn_Coaxial") (at 49.53 55.88 0) (mirror y) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005f57db71) - (property "Reference" "J11" (at 49.53 52.07 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "Curr_In (Out2)" (at 46.99 55.88 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Connector_Coaxial:SMA_Amphenol_132134_Vertical" (at 49.53 55.88 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 49.53 55.88 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Config" "" (at 49.53 55.88 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "MFN" "Amphenol" (at 49.53 55.88 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "901-144-8RFX" (at 49.53 55.88 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid af6d04d8-fb55-44a6-8d61-46b5fe0d57ed)) - (pin "2" (uuid df60abce-5d8f-47b1-8a1e-e84467d2708f)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "J11") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 78.74 67.31 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005f57dba9) - (property "Reference" "#PWR0112" (at 78.74 73.66 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 78.74 71.12 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 78.74 67.31 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 78.74 67.31 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 2b21e596-6e58-4434-b099-437d15cdb1f6)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "#PWR0112") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 49.53 67.31 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005f57dbb3) - (property "Reference" "#PWR0113" (at 49.53 73.66 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 49.53 71.12 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 49.53 67.31 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 49.53 67.31 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 92c4afc9-0b89-472e-af18-83d6bf5eb91a)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "#PWR0113") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Connector:Conn_Coaxial") (at 139.7 53.34 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005f57dbbe) - (property "Reference" "J13" (at 139.7 49.53 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "Curr_Out (Out2)" (at 142.24 53.34 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Connector_Coaxial:SMA_Amphenol_132134_Vertical" (at 139.7 53.34 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 139.7 53.34 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Config" "" (at 139.7 53.34 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "MFN" "Amphenol" (at 139.7 53.34 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "901-144-8RFX" (at 139.7 53.34 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 7b2daaff-2807-493a-a891-7e134b56d607)) - (pin "2" (uuid e30d3a9c-b440-48b8-a02c-3b24b32065c9)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "J13") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R_Small") (at 129.54 53.34 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005f57dbca) - (property "Reference" "R26" (at 130.048 54.102 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "49.9" (at 128.524 54.102 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_1210_3225Metric" (at 129.54 53.34 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 129.54 53.34 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Yageo" (at 129.54 53.34 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "RC1210FR-0749R9L" (at 129.54 53.34 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid a2eca252-83a6-4a81-9733-6c05a9e15ace)) - (pin "2" (uuid 42ff71dc-a9cf-409d-a7f6-5ef59335c9bc)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "R26") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 139.7 58.42 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005f57dbd4) - (property "Reference" "#PWR0114" (at 139.7 64.77 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 139.7 62.23 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 139.7 58.42 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 139.7 58.42 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid ef77a10f-7560-4170-ba80-6e6913e002d9)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "#PWR0114") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Amplifier_Operational:OPA1602") (at 54.61 34.29 0) (unit 2) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005f57dbe0) - (property "Reference" "U7" (at 54.61 29.21 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "OPA1602" (at 54.61 39.37 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (at 54.61 41.275 0) - (effects (font (size 1.27 1.27)) (justify left) hide) - ) - (property "Datasheet" "http://www.ti.com/lit/ds/symlink/opa1604.pdf" (at 54.61 34.29 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Texas Instruments" (at 54.61 34.29 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "OPA1602AIDR" (at 54.61 34.29 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid eab16ccf-158c-4c1e-8765-1b37ac2e912d)) - (pin "2" (uuid 5a8e8139-2753-49ca-a95d-255001d79e02)) - (pin "3" (uuid 58120ba5-19ee-46b9-88eb-6e024c33b788)) - (pin "5" (uuid 410812af-2420-4da0-bd68-ae0f5b00a47f)) - (pin "6" (uuid 3401626f-0918-4d29-959d-1c4cb85ae6c8)) - (pin "7" (uuid 8901d597-531c-484d-9211-d5a861cbf6a0)) - (pin "4" (uuid f568055a-fdc6-42d6-abcb-e850121e0efa)) - (pin "8" (uuid e2c3f0f9-7e4c-45f9-b13f-b5b39b8118c3)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "U7") (unit 2) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 120.65 43.18 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005f57dbea) - (property "Reference" "#PWR0115" (at 120.65 49.53 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 120.65 46.99 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 120.65 43.18 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 120.65 43.18 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 42dc223e-26e6-4734-9ad8-5ca3d2ecc45c)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "#PWR0115") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 120.65 63.5 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005f57dbf4) - (property "Reference" "#PWR0116" (at 120.65 69.85 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 120.65 67.31 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 120.65 63.5 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 120.65 63.5 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 894b100a-66db-4256-9062-250cf5797ea8)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "#PWR0116") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 35.56 44.45 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005f57dc0a) - (property "Reference" "#PWR0117" (at 35.56 50.8 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 35.56 48.26 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 35.56 44.45 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 35.56 44.45 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid d57401dd-2d55-4ba5-86e6-9860508e4c16)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "#PWR0117") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Amplifier_Operational:OPA1602") (at 116.84 53.34 0) (mirror x) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005f57dc14) - (property "Reference" "U7" (at 116.84 58.42 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "OPA1602" (at 116.84 48.26 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (at 116.84 46.355 0) - (effects (font (size 1.27 1.27)) (justify left) hide) - ) - (property "Datasheet" "http://www.ti.com/lit/ds/symlink/opa1604.pdf" (at 116.84 53.34 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Texas Instruments" (at 116.84 53.34 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "OPA1602AIDR" (at 116.84 53.34 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid dfd52834-b433-4c5a-a2b6-6cf4c635cb90)) - (pin "2" (uuid 2503b28f-4838-4fcc-8bd5-f1cd77731adf)) - (pin "3" (uuid 4ac63237-6f51-4e3e-b97f-734c5fb95561)) - (pin "5" (uuid 90e44584-4c7c-4be1-b160-5564ae434f42)) - (pin "6" (uuid 30a5aaeb-3fda-4f79-b0e7-9bdc9964bbe0)) - (pin "7" (uuid b42ca17b-d313-4b7d-8039-e984528945b7)) - (pin "4" (uuid 42231df6-7bbe-4ac0-9b47-f4b8998cc22f)) - (pin "8" (uuid 99d26349-d419-4e70-b67f-fd72e055e254)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "U7") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C_Small") (at 118.11 43.18 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005f57dc2c) - (property "Reference" "C26" (at 118.11 36.83 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "100n" (at 120.65 35.56 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 118.11 43.18 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 118.11 43.18 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Kemet" (at 118.11 43.18 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "C0603C104K5RECAUTO" (at 118.11 43.18 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid bae95875-f778-4edf-8453-595f0d1aaec1)) - (pin "2" (uuid 12a2d63b-5743-46a4-91b2-d0b5d483abbc)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "C26") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C_Small") (at 118.11 63.5 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005f57dc38) - (property "Reference" "C27" (at 116.84 59.69 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "100n" (at 120.65 58.42 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 118.11 63.5 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 118.11 63.5 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Kemet" (at 118.11 63.5 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "C0603C104K5RECAUTO" (at 118.11 63.5 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid a6192ce7-b24f-4c72-8174-9c7233b192db)) - (pin "2" (uuid 40ae4189-3f59-43e3-a3b8-dc141591cee6)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "C27") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Amplifier_Operational:OPA1602") (at 111.76 53.34 180) (unit 3) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005f57dc63) - (property "Reference" "U7" (at 116.5352 52.1716 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Value" "OPA1602" (at 116.5352 54.483 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (at 111.76 53.34 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "http://www.ti.com/lit/ds/symlink/opa1604.pdf" (at 111.76 53.34 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Texas Instruments" (at 111.76 53.34 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "OPA1602AIDR" (at 111.76 53.34 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 056ab004-948f-4031-a65f-bb4cd954d370)) - (pin "2" (uuid 777d466d-adb6-4204-9189-22d3c153cc3b)) - (pin "3" (uuid 7339431a-993e-4929-8456-f815183efaf4)) - (pin "5" (uuid 0507f674-f209-48c7-abd4-e85af55db3b5)) - (pin "6" (uuid ac510d37-86a1-4ec7-871d-81c12fd3bffc)) - (pin "7" (uuid 5088133f-6735-4f1f-bf1d-fd54d0573bbc)) - (pin "4" (uuid d15a3475-fd99-4b4b-8494-ed8c5e3f4652)) - (pin "8" (uuid 5d9bbed4-bcb3-4ad4-b04e-24b788bf32f7)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "U7") (unit 3) - ) - ) - ) - ) - - (symbol (lib_id "Device:C_Small") (at 86.36 62.23 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005f63a1aa) - (property "Reference" "C25" (at 88.6968 61.0616 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "16p / C0G" (at 88.6968 63.373 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 86.36 62.23 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 86.36 62.23 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Murata Electronics" (at 86.36 62.23 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "GCM1885C2A160JA16D" (at 86.36 62.23 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid b778c92e-6ed3-442f-80a0-53fc26fd8894)) - (pin "2" (uuid fa358aac-0515-46de-acef-23f4908766c7)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "C25") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R_Small") (at 62.23 60.96 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005faf2109) - (property "Reference" "R28" (at 62.992 60.452 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "1M" (at 62.992 61.976 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 62.23 60.96 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 62.23 60.96 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Panasonic" (at 62.23 60.96 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "ERJ-3RED1004V" (at 62.23 60.96 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 08d86ecc-babe-4b3e-a6b8-af16d90fda30)) - (pin "2" (uuid 7e681705-903c-4f55-b950-8f91ec0cabd8)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "R28") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R_Small") (at 39.37 102.87 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005fb11c66) - (property "Reference" "R30" (at 40.132 102.362 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "1M" (at 40.132 103.886 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 39.37 102.87 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 39.37 102.87 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Panasonic" (at 39.37 102.87 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "ERJ-3RED1004V" (at 39.37 102.87 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid b68bc2ba-740c-4532-ae14-235eafc7d826)) - (pin "2" (uuid b0f1dac9-5431-4d43-8681-bc6afd4d3113)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "R30") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R_Small") (at 78.74 62.23 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 1b8505fd-6bd4-453d-9c3a-68f9976fea56) - (property "Reference" "R33" (at 79.502 61.722 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "1k" (at 79.502 63.246 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 78.74 62.23 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 78.74 62.23 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Susumu" (at 78.74 62.23 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "RR0816P-102-D" (at 78.74 62.23 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 526dfda9-d0c9-4dac-a979-c4cb18bb6aa9)) - (pin "2" (uuid 1d0aa589-451c-485d-9032-c87d2c48412d)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "R33") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R_Small") (at 114.3 26.67 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 34ea8110-746e-472c-a415-537e7776ba7d) - (property "Reference" "R20" (at 114.808 27.432 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "1k" (at 113.284 27.432 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 114.3 26.67 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 114.3 26.67 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Susumu" (at 114.3 26.67 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "RR0816P-102-D" (at 114.3 26.67 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 63fea6dd-01b5-44cf-aeac-7538bf7cfcc9)) - (pin "2" (uuid 1a69e6a9-0a61-4819-a035-2d321973f5a7)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "R20") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R_Small") (at 35.56 26.67 180) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 691945d5-7544-4393-8de4-ef9a08567d22) - (property "Reference" "R32" (at 34.798 27.178 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "91k" (at 34.798 25.654 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 35.56 26.67 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 35.56 26.67 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Config" "" (at 35.56 26.67 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "MFN" "Susumu" (at 35.56 26.67 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "RR0816P-913-D" (at 35.56 26.67 0) - (effects (font (size 1.524 1.524)) hide) - ) - (pin "1" (uuid 79dda54a-e260-465b-8f4b-0884245d6c62)) - (pin "2" (uuid 09c19428-8fd4-4824-ad80-3ae5e5ccc18b)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "R32") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R_Small") (at 92.71 34.29 90) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 85928547-ef90-41f4-89e0-2c16d7077ebc) - (property "Reference" "R17" (at 92.202 33.528 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "1k" (at 93.726 33.528 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 92.71 34.29 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 92.71 34.29 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Susumu" (at 92.71 34.29 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "RR0816P-102-D" (at 92.71 34.29 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 6d87127f-d5ae-4052-93e7-56fd5fa5165e)) - (pin "2" (uuid fdae7f18-b383-45ca-9b89-65ab807259d5)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "R17") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C_Polarized") (at 35.56 38.1 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid ba32c028-f96b-40c5-96bd-2c6f5cb0e71f) - (property "Reference" "C24" (at 36.195 35.56 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "10u" (at 36.195 40.64 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3528-21_Kemet-B" (at 36.5252 41.91 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 35.56 38.1 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "AVX" (at 35.56 38.1 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "TCJB106M025R0150" (at 35.56 38.1 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid a6b8d2ab-0002-4f0a-b6cc-a94a39bba4a0)) - (pin "2" (uuid 43b493c1-8738-4cda-af9c-b751b94e7937)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "C24") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R_Small") (at 30.48 36.83 180) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid c5e86fd8-41d3-4087-97b4-5d16719c9207) - (property "Reference" "R31" (at 29.718 37.338 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "10k" (at 29.718 35.814 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 30.48 36.83 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 30.48 36.83 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Susumu" (at 30.48 36.83 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "RR0816P-103-D" (at 30.48 36.83 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid f2198fb3-2fe2-471a-b3c7-e9b610472fb3)) - (pin "2" (uuid e851dac6-86e0-4959-931a-64e607f5fff9)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "R31") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R_Small") (at 74.93 55.88 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid e3056e1e-b81f-451c-85a7-a9781a32dd24) - (property "Reference" "R19" (at 75.438 56.642 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "1k" (at 73.914 56.642 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 74.93 55.88 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 74.93 55.88 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Susumu" (at 74.93 55.88 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "RR0816P-102-D" (at 74.93 55.88 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 99187190-6ac1-4d94-879d-70790d8f8346)) - (pin "2" (uuid 77d240e7-fff7-42cf-bd6d-2520eed0c379)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" - (reference "R19") (unit 1) - ) - ) - ) - ) +(kicad_sch + (version 20231120) + (generator "eeschema") + (generator_version "8.0") + (uuid "4cafb73d-1ad8-4d24-acf7-63d78095ae46") + (paper "A4") + (title_block + (title "RedPitaya Lockbox") + (date "2024-06-11") + (rev "1.6.3") + (company "Atoms-Photons-Quanta, Institut für Angewandte Physik, TU Darmstadt") + (comment 1 "Tilman Preuschoff") + ) + (lib_symbols + (symbol "Amplifier_Operational:OPA1602" + (pin_names + (offset 0.127) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "OPA1602" + (at 0 -5.08 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/opa1604.pdf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Dual SoundPlus High Performance, Bipolar-Input Audio Operational Amplifiers, SOIC-8/MSOP-8" + (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" "dual opamp" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "SOIC*3.9x4.9mm*P1.27mm* DIP*W7.62mm* TO*99* OnSemi*Micro8* TSSOP*3x3mm*P0.65mm* TSSOP*4.4x3mm*P0.65mm* MSOP*3x3mm*P0.65mm* SSOP*3.9x4.9mm*P0.635mm* LFCSP*2x2mm*P0.5mm* *SIP* SOIC*5.3x6.2mm*P1.27mm*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "OPA1602_1_1" + (polyline + (pts + (xy -5.08 5.08) (xy 5.08 0) (xy -5.08 -5.08) (xy -5.08 5.08) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (pin output line + (at 7.62 0 180) + (length 2.54) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -7.62 -2.54 0) + (length 2.54) + (name "-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -7.62 2.54 0) + (length 2.54) + (name "+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (symbol "OPA1602_2_1" + (polyline + (pts + (xy -5.08 5.08) (xy 5.08 0) (xy -5.08 -5.08) (xy -5.08 5.08) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (pin input line + (at -7.62 2.54 0) + (length 2.54) + (name "+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -7.62 -2.54 0) + (length 2.54) + (name "-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 7.62 0 180) + (length 2.54) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (symbol "OPA1602_3_1" + (pin power_in line + (at -2.54 -7.62 90) + (length 3.81) + (name "V-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -2.54 7.62 270) + (length 3.81) + (name "V+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Amplifier_Operational:OPA1604" + (pin_names + (offset 0.127) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "OPA1604" + (at 0 -5.08 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at -1.27 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/opa1604.pdf" + (at 1.27 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Quad SoundPlus High Performance, Bipolar-Input Audio Operational Amplifiers, SOIC-14/TSSOP-14" + (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" "quad opamp" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "SOIC*3.9x8.7mm*P1.27mm* DIP*W7.62mm* TSSOP*4.4x5mm*P0.65mm* SSOP*5.3x6.2mm*P0.65mm* MSOP*3x3mm*P0.5mm*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "OPA1604_1_1" + (polyline + (pts + (xy -5.08 5.08) (xy 5.08 0) (xy -5.08 -5.08) (xy -5.08 5.08) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (pin output line + (at 7.62 0 180) + (length 2.54) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -7.62 -2.54 0) + (length 2.54) + (name "-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -7.62 2.54 0) + (length 2.54) + (name "+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (symbol "OPA1604_2_1" + (polyline + (pts + (xy -5.08 5.08) (xy 5.08 0) (xy -5.08 -5.08) (xy -5.08 5.08) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (pin input line + (at -7.62 2.54 0) + (length 2.54) + (name "+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -7.62 -2.54 0) + (length 2.54) + (name "-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 7.62 0 180) + (length 2.54) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (symbol "OPA1604_3_1" + (polyline + (pts + (xy -5.08 5.08) (xy 5.08 0) (xy -5.08 -5.08) (xy -5.08 5.08) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (pin input line + (at -7.62 2.54 0) + (length 2.54) + (name "+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 7.62 0 180) + (length 2.54) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -7.62 -2.54 0) + (length 2.54) + (name "-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (symbol "OPA1604_4_1" + (polyline + (pts + (xy -5.08 5.08) (xy 5.08 0) (xy -5.08 -5.08) (xy -5.08 5.08) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (pin input line + (at -7.62 2.54 0) + (length 2.54) + (name "+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -7.62 -2.54 0) + (length 2.54) + (name "-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 7.62 0 180) + (length 2.54) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (symbol "OPA1604_5_1" + (pin power_in line + (at -2.54 -7.62 90) + (length 3.81) + (name "V-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -2.54 7.62 270) + (length 3.81) + (name "V+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Connector:Conn_Coaxial" + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 0.254 3.048 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_Coaxial" + (at 2.921 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" "coaxial connector (BNC, SMA, SMB, SMC, Cinch/RCA, LEMO, ...)" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "BNC SMA SMB SMC LEMO coaxial connector CINCH RCA MCX MMCX U.FL UMRF" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "*BNC* *SMA* *SMB* *SMC* *Cinch* *LEMO* *UMRF* *MCX* *U.FL*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Conn_Coaxial_0_1" + (arc + (start -1.778 -0.508) + (mid 0.2311 -1.8066) + (end 1.778 0) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 0) (xy -0.508 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 -2.54) (xy 0 -1.778) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 0 0) + (radius 0.508) + (stroke + (width 0.2032) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.778 0) + (mid 0.2099 1.8101) + (end -1.778 0.508) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "Conn_Coaxial_1_1" + (pin passive line + (at -5.08 0 0) + (length 2.54) + (name "In" + (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 2.54) + (name "Ext" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:C_Polarized" + (pin_numbers hide) + (pin_names + (offset 0.254) + ) + (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) + ) + ) + ) + ) + ) + ) + (symbol "Device:C_Small" + (pin_numbers hide) + (pin_names + (offset 0.254) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "C" + (at 0.254 1.778 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "C_Small" + (at 0.254 -2.032 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (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" "Unpolarized capacitor, small symbol" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "capacitor cap" + (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_Small_0_1" + (polyline + (pts + (xy -1.524 -0.508) (xy 1.524 -0.508) + ) + (stroke + (width 0.3302) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.524 0.508) (xy 1.524 0.508) + ) + (stroke + (width 0.3048) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "C_Small_1_1" + (pin passive line + (at 0 2.54 270) + (length 2.032) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -2.54 90) + (length 2.032) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:R" + (pin_numbers hide) + (pin_names + (offset 0) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "R" + (at 2.032 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "R" + (at 0 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at -1.778 0 90) + (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 "ki_keywords" "R res resistor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "R_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "R_0_1" + (rectangle + (start -1.016 -2.54) + (end 1.016 2.54) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "R_1_1" + (pin passive line + (at 0 3.81 270) + (length 1.27) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 1.27) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:R_Small" + (pin_numbers hide) + (pin_names + (offset 0.254) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "R" + (at 0.762 0.508 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "R_Small" + (at 0.762 -1.016 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (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, small symbol" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "R resistor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "R_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "R_Small_0_1" + (rectangle + (start -0.762 1.778) + (end 0.762 -1.778) + (stroke + (width 0.2032) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "R_Small_1_1" + (pin passive line + (at 0 2.54 270) + (length 0.762) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -2.54 90) + (length 0.762) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "TexasInstruments:BUF634" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at 5.08 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "BUF634" + (at 5.08 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (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" "250mA, High-Speed Buffer" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "1" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (symbol "BUF634_0_1" + (polyline + (pts + (xy 5.08 0) (xy -5.08 5.08) (xy -5.08 -5.08) (xy 5.08 0) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (pin power_in line + (at -2.54 -7.62 90) + (length 3.81) + (name "V-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -2.54 7.62 270) + (length 3.81) + (name "V+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (symbol "BUF634_1_1" + (pin passive inverted + (at 2.54 -7.62 90) + (length 6.35) + (name "BW" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 0 5.08 270) + (length 2.54) hide + (name "" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -7.62 0 0) + (length 2.54) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 5.08 2.54 270) + (length 2.54) hide + (name "" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 7.62 0 180) + (length 2.54) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 2.54 3.81 270) + (length 2.54) hide + (name "" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "power:GND" + (power) + (pin_numbers hide) + (pin_names + (offset 0) hide) + (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) + ) + ) + ) + ) + ) + ) + ) + (junction + (at 67.31 34.29) + (diameter 0) + (color 0 0 0 0) + (uuid "01db82c9-0728-48dc-a507-2a0ab8bda11f") + ) + (junction + (at 229.87 85.09) + (diameter 0) + (color 0 0 0 0) + (uuid "0dfdfa9f-1e3f-4e14-b64b-12bde76a80c7") + ) + (junction + (at 78.74 90.17) + (diameter 0) + (color 0 0 0 0) + (uuid "1dfbf353-5b24-4c0f-8322-8fcd514ae75e") + ) + (junction + (at 86.36 55.88) + (diameter 0) + (color 0 0 0 0) + (uuid "24aed798-4ced-4241-a5a7-52a2822f3c9a") + ) + (junction + (at 39.37 97.79) + (diameter 0) + (color 0 0 0 0) + (uuid "269f19c3-6824-45a8-be29-fa58d70cbb42") + ) + (junction + (at 71.12 124.46) + (diameter 0) + (color 0 0 0 0) + (uuid "2e0a9f64-1b78-4597-8d50-d12d2268a95a") + ) + (junction + (at 35.56 43.18) + (diameter 0) + (color 0 0 0 0) + (uuid "3064bbf6-b65a-4f35-b428-9c3da8ceeb16") + ) + (junction + (at 62.23 55.88) + (diameter 0) + (color 0 0 0 0) + (uuid "38cfe839-c630-43d3-a9ec-6a89ba9e318a") + ) + (junction + (at 209.55 116.84) + (diameter 0) + (color 0 0 0 0) + (uuid "3a41dd27-ec14-44d5-b505-aad1d829f79a") + ) + (junction + (at 26.67 106.68) + (diameter 0) + (color 0 0 0 0) + (uuid "5889287d-b845-4684-b23e-663811b25d27") + ) + (junction + (at 106.68 100.33) + (diameter 0) + (color 0 0 0 0) + (uuid "59fc765e-1357-4c94-9529-5635418c7d73") + ) + (junction + (at 134.62 114.3) + (diameter 0) + (color 0 0 0 0) + (uuid "5c7d6eaf-f256-4349-8203-d2e836872231") + ) + (junction + (at 134.62 92.71) + (diameter 0) + (color 0 0 0 0) + (uuid "6f580eb1-88cc-489d-a7ca-9efa5e590715") + ) + (junction + (at 114.3 43.18) + (diameter 0) + (color 0 0 0 0) + (uuid "89a8e170-a222-41c0-b545-c9f4c5604011") + ) + (junction + (at 78.74 66.04) + (diameter 0) + (color 0 0 0 0) + (uuid "8c77499b-832c-4b0b-a320-dd95629f6b2c") + ) + (junction + (at 114.3 125.73) + (diameter 0) + (color 0 0 0 0) + (uuid "9529c01f-e1cd-40be-b7f0-83780a544249") + ) + (junction + (at 240.03 72.39) + (diameter 0) + (color 0 0 0 0) + (uuid "98fe66f3-ec8b-4515-ae34-617f2124a7ec") + ) + (junction + (at 63.5 158.75) + (diameter 0) + (color 0 0 0 0) + (uuid "9aaeec6e-84fe-4644-b0bc-5de24626ff48") + ) + (junction + (at 134.62 111.76) + (diameter 0) + (color 0 0 0 0) + (uuid "b13e8448-bf35-4ec0-9c70-3f2250718cc2") + ) + (junction + (at 104.14 34.29) + (diameter 0) + (color 0 0 0 0) + (uuid "b4cc04e5-052f-4c96-8757-f40f4dbf9e88") + ) + (junction + (at 49.53 64.77) + (diameter 0) + (color 0 0 0 0) + (uuid "be4b72db-0e02-4d9b-844a-aff689b4e648") + ) + (junction + (at 172.72 83.82) + (diameter 0) + (color 0 0 0 0) + (uuid "c7df8431-dcf5-4ab4-b8f8-21c1cafc5246") + ) + (junction + (at 209.55 85.09) + (diameter 0) + (color 0 0 0 0) + (uuid "d38aa458-d7c4-47af-ba08-2b6be506a3fd") + ) + (junction + (at 62.23 97.79) + (diameter 0) + (color 0 0 0 0) + (uuid "d3e133b7-2c84-4206-a2b1-e693cb57fe56") + ) + (junction + (at 125.73 53.34) + (diameter 0) + (color 0 0 0 0) + (uuid "d68e5ddb-039c-483f-88a3-1b0b7964b482") + ) + (junction + (at 151.13 102.87) + (diameter 0) + (color 0 0 0 0) + (uuid "dde8619c-5a8c-40eb-9845-65e6a654222d") + ) + (junction + (at 78.74 110.49) + (diameter 0) + (color 0 0 0 0) + (uuid "e0c7ddff-8c90-465f-be62-21fb49b059fa") + ) + (junction + (at 229.87 109.22) + (diameter 0) + (color 0 0 0 0) + (uuid "e7d81bce-286e-41e4-9181-3511e9c0455e") + ) + (junction + (at 95.25 156.21) + (diameter 0) + (color 0 0 0 0) + (uuid "f0ff5d1c-5481-4958-b844-4f68a17d4166") + ) + (junction + (at 78.74 55.88) + (diameter 0) + (color 0 0 0 0) + (uuid "f988d6ea-11c5-4837-b1d1-5c292ded50c6") + ) + (junction + (at 35.56 31.75) + (diameter 0) + (color 0 0 0 0) + (uuid "f9eca775-6acf-4ed8-bfb2-2639653c23c4") + ) + (junction + (at 251.46 82.55) + (diameter 0) + (color 0 0 0 0) + (uuid "fc3d51c1-8b35-4da3-a742-0ebe104989d7") + ) + (junction + (at 95.25 100.33) + (diameter 0) + (color 0 0 0 0) + (uuid "fdc60c06-30fa-4dfb-96b4-809b755999e1") + ) + (wire + (pts + (xy 88.9 100.33) (xy 95.25 100.33) + ) + (stroke + (width 0) + (type default) + ) + (uuid "014d13cd-26ad-4d0e-86ad-a43b541cab14") + ) + (wire + (pts + (xy 63.5 158.75) (xy 63.5 162.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "01f82238-6335-48fe-8b0a-6853e227345a") + ) + (wire + (pts + (xy 104.14 34.29) (xy 104.14 50.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "091ae598-f94b-43af-b35c-801f18a5323e") + ) + (wire + (pts + (xy 240.03 90.17) (xy 240.03 92.71) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0b9f21ed-3d41-4f23-ae45-74117a5f3153") + ) + (wire + (pts + (xy 78.74 113.03) (xy 78.74 110.49) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0cbeb329-a88d-4a47-a5c2-a1d693de2f8c") + ) + (wire + (pts + (xy 151.13 102.87) (xy 151.13 125.73) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0cc9bf07-55b9-458f-b8aa-41b2f51fa940") + ) + (wire + (pts + (xy 63.5 158.75) (xy 74.93 158.75) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0e249018-17e7-42b3-ae5d-5ebf3ae299ae") + ) + (wire + (pts + (xy 39.37 97.79) (xy 52.07 97.79) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0fc5db66-6188-4c1f-bb14-0868bef113eb") + ) + (wire + (pts + (xy 54.61 55.88) (xy 62.23 55.88) + ) + (stroke + (width 0) + (type default) + ) + (uuid "10e52e95-44f3-4059-a86d-dcda603e0623") + ) + (wire + (pts + (xy 62.23 97.79) (xy 73.66 97.79) + ) + (stroke + (width 0) + (type default) + ) + (uuid "13bbfffc-affb-4b43-9eb1-f2ed90a8a919") + ) + (wire + (pts + (xy 101.6 100.33) (xy 106.68 100.33) + ) + (stroke + (width 0) + (type default) + ) + (uuid "14094ad2-b562-4efa-8c6f-51d7a3134345") + ) + (wire + (pts + (xy 62.23 63.5) (xy 62.23 64.77) + ) + (stroke + (width 0) + (type default) + ) + (uuid "142dd724-2a9f-4eea-ab21-209b1bc7ec65") + ) + (wire + (pts + (xy 62.23 64.77) (xy 49.53 64.77) + ) + (stroke + (width 0) + (type default) + ) + (uuid "15a82541-58d8-45b5-99c5-fb52e017e3ea") + ) + (wire + (pts + (xy 44.45 36.83) (xy 44.45 44.45) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1ac56c9d-efc5-4b04-baf1-1615a8bb4673") + ) + (wire + (pts + (xy 229.87 109.22) (xy 231.14 109.22) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1b023dd4-5185-4576-b544-68a05b9c360b") + ) + (wire + (pts + (xy 114.3 60.96) (xy 114.3 63.5) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1cb22080-0f59-4c18-a6e6-8685ef44ec53") + ) + (wire + (pts + (xy 200.66 116.84) (xy 203.2 116.84) + ) + (stroke + (width 0) + (type default) + ) + (uuid "212bf70c-2324-47d9-8700-59771063baeb") + ) + (wire + (pts + (xy 134.62 90.17) (xy 134.62 92.71) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2165c9a4-eb84-4cb6-a870-2fdc39d2511b") + ) + (wire + (pts + (xy 114.3 125.73) (xy 114.3 127) + ) + (stroke + (width 0) + (type default) + ) + (uuid "235067e2-1686-40fe-a9a0-61704311b2b1") + ) + (wire + (pts + (xy 151.13 102.87) (xy 154.94 102.87) + ) + (stroke + (width 0) + (type default) + ) + (uuid "241e0c85-4796-48eb-a5a0-1c0f2d6e5910") + ) + (wire + (pts + (xy 49.53 64.77) (xy 49.53 67.31) + ) + (stroke + (width 0) + (type default) + ) + (uuid "252f1275-081d-4d77-8bd5-3b9e6916ef42") + ) + (wire + (pts + (xy 241.3 92.71) (xy 240.03 92.71) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2c95b9a6-9c71-4108-9cde-57ddfdd2dd19") + ) + (wire + (pts + (xy 67.31 34.29) (xy 90.17 34.29) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2cb43313-608a-46b8-8c6d-5c80bfcf7b3e") + ) + (wire + (pts + (xy 134.62 111.76) (xy 134.62 114.3) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2de1ffee-2174-41d2-8969-68b8d21e5a7d") + ) + (wire + (pts + (xy 48.26 158.75) (xy 54.61 158.75) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2f291a4b-4ecb-4692-9ad2-324f9784c0d4") + ) + (wire + (pts + (xy 114.3 125.73) (xy 121.92 125.73) + ) + (stroke + (width 0) + (type default) + ) + (uuid "31f91ec8-56e4-4e08-9ccd-012652772211") + ) + (wire + (pts + (xy 229.87 59.69) (xy 229.87 80.01) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3249bd81-9fd4-4194-9b4f-2e333b2195b8") + ) + (wire + (pts + (xy 209.55 125.73) (xy 209.55 127) + ) + (stroke + (width 0) + (type default) + ) + (uuid "347562f5-b152-4e7b-8a69-40ca6daaaad4") + ) + (wire + (pts + (xy 139.7 111.76) (xy 139.7 110.49) + ) + (stroke + (width 0) + (type default) + ) + (uuid "34c0bee6-7425-4435-8857-d1fe8dfb6d89") + ) + (wire + (pts + (xy 151.13 81.28) (xy 151.13 102.87) + ) + (stroke + (width 0) + (type default) + ) + (uuid "363945f6-fbef-42be-99cf-4a8a48434d92") + ) + (wire + (pts + (xy 151.13 125.73) (xy 127 125.73) + ) + (stroke + (width 0) + (type default) + ) + (uuid "386ad9e3-71fa-420f-8722-88548b024fc5") + ) + (wire + (pts + (xy 62.23 58.42) (xy 62.23 55.88) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3c8d03bf-f31d-4aa0-b8db-a227ffd7d8d6") + ) + (wire + (pts + (xy 124.46 53.34) (xy 125.73 53.34) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3c9169cc-3a77-4ae0-8afc-cbfc472a28c5") + ) + (wire + (pts + (xy 39.37 100.33) (xy 39.37 97.79) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3d6cdd62-5634-4e30-acf8-1b9c1dbf6653") + ) + (wire + (pts + (xy 125.73 26.67) (xy 125.73 53.34) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3e57b728-64e6-4470-8f27-a43c0dd85050") + ) + (wire + (pts + (xy 209.55 111.76) (xy 209.55 116.84) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3efa2ece-8f3f-4a8c-96e9-6ab3ec6f1f70") + ) + (wire + (pts + (xy 209.55 106.68) (xy 213.36 106.68) + ) + (stroke + (width 0) + (type default) + ) + (uuid "430d6d73-9de6-41ca-b788-178d709f4aae") + ) + (wire + (pts + (xy 201.93 85.09) (xy 209.55 85.09) + ) + (stroke + (width 0) + (type default) + ) + (uuid "44035e53-ff94-45ad-801f-55a1ce042a0d") + ) + (wire + (pts + (xy 86.36 90.17) (xy 88.9 90.17) + ) + (stroke + (width 0) + (type default) + ) + (uuid "443bc73a-8dc0-4e2f-a292-a5eff00efa5b") + ) + (wire + (pts + (xy 86.36 55.88) (xy 86.36 59.69) + ) + (stroke + (width 0) + (type default) + ) + (uuid "45908012-848d-44ce-8f24-6fded37b170d") + ) + (wire + (pts + (xy 257.81 82.55) (xy 260.35 82.55) + ) + (stroke + (width 0) + (type default) + ) + (uuid "475ed8b3-90bf-48cd-bce5-d8f48b689541") + ) + (wire + (pts + (xy 35.56 31.75) (xy 46.99 31.75) + ) + (stroke + (width 0) + (type default) + ) + (uuid "476067de-f6f7-443b-8783-ea28b0229d00") + ) + (wire + (pts + (xy 86.36 66.04) (xy 86.36 64.77) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4768945d-a155-44d8-8980-5f39db4e64b9") + ) + (wire + (pts + (xy 35.56 43.18) (xy 35.56 44.45) + ) + (stroke + (width 0) + (type default) + ) + (uuid "47e766dd-8d4d-422f-b72f-2290836ebee6") + ) + (wire + (pts + (xy 67.31 34.29) (xy 62.23 34.29) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4a401f22-b02c-4bf1-9ad1-e464192b168c") + ) + (wire + (pts + (xy 78.74 66.04) (xy 78.74 67.31) + ) + (stroke + (width 0) + (type default) + ) + (uuid "50170352-30c1-43a5-9a46-8f9cbbb34b22") + ) + (wire + (pts + (xy 71.12 153.67) (xy 71.12 144.78) + ) + (stroke + (width 0) + (type default) + ) + (uuid "52a8f1be-73ca-41a8-bc24-2320706b0ec1") + ) + (wire + (pts + (xy 157.48 81.28) (xy 151.13 81.28) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5d49e9a6-41dd-4072-adde-ef1036c1979b") + ) + (wire + (pts + (xy 30.48 31.75) (xy 35.56 31.75) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5dcd7473-8656-4080-9e0e-1fde08c683d8") + ) + (wire + (pts + (xy 115.57 63.5) (xy 114.3 63.5) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5e7c3a32-8dda-4e6a-9838-c94d1f165575") + ) + (wire + (pts + (xy 116.84 26.67) (xy 125.73 26.67) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5f31b97b-d794-46d6-bbd9-7a5638bcf704") + ) + (wire + (pts + (xy 35.56 29.21) (xy 35.56 31.75) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5f76723c-060a-4c15-b6ff-5cd4e2082488") + ) + (wire + (pts + (xy 106.68 100.33) (xy 114.3 100.33) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5ff19d63-2cb4-438b-93c4-e66d37a05329") + ) + (wire + (pts + (xy 109.22 50.8) (xy 104.14 50.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "616287d9-a51f-498c-8b91-be46a0aa3a7f") + ) + (wire + (pts + (xy 49.53 64.77) (xy 49.53 60.96) + ) + (stroke + (width 0) + (type default) + ) + (uuid "62e8c4d4-266c-4e53-8981-1028251d724c") + ) + (wire + (pts + (xy 90.17 156.21) (xy 95.25 156.21) + ) + (stroke + (width 0) + (type default) + ) + (uuid "633292d3-80c5-4986-be82-ce926e9f09f4") + ) + (wire + (pts + (xy 63.5 170.18) (xy 63.5 172.72) + ) + (stroke + (width 0) + (type default) + ) + (uuid "63489ebf-0f52-43a6-a0ab-158b1a7d4988") + ) + (wire + (pts + (xy 106.68 100.33) (xy 106.68 105.41) + ) + (stroke + (width 0) + (type default) + ) + (uuid "637f12be-fa48-4ce4-96b2-04c21a8795c8") + ) + (wire + (pts + (xy 35.56 41.91) (xy 35.56 43.18) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6619b08c-68d0-4a19-86e8-54eadb8c6336") + ) + (wire + (pts + (xy 208.28 116.84) (xy 209.55 116.84) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6a2bcc72-047b-4846-8583-1109e3552669") + ) + (wire + (pts + (xy 95.25 34.29) (xy 104.14 34.29) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6b2d53ae-cfce-4e93-97f9-20ef169eb17b") + ) + (wire + (pts + (xy 26.67 102.87) (xy 26.67 106.68) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6b91a3ee-fdcd-4bfe-ad57-c8d5ea9903a8") + ) + (wire + (pts + (xy 142.24 92.71) (xy 144.78 92.71) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6cb535a7-247d-4f99-997d-c21b160eadfa") + ) + (wire + (pts + (xy 137.16 92.71) (xy 134.62 92.71) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6cb93665-0bcd-4104-8633-fffd1811eee0") + ) + (wire + (pts + (xy 78.74 87.63) (xy 78.74 90.17) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6d0c9e39-9878-44c8-8283-9a59e45006fa") + ) + (wire + (pts + (xy 114.3 105.41) (xy 114.3 125.73) + ) + (stroke + (width 0) + (type default) + ) + (uuid "701e1517-e8cf-46f4-b538-98e721c97380") + ) + (wire + (pts + (xy 209.55 111.76) (xy 213.36 111.76) + ) + (stroke + (width 0) + (type default) + ) + (uuid "70d34adf-9bd8-469e-8c77-5c0d7adf511e") + ) + (wire + (pts + (xy 78.74 64.77) (xy 78.74 66.04) + ) + (stroke + (width 0) + (type default) + ) + (uuid "715eeee6-5319-44c2-bb16-29e963188d0a") + ) + (wire + (pts + (xy 229.87 59.69) (xy 251.46 59.69) + ) + (stroke + (width 0) + (type default) + ) + (uuid "718e5c6d-0e4c-46d8-a149-2f2bfc54c7f1") + ) + (wire + (pts + (xy 62.23 105.41) (xy 62.23 97.79) + ) + (stroke + (width 0) + (type default) + ) + (uuid "71f8d568-0f23-4ff2-8e60-1600ce517a48") + ) + (wire + (pts + (xy 78.74 55.88) (xy 86.36 55.88) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7325fe10-235e-4301-8706-2a8ae9f0e4be") + ) + (wire + (pts + (xy 31.75 97.79) (xy 39.37 97.79) + ) + (stroke + (width 0) + (type default) + ) + (uuid "74f5ec08-7600-4a0b-a9e4-aae29f9ea08a") + ) + (wire + (pts + (xy 132.08 53.34) (xy 134.62 53.34) + ) + (stroke + (width 0) + (type default) + ) + (uuid "75b944f9-bf25-4dc7-8104-e9f80b4f359b") + ) + (wire + (pts + (xy 240.03 69.85) (xy 240.03 72.39) + ) + (stroke + (width 0) + (type default) + ) + (uuid "76afa8e0-9b3a-439d-843c-ad039d3b6354") + ) + (wire + (pts + (xy 88.9 110.49) (xy 88.9 111.76) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7744b6ee-910d-401d-b730-65c35d3d8092") + ) + (wire + (pts + (xy 209.55 85.09) (xy 217.17 85.09) + ) + (stroke + (width 0) + (type default) + ) + (uuid "775e8983-a723-43c5-bf00-61681f0840f3") + ) + (wire + (pts + (xy 95.25 156.21) (xy 114.3 156.21) + ) + (stroke + (width 0) + (type default) + ) + (uuid "78f9c3d3-3556-46f6-9744-05ad54b330f0") + ) + (wire + (pts + (xy 251.46 59.69) (xy 251.46 82.55) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7b766787-7689-40b8-9ef5-c0b1af45a9ae") + ) + (wire + (pts + (xy 62.23 113.03) (xy 62.23 110.49) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7c00778a-4692-4f9b-87d5-2d355077ce1e") + ) + (wire + (pts + (xy 74.93 153.67) (xy 71.12 153.67) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7c2008c8-0626-4a09-a873-065e83502a0e") + ) + (wire + (pts + (xy 144.78 92.71) (xy 144.78 93.98) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7c5f3091-7791-43b3-8d50-43f6a72274c9") + ) + (wire + (pts + (xy 78.74 66.04) (xy 86.36 66.04) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7d1afd34-6bdc-40c0-8802-0f30d0b47af4") + ) + (wire + (pts + (xy 71.12 124.46) (xy 71.12 127) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7db990e4-92e1-4f99-b4d2-435bbec1ba83") + ) + (wire + (pts + (xy 134.62 116.84) (xy 134.62 114.3) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7f2b3ce3-2f20-426d-b769-e0329b6a8111") + ) + (wire + (pts + (xy 172.72 83.82) (xy 175.26 83.82) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7f9683c1-2203-43df-8fa1-719a0dc360df") + ) + (wire + (pts + (xy 81.28 110.49) (xy 78.74 110.49) + ) + (stroke + (width 0) + (type default) + ) + (uuid "810ed4ff-ffe2-4032-9af6-fb5ada3bae5b") + ) + (wire + (pts + (xy 86.36 124.46) (xy 95.25 124.46) + ) + (stroke + (width 0) + (type default) + ) + (uuid "83021f70-e61e-4ad3-bae7-b9f02b28be4f") + ) + (wire + (pts + (xy 241.3 72.39) (xy 240.03 72.39) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8486c294-aa7e-43c3-b257-1ca3356dd17a") + ) + (wire + (pts + (xy 134.62 92.71) (xy 134.62 95.25) + ) + (stroke + (width 0) + (type default) + ) + (uuid "84d4e166-b429-409a-ab37-c6a10fd82ff5") + ) + (wire + (pts + (xy 154.94 92.71) (xy 172.72 92.71) + ) + (stroke + (width 0) + (type default) + ) + (uuid "87a1984f-543d-4f2e-ad8a-7a3a24ee6047") + ) + (wire + (pts + (xy 95.25 124.46) (xy 95.25 100.33) + ) + (stroke + (width 0) + (type default) + ) + (uuid "89c9afdc-c346-4300-a392-5f9dd8c1e5bd") + ) + (wire + (pts + (xy 144.78 102.87) (xy 151.13 102.87) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8ac400bf-c9b3-4af4-b0a7-9aa9ab4ad17e") + ) + (wire + (pts + (xy 95.25 144.78) (xy 95.25 156.21) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8b7bbefd-8f78-41f8-809c-2534a5de3b39") + ) + (wire + (pts + (xy 114.3 45.72) (xy 114.3 43.18) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8bdea5f6-7a53-427a-92b8-fd15994c2e8c") + ) + (wire + (pts + (xy 154.94 86.36) (xy 154.94 92.71) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8cb2cd3a-4ef9-4ae5-b6bc-2b1d16f657d6") + ) + (wire + (pts + (xy 71.12 132.08) (xy 71.12 134.62) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8efee08b-b92e-4ba6-8722-c058e18114fe") + ) + (wire + (pts + (xy 229.87 109.22) (xy 229.87 85.09) + ) + (stroke + (width 0) + (type default) + ) + (uuid "90f81af1-b6de-44aa-a46b-6504a157ce6c") + ) + (wire + (pts + (xy 236.22 109.22) (xy 237.49 109.22) + ) + (stroke + (width 0) + (type default) + ) + (uuid "946404ba-9297-43ec-9d67-30184041145f") + ) + (wire + (pts + (xy 59.69 158.75) (xy 63.5 158.75) + ) + (stroke + (width 0) + (type default) + ) + (uuid "97581b9a-3f6b-4e88-8768-6fdb60e6aca6") + ) + (wire + (pts + (xy 144.78 114.3) (xy 144.78 116.84) + ) + (stroke + (width 0) + (type default) + ) + (uuid "97dcf785-3264-40a1-a36e-8842acab24fb") + ) + (wire + (pts + (xy 115.57 43.18) (xy 114.3 43.18) + ) + (stroke + (width 0) + (type default) + ) + (uuid "98861672-254d-432b-8e5a-10d885a5ffdc") + ) + (wire + (pts + (xy 78.74 92.71) (xy 78.74 90.17) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9c607e49-ee5c-4e85-a7da-6fede9912412") + ) + (wire + (pts + (xy 46.99 36.83) (xy 44.45 36.83) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9ca6c54d-82cd-4c13-971f-cbabc908ce97") + ) + (wire + (pts + (xy 229.87 85.09) (xy 234.95 85.09) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9e0e6fc0-a269-4822-b93d-4c5e6689ff11") + ) + (wire + (pts + (xy 209.55 106.68) (xy 209.55 85.09) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a0e7a81b-2259-4f8d-8368-ba75f2004714") + ) + (wire + (pts + (xy 88.9 90.17) (xy 88.9 91.44) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a25b7e01-1754-4cc9-8a14-3d9c461e5af5") + ) + (wire + (pts + (xy 114.3 40.64) (xy 114.3 43.18) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a599509f-fbb9-4db4-9adf-9e96bab1138d") + ) + (wire + (pts + (xy 234.95 80.01) (xy 229.87 80.01) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a64aeb89-c24a-493b-9aab-87a6be930bde") + ) + (wire + (pts + (xy 240.03 74.93) (xy 240.03 72.39) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a76a574b-1cac-43eb-81e6-0e2e278cea39") + ) + (wire + (pts + (xy 134.62 111.76) (xy 139.7 111.76) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a7f2e97b-29f3-44fd-bf8a-97a3c1528b61") + ) + (wire + (pts + (xy 30.48 39.37) (xy 30.48 43.18) + ) + (stroke + (width 0) + (type default) + ) + (uuid "acff8fa4-cd06-42f1-8a86-8290c86d18d8") + ) + (wire + (pts + (xy 250.19 82.55) (xy 251.46 82.55) + ) + (stroke + (width 0) + (type default) + ) + (uuid "aee7520e-3bfc-435f-a66b-1dd1f5aa6a87") + ) + (wire + (pts + (xy 166.37 102.87) (xy 162.56 102.87) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b0054ce1-b60e-41de-a6a2-bf712784dd39") + ) + (wire + (pts + (xy 35.56 19.05) (xy 35.56 24.13) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b3294856-8e3c-4d49-a94f-50271c26ad17") + ) + (wire + (pts + (xy 27.94 19.05) (xy 35.56 19.05) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b7c1076b-b00f-428f-aae7-934835af0036") + ) + (wire + (pts + (xy 125.73 53.34) (xy 127 53.34) + ) + (stroke + (width 0) + (type default) + ) + (uuid "bac7c5b3-99df-445a-ade9-1e608bbbe27e") + ) + (wire + (pts + (xy 39.37 105.41) (xy 39.37 106.68) + ) + (stroke + (width 0) + (type default) + ) + (uuid "bb59b92a-e4d0-4b9e-82cd-26304f5c15b8") + ) + (wire + (pts + (xy 26.67 106.68) (xy 26.67 107.95) + ) + (stroke + (width 0) + (type default) + ) + (uuid "bd793ae5-cde5-43f6-8def-1f95f35b1be6") + ) + (wire + (pts + (xy 182.88 83.82) (xy 180.34 83.82) + ) + (stroke + (width 0) + (type default) + ) + (uuid "be2983fa-f06e-485e-bea1-3dd96b916ec5") + ) + (wire + (pts + (xy 114.3 156.21) (xy 114.3 132.08) + ) + (stroke + (width 0) + (type default) + ) + (uuid "be41ac9e-b8ba-4089-983b-b84269707f1c") + ) + (wire + (pts + (xy 78.74 55.88) (xy 78.74 59.69) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c71f56c1-5b7c-4373-9716-fffac482104c") + ) + (wire + (pts + (xy 201.93 99.06) (xy 201.93 96.52) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c873689a-d206-42f5-aead-9199b4d63f51") + ) + (wire + (pts + (xy 157.48 86.36) (xy 154.94 86.36) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c8ab8246-b2bb-4b06-b45e-2548482466fd") + ) + (wire + (pts + (xy 209.55 116.84) (xy 209.55 120.65) + ) + (stroke + (width 0) + (type default) + ) + (uuid "cb083d38-4f11-4a80-8b19-ab751c405e4a") + ) + (wire + (pts + (xy 228.6 109.22) (xy 229.87 109.22) + ) + (stroke + (width 0) + (type default) + ) + (uuid "cbde200f-1075-469a-89f8-abbdcf30e36a") + ) + (wire + (pts + (xy 104.14 26.67) (xy 104.14 34.29) + ) + (stroke + (width 0) + (type default) + ) + (uuid "cbebc05a-c4dd-4baf-8c08-196e84e08b27") + ) + (wire + (pts + (xy 86.36 110.49) (xy 88.9 110.49) + ) + (stroke + (width 0) + (type default) + ) + (uuid "cc75e5ae-3348-4e7a-bd16-4df685ee47bd") + ) + (wire + (pts + (xy 71.12 102.87) (xy 71.12 124.46) + ) + (stroke + (width 0) + (type default) + ) + (uuid "cd5e758d-cb66-484a-ae8b-21f53ceee49e") + ) + (wire + (pts + (xy 201.93 91.44) (xy 201.93 85.09) + ) + (stroke + (width 0) + (type default) + ) + (uuid "cee2f43a-7d22-4585-a857-73949bd17a9d") + ) + (wire + (pts + (xy 67.31 44.45) (xy 67.31 34.29) + ) + (stroke + (width 0) + (type default) + ) + (uuid "da954e7c-4bc9-47d3-9c46-cff3365d1372") + ) + (wire + (pts + (xy 57.15 97.79) (xy 62.23 97.79) + ) + (stroke + (width 0) + (type default) + ) + (uuid "dbe92a0d-89cb-4d3f-9497-c2c1d93a3018") + ) + (wire + (pts + (xy 172.72 92.71) (xy 172.72 83.82) + ) + (stroke + (width 0) + (type default) + ) + (uuid "dc1d84c8-33da-4489-be8e-2a1de3001779") + ) + (wire + (pts + (xy 30.48 43.18) (xy 35.56 43.18) + ) + (stroke + (width 0) + (type default) + ) + (uuid "dd04ac86-45d5-4ad5-a7fc-010d917decbc") + ) + (wire + (pts + (xy 251.46 82.55) (xy 252.73 82.55) + ) + (stroke + (width 0) + (type default) + ) + (uuid "df2a6036-7274-4398-9365-148b6ddab90d") + ) + (wire + (pts + (xy 137.16 114.3) (xy 134.62 114.3) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e0830067-5b66-4ce1-b2d1-aaa8af20baf7") + ) + (wire + (pts + (xy 30.48 34.29) (xy 30.48 31.75) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e1d43c08-3da9-495e-9040-1994977b887e") + ) + (wire + (pts + (xy 71.12 144.78) (xy 95.25 144.78) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e300709f-6c72-488d-a598-efcbd6d3af54") + ) + (wire + (pts + (xy 73.66 102.87) (xy 71.12 102.87) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e36988d2-ecb2-461b-a443-7006f447e828") + ) + (wire + (pts + (xy 78.74 110.49) (xy 78.74 107.95) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e5e5220d-5b7e-47da-a902-b997ec8d4d58") + ) + (wire + (pts + (xy 62.23 55.88) (xy 72.39 55.88) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e70b6168-f98e-4322-bc55-500948ef7b77") + ) + (wire + (pts + (xy 134.62 110.49) (xy 134.62 111.76) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e87738fc-e372-4c48-9de9-398fd8b4874c") + ) + (wire + (pts + (xy 35.56 31.75) (xy 35.56 34.29) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e9e5add4-52bc-4c3a-baee-ebd6b07707ba") + ) + (wire + (pts + (xy 86.36 55.88) (xy 109.22 55.88) + ) + (stroke + (width 0) + (type default) + ) + (uuid "eac8d865-0226-4958-b547-6b5592f39713") + ) + (wire + (pts + (xy 81.28 124.46) (xy 71.12 124.46) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f2480d0c-9b08-4037-9175-b2369af04d4c") + ) + (wire + (pts + (xy 81.28 90.17) (xy 78.74 90.17) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f345e52a-8e0a-425a-b438-90809dd3b799") + ) + (wire + (pts + (xy 77.47 55.88) (xy 78.74 55.88) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f447e585-df78-4239-b8cb-4653b3837bb1") + ) + (wire + (pts + (xy 222.25 85.09) (xy 229.87 85.09) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f50dae73-c5b5-475d-ac8c-5b555be54fa3") + ) + (wire + (pts + (xy 95.25 100.33) (xy 96.52 100.33) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f5bf5b4a-5213-48af-a5cd-0d67969d2de6") + ) + (wire + (pts + (xy 142.24 114.3) (xy 144.78 114.3) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f5c43e09-08d6-4a29-a53a-3b9ea7fb34cd") + ) + (wire + (pts + (xy 39.37 106.68) (xy 26.67 106.68) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f6983918-fe05-46ea-b355-bc522ec53440") + ) + (wire + (pts + (xy 104.14 26.67) (xy 111.76 26.67) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f7447e92-4293-41c4-be3f-69b30aad1f17") + ) + (wire + (pts + (xy 106.68 110.49) (xy 106.68 111.76) + ) + (stroke + (width 0) + (type default) + ) + (uuid "fa00d3f4-bb71-4b1d-aa40-ae9267e2c41f") + ) + (wire + (pts + (xy 44.45 44.45) (xy 67.31 44.45) + ) + (stroke + (width 0) + (type default) + ) + (uuid "fc6c0750-2e63-446b-a4d5-825caa091858") + ) + (text "R19,C25 set the output filter cut-off frequency \nDefault: 10 MHz" + (exclude_from_sim no) + (at 133.35 24.13 0) + (effects + (font + (size 1.524 1.524) + ) + (justify left bottom) + ) + (uuid "10d8ad0e-6a08-4053-92aa-23a15910fd21") + ) + (text "R16 and piezo capacitance\nform a low-pass filter. \nChange R16 to set the \ncut-off frequency." + (exclude_from_sim no) + (at 153.67 125.73 0) + (effects + (font + (size 1.524 1.524) + ) + (justify left bottom) + ) + (uuid "2b64d2cb-d62a-4762-97ea-f1b0d4293c4f") + ) + (text "Use as non-inv. amp (R7,R27)\nor divider (R23,R25)\nfor level adjustment." + (exclude_from_sim no) + (at 195.58 138.43 0) + (effects + (font + (size 1.524 1.524) + ) + (justify left bottom) + ) + (uuid "99186658-0361-40ba-ae93-62f23c5622e6") + ) + (hierarchical_label "+10V_ref" + (shape input) + (at 27.94 19.05 180) + (fields_autoplaced yes) + (effects + (font + (size 1.524 1.524) + ) + (justify right) + ) + (uuid "11a5ce0b-ddcd-4f4b-b62b-260eef58ff29") + ) + (hierarchical_label "+12V" + (shape input) + (at 240.03 92.71 270) + (fields_autoplaced yes) + (effects + (font + (size 1.524 1.524) + ) + (justify right) + ) + (uuid "26d26af1-aac3-4a64-b170-032002954c04") + ) + (hierarchical_label "-12V" + (shape input) + (at 134.62 116.84 270) + (fields_autoplaced yes) + (effects + (font + (size 1.524 1.524) + ) + (justify right) + ) + (uuid "3c4f222b-1961-43d2-90d8-2922e33e595d") + ) + (hierarchical_label "-12V" + (shape input) + (at 114.3 40.64 90) + (fields_autoplaced yes) + (effects + (font + (size 1.524 1.524) + ) + (justify left) + ) + (uuid "638155e7-3d82-48c6-8cc2-b3f464c3fa2c") + ) + (hierarchical_label "+12V" + (shape input) + (at 134.62 90.17 90) + (fields_autoplaced yes) + (effects + (font + (size 1.524 1.524) + ) + (justify left) + ) + (uuid "6d98fbe8-8ad8-4d5d-9122-f418466ef1d2") + ) + (hierarchical_label "-12V" + (shape input) + (at 240.03 69.85 90) + (fields_autoplaced yes) + (effects + (font + (size 1.524 1.524) + ) + (justify left) + ) + (uuid "a1dbe95f-6fa8-47e2-b55d-25a086860635") + ) + (hierarchical_label "+12V" + (shape input) + (at 114.3 63.5 270) + (fields_autoplaced yes) + (effects + (font + (size 1.524 1.524) + ) + (justify right) + ) + (uuid "a70e670a-af69-4dd7-a0c3-a647916caab4") + ) + (hierarchical_label "+12V" + (shape input) + (at 78.74 87.63 90) + (fields_autoplaced yes) + (effects + (font + (size 1.524 1.524) + ) + (justify left) + ) + (uuid "ed47e1f4-1a91-4875-be4d-7e78cdfcb447") + ) + (hierarchical_label "SET" + (shape input) + (at 48.26 158.75 180) + (fields_autoplaced yes) + (effects + (font + (size 1.524 1.524) + ) + (justify right) + ) + (uuid "f9ac96b1-e75a-429d-9cbd-97307d0bca2a") + ) + (hierarchical_label "-12V" + (shape input) + (at 78.74 113.03 270) + (fields_autoplaced yes) + (effects + (font + (size 1.524 1.524) + ) + (justify right) + ) + (uuid "fd9538bc-ec52-4ddc-b2f3-932905f1c571") + ) + (symbol + (lib_id "Amplifier_Operational:OPA1604") + (at 121.92 102.87 0) + (unit 2) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b057930") + (property "Reference" "U4" + (at 121.92 97.79 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "OPA1604" + (at 121.92 107.95 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" + (at 120.65 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/opa1604.pdf" + (at 123.19 97.79 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 121.92 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Texas Instruments" + (at 121.92 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "OPA1604AIDR" + (at 121.92 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "1e1e3a29-5fd9-4a3e-ba42-6dd7a361b18a") + ) + (pin "2" + (uuid "9e6d985f-2df8-41ad-9f9f-1f00ae725ca9") + ) + (pin "3" + (uuid "6c072fe2-0e9e-4c73-9a92-639a06743191") + ) + (pin "5" + (uuid "00dd6f52-63d0-4679-a71b-f8fc5a06e8c3") + ) + (pin "6" + (uuid "910b5d8a-b1af-4e84-ac07-c89c582ac4d5") + ) + (pin "7" + (uuid "4a3382f4-c28e-4147-b5e4-73f87a0b6d2b") + ) + (pin "10" + (uuid "3804c20c-edf1-4730-b01a-2c92a23ad2b3") + ) + (pin "8" + (uuid "9cbc8fc1-022f-47b4-8d9b-06853826504e") + ) + (pin "9" + (uuid "712ca4ba-0569-4cc7-b6bf-ee818a027c73") + ) + (pin "12" + (uuid "44be95c5-a811-494b-9904-b96340fb7eaa") + ) + (pin "13" + (uuid "b110a8fc-4ff5-40c7-b588-5398978d1962") + ) + (pin "14" + (uuid "0357b5ff-df48-499b-b96b-8a8e9a03372a") + ) + (pin "11" + (uuid "9456ac28-da9d-4d9f-bea2-8856d131e5fe") + ) + (pin "4" + (uuid "06823cca-383f-40d3-8a9d-bc906071a249") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "U4") + (unit 2) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Small") + (at 83.82 90.17 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b057937") + (property "Reference" "C14" + (at 85.598 90.424 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100n" + (at 83.82 87.63 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 83.82 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 83.82 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 83.82 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Kemet" + (at 83.82 90.17 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "C0603C104K5RECAUTO" + (at 83.82 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "e910650f-f039-4f57-804b-bcdcddf1f00a") + ) + (pin "2" + (uuid "a9352142-1822-465f-9e27-c4ec8e869c39") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "C14") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 88.9 91.44 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b05793e") + (property "Reference" "#PWR012" + (at 88.9 97.79 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 88.9 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 88.9 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 88.9 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 88.9 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "e4756e5c-2bb9-4fa0-b56c-795a8d1ee44c") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "#PWR012") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 88.9 111.76 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b057944") + (property "Reference" "#PWR013" + (at 88.9 118.11 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 88.9 115.57 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 88.9 111.76 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 88.9 111.76 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 88.9 111.76 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "f3d16685-f2bb-498a-8bb1-3461d41f2123") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "#PWR013") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Conn_Coaxial") + (at 26.67 97.79 0) + (mirror y) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b057966") + (property "Reference" "J3" + (at 26.67 93.98 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Piezo_In (Out1)" + (at 24.13 97.79 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Connector_Coaxial:SMA_Amphenol_132134_Vertical" + (at 26.67 97.79 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 26.67 97.79 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 26.67 97.79 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Config" "" + (at 26.67 97.79 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "MFN" "Amphenol" + (at 26.67 97.79 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "901-144-8RFX" + (at 26.67 97.79 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "93b8e397-8481-447c-b63e-a05bc2fe0f17") + ) + (pin "2" + (uuid "649c3555-a042-4726-8a52-b010b0c0eb4d") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "J3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 26.67 107.95 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b05796d") + (property "Reference" "#PWR014" + (at 26.67 114.3 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 26.67 111.76 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 26.67 107.95 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 26.67 107.95 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 26.67 107.95 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "02855b7f-553d-4cd0-8e87-028364f323f1") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "#PWR014") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 62.23 113.03 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b057973") + (property "Reference" "#PWR015" + (at 62.23 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 62.23 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 62.23 113.03 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 62.23 113.03 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 62.23 113.03 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "bcf95231-6657-4776-b9d4-11041e1d83af") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "#PWR015") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "TexasInstruments:BUF634") + (at 137.16 102.87 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b05797a") + (property "Reference" "U5" + (at 142.24 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "BUF634" + (at 142.24 105.41 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" + (at 137.16 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 137.16 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 137.16 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Texas Instruments" + (at 137.16 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "BUF634AIDR" + (at 137.16 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "1" + (at 137.16 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (pin "4" + (uuid "8c6d2a68-1e86-4cd8-86da-9252a6831921") + ) + (pin "7" + (uuid "2c75b0fd-8d39-4134-8230-331aada634fa") + ) + (pin "1" + (uuid "0ae91059-c3cb-42ca-b237-3365d95bbdf4") + ) + (pin "2" + (uuid "5413cfb2-f01c-497a-8227-7c9b29df3e1a") + ) + (pin "3" + (uuid "0e8b54b8-a5f4-4bb5-915f-c2ac7f05bd90") + ) + (pin "5" + (uuid "ee4970b1-f439-4c11-9a72-4282be4dd4d3") + ) + (pin "6" + (uuid "413ed2ad-bd97-4c0d-9d65-9fd24c3213ef") + ) + (pin "8" + (uuid "efee7332-9835-44f9-a57f-afd8c41d7573") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "U5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 144.78 93.98 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b057981") + (property "Reference" "#PWR016" + (at 144.78 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 144.78 97.79 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 144.78 93.98 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 144.78 93.98 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 144.78 93.98 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "14dae859-8a5e-4c74-8dd1-33305fc12529") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "#PWR016") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 158.75 102.87 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b057987") + (property "Reference" "R16" + (at 158.75 104.902 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "4.7" + (at 158.75 102.87 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_1210_3225Metric" + (at 158.75 101.092 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 158.75 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 158.75 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Panasonic" + (at 158.75 102.87 90) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "ERJ-14YJ4R7U" + (at 158.75 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "22f7a9a7-52b7-4def-9f01-74ce752895c6") + ) + (pin "2" + (uuid "3d357196-16a7-43c8-a9c0-2fb0aec0b012") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "R16") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Conn_Coaxial") + (at 171.45 102.87 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b05798e") + (property "Reference" "J5" + (at 171.45 99.06 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Piezo_Out" + (at 173.99 102.87 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Connector_Coaxial:SMA_Amphenol_132134_Vertical" + (at 171.45 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 171.45 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 171.45 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Config" "" + (at 171.45 102.87 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "MFN" "Amphenol" + (at 171.45 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "901-144-8RFX" + (at 171.45 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "afb11357-1c53-4a8e-9b7f-b8995b3d515b") + ) + (pin "2" + (uuid "17875c8c-8727-42c5-8872-c4d3b4705644") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "J5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 171.45 107.95 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b057995") + (property "Reference" "#PWR017" + (at 171.45 114.3 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 171.45 111.76 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 171.45 107.95 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 171.45 107.95 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 171.45 107.95 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "a7059164-29ca-42a4-97d0-e8e563d26094") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "#PWR017") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Amplifier_Operational:OPA1604") + (at 165.1 83.82 0) + (unit 3) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b05799b") + (property "Reference" "U4" + (at 165.1 78.74 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "OPA1604" + (at 165.1 88.9 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" + (at 163.83 81.28 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/opa1604.pdf" + (at 166.37 78.74 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 165.1 83.82 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Texas Instruments" + (at 165.1 83.82 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "OPA1604AIDR" + (at 165.1 83.82 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "44cb3a2d-98a3-45bc-b19f-0914c6d3ad5b") + ) + (pin "2" + (uuid "35b63703-e4f2-47d4-ba8c-44b4718a187f") + ) + (pin "3" + (uuid "c360155b-ac86-4f11-a98e-cc3352f022a5") + ) + (pin "5" + (uuid "6dba759f-f208-453a-9723-1396f3386552") + ) + (pin "6" + (uuid "ce8a0053-6ffb-4645-b0a3-5ee42e92cf2a") + ) + (pin "7" + (uuid "846f0dfb-3855-4b4e-9daa-f88392604639") + ) + (pin "10" + (uuid "6555b1d2-85d4-4bd7-9164-d3a136d4dd84") + ) + (pin "8" + (uuid "ccaa07c3-e0c0-4a0e-8ceb-b9a248489eb6") + ) + (pin "9" + (uuid "24381925-eb4d-4686-945e-f9dc83f3ca3e") + ) + (pin "12" + (uuid "3618c087-2c90-4d2e-806f-183c21730684") + ) + (pin "13" + (uuid "263938d2-1496-464f-bf6e-4d74879eb372") + ) + (pin "14" + (uuid "8f3ab412-8ef6-44fe-8b42-0680daf5d1b7") + ) + (pin "11" + (uuid "7daee1ea-7cc4-411d-9f67-80c226e959bf") + ) + (pin "4" + (uuid "d0759856-8433-49ae-bf85-9ca252d32150") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "U4") + (unit 3) + ) + ) + ) + ) + (symbol + (lib_id "Device:R_Small") + (at 177.8 83.82 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b0579a2") + (property "Reference" "R18" + (at 178.308 84.582 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "49.9" + (at 176.784 84.582 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_1210_3225Metric" + (at 177.8 83.82 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 177.8 83.82 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 177.8 83.82 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Yageo" + (at 177.8 83.82 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "RC1210FR-0749R9L" + (at 177.8 83.82 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "47b6694c-c477-4176-af38-50c331ec0ae7") + ) + (pin "2" + (uuid "32bac44f-1573-49d9-b256-779e022f86cf") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "R18") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Conn_Coaxial") + (at 187.96 83.82 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b0579a9") + (property "Reference" "J7" + (at 187.96 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Piezo_Monitor" + (at 190.5 83.82 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Connector_Coaxial:SMA_Amphenol_132134_Vertical" + (at 187.96 83.82 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 187.96 83.82 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 187.96 83.82 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Config" "" + (at 187.96 83.82 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "MFN" "Amphenol" + (at 187.96 83.82 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "901-144-8RFX" + (at 187.96 83.82 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "3c41cbd6-a157-4677-95fb-3dcb00e63628") + ) + (pin "2" + (uuid "202d5f78-ae9c-438e-9dd2-98379b2148d1") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "J7") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 187.96 88.9 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b0579b0") + (property "Reference" "#PWR018" + (at 187.96 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 187.96 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 187.96 88.9 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 187.96 88.9 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 187.96 88.9 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "77764113-01f9-4080-be5e-3f5e417724ed") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "#PWR018") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Amplifier_Operational:OPA1604") + (at 81.28 100.33 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b057a01") + (property "Reference" "U4" + (at 81.28 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "OPA1604" + (at 81.28 105.41 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" + (at 80.01 97.79 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/opa1604.pdf" + (at 82.55 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 81.28 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Texas Instruments" + (at 81.28 100.33 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "OPA1604AIDR" + (at 81.28 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "3a490b2c-e0ce-411b-abf5-7f02ffe136b7") + ) + (pin "2" + (uuid "87bc0137-cfa3-4855-aeb1-c59dcdeaf0e7") + ) + (pin "3" + (uuid "5189aa6e-70ab-4a3f-b077-dda1741f91b7") + ) + (pin "5" + (uuid "58a18b30-dde5-471b-aadb-4df564adac6e") + ) + (pin "6" + (uuid "676c8c6c-5758-4944-92ef-f676eb79bece") + ) + (pin "7" + (uuid "00c7d6d6-f6f2-4ee1-af46-bcf6e0d153a7") + ) + (pin "10" + (uuid "d6a51d8f-d58c-4aff-bd86-aabd45535cb8") + ) + (pin "8" + (uuid "ec9124ac-be00-4ec0-b39e-64fec244e85b") + ) + (pin "9" + (uuid "2b7fd2a9-b0d1-4169-b2fb-c83c08c39cd2") + ) + (pin "12" + (uuid "db518c2e-f672-4503-98cb-7bac2e30e4a9") + ) + (pin "13" + (uuid "94354d44-479b-4945-af24-170c1ea693da") + ) + (pin "14" + (uuid "5778f0b0-32c4-46af-974b-a7dc53b692d1") + ) + (pin "11" + (uuid "0f93b532-76de-49be-9279-49b264413c9f") + ) + (pin "4" + (uuid "4180d6c4-fad3-4f67-bfe2-f28a8049a012") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "U4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Small") + (at 83.82 110.49 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b057a08") + (property "Reference" "C15" + (at 85.598 110.744 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100n" + (at 81.788 110.744 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 83.82 110.49 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 83.82 110.49 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 83.82 110.49 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Kemet" + (at 83.82 110.49 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "C0603C104K5RECAUTO" + (at 83.82 110.49 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "bacf6344-ee3a-46c7-8cbb-4031422852e4") + ) + (pin "2" + (uuid "ccb69b81-201b-4c4f-8778-27aa5f8225c1") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "C15") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R_Small") + (at 99.06 100.33 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b057a11") + (property "Reference" "R9" + (at 99.568 101.092 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "1k" + (at 98.044 101.092 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 99.06 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 99.06 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 99.06 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Susumu" + (at 99.06 100.33 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "RR0816P-102-D" + (at 99.06 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "42eaa9c5-0fee-4a98-add2-e062176deef9") + ) + (pin "2" + (uuid "3b7f0654-6e72-42da-835b-cdd9d7384bf4") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "R9") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R_Small") + (at 124.46 125.73 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b057a18") + (property "Reference" "R14" + (at 124.968 126.492 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "2k" + (at 123.444 126.492 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 124.46 125.73 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 124.46 125.73 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 124.46 125.73 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Susumu" + (at 124.46 125.73 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "RR0816P-202-D" + (at 124.46 125.73 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "697ef020-7c90-47dc-b54e-2dc78623c440") + ) + (pin "2" + (uuid "e2b2a47e-f126-4d77-a2fc-7296174ded72") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "R14") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R_Small") + (at 114.3 129.54 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b057a35") + (property "Reference" "R12" + (at 115.062 129.032 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "1k" + (at 115.062 130.556 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 114.3 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 114.3 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 114.3 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Susumu" + (at 114.3 129.54 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "RR0816P-102-D" + (at 114.3 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "1bc808c2-7aeb-4546-9485-b34352cea986") + ) + (pin "2" + (uuid "09af8c62-9922-473d-b470-8e39b61ece87") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "R12") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 106.68 111.76 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b057a3c") + (property "Reference" "#PWR029" + (at 106.68 118.11 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 106.68 115.57 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 106.68 111.76 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 106.68 111.76 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 106.68 111.76 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "1775540d-aec8-4594-9f46-ec7b6975da5f") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "#PWR029") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Conn_Coaxial") + (at 242.57 109.22 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b0591a2") + (property "Reference" "J14" + (at 242.57 105.41 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Error_Out (In1)" + (at 245.11 109.22 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Connector_Coaxial:SMA_Amphenol_132134_Vertical" + (at 242.57 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 242.57 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 242.57 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Config" "" + (at 242.57 109.22 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "MFN" "Amphenol" + (at 242.57 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "901-144-8RFX" + (at 242.57 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "c9af946f-b7e2-4039-8e5f-6bc0b530f0f1") + ) + (pin "2" + (uuid "84d9c686-cfb8-45e3-96ca-ce4ba0200ee3") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "J14") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Conn_Coaxial") + (at 195.58 116.84 0) + (mirror y) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b0591ae") + (property "Reference" "J12" + (at 195.58 113.03 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Error_In" + (at 193.04 116.84 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Connector_Coaxial:SMA_Amphenol_132134_Vertical" + (at 195.58 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 195.58 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 195.58 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Config" "" + (at 195.58 116.84 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "MFN" "Amphenol" + (at 195.58 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "901-144-8RFX" + (at 195.58 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "aa7a268d-95c3-415d-b496-a31927c1db12") + ) + (pin "2" + (uuid "a11faa0b-e8ea-4df5-9c48-0fcb89cfdf83") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "J12") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R_Small") + (at 205.74 116.84 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b0591b4") + (property "Reference" "R23" + (at 206.248 117.602 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "0" + (at 204.724 117.602 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 205.74 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 205.74 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 205.74 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Vishay" + (at 205.74 116.84 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "CRCW06030000Z0EB" + (at 205.74 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "8415fb44-de71-4cbc-9133-9df37162e986") + ) + (pin "2" + (uuid "a1c4e8cd-207e-42eb-a8c2-7d09a891d7e5") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "R23") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R_Small") + (at 209.55 123.19 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b0591c0") + (property "Reference" "R25" + (at 210.312 122.682 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "1M" + (at 210.312 124.206 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 209.55 123.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 209.55 123.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 209.55 123.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Panasonic" + (at 209.55 123.19 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "ERJ-3RED1004V" + (at 209.55 123.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "fb1daf15-ac6a-48e5-81de-fe40cb6308b6") + ) + (pin "2" + (uuid "bf0a3c89-f7df-4d76-8d2b-8e1fcdde08b0") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "R25") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R_Small") + (at 219.71 85.09 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b0591c6") + (property "Reference" "R27" + (at 220.218 85.852 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "0" + (at 218.694 85.852 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 219.71 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 219.71 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 219.71 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Vishay" + (at 219.71 85.09 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "CRCW06030000Z0EB" + (at 219.71 85.09 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "5b259a34-0f5c-403a-a579-804f5da1b696") + ) + (pin "2" + (uuid "946acd9f-c9c2-4744-ad6a-98f62a6c22cc") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "R27") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 242.57 114.3 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b0591cc") + (property "Reference" "#PWR020" + (at 242.57 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 242.57 118.11 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 242.57 114.3 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 242.57 114.3 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 242.57 114.3 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "80e3ad5d-889e-4a8a-b73e-70274e2b680b") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "#PWR020") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 209.55 127 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b0591d2") + (property "Reference" "#PWR021" + (at 209.55 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 209.55 130.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 209.55 127 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 209.55 127 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 209.55 127 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "f7e5e016-e989-4803-aa41-84ec0d5c0c32") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "#PWR021") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 195.58 121.92 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b0591d8") + (property "Reference" "#PWR022" + (at 195.58 128.27 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 195.58 125.73 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 195.58 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 195.58 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 195.58 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "accabc6c-343c-451b-b8a8-93d03011d950") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "#PWR022") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Amplifier_Operational:OPA1604") + (at 82.55 156.21 0) + (mirror x) + (unit 4) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b0591f9") + (property "Reference" "U4" + (at 82.55 161.29 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "OPA1604" + (at 82.55 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" + (at 81.28 158.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/opa1604.pdf" + (at 83.82 161.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 82.55 156.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Texas Instruments" + (at 82.55 156.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "OPA1604AIDR" + (at 82.55 156.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "6284514c-c8f8-469d-8a88-e192e1fa51b4") + ) + (pin "2" + (uuid "19137aa6-8d2b-46bd-ad0e-307c27bb5fb0") + ) + (pin "3" + (uuid "ab391e5a-b369-4ade-bcd1-905e88bb2e28") + ) + (pin "5" + (uuid "414ed16d-bf1a-4900-9a27-7fdc84024bd9") + ) + (pin "6" + (uuid "206acbb2-b9f4-451a-8523-5225e743d44a") + ) + (pin "7" + (uuid "3466fa9e-10cb-4f47-8cd5-6e978ec2949b") + ) + (pin "10" + (uuid "f45b8dfd-0089-4e42-a8c3-7401861d5cb2") + ) + (pin "8" + (uuid "487ead0c-c849-4b2a-adac-54a1490ebdfe") + ) + (pin "9" + (uuid "b8edfe6e-9c31-4274-a8cb-9ac25eff49f7") + ) + (pin "12" + (uuid "9f1ac98c-8a47-48c2-a6e7-b95457096c8b") + ) + (pin "13" + (uuid "e93ee68d-eaca-4d5f-8039-2c05a18d1184") + ) + (pin "14" + (uuid "4f84cf8a-c98b-44cf-9573-097770651546") + ) + (pin "11" + (uuid "b4131ae8-9d28-4c3c-9f99-08b94256720b") + ) + (pin "4" + (uuid "b07c1ab7-80bc-4b00-bf88-f2df3a72c976") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "U4") + (unit 4) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Conn_Coaxial") + (at 265.43 82.55 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b0591ff") + (property "Reference" "J16" + (at 265.43 78.74 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Error_Mon" + (at 267.97 82.55 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Connector_Coaxial:SMA_Amphenol_132134_Vertical" + (at 265.43 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 265.43 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 265.43 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Config" "" + (at 265.43 82.55 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "MFN" "Amphenol" + (at 265.43 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "901-144-8RFX" + (at 265.43 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "02b04eef-35be-4f6e-bdc5-b507e158620c") + ) + (pin "2" + (uuid "7cd6cd6f-dc77-4a25-9f5f-91b72069ae81") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "J16") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R_Small") + (at 255.27 82.55 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b059205") + (property "Reference" "R29" + (at 255.778 83.312 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "49.9" + (at 254.254 83.312 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_1210_3225Metric" + (at 255.27 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 255.27 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 255.27 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Yageo" + (at 255.27 82.55 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "RC1210FR-0749R9L" + (at 255.27 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "d1238931-fd05-48ce-b254-cf6847b09b08") + ) + (pin "2" + (uuid "a09a43e1-08da-4f53-bd30-8877493490a3") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "R29") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 265.43 87.63 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b05920e") + (property "Reference" "#PWR023" + (at 265.43 93.98 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 265.43 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 265.43 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 265.43 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 265.43 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "d261f35d-0cbc-4647-a972-96323318fdbd") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "#PWR023") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Amplifier_Operational:OPA1602") + (at 220.98 109.22 0) + (mirror x) + (unit 2) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b05975d") + (property "Reference" "U8" + (at 220.98 114.3 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "OPA1602" + (at 220.98 104.14 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" + (at 220.98 102.235 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/opa1604.pdf" + (at 220.98 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 220.98 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Texas Instruments" + (at 220.98 109.22 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "OPA1602AIDR" + (at 220.98 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "bd3ab455-c5dc-4f43-8569-b8ee8f8cd209") + ) + (pin "2" + (uuid "5aea360f-7c09-4e5b-b0ee-1e11f718320e") + ) + (pin "3" + (uuid "085f3a55-216e-4866-bf12-b7ee5b4555bb") + ) + (pin "5" + (uuid "5945caf4-d62b-4d80-ac8a-25d831dac01b") + ) + (pin "6" + (uuid "b5a65e37-67a1-47d2-9507-0b2712638ff6") + ) + (pin "7" + (uuid "94db4bde-c0ea-42be-8225-452b32a2a943") + ) + (pin "4" + (uuid "6295b3c3-d678-40ff-9204-77a43d3efdf7") + ) + (pin "8" + (uuid "1a1ab387-e2b1-4d44-8079-5e4746ceb830") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "U8") + (unit 2) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 246.38 72.39 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b059a6b") + (property "Reference" "#PWR024" + (at 246.38 78.74 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 246.38 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 246.38 72.39 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 246.38 72.39 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 246.38 72.39 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "cbe66445-f484-4956-801f-fede2b75f79e") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "#PWR024") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 246.38 92.71 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b05a24d") + (property "Reference" "#PWR025" + (at 246.38 99.06 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 246.38 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 246.38 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 246.38 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 246.38 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "7a2f8939-870f-4168-b4e6-0c9c1bf69642") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "#PWR025") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R_Small") + (at 201.93 93.98 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b3fa4a8") + (property "Reference" "R7" + (at 201.168 94.488 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "DNF" + (at 201.168 92.964 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 201.93 93.98 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 201.93 93.98 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 201.93 93.98 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Config" "DNF" + (at 201.93 93.98 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "36ee6cee-2684-44cd-9dba-5a4e809c4304") + ) + (pin "2" + (uuid "805f93df-798e-4572-8612-6d5c10b2364e") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "R7") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 201.93 99.06 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b3fa542") + (property "Reference" "#PWR026" + (at 201.93 105.41 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 201.93 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 201.93 99.06 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 201.93 99.06 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 201.93 99.06 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "e92bce43-9c3b-455d-88d1-f9ac0e202bf9") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "#PWR026") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Amplifier_Operational:OPA1602") + (at 242.57 82.55 0) + (mirror x) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b4016af") + (property "Reference" "U8" + (at 242.57 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "OPA1602" + (at 242.57 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" + (at 242.57 75.565 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/opa1604.pdf" + (at 242.57 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 242.57 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Texas Instruments" + (at 242.57 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "OPA1602AIDR" + (at 242.57 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "47b3834c-8a87-4af3-9143-c88b9cd89304") + ) + (pin "2" + (uuid "adc74667-5dec-4b95-9d35-ffc7db9ad260") + ) + (pin "3" + (uuid "af58d6aa-33e4-4da2-8ea3-2304125e31c0") + ) + (pin "5" + (uuid "3c58c7c3-b16e-4def-8979-0b4ef9937989") + ) + (pin "6" + (uuid "6afea985-dd81-49c6-a1f1-ddf2bb8b2ba5") + ) + (pin "7" + (uuid "9b30aba0-6e57-4de7-9fad-733e147e18e9") + ) + (pin "4" + (uuid "c9bf622e-d51d-41f1-8de2-337fe4ac5abb") + ) + (pin "8" + (uuid "44622ffd-7e7d-4bb2-afb7-4b3302d73b1f") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "U8") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Small") + (at 62.23 107.95 0) + (mirror y) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b6d8fe5") + (property "Reference" "C10" + (at 61.976 106.172 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "16n (C0G)" + (at 61.976 109.982 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_1206_3216Metric" + (at 62.23 107.95 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 62.23 107.95 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 62.23 107.95 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Murata Electronics" + (at 62.23 107.95 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "GRM3195C1H163JA01D" + (at 62.23 107.95 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "f6dd86d1-d812-46b6-9d75-34e3413faa14") + ) + (pin "2" + (uuid "a212ca99-b62e-469e-8301-b9b2c1f3389e") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "C10") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 63.5 172.72 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b6d90a7") + (property "Reference" "#PWR027" + (at 63.5 179.07 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 63.5 176.53 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 63.5 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 63.5 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 63.5 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "bd7d5bca-5f22-4960-a330-d26a208f450b") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "#PWR027") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R_Small") + (at 233.68 109.22 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005c1a6223") + (property "Reference" "R11" + (at 234.188 109.982 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "49.9" + (at 232.664 109.982 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_1210_3225Metric" + (at 233.68 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 233.68 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 233.68 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Yageo" + (at 233.68 109.22 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "RC1210FR-0749R9L" + (at 233.68 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "5a5e12c1-9b8e-4895-b251-403c1eb19c78") + ) + (pin "2" + (uuid "1e77d05a-47c6-4779-a271-263f4100b67f") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "R11") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Small") + (at 139.7 114.3 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005c1ade01") + (property "Reference" "C19" + (at 141.478 114.554 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100n" + (at 137.668 114.554 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 139.7 114.3 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 139.7 114.3 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 139.7 114.3 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Kemet" + (at 139.7 114.3 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "C0603C104K5RECAUTO" + (at 139.7 114.3 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "9e9f7fb4-5a29-4eca-8d85-dd7ab5d886ee") + ) + (pin "2" + (uuid "6ff27d99-78b4-450f-95c6-9a1e30d273c9") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "C19") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Small") + (at 139.7 92.71 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005c1ae145") + (property "Reference" "C18" + (at 141.478 92.964 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100n" + (at 137.668 92.964 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 139.7 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 139.7 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 139.7 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Kemet" + (at 139.7 92.71 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "C0603C104K5RECAUTO" + (at 139.7 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "efeb0491-736e-4858-bfe9-9b280ea164d3") + ) + (pin "2" + (uuid "7d4b3007-700f-4d99-8036-8b2ac9569f47") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "C18") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Small") + (at 243.84 72.39 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005c1ae57d") + (property "Reference" "C22" + (at 243.84 66.04 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100n" + (at 246.38 64.77 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 243.84 72.39 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 243.84 72.39 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 243.84 72.39 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Kemet" + (at 243.84 72.39 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "C0603C104K5RECAUTO" + (at 243.84 72.39 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "a72628da-f0e4-47b4-aa55-a276fe6cc5c1") + ) + (pin "2" + (uuid "9e0b7d56-2e3f-4b77-a4d9-8c8c2862236e") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "C22") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Small") + (at 243.84 92.71 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005c1aecc1") + (property "Reference" "C23" + (at 242.57 88.9 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100n" + (at 246.38 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 243.84 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 243.84 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 243.84 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Kemet" + (at 243.84 92.71 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "C0603C104K5RECAUTO" + (at 243.84 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "6c2a77f4-a653-4fa9-bea7-a506b5f5ed15") + ) + (pin "2" + (uuid "be35a29e-e94c-43a3-8966-07c4b1d79211") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "C23") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R_Small") + (at 57.15 158.75 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005ccf959d") + (property "Reference" "R10" + (at 56.642 157.988 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10k" + (at 58.166 157.988 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 57.15 158.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 57.15 158.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 57.15 158.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Susumu" + (at 57.15 158.75 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "RR0816P-103-D" + (at 57.15 158.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "d053fe1b-58d3-41fb-a760-ad8b78514e86") + ) + (pin "2" + (uuid "15236865-1d05-4059-ac76-08843c9a7ebe") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "R10") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Polarized") + (at 63.5 166.37 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005ccf9c5e") + (property "Reference" "C17" + (at 64.135 163.83 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10u" + (at 64.135 168.91 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3528-21_Kemet-B" + (at 64.4652 170.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 63.5 166.37 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 63.5 166.37 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "AVX" + (at 63.5 166.37 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "TCJB106M025R0150" + (at 63.5 166.37 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "512c83c2-c35d-458e-9913-51a4ff7341ca") + ) + (pin "2" + (uuid "55494837-764a-43f9-b640-762189bbf2b3") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "C17") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R_Small") + (at 54.61 97.79 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005ccfabd0") + (property "Reference" "R6" + (at 55.118 98.552 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "1k" + (at 53.594 98.552 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 54.61 97.79 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 54.61 97.79 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 54.61 97.79 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Susumu" + (at 54.61 97.79 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "RR0816P-102-D" + (at 54.61 97.79 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "bfee4676-4c90-4868-bf57-8c649ad376b9") + ) + (pin "2" + (uuid "c4586fab-b641-4f68-8467-aadab02aa33a") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "R6") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R_Small") + (at 83.82 124.46 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005ccfcd96") + (property "Reference" "R4" + (at 84.328 125.222 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "1k" + (at 82.804 125.222 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 83.82 124.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 83.82 124.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 83.82 124.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Susumu" + (at 83.82 124.46 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "RR0816P-102-D" + (at 83.82 124.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "711ff2ec-a10f-44bd-ab47-2c36d7085568") + ) + (pin "2" + (uuid "ef53bb34-7445-45f1-994b-3c51df8e8823") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "R4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R_Small") + (at 71.12 129.54 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005ccfce48") + (property "Reference" "R3" + (at 70.358 130.048 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "249" + (at 70.358 128.524 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 71.12 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 71.12 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 71.12 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Vishay" + (at 71.12 129.54 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "RCS0603249RFKEA" + (at 71.12 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "062bf0b5-6b50-4d67-a107-cc9673c0b644") + ) + (pin "2" + (uuid "fa8fee6d-e77f-46fd-81e8-4aa7fdad1529") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "R3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 71.12 134.62 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005ccfcf01") + (property "Reference" "#PWR028" + (at 71.12 140.97 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 71.12 138.43 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 71.12 134.62 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 71.12 134.62 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 71.12 134.62 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "8bc42bf5-3610-4e8c-ad02-9d0a443c1dda") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "#PWR028") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 144.78 116.84 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005d733971") + (property "Reference" "#PWR0106" + (at 144.78 123.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 144.907 121.2342 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 144.78 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 144.78 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 144.78 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "74d820be-cd7a-43ef-bb54-6d1cda7970b0") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "#PWR0106") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R_Small") + (at 106.68 107.95 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005e14075d") + (property "Reference" "R8" + (at 105.918 108.458 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "2k" + (at 105.918 106.934 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 106.68 107.95 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 106.68 107.95 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 106.68 107.95 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Susumu" + (at 106.68 107.95 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "RR0816P-202-D" + (at 106.68 107.95 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "01e312fb-40d3-49e4-a54b-a307a66e96ef") + ) + (pin "2" + (uuid "9da477a5-8c72-43e7-a7c9-6a80d493c546") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "R8") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Amplifier_Operational:OPA1604") + (at 81.28 100.33 0) + (unit 5) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005e66c91a") + (property "Reference" "U4" + (at 80.2132 99.1616 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "OPA1604" + (at 80.2132 101.473 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" + (at 80.01 97.79 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/opa1604.pdf" + (at 82.55 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 81.28 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Texas Instruments" + (at 81.28 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "OPA1604AIDR" + (at 81.28 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "fe8a0d95-d3d4-45c5-bbe3-2c2ead8189fb") + ) + (pin "2" + (uuid "684712c1-8004-44fc-b0e8-208d2d38eab1") + ) + (pin "3" + (uuid "15de86da-911d-428d-ab78-f71a8cb55c7b") + ) + (pin "5" + (uuid "ae2efcf4-656b-41ec-8123-816adcce63a1") + ) + (pin "6" + (uuid "7fc7c6d2-ddc3-450d-af30-3868ad26f0e6") + ) + (pin "7" + (uuid "9bd35d84-7c93-4013-a702-20b19f6af059") + ) + (pin "10" + (uuid "88132710-94ef-4a96-b5ac-4548632fa466") + ) + (pin "8" + (uuid "df93ca1a-00be-4fb6-bad3-8ac7f58b81a3") + ) + (pin "9" + (uuid "61225e22-82f0-4c9a-9233-d1a2508dfe3d") + ) + (pin "12" + (uuid "5bf92d31-3f01-45e6-a5d6-71522e95b637") + ) + (pin "13" + (uuid "67226f9d-692d-4384-9503-e42e1f3d0e9c") + ) + (pin "14" + (uuid "0a6f5038-516a-4932-9d59-d193f41d728f") + ) + (pin "11" + (uuid "14c83a99-b0ff-4b96-8865-13ca7bdc685e") + ) + (pin "4" + (uuid "c4d88ebc-4d01-43db-b569-d4806bca98fc") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "U4") + (unit 5) + ) + ) + ) + ) + (symbol + (lib_id "Amplifier_Operational:OPA1602") + (at 237.49 82.55 180) + (unit 3) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005e67ed6d") + (property "Reference" "U8" + (at 242.2652 81.3816 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "OPA1602" + (at 242.2652 83.693 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" + (at 237.49 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/opa1604.pdf" + (at 237.49 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 237.49 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Texas Instruments" + (at 237.49 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "OPA1602AIDR" + (at 237.49 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "0d5b5ea1-167f-4076-ad5a-ecc491823cf5") + ) + (pin "2" + (uuid "e5c77c5b-7feb-42af-a294-83cf4e083419") + ) + (pin "3" + (uuid "d2c3fc0c-a99e-458b-b677-7bd25d165984") + ) + (pin "5" + (uuid "a1e2fbe8-0ad6-430e-807c-17e59e064afe") + ) + (pin "6" + (uuid "7e3b191f-b0ef-44e7-b854-957a511ea57a") + ) + (pin "7" + (uuid "6323e0cc-4e0d-4411-bf75-6eb61250518a") + ) + (pin "4" + (uuid "68cc97a1-6c76-411f-a28b-36162918d55d") + ) + (pin "8" + (uuid "4013842c-f594-4f18-a07a-785be971cdaf") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "U8") + (unit 3) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Conn_Coaxial") + (at 49.53 55.88 0) + (mirror y) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005f57db71") + (property "Reference" "J11" + (at 49.53 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Curr_In (Out2)" + (at 46.99 55.88 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Connector_Coaxial:SMA_Amphenol_132134_Vertical" + (at 49.53 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 49.53 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 49.53 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Config" "" + (at 49.53 55.88 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "MFN" "Amphenol" + (at 49.53 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "901-144-8RFX" + (at 49.53 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "af6d04d8-fb55-44a6-8d61-46b5fe0d57ed") + ) + (pin "2" + (uuid "df60abce-5d8f-47b1-8a1e-e84467d2708f") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "J11") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 78.74 67.31 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005f57dba9") + (property "Reference" "#PWR0112" + (at 78.74 73.66 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 78.74 71.12 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 78.74 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 78.74 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 78.74 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "2b21e596-6e58-4434-b099-437d15cdb1f6") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "#PWR0112") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 49.53 67.31 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005f57dbb3") + (property "Reference" "#PWR0113" + (at 49.53 73.66 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 49.53 71.12 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 49.53 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 49.53 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 49.53 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "92c4afc9-0b89-472e-af18-83d6bf5eb91a") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "#PWR0113") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Conn_Coaxial") + (at 139.7 53.34 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005f57dbbe") + (property "Reference" "J13" + (at 139.7 49.53 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Curr_Out (Out2)" + (at 142.24 53.34 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Connector_Coaxial:SMA_Amphenol_132134_Vertical" + (at 139.7 53.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 139.7 53.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 139.7 53.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Config" "" + (at 139.7 53.34 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "MFN" "Amphenol" + (at 139.7 53.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "901-144-8RFX" + (at 139.7 53.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "7b2daaff-2807-493a-a891-7e134b56d607") + ) + (pin "2" + (uuid "e30d3a9c-b440-48b8-a02c-3b24b32065c9") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "J13") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R_Small") + (at 129.54 53.34 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005f57dbca") + (property "Reference" "R26" + (at 130.048 54.102 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "49.9" + (at 128.524 54.102 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_1210_3225Metric" + (at 129.54 53.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 129.54 53.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 129.54 53.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Yageo" + (at 129.54 53.34 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "RC1210FR-0749R9L" + (at 129.54 53.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "a2eca252-83a6-4a81-9733-6c05a9e15ace") + ) + (pin "2" + (uuid "42ff71dc-a9cf-409d-a7f6-5ef59335c9bc") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "R26") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 139.7 58.42 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005f57dbd4") + (property "Reference" "#PWR0114" + (at 139.7 64.77 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 139.7 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 139.7 58.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 139.7 58.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 139.7 58.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "ef77a10f-7560-4170-ba80-6e6913e002d9") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "#PWR0114") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Amplifier_Operational:OPA1602") + (at 54.61 34.29 0) + (unit 2) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005f57dbe0") + (property "Reference" "U7" + (at 54.61 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "OPA1602" + (at 54.61 39.37 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" + (at 54.61 41.275 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/opa1604.pdf" + (at 54.61 34.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 54.61 34.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Texas Instruments" + (at 54.61 34.29 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "OPA1602AIDR" + (at 54.61 34.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "eab16ccf-158c-4c1e-8765-1b37ac2e912d") + ) + (pin "2" + (uuid "5a8e8139-2753-49ca-a95d-255001d79e02") + ) + (pin "3" + (uuid "58120ba5-19ee-46b9-88eb-6e024c33b788") + ) + (pin "5" + (uuid "410812af-2420-4da0-bd68-ae0f5b00a47f") + ) + (pin "6" + (uuid "3401626f-0918-4d29-959d-1c4cb85ae6c8") + ) + (pin "7" + (uuid "8901d597-531c-484d-9211-d5a861cbf6a0") + ) + (pin "4" + (uuid "f568055a-fdc6-42d6-abcb-e850121e0efa") + ) + (pin "8" + (uuid "e2c3f0f9-7e4c-45f9-b13f-b5b39b8118c3") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "U7") + (unit 2) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 120.65 43.18 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005f57dbea") + (property "Reference" "#PWR0115" + (at 120.65 49.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 120.65 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 120.65 43.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 120.65 43.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 120.65 43.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "42dc223e-26e6-4734-9ad8-5ca3d2ecc45c") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "#PWR0115") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 120.65 63.5 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005f57dbf4") + (property "Reference" "#PWR0116" + (at 120.65 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 120.65 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 120.65 63.5 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 120.65 63.5 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 120.65 63.5 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "894b100a-66db-4256-9062-250cf5797ea8") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "#PWR0116") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 35.56 44.45 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005f57dc0a") + (property "Reference" "#PWR0117" + (at 35.56 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 35.56 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 35.56 44.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 35.56 44.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 35.56 44.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "d57401dd-2d55-4ba5-86e6-9860508e4c16") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "#PWR0117") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Amplifier_Operational:OPA1602") + (at 116.84 53.34 0) + (mirror x) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005f57dc14") + (property "Reference" "U7" + (at 116.84 58.42 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "OPA1602" + (at 116.84 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" + (at 116.84 46.355 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/opa1604.pdf" + (at 116.84 53.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 116.84 53.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Texas Instruments" + (at 116.84 53.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "OPA1602AIDR" + (at 116.84 53.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "dfd52834-b433-4c5a-a2b6-6cf4c635cb90") + ) + (pin "2" + (uuid "2503b28f-4838-4fcc-8bd5-f1cd77731adf") + ) + (pin "3" + (uuid "4ac63237-6f51-4e3e-b97f-734c5fb95561") + ) + (pin "5" + (uuid "90e44584-4c7c-4be1-b160-5564ae434f42") + ) + (pin "6" + (uuid "30a5aaeb-3fda-4f79-b0e7-9bdc9964bbe0") + ) + (pin "7" + (uuid "b42ca17b-d313-4b7d-8039-e984528945b7") + ) + (pin "4" + (uuid "42231df6-7bbe-4ac0-9b47-f4b8998cc22f") + ) + (pin "8" + (uuid "99d26349-d419-4e70-b67f-fd72e055e254") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "U7") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Small") + (at 118.11 43.18 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005f57dc2c") + (property "Reference" "C26" + (at 118.11 36.83 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100n" + (at 120.65 35.56 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 118.11 43.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 118.11 43.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 118.11 43.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Kemet" + (at 118.11 43.18 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "C0603C104K5RECAUTO" + (at 118.11 43.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "bae95875-f778-4edf-8453-595f0d1aaec1") + ) + (pin "2" + (uuid "12a2d63b-5743-46a4-91b2-d0b5d483abbc") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "C26") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Small") + (at 118.11 63.5 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005f57dc38") + (property "Reference" "C27" + (at 116.84 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100n" + (at 120.65 58.42 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 118.11 63.5 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 118.11 63.5 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 118.11 63.5 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Kemet" + (at 118.11 63.5 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "C0603C104K5RECAUTO" + (at 118.11 63.5 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "a6192ce7-b24f-4c72-8174-9c7233b192db") + ) + (pin "2" + (uuid "40ae4189-3f59-43e3-a3b8-dc141591cee6") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "C27") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Amplifier_Operational:OPA1602") + (at 111.76 53.34 180) + (unit 3) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005f57dc63") + (property "Reference" "U7" + (at 116.5352 52.1716 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "OPA1602" + (at 116.5352 54.483 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" + (at 111.76 53.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/opa1604.pdf" + (at 111.76 53.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 111.76 53.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Texas Instruments" + (at 111.76 53.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "OPA1602AIDR" + (at 111.76 53.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "056ab004-948f-4031-a65f-bb4cd954d370") + ) + (pin "2" + (uuid "777d466d-adb6-4204-9189-22d3c153cc3b") + ) + (pin "3" + (uuid "7339431a-993e-4929-8456-f815183efaf4") + ) + (pin "5" + (uuid "0507f674-f209-48c7-abd4-e85af55db3b5") + ) + (pin "6" + (uuid "ac510d37-86a1-4ec7-871d-81c12fd3bffc") + ) + (pin "7" + (uuid "5088133f-6735-4f1f-bf1d-fd54d0573bbc") + ) + (pin "4" + (uuid "d15a3475-fd99-4b4b-8494-ed8c5e3f4652") + ) + (pin "8" + (uuid "5d9bbed4-bcb3-4ad4-b04e-24b788bf32f7") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "U7") + (unit 3) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Small") + (at 86.36 62.23 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005f63a1aa") + (property "Reference" "C25" + (at 88.6968 61.0616 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "16p / C0G" + (at 88.6968 63.373 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 86.36 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 86.36 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 86.36 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Murata Electronics" + (at 86.36 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "GCM1885C2A160JA16D" + (at 86.36 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "b778c92e-6ed3-442f-80a0-53fc26fd8894") + ) + (pin "2" + (uuid "fa358aac-0515-46de-acef-23f4908766c7") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "C25") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R_Small") + (at 62.23 60.96 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005faf2109") + (property "Reference" "R28" + (at 62.992 60.452 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "1M" + (at 62.992 61.976 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 62.23 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 62.23 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 62.23 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Panasonic" + (at 62.23 60.96 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "ERJ-3RED1004V" + (at 62.23 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "08d86ecc-babe-4b3e-a6b8-af16d90fda30") + ) + (pin "2" + (uuid "7e681705-903c-4f55-b950-8f91ec0cabd8") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "R28") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R_Small") + (at 39.37 102.87 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005fb11c66") + (property "Reference" "R30" + (at 40.132 102.362 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "1M" + (at 40.132 103.886 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 39.37 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 39.37 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 39.37 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Panasonic" + (at 39.37 102.87 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "ERJ-3RED1004V" + (at 39.37 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "b68bc2ba-740c-4532-ae14-235eafc7d826") + ) + (pin "2" + (uuid "b0f1dac9-5431-4d43-8681-bc6afd4d3113") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "R30") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R_Small") + (at 78.74 62.23 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "1b8505fd-6bd4-453d-9c3a-68f9976fea56") + (property "Reference" "R33" + (at 79.502 61.722 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "1k" + (at 79.502 63.246 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 78.74 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 78.74 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 78.74 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Susumu" + (at 78.74 62.23 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "RR0816P-102-D" + (at 78.74 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "526dfda9-d0c9-4dac-a979-c4cb18bb6aa9") + ) + (pin "2" + (uuid "1d0aa589-451c-485d-9032-c87d2c48412d") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "R33") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R_Small") + (at 114.3 26.67 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "34ea8110-746e-472c-a415-537e7776ba7d") + (property "Reference" "R20" + (at 114.808 27.432 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "1k" + (at 113.284 27.432 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 114.3 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 114.3 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 114.3 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Susumu" + (at 114.3 26.67 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "RR0816P-102-D" + (at 114.3 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "63fea6dd-01b5-44cf-aeac-7538bf7cfcc9") + ) + (pin "2" + (uuid "1a69e6a9-0a61-4819-a035-2d321973f5a7") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "R20") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R_Small") + (at 35.56 26.67 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "691945d5-7544-4393-8de4-ef9a08567d22") + (property "Reference" "R32" + (at 34.798 27.178 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "91k" + (at 34.798 25.654 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 35.56 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 35.56 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 35.56 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Config" "" + (at 35.56 26.67 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "MFN" "Susumu" + (at 35.56 26.67 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "RR0816P-913-D" + (at 35.56 26.67 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "79dda54a-e260-465b-8f4b-0884245d6c62") + ) + (pin "2" + (uuid "09c19428-8fd4-4824-ad80-3ae5e5ccc18b") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "R32") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R_Small") + (at 92.71 34.29 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "85928547-ef90-41f4-89e0-2c16d7077ebc") + (property "Reference" "R17" + (at 92.202 33.528 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "1k" + (at 93.726 33.528 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 92.71 34.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 92.71 34.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 92.71 34.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Susumu" + (at 92.71 34.29 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "RR0816P-102-D" + (at 92.71 34.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "6d87127f-d5ae-4052-93e7-56fd5fa5165e") + ) + (pin "2" + (uuid "fdae7f18-b383-45ca-9b89-65ab807259d5") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "R17") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Polarized") + (at 35.56 38.1 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "ba32c028-f96b-40c5-96bd-2c6f5cb0e71f") + (property "Reference" "C24" + (at 36.195 35.56 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10u" + (at 36.195 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3528-21_Kemet-B" + (at 36.5252 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 35.56 38.1 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 35.56 38.1 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "AVX" + (at 35.56 38.1 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "TCJB106M025R0150" + (at 35.56 38.1 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "a6b8d2ab-0002-4f0a-b6cc-a94a39bba4a0") + ) + (pin "2" + (uuid "43b493c1-8738-4cda-af9c-b751b94e7937") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "C24") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R_Small") + (at 30.48 36.83 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "c5e86fd8-41d3-4087-97b4-5d16719c9207") + (property "Reference" "R31" + (at 29.718 37.338 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10k" + (at 29.718 35.814 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 30.48 36.83 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 30.48 36.83 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 30.48 36.83 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Susumu" + (at 30.48 36.83 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "RR0816P-103-D" + (at 30.48 36.83 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "f2198fb3-2fe2-471a-b3c7-e9b610472fb3") + ) + (pin "2" + (uuid "e851dac6-86e0-4959-931a-64e607f5fff9") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "R31") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R_Small") + (at 74.93 55.88 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "e3056e1e-b81f-451c-85a7-a9781a32dd24") + (property "Reference" "R19" + (at 75.438 56.642 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "1k" + (at 73.914 56.642 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 74.93 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 74.93 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 74.93 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Susumu" + (at 74.93 55.88 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "RR0816P-102-D" + (at 74.93 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "99187190-6ac1-4d94-879d-70790d8f8346") + ) + (pin "2" + (uuid "77d240e7-fff7-42cf-bd6d-2520eed0c379") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b057307" + (reference "R19") + (unit 1) + ) + ) + ) + ) ) diff --git a/pcb/KiCad/RedPitaya_Lockbox.kicad_pcb b/pcb/KiCad/RedPitaya_Lockbox.kicad_pcb index b116239..cb613a6 100644 --- a/pcb/KiCad/RedPitaya_Lockbox.kicad_pcb +++ b/pcb/KiCad/RedPitaya_Lockbox.kicad_pcb @@ -1,27025 +1,46877 @@ -(kicad_pcb (version 20221018) (generator pcbnew) - - (general - (thickness 1.6) - ) - - (paper "A4") - (title_block - (title "RedPitaya Lockbox") - (date "2023-11-03") - (rev "1.6.2") - (company "Atoms-Photons-Quanta, Institut für Angewandte Physik, TU Darmstadt") - (comment 1 "Tilman Preuschoff") - ) - - (layers - (0 "F.Cu" signal) - (31 "B.Cu" signal) - (32 "B.Adhes" user "B.Adhesive") - (33 "F.Adhes" user "F.Adhesive") - (34 "B.Paste" user) - (35 "F.Paste" user) - (36 "B.SilkS" user "B.Silkscreen") - (37 "F.SilkS" user "F.Silkscreen") - (38 "B.Mask" user) - (39 "F.Mask" user) - (40 "Dwgs.User" user "User.Drawings") - (41 "Cmts.User" user "User.Comments") - (42 "Eco1.User" user "User.Eco1") - (43 "Eco2.User" user "User.Eco2") - (44 "Edge.Cuts" user) - (45 "Margin" user) - (46 "B.CrtYd" user "B.Courtyard") - (47 "F.CrtYd" user "F.Courtyard") - (48 "B.Fab" user) - (49 "F.Fab" user) - ) - - (setup - (stackup - (layer "F.SilkS" (type "Top Silk Screen") (color "White")) - (layer "F.Paste" (type "Top Solder Paste")) - (layer "F.Mask" (type "Top Solder Mask") (color "Blue") (thickness 0.01)) - (layer "F.Cu" (type "copper") (thickness 0.035)) - (layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02)) - (layer "B.Cu" (type "copper") (thickness 0.035)) - (layer "B.Mask" (type "Bottom Solder Mask") (color "Blue") (thickness 0.01)) - (layer "B.Paste" (type "Bottom Solder Paste")) - (layer "B.SilkS" (type "Bottom Silk Screen") (color "White")) - (copper_finish "HAL lead-free") - (dielectric_constraints no) - ) - (pad_to_mask_clearance 0) - (pcbplotparams - (layerselection 0x00310fc_ffffffff) - (plot_on_all_layers_selection 0x0000000_00000000) - (disableapertmacros false) - (usegerberextensions false) - (usegerberattributes false) - (usegerberadvancedattributes false) - (creategerberjobfile false) - (dashed_line_dash_ratio 12.000000) - (dashed_line_gap_ratio 3.000000) - (svgprecision 6) - (plotframeref false) - (viasonmask false) - (mode 1) - (useauxorigin false) - (hpglpennumber 1) - (hpglpenspeed 20) - (hpglpendiameter 15.000000) - (dxfpolygonmode true) - (dxfimperialunits true) - (dxfusepcbnewfont true) - (psnegative false) - (psa4output false) - (plotreference true) - (plotvalue true) - (plotinvisibletext false) - (sketchpadsonfab false) - (subtractmaskfromsilk false) - (outputformat 1) - (mirror false) - (drillshape 0) - (scaleselection 1) - (outputdirectory "../gerber/") - ) - ) - - (net 0 "") - (net 1 "/Supply_Ref/+15V") - (net 2 "GND") - (net 3 "/Supply_Ref/-15V") - (net 4 "/Input_Output_Module/+12V") - (net 5 "Net-(U6-EN{slash}UV)") - (net 6 "Net-(U6-TR{slash}SS)") - (net 7 "Net-(U6-INTVcc)") - (net 8 "Net-(U1-SET)") - (net 9 "Net-(U2-SET)") - (net 10 "Net-(U4A-+)") - (net 11 "Net-(U6-BST)") - (net 12 "Net-(U6-FB)") - (net 13 "Net-(U4D-+)") - (net 14 "Net-(U7B-+)") - (net 15 "Net-(U7A-+)") - (net 16 "unconnected-(J1-Pin_a3-Pada3)") - (net 17 "unconnected-(J1-Pin_a4-Pada4)") - (net 18 "Net-(U4-Pad7)") - (net 19 "/Input_Output_Module/-12V") - (net 20 "unconnected-(J1-Pin_a5-Pada5)") - (net 21 "/Supply_Ref/+5V") - (net 22 "unconnected-(J1-Pin_a6-Pada6)") - (net 23 "unconnected-(J1-Pin_a7-Pada7)") - (net 24 "Net-(R4-Pad1)") - (net 25 "unconnected-(J1-Pin_a8-Pada8)") - (net 26 "unconnected-(J1-Pin_a9-Pada9)") - (net 27 "unconnected-(J1-Pin_a10-Pada10)") - (net 28 "unconnected-(J1-Pin_a11-Pada11)") - (net 29 "unconnected-(J1-Pin_a12-Pada12)") - (net 30 "unconnected-(J1-Pin_a13-Pada13)") - (net 31 "unconnected-(J1-Pin_a14-Pada14)") - (net 32 "unconnected-(J1-Pin_a19-Pada19)") - (net 33 "unconnected-(J1-Pin_a20-Pada20)") - (net 34 "unconnected-(J1-Pin_a21-Pada21)") - (net 35 "unconnected-(J1-Pin_a22-Pada22)") - (net 36 "unconnected-(J1-Pin_a23-Pada23)") - (net 37 "unconnected-(J1-Pin_a24-Pada24)") - (net 38 "unconnected-(J1-Pin_a25-Pada25)") - (net 39 "unconnected-(J1-Pin_a26-Pada26)") - (net 40 "unconnected-(J1-Pin_a27-Pada27)") - (net 41 "unconnected-(J1-Pin_a28-Pada28)") - (net 42 "unconnected-(J1-Pin_a29-Pada29)") - (net 43 "unconnected-(U5-Pad2)") - (net 44 "unconnected-(U5-Pad5)") - (net 45 "unconnected-(J1-Pin_c3-Padc3)") - (net 46 "unconnected-(J1-Pin_c4-Padc4)") - (net 47 "unconnected-(J1-Pin_c5-Padc5)") - (net 48 "unconnected-(J1-Pin_c6-Padc6)") - (net 49 "unconnected-(J1-Pin_c7-Padc7)") - (net 50 "unconnected-(J1-Pin_c8-Padc8)") - (net 51 "Net-(C2-Pad1)") - (net 52 "unconnected-(J1-Pin_c9-Padc9)") - (net 53 "unconnected-(J1-Pin_c10-Padc10)") - (net 54 "unconnected-(J1-Pin_c11-Padc11)") - (net 55 "unconnected-(J1-Pin_c12-Padc12)") - (net 56 "unconnected-(J1-Pin_c13-Padc13)") - (net 57 "Net-(C11-Pad2)") - (net 58 "unconnected-(J1-Pin_c14-Padc14)") - (net 59 "unconnected-(J1-Pin_c19-Padc19)") - (net 60 "unconnected-(J1-Pin_c20-Padc20)") - (net 61 "unconnected-(J1-Pin_c21-Padc21)") - (net 62 "unconnected-(J1-Pin_c22-Padc22)") - (net 63 "unconnected-(J1-Pin_c23-Padc23)") - (net 64 "unconnected-(J1-Pin_c24-Padc24)") - (net 65 "unconnected-(J1-Pin_c25-Padc25)") - (net 66 "unconnected-(J1-Pin_c26-Padc26)") - (net 67 "Net-(R20-Pad1)") - (net 68 "unconnected-(J1-Pin_c27-Padc27)") - (net 69 "unconnected-(J1-Pin_c28-Padc28)") - (net 70 "unconnected-(J1-Pin_c29-Padc29)") - (net 71 "unconnected-(U5-Pad8)") - (net 72 "Net-(J3-In)") - (net 73 "Net-(J5-In)") - (net 74 "Net-(J7-In)") - (net 75 "Net-(J11-In)") - (net 76 "Net-(J12-In)") - (net 77 "Net-(J13-In)") - (net 78 "Net-(J14-In)") - (net 79 "Net-(J16-In)") - (net 80 "Net-(U4A--)") - (net 81 "Net-(U6-RT)") - (net 82 "Net-(U8B--)") - (net 83 "Net-(U4B-+)") - (net 84 "Net-(U8A-+)") - (net 85 "Net-(U4B--)") - (net 86 "Net-(U4D--)") - (net 87 "Net-(U4C-+)") - (net 88 "Net-(U7B--)") - (net 89 "Net-(U7A--)") - (net 90 "Net-(U4C--)") - (net 91 "Net-(U8B-+)") - (net 92 "Net-(U8A--)") - (net 93 "unconnected-(RP1--3.3V-Pad2)") - (net 94 "unconnected-(RP1-PS_MIO10-Pad3)") - (net 95 "unconnected-(RP1-PS_MIO11-Pad4)") - (net 96 "unconnected-(RP1-PS_MIO12-Pad5)") - (net 97 "/Input_Output_Module/SET") - (net 98 "unconnected-(RP1-PS_MIO13-Pad6)") - (net 99 "unconnected-(RP1-PS_MIO08-Pad7)") - (net 100 "unconnected-(RP1-PS_MIO09-Pad8)") - (net 101 "unconnected-(RP1-I2C0_SCL-Pad9)") - (net 102 "unconnected-(RP1-I2C0_SDA-Pad10)") - (net 103 "unconnected-(RP1-Ext_CM-Pad11)") - (net 104 "unconnected-(RP1-AI_0-Pad13)") - (net 105 "unconnected-(RP1-AI_1-Pad14)") - (net 106 "unconnected-(RP1-AI_2-Pad15)") - (net 107 "unconnected-(RP1-AI_3-Pad16)") - (net 108 "unconnected-(RP1-AO_0-Pad17)") - (net 109 "unconnected-(RP1-AO_1-Pad18)") - (net 110 "unconnected-(RP1-AO_2-Pad19)") - (net 111 "unconnected-(RP1-AO_3-Pad20)") - (net 112 "unconnected-(RP1-CLK+-Pad23)") - (net 113 "unconnected-(RP1-CLK--Pad24)") - (net 114 "unconnected-(U1-PG-Pad5)") - (net 115 "unconnected-(U2-PG-Pad4)") - (net 116 "unconnected-(U2-VIOC-Pad7)") - (net 117 "unconnected-(U3-NC-Pad1)") - (net 118 "/Input_Output_Module/+10V_ref") - (net 119 "unconnected-(U3-NC-Pad3)") - (net 120 "unconnected-(U3-Trim-Pad5)") - (net 121 "unconnected-(U3-NC-Pad7)") - (net 122 "unconnected-(U3-NC-Pad8)") - (net 123 "unconnected-(U6-SYNC-Pad1)") - (net 124 "unconnected-(U6-PG-Pad15)") - (net 125 "Net-(J1-Pin_a1)") - (net 126 "Net-(J1-Pin_a2)") - (net 127 "Net-(J1-Pin_a15)") - (net 128 "Net-(J1-Pin_a16)") - (net 129 "Net-(J1-Pin_a17)") - (net 130 "Net-(J1-Pin_a18)") - (net 131 "Net-(J1-Pin_a31)") - (net 132 "Net-(J1-Pin_a32)") - (net 133 "Net-(J1-Pin_c2)") - (net 134 "Net-(J1-Pin_c15)") - (net 135 "Net-(J1-Pin_c16)") - (net 136 "Net-(J1-Pin_c17)") - (net 137 "Net-(J1-Pin_c18)") - - (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70b37c) - (at 124.35 53.65 90) - (descr "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") - (tags "resistor") - (property "MFN" "Panasonic") - (property "PN" "ERJ-3RED1004V") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Resistor, small symbol") - (property "ki_keywords" "R resistor") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b0591c0") - (attr smd) - (fp_text reference "R25" (at 2 -0.2 180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 511fdc30-c37c-4480-af22-0634e205b6f9) - ) - (fp_text value "1M" (at 0 1.5 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 9c820b6f-b91d-48be-a2a2-4a91fc16c2b1) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.075))) - (tstamp 5d804913-3cbb-4105-8b9c-c046bc22f4c6) - ) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 29d52919-c049-4951-b97c-7634d23ea486)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a8e854dd-3b9f-4fec-afc2-184a1067d384)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ab098e4d-6e99-4d34-941d-442c7c6ade28)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b92d5f5a-df83-482c-b69c-e5efc7773ef6)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1eb46f83-aafc-4d28-9aa2-003674a0136f)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 46602044-a315-4b1d-ab3b-db111bfba614)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d552510f-caee-41dc-9823-a3969c4cba56)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fdd086b0-5d56-4481-af39-fc608345029f)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0cb437b6-a28e-4385-9057-59031be8c896)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2138dfa3-c96d-49d4-b021-ec71abcb4946)) - (pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 91 "Net-(U8B-+)") (pintype "passive") (tstamp 7b1a8ad6-2b5c-4c91-9a7e-4658e61fcb4d)) - (pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp df595a11-006c-4686-8d50-c311576c5299)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70b3be) - (at 176 51.4 -90) - (descr "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") - (tags "capacitor") - (property "MFN" "Murata Electronics") - (property "PN" "GCM1885C2A160JA16D") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Unpolarized capacitor, small symbol") - (property "ki_keywords" "capacitor cap") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005f63a1aa") - (attr smd) - (fp_text reference "C25" (at 3 0 90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 3d0612b3-f0ac-4086-be53-f3356c2acb2c) - ) - (fp_text value "16p / C0G" (at 0 1.5 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp c20490a7-17e7-4e2e-b61b-f516813c0772) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") - (effects (font (size 0.3 0.3) (thickness 0.075))) - (tstamp 4bc65f33-0a11-4d16-adda-8f6dada3b75f) - ) - (fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e48558fb-befa-4cf8-9e49-93007010a168)) - (fp_line (start -0.14058 0.51) (end 0.14058 0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8c11665c-72f0-4ece-8544-a3af4b29fb40)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9b36967d-ed5a-442a-b1e7-6482b17103f0)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b1423ed3-021b-4212-a63d-467e8f22a1ab)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e39f308e-32be-40fc-b46a-9af0f586f4ee)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0c139a97-525c-4a73-a5fe-8eadcfc82c61)) - (fp_line (start -0.8 -0.4) (end 0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 68bd33f6-3f18-466f-bb33-55310595a5fa)) - (fp_line (start -0.8 0.4) (end -0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4324e5e3-6ef8-494f-9f70-a40ed4ebe7de)) - (fp_line (start 0.8 -0.4) (end 0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0f1fcd99-1517-46ed-9f72-0994a1737554)) - (fp_line (start 0.8 0.4) (end -0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2dea430b-57e2-42d8-af66-c82972da302b)) - (pad "1" smd roundrect (at -0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 15 "Net-(U7A-+)") (pintype "passive") (tstamp 3a0a4278-24c5-47e8-b97a-b67a383301c3)) - (pad "2" smd roundrect (at 0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp 34c8e130-ef82-4f9e-a51b-e7c3091cad44)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70b3ee) - (at 90.2 103.8 -90) - (descr "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") - (tags "capacitor") - (property "MFN" "Wurth Electronics") - (property "PN" "885012107013") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "Unpolarized capacitor, small symbol") - (property "ki_keywords" "capacitor cap") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005c1bd316") - (attr smd) - (fp_text reference "C5" (at 1.6 -2.3) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp d1f76a9a-98ab-49a7-b782-78d6c3e8bed1) - ) - (fp_text value "4.7u" (at 0 1.75 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 1647ca48-bbfd-492b-bbf6-f6e7d861061c) - ) - (fp_text user "${REFERENCE}" (at 0 -1.5 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 850fac63-71e8-45ed-ac01-1410ab7005d9) - ) - (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7d6b1836-75a7-4f49-b324-167612a7b603)) - (fp_line (start -0.261252 0.735) (end 0.261252 0.735) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0e40f419-82f9-4f53-aea1-749ac500ecd7)) - (fp_line (start -1.7 -0.98) (end 1.7 -0.98) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0b206f5c-131d-4511-a377-3524b406bcf6)) - (fp_line (start -1.7 0.98) (end -1.7 -0.98) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a7cb3a86-2b29-4874-a18c-9a6a756c9c0b)) - (fp_line (start 1.7 -0.98) (end 1.7 0.98) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fbbb0873-7704-4756-8354-e6fea1ed0cec)) - (fp_line (start 1.7 0.98) (end -1.7 0.98) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6e7cdf99-2c8a-4959-8bc6-2ebd040815bb)) - (fp_line (start -1 -0.625) (end 1 -0.625) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 28313475-e6ab-476f-afaf-3b39540a9de3)) - (fp_line (start -1 0.625) (end -1 -0.625) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 439427fc-d6d9-4176-af5e-69d7e398284e)) - (fp_line (start 1 -0.625) (end 1 0.625) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a5bebb42-d387-4ab5-b40a-639ddb0e3a9a)) - (fp_line (start 1 0.625) (end -1 0.625) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3aa684c8-07ac-467b-b903-254ec9a14707)) - (pad "1" smd roundrect (at -0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 5 "Net-(U6-EN{slash}UV)") (pintype "passive") (tstamp 8a705d78-7176-468d-987c-37a73e937a89)) - (pad "2" smd roundrect (at 0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp d43a4877-a76f-48f1-a453-990d0a050b76)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70b41e) - (at 99 99.6 90) - (descr "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") - (tags "resistor") - (property "MFN" "Susumu") - (property "PN" "RR0816P-2433-D-38D") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "Resistor, small symbol") - (property "ki_keywords" "R resistor") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005b0af3b3") - (attr smd) - (fp_text reference "R13" (at 2.35 0 180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp d1af5b6a-d8cf-456e-9575-ff1316745e35) - ) - (fp_text value "243k" (at 0 1.43 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp f1b16d46-f157-4ce3-9110-d072ca0884df) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06))) - (tstamp 9f5c2817-c316-4232-8371-cb586ba08f87) - ) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f1740929-de82-4dac-a1a0-b4ae99a9869f)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 567ec267-4b34-47d2-b3a8-2fb1a92a02f9)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b1b6bb77-dbc8-4671-b563-e7aa2d7eb88c)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a7d46c21-b775-4734-a2a4-b0a6122dc772)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c6e8c6b6-4770-42bb-bb70-62918ae82879)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 90defb07-c91a-45e9-9301-1e9b66cb1c4e)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 558c333f-4fa8-48de-be40-cd81a5364cab)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5fad15b9-638a-4be4-91ea-3e45f986c9c7)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 12fe43b4-81e6-4be6-a2cd-0dca98bfa403)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp de1266d4-7a91-40da-8d15-f5766001f371)) - (pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 12 "Net-(U6-FB)") (pintype "passive") (tstamp 20aaed3d-1ee7-4b8b-9b7a-3b95238df398)) - (pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp 47a73215-079e-4ee4-9150-339ca1b9bd01)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70b4f0) - (at 174.1 46.9 180) - (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 "MFN" "Texas Instruments") - (property "PN" "OPA1602AIDR") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Dual SoundPlus High Performance, Bipolar-Input Audio Operational Amplifiers, SOIC-8/MSOP-8") - (property "ki_keywords" "dual opamp") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005f57dc63") - (attr smd) - (fp_text reference "U7" (at 3 3.5) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp a96ddde7-610a-44b3-a06b-e794aae86e8b) - ) - (fp_text value "OPA1602" (at 0 3.5) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp f3ea46c3-1115-4a25-8f9d-4b6a4a8268aa) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp c0b02455-d1e1-4a78-8c4b-f67b2fbd5897) - ) - (fp_line (start 0 -2.56) (end -3.45 -2.56) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1092a51c-7047-4ccc-8616-fca8e4e7d5c0)) - (fp_line (start 0 -2.56) (end 1.95 -2.56) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 66888b1a-272f-4f8f-ba1d-e38ba85da013)) - (fp_line (start 0 2.56) (end -1.95 2.56) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0440ba8f-f819-469d-bc1b-56a2b8fb0b4b)) - (fp_line (start 0 2.56) (end 1.95 2.56) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d6cfbf30-1782-4c3d-9660-c7db57896d29)) - (fp_line (start -3.7 -2.7) (end -3.7 2.7) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 60ba9194-9064-4bc9-8a47-f4671d25783f)) - (fp_line (start -3.7 2.7) (end 3.7 2.7) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 28e9f96f-8c53-41e9-8d6a-e9e4c5ea5ac0)) - (fp_line (start 3.7 -2.7) (end -3.7 -2.7) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 432a09a1-abf2-4875-8cf8-6fdbde53fbde)) - (fp_line (start 3.7 2.7) (end 3.7 -2.7) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 84bebde2-d38c-45b2-b318-d03313fed9ad)) - (fp_line (start -1.95 -1.475) (end -0.975 -2.45) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4f21f29c-f46d-45c2-b013-4419b4c1932a)) - (fp_line (start -1.95 2.45) (end -1.95 -1.475) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 00625010-9fd0-45ea-a730-548c539c9152)) - (fp_line (start -0.975 -2.45) (end 1.95 -2.45) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d177f448-7f8c-49a0-9460-c2b31389c88a)) - (fp_line (start 1.95 -2.45) (end 1.95 2.45) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ea730fd0-c935-42e7-9769-79596ca1263f)) - (fp_line (start 1.95 2.45) (end -1.95 2.45) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fa8d0bcc-aa09-4d51-a03f-1731d7636f7c)) - (pad "1" smd roundrect (at -2.475 -1.905 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 67 "Net-(R20-Pad1)") (pintype "output") (tstamp 4df978c6-7bd8-4149-a8ef-bb726c48c33c)) - (pad "2" smd roundrect (at -2.475 -0.635 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 89 "Net-(U7A--)") (pinfunction "-") (pintype "input") (tstamp bd5c3627-bcc8-4f3b-9b9d-8cb5a4753d39)) - (pad "3" smd roundrect (at -2.475 0.635 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 15 "Net-(U7A-+)") (pinfunction "+") (pintype "input") (tstamp 533ddf10-0570-4868-8ef3-03ad54b57350)) - (pad "4" smd roundrect (at -2.475 1.905 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 19 "/Input_Output_Module/-12V") (pinfunction "V-") (pintype "power_in") (tstamp 6a5b0eae-9eb7-4781-a5cf-0d659980de14)) - (pad "5" smd roundrect (at 2.475 1.905 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 14 "Net-(U7B-+)") (pinfunction "+") (pintype "input") (tstamp 1795037f-96f9-4590-9c1d-9d5701745382)) - (pad "6" smd roundrect (at 2.475 0.635 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 88 "Net-(U7B--)") (pinfunction "-") (pintype "input") (tstamp ed4ec77f-5f95-4bcc-9063-5cfc66b26bd8)) - (pad "7" smd roundrect (at 2.475 -0.635 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 88 "Net-(U7B--)") (pintype "output") (tstamp 1f1e33e7-e756-4878-8da2-3fade03a9dbe)) - (pad "8" smd roundrect (at 2.475 -1.905 180) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 4 "/Input_Output_Module/+12V") (pinfunction "V+") (pintype "power_in") (tstamp d9ed5d86-ab8d-4ed3-98fe-a5a86c31ab50)) - (model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-8_3.9x4.9mm_P1.27mm.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "TestPoint:TestPoint_THTPad_D1.5mm_Drill0.7mm" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70b529) - (at 78.5 55.8) - (descr "THT pad as test Point, diameter 1.5mm, hole diameter 0.7mm") - (tags "test point THT pad") - (property "Config" "DNF") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "test point") - (property "ki_keywords" "test point tp") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005ccf668f") - (attr exclude_from_pos_files) - (fp_text reference "TP5" (at 0 -2) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp b0f28b0b-e924-4c9e-89d3-3b5e27911b0a) - ) - (fp_text value "+10V" (at -3.5 -0.02) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp d56c2fe0-62ed-445f-bf49-1f1a8d869e64) - ) - (fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 9cae0292-5ea1-4de3-9adc-5416cf3bdf86) - ) - (fp_circle (center 0 0) (end 0 0.95) - (stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 42b1bb7a-b5cd-4a4b-bdb4-eebacd4d3e0b)) - (fp_circle (center 0 0) (end 1.25 0) - (stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 625c546c-3cba-492e-b10e-576f1dda7dc4)) - (pad "1" thru_hole circle (at 0 0) (size 1.5 1.5) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 118 "/Input_Output_Module/+10V_ref") (pinfunction "1") (pintype "passive") (tstamp e5d51051-ec69-49ed-bfe1-351b6294e714)) - ) - - (footprint "TestPoint:TestPoint_THTPad_D1.5mm_Drill0.7mm" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70b5c5) - (at 167.6 130.2) - (descr "THT pad as test Point, diameter 1.5mm, hole diameter 0.7mm") - (tags "test point THT pad") - (property "Config" "DNF") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "test point") - (property "ki_keywords" "test point tp") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005c2285af") - (attr exclude_from_pos_files) - (fp_text reference "TP4" (at 0 -2) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 4a537149-cbbf-498b-8d6f-194fc41cda8f) - ) - (fp_text value "+5V" (at 0 2) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp dc3811f4-5ca0-45ba-ba7e-16f0bcc4e3ed) - ) - (fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp df5e1aac-e0e8-4a88-8e9d-e5db93613e76) - ) - (fp_circle (center 0 0) (end 0 0.95) - (stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp dd2e1f2f-3e24-4495-b559-1705cf05f068)) - (fp_circle (center 0 0) (end 1.25 0) - (stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp cec61b50-cfce-48a5-82d5-3f45a7843a48)) - (pad "1" thru_hole circle (at 0 0) (size 1.5 1.5) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 21 "/Supply_Ref/+5V") (pinfunction "1") (pintype "passive") (tstamp c3e8fb45-da97-4ca1-8ea5-c6ffea94a963)) - ) - - (footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70b898) - (at 99.85 104.3 -90) - (descr "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") - (tags "capacitor") - (property "MFN" "Kemet") - (property "PN" "C0603C104K5RECAUTO") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "Unpolarized capacitor, small symbol") - (property "ki_keywords" "capacitor cap") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005c2275b7") - (attr smd) - (fp_text reference "C11" (at 1.6 2.5) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp c7d5b49e-9c61-4618-8397-077146529c94) - ) - (fp_text value "100n" (at 0 1.5 -90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp a102b7dd-a568-491a-ab65-b2c584e47723) - ) - (fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab") - (effects (font (size 0.3 0.3) (thickness 0.075))) - (tstamp 062bcaf4-d3ac-43e3-8039-a0e810cf848a) - ) - (fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 927bdaa8-2293-41e1-8626-31a4430395c9)) - (fp_line (start -0.14058 0.51) (end 0.14058 0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ebcd53ce-d1aa-4acd-9b15-f95d97251ff5)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fd935d90-826e-4c40-81b9-d16d5fff2de2)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3c7e3ea9-7539-4d78-9ab3-1edc41401f18)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 72213e12-a661-41f7-bdf9-d588a0035e74)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f1ed4c57-dfde-41c8-acbb-0f35e9db46f0)) - (fp_line (start -0.8 -0.4) (end 0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3cb934dd-a9ee-4bd8-b95a-68d6d59124cc)) - (fp_line (start -0.8 0.4) (end -0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2642197a-f997-4fe0-be02-83174af69645)) - (fp_line (start 0.8 -0.4) (end 0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 18e189a7-14c3-45e3-8b92-d64460e0db6d)) - (fp_line (start 0.8 0.4) (end -0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 978cad23-73f5-4718-be98-1ebb680913a0)) - (pad "1" smd roundrect (at -0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 11 "Net-(U6-BST)") (pintype "passive") (tstamp eb79375a-bd16-4b0a-82ae-b1cdde2cf1d6)) - (pad "2" smd roundrect (at 0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 57 "Net-(C11-Pad2)") (pintype "passive") (tstamp 506ed0d3-17ed-446a-a3c0-b2d3bff3c83d)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Symbol:RoHS-Logo_6mm_SilkScreen" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70b8bf) - (at 183.6 129.9) - (descr "Restriction of Hazardous Substances Directive Logo") - (tags "Logo RoHS") - (property "Config" "DNF") - (property "MFN" "") - (property "PN" "") - (property "Sheetfile" "RedPitaya_Lockbox.kicad_sch") - (property "Sheetname" "") - (property "Sim.Enable" "0") - (property "ki_description" "RoHS logo, small") - (property "ki_keywords" "Logo") - (path "/00000000-0000-0000-0000-00005f70d043") - (attr exclude_from_pos_files) - (fp_text reference "LOGO3" (at 0 0) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 65ac9464-d210-43f9-b1d8-ad782615813a) - ) - (fp_text value "Logo_RoHS" (at 0.75 0) (layer "F.Fab") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp a2a3ff83-6577-4364-a839-904492f903f9) - ) - (fp_poly - (pts - (xy 1.42875 -0.612321) - (xy 3.673928 -0.612321) - (xy 3.673928 -2.880179) - (xy 4.853214 -2.880179) - (xy 4.853214 2.880179) - (xy 3.673928 2.880179) - (xy 3.673928 0.36243) - (xy 2.557008 0.368313) - (xy 1.440089 0.374196) - (xy 1.434227 1.627187) - (xy 1.428365 2.880179) - (xy 0.249464 2.880179) - (xy 0.249464 -2.880179) - (xy 1.42875 -2.880179) - (xy 1.42875 -0.612321) - ) - - (stroke (width 0.01) (type solid)) (fill solid) (layer "F.SilkS") (tstamp e320532c-7054-4184-a120-c6c4e294458b)) - (fp_poly - (pts - (xy -2.766786 -1.369861) - (xy -2.615368 -1.368819) - (xy -2.498683 -1.365855) - (xy -2.406119 -1.35994) - (xy -2.327062 -1.350049) - (xy -2.250896 -1.335153) - (xy -2.167008 -1.314228) - (xy -2.153023 -1.310484) - (xy -1.862869 -1.20975) - (xy -1.595309 -1.071021) - (xy -1.353326 -0.896787) - (xy -1.139905 -0.689533) - (xy -0.958029 -0.451747) - (xy -0.815064 -0.195322) - (xy -0.731969 0.008601) - (xy -0.673332 0.217963) - (xy -0.636252 0.445596) - (xy -0.619143 0.671394) - (xy -0.622054 1.005223) - (xy -0.661734 1.313691) - (xy -0.739026 1.599125) - (xy -0.854774 1.863849) - (xy -1.009819 2.110189) - (xy -1.205004 2.340472) - (xy -1.234956 2.370937) - (xy -1.456295 2.5665) - (xy -1.690889 2.721647) - (xy -1.946531 2.840986) - (xy -2.135724 2.903854) - (xy -2.253995 2.929662) - (xy -2.403738 2.950474) - (xy -2.571249 2.965339) - (xy -2.742822 2.97331) - (xy -2.904753 2.973438) - (xy -3.032462 2.965912) - (xy -3.269147 2.926899) - (xy -3.513177 2.858784) - (xy -3.752483 2.766426) - (xy -3.974996 2.654685) - (xy -4.168647 2.528419) - (xy -4.220137 2.487747) - (xy -4.413802 2.297838) - (xy -4.578561 2.075038) - (xy -4.712694 1.822762) - (xy -4.814481 1.544424) - (xy -4.882203 1.24344) - (xy -4.89611 1.145268) - (xy -4.918669 0.801926) - (xy -4.918221 0.79375) - (xy -3.769799 0.79375) - (xy -3.756071 1.063973) - (xy -3.712314 1.30124) - (xy -3.637779 1.507234) - (xy -3.531718 1.683638) - (xy -3.393384 1.832135) - (xy -3.265689 1.927695) - (xy -3.159493 1.989022) - (xy -3.059603 2.028883) - (xy -2.951801 2.050725) - (xy -2.821871 2.057998) - (xy -2.732768 2.056954) - (xy -2.616089 2.05172) - (xy -2.529679 2.041662) - (xy -2.458495 2.023986) - (xy -2.387495 1.995903) - (xy -2.376305 1.990793) - (xy -2.242011 1.910974) - (xy -2.110281 1.801219) - (xy -1.996385 1.675136) - (xy -1.953045 1.613617) - (xy -1.876705 1.461827) - (xy -1.817553 1.278326) - (xy -1.777588 1.074143) - (xy -1.758812 0.860304) - (xy -1.763223 0.647838) - (xy -1.768312 0.595092) - (xy -1.80533 0.365291) - (xy -1.861592 0.171242) - (xy -1.939812 0.006456) - (xy -2.042709 -0.135554) - (xy -2.099103 -0.195045) - (xy -2.259903 -0.322754) - (xy -2.436653 -0.41135) - (xy -2.623394 -0.460836) - (xy -2.814166 -0.471212) - (xy -3.003009 -0.44248) - (xy -3.183965 -0.374642) - (xy -3.351073 -0.2677) - (xy -3.432435 -0.194718) - (xy -3.556616 -0.047009) - (xy -3.650672 0.118858) - (xy -3.716363 0.308039) - (xy -3.75545 0.525694) - (xy -3.769694 0.77698) - (xy -3.769799 0.79375) - (xy -4.918221 0.79375) - (xy -4.900706 0.474671) - (xy -4.842751 0.165131) - (xy -4.745329 -0.125067) - (xy -4.608969 -0.394296) - (xy -4.434197 -0.640927) - (xy -4.255358 -0.832033) - (xy -4.038311 -1.00736) - (xy -3.790274 -1.15411) - (xy -3.518293 -1.268405) - (xy -3.388479 -1.30863) - (xy -3.301869 -1.331632) - (xy -3.227258 -1.348137) - (xy -3.154117 -1.359185) - (xy -3.071918 -1.365811) - (xy -2.970132 -1.369053) - (xy -2.838229 -1.369947) - (xy -2.766786 -1.369861) - ) - - (stroke (width 0.01) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 75017a33-2704-4d1f-80be-383ec4f0527f)) - (fp_poly - (pts - (xy -8.861652 -2.872954) - (xy -8.505405 -2.870235) - (xy -8.187134 -2.86702) - (xy -7.907855 -2.86333) - (xy -7.668584 -2.859186) - (xy -7.470337 -2.854609) - (xy -7.314129 -2.84962) - (xy -7.200976 -2.84424) - (xy -7.131893 -2.838489) - (xy -7.121072 -2.836901) - (xy -6.91057 -2.795776) - (xy -6.736407 -2.750064) - (xy -6.589567 -2.695637) - (xy -6.461035 -2.628368) - (xy -6.341796 -2.544132) - (xy -6.222832 -2.4388) - (xy -6.197601 -2.414167) - (xy -6.102109 -2.315495) - (xy -6.031593 -2.230617) - (xy -5.97545 -2.145193) - (xy -5.923081 -2.044883) - (xy -5.920266 -2.038998) - (xy -5.85113 -1.883256) - (xy -5.802871 -1.744381) - (xy -5.772223 -1.607352) - (xy -5.755921 -1.457144) - (xy -5.7507 -1.278735) - (xy -5.750662 -1.258661) - (xy -5.76256 -1.004707) - (xy -5.800139 -0.782572) - (xy -5.866225 -0.584896) - (xy -5.963644 -0.404321) - (xy -6.095221 -0.233487) - (xy -6.177789 -0.146348) - (xy -6.288577 -0.043442) - (xy -6.399505 0.042462) - (xy -6.518579 0.115341) - (xy -6.653806 0.17917) - (xy -6.81319 0.237928) - (xy -7.004739 0.29559) - (xy -7.140572 0.331866) - (xy -7.216769 0.351518) - (xy -7.049858 0.464581) - (xy -6.880055 0.595003) - (xy -6.705 0.757436) - (xy -6.535086 0.941314) - (xy -6.380705 1.136076) - (xy -6.357854 1.167946) - (xy -6.318862 1.225149) - (xy -6.262238 1.310945) - (xy -6.190977 1.420589) - (xy -6.108073 1.549336) - (xy -6.016522 1.692441) - (xy -5.919316 1.845156) - (xy -5.819452 2.002738) - (xy -5.719923 2.16044) - (xy -5.623725 2.313517) - (xy -5.533851 2.457224) - (xy -5.453297 2.586814) - (xy -5.385057 2.697542) - (xy -5.332125 2.784663) - (xy -5.297497 2.843431) - (xy -5.284166 2.869101) - (xy -5.284108 2.869531) - (xy -5.305875 2.872164) - (xy -5.36753 2.87456) - (xy -5.463605 2.876635) - (xy -5.588631 2.878308) - (xy -5.73714 2.879494) - (xy -5.903662 2.88011) - (xy -5.983188 2.880179) - (xy -6.682268 2.880179) - (xy -7.261583 2.012723) - (xy -7.386485 1.826423) - (xy -7.509316 1.644574) - (xy -7.626628 1.472186) - (xy -7.734972 1.314272) - (xy -7.830901 1.17584) - (xy -7.910965 1.061902) - (xy -7.971718 0.977469) - (xy -7.999559 0.940342) - (xy -8.119728 0.797055) - (xy -8.236606 0.686516) - (xy -8.35857 0.604885) - (xy -8.493996 0.548317) - (xy -8.651261 0.512969) - (xy -8.838742 0.495) - (xy -8.979396 0.490833) - (xy -9.264197 0.487589) - (xy -9.275937 2.880179) - (xy -10.454822 2.880179) - (xy -10.454822 -1.882321) - (xy -9.275536 -1.882321) - (xy -9.275536 -0.453571) - (xy -8.566831 -0.453758) - (xy -8.380818 -0.454547) - (xy -8.199682 -0.456691) - (xy -8.031074 -0.459994) - (xy -7.882647 -0.464264) - (xy -7.762052 -0.469309) - (xy -7.676939 -0.474934) - (xy -7.659973 -0.476648) - (xy -7.48138 -0.504984) - (xy -7.339586 -0.546299) - (xy -7.22714 -0.603623) - (xy -7.136588 -0.679983) - (xy -7.123031 -0.694853) - (xy -7.030162 -0.832364) - (xy -6.974813 -0.992368) - (xy -6.95608 -1.177548) - (xy -6.956109 -1.190625) - (xy -6.97545 -1.375932) - (xy -7.030341 -1.53308) - (xy -7.120889 -1.662215) - (xy -7.247199 -1.763482) - (xy -7.409381 -1.837026) - (xy -7.439209 -1.846392) - (xy -7.47781 -1.855941) - (xy -7.526016 -1.863695) - (xy -7.588547 -1.869828) - (xy -7.670123 -1.874513) - (xy -7.775465 -1.877923) - (xy -7.909292 -1.880232) - (xy -8.076324 -1.881612) - (xy -8.281282 -1.882237) - (xy -8.417867 -1.882321) - (xy -9.275536 -1.882321) - (xy -10.454822 -1.882321) - (xy -10.454822 -2.883424) - (xy -8.861652 -2.872954) - ) - - (stroke (width 0.01) (type solid)) (fill solid) (layer "F.SilkS") (tstamp f494dfe8-82b1-4753-9682-1f9f7be9bef9)) - (fp_poly - (pts - (xy 8.486632 -2.955013) - (xy 8.715956 -2.927503) - (xy 8.925995 -2.883063) - (xy 9.124833 -2.820289) - (xy 9.320557 -2.737774) - (xy 9.363706 -2.716977) - (xy 9.597308 -2.578687) - (xy 9.797374 -2.410047) - (xy 9.964331 -2.210564) - (xy 10.098605 -1.979746) - (xy 10.185327 -1.764637) - (xy 10.221998 -1.636645) - (xy 10.250695 -1.501404) - (xy 10.265667 -1.38933) - (xy 10.279241 -1.213304) - (xy 10.21395 -1.212074) - (xy 10.172922 -1.210933) - (xy 10.093991 -1.208414) - (xy 9.984579 -1.204768) - (xy 9.852112 -1.200242) - (xy 9.704014 -1.195086) - (xy 9.627053 -1.192372) - (xy 9.105446 -1.173899) - (xy 9.064182 -1.334266) - (xy 8.994587 -1.527005) - (xy 8.893741 -1.688021) - (xy 8.76287 -1.815954) - (xy 8.603204 -1.909441) - (xy 8.515803 -1.941959) - (xy 8.410822 -1.965005) - (xy 8.274864 -1.980945) - (xy 8.121807 -1.989404) - (xy 7.965529 -1.990006) - (xy 7.819909 -1.982374) - (xy 7.698824 -1.966134) - (xy 7.690025 -1.964327) - (xy 7.513834 -1.913657) - (xy 7.360331 -1.843139) - (xy 7.236255 -1.75682) - (xy 7.148346 -1.658748) - (xy 7.130386 -1.628314) - (xy 7.107454 -1.551975) - (xy 7.099531 -1.452542) - (xy 7.10669 -1.349744) - (xy 7.129004 -1.263315) - (xy 7.129032 -1.263248) - (xy 7.164967 -1.203893) - (xy 7.220362 -1.138673) - (xy 7.247407 -1.112884) - (xy 7.306873 -1.065768) - (xy 7.376214 -1.021711) - (xy 7.459893 -0.979099) - (xy 7.562377 -0.936318) - (xy 7.68813 -0.891752) - (xy 7.841618 -0.843787) - (xy 8.027305 -0.790808) - (xy 8.249657 -0.731201) - (xy 8.436428 -0.682897) - (xy 8.750274 -0.598703) - (xy 9.023178 -0.516417) - (xy 9.259378 -0.433902) - (xy 9.463107 -0.349023) - (xy 9.638601 -0.259643) - (xy 9.790096 -0.163625) - (xy 9.921828 -0.058833) - (xy 10.038031 0.056868) - (xy 10.133647 0.173166) - (xy 10.242507 0.345468) - (xy 10.33252 0.542798) - (xy 10.395397 0.746074) - (xy 10.407405 0.803585) - (xy 10.425052 0.945109) - (xy 10.432548 1.110686) - (xy 10.430263 1.284673) - (xy 10.418569 1.451429) - (xy 10.397839 1.595314) - (xy 10.3875 1.641401) - (xy 10.323079 1.832721) - (xy 10.22911 2.030214) - (xy 10.114633 2.216207) - (xy 10.048303 2.304613) - (xy 9.873069 2.485408) - (xy 9.662131 2.640166) - (xy 9.417594 2.767908) - (xy 9.141561 2.867654) - (xy 8.836136 2.938424) - (xy 8.622637 2.968445) - (xy 8.446432 2.982327) - (xy 8.250022 2.989306) - (xy 8.047612 2.989504) - (xy 7.853409 2.983046) - (xy 7.681616 2.970055) - (xy 7.597321 2.959498) - (xy 7.287341 2.89874) - (xy 7.012881 2.814451) - (xy 6.769461 2.704486) - (xy 6.552604 2.566698) - (xy 6.357829 2.398942) - (xy 6.29804 2.337078) - (xy 6.151579 2.151526) - (xy 6.021569 1.932745) - (xy 5.912629 1.691292) - (xy 5.829375 1.437725) - (xy 5.776423 1.182601) - (xy 5.769406 1.128259) - (xy 5.762091 1.055101) - (xy 5.763756 1.016161) - (xy 5.777626 1.000666) - (xy 5.806928 0.997842) - (xy 5.808454 0.99784) - (xy 5.846837 0.995702) - (xy 5.922629 0.989746) - (xy 6.028103 0.980644) - (xy 6.155533 0.969066) - (xy 6.297193 0.955683) - (xy 6.327321 0.952775) - (xy 6.501296 0.935879) - (xy 6.635424 0.923213) - (xy 6.73503 0.914932) - (xy 6.805442 0.91119) - (xy 6.851985 0.912139) - (xy 6.879986 0.917934) - (xy 6.894771 0.928728) - (xy 6.901666 0.944676) - (xy 6.905997 0.965932) - (xy 6.906738 0.969509) - (xy 6.937902 1.084752) - (xy 6.983833 1.217631) - (xy 7.037496 1.350014) - (xy 7.091854 1.463769) - (xy 7.113243 1.501702) - (xy 7.236881 1.663918) - (xy 7.392416 1.794475) - (xy 7.578787 1.892873) - (xy 7.794931 1.958616) - (xy 8.039789 1.991205) - (xy 8.164285 1.994927) - (xy 8.417181 1.980309) - (xy 8.637328 1.935989) - (xy 8.826849 1.861266) - (xy 8.987868 1.75544) - (xy 9.044309 1.704697) - (xy 9.156896 1.569232) - (xy 9.230659 1.424532) - (xy 9.265015 1.276086) - (xy 9.259382 1.12938) - (xy 9.213178 0.989904) - (xy 9.132789 0.870925) - (xy 9.082217 0.819365) - (xy 9.023219 0.772122) - (xy 8.951629 0.727619) - (xy 8.863284 0.68428) - (xy 8.754019 0.640527) - (xy 8.619669 0.594785) - (xy 8.456069 0.545477) - (xy 8.259056 0.491026) - (xy 8.024465 0.429856) - (xy 7.853667 0.386699) - (xy 7.501473 0.289589) - (xy 7.192105 0.185409) - (xy 6.926115 0.074386) - (xy 6.704059 -0.043255) - (xy 6.558187 -0.142157) - (xy 6.369578 -0.314291) - (xy 6.215784 -0.511615) - (xy 6.097833 -0.729054) - (xy 6.016757 -0.961535) - (xy 5.973584 -1.203983) - (xy 5.969346 -1.451323) - (xy 6.005073 -1.698482) - (xy 6.081794 -1.940384) - (xy 6.16007 -2.103201) - (xy 6.284884 -2.286923) - (xy 6.445529 -2.458497) - (xy 6.632659 -2.609836) - (xy 6.83693 -2.732855) - (xy 6.944721 -2.782095) - (xy 7.111354 -2.844381) - (xy 7.271902 -2.891318) - (xy 7.437851 -2.92502) - (xy 7.620689 -2.9476) - (xy 7.831903 -2.961174) - (xy 7.937791 -2.964866) - (xy 8.229939 -2.966999) - (xy 8.486632 -2.955013) - ) - - (stroke (width 0.01) (type solid)) (fill solid) (layer "F.SilkS") (tstamp 597341ec-0a84-4736-b9d4-78a5c009fb8d)) - ) - - (footprint "Connector_Coaxial:SMA_Amphenol_132134_Vertical" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70b916) - (at 181.1 56.9) - (descr "https://www.amphenolrf.com/downloads/dl/file/id/2187/product/2843/132134_customer_drawing.pdf") - (tags "SMA THT Female Jack Vertical ExtendedLegs") - (property "Config" "") - (property "MFN" "Amphenol") - (property "PN" "901-144-8RFX") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "coaxial connector (BNC, SMA, SMB, SMC, Cinch/RCA, LEMO, ...)") - (property "ki_keywords" "BNC SMA SMB SMC LEMO coaxial connector CINCH RCA") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005f57dbbe") - (attr through_hole) - (fp_text reference "J13" (at 0 -5) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp a01e9e52-848c-4f42-92e8-fb9153d073a2) - ) - (fp_text value "Curr_Out (Out2)" (at 0 5) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp ef7e23fc-4794-4f48-877a-1cc1c9f4c5ab) - ) - (fp_text user "${REFERENCE}" (at 0 -5) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 99332fb0-7bd0-4b32-91a3-c682235563cb) - ) - (fp_line (start -3.68 -1.8) (end -3.68 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp af149ae8-4cf7-4e3d-a544-16f0f1ca7930)) - (fp_line (start -1.8 -3.68) (end 1.8 -3.68) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 95cf99d2-576e-4d46-8cbc-0d3a324e46bb)) - (fp_line (start -1.8 3.68) (end 1.8 3.68) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f1f24617-f979-43b6-8acb-4822f89c203e)) - (fp_line (start 3.68 -1.8) (end 3.68 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a4e8b3c0-dedb-4aba-a62b-fd614203f6b8)) - (fp_line (start -4.17 -4.17) (end -4.17 4.17) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bf6f1f09-036a-4e0d-8ca3-282f71e274b9)) - (fp_line (start -4.17 -4.17) (end 4.17 -4.17) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d566d6ba-378d-4f92-b9d1-dd3d4cb2bfaf)) - (fp_line (start 4.17 4.17) (end -4.17 4.17) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 65700c29-3d26-4f93-922a-5dee8c1223ae)) - (fp_line (start 4.17 4.17) (end 4.17 -4.17) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2dbc0df3-644e-47e3-b579-5b4821a1691a)) - (fp_line (start -3.5 -3.5) (end -3.5 3.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3d956ca4-89b2-4f23-b386-cf11607cf08a)) - (fp_line (start -3.5 -3.5) (end 3.5 -3.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2c319749-d01e-4b0f-925d-062cb527a950)) - (fp_line (start -3.5 3.5) (end 3.5 3.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 62251029-1fc3-4624-840a-2b5e109dde26)) - (fp_line (start 3.5 -3.5) (end 3.5 3.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e9a25296-6768-4715-9840-33916a306800)) - (fp_circle (center 0 0) (end 3.175 0) - (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp cf286f15-1db4-4d60-b425-310167574070)) - (pad "1" thru_hole circle (at 0 0) (size 2.05 2.05) (drill 1.5) (layers "*.Cu" "*.Mask") - (net 77 "Net-(J13-In)") (pinfunction "In") (pintype "passive") (tstamp ea1c9a4d-298e-463c-ab05-d25d5f2e3ea9)) - (pad "2" thru_hole circle (at -2.54 -2.54) (size 2.25 2.25) (drill 1.7) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "Ext") (pintype "passive") (tstamp 520f1fe2-4df7-4dbc-aa34-744a36317436)) - (pad "2" thru_hole circle (at -2.54 2.54) (size 2.25 2.25) (drill 1.7) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "Ext") (pintype "passive") (tstamp c1d6375d-2d97-4284-aa4b-20b2cad6efd7)) - (pad "2" thru_hole circle (at 2.54 -2.54) (size 2.25 2.25) (drill 1.7) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "Ext") (pintype "passive") (tstamp 288c4322-eb86-471b-b11f-9d636ce2f8c9)) - (pad "2" thru_hole circle (at 2.54 2.54) (size 2.25 2.25) (drill 1.7) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "Ext") (pintype "passive") (tstamp bfa0e4be-3078-4104-9b67-c3a790a471fd)) - (model "${KICAD6_3DMODEL_DIR}/Connector_Coaxial.3dshapes/SMA_Amphenol_132291-12_Vertical.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70b952) - (at 77.6 52.9 180) - (descr "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") - (tags "resistor") - (property "MFN" "Susumu") - (property "PN" "RR0816P-1213-D-09D") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "Resistor, small symbol") - (property "ki_keywords" "R resistor") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005ccf58a1") - (attr smd) - (fp_text reference "R2" (at -2.75 -0.05 180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 315ae8aa-8eae-4678-b5c7-bfefe9a38a58) - ) - (fp_text value "121k" (at 0 1.5 180) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp ccaa0cce-9e3d-4ae4-bf8e-c085f6c2dbce) - ) - (fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.075))) - (tstamp d9cc4919-a139-46f3-8097-54effb9f624b) - ) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d0f2a0ff-93dd-4872-8571-4d674dcfaf98)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6f74deaf-f085-4d2a-9d20-981720c178f7)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 99a44ee7-d2cb-4050-957d-c3569c422ec1)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 25efa2b3-8729-4184-975d-b702c38c8911)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 71cfd001-5cad-47e9-9d78-e5d804f52eeb)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a87dc0e2-468a-42dd-9813-f87e7404980d)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 17e88708-9fe7-4ab8-a556-cfd137aba78b)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b7bb2da9-5629-4709-9e12-181c3e83c120)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 94795355-eab2-4802-b31a-0c699426332f)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c8e6625c-20d4-4016-9eba-e80e630931ff)) - (pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp 06bf3ca9-95a7-46a2-8603-4ee12d9bb5b6)) - (pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 9 "Net-(U2-SET)") (pintype "passive") (tstamp 93eb383d-6e5a-4ec9-9912-66bc604e4bb7)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70b982) - (at 94.2 45.2) - (descr "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") - (tags "resistor") - (property "MFN" "Susumu") - (property "PN" "RR0816P-103-D") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Resistor, small symbol") - (property "ki_keywords" "R resistor") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005ccf959d") - (attr smd) - (fp_text reference "R10" (at 0 -1.45) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp c9392161-0b41-4f52-949c-df7a50066a76) - ) - (fp_text value "10k" (at 0 1.5) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 8cc4ebe1-f2e6-43d3-9986-a9a2fbebe1b3) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.075))) - (tstamp 4c75ea6e-4331-47de-8736-2cb69f1fd158) - ) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6e398188-fa74-465d-a9df-8838ffcb6bd4)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e7861494-d0b0-41af-8277-90015ff631f1)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d78f4c75-2b84-4c17-96a2-3b577164868f)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ba0318f5-f976-4f38-a57b-a5cbf8e10d44)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 092b5cea-1813-4f7f-9e1d-e65da731ee76)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e372f12d-98e3-41ec-a9e2-ef091b615194)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6e868653-f02e-4940-b8ae-53268d1efe48)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 10e6b08c-c6f9-4aaf-86b0-ac217c20e3cf)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ac348bd9-b047-4c55-bccf-bf6db828a0fd)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 28b5da7f-2b90-4ea2-badd-b98be6cc7027)) - (pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 97 "/Input_Output_Module/SET") (pintype "passive") (tstamp 62d3af9e-0520-4dea-b801-ca2527d5496d)) - (pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 13 "Net-(U4D-+)") (pintype "passive") (tstamp 8307556a-fa0f-413f-95f6-1315b043cbe6)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Connector_Coaxial:SMA_Amphenol_132134_Vertical" locked (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70b9c7) - (at 89.2 57) - (descr "https://www.amphenolrf.com/downloads/dl/file/id/2187/product/2843/132134_customer_drawing.pdf") - (tags "SMA THT Female Jack Vertical ExtendedLegs") - (property "Config" "") - (property "MFN" "Amphenol") - (property "PN" "901-144-8RFX") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "coaxial connector (BNC, SMA, SMB, SMC, Cinch/RCA, LEMO, ...)") - (property "ki_keywords" "BNC SMA SMB SMC LEMO coaxial connector CINCH RCA") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b057966") - (attr through_hole) - (fp_text reference "J3" (at 0 -5) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp db54b0db-bd7a-4486-b42a-0146d5482010) - ) - (fp_text value "Piezo_In (Out1)" (at 0 5) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 1cf2350b-c9f7-4b1d-bd01-cc20d434f991) - ) - (fp_text user "${REFERENCE}" (at 0 -5) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 577268f7-fcc0-43ff-b88b-c5de1f8e7c1f) - ) - (fp_line (start -3.68 -1.8) (end -3.68 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a94e64c3-08e4-4da7-8abf-90ef3bae2c9b)) - (fp_line (start -1.8 -3.68) (end 1.8 -3.68) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 94219711-317e-41b4-96c9-f88371534e35)) - (fp_line (start -1.8 3.68) (end 1.8 3.68) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e70d8ed9-eb83-401a-b68c-1641902af7fc)) - (fp_line (start 3.68 -1.8) (end 3.68 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fd7a7a44-7cac-4cad-80e0-9db155d7ae57)) - (fp_line (start -4.17 -4.17) (end -4.17 4.17) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e7ef9a8f-ba49-4f8c-9f75-96d91474dba2)) - (fp_line (start -4.17 -4.17) (end 4.17 -4.17) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1b56d760-cbd3-49df-b758-87b123aba051)) - (fp_line (start 4.17 4.17) (end -4.17 4.17) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4d4b6aaa-9efd-4ffa-bbb7-84fd3c9b2cbb)) - (fp_line (start 4.17 4.17) (end 4.17 -4.17) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6749c4d6-b7a1-4afb-ac52-171cf17cf5e1)) - (fp_line (start -3.5 -3.5) (end -3.5 3.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 09a54db9-7a54-45b4-88d8-56b7bd97fb2a)) - (fp_line (start -3.5 -3.5) (end 3.5 -3.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 312a0610-31df-44fd-86b5-113ec9a7bf2f)) - (fp_line (start -3.5 3.5) (end 3.5 3.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 758e3e10-5a6e-434a-94bd-fec2657c482c)) - (fp_line (start 3.5 -3.5) (end 3.5 3.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d5219c60-f0f1-4a77-8746-b1eddc7a3d0f)) - (fp_circle (center 0 0) (end 3.175 0) - (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 488f557a-a9b2-46f1-8c4b-c41feefa186a)) - (pad "1" thru_hole circle locked (at 0 0) (size 2.05 2.05) (drill 1.5) (layers "*.Cu" "*.Mask") - (net 72 "Net-(J3-In)") (pinfunction "In") (pintype "passive") (tstamp d9357ab2-23c1-4cd9-8ce5-54077c431f79)) - (pad "2" thru_hole circle locked (at -2.54 -2.54) (size 2.25 2.25) (drill 1.7) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "Ext") (pintype "passive") (tstamp 9fdecd0e-b5b2-4e62-9e38-5ad34b3a3827)) - (pad "2" thru_hole circle locked (at -2.54 2.54) (size 2.25 2.25) (drill 1.7) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "Ext") (pintype "passive") (tstamp f3f522ea-76c9-4594-9e6e-d18b031b63f9)) - (pad "2" thru_hole circle locked (at 2.54 -2.54) (size 2.25 2.25) (drill 1.7) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "Ext") (pintype "passive") (tstamp 10f11d41-fe86-4ec2-b8d1-fdbe11b69997)) - (pad "2" thru_hole circle locked (at 2.54 2.54) (size 2.25 2.25) (drill 1.7) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "Ext") (pintype "passive") (tstamp bf86e646-425d-4d4d-9ab0-c377ade9479b)) - (model "${KICAD6_3DMODEL_DIR}/Connector_Coaxial.3dshapes/SMA_Amphenol_132291-12_Vertical.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_SMD:C_1206_3216Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70ba03) - (at 72.5 67.1) - (descr "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") - (tags "capacitor") - (property "MFN" "KEMET") - (property "PN" "C1206C104K3GEC7210") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "Unpolarized capacitor, small symbol") - (property "ki_keywords" "capacitor cap") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005c1a9da5") - (attr smd) - (fp_text reference "C21" (at -0.1 2.1 180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 9e26a6e5-6972-46cc-90e2-34e3aaecfab0) - ) - (fp_text value "100n" (at 0 2 180) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 81e1ad07-189d-43c8-a299-24cb596633b4) - ) - (fp_text user "${REFERENCE}" (at 0 -1.75 180) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp eacfcb59-d07c-49de-ae0b-18757b16f7d0) - ) - (fp_line (start -0.711252 -0.91) (end 0.711252 -0.91) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp de6d792a-edaa-4713-a1a6-363b8a390028)) - (fp_line (start -0.711252 0.91) (end 0.711252 0.91) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d3827ef7-7f54-4a4f-b983-499483078c53)) - (fp_line (start -2.3 -1.15) (end 2.3 -1.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1fefd53f-a140-4ccf-97a6-7695fb5e5271)) - (fp_line (start -2.3 1.15) (end -2.3 -1.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 53ce8688-acb4-4bcc-8b90-c778ad75389d)) - (fp_line (start 2.3 -1.15) (end 2.3 1.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 27c56f56-8269-4302-a607-8f41d4138ec9)) - (fp_line (start 2.3 1.15) (end -2.3 1.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 00b909d3-7843-46f2-bab7-7aeddd68dd88)) - (fp_line (start -1.6 -0.8) (end 1.6 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1050381d-7511-4c13-89b5-34ecfc46dee5)) - (fp_line (start -1.6 0.8) (end -1.6 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 077838d2-ae3a-4515-aec8-97f1dcc58a24)) - (fp_line (start 1.6 -0.8) (end 1.6 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 64ba099c-569e-40d3-87ee-c65acbf44214)) - (fp_line (start 1.6 0.8) (end -1.6 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 86f22ccb-9dd3-43df-9b8c-6fa8eccfe099)) - (pad "1" smd roundrect (at -1.475 0) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) - (net 4 "/Input_Output_Module/+12V") (pintype "passive") (tstamp 028ebb22-f165-49c0-9381-1c9b19ff0186)) - (pad "2" smd roundrect (at 1.475 0) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) - (net 2 "GND") (pintype "passive") (tstamp 633c8a9e-2fd8-42bf-ba4b-74718357321d)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "MountingHole:MountingHole_2.7mm_M2.5" locked (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70ba2a) - (at 206.2 129.45) - (descr "Mounting Hole 2.7mm, no annular, M2.5") - (tags "mounting hole 2.7mm no annular m2.5") - (property "Config" "DNF") - (property "Sheetfile" "RedPitaya_Lockbox.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Mounting Hole without connection") - (property "ki_keywords" "mounting hole") - (path "/00000000-0000-0000-0000-00005f6d8e2d") - (attr exclude_from_pos_files) - (fp_text reference "H2" (at 0 -3.7) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 0835b7f6-30c2-4981-b96b-fa92a56accc1) - ) - (fp_text value "MountingHole" (at 0 3.7) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 92bb0e58-cea4-41f2-b1a9-4edc1ad3cf7f) - ) - (fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 21e1c001-5394-4731-bf18-2fb78c6d58a1) - ) - (fp_circle (center 0 0) (end 2.7 0) - (stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 1dffc8bd-63f0-47be-962c-5dff6f1247e6)) - (fp_circle (center 0 0) (end 2.95 0) - (stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 77ce37fb-b52e-4a0f-a0b7-b036ba27170a)) - (pad "" np_thru_hole circle locked (at 0 0) (size 2.7 2.7) (drill 2.7) (layers "*.Cu" "*.Mask") (tstamp 0a411ac2-622e-4999-b472-40d779dccf62)) - ) - - (footprint "MountingHole:MountingHole_2.7mm_M2.5" locked (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70ba3f) - (at 206.21 40.54) - (descr "Mounting Hole 2.7mm, no annular, M2.5") - (tags "mounting hole 2.7mm no annular m2.5") - (property "Config" "DNF") - (property "Sheetfile" "RedPitaya_Lockbox.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Mounting Hole without connection") - (property "ki_keywords" "mounting hole") - (path "/00000000-0000-0000-0000-00005f6d8b6d") - (attr exclude_from_pos_files) - (fp_text reference "H1" (at 0 -3.7) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 73e89d95-5abb-42c8-a658-3ed601840a83) - ) - (fp_text value "MountingHole" (at 0 3.7) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 4232d9e2-d290-4d89-8366-88b91d40aec3) - ) - (fp_text user "${REFERENCE}" (at 0.3 0) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 03c7dadc-0720-418e-b433-0fd81e9c302b) - ) - (fp_circle (center 0 0) (end 2.7 0) - (stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp e39a8b47-5c31-4f43-9b48-9dec22c1b1f4)) - (fp_circle (center 0 0) (end 2.95 0) - (stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 9ed6bb68-ab5f-4718-8a07-51bca127979e)) - (pad "" np_thru_hole circle locked (at 0 0) (size 2.7 2.7) (drill 2.7) (layers "*.Cu" "*.Mask") (tstamp 21425b3d-bfc4-47f1-9176-e04355e265e0)) - ) - - (footprint "Capacitor_SMD:C_1206_3216Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70ba5d) - (at 92.8 66.1 -90) - (descr "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") - (tags "capacitor") - (property "MFN" "Murata Electronics") - (property "PN" "GRM3195C1H163JA01D") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Unpolarized capacitor, small symbol") - (property "ki_keywords" "capacitor cap") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b6d8fe5") - (attr smd) - (fp_text reference "C10" (at 0 -2.4 90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp bb5de82c-a482-4308-a0c2-ead940a7736a) - ) - (fp_text value "16n (C0G)" (at 0 2 -90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp c265a042-4790-4c3f-ada9-1635c2eabac5) - ) - (fp_text user "${REFERENCE}" (at 0 -1.75 -90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp e16e00d2-90a8-4f60-b871-c87e9fb51e1f) - ) - (fp_line (start -0.711252 -0.91) (end 0.711252 -0.91) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 79b1319f-0c63-4f9a-b264-d359ae366108)) - (fp_line (start -0.711252 0.91) (end 0.711252 0.91) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1688ba6c-3df8-4ad3-a71e-a4aec91b94fb)) - (fp_line (start -2.3 -1.15) (end 2.3 -1.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a5d4999a-f52d-4620-ada5-67232e469937)) - (fp_line (start -2.3 1.15) (end -2.3 -1.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b6c7273f-7400-4456-97d9-068c8b7be157)) - (fp_line (start 2.3 -1.15) (end 2.3 1.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ffe34b1a-bc99-4bca-870e-106ed2da15f0)) - (fp_line (start 2.3 1.15) (end -2.3 1.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a2c02013-0b0f-4837-a50c-3355fa9fb3f8)) - (fp_line (start -1.6 -0.8) (end 1.6 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ae24a1c5-7e01-48f0-8b1e-d55b28ef2da2)) - (fp_line (start -1.6 0.8) (end -1.6 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a3751fe0-c318-4976-b41d-5beed5f881c8)) - (fp_line (start 1.6 -0.8) (end 1.6 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1caf4298-126a-40f4-943e-8332e47f3d59)) - (fp_line (start 1.6 0.8) (end -1.6 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ab1b59de-7ea2-48c9-b619-d0517d5ddacb)) - (pad "1" smd roundrect (at -1.475 0 270) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) - (net 10 "Net-(U4A-+)") (pintype "passive") (tstamp 677dc02a-d344-455f-b5ca-6928ff8f0995)) - (pad "2" smd roundrect (at 1.475 0 270) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) - (net 2 "GND") (pintype "passive") (tstamp 027920f3-b68d-4779-b1cb-6722735d138a)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "custom:RedPitaya_125-14" locked (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70bac0) - (at 146.1 93.6) - (descr "RedPitaya Mounting ") - (property "Connector" "") - (property "MFN" "Samtec") - (property "PN" "ESQ-113-44-T-D") - (property "Sheetfile" "RedPitaya_Lockbox.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "StemLab RedPitaya 14bit") - (path "/00000000-0000-0000-0000-00005b08c1e4") - (attr through_hole) - (fp_text reference "RP1" (at 21.971 26.797 270) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 4a645ba7-e676-4124-840b-77b8cb275713) - ) - (fp_text value "RedPitaya_125-14" (at 0.0262 -0.0137) (layer "F.SilkS") - (effects (font (size 2 2) (thickness 0.3))) - (tstamp 0b0476b6-7b6e-4903-9094-5ef80a542f5a) - ) - (fp_text user "E2" (at -15.3 22.2) (layer "F.SilkS") - (effects (font (size 2 2) (thickness 0.3))) - (tstamp 42f057a2-fd5d-4e0a-a998-50e9439bf3de) - ) - (fp_text user "RedPitaya MountingHole" (at -23.3 32.7) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 51bbf83d-8a0c-41ff-b7d6-bb13abba4cad) - ) - (fp_text user "RedPitaya MountingHole" (at -23.6 -30.1) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 92561178-c5c5-4274-9d05-2669a2cd221d) - ) - (fp_text user "${REFERENCE}" (at 0.127 26.797 270) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 92f9a7fe-12b9-455c-b3cb-646f2e8901ef) - ) - (fp_text user "RedPitaya MountingHole" (at 60.4 -29.9) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp b764766b-0a0f-49ff-8a6c-7175220c97a2) - ) - (fp_text user "RedPitaya MountingHole" (at 60.4 32.8) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp c1993f11-1c77-4c6a-a546-c88eacb7a7c0) - ) - (fp_text user "SAMTEC_ESQ-113-44-T-D" (at -4.32 31.12) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp eeb2cccb-c329-4e38-b52d-0f03a1146e9b) - ) - (fp_line (start -31.4 -29) (end 63.6 -29) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 65e18a8b-fcd1-41f9-83f4-dd4151ccda77)) - (fp_line (start -31.4 31.8) (end -31.4 -29) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp d2ff4873-d280-4aa2-93fe-e52a7b41de69)) - (fp_line (start -16.655 29.255) (end -16.655 24.305) - (stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 5f18e57e-792d-49e6-8af3-77f9e516b96f)) - (fp_line (start 16.875 24.305) (end -16.655 24.305) - (stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp dc5f0fb2-a36f-42f8-9110-6773db6e883b)) - (fp_line (start 16.875 24.305) (end 16.875 29.255) - (stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 9bd72b28-607b-46df-b4a0-a863096acb8a)) - (fp_line (start 16.875 29.255) (end -16.655 29.255) - (stroke (width 0.2) (type solid)) (layer "F.SilkS") (tstamp 11743db5-134f-444c-9af9-73e424d40fed)) - (fp_line (start 63.6 -29) (end 63.6 31.8) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 05c1fcd7-0680-422a-9e37-37acfe1981d9)) - (fp_line (start 63.6 31.8) (end -31.4 31.8) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 18c69fe6-3a89-4bac-b59d-7cfb1f36c7de)) - (fp_circle (center -23.8 -25.61) (end -21.22 -23.71) - (stroke (width 0.15) (type solid)) (fill none) (layer "F.SilkS") (tstamp b062a746-d092-482f-a05a-3a0c5a87e9cf)) - (fp_circle (center -23.8 28.4) (end -21.34 30.45) - (stroke (width 0.15) (type solid)) (fill none) (layer "F.SilkS") (tstamp eca762cc-5201-49d6-9df2-e53a56b935b4)) - (fp_circle (center 17.525 28.05) (end 17.625 28.05) - (stroke (width 0.2) (type solid)) (fill none) (layer "F.SilkS") (tstamp bf18e26e-585d-43fa-8585-ad5473dcef75)) - (fp_circle (center 60.2 -25.59) (end 62.54 -23.4) - (stroke (width 0.15) (type solid)) (fill none) (layer "F.SilkS") (tstamp b96a9f5a-49c6-461f-b7ad-2d1211bf57de)) - (fp_circle (center 60.2 28.4) (end 61.54 31.31) - (stroke (width 0.15) (type solid)) (fill none) (layer "F.SilkS") (tstamp 23bffc3f-ea0f-40ad-afd6-4d662062416a)) - (fp_line (start -16.905 24.055) (end 17.125 24.055) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8a8a8a9d-5489-4bb8-b434-a81286e24a6f)) - (fp_line (start -16.905 29.505) (end -16.905 24.055) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 560a7840-1012-4df5-811f-1d1705694b6f)) - (fp_line (start 17.125 24.055) (end 17.125 29.505) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e3cf7974-8c58-44ed-9ab8-99fd8289dbfa)) - (fp_line (start 17.125 29.505) (end -16.905 29.505) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f665d6ba-97b7-4312-823e-46e142019e83)) - (fp_line (start -16.655 24.305) (end 16.875 24.305) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3dea894d-84b1-49c0-a6d0-30a9ce758f47)) - (fp_line (start -16.655 24.305) (end 16.875 24.305) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6e1d2378-dbeb-4e23-9554-47708af08871)) - (fp_line (start -16.655 29.255) (end -16.655 24.305) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 18cbadb3-31f8-467b-b4db-2c01ed137028)) - (fp_line (start -16.655 29.255) (end -16.655 24.305) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 29b53e19-7aea-4868-9470-152deb5304e5)) - (fp_line (start 16.875 24.305) (end 16.875 29.255) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8cf131d4-5f0b-46f3-844c-3f20d49c7476)) - (fp_line (start 16.875 24.305) (end 16.875 29.255) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c019221a-64dd-4135-ba25-08bf34063e22)) - (fp_line (start 16.875 29.255) (end -16.655 29.255) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 17115439-6120-4136-8a93-2f42b4797864)) - (fp_circle (center 17.525 28.05) (end 17.625 28.05) - (stroke (width 0.2) (type solid)) (fill none) (layer "F.Fab") (tstamp 0d224d77-f1b1-478f-ad89-c08c336f4360)) - (pad "" np_thru_hole circle locked (at -23.8 -25.6) (size 3.4 3.4) (drill 3.4) (layers "*.Cu" "*.Mask") (tstamp 36cd1733-c131-4141-8f90-e5e9a4406520)) - (pad "" np_thru_hole circle locked (at -23.8 28.4) (size 3.4 3.4) (drill 3.4) (layers "*.Cu" "*.Mask") (tstamp 278c66a1-82a4-42da-8dc3-502fa1db6b0b)) - (pad "" np_thru_hole circle locked (at 60.2 -25.6) (size 3.4 3.4) (drill 3.4) (layers "*.Cu" "*.Mask") (tstamp db88541b-a572-429d-98ae-d706efbc0559)) - (pad "" np_thru_hole circle locked (at 60.2 28.4) (size 3.4 3.4) (drill 3.4) (layers "*.Cu" "*.Mask") (tstamp eb27ae25-3b8c-4b64-a95c-de1e59a5e385)) - (pad "1" thru_hole rect locked (at 15.367 28.067 270) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 21 "/Supply_Ref/+5V") (pinfunction "+5V") (pintype "input") (tstamp a901ac9d-835a-4c7c-a672-9c504175371c)) - (pad "2" thru_hole oval locked (at 15.367 25.527 270) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 93 "unconnected-(RP1--3.3V-Pad2)") (pinfunction "-3.3V") (pintype "passive+no_connect") (tstamp 458b8d4e-c10a-4693-9f2f-2376506dd25a)) - (pad "3" thru_hole oval locked (at 12.827 28.067 270) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 94 "unconnected-(RP1-PS_MIO10-Pad3)") (pinfunction "PS_MIO10") (pintype "passive+no_connect") (tstamp fd812d42-f98c-49f1-b49f-ec83b6ddc09e)) - (pad "4" thru_hole oval locked (at 12.827 25.527 270) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 95 "unconnected-(RP1-PS_MIO11-Pad4)") (pinfunction "PS_MIO11") (pintype "passive+no_connect") (tstamp 076f4c66-46bb-4aa7-a9f1-a275d50753b1)) - (pad "5" thru_hole oval locked (at 10.287 28.067 270) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 96 "unconnected-(RP1-PS_MIO12-Pad5)") (pinfunction "PS_MIO12") (pintype "passive+no_connect") (tstamp f899b691-61f6-4ca8-b576-4d939ebdbc7e)) - (pad "6" thru_hole oval locked (at 10.287 25.527 270) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 98 "unconnected-(RP1-PS_MIO13-Pad6)") (pinfunction "PS_MIO13") (pintype "passive+no_connect") (tstamp 5577ff9f-4395-4813-be00-75da69b4eb4f)) - (pad "7" thru_hole oval locked (at 7.747 28.067 270) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 99 "unconnected-(RP1-PS_MIO08-Pad7)") (pinfunction "PS_MIO08") (pintype "passive+no_connect") (tstamp d9ca7968-5869-4ef3-9f06-561f3279c7c7)) - (pad "8" thru_hole oval locked (at 7.747 25.527 270) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 100 "unconnected-(RP1-PS_MIO09-Pad8)") (pinfunction "PS_MIO09") (pintype "passive+no_connect") (tstamp c1fa2a7d-74dc-413a-b75c-cbb32e19c813)) - (pad "9" thru_hole oval locked (at 5.207 28.067 270) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 101 "unconnected-(RP1-I2C0_SCL-Pad9)") (pinfunction "I2C0_SCL") (pintype "passive+no_connect") (tstamp 328c0500-6cfb-4861-b7ad-62b66a4849df)) - (pad "10" thru_hole oval locked (at 5.207 25.527 270) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 102 "unconnected-(RP1-I2C0_SDA-Pad10)") (pinfunction "I2C0_SDA") (pintype "passive+no_connect") (tstamp e0e75822-b638-476f-bc00-79c6eb991448)) - (pad "11" thru_hole oval locked (at 2.667 28.067 270) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 103 "unconnected-(RP1-Ext_CM-Pad11)") (pinfunction "Ext_CM") (pintype "passive+no_connect") (tstamp d0fbf6c1-0f0b-4532-ae49-73959948730e)) - (pad "12" thru_hole oval locked (at 2.667 25.527 270) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 30bdfff1-abaa-44c5-b380-076e6edded6e)) - (pad "13" thru_hole oval locked (at 0.127 28.067 270) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 104 "unconnected-(RP1-AI_0-Pad13)") (pinfunction "AI_0") (pintype "passive+no_connect") (tstamp 9399cf69-2f9f-4527-8290-e96d4e3fd2b6)) - (pad "14" thru_hole oval locked (at 0.127 25.527 270) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 105 "unconnected-(RP1-AI_1-Pad14)") (pinfunction "AI_1") (pintype "passive+no_connect") (tstamp 7c5dedbb-f2f3-4d5a-9350-5e57fa3a6cb5)) - (pad "15" thru_hole oval locked (at -2.413 28.067 270) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 106 "unconnected-(RP1-AI_2-Pad15)") (pinfunction "AI_2") (pintype "passive+no_connect") (tstamp 02480c91-fd27-4da1-894c-0127614d9308)) - (pad "16" thru_hole oval locked (at -2.413 25.527 270) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 107 "unconnected-(RP1-AI_3-Pad16)") (pinfunction "AI_3") (pintype "passive+no_connect") (tstamp 48e9cb48-5825-42a9-86ef-40beee3b2f0d)) - (pad "17" thru_hole oval locked (at -4.953 28.067 270) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 108 "unconnected-(RP1-AO_0-Pad17)") (pinfunction "AO_0") (pintype "passive+no_connect") (tstamp 6bc4846a-fd45-4ea2-b7dc-be6a1c51d338)) - (pad "18" thru_hole oval locked (at -4.953 25.527 270) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 109 "unconnected-(RP1-AO_1-Pad18)") (pinfunction "AO_1") (pintype "passive+no_connect") (tstamp a736312a-4cc2-4f0e-85df-1780ef893e9c)) - (pad "19" thru_hole oval locked (at -7.493 28.067 270) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 110 "unconnected-(RP1-AO_2-Pad19)") (pinfunction "AO_2") (pintype "passive+no_connect") (tstamp 7ecc633c-4ed9-47c6-adaf-1876c104f8d3)) - (pad "20" thru_hole oval locked (at -7.493 25.527 270) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 111 "unconnected-(RP1-AO_3-Pad20)") (pinfunction "AO_3") (pintype "passive+no_connect") (tstamp a2271c32-bebe-40a1-bcab-d82a8d7c7bc9)) - (pad "21" thru_hole oval locked (at -10.033 28.067 270) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp c06b6be0-72fb-472e-aed6-b851163c5f73)) - (pad "22" thru_hole oval locked (at -10.033 25.527 270) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 39bdc21c-b41b-4a79-8bf5-66d3ec3b3892)) - (pad "23" thru_hole oval locked (at -12.573 28.067 270) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 112 "unconnected-(RP1-CLK+-Pad23)") (pinfunction "CLK+") (pintype "passive+no_connect") (tstamp 9710a2e2-1b7c-401f-bbd1-6ee7f538b0f0)) - (pad "24" thru_hole oval locked (at -12.573 25.527 270) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 113 "unconnected-(RP1-CLK--Pad24)") (pinfunction "CLK-") (pintype "passive+no_connect") (tstamp 53101303-f0a5-46c5-9a6d-279c199db1d5)) - (pad "25" thru_hole oval locked (at -15.113 28.067 270) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp b59d2d76-9777-4f61-b2e8-47014c2052cf)) - (pad "26" thru_hole oval locked (at -15.113 25.527 270) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 9823063f-346d-4b3e-a3f2-3016598ec128)) - (model "${KIPRJMOD}/3D_models/ESQ-113-44-T-D.step" - (offset (xyz 0.1 -26.7 10.4)) - (scale (xyz 1 1 1)) - (rotate (xyz -90 0 0)) - ) - ) - - (footprint "custom:Coilcraft_MSS1278T" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70bb5c) - (at 101.3 113.4 -90) - (descr "Choke, SMD, 12x12mm 8mm height") - (tags "Choke SMD") - (property "MFN" "Coilcraft") - (property "PN" "MSS1278T-472MLD") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "Inductor, small symbol") - (property "ki_keywords" "inductor choke coil reactor magnetic") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005b0af459") - (attr smd) - (fp_text reference "L3" (at 0 -7.4 90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 5eb14451-021c-4040-ad0b-a5280f5f2c0b) - ) - (fp_text value "4.7u" (at 0 7.6 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp d5a9c479-46b6-4cb0-a892-ce6fff41c2c8) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 8c4c86e9-cec5-41db-b02a-197052dde419) - ) - (fp_line (start -6.3 -6.3) (end 6.3 -6.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3f79a605-6723-4f56-81e7-b2638c6474bc)) - (fp_line (start -6.3 -3.3) (end -6.3 -6.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0a742b4a-217a-4436-8970-8347868f22d8)) - (fp_line (start -6.3 6.3) (end -6.3 3.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5e76b857-519f-426c-84c3-ee925ca80275)) - (fp_line (start 6.3 -6.3) (end 6.3 -3.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d3673ab8-3e4e-4dd7-ab89-a1117c880136)) - (fp_line (start 6.3 3.3) (end 6.3 6.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6c508bc9-a55d-4d8c-b685-0ff8bd4426aa)) - (fp_line (start 6.3 6.3) (end -6.3 6.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f0b7f820-a646-44ff-aa1a-422f914a9ac5)) - (fp_line (start -6.86 -6.6) (end 6.86 -6.6) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 99a04456-1934-43db-8637-cd72dcb9fcff)) - (fp_line (start -6.86 6.6) (end -6.86 -6.6) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4dde1239-dbb5-415a-b3cc-7e3c4baefddc)) - (fp_line (start 6.86 -6.6) (end 6.86 6.6) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8f8a0511-d2e7-482c-bf94-2bac388e63dd)) - (fp_line (start 6.86 6.6) (end -6.86 6.6) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e6cd8c98-a358-4da6-a20a-ad7600d34aee)) - (fp_line (start -6.2 -6.2) (end -6.2 -3.3) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c4418b18-0d52-4ff2-96dc-823b4d554507)) - (fp_line (start -6.2 3.3) (end -6.2 6.2) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp da3021a6-9485-4be0-bf11-07ee7e747b66)) - (fp_line (start -6.2 6.2) (end 6.2 6.2) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 022b147a-9227-4a45-8114-eb43390690ed)) - (fp_line (start 6.2 -6.2) (end -6.2 -6.2) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 49c1433f-e98f-404e-a1f5-6d21d895e96f)) - (fp_line (start 6.2 -6.2) (end 6.2 -3.3) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp efff8706-fc6a-40ae-ad2e-7af7f963409c)) - (fp_line (start 6.2 6.2) (end 6.2 3.3) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f8334553-41d3-4f22-967b-a9134437b04a)) - (pad "1" smd rect (at -4.25 0 270) (size 4 5.5) (layers "F.Cu" "F.Paste" "F.Mask") - (net 57 "Net-(C11-Pad2)") (pintype "passive") (tstamp 3ac54987-6ba7-423b-82ef-2397f4004959)) - (pad "2" smd rect (at 4.25 0 270) (size 4 5.5) (layers "F.Cu" "F.Paste" "F.Mask") - (net 21 "/Supply_Ref/+5V") (pintype "passive") (tstamp c2ea715b-9e6a-4101-8a5f-b87f4f08aa43)) - (model "${KISYS3DMOD}/Inductors_SMD.3dshapes/L_12x12mm_h8mm.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 4 4 4)) - (rotate (xyz 0 0 0)) - ) - (model "${KISYS3DMOD}/Inductor_SMD.3dshapes/L_Bourns_SRR1260.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Package_SO:MSOP-12-1EP_3x4mm_P0.65mm_EP1.65x2.85mm" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70bbaa) - (at 69.59 74.92) - (descr "MSOP, 12 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3652fe.pdf#page=24), generated with kicad-footprint-generator ipc_gullwing_generator.py") - (tags "MSOP SO") - (property "MFN" "Linear Technology") - (property "PN" "LT3045EMSE#PBF") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "500mA, Adjustable, Ultralow Noise, Ultrahigh PSRR Linear Regulator, MSOP-12") - (property "ki_keywords" "linear voltage regulator low-noise") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005cd407e5") - (attr smd) - (fp_text reference "U1" (at 0 -3.05) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 6aeaa1ee-8080-4996-a5ad-b67b6a4fc51f) - ) - (fp_text value "LT3045EMSE" (at 0 3.05) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 4133c46d-cdab-4b9d-aa0b-cd82b3ee1b9b) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.6 0.6) (thickness 0.15))) - (tstamp 0891edec-5c7c-4df2-ba38-35aaba92fbcc) - ) - (fp_line (start 0 -2.11) (end -2.875 -2.11) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3ec34af7-6644-498c-b003-f77b9af33c57)) - (fp_line (start 0 -2.11) (end 1.5 -2.11) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 825dc88a-00cf-4177-afd0-84ad6b515c17)) - (fp_line (start 0 2.11) (end -1.5 2.11) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 59891723-3053-46e6-a9ce-65c7855077ad)) - (fp_line (start 0 2.11) (end 1.5 2.11) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6206ac6d-7689-46ae-93a2-91302fba735d)) - (fp_line (start -3.12 -2.25) (end -3.12 2.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 147a69f0-40a2-427d-80c4-67f6ab7e147f)) - (fp_line (start -3.12 2.25) (end 3.12 2.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b1369e11-216d-4dbe-8c85-e916208d56a7)) - (fp_line (start 3.12 -2.25) (end -3.12 -2.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 90d42905-fd46-4725-9994-3a46a8e5ec8b)) - (fp_line (start 3.12 2.25) (end 3.12 -2.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a94c76fd-50eb-422a-8820-4d2f5f7a3896)) - (fp_line (start -1.5 -1.25) (end -0.75 -2) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f9875e53-b78a-45e6-a454-e632ce300ca0)) - (fp_line (start -1.5 2) (end -1.5 -1.25) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a021a640-fc48-46c3-94de-7ab75051d0fb)) - (fp_line (start -0.75 -2) (end 1.5 -2) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 65f0baaa-b1a2-4068-a9fc-42c9a3108322)) - (fp_line (start 1.5 -2) (end 1.5 2) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 21af144c-208f-42f5-a090-91ee3902c18d)) - (fp_line (start 1.5 2) (end -1.5 2) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 98be5086-5d7c-4379-9599-098c75ae5e3b)) - (pad "" smd roundrect (at -0.41 -0.71) (size 0.67 1.15) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 24994034-1932-40ab-b8b7-22a21d7b4c31)) - (pad "" smd roundrect (at -0.41 0.71) (size 0.67 1.15) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp c8fa9e73-82f5-450d-bc7e-20d225828dbc)) - (pad "" smd roundrect (at 0.41 -0.71) (size 0.67 1.15) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 6fcc6e66-151c-4792-b727-2244009fbf12)) - (pad "" smd roundrect (at 0.41 0.71) (size 0.67 1.15) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 326f2e78-2732-4a39-b8bb-6cdf0a4bf01a)) - (pad "1" smd roundrect (at -2.15 -1.625) (size 1.45 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 1 "/Supply_Ref/+15V") (pinfunction "IN") (pintype "power_in") (tstamp c8901c58-e081-449a-82fc-b84d99c4e7d5)) - (pad "2" smd roundrect (at -2.15 -0.975) (size 1.45 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 1 "/Supply_Ref/+15V") (pinfunction "IN") (pintype "passive") (tstamp 802a3c7c-c8cb-428a-ae4e-5548472b3e40)) - (pad "3" smd roundrect (at -2.15 -0.325) (size 1.45 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 1 "/Supply_Ref/+15V") (pinfunction "IN") (pintype "passive") (tstamp b9199b2c-38f4-4992-8468-d2b1dd935dc4)) - (pad "4" smd roundrect (at -2.15 0.325) (size 1.45 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 1 "/Supply_Ref/+15V") (pinfunction "EN/UV") (pintype "input") (tstamp dc200609-d4b7-4e5e-ac8f-993c173055fb)) - (pad "5" smd roundrect (at -2.15 0.975) (size 1.45 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 114 "unconnected-(U1-PG-Pad5)") (pinfunction "PG") (pintype "open_collector+no_connect") (tstamp bf78e27b-73ed-4b8b-9d99-b24a2f33b6e3)) - (pad "6" smd roundrect (at -2.15 1.625) (size 1.45 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pinfunction "ILIM") (pintype "passive") (tstamp 380fa5dc-2c73-4736-86a4-e9864fe77c26)) - (pad "7" smd roundrect (at 2.15 1.625) (size 1.45 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 1 "/Supply_Ref/+15V") (pinfunction "PGFB") (pintype "input") (tstamp 6ce49e8b-8399-47a5-96ac-5856c70c19bb)) - (pad "8" smd roundrect (at 2.15 0.975) (size 1.45 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 8 "Net-(U1-SET)") (pinfunction "SET") (pintype "passive") (tstamp 7d106ce5-0a36-4ab3-9dd7-bc1300d3793f)) - (pad "9" smd roundrect (at 2.15 0.325) (size 1.45 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp af600718-6b73-4457-9460-c6a29de4f25e)) - (pad "10" smd roundrect (at 2.15 -0.325) (size 1.45 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 4 "/Input_Output_Module/+12V") (pinfunction "OUTS") (pintype "input") (tstamp bb996d51-f28b-40d4-9134-346e3214b0ec)) - (pad "11" smd roundrect (at 2.15 -0.975) (size 1.45 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 4 "/Input_Output_Module/+12V") (pinfunction "OUT") (pintype "power_out") (tstamp 0243e3a7-b6e0-4432-a6e8-c32fa4144878)) - (pad "12" smd roundrect (at 2.15 -1.625) (size 1.45 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 4 "/Input_Output_Module/+12V") (pinfunction "OUT") (pintype "passive") (tstamp 5417bbcd-d599-413e-8ba6-205b3aa79390)) - (pad "13" smd rect (at 0 0) (size 1.65 2.85) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp a0119fa3-e440-427d-be54-b97b49c7f0c1)) - (model "${KISYS3DMOD}/Package_SO.3dshapes/MSOP-12-1EP_3x4mm_P0.65mm_EP1.65x2.85mm.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_SMD:C_1206_3216Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70bbfe) - (at 75.4 78.5) - (descr "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") - (tags "capacitor") - (property "MFN" "KEMET") - (property "PN" "C1206C104K3GEC7210") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "Unpolarized capacitor, small symbol") - (property "ki_keywords" "capacitor cap") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005c1a9735") - (attr smd) - (fp_text reference "C8" (at 0 1.9) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 555ec846-3700-42c7-aee2-a790485fbbd0) - ) - (fp_text value "100n" (at 0 2) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 065e2ded-672f-4649-b136-e02af8570f79) - ) - (fp_text user "${REFERENCE}" (at 0 1.9) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 6f1cbadb-eadb-4e60-bd79-cfca2d0027d3) - ) - (fp_line (start -0.711252 -0.91) (end 0.711252 -0.91) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 90aa07f3-997e-4eb1-b17d-a62837dc85e7)) - (fp_line (start -0.711252 0.91) (end 0.711252 0.91) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7bede4db-877e-46ee-940b-5eaa33623021)) - (fp_line (start -2.3 -1.15) (end 2.3 -1.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1552531f-fc09-487c-b3f3-49e079a76246)) - (fp_line (start -2.3 1.15) (end -2.3 -1.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c9420495-cdd1-440f-aa7f-efad262442a6)) - (fp_line (start 2.3 -1.15) (end 2.3 1.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5edf81a9-19f4-4fe5-8c7f-0ac55e07033b)) - (fp_line (start 2.3 1.15) (end -2.3 1.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7f570966-75de-4dbf-abe4-a60980383bf0)) - (fp_line (start -1.6 -0.8) (end 1.6 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2d64f7d8-c185-4a92-9b3a-3dd9c5e0b1dc)) - (fp_line (start -1.6 0.8) (end -1.6 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8ffddebc-c7d6-413f-978c-ce5a33ec150c)) - (fp_line (start 1.6 -0.8) (end 1.6 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp db6fc104-7258-46ac-be6e-95b7ddf54f17)) - (fp_line (start 1.6 0.8) (end -1.6 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ba13c332-6b74-4285-b285-b91e63ddd777)) - (pad "1" smd roundrect (at -1.475 0) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) - (net 8 "Net-(U1-SET)") (pintype "passive") (tstamp 1b8a7315-3d45-401a-9c5a-ab67f708a347)) - (pad "2" smd roundrect (at 1.475 0) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) - (net 2 "GND") (pintype "passive") (tstamp 7afc41bc-0342-402f-9244-9d3626831a34)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "TestPoint:TestPoint_THTPad_D1.5mm_Drill0.7mm" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70bc25) - (at 80.9 76.5) - (descr "THT pad as test Point, diameter 1.5mm, hole diameter 0.7mm") - (tags "test point THT pad") - (property "Config" "DNF") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "test point") - (property "ki_keywords" "test point tp") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005c228744") - (attr exclude_from_pos_files) - (fp_text reference "TP1" (at 0 -2) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 73777f6a-9798-48df-80ea-f37d112adf82) - ) - (fp_text value "+12V" (at 0 2) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp e37677f2-65df-4698-8ab6-4597820a2848) - ) - (fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 39352727-e6c6-4864-9302-51c05a6f775c) - ) - (fp_circle (center 0 0) (end 0 0.95) - (stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp baf015d6-7688-4ea1-a053-9fbadcf3df6e)) - (fp_circle (center 0 0) (end 1.25 0) - (stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 4f8602bd-b5ee-4055-a0e1-cd1a54fa9b85)) - (pad "1" thru_hole circle (at 0 0) (size 1.5 1.5) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 4 "/Input_Output_Module/+12V") (pinfunction "1") (pintype "passive") (tstamp 5bffb41a-dd2b-4898-bd70-2a14a58a8c1c)) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70bcd3) - (at 128.6 56.65 180) - (descr "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") - (tags "resistor") - (property "MFN" "Vishay") - (property "PN" "CRCW06030000Z0EB") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Resistor, small symbol") - (property "ki_keywords" "R resistor") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b0591c6") - (attr smd) - (fp_text reference "R27" (at 0.1 -1.6) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp f3161b26-1882-44a3-b18e-437f7c8749ff) - ) - (fp_text value "0" (at 0 1.5 180) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 68e446d7-54b5-4aee-9a8f-e67722eaceef) - ) - (fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.075))) - (tstamp 126b439a-acc4-4dc5-ba67-048ffc2bf81b) - ) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aaf6718f-e783-4346-bbd6-1b69b37c074a)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7beb7cd0-9b07-4b9e-9d20-3778faac802b)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 95db6499-f52d-4486-a2ae-a2f6223f2d45)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 09ee6ac4-062f-4308-9c33-8726d511f02c)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 675c3106-0986-4780-9189-4aa5985e9277)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 313cd3fb-702e-4089-9383-25cf37d2c59c)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0494c7a6-f44b-4736-9312-4f5dac1931a6)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 71d8f543-1c5a-4d4e-9423-df424be7c18d)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 47ed7cbd-7ec3-4159-864d-53e03f5028e7)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d2cb74e1-0567-4576-be73-3580b25adbf7)) - (pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 84 "Net-(U8A-+)") (pintype "passive") (tstamp 9065214c-8b79-4203-88db-6ecfac37cd22)) - (pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 82 "Net-(U8B--)") (pintype "passive") (tstamp e21adfca-451b-4837-89f7-dc9396877e24)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70bd03) - (at 111.35 56.6 180) - (descr "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") - (tags "capacitor") - (property "MFN" "Kemet") - (property "PN" "C0603C104K5RECAUTO") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Unpolarized capacitor, small symbol") - (property "ki_keywords" "capacitor cap") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005c1ae145") - (attr smd) - (fp_text reference "C18" (at -2.25 0.5 90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 713808a2-4914-419d-aac4-9824f09c25bc) - ) - (fp_text value "100n" (at 0 1.5) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 0efa28ee-54b0-4529-a1cb-9e2be7a3aca4) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.3 0.3) (thickness 0.075))) - (tstamp b8785ab3-b068-4ec2-830e-a5809d835656) - ) - (fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 06a2fd15-cbb4-479f-9d2b-71c1ec183063)) - (fp_line (start -0.14058 0.51) (end 0.14058 0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2972d6e9-efcd-466c-93a0-557c55a83150)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4c895f38-4c67-4572-a3ce-b3eac0d50bbb)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 12bdb103-2ee1-4cfe-a836-d875ec18d128)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9d73de89-78cb-417a-9b93-bb18cdfb34e5)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d6e5ba56-ab52-4666-a015-da7f76c5ba89)) - (fp_line (start -0.8 -0.4) (end 0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2cad4b1a-6523-4743-803d-bdc7fce33e76)) - (fp_line (start -0.8 0.4) (end -0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b317bd9b-8381-41e6-88de-49fe209931fd)) - (fp_line (start 0.8 -0.4) (end 0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fcfda444-2601-4c01-942c-f2b60a458119)) - (fp_line (start 0.8 0.4) (end -0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8a93dcc4-3e82-4098-89fc-5b2152b03aa6)) - (pad "1" smd roundrect (at -0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp 33dfb1e3-5ce3-4ef7-8f44-a66ddcf0b44e)) - (pad "2" smd roundrect (at 0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 4 "/Input_Output_Module/+12V") (pintype "passive") (tstamp 799011c6-1041-4f0e-846b-6223336e16e2)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_SMD:C_1210_3225Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70bde4) - (at 92.4 108.8 90) - (descr "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") - (tags "capacitor") - (property "MFN" "Taiyo Yuden") - (property "PN" "EMK325BJ476MM-P") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "Unpolarized capacitor, small symbol") - (property "ki_keywords" "capacitor cap") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005b0b772c") - (attr smd) - (fp_text reference "C20" (at -3 -0.1 180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 6102a0fc-5b25-41e8-bf2f-64e3884785df) - ) - (fp_text value "47u" (at 0 2.5 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 230e97bf-b536-4886-b401-b3b12b9fbbc3) - ) - (fp_text user "${REFERENCE}" (at 0 -2.25 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp b0a14782-5a7c-4892-bf9e-e5c21cbf3e6a) - ) - (fp_line (start -0.711252 -1.36) (end 0.711252 -1.36) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 214111ea-2f21-4a60-89eb-9994430ec3de)) - (fp_line (start -0.711252 1.36) (end 0.711252 1.36) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e3fdca1c-efc5-4617-9e10-d4f07ab848a5)) - (fp_line (start -2.3 -1.6) (end 2.3 -1.6) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1e37cfd2-7628-460a-b2af-56af6eeb04c9)) - (fp_line (start -2.3 1.6) (end -2.3 -1.6) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0ed487d5-26df-4d76-928f-502417c376c8)) - (fp_line (start 2.3 -1.6) (end 2.3 1.6) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5abd4d1d-acfe-487f-b433-616c9c186767)) - (fp_line (start 2.3 1.6) (end -2.3 1.6) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp be3b3ae5-9510-44dc-a920-a10fc757cedc)) - (fp_line (start -1.6 -1.25) (end 1.6 -1.25) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 81417b1f-bb17-4642-ac45-509c881dc1e6)) - (fp_line (start -1.6 1.25) (end -1.6 -1.25) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cc11c8d3-66f8-4a72-8dc5-09c661094cee)) - (fp_line (start 1.6 -1.25) (end 1.6 1.25) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e9a92a0e-7f12-4496-bc7b-66f8cd56105c)) - (fp_line (start 1.6 1.25) (end -1.6 1.25) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f10fe8c8-b54e-4dc9-aab6-2dd9375ded79)) - (pad "1" smd roundrect (at -1.475 0 90) (size 1.15 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) - (net 21 "/Supply_Ref/+5V") (pintype "passive") (tstamp 59730857-f17f-4e57-a39d-b379a414dd46)) - (pad "2" smd roundrect (at 1.475 0 90) (size 1.15 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) - (net 2 "GND") (pintype "passive") (tstamp 2353f360-15ed-4b10-9c8a-ee0642419467)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1210_3225Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "TestPoint:TestPoint_THTPad_D1.5mm_Drill0.7mm" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70be0e) - (at 77.9 41.9) - (descr "THT pad as test Point, diameter 1.5mm, hole diameter 0.7mm") - (tags "test point THT pad") - (property "Config" "DNF") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "test point") - (property "ki_keywords" "test point tp") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005c22864c") - (attr exclude_from_pos_files) - (fp_text reference "TP2" (at 0 -2) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp b8e0500a-c93b-40d4-9403-8e5bc8e96243) - ) - (fp_text value "-12V" (at -0.01 -2.08) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 6b908076-af91-456a-83bb-f54f4f16c4cf) - ) - (fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 46e2b235-881f-4822-a03a-4ef090a5b170) - ) - (fp_circle (center 0 0) (end 0 0.95) - (stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 9eb8fd34-ed98-429a-a7c3-813389ccfaf6)) - (fp_circle (center 0 0) (end 1.25 0) - (stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 7826fcd7-9c90-4c22-934f-718df3ec51e6)) - (pad "1" thru_hole circle (at 0 0) (size 1.5 1.5) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 19 "/Input_Output_Module/-12V") (pinfunction "1") (pintype "passive") (tstamp b316a967-a2d4-4dbf-adba-70affae8c6b9)) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70be32) - (at 104.4 58.3) - (descr "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") - (tags "resistor") - (property "MFN" "Susumu") - (property "PN" "RR0816P-102-D") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Resistor, small symbol") - (property "ki_keywords" "R resistor") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b057a35") - (attr smd) - (fp_text reference "R12" (at 0.7 1.6) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 3bb98ab5-6d48-48cf-9449-cc47f1828b2d) - ) - (fp_text value "1k" (at 0 1.5) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 1cf87cdd-e9b7-40eb-91e3-eeda7754babc) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.075))) - (tstamp 425d2001-4a21-471a-8ada-d20b96c428f9) - ) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 148f7ba6-c927-4f0c-add9-3a933788a986)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a6b6d7b0-1c7f-4c34-9ab7-c441cf64e627)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 27d201f8-9e9b-4ce7-a6f2-603e149f4989)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 20e0e20c-05e2-471a-9b50-479535f3c641)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dfa664ee-fe99-49cb-81e2-ced7174ecace)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 37a3ceaf-4be3-4aec-bbd8-fb8e3ff7984c)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 12bee838-c223-4a26-a049-548b50feb4a7)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1abbb9a9-d41f-4fee-892f-8652ef9a96e7)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8f781683-ae09-4ef3-bc90-cb5a2372f169)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e775ba62-2221-4bd3-8056-2749c8a16262)) - (pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 85 "Net-(U4B--)") (pintype "passive") (tstamp 693d198f-9705-45a3-92e4-28b4992e8f4a)) - (pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 86 "Net-(U4D--)") (pintype "passive") (tstamp aed854df-5924-4be5-86bf-0a4dcdeae954)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70be71) - (at 100.9 51.4 90) - (descr "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") - (tags "SOIC SO") - (property "MFN" "Texas Instruments") - (property "PN" "OPA1604AIDR") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Quad SoundPlus High Performance, Bipolar-Input Audio Operational Amplifiers, SOIC-14/TSSOP-14") - (property "ki_keywords" "quad opamp") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005e66c91a") - (attr smd) - (fp_text reference "U4" (at 0 -5.375 90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 0e03e305-208c-4889-ba13-a2164e30b240) - ) - (fp_text value "OPA1604" (at 0 5.375 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp aa9fde9c-bb6d-4939-aaee-ea84626e76ab) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") - (effects (font (size 0.9 0.9) (thickness 0.135))) - (tstamp b138a1b9-f2f7-4b0e-84c3-ffa25bd0f8b7) - ) - (fp_line (start 0 -4.435) (end -3.45 -4.435) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6b295d80-a30f-4272-a7ed-657112d68ec1)) - (fp_line (start 0 -4.435) (end 1.95 -4.435) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ec5266f0-89fa-4a6d-b670-3eef7c9dbdbf)) - (fp_line (start 0 4.435) (end -1.95 4.435) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 25863ff3-6918-4af2-ba0a-3db95f1443af)) - (fp_line (start 0 4.435) (end 1.95 4.435) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5d77ea0e-e593-4b18-82a6-19c012fd864b)) - (fp_line (start -3.7 -4.58) (end -3.7 4.58) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ed7262f6-7cff-481c-85b7-9c9054a80eac)) - (fp_line (start -3.7 4.58) (end 3.7 4.58) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d1410223-454c-4f9d-8868-a57059deb584)) - (fp_line (start 3.7 -4.58) (end -3.7 -4.58) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f1c2bff2-7556-4c16-a2ad-4f9735fb9805)) - (fp_line (start 3.7 4.58) (end 3.7 -4.58) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 613ed265-cdf0-4e06-b739-41b04f131762)) - (fp_line (start -1.95 -3.35) (end -0.975 -4.325) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 987b0ac6-52c6-4483-baab-763f65f2c129)) - (fp_line (start -1.95 4.325) (end -1.95 -3.35) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d9e723a5-36a0-4ed3-948d-634781cfc558)) - (fp_line (start -0.975 -4.325) (end 1.95 -4.325) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c2f40f88-a785-47a9-9941-c5a23d030573)) - (fp_line (start 1.95 -4.325) (end 1.95 4.325) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bf0e34ef-8a80-49bb-97ff-73346ca0e5db)) - (fp_line (start 1.95 4.325) (end -1.95 4.325) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d4b797f3-ae7d-461e-946b-e8e7a431bca9)) - (pad "1" smd roundrect (at -2.475 -3.81 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 24 "Net-(R4-Pad1)") (pintype "output") (tstamp 04e7e340-f621-4dea-94fb-af8374cc243d)) - (pad "2" smd roundrect (at -2.475 -2.54 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 80 "Net-(U4A--)") (pinfunction "-") (pintype "input") (tstamp e091f3bf-9932-461f-8119-b40571c5b21d)) - (pad "3" smd roundrect (at -2.475 -1.27 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 10 "Net-(U4A-+)") (pinfunction "+") (pintype "input") (tstamp d462a696-2f14-4733-b104-ad5684f6528b)) - (pad "4" smd roundrect (at -2.475 0 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 4 "/Input_Output_Module/+12V") (pinfunction "V+") (pintype "power_in") (tstamp 243560bf-0539-4fbd-a652-0c0f8f72535f)) - (pad "5" smd roundrect (at -2.475 1.27 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 83 "Net-(U4B-+)") (pinfunction "+") (pintype "input") (tstamp 522315ae-f73b-49d8-86e7-a997fed84ba6)) - (pad "6" smd roundrect (at -2.475 2.54 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 85 "Net-(U4B--)") (pinfunction "-") (pintype "input") (tstamp 2358c94b-3819-4733-b7cc-223bd7e46889)) - (pad "7" smd roundrect (at -2.475 3.81 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 18 "Net-(U4-Pad7)") (pintype "output") (tstamp 9dba1e99-ea42-4f25-8ae3-75b1ec0ad444)) - (pad "8" smd roundrect (at 2.475 3.81 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 90 "Net-(U4C--)") (pintype "output") (tstamp 2878cb38-33bd-495b-9920-1b07048f23d3)) - (pad "9" smd roundrect (at 2.475 2.54 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 90 "Net-(U4C--)") (pinfunction "-") (pintype "input") (tstamp 30ef88ee-4fdd-4ea8-aa21-1e4fb35c3bfb)) - (pad "10" smd roundrect (at 2.475 1.27 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 87 "Net-(U4C-+)") (pinfunction "+") (pintype "input") (tstamp 21df8487-d841-4197-83ae-12fe091c20d8)) - (pad "11" smd roundrect (at 2.475 0 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 19 "/Input_Output_Module/-12V") (pinfunction "V-") (pintype "power_in") (tstamp c45311b2-34ea-4cba-8764-3ee54aae18e4)) - (pad "12" smd roundrect (at 2.475 -1.27 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 13 "Net-(U4D-+)") (pinfunction "+") (pintype "input") (tstamp ce91fed7-e15e-4dcd-972d-d139e8e0a32c)) - (pad "13" smd roundrect (at 2.475 -2.54 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 86 "Net-(U4D--)") (pinfunction "-") (pintype "input") (tstamp 042e29f5-4b1e-4e3b-92fa-30d8b3fb5ab4)) - (pad "14" smd roundrect (at 2.475 -3.81 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 86 "Net-(U4D--)") (pintype "output") (tstamp 635a8fce-a399-4416-996c-5544aebd98e1)) - (model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-14_3.9x8.7mm_P1.27mm.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70bebf) - (at 126.6 46.1 -90) - (descr "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") - (tags "capacitor") - (property "MFN" "Kemet") - (property "PN" "C0603C104K5RECAUTO") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Unpolarized capacitor, small symbol") - (property "ki_keywords" "capacitor cap") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005c1ae57d") - (attr smd) - (fp_text reference "C22" (at 0 1.3 -90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 87691eea-518e-4425-88b6-123af00bfd5e) - ) - (fp_text value "100n" (at 0 1.5 -90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 6ff9dd73-f2b6-489a-bcf2-8a6447e67aed) - ) - (fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab") - (effects (font (size 0.3 0.3) (thickness 0.075))) - (tstamp 90a1fee8-3752-4ac6-ba7a-76a48fe207d5) - ) - (fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6f8ccef0-ea89-4234-a819-e801c2f22c52)) - (fp_line (start -0.14058 0.51) (end 0.14058 0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fc7a4b4b-8d20-4d7d-8685-650c3f4789a8)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c2926b70-49ea-4c25-ab5a-643ffb9aaffe)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp de3178c3-855d-4b11-b116-010491807db7)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a2809508-80ec-4719-8086-46dd44cc221b)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ffc72c24-302f-4a8b-85ed-9f4534b320d6)) - (fp_line (start -0.8 -0.4) (end 0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1217c7af-7b26-432a-8fa5-ae1d8dcd1ad9)) - (fp_line (start -0.8 0.4) (end -0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5ca40e43-e3c1-4960-a399-a0c5f67ae707)) - (fp_line (start 0.8 -0.4) (end 0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b3825e71-36d4-48b9-a4d2-61363a38636b)) - (fp_line (start 0.8 0.4) (end -0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f535ec5c-d734-4afb-842a-9c557e3f033f)) - (pad "1" smd roundrect (at -0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp 956c0b1f-81cd-4800-846c-8a7167dca115)) - (pad "2" smd roundrect (at 0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 19 "/Input_Output_Module/-12V") (pintype "passive") (tstamp 822a24ec-3b1c-4179-a415-68f888fc9aa6)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70bf55) - (at 111.8 46 -90) - (descr "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") - (tags "capacitor") - (property "MFN" "Kemet") - (property "PN" "C0603C104K5RECAUTO") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Unpolarized capacitor, small symbol") - (property "ki_keywords" "capacitor cap") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005c1ade01") - (attr smd) - (fp_text reference "C19" (at -0.6 -1.5 90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp af2eaabb-94f9-43ed-8b55-f365e494f987) - ) - (fp_text value "100n" (at 0 1.5 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 2da511a9-cbab-422e-bc40-c4472ba9ee1a) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") - (effects (font (size 0.3 0.3) (thickness 0.075))) - (tstamp f04905f9-6151-48ef-9cbb-26368729565b) - ) - (fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 83d141fa-8754-4dac-a732-02888b97e485)) - (fp_line (start -0.14058 0.51) (end 0.14058 0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aa7da8a7-9c68-4264-95a2-b3c897a963d3)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dd836358-87ad-447f-82c3-887928cd7448)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c3a4bbe5-e53e-4bce-ba8e-d3471e4ab83f)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4d1384fd-73b3-437c-8ae7-1dcb1a9137ad)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d4c0fe93-b0de-4a39-bdc7-5546c69aef3e)) - (fp_line (start -0.8 -0.4) (end 0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cb6a0eed-e8e0-4c2c-937a-8c4cf86ed6ce)) - (fp_line (start -0.8 0.4) (end -0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9b9495f1-0f05-4125-839a-d564c46a5594)) - (fp_line (start 0.8 -0.4) (end 0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5e64419f-3da2-4ac2-9bcd-17c84e7ffb59)) - (fp_line (start 0.8 0.4) (end -0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8512f9ee-84c3-400b-a7ef-e4941f5afb48)) - (pad "1" smd roundrect (at -0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp 58915b20-aff9-4417-9e00-dbc22253abe2)) - (pad "2" smd roundrect (at 0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 19 "/Input_Output_Module/-12V") (pintype "passive") (tstamp 511c6b2d-980f-4a94-b289-65fc09d91761)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70bf85) - (at 80.3 93.1) - (descr "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") - (tags "capacitor") - (property "MFN" "Wurth Electronics") - (property "PN" "885012107013") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "Unpolarized capacitor, small symbol") - (property "ki_keywords" "capacitor cap") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005c1bd28c") - (attr smd) - (fp_text reference "C2" (at 0 -1.5) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp a25584a9-4ff4-482a-bcbd-04a6132a06c8) - ) - (fp_text value "4.7u" (at 0 1.75) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp f410d1e9-0570-44b9-8d09-ee8849137e9f) - ) - (fp_text user "${REFERENCE}" (at 0 -1.5) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp cf5c95bb-cf2b-417b-ad64-e67a9c46ce2b) - ) - (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f518982f-4001-438a-bf0c-7df58a2ca375)) - (fp_line (start -0.261252 0.735) (end 0.261252 0.735) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c5738823-e430-4281-a19b-f60c9ecc22a7)) - (fp_line (start -1.7 -0.98) (end 1.7 -0.98) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 263b38ef-7175-4970-b408-673fc04abd57)) - (fp_line (start -1.7 0.98) (end -1.7 -0.98) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 948ff211-0b79-45d2-84aa-6f2894d8010e)) - (fp_line (start 1.7 -0.98) (end 1.7 0.98) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1794c3e9-9fde-489f-8832-0615d32f4b15)) - (fp_line (start 1.7 0.98) (end -1.7 0.98) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d1d5ee5a-acc1-41cf-920d-f8be162edca1)) - (fp_line (start -1 -0.625) (end 1 -0.625) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 82e48ae6-8ae1-490a-88ee-d726bd66d5e9)) - (fp_line (start -1 0.625) (end -1 -0.625) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 747613a0-d408-4da4-b186-da97853ce81f)) - (fp_line (start 1 -0.625) (end 1 0.625) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f17dec97-f9e9-4957-80c1-05639634db62)) - (fp_line (start 1 0.625) (end -1 0.625) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1e267f97-f23b-4887-927b-01857cd7b82c)) - (pad "1" smd roundrect (at -0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 51 "Net-(C2-Pad1)") (pintype "passive") (tstamp f53136a2-f338-41d8-a11b-f81e32ea1e35)) - (pad "2" smd roundrect (at 0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp 539d4ab8-79d1-492c-b8c7-aad161a3d909)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70bfbe) - (at 128.5 51.5 -90) - (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 "MFN" "Texas Instruments") - (property "PN" "OPA1602AIDR") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Dual SoundPlus High Performance, Bipolar-Input Audio Operational Amplifiers, SOIC-8/MSOP-8") - (property "ki_keywords" "dual opamp") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b4016af") - (attr smd) - (fp_text reference "U8" (at 0 -3.5 -90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 2d7c282b-13dd-4738-be72-d9ce2dcb930c) - ) - (fp_text value "OPA1602" (at 0 3.5 -90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp e0803bac-20a0-4bee-822f-86d910a052ac) - ) - (fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp e204d0b1-3874-4e3e-802b-0122cfd2cf0f) - ) - (fp_line (start 0 -2.56) (end -3.45 -2.56) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 486c0159-c56e-4a64-a30c-4903e88bbb24)) - (fp_line (start 0 -2.56) (end 1.95 -2.56) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b40574ab-05ce-494e-968c-ef61df5994b9)) - (fp_line (start 0 2.56) (end -1.95 2.56) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e5babcc0-3b55-46c5-b694-bd7ed3e9662c)) - (fp_line (start 0 2.56) (end 1.95 2.56) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1ec5170c-f6a2-4fd0-9d7b-4aafbdbc3a89)) - (fp_line (start -3.7 -2.7) (end -3.7 2.7) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7a09f8a7-0b99-4949-a49f-e88599a4630b)) - (fp_line (start -3.7 2.7) (end 3.7 2.7) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8bef17f3-fe85-4e8f-8a36-90bef7ada66f)) - (fp_line (start 3.7 -2.7) (end -3.7 -2.7) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1576b6c6-b321-4bda-902b-de78540d191a)) - (fp_line (start 3.7 2.7) (end 3.7 -2.7) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5e62c989-378f-4a0f-a380-cf1ab4bba6a4)) - (fp_line (start -1.95 -1.475) (end -0.975 -2.45) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 78b5ce0c-6ec7-4646-b0f9-548e7e61d744)) - (fp_line (start -1.95 2.45) (end -1.95 -1.475) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b85c86d3-fea0-41e6-bfec-eb851528be7e)) - (fp_line (start -0.975 -2.45) (end 1.95 -2.45) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 681ca78f-e0b4-43cf-850c-97d9b0f5229e)) - (fp_line (start 1.95 -2.45) (end 1.95 2.45) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 188e16e4-161d-4f86-ba78-0f61f41e8ba6)) - (fp_line (start 1.95 2.45) (end -1.95 2.45) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 28e68cb3-fcff-4221-b6e0-89b677d815d5)) - (pad "1" smd roundrect (at -2.475 -1.905 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 92 "Net-(U8A--)") (pintype "output") (tstamp 0a10aa9e-d6a2-44a5-bf30-efb9b1a7968f)) - (pad "2" smd roundrect (at -2.475 -0.635 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 92 "Net-(U8A--)") (pinfunction "-") (pintype "input") (tstamp 3bd91010-c944-4feb-a827-0d358e6f4777)) - (pad "3" smd roundrect (at -2.475 0.635 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 84 "Net-(U8A-+)") (pinfunction "+") (pintype "input") (tstamp c6433883-5aa2-427d-8f3e-b068ed373f8d)) - (pad "4" smd roundrect (at -2.475 1.905 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 19 "/Input_Output_Module/-12V") (pinfunction "V-") (pintype "power_in") (tstamp ebeba3c7-0451-4572-bb19-cde03af3d210)) - (pad "5" smd roundrect (at 2.475 1.905 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 91 "Net-(U8B-+)") (pinfunction "+") (pintype "input") (tstamp edb11256-bbdc-42e8-b1f3-7057a681684c)) - (pad "6" smd roundrect (at 2.475 0.635 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 82 "Net-(U8B--)") (pinfunction "-") (pintype "input") (tstamp fef137de-86e3-4507-8e0e-d35493463667)) - (pad "7" smd roundrect (at 2.475 -0.635 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 84 "Net-(U8A-+)") (pintype "output") (tstamp e14965b8-f55b-4222-bc9c-adab3be1ef74)) - (pad "8" smd roundrect (at 2.475 -1.905 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 4 "/Input_Output_Module/+12V") (pinfunction "V+") (pintype "power_in") (tstamp b0baae7d-1169-4a3f-8404-ff602177cc95)) - (model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-8_3.9x4.9mm_P1.27mm.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70c000) - (at 132.1 55 90) - (descr "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") - (tags "capacitor") - (property "MFN" "Kemet") - (property "PN" "C0603C104K5RECAUTO") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Unpolarized capacitor, small symbol") - (property "ki_keywords" "capacitor cap") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005c1aecc1") - (attr smd) - (fp_text reference "C23" (at -0.1 1.4 90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 8b1707cf-7445-4192-bc8d-779ef3a62364) - ) - (fp_text value "100n" (at 0 1.5 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp ccf66e8c-b724-4a18-a39e-305241d21767) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") - (effects (font (size 0.3 0.3) (thickness 0.075))) - (tstamp 89f8e768-321c-4a2c-a565-701843f1c978) - ) - (fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f02788f4-461d-4083-b72e-8867914e36f2)) - (fp_line (start -0.14058 0.51) (end 0.14058 0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1db173e3-17e9-48e7-9ea0-566bd14a942e)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f2363bc9-8c14-4d97-9cbd-d93c8fdb6dce)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ddc86340-23a1-465b-b1a1-258df6e50c21)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 96bf36c2-8c85-447f-baef-4721afcd98c2)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5f857456-739b-4c16-8a00-5474945beb3a)) - (fp_line (start -0.8 -0.4) (end 0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 278a471b-a61d-4178-b5c7-32ba8e8bb3a8)) - (fp_line (start -0.8 0.4) (end -0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b5a4fc9d-2cbc-4c8f-8325-323ec40c2757)) - (fp_line (start 0.8 -0.4) (end 0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f71e5ebb-627e-4534-8cc6-d9e4e74d3e32)) - (fp_line (start 0.8 0.4) (end -0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a8672e7a-59b2-4a98-a6a9-cc3a6ad5660c)) - (pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp 5ff61bd6-b108-46a1-ab5f-5b91dd5ee3cb)) - (pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 4 "/Input_Output_Module/+12V") (pintype "passive") (tstamp 0cde3a1b-d61b-4658-a81a-a1e89126dce8)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70c033) - (at 89.8 64.5 180) - (descr "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") - (tags "resistor") - (property "MFN" "Susumu") - (property "PN" "RR0816P-102-D") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Resistor, small symbol") - (property "ki_keywords" "R resistor") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005ccfabd0") - (attr smd) - (fp_text reference "R6" (at 0 -1.45 180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp a7c229b7-11a9-481e-8725-ea4031e6b24c) - ) - (fp_text value "1k" (at 0 1.5 180) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 099d9732-b0b8-4a00-abbe-3e0848899ff2) - ) - (fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.075))) - (tstamp 251d7012-8f3e-479e-872c-3aea4248a5c6) - ) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a0798adc-0052-4da3-8fd7-fb90975cc577)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 15555283-2880-4b34-b6d8-921334d3491b)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp abd30bef-cce7-40a1-894b-0d5cb1a2feb3)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9c2070e7-8a66-4d70-9eb5-99cc0373978b)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2ce1a135-e368-432e-9615-93557124fffe)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 31b5a158-adfe-45a1-95f1-cf8f8cb3c671)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 867c8655-a89a-4191-b05c-46209b3a8da8)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d4eb19a6-61b7-47eb-abe3-0a51a11f4027)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cb487714-fa8f-426a-b44a-f918846050d4)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e5dba45f-f643-4014-8532-693e217ec411)) - (pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 10 "Net-(U4A-+)") (pintype "passive") (tstamp 065e2e0b-b0cc-4d40-8315-1fb039bfb232)) - (pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 72 "Net-(J3-In)") (pintype "passive") (tstamp 1c5fd7eb-f1c6-4b46-86c7-e3c964213871)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70c0f9) - (at 104.41 56.36 180) - (descr "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") - (tags "resistor") - (property "MFN" "Susumu") - (property "PN" "RR0816P-202-D") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Resistor, small symbol") - (property "ki_keywords" "R resistor") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b057a18") - (attr smd) - (fp_text reference "R14" (at -3.19 0.06 180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 674ba5a1-e856-4662-9b86-0b6cf9a5b094) - ) - (fp_text value "2k" (at 0 1.5) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp d4df2329-ea95-44e3-a2f1-fb53b33babf2) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.075))) - (tstamp a5b7f7e9-9c21-4012-b705-1ea719b5162f) - ) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e6dfc249-9aa2-4be4-adb8-f4a72adde831)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7cbfd449-336e-4975-b0b0-16fdcf1109c1)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 07bf5fa0-6b6e-46b3-8d5b-fedbc816ed12)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7601b553-c84c-45d3-bcd7-966f806729f7)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8bbc23ee-33b2-4d3e-8478-66c8df0dd905)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d20af205-a27e-4b23-b99d-f90266ea05f0)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e2a1a3be-160b-4dee-a396-b45bdcdedec0)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9cabac90-dc17-4999-8ae7-5d6633f29266)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 25190704-059d-4c75-abce-becb6f112ebd)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d5d207db-ca6c-4fba-a294-b26313e739f9)) - (pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 87 "Net-(U4C-+)") (pintype "passive") (tstamp 5581bd67-53d7-4491-a25f-c35fd17b0725)) - (pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 85 "Net-(U4B--)") (pintype "passive") (tstamp fe051142-d122-434d-b5a3-b565507d2b4a)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_1210_3225Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70c129) - (at 104.8 45.2 -90) - (descr "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") - (tags "resistor") - (property "MFN" "Yageo") - (property "PN" "RC1210FR-0749R9L") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Resistor, small symbol") - (property "ki_keywords" "R resistor") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b0579a2") - (attr smd) - (fp_text reference "R18" (at 0 -2.25 -90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 8eb6c916-6bd8-4bb5-976a-a070d32ed156) - ) - (fp_text value "49.9" (at 0 2.4 -90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp a7eaa12c-26db-4846-aebd-6062b0cebeaf) - ) - (fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab") - (effects (font (size 0.7 0.7) (thickness 0.105))) - (tstamp f5601008-46db-4c1a-b6a3-f73640f53e67) - ) - (fp_line (start -0.723737 -1.355) (end 0.723737 -1.355) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 13f0592b-a46b-4e11-8ad4-a86c15455ec8)) - (fp_line (start -0.723737 1.355) (end 0.723737 1.355) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9fb9e2bf-208d-4b31-9cb6-e9af938c8898)) - (fp_line (start -2.28 -1.58) (end 2.28 -1.58) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 983fbcdd-9402-4397-93f2-acaaf9990598)) - (fp_line (start -2.28 1.58) (end -2.28 -1.58) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 86468076-0c47-49cb-845d-d62793e98b72)) - (fp_line (start 2.28 -1.58) (end 2.28 1.58) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8bb2e738-bd06-4a3b-8363-2740e97a910c)) - (fp_line (start 2.28 1.58) (end -2.28 1.58) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2d9ddb44-80c4-4bac-9300-f34c81a5d6a2)) - (fp_line (start -1.6 -1.245) (end 1.6 -1.245) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f52687d2-1b9d-422f-a08e-c01557dbc3e3)) - (fp_line (start -1.6 1.245) (end -1.6 -1.245) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c4502d25-c1d1-4393-913f-981049b2e912)) - (fp_line (start 1.6 -1.245) (end 1.6 1.245) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d19add92-7f9a-4c1e-9335-88e1ef6a4add)) - (fp_line (start 1.6 1.245) (end -1.6 1.245) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 50d34efe-79a9-433d-a9ab-3e4500bf242a)) - (pad "1" smd roundrect (at -1.4625 0 270) (size 1.125 2.65) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.222222) - (net 74 "Net-(J7-In)") (pintype "passive") (tstamp 7cd18cdc-737e-4d3a-933b-aea6a0f16131)) - (pad "2" smd roundrect (at 1.4625 0 270) (size 1.125 2.65) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.222222) - (net 90 "Net-(U4C--)") (pintype "passive") (tstamp e3847639-a097-4105-955a-9a4c5f3a4731)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1210_3225Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "custom:Coilcraft_MSS1278T" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70c15f) - (at 79.8 102.8) - (descr "Choke, SMD, 12x12mm 8mm height") - (tags "Choke SMD") - (property "MFN" "Coilcraft") - (property "PN" "MSS1278T-472MLD") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "Inductor, small symbol") - (property "ki_keywords" "inductor choke coil reactor magnetic") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005b0affc6") - (attr smd) - (fp_text reference "L2" (at -7.2 0 90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 7ee6f37d-297b-42f9-ac20-4b708dc4b5ec) - ) - (fp_text value "4.7u" (at 0 7.6) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp c154b481-9939-4abc-a15f-0df72cf11210) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp e06b8850-d805-45df-81cc-3b5cb80ad8af) - ) - (fp_line (start -6.3 -6.3) (end 6.3 -6.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b400f731-6301-484c-8f7b-b082cc2b17ee)) - (fp_line (start -6.3 -3.3) (end -6.3 -6.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 13003d03-e609-40fd-9750-6b12ab8851de)) - (fp_line (start -6.3 6.3) (end -6.3 3.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e5191dbc-3f59-47b2-98dd-dde791ae62e9)) - (fp_line (start 6.3 -6.3) (end 6.3 -3.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8dacb7ed-6dd5-4813-aa78-1052574b02c3)) - (fp_line (start 6.3 3.3) (end 6.3 6.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 207f199d-5517-49dd-93fa-ba93c084b5a8)) - (fp_line (start 6.3 6.3) (end -6.3 6.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 988d2f46-f52b-4b0a-868e-1fd7cc95f64e)) - (fp_line (start -6.86 -6.6) (end 6.86 -6.6) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bf8380e5-f80b-421f-9d01-6c929cc3b5cb)) - (fp_line (start -6.86 6.6) (end -6.86 -6.6) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c0526d47-c8f3-4c04-8520-5a21cb7b0d14)) - (fp_line (start 6.86 -6.6) (end 6.86 6.6) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 41fa09cf-6ddd-4fb7-80de-008bbb74ef74)) - (fp_line (start 6.86 6.6) (end -6.86 6.6) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c3b91117-e8f5-4f45-8612-3d5e5ef3ae05)) - (fp_line (start -6.2 -6.2) (end -6.2 -3.3) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0d6dab19-f3b2-47ba-a571-f2d5e30d8719)) - (fp_line (start -6.2 3.3) (end -6.2 6.2) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2f90e2a6-4e69-45d7-b477-a25790fc2807)) - (fp_line (start -6.2 6.2) (end 6.2 6.2) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 226ab05f-6ced-4cb3-bf7c-acff043c73f1)) - (fp_line (start 6.2 -6.2) (end -6.2 -6.2) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e2ad2671-8ffe-410d-99d6-14d62df17e6a)) - (fp_line (start 6.2 -6.2) (end 6.2 -3.3) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ba781d3c-2900-4e7e-b91f-b116f077fe79)) - (fp_line (start 6.2 6.2) (end 6.2 3.3) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8d5f4048-1833-4763-a9d5-e5e804ea4fc6)) - (pad "1" smd rect (at -4.25 0) (size 4 5.5) (layers "F.Cu" "F.Paste" "F.Mask") - (net 51 "Net-(C2-Pad1)") (pintype "passive") (tstamp b590ce5b-784a-4f6b-84a2-29dd7687ccd1)) - (pad "2" smd rect (at 4.25 0) (size 4 5.5) (layers "F.Cu" "F.Paste" "F.Mask") - (net 5 "Net-(U6-EN{slash}UV)") (pintype "passive") (tstamp f982c61f-c761-432f-b230-28cc7a9719ff)) - (model "${KISYS3DMOD}/Inductors_SMD.3dshapes/L_12x12mm_h8mm.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 4 4 4)) - (rotate (xyz 0 0 0)) - ) - (model "${KISYS3DMOD}/Inductor_SMD.3dshapes/L_Bourns_SRR1260.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70c19b) - (at 89.1 99.6) - (descr "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") - (tags "capacitor") - (property "MFN" "Murata Electronics") - (property "PN" "GRM1885C1H103JA01D") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "Unpolarized capacitor, small symbol") - (property "ki_keywords" "capacitor cap") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005b0ae9b6") - (attr smd) - (fp_text reference "C6" (at 0 -1.43) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 0b747fba-24d9-4c42-b12c-027bb3cc7652) - ) - (fp_text value "10n" (at 0 1.43) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp add694ce-2f5d-4186-bf88-f9d0766c1dc9) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06))) - (tstamp 356e09ef-f8c6-42dd-ad8c-463c9b64f357) - ) - (fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5eed5b3f-ec98-4bea-8c2e-bb330b01f0f1)) - (fp_line (start -0.14058 0.51) (end 0.14058 0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 93b7bb05-7418-43c9-8eb7-734aab87027c)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f1ffd9d4-d674-463d-aa5d-5545b0520fb8)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 98787f8e-eb18-498f-9c1d-a14dff5d492e)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ec5302ed-4f79-4f9c-a58f-564d50072214)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e60aa0ec-a225-42ed-ada1-66538cfc5afc)) - (fp_line (start -0.8 -0.4) (end 0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 81697138-b672-4c89-8903-6eeb666b9e1c)) - (fp_line (start -0.8 0.4) (end -0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 78fb4213-23d3-46b3-9ef4-248ed57bf308)) - (fp_line (start 0.8 -0.4) (end 0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b9990fb3-1c4c-4069-82bf-2154ef8e35cc)) - (fp_line (start 0.8 0.4) (end -0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7d94ce6b-b913-4a16-8953-76575a07e1aa)) - (pad "1" smd roundrect (at -0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp a6d05f34-88ea-4dbb-8ab2-8fc8dea4d990)) - (pad "2" smd roundrect (at 0.775 0) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 6 "Net-(U6-TR{slash}SS)") (pintype "passive") (tstamp 2e2c8a41-500a-45d4-af9a-8f0a186d29d5)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Connector_Coaxial:SMA_Amphenol_132134_Vertical" locked (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70c1e6) - (at 153.1 56.9) - (descr "https://www.amphenolrf.com/downloads/dl/file/id/2187/product/2843/132134_customer_drawing.pdf") - (tags "SMA THT Female Jack Vertical ExtendedLegs") - (property "Config" "") - (property "MFN" "Amphenol") - (property "PN" "901-144-8RFX") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "coaxial connector (BNC, SMA, SMB, SMC, Cinch/RCA, LEMO, ...)") - (property "ki_keywords" "BNC SMA SMB SMC LEMO coaxial connector CINCH RCA") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b0591ff") - (attr through_hole) - (fp_text reference "J16" (at 0 -5) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 35f7becc-b76b-4ee8-8474-52863b8a4b8f) - ) - (fp_text value "Error_Mon" (at 0 5) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 08da15dc-c085-4d36-8cae-95c09a69c0ed) - ) - (fp_text user "${REFERENCE}" (at 0 -5) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 712f6c0e-8e3f-4888-8fb5-49a6f9c2bb27) - ) - (fp_line (start -3.68 -1.8) (end -3.68 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2d76e498-b6a1-4b44-bdc6-e65d2de5d39e)) - (fp_line (start -1.8 -3.68) (end 1.8 -3.68) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3b61e7a2-c1ae-4b53-bdbd-f997f18edba9)) - (fp_line (start -1.8 3.68) (end 1.8 3.68) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c102db9a-792a-4ac7-a6b8-8038d8df9118)) - (fp_line (start 3.68 -1.8) (end 3.68 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f4f77497-4b40-4a64-8049-8e003be6ebf7)) - (fp_line (start -4.17 -4.17) (end -4.17 4.17) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 158ab08b-e0ee-4fb7-a493-21ab020d0365)) - (fp_line (start -4.17 -4.17) (end 4.17 -4.17) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bf4e1d4e-128f-4286-9222-61ec8f97fef9)) - (fp_line (start 4.17 4.17) (end -4.17 4.17) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fc516e95-d4e5-4464-b1c8-4d7a90045beb)) - (fp_line (start 4.17 4.17) (end 4.17 -4.17) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c2d21964-3eea-405c-a072-ba167f742adf)) - (fp_line (start -3.5 -3.5) (end -3.5 3.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0158aaea-a905-4b80-88c6-7f76ec7e5aa4)) - (fp_line (start -3.5 -3.5) (end 3.5 -3.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1966d22e-3673-4c3b-bc3a-6e333fd08c46)) - (fp_line (start -3.5 3.5) (end 3.5 3.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7a96d543-90a5-49ae-a215-e33cf27de803)) - (fp_line (start 3.5 -3.5) (end 3.5 3.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3560500d-dc68-4805-b245-6a1ffc78ef6b)) - (fp_circle (center 0 0) (end 3.175 0) - (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp a70275e5-ebb0-4e60-a4af-f92b7678946b)) - (pad "1" thru_hole circle locked (at 0 0) (size 2.05 2.05) (drill 1.5) (layers "*.Cu" "*.Mask") - (net 79 "Net-(J16-In)") (pinfunction "In") (pintype "passive") (tstamp 5b7ed0f3-589a-46b2-a420-32c88831de9d)) - (pad "2" thru_hole circle locked (at -2.54 -2.54) (size 2.25 2.25) (drill 1.7) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "Ext") (pintype "passive") (tstamp e49e53cd-50cd-4828-9a6c-e0c059a7976d)) - (pad "2" thru_hole circle locked (at -2.54 2.54) (size 2.25 2.25) (drill 1.7) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "Ext") (pintype "passive") (tstamp 10158361-57a2-46fe-abd0-6f31daaf60d9)) - (pad "2" thru_hole circle locked (at 2.54 -2.54) (size 2.25 2.25) (drill 1.7) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "Ext") (pintype "passive") (tstamp f6da4633-7b03-45a9-bc67-c61cfcfedaaf)) - (pad "2" thru_hole circle locked (at 2.54 2.54) (size 2.25 2.25) (drill 1.7) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "Ext") (pintype "passive") (tstamp 6c69876e-e62c-4e8f-87a6-a4cbece8d545)) - (model "${KICAD6_3DMODEL_DIR}/Connector_Coaxial.3dshapes/SMA_Amphenol_132291-12_Vertical.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Connector_DIN:DIN41612_C_2x32_Male_Horizontal_THT" locked (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70c30a) - (at 55.36 124.37 90) - (descr "DIN41612 connector, type C, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf") - (tags "DIN 41612 IEC 60603 C") - (property "Config" "") - (property "MFN" "Harting") - (property "PN" "09031646921") - (property "Sheetfile" "RedPitaya_Lockbox.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "DIN41612 connector, double row (AC), 02x32, script generated (kicad-library-utils/schlib/autogen/connector/)") - (property "ki_keywords" "connector") - (path "/00000000-0000-0000-0000-00005b08a8e7") - (attr through_hole) - (fp_text reference "J1" (at -8.93 -2.76 180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp bc91aaf3-54b9-4ba2-a493-1dde2d07b874) - ) - (fp_text value "C64AC" (at 39.37 7.62 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 82e29af2-4f51-4a77-84d0-626235b64249) - ) - (fp_text user "Board edge" (at 39.37 -7.3 90) (layer "Cmts.User") - (effects (font (size 0.7 0.7) (thickness 0.1))) - (tstamp 0f8b8cbe-b57f-4491-af73-73ef6dfc35b4) - ) - (fp_text user "${REFERENCE}" (at 39.37 -2.54 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 4eba905a-aab8-4092-afe3-50d63b8b0cb4) - ) - (fp_line (start -7.89 -5.3) (end -7.89 0.26) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9a3053c8-ea30-4dbf-a3b0-080141556efc)) - (fp_line (start -7.89 0.26) (end -2.37 0.26) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4c1272b4-9890-4544-a3e4-acc666b2b6e6)) - (fp_line (start -2.371 -0.74) (end -1.095 -0.74) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 721fd527-2de2-4092-8e92-0ab48368131d)) - (fp_line (start -2.37 0.26) (end -2.37 -0.74) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9258b3ee-ce96-40c6-ba1c-1362db52536e)) - (fp_line (start -1.695 -0.3) (end -1.695 0.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a9123544-adc7-4378-a332-d4d4baf891d0)) - (fp_line (start -1.695 0.3) (end -1.095 0) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f58ecb4f-d066-4a81-8361-a4962b2e7af8)) - (fp_line (start -1.095 0) (end -1.695 -0.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e7e9ac78-d8f6-4c90-a38f-8ef8439a8e58)) - (fp_line (start 1.095 -0.74) (end 1.671 -0.74) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a80ea6d2-51e8-42be-988d-5ecdce6078ae)) - (fp_line (start 3.41 -0.74) (end 4.211 -0.74) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 119871b8-a32d-44aa-92fb-f7b6dabaca8e)) - (fp_line (start 5.95 -0.74) (end 6.751 -0.74) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e2d0aa4f-85ae-4be5-a305-55d8fa9a7312)) - (fp_line (start 8.49 -0.74) (end 9.291 -0.74) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 314e5a85-37e6-4245-b9e1-c5ea974006db)) - (fp_line (start 11.03 -0.74) (end 11.831 -0.74) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aed70ba6-8312-4b5b-9f06-bee45bcc6c55)) - (fp_line (start 13.57 -0.74) (end 14.371 -0.74) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 406bdcf4-656e-41b2-a0c1-ac83d93c2c98)) - (fp_line (start 16.11 -0.74) (end 16.911 -0.74) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b9527dda-075d-4612-a861-1129eaf69167)) - (fp_line (start 18.65 -0.74) (end 19.451 -0.74) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1d4fdd7d-c714-46b6-92a8-37f73f6f84b5)) - (fp_line (start 21.19 -0.74) (end 21.991 -0.74) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 257359f3-9a26-4852-a155-e8e5a836b922)) - (fp_line (start 23.73 -0.74) (end 24.531 -0.74) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 50b4374d-db78-4249-9b72-ca47444a0b42)) - (fp_line (start 26.27 -0.74) (end 27.071 -0.74) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 012109f2-e964-4f30-aec6-1b4ece2e45ee)) - (fp_line (start 28.81 -0.74) (end 29.611 -0.74) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9fa48ea9-c272-42ca-b67a-cb846b88fe89)) - (fp_line (start 31.35 -0.74) (end 32.151 -0.74) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 890ee27d-2a2a-4ce8-8190-04a61647ef4d)) - (fp_line (start 33.89 -0.74) (end 34.691 -0.74) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 69cb1b97-27f2-4fb3-9ce4-1e0c36e072c0)) - (fp_line (start 36.43 -0.74) (end 37.231 -0.74) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3ca4aad3-b716-4761-8f80-6cb499c5c9ae)) - (fp_line (start 38.97 -0.74) (end 39.771 -0.74) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 860ef08f-b8e9-4b06-90b0-5ad64cf733d4)) - (fp_line (start 41.51 -0.74) (end 42.311 -0.74) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 08ff8d5d-086d-46cd-acaa-9201c5309333)) - (fp_line (start 44.05 -0.74) (end 44.851 -0.74) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d8228a28-954b-421a-a515-fa7bb4387288)) - (fp_line (start 46.59 -0.74) (end 47.391 -0.74) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bac86164-c752-4d42-8b3f-2aea4c79b524)) - (fp_line (start 49.13 -0.74) (end 49.931 -0.74) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ac3c7bde-3475-47b1-a517-ff5fe5ac6d19)) - (fp_line (start 51.67 -0.74) (end 52.471 -0.74) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5f8f964d-be66-4be8-9c9a-9af9b7a3be88)) - (fp_line (start 54.21 -0.74) (end 55.011 -0.74) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 02d38567-c67a-448c-baaa-98994afbdf8a)) - (fp_line (start 56.75 -0.74) (end 57.551 -0.74) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b9e75bbd-55ee-48a6-be65-ac2c565f01f0)) - (fp_line (start 59.29 -0.74) (end 60.091 -0.74) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2413de64-ad19-4096-93cc-b15d4a977d1c)) - (fp_line (start 61.83 -0.74) (end 62.631 -0.74) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 519c055e-4db7-4286-8702-bcaca8aff084)) - (fp_line (start 64.37 -0.74) (end 65.171 -0.74) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b5332fcd-833f-44a7-8691-363ddb1d4ac2)) - (fp_line (start 66.91 -0.74) (end 67.711 -0.74) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ac8211a7-3fe6-48b2-928c-ff3a95f6a6f9)) - (fp_line (start 69.45 -0.74) (end 70.251 -0.74) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 49c82ff4-8f2f-4068-814e-c94caa2dc26e)) - (fp_line (start 71.99 -0.74) (end 72.791 -0.74) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4b085754-63a1-4789-9dfd-d925dd461958)) - (fp_line (start 74.53 -0.74) (end 75.331 -0.74) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b933ba38-9a4b-4702-820e-101b7888264d)) - (fp_line (start 77.07 -0.74) (end 77.871 -0.74) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp caebb55e-da30-4785-8911-f183bbe3f15e)) - (fp_line (start 79.61 -0.74) (end 81.11 -0.74) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7b12caca-38ad-4fd4-afc7-c2ee4db13196)) - (fp_line (start 81.11 0.26) (end 81.11 -0.74) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 20b70d60-fde2-46bf-a1e9-48994af78241)) - (fp_line (start 86.63 -5.3) (end 86.63 0.26) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bd9066e6-72b4-41d1-87bd-fd234ed05bbf)) - (fp_line (start 86.63 0.26) (end 81.11 0.26) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2fa5d710-cfac-4045-b2aa-3e47840c4e3c)) - (fp_line (start -7.63 -5.3) (end 86.37 -5.3) - (stroke (width 0.08) (type solid)) (layer "Dwgs.User") (tstamp 2ddd9f2e-ee4e-4c41-a4a1-d3187dbc4310)) - (fp_line (start 39.17 -5.9) (end 39.37 -5.4) - (stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp 23f871ba-5c1a-439f-b202-46d76b615773)) - (fp_line (start 39.37 -5.4) (end 39.37 -6.7) - (stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp 35f18358-4756-4103-b780-d8f0aa64aec9)) - (fp_line (start 39.37 -5.4) (end 39.57 -5.9) - (stroke (width 0.1) (type solid)) (layer "Cmts.User") (tstamp 42c8ad5b-6b10-462d-b35e-bd5347ad7e24)) - (fp_line (start -8.13 -13.23) (end -8.13 0.5) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 083f3b80-93a2-4047-ad00-6f6b2d4b58aa)) - (fp_line (start -8.13 0.5) (end -1.27 0.5) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7353e19b-eee6-40c5-8e17-3f3b5dd6f12a)) - (fp_line (start -1.27 0.5) (end -1.27 6.36) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 720f5e85-0438-4da2-9984-01d4e8012bcd)) - (fp_line (start -1.27 6.36) (end 80.02 6.36) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d0612a04-bd90-4d0f-af6e-82a7efb1104d)) - (fp_line (start 80.02 0.5) (end 86.87 0.5) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bb8b65e1-fa95-4591-9b86-24b40d9445ba)) - (fp_line (start 80.02 6.36) (end 80.02 0.5) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d245e73f-41ae-4a92-97c6-5693d3c25711)) - (fp_line (start 86.87 -13.23) (end -8.13 -13.23) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 22c2a09d-8540-4d17-a366-73c521f11865)) - (fp_line (start 86.87 0.5) (end 86.87 -13.23) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 75871ae7-1055-420e-aaec-5487ee2bf5cc)) - (fp_line (start -7.63 -6.74) (end -7.63 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5b720e3c-532c-472d-87d9-4c7c8159b8ec)) - (fp_line (start -7.63 0) (end -2.63 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 108ecfaf-ae33-4088-8d9a-02670a3f8abd)) - (fp_line (start -4.38 -12.74) (end -4.38 -6.74) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 95114b66-f5c4-428b-ac33-2760f9ab7209)) - (fp_line (start -4.38 -6.74) (end -7.63 -6.74) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 00a76287-580a-4086-a0d8-f0d95dd252ce)) - (fp_line (start -2.63 -1) (end 81.37 -1) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fa12585b-9c4b-4364-88c3-66cea5eaa81a)) - (fp_line (start -2.63 0) (end -2.63 -1) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 10e72b9e-5bb8-419d-8839-c3a0269785d6)) - (fp_line (start -0.5 -1.9) (end 0.5 -1.9) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8019df96-cf6d-44de-aa4b-fe2b6349ecf4)) - (fp_line (start 0 -1.2) (end -0.5 -1.9) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2fec4f13-07ed-401e-861c-b18056e533c4)) - (fp_line (start 0.5 -1.9) (end 0 -1.2) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6752bfed-f07e-41d6-a65c-6dfc732df50e)) - (fp_line (start 81.37 -1) (end 81.37 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 31114f67-43b2-4070-9347-e024977c3b67)) - (fp_line (start 81.37 0) (end 86.37 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b9a62f53-658f-440d-98e4-1d0279c8e8e7)) - (fp_line (start 83.12 -12.74) (end -4.38 -12.74) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 59c9cc6a-290e-4d10-8384-a727abed5fff)) - (fp_line (start 83.12 -6.74) (end 83.12 -12.74) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 66b5649d-601f-406d-82fa-f29af1cd28c0)) - (fp_line (start 86.37 -6.74) (end 83.12 -6.74) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 60828ced-53cb-493e-af79-7d9b9b8e2d16)) - (fp_line (start 86.37 0) (end 86.37 -6.74) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4ed04d43-df7c-4ba8-b687-41512dc57213)) - (pad "" np_thru_hole circle locked (at -5.08 -2.54 90) (size 2.85 2.85) (drill 2.85) (layers "*.Cu" "*.Mask") (tstamp f5654220-92d8-4805-96df-13b149582d9e)) - (pad "" np_thru_hole circle locked (at 83.82 -2.54 90) (size 2.85 2.85) (drill 2.85) (layers "*.Cu" "*.Mask") (tstamp 5db0b8b9-3bc9-449f-8add-b646622f3ccd)) - (pad "a1" thru_hole roundrect locked (at 0 0 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.16129) - (net 125 "Net-(J1-Pin_a1)") (pinfunction "Pin_a1") (pintype "passive") (tstamp c93cde50-183a-4cd4-bc80-2676b154d1ee)) - (pad "a2" thru_hole circle locked (at 2.54 0 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 126 "Net-(J1-Pin_a2)") (pinfunction "Pin_a2") (pintype "passive") (tstamp 0d8394f5-d15c-45ec-a717-197e40f3a865)) - (pad "a3" thru_hole circle locked (at 5.08 0 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 16 "unconnected-(J1-Pin_a3-Pada3)") (pinfunction "Pin_a3") (pintype "passive+no_connect") (tstamp 3303ef11-f2a5-4056-af70-a8ea7e53772d)) - (pad "a4" thru_hole circle locked (at 7.62 0 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 17 "unconnected-(J1-Pin_a4-Pada4)") (pinfunction "Pin_a4") (pintype "passive+no_connect") (tstamp ad76ce96-76dd-4a4a-bb7a-3233dd394842)) - (pad "a5" thru_hole circle locked (at 10.16 0 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 20 "unconnected-(J1-Pin_a5-Pada5)") (pinfunction "Pin_a5") (pintype "passive+no_connect") (tstamp d11647b8-a3f0-43eb-973c-2306136d005e)) - (pad "a6" thru_hole circle locked (at 12.7 0 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 22 "unconnected-(J1-Pin_a6-Pada6)") (pinfunction "Pin_a6") (pintype "passive+no_connect") (tstamp daa87269-115c-4a58-aeff-798e272c44df)) - (pad "a7" thru_hole circle locked (at 15.24 0 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 23 "unconnected-(J1-Pin_a7-Pada7)") (pinfunction "Pin_a7") (pintype "passive+no_connect") (tstamp 491caaa1-c10d-4328-86ae-31b15f823011)) - (pad "a8" thru_hole circle locked (at 17.78 0 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 25 "unconnected-(J1-Pin_a8-Pada8)") (pinfunction "Pin_a8") (pintype "passive+no_connect") (tstamp 41b6ddee-e903-4867-914f-18aaeadb494d)) - (pad "a9" thru_hole circle locked (at 20.32 0 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 26 "unconnected-(J1-Pin_a9-Pada9)") (pinfunction "Pin_a9") (pintype "passive+no_connect") (tstamp d009cd83-3371-45b6-b66b-6d6db2ea3230)) - (pad "a10" thru_hole circle locked (at 22.86 0 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 27 "unconnected-(J1-Pin_a10-Pada10)") (pinfunction "Pin_a10") (pintype "passive+no_connect") (tstamp 2c32bcef-5c5d-454f-816c-8ce50e1947e3)) - (pad "a11" thru_hole circle locked (at 25.4 0 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 28 "unconnected-(J1-Pin_a11-Pada11)") (pinfunction "Pin_a11") (pintype "passive+no_connect") (tstamp f136fc77-03bf-40e0-bfb5-4ec09a8fb3d6)) - (pad "a12" thru_hole circle locked (at 27.94 0 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 29 "unconnected-(J1-Pin_a12-Pada12)") (pinfunction "Pin_a12") (pintype "passive+no_connect") (tstamp 73de970f-5622-4bfb-8691-c84fcab42161)) - (pad "a13" thru_hole circle locked (at 30.48 0 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 30 "unconnected-(J1-Pin_a13-Pada13)") (pinfunction "Pin_a13") (pintype "passive+no_connect") (tstamp ebdd421c-f0eb-49cf-bfe3-03c98376a38e)) - (pad "a14" thru_hole circle locked (at 33.02 0 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 31 "unconnected-(J1-Pin_a14-Pada14)") (pinfunction "Pin_a14") (pintype "passive+no_connect") (tstamp 34e30106-d7b6-44f6-83e4-5dcafa3f31e0)) - (pad "a15" thru_hole circle locked (at 35.56 0 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 127 "Net-(J1-Pin_a15)") (pinfunction "Pin_a15") (pintype "passive") (tstamp 4d61d84c-4ab2-428a-bf14-2bf31d435232)) - (pad "a16" thru_hole circle locked (at 38.1 0 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 128 "Net-(J1-Pin_a16)") (pinfunction "Pin_a16") (pintype "passive") (tstamp 3822ca02-e390-4897-94f1-3538c077f4d4)) - (pad "a17" thru_hole circle locked (at 40.64 0 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 129 "Net-(J1-Pin_a17)") (pinfunction "Pin_a17") (pintype "passive") (tstamp 630cc970-3ea6-47b8-add0-69f1ec0ac2f5)) - (pad "a18" thru_hole circle locked (at 43.18 0 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 130 "Net-(J1-Pin_a18)") (pinfunction "Pin_a18") (pintype "passive") (tstamp 35e1469b-6f80-4ae6-9bc0-e5cf2416242e)) - (pad "a19" thru_hole circle locked (at 45.72 0 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 32 "unconnected-(J1-Pin_a19-Pada19)") (pinfunction "Pin_a19") (pintype "passive+no_connect") (tstamp fa6da63a-a7db-4f41-b9b3-bc6d4ccdc58d)) - (pad "a20" thru_hole circle locked (at 48.26 0 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 33 "unconnected-(J1-Pin_a20-Pada20)") (pinfunction "Pin_a20") (pintype "passive+no_connect") (tstamp cc174729-0c9c-4016-86e0-35b8f2da9292)) - (pad "a21" thru_hole circle locked (at 50.8 0 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 34 "unconnected-(J1-Pin_a21-Pada21)") (pinfunction "Pin_a21") (pintype "passive+no_connect") (tstamp b4505a1f-d20c-466e-9a93-df28b6964984)) - (pad "a22" thru_hole circle locked (at 53.34 0 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 35 "unconnected-(J1-Pin_a22-Pada22)") (pinfunction "Pin_a22") (pintype "passive+no_connect") (tstamp b29d0dcf-ab04-4720-9b16-273a3cf58bf5)) - (pad "a23" thru_hole circle locked (at 55.88 0 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 36 "unconnected-(J1-Pin_a23-Pada23)") (pinfunction "Pin_a23") (pintype "passive+no_connect") (tstamp 27ad53ab-aa28-4db7-92ad-f09fbacc4285)) - (pad "a24" thru_hole circle locked (at 58.42 0 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 37 "unconnected-(J1-Pin_a24-Pada24)") (pinfunction "Pin_a24") (pintype "passive+no_connect") (tstamp 0b009535-560c-41a0-a948-0abb1b68731e)) - (pad "a25" thru_hole circle locked (at 60.96 0 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 38 "unconnected-(J1-Pin_a25-Pada25)") (pinfunction "Pin_a25") (pintype "passive+no_connect") (tstamp a94fae93-d1af-45dd-9a25-78f6eb64a7f5)) - (pad "a26" thru_hole circle locked (at 63.5 0 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 39 "unconnected-(J1-Pin_a26-Pada26)") (pinfunction "Pin_a26") (pintype "passive+no_connect") (tstamp 389943c1-3018-4490-9c5e-6b0dfe1ae4f9)) - (pad "a27" thru_hole circle locked (at 66.04 0 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 40 "unconnected-(J1-Pin_a27-Pada27)") (pinfunction "Pin_a27") (pintype "passive+no_connect") (tstamp 65da5c84-8e3a-4587-bb1d-9d1ade75fbbf)) - (pad "a28" thru_hole circle locked (at 68.58 0 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 41 "unconnected-(J1-Pin_a28-Pada28)") (pinfunction "Pin_a28") (pintype "passive+no_connect") (tstamp cf9955ae-6866-416f-a275-00482c0fc746)) - (pad "a29" thru_hole circle locked (at 71.12 0 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 42 "unconnected-(J1-Pin_a29-Pada29)") (pinfunction "Pin_a29") (pintype "passive+no_connect") (tstamp c52e796f-5bcf-4bea-9423-e7bcd7e9bb47)) - (pad "a30" thru_hole circle locked (at 73.66 0 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 3 "/Supply_Ref/-15V") (pinfunction "Pin_a30") (pintype "passive") (tstamp e60be145-43a1-41eb-9035-bc1e686a12ba)) - (pad "a31" thru_hole circle locked (at 76.2 0 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 131 "Net-(J1-Pin_a31)") (pinfunction "Pin_a31") (pintype "passive") (tstamp ddb43636-3bf7-4ac4-90ab-00c888cedf8d)) - (pad "a32" thru_hole circle locked (at 78.74 0 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 132 "Net-(J1-Pin_a32)") (pinfunction "Pin_a32") (pintype "passive") (tstamp 644b07b6-9c2f-4108-8d3d-aa455ede3576)) - (pad "c1" thru_hole circle locked (at 0 5.08 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 125 "Net-(J1-Pin_a1)") (pinfunction "Pin_c1") (pintype "passive") (tstamp fa54d988-5e97-4996-bab8-8dff23d18d43)) - (pad "c2" thru_hole circle locked (at 2.54 5.08 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 133 "Net-(J1-Pin_c2)") (pinfunction "Pin_c2") (pintype "passive") (tstamp 6cf3bfa3-aaa8-466f-984d-b7a8428350b4)) - (pad "c3" thru_hole circle locked (at 5.08 5.08 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 45 "unconnected-(J1-Pin_c3-Padc3)") (pinfunction "Pin_c3") (pintype "passive+no_connect") (tstamp 36274bce-dc1c-4190-bd5c-750a573d6919)) - (pad "c4" thru_hole circle locked (at 7.62 5.08 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 46 "unconnected-(J1-Pin_c4-Padc4)") (pinfunction "Pin_c4") (pintype "passive+no_connect") (tstamp 27620c36-dcbd-46fc-8af8-4a6c8e8be03c)) - (pad "c5" thru_hole circle locked (at 10.16 5.08 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 47 "unconnected-(J1-Pin_c5-Padc5)") (pinfunction "Pin_c5") (pintype "passive+no_connect") (tstamp dd6ce11e-7083-4953-b82e-4bcbd56c0a0a)) - (pad "c6" thru_hole circle locked (at 12.7 5.08 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 48 "unconnected-(J1-Pin_c6-Padc6)") (pinfunction "Pin_c6") (pintype "passive+no_connect") (tstamp b29b7748-5f36-497c-9477-82b6082d17b2)) - (pad "c7" thru_hole circle locked (at 15.24 5.08 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 49 "unconnected-(J1-Pin_c7-Padc7)") (pinfunction "Pin_c7") (pintype "passive+no_connect") (tstamp fb3242f1-7f20-478d-a0de-af5f0068881f)) - (pad "c8" thru_hole circle locked (at 17.78 5.08 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 50 "unconnected-(J1-Pin_c8-Padc8)") (pinfunction "Pin_c8") (pintype "passive+no_connect") (tstamp 297e87df-2887-4129-989e-f19c0fe91990)) - (pad "c9" thru_hole circle locked (at 20.32 5.08 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 52 "unconnected-(J1-Pin_c9-Padc9)") (pinfunction "Pin_c9") (pintype "passive+no_connect") (tstamp 3a337dc4-de01-4033-9a64-8e9289a3d55d)) - (pad "c10" thru_hole circle locked (at 22.86 5.08 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 53 "unconnected-(J1-Pin_c10-Padc10)") (pinfunction "Pin_c10") (pintype "passive+no_connect") (tstamp 4212e33d-15d2-4afa-88d4-c86d615267bf)) - (pad "c11" thru_hole circle locked (at 25.4 5.08 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 54 "unconnected-(J1-Pin_c11-Padc11)") (pinfunction "Pin_c11") (pintype "passive+no_connect") (tstamp 73c510e5-fbbd-4592-ad52-8a758ba11793)) - (pad "c12" thru_hole circle locked (at 27.94 5.08 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 55 "unconnected-(J1-Pin_c12-Padc12)") (pinfunction "Pin_c12") (pintype "passive+no_connect") (tstamp db258cb4-6a0b-46f8-acdb-a37cad2dd6e4)) - (pad "c13" thru_hole circle locked (at 30.48 5.08 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 56 "unconnected-(J1-Pin_c13-Padc13)") (pinfunction "Pin_c13") (pintype "passive+no_connect") (tstamp 59886e98-fdc8-4f36-a07b-cd5eaaea44bf)) - (pad "c14" thru_hole circle locked (at 33.02 5.08 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 58 "unconnected-(J1-Pin_c14-Padc14)") (pinfunction "Pin_c14") (pintype "passive+no_connect") (tstamp eac21df6-785a-4e87-a722-7bf8dc8b5299)) - (pad "c15" thru_hole circle locked (at 35.56 5.08 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 134 "Net-(J1-Pin_c15)") (pinfunction "Pin_c15") (pintype "passive") (tstamp f433d9ad-97f6-47a8-8d2b-eb9c0eafb32c)) - (pad "c16" thru_hole circle locked (at 38.1 5.08 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 135 "Net-(J1-Pin_c16)") (pinfunction "Pin_c16") (pintype "passive") (tstamp e23ec65d-bc7e-4189-906c-0653b02a2ace)) - (pad "c17" thru_hole circle locked (at 40.64 5.08 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 136 "Net-(J1-Pin_c17)") (pinfunction "Pin_c17") (pintype "passive") (tstamp ec64c3b9-85c6-4f8e-91c9-6e04cc7e231a)) - (pad "c18" thru_hole circle locked (at 43.18 5.08 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 137 "Net-(J1-Pin_c18)") (pinfunction "Pin_c18") (pintype "passive") (tstamp ab5d1e66-4dc3-46f6-9819-d5b25e530ad5)) - (pad "c19" thru_hole circle locked (at 45.72 5.08 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 59 "unconnected-(J1-Pin_c19-Padc19)") (pinfunction "Pin_c19") (pintype "passive+no_connect") (tstamp 924a0411-c2da-443b-9f81-d387fcb3da72)) - (pad "c20" thru_hole circle locked (at 48.26 5.08 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 60 "unconnected-(J1-Pin_c20-Padc20)") (pinfunction "Pin_c20") (pintype "passive+no_connect") (tstamp 5361b152-10b8-4ab2-83ae-f29a3a496801)) - (pad "c21" thru_hole circle locked (at 50.8 5.08 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 61 "unconnected-(J1-Pin_c21-Padc21)") (pinfunction "Pin_c21") (pintype "passive+no_connect") (tstamp 9971f6d9-995b-48ab-ab50-dab4e2dbcf82)) - (pad "c22" thru_hole circle locked (at 53.34 5.08 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 62 "unconnected-(J1-Pin_c22-Padc22)") (pinfunction "Pin_c22") (pintype "passive+no_connect") (tstamp 04269eab-5aa2-4cbd-9118-760ffd73b05a)) - (pad "c23" thru_hole circle locked (at 55.88 5.08 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 63 "unconnected-(J1-Pin_c23-Padc23)") (pinfunction "Pin_c23") (pintype "passive+no_connect") (tstamp 38447069-80cd-40db-8ddb-74ec272db56b)) - (pad "c24" thru_hole circle locked (at 58.42 5.08 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 64 "unconnected-(J1-Pin_c24-Padc24)") (pinfunction "Pin_c24") (pintype "passive+no_connect") (tstamp 6a89b31b-1750-4cb3-b28c-31d66251adaf)) - (pad "c25" thru_hole circle locked (at 60.96 5.08 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 65 "unconnected-(J1-Pin_c25-Padc25)") (pinfunction "Pin_c25") (pintype "passive+no_connect") (tstamp c5713297-acb9-450a-836a-1b90ec0c67e9)) - (pad "c26" thru_hole circle locked (at 63.5 5.08 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 66 "unconnected-(J1-Pin_c26-Padc26)") (pinfunction "Pin_c26") (pintype "passive+no_connect") (tstamp 82b5f8b0-4426-4ecf-8078-c604822be9af)) - (pad "c27" thru_hole circle locked (at 66.04 5.08 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 68 "unconnected-(J1-Pin_c27-Padc27)") (pinfunction "Pin_c27") (pintype "passive+no_connect") (tstamp f3f73344-f7c6-4e0d-aed7-4f12ecdbe985)) - (pad "c28" thru_hole circle locked (at 68.58 5.08 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 69 "unconnected-(J1-Pin_c28-Padc28)") (pinfunction "Pin_c28") (pintype "passive+no_connect") (tstamp d2235437-fd5b-4103-af9f-ea11f7f23c27)) - (pad "c29" thru_hole circle locked (at 71.12 5.08 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 70 "unconnected-(J1-Pin_c29-Padc29)") (pinfunction "Pin_c29") (pintype "passive+no_connect") (tstamp 8c790403-e2de-4e78-ae86-b45d2854e70d)) - (pad "c30" thru_hole circle locked (at 73.66 5.08 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 3 "/Supply_Ref/-15V") (pinfunction "Pin_c30") (pintype "passive") (tstamp 56c4aac0-8cee-4e41-ba7b-fb1ddd8eaace)) - (pad "c31" thru_hole circle locked (at 76.2 5.08 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 131 "Net-(J1-Pin_a31)") (pinfunction "Pin_c31") (pintype "passive") (tstamp 8f76de1f-361a-4892-b0f8-396a8a59e8bd)) - (pad "c32" thru_hole circle locked (at 78.74 5.08 90) (size 1.55 1.55) (drill 1) (layers "*.Cu" "*.Mask") - (net 132 "Net-(J1-Pin_a32)") (pinfunction "Pin_c32") (pintype "passive") (tstamp c3097129-3abe-4bb7-b36e-b25dc9630e56)) - (model "${KIPRJMOD}/3D_models/DIN41612_C_2x32_Male_Horizontal_THT.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Package_SO:MSOP-12-1EP_3x4mm_P0.65mm_EP1.65x2.85mm" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70c3d8) - (at 70.8975 48.31125) - (descr "MSOP, 12 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3652fe.pdf#page=24), generated with kicad-footprint-generator ipc_gullwing_generator.py") - (tags "MSOP SO") - (property "MFN" "Analog Devices") - (property "PN" "LT3094EMSE#PBF") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "-500mA, Adjustable, Ultralow Noise, Ultrahigh PSRR RF Negative Linear Regulator, MSOP-12") - (property "ki_keywords" "linear negative voltage regulator low-noise") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005cd42b69") - (attr smd) - (fp_text reference "U2" (at 0 -3.05) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 73436d79-6190-4553-8b6c-aa95176c41d7) - ) - (fp_text value "LT3094EMSE" (at 0 3.05) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 3d878028-900c-4c83-a177-8c4b76142154) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.6 0.6) (thickness 0.15))) - (tstamp ec653a8b-7503-487f-b451-e8eb29a65fd6) - ) - (fp_line (start 0 -2.11) (end -2.875 -2.11) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 540cfb88-b67c-4430-a575-955dd4d8157a)) - (fp_line (start 0 -2.11) (end 1.5 -2.11) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f2b148f8-4b3f-469a-b449-50b9f0c7dcd7)) - (fp_line (start 0 2.11) (end -1.5 2.11) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fc631fe1-7684-4609-a073-a1b6da3a79f5)) - (fp_line (start 0 2.11) (end 1.5 2.11) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 12ba13a2-1549-4e0c-9c61-0e66b6168e95)) - (fp_line (start -3.12 -2.25) (end -3.12 2.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2a2c60ad-ecf9-423d-b6c7-8b984308c96c)) - (fp_line (start -3.12 2.25) (end 3.12 2.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 77ec5483-dd52-48e1-8fe6-8ef310241608)) - (fp_line (start 3.12 -2.25) (end -3.12 -2.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ecca6523-af51-45cd-b624-0d9e9d501c5b)) - (fp_line (start 3.12 2.25) (end 3.12 -2.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f0db932f-97c4-4dc0-b2cd-67b74a59e6e1)) - (fp_line (start -1.5 -1.25) (end -0.75 -2) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4e7ffd65-900a-4bb9-bb80-7bbb86f91d97)) - (fp_line (start -1.5 2) (end -1.5 -1.25) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 294281a4-31b0-430c-a733-def6265210c6)) - (fp_line (start -0.75 -2) (end 1.5 -2) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f7e492ce-1ebd-4856-9628-e5dce6312135)) - (fp_line (start 1.5 -2) (end 1.5 2) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e3509641-c58c-4405-bb13-8f65e65b1b33)) - (fp_line (start 1.5 2) (end -1.5 2) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bb71625e-ae67-4130-a9f1-924d19759987)) - (pad "" smd roundrect (at -0.41 -0.71) (size 0.67 1.15) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 998d1a54-c432-4e03-abc6-641092142d88)) - (pad "" smd roundrect (at -0.41 0.71) (size 0.67 1.15) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 752912b5-51d9-4e8f-826d-52972260015c)) - (pad "" smd roundrect (at 0.41 -0.71) (size 0.67 1.15) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 9d339074-fc03-40da-8482-a652714bc9fb)) - (pad "" smd roundrect (at 0.41 0.71) (size 0.67 1.15) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 7cf3e72a-26ef-48b7-a73e-d5be53997e0c)) - (pad "1" smd roundrect (at -2.15 -1.625) (size 1.45 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 3 "/Supply_Ref/-15V") (pinfunction "IN") (pintype "power_in") (tstamp 4dbaeefb-b3cb-45f0-a779-f826cee87c3c)) - (pad "2" smd roundrect (at -2.15 -0.975) (size 1.45 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 3 "/Supply_Ref/-15V") (pinfunction "IN") (pintype "passive") (tstamp 343a35a9-4e0a-4480-9e09-f8d676669077)) - (pad "3" smd roundrect (at -2.15 -0.325) (size 1.45 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 3 "/Supply_Ref/-15V") (pinfunction "EN/UV") (pintype "input") (tstamp a9696c6a-0f3d-45ed-82f6-9db27c7f614a)) - (pad "4" smd roundrect (at -2.15 0.325) (size 1.45 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 115 "unconnected-(U2-PG-Pad4)") (pinfunction "PG") (pintype "open_collector+no_connect") (tstamp 40547877-e409-4a78-aa47-0907f39af530)) - (pad "5" smd roundrect (at -2.15 0.975) (size 1.45 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 3 "/Supply_Ref/-15V") (pinfunction "PGFB") (pintype "input") (tstamp 0c5f4b73-942a-42eb-ac60-499df965cd3b)) - (pad "6" smd roundrect (at -2.15 1.625) (size 1.45 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pinfunction "ILIM") (pintype "passive") (tstamp 2922f1f2-3b12-47ac-ac07-9595fd49e1a5)) - (pad "7" smd roundrect (at 2.15 1.625) (size 1.45 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 116 "unconnected-(U2-VIOC-Pad7)") (pinfunction "VIOC") (pintype "passive+no_connect") (tstamp 79b21017-15d3-4bac-87b4-b40b3067a1e4)) - (pad "8" smd roundrect (at 2.15 0.975) (size 1.45 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 9 "Net-(U2-SET)") (pinfunction "SET") (pintype "passive") (tstamp 07518ad8-3f18-487d-ab75-1949712bb1de)) - (pad "9" smd roundrect (at 2.15 0.325) (size 1.45 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp dca05ddf-b8ed-4f46-a441-218d5444449d)) - (pad "10" smd roundrect (at 2.15 -0.325) (size 1.45 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 19 "/Input_Output_Module/-12V") (pinfunction "OUTS") (pintype "input") (tstamp e3005ce3-574a-4b88-b04a-b4d00453e00a)) - (pad "11" smd roundrect (at 2.15 -0.975) (size 1.45 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 19 "/Input_Output_Module/-12V") (pinfunction "OUT") (pintype "power_out") (tstamp 7e41c023-193d-4fa1-a652-804ec01997eb)) - (pad "12" smd roundrect (at 2.15 -1.625) (size 1.45 0.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 19 "/Input_Output_Module/-12V") (pinfunction "OUT") (pintype "passive") (tstamp bdb8f5eb-f443-439c-a935-b4973d88f1f1)) - (pad "13" smd rect (at 0 0) (size 1.65 2.85) (layers "F.Cu" "F.Mask") - (net 3 "/Supply_Ref/-15V") (pinfunction "IN") (pintype "passive") (tstamp 7ac75173-e06e-43a8-b1b4-7ec0aa2f214f)) - (model "${KISYS3DMOD}/Package_SO.3dshapes/MSOP-12-1EP_3x4mm_P0.65mm_EP1.65x2.85mm.wrl" - (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" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70c435) - (at 69.4 61.2 90) - (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 "Alternative" "LT1236CIS8-10#PBF") - (property "MFN" "Analog Devices") - (property "PN" "LT1236ACS8-10#PBF") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "10V Precision Reference") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005cd3a02b") - (attr smd) - (fp_text reference "U3" (at 0 -3.5 90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp a19d7669-cb03-4492-abdf-82c9d9356ec1) - ) - (fp_text value "LT1236-10" (at 0 3.5 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 8ce4ed54-0c43-4ddf-b0fd-48c8f5996048) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 278b51ed-b91d-44d9-b2d7-d90e1aeee785) - ) - (fp_line (start 0 -2.56) (end -3.45 -2.56) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3ed3b414-7908-43ed-b652-62fa2f91860a)) - (fp_line (start 0 -2.56) (end 1.95 -2.56) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 274ce88c-8fb7-4c6b-b48c-61aba9013910)) - (fp_line (start 0 2.56) (end -1.95 2.56) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 98bfcb24-d084-4680-869c-019b3004a240)) - (fp_line (start 0 2.56) (end 1.95 2.56) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2e62256f-45f8-4ef7-b475-b579567c2e67)) - (fp_line (start -3.7 -2.7) (end -3.7 2.7) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a3922c92-658c-43a3-b48e-3d65494dd8df)) - (fp_line (start -3.7 2.7) (end 3.7 2.7) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d4949b63-713d-413e-94c6-211d885bdfdf)) - (fp_line (start 3.7 -2.7) (end -3.7 -2.7) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 39ad250f-5ef9-4099-9d32-1f3e39fb1059)) - (fp_line (start 3.7 2.7) (end 3.7 -2.7) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fb59a965-11f2-4a1d-b479-ec2dfd8661a6)) - (fp_line (start -1.95 -1.475) (end -0.975 -2.45) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 180d566b-b011-4051-a70f-1605dc72f70a)) - (fp_line (start -1.95 2.45) (end -1.95 -1.475) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7e48c254-b5a5-4b84-ad38-5a56ac19f175)) - (fp_line (start -0.975 -2.45) (end 1.95 -2.45) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3d5cbf8b-56a0-41e6-ba86-2139db1e0dc6)) - (fp_line (start 1.95 -2.45) (end 1.95 2.45) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e1f003a1-7318-4aa6-953d-9781719ecc88)) - (fp_line (start 1.95 2.45) (end -1.95 2.45) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp daa470d1-dd40-449f-a434-20366f5b8e54)) - (pad "1" smd roundrect (at -2.475 -1.905 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 117 "unconnected-(U3-NC-Pad1)") (pinfunction "NC") (pintype "no_connect") (tstamp a633b9a6-d955-487d-82ce-ae5950ee7192)) - (pad "2" smd roundrect (at -2.475 -0.635 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 4 "/Input_Output_Module/+12V") (pinfunction "Vin") (pintype "power_in") (tstamp 5b9478f1-cfbc-41cf-824d-2abdbe43c474)) - (pad "3" smd roundrect (at -2.475 0.635 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 119 "unconnected-(U3-NC-Pad3)") (pinfunction "NC") (pintype "no_connect") (tstamp 25fc95b2-2132-4954-b3e7-2e242a63f519)) - (pad "4" smd roundrect (at -2.475 1.905 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 469bf22d-b5c8-4432-a123-2590bec6ac4d)) - (pad "5" smd roundrect (at 2.475 1.905 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 120 "unconnected-(U3-Trim-Pad5)") (pinfunction "Trim") (pintype "input+no_connect") (tstamp a9e6ba6a-dae1-4f8c-8164-705732393606)) - (pad "6" smd roundrect (at 2.475 0.635 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 118 "/Input_Output_Module/+10V_ref") (pinfunction "Vout") (pintype "power_out") (tstamp 6c17a9e4-7d7f-4502-9b59-4a27c6838230)) - (pad "7" smd roundrect (at 2.475 -0.635 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 121 "unconnected-(U3-NC-Pad7)") (pinfunction "NC") (pintype "no_connect") (tstamp f691e520-63f5-4e52-bb0a-c00f4b6f8dd1)) - (pad "8" smd roundrect (at 2.475 -1.905 90) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 122 "unconnected-(U3-NC-Pad8)") (pinfunction "NC") (pintype "no_connect") (tstamp 895e52df-6f73-4734-a60f-a9eabd7fe144)) - (model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-8_3.9x4.9mm_P1.27mm.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_1210_3225Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70c477) - (at 145.6 55.4 90) - (descr "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") - (tags "resistor") - (property "MFN" "Yageo") - (property "PN" "RC1210FR-0749R9L") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Resistor, small symbol") - (property "ki_keywords" "R resistor") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b059205") - (attr smd) - (fp_text reference "R29" (at 0 2.5 270) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp ebc13a6a-05c6-4e6b-8f0f-6aac51463b9b) - ) - (fp_text value "49.9" (at 0 2.4 270) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp e5b70832-3dea-4165-a01d-cfd27f298a81) - ) - (fp_text user "${REFERENCE}" (at 0 0 270) (layer "F.Fab") - (effects (font (size 0.7 0.7) (thickness 0.105))) - (tstamp 6e1c84f5-dd91-49aa-90a9-9831025fae9f) - ) - (fp_line (start -0.723737 -1.355) (end 0.723737 -1.355) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f26a4ef7-a60c-4808-b5eb-acea4d22ac0c)) - (fp_line (start -0.723737 1.355) (end 0.723737 1.355) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d62aa7d9-4f5b-4fe3-a80c-e2095d26b499)) - (fp_line (start -2.28 -1.58) (end 2.28 -1.58) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0f4ef631-adcd-4984-8cd4-fb42f819ab09)) - (fp_line (start -2.28 1.58) (end -2.28 -1.58) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 231ae00c-04e2-4db6-8aa8-c64420ec8f62)) - (fp_line (start 2.28 -1.58) (end 2.28 1.58) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ab4a683e-8005-4b23-b3f7-47671e0d37c3)) - (fp_line (start 2.28 1.58) (end -2.28 1.58) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6eb6dbab-e1a0-4948-a615-4bd8660a6adb)) - (fp_line (start -1.6 -1.245) (end 1.6 -1.245) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9228ac1b-73a9-4ac6-815b-08f2bb8f4af9)) - (fp_line (start -1.6 1.245) (end -1.6 -1.245) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d4d05994-47f6-4dda-a8cd-c55426db1d70)) - (fp_line (start 1.6 -1.245) (end 1.6 1.245) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e501c0ff-9372-4158-b7ad-4bbe546668d2)) - (fp_line (start 1.6 1.245) (end -1.6 1.245) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3d106157-ddb4-4dca-875f-4dbebc6a85c8)) - (pad "1" smd roundrect (at -1.4625 0 90) (size 1.125 2.65) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.222222) - (net 79 "Net-(J16-In)") (pintype "passive") (tstamp 16cc9ab1-b707-4711-b6f9-a68b110ab2d9)) - (pad "2" smd roundrect (at 1.4625 0 90) (size 1.125 2.65) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.222222) - (net 92 "Net-(U8A--)") (pintype "passive") (tstamp 40a4bd52-021d-4b74-b55d-83fa614520a7)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1210_3225Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70c4a7) - (at 124.35 57.15 -90) - (descr "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") - (tags "resistor") - (property "MFN" "Vishay") - (property "PN" "CRCW06030000Z0EB") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Resistor, small symbol") - (property "ki_keywords" "R resistor") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b0591b4") - (attr smd) - (fp_text reference "R23" (at 3 0 90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 52423cfd-2a15-4324-9691-a73292e7c3cf) - ) - (fp_text value "0" (at 0 1.5 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 2dee0580-a475-4e9d-8b7b-89d787b30901) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.075))) - (tstamp 97fa1a88-56de-4aab-80f8-1a3a21bb432b) - ) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0170bfe6-0558-4e75-b663-c0b1e6c71d2f)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aed4dc89-d5fc-4553-9aef-2e21d96b3ccd)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 870feb38-dafd-4697-8036-86cd7697543d)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 48a9169b-5579-48ac-8f49-5f562fc1dd3e)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 285a2e07-2bc6-4de6-be9c-dbd6ac8d1729)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 86fdef7c-2d24-45e6-98a2-8357dae1094f)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 87246e2b-8258-4ef6-b467-e4fe787a1839)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 29de3c40-c3b1-4835-bd32-efebd6c62410)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fb9e2256-8973-407c-99da-35c20a2061b2)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a5580a57-647c-4f5e-89e7-11b59c39baf6)) - (pad "1" smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 91 "Net-(U8B-+)") (pintype "passive") (tstamp b154fd92-b7be-42d8-ae8e-281af3082b80)) - (pad "2" smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 76 "Net-(J12-In)") (pintype "passive") (tstamp 0d3abc87-87ba-486d-b8ec-7545a8c52aa5)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70c53a) - (at 102.2 62.7 90) - (descr "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") - (tags "resistor") - (property "MFN" "Susumu") - (property "PN" "RR0816P-202-D") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Resistor, small symbol") - (property "ki_keywords" "R resistor") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005e14075d") - (attr smd) - (fp_text reference "R8" (at 0 1.5 90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 85ac075c-05ba-4481-8a93-b2ea73402a69) - ) - (fp_text value "2k" (at 0 1.5 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 0fdc5b78-c032-477e-aea0-ff4dc731fd2d) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.075))) - (tstamp 4bfa1620-aa13-4c5a-b1f4-9c99455d3d79) - ) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 90619c98-8302-4d96-9594-5639c4963ce0)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 649cf548-17c2-42e4-aa3a-a79502beee87)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 011456a3-9831-409b-b23f-753eb1eedc9e)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cf1c93c1-5541-4489-b130-2ebbb11513ed)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 70977b12-fadb-4fbd-95c8-a00eeb0ffb3b)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3894ee0d-83b2-493e-abd3-7a79329d7e1f)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 09079fc2-4d34-41f2-83b5-b2925848517d)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp abf516dc-05db-41b1-93a1-d05a1b805e06)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 66830655-05bb-4dfe-8e8d-ac439561a1e2)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2f09400c-4b8d-43b7-8b3f-6c1aa9abc238)) - (pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp ad4d68af-864d-4341-8b07-093db023e826)) - (pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 83 "Net-(U4B-+)") (pintype "passive") (tstamp e6ed2019-deb3-401d-a5b8-6602fab52eac)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_SMD:C_1210_3225Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70c5ee) - (at 65.35 49.35 90) - (descr "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") - (tags "capacitor") - (property "MFN" "Taiyo Yuden") - (property "PN" "GMK325BJ106MN-T") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "Unpolarized capacitor, small symbol") - (property "ki_keywords" "capacitor cap") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005b054b90") - (attr smd) - (fp_text reference "C4" (at -2.25 2.65 180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 05f0043c-7349-484d-8ebd-c307248c8be4) - ) - (fp_text value "10u" (at -1.22 2.34 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp d2a07146-00d0-46dc-86eb-109b368a05bb) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") - (effects (font (size 0.7 0.7) (thickness 0.105))) - (tstamp 74ce749e-bf61-42a5-b2ec-a77cd0c91476) - ) - (fp_line (start -0.711252 -1.36) (end 0.711252 -1.36) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 93e17068-c07b-46dd-b392-712aef7aabdf)) - (fp_line (start -0.711252 1.36) (end 0.711252 1.36) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 83071a43-6de7-429a-ac43-8ada58738b88)) - (fp_line (start -2.3 -1.6) (end 2.3 -1.6) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 66477f5a-b2e2-4c78-a4e6-7d3bf740b5c7)) - (fp_line (start -2.3 1.6) (end -2.3 -1.6) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 43ae7764-d33f-469d-830d-9f816ed415c7)) - (fp_line (start 2.3 -1.6) (end 2.3 1.6) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a4fe3912-0592-4af8-ae9f-fa2a45cd6b60)) - (fp_line (start 2.3 1.6) (end -2.3 1.6) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1ef7fa9d-54cd-41ae-b8d7-d4aa4e29bebb)) - (fp_line (start -1.6 -1.25) (end 1.6 -1.25) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c498be0c-ed05-46d8-968f-e82ec6f6b9ca)) - (fp_line (start -1.6 1.25) (end -1.6 -1.25) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4706043b-a384-44a8-8142-0504249ed204)) - (fp_line (start 1.6 -1.25) (end 1.6 1.25) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4caab455-3180-456a-82ee-41b3db3a245b)) - (fp_line (start 1.6 1.25) (end -1.6 1.25) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 04b95bb2-b0e6-400d-9036-9501c035ffd2)) - (pad "1" smd roundrect (at -1.475 0 90) (size 1.15 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) - (net 2 "GND") (pintype "passive") (tstamp 13f26817-2e41-4c29-9c70-b8276a1d12af)) - (pad "2" smd roundrect (at 1.475 0 90) (size 1.15 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) - (net 3 "/Supply_Ref/-15V") (pintype "passive") (tstamp cafd610d-d85f-4fea-9048-22218b5a1b79)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1210_3225Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_SMD:C_1210_3225Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70c61e) - (at 64.1 75.9 -90) - (descr "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") - (tags "capacitor") - (property "MFN" "Taiyo Yuden") - (property "PN" "GMK325BJ106MN-T") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "Unpolarized capacitor, small symbol") - (property "ki_keywords" "capacitor cap") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005c1bb058") - (attr smd) - (fp_text reference "C3" (at 4 0.05) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp c44edf82-07d7-463e-8b8e-5f0e8c970cc8) - ) - (fp_text value "10u" (at 0 2.4 -90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 765f1a06-3b1c-4094-9f2d-0ac0f0474b1a) - ) - (fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab") - (effects (font (size 0.7 0.7) (thickness 0.105))) - (tstamp 2af260d0-3c15-4396-8825-f1ae46613e41) - ) - (fp_line (start -0.711252 -1.36) (end 0.711252 -1.36) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e85e0501-7285-4a3e-8d88-70893cb5826d)) - (fp_line (start -0.711252 1.36) (end 0.711252 1.36) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 139935ff-d7b5-4730-abb1-67fd86cb4cba)) - (fp_line (start -2.3 -1.6) (end 2.3 -1.6) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4a6919d8-e588-4d92-8218-b6ea620b5948)) - (fp_line (start -2.3 1.6) (end -2.3 -1.6) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9f783102-9b20-40ea-9eea-4de786a9855a)) - (fp_line (start 2.3 -1.6) (end 2.3 1.6) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp df4ec625-e9fe-48f4-80c6-28f5bbe5b03c)) - (fp_line (start 2.3 1.6) (end -2.3 1.6) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3aeb3426-0e87-48e5-a333-3b0f0d9eaaa2)) - (fp_line (start -1.6 -1.25) (end 1.6 -1.25) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1ab36286-1d4c-4be3-a553-cf59ae5acc83)) - (fp_line (start -1.6 1.25) (end -1.6 -1.25) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a493bed0-5a45-460c-8d9d-c1a2b23725a9)) - (fp_line (start 1.6 -1.25) (end 1.6 1.25) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 656bc732-1f0d-41d8-b950-3aeb3f869bc4)) - (fp_line (start 1.6 1.25) (end -1.6 1.25) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d7d769eb-c1f7-4598-a5c9-47845ab45bae)) - (pad "1" smd roundrect (at -1.475 0 270) (size 1.15 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) - (net 1 "/Supply_Ref/+15V") (pintype "passive") (tstamp 53476d11-4a12-49b9-9ff0-3c6215ff0d14)) - (pad "2" smd roundrect (at 1.475 0 270) (size 1.15 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) - (net 2 "GND") (pintype "passive") (tstamp a3e0df3f-5d2d-4974-bc43-41e600d266d2)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1210_3225Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_SMD:C_1210_3225Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70c64e) - (at 75.45 71.9 90) - (descr "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") - (tags "capacitor") - (property "MFN" "Taiyo Yuden") - (property "PN" "GMK325BJ106MN-T") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "Unpolarized capacitor, small symbol") - (property "ki_keywords" "capacitor cap") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005c1bb114") - (attr smd) - (fp_text reference "C12" (at 0 2.65 90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 1d2c3dfd-e168-4812-93de-3b71c5106155) - ) - (fp_text value "10u" (at 0 2.4 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 4489b80d-6932-4752-a700-a492b2e85adb) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") - (effects (font (size 0.7 0.7) (thickness 0.105))) - (tstamp e347492f-1fa1-434e-86be-f956ee1af4a4) - ) - (fp_line (start -0.711252 -1.36) (end 0.711252 -1.36) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6e93cfd1-f673-4cfb-a396-fb1553ddc4b7)) - (fp_line (start -0.711252 1.36) (end 0.711252 1.36) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d4087cfe-053b-4fda-8b8f-f97220604aa8)) - (fp_line (start -2.3 -1.6) (end 2.3 -1.6) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e25c2f28-75ec-493f-9e87-3079f6c2d4eb)) - (fp_line (start -2.3 1.6) (end -2.3 -1.6) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 602b9d23-016c-4a7f-bf25-430094e9c61c)) - (fp_line (start 2.3 -1.6) (end 2.3 1.6) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b8cc34d7-6b89-4d90-8ebe-0ae5279d80bb)) - (fp_line (start 2.3 1.6) (end -2.3 1.6) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f4debb4f-c8b8-412a-8048-4fe123c2a7c6)) - (fp_line (start -1.6 -1.25) (end 1.6 -1.25) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 04aa879f-20c7-4de2-95c1-50754ae51a01)) - (fp_line (start -1.6 1.25) (end -1.6 -1.25) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d4ad8db4-3c71-4a3e-a893-bd7f930f948e)) - (fp_line (start 1.6 -1.25) (end 1.6 1.25) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ca648f3d-9c8f-44d3-8125-78ac8b70b02a)) - (fp_line (start 1.6 1.25) (end -1.6 1.25) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 01f02882-b69b-4dd9-bbb8-0bc485b36fc7)) - (pad "1" smd roundrect (at -1.475 0 90) (size 1.15 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) - (net 4 "/Input_Output_Module/+12V") (pintype "passive") (tstamp 216271ab-1cf1-41a7-8fea-b9a4cc04a73a)) - (pad "2" smd roundrect (at 1.475 0 90) (size 1.15 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) - (net 2 "GND") (pintype "passive") (tstamp bed3a96a-afde-4d92-aea0-a3916b05e455)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1210_3225Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70c681) - (at 74.5 75.9) - (descr "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") - (tags "resistor") - (property "MFN" "Susumu") - (property "PN" "RR0816P-1213-D-09D") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "Resistor, small symbol") - (property "ki_keywords" "R resistor") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005b054c38") - (attr smd) - (fp_text reference "R1" (at 2.2 0.05) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp bffaf892-5dd9-48cc-819d-cb952653b6ce) - ) - (fp_text value "121k" (at 0 1.5) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 122109c1-e520-4e3e-99e7-9571fcbe0e43) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.075))) - (tstamp 9070fd8d-801d-4b3d-bf2c-6ecf786252e1) - ) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3a67095a-edb3-446c-ad25-3d021a941f6c)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 473c50ad-ba27-45eb-b043-6b0848969a84)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bdf9d504-9d36-4752-b1bd-7f12268b9549)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 03d00abc-ab96-42fa-9cac-6ad88c339807)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 51593adc-4855-424a-91ee-8b7bb42735b3)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b038ce61-cfba-46c6-9de1-43d0f2f0c375)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 57c54680-1edb-43b4-b897-e7332b51ecf0)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6b826ee6-29d9-46a0-b6f6-a882bdfdd07e)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7088be37-eb72-49dd-9e21-1bec089c514b)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 63c1994c-7718-4987-89ef-ec141a7aeef6)) - (pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 8 "Net-(U1-SET)") (pintype "passive") (tstamp 347fa566-d11f-4fd1-8dd8-379178824bef)) - (pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp b5f01d79-0120-4079-9ffe-d259143ba524)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70c705) - (at 101.25 59.8 180) - (descr "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") - (tags "resistor") - (property "MFN" "Susumu") - (property "PN" "RR0816P-102-D") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Resistor, small symbol") - (property "ki_keywords" "R resistor") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b057a11") - (attr smd) - (fp_text reference "R9" (at 2.65 -0.1 180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp a38d865b-6e61-45ea-b354-496d251b1018) - ) - (fp_text value "1k" (at 0 1.5 180) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 1db92f2d-f075-47d8-a93b-dc8a2ccc6354) - ) - (fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.075))) - (tstamp c0dfe899-23bf-410a-ae6a-cafa465c5eb4) - ) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 162917a7-03d0-4a51-b4ae-1618b647697b)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3eb3c037-a490-45c5-a071-43e92c5d6212)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8d26fbfc-26ec-4d8e-abde-c2b5b0fe7102)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 30043f2a-a1dc-4571-994f-a0649468283b)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7fc44c99-c0d8-4f33-9cba-c1b4b04ce784)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7631f264-9dce-4fcd-bb08-3742a8c2d855)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 580a6521-b220-4fd5-854f-adb6f5bbd059)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 214dbbd0-9f8d-47e6-ac7b-923143374587)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dbe9fdb0-d3c8-4b44-9ea0-1dfd39600519)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9fdccd7d-507f-438b-a818-40b4cd709210)) - (pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 83 "Net-(U4B-+)") (pintype "passive") (tstamp 569bf9d3-457e-4e4a-8a5d-69b447652df6)) - (pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 24 "Net-(R4-Pad1)") (pintype "passive") (tstamp 685809b0-784a-4ad9-b2ae-e948f93bdd4b)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70c738) - (at 100.9 45.9 -90) - (descr "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") - (tags "capacitor") - (property "MFN" "Kemet") - (property "PN" "C0603C104K5RECAUTO") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Unpolarized capacitor, small symbol") - (property "ki_keywords" "capacitor cap") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b057a08") - (attr smd) - (fp_text reference "C15" (at -3 0.05 -90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 6d8dc03c-f8a5-4c74-997f-06e061c3b9e0) - ) - (fp_text value "100n" (at 0 1.5 -90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp eaf5ce1f-5c2c-4251-9f85-82077bd33df4) - ) - (fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab") - (effects (font (size 0.3 0.3) (thickness 0.075))) - (tstamp f1286a36-0838-4986-adbc-93bf6dda1800) - ) - (fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 094bf924-73f8-4a67-a829-ee43401de01e)) - (fp_line (start -0.14058 0.51) (end 0.14058 0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 23088d5e-daf9-4b1e-984d-4e3d1cd3031d)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d9d0ebc6-4e8f-4fca-8211-b8519acbe7bc)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 034fda3e-8fc5-42ae-916e-b1c61ce39f58)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 823edfa3-58f4-45e6-8854-0559a043fdbf)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c2e835d5-9916-4828-99bd-31a2b626f1e2)) - (fp_line (start -0.8 -0.4) (end 0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5b16cce6-1ea6-4499-8989-9a7ea06724fc)) - (fp_line (start -0.8 0.4) (end -0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cf372756-dfc8-46fa-b4a1-91dafc601a24)) - (fp_line (start 0.8 -0.4) (end 0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 209ce5d4-720f-4161-a01b-12e2a7eafa1f)) - (fp_line (start 0.8 0.4) (end -0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 38ac392b-8ba5-4fbd-bbec-7f68431adec6)) - (pad "1" smd roundrect (at -0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp 19c34d5d-4887-4b9c-83ef-7cc8affc39b9)) - (pad "2" smd roundrect (at 0.775 0 270) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 19 "/Input_Output_Module/-12V") (pintype "passive") (tstamp 5554ac3b-0cce-47e0-9229-55de085a79cf)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_Tantalum_SMD:CP_EIA-3528-21_Kemet-B" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70c76a) - (at 98.06 43.665 90) - (descr "Tantalum Capacitor SMD Kemet-B (3528-21 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator") - (tags "capacitor tantalum") - (property "MFN" "AVX") - (property "PN" "TCJB106M025R0150") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Polarized capacitor") - (property "ki_keywords" "cap capacitor") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005ccf9c5e") - (attr smd) - (fp_text reference "C17" (at 3.665 0.04 180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 949c7685-46a7-4fcb-b137-06c8e17ca9ee) - ) - (fp_text value "10u" (at 0 3.15 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp fde9337b-73cd-479d-8160-b80259d3a05f) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") - (effects (font (size 0.8 0.8) (thickness 0.12))) - (tstamp 04bf6b7f-1238-46ea-9bb2-be7901979802) - ) - (fp_line (start -2.46 -1.51) (end -2.46 1.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9f90b474-35c1-4c85-bd72-b9543a3b257f)) - (fp_line (start -2.46 1.51) (end 1.75 1.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9ca26dd2-163e-4cf9-8582-bf56274a91fa)) - (fp_line (start 1.75 -1.51) (end -2.46 -1.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 41b1418a-e112-4f83-90e5-203394f6ec71)) - (fp_line (start -2.45 -1.65) (end 2.45 -1.65) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 68cf46dc-6c69-4a6c-a6cc-4400c0a60771)) - (fp_line (start -2.45 1.65) (end -2.45 -1.65) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6f02302a-b354-46f7-955f-fbfebccac4a3)) - (fp_line (start 2.45 -1.65) (end 2.45 1.65) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7d87ae62-f6b3-479f-bc14-f8943bcc6be8)) - (fp_line (start 2.45 1.65) (end -2.45 1.65) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 44c397a6-4752-4400-9063-d8b25eb1d309)) - (fp_line (start -1.75 -0.7) (end -1.75 1.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 662d0e0b-51a8-4139-8d85-827de9ff47f4)) - (fp_line (start -1.75 1.4) (end 1.75 1.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2b281511-664d-4b26-b5d4-409c0dbf8413)) - (fp_line (start -1.05 -1.4) (end -1.75 -0.7) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 668bd593-ceeb-44d8-a1ff-d83b60d431f4)) - (fp_line (start 1.75 -1.4) (end -1.05 -1.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ea0d2a20-72a8-43b3-83a5-dfe4130e2b22)) - (fp_line (start 1.75 1.4) (end 1.75 -1.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7cc7ca30-d09d-4325-9ee3-147cd26ed918)) - (pad "1" smd roundrect (at -1.5375 0 90) (size 1.325 2.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.188679) - (net 13 "Net-(U4D-+)") (pintype "passive") (tstamp 7fe9cba3-58ce-44fc-ba20-2a253756ebeb)) - (pad "2" smd roundrect (at 1.5375 0 90) (size 1.325 2.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.188679) - (net 2 "GND") (pintype "passive") (tstamp 4982666e-da2e-4b3f-bb3b-f94d921098f4)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-3528-21_Kemet-B.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Package_SO:MSOP-16-1EP_3x4.039mm_P0.5mm_EP1.651x2.845mm" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70c7b4) - (at 95 102.3) - (descr "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") - (tags "MSOP SO") - (property "MFN" "Analog Devices") - (property "PN" "LT8610EMSE#PBF") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005b0ada64") - (attr smd) - (fp_text reference "U6" (at 0 -3.35) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 7bb5ddd5-ded4-494b-8a6f-15803eaa278f) - ) - (fp_text value "LT8610" (at 0 3.5) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 85dca426-3e22-43c7-91a8-d04f97a8148f) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.6 0.6) (thickness 0.15))) - (tstamp 21eda21e-a86f-4ea8-b253-31c52d98d802) - ) - (fp_line (start 0 -2.16) (end -2.875 -2.16) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 01bf04e3-f3a5-48c2-813a-2d893f834468)) - (fp_line (start 0 -2.16) (end 1.5 -2.16) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0bca0510-4efc-42bf-ba5b-e33f76cce629)) - (fp_line (start 0 2.16) (end -1.5 2.16) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 48eda460-4990-43a7-960d-1497bdab0503)) - (fp_line (start 0 2.16) (end 1.5 2.16) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b335590a-a4ec-462f-a062-d61af75c9acb)) - (fp_line (start -3.12 -2.27) (end -3.12 2.27) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1a9f50ef-6f76-4635-a4e9-fbd34698bf78)) - (fp_line (start -3.12 2.27) (end 3.12 2.27) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f50030ae-2a6e-452f-9699-8ea9a74649e7)) - (fp_line (start 3.12 -2.27) (end -3.12 -2.27) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 416fd3a3-256f-48a6-b31a-e93986fa8c06)) - (fp_line (start 3.12 2.27) (end 3.12 -2.27) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 81092581-9814-4bd7-ab9c-f9432dbe4df2)) - (fp_line (start -1.5 -1.2695) (end -0.75 -2.0195) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e36e5601-1ee9-44a5-8f08-aed1fb04d3e4)) - (fp_line (start -1.5 2.0195) (end -1.5 -1.2695) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d3c89c92-4f3b-49f1-a70c-36c3a5be163a)) - (fp_line (start -0.75 -2.0195) (end 1.5 -2.0195) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 859a6628-1d00-48bf-ae44-a4c3c5ce5552)) - (fp_line (start 1.5 -2.0195) (end 1.5 2.0195) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cd6d80dc-d9af-4b39-addd-aaa28153ce3c)) - (fp_line (start 1.5 2.0195) (end -1.5 2.0195) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2e277a22-cf83-4235-b256-747408c23a48)) - (pad "" smd roundrect (at -0.415 -0.71) (size 0.69 1.19) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 35662dd5-6327-4a8b-ae80-6c21b7b60998)) - (pad "" smd roundrect (at -0.415 0.71) (size 0.69 1.19) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp ead14d1f-83be-4eea-959b-4bdf729a7040)) - (pad "" smd roundrect (at 0.415 -0.71) (size 0.69 1.19) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 4deb78fa-9b38-419e-81fc-2a160fd60be8)) - (pad "" smd roundrect (at 0.415 0.71) (size 0.69 1.19) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp d6aff2de-66b2-4785-9aae-03ef4c5f25cb)) - (pad "1" smd roundrect (at -2.15 -1.75) (size 1.45 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 123 "unconnected-(U6-SYNC-Pad1)") (pinfunction "SYNC") (pintype "input+no_connect") (tstamp facaa3c8-42e5-4440-ad1c-2d083ec915ca)) - (pad "2" smd roundrect (at -2.15 -1.25) (size 1.45 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 6 "Net-(U6-TR{slash}SS)") (pinfunction "TR/SS") (pintype "passive") (tstamp 1b8f8c0d-2b24-4d5d-a791-0ce1a24b3b0a)) - (pad "3" smd roundrect (at -2.15 -0.75) (size 1.45 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 81 "Net-(U6-RT)") (pinfunction "RT") (pintype "passive") (tstamp 051a251f-6f0a-459c-a207-45984c5b3c3c)) - (pad "4" smd roundrect (at -2.15 -0.25) (size 1.45 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 5 "Net-(U6-EN{slash}UV)") (pinfunction "EN/UV") (pintype "passive") (tstamp c86b1fd1-f0cb-4e9f-930e-e737395c6585)) - (pad "5" smd roundrect (at -2.15 0.25) (size 1.45 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 5 "Net-(U6-EN{slash}UV)") (pinfunction "Vin") (pintype "input") (tstamp ffca9c7c-c3b6-419d-b17c-caefb96b4330)) - (pad "6" smd roundrect (at -2.15 0.75) (size 1.45 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 5 "Net-(U6-EN{slash}UV)") (pinfunction "Vin") (pintype "passive") (tstamp 787b55f8-6af7-4ff5-b642-a864abe0fb47)) - (pad "7" smd roundrect (at -2.15 1.25) (size 1.45 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pinfunction "PGND") (pintype "passive") (tstamp f19bfb49-a798-44a7-94a5-c545589878a8)) - (pad "8" smd roundrect (at -2.15 1.75) (size 1.45 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pinfunction "PGND") (pintype "passive") (tstamp a7a637b7-2e27-486a-9396-c29c985ef519)) - (pad "9" smd roundrect (at 2.15 1.75) (size 1.45 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 57 "Net-(C11-Pad2)") (pinfunction "SW") (pintype "passive") (tstamp 78343407-ce9b-4ffb-a9f6-ad3810cb9158)) - (pad "10" smd roundrect (at 2.15 1.25) (size 1.45 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 57 "Net-(C11-Pad2)") (pinfunction "SW") (pintype "passive") (tstamp 1a12c981-cc40-4c03-8ea8-fabd9a557f68)) - (pad "11" smd roundrect (at 2.15 0.75) (size 1.45 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 57 "Net-(C11-Pad2)") (pinfunction "SW") (pintype "passive") (tstamp 230bd9bd-9490-47d6-816a-c66077834dbf)) - (pad "12" smd roundrect (at 2.15 0.25) (size 1.45 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 11 "Net-(U6-BST)") (pinfunction "BST") (pintype "passive") (tstamp 34fbd246-4d31-4bdc-8c81-9ae383369a4c)) - (pad "13" smd roundrect (at 2.15 -0.25) (size 1.45 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 7 "Net-(U6-INTVcc)") (pinfunction "INTVcc") (pintype "passive") (tstamp 45bb6298-eb16-4f78-a025-48458037a638)) - (pad "14" smd roundrect (at 2.15 -0.75) (size 1.45 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 21 "/Supply_Ref/+5V") (pinfunction "BIAS") (pintype "passive") (tstamp 8089cac8-0861-4619-b200-b7a7c899b0ea)) - (pad "15" smd roundrect (at 2.15 -1.25) (size 1.45 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 124 "unconnected-(U6-PG-Pad15)") (pinfunction "PG") (pintype "output+no_connect") (tstamp decc5343-dea5-460e-8126-f58cce8d2b23)) - (pad "16" smd roundrect (at 2.15 -1.75) (size 1.45 0.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 12 "Net-(U6-FB)") (pinfunction "FB") (pintype "passive") (tstamp 6fba9f9f-9595-49f4-8db0-d9037f5f6e88)) - (pad "17" smd rect (at 0 0) (size 1.651 2.845) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp aca40136-dcb0-49a5-91d7-ce9c5b214410)) - (model "${KISYS3DMOD}/Package_SO.3dshapes/MSOP-16-1EP_3x4.039mm_P0.5mm_EP1.651x2.845mm.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - (model "${KISYS3DMOD}/Package_SO.3dshapes/MSOP-16-1EP_3x4mm_P0.5mm_EP1.65x2.85mm.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_SMD:C_1210_3225Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70c810) - (at 76.6 46.09 -90) - (descr "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") - (tags "capacitor") - (property "MFN" "Taiyo Yuden") - (property "PN" "GMK325BJ106MN-T") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "Unpolarized capacitor, small symbol") - (property "ki_keywords" "capacitor cap") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005c1bb1d1") - (attr smd) - (fp_text reference "C13" (at 0 -2.91 -90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 28a6ad4b-d84c-4cd6-b63f-4f77866ae7b6) - ) - (fp_text value "10u" (at 0 2.4 -90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp f8041c64-a7a8-4017-acbc-235a5f22e842) - ) - (fp_text user "${REFERENCE}" (at 0 0 -90) (layer "F.Fab") - (effects (font (size 0.7 0.7) (thickness 0.105))) - (tstamp 4a307dc8-4757-47bd-a251-0e87e4e71d7a) - ) - (fp_line (start -0.711252 -1.36) (end 0.711252 -1.36) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5444013f-e901-4fa0-9d06-64f307e70be8)) - (fp_line (start -0.711252 1.36) (end 0.711252 1.36) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a01028ec-f8bf-4158-9fad-ae05467e86e0)) - (fp_line (start -2.3 -1.6) (end 2.3 -1.6) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b5291c0d-0f1b-403b-a383-7d724a60204c)) - (fp_line (start -2.3 1.6) (end -2.3 -1.6) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1ce69c2e-dcbd-4b69-8241-a8c15eb6447d)) - (fp_line (start 2.3 -1.6) (end 2.3 1.6) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3d0fe539-d4bb-42de-a4af-c528aac32b86)) - (fp_line (start 2.3 1.6) (end -2.3 1.6) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 62db2591-fc7e-446d-843c-a8a99e35c3ca)) - (fp_line (start -1.6 -1.25) (end 1.6 -1.25) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 765a1a44-2e93-4b8b-bf47-434463e6ad01)) - (fp_line (start -1.6 1.25) (end -1.6 -1.25) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b2c2f578-887b-41df-971f-e3bfd2604c2d)) - (fp_line (start 1.6 -1.25) (end 1.6 1.25) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 719ab0bc-a0b4-4646-bf31-6178cf0d1644)) - (fp_line (start 1.6 1.25) (end -1.6 1.25) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9f1b57ac-bf33-4d57-b526-c7de125c0b79)) - (pad "1" smd roundrect (at -1.475 0 270) (size 1.15 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) - (net 2 "GND") (pintype "passive") (tstamp f4e00629-1edc-453c-b255-18c45805fe5b)) - (pad "2" smd roundrect (at 1.475 0 270) (size 1.15 2.7) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) - (net 19 "/Input_Output_Module/-12V") (pintype "passive") (tstamp 5f1c57a0-fe7c-42e3-841c-53f93dcf813b)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1210_3225Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Connector_Coaxial:SMA_Amphenol_132134_Vertical" locked (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70c846) - (at 118.4 42.9) - (descr "https://www.amphenolrf.com/downloads/dl/file/id/2187/product/2843/132134_customer_drawing.pdf") - (tags "SMA THT Female Jack Vertical ExtendedLegs") - (property "Config" "") - (property "MFN" "Amphenol") - (property "PN" "901-144-8RFX") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "coaxial connector (BNC, SMA, SMB, SMC, Cinch/RCA, LEMO, ...)") - (property "ki_keywords" "BNC SMA SMB SMC LEMO coaxial connector CINCH RCA") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b0579a9") - (attr through_hole) - (fp_text reference "J7" (at 0 -5) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 2c212123-e0b9-4504-a55c-b443b619f52c) - ) - (fp_text value "Piezo_Monitor" (at 0 5) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp bd7aa2ff-3fb8-447e-b6ee-0d18b9c2a162) - ) - (fp_text user "${REFERENCE}" (at 0 -5) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 6f228896-57b9-4df7-b0d2-e637500bf111) - ) - (fp_line (start -3.68 -1.8) (end -3.68 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp db539668-01b0-4917-a59c-ae7c7bc7dc41)) - (fp_line (start -1.8 -3.68) (end 1.8 -3.68) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 39481bd7-a7f0-48a2-9873-65159e8e321b)) - (fp_line (start -1.8 3.68) (end 1.8 3.68) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 032e1b9f-6dea-499b-86c1-3bd1bcce4074)) - (fp_line (start 3.68 -1.8) (end 3.68 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b36ed225-6f99-4781-a3e0-c9c5ff1d61a2)) - (fp_line (start -4.17 -4.17) (end -4.17 4.17) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e6423e5a-3dc3-4f48-a83f-e925c339f390)) - (fp_line (start -4.17 -4.17) (end 4.17 -4.17) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3253e54b-a07c-4b89-819a-9952e93af84f)) - (fp_line (start 4.17 4.17) (end -4.17 4.17) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0420b850-cf64-4fbf-9be5-032f67ee90b4)) - (fp_line (start 4.17 4.17) (end 4.17 -4.17) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3302cc98-e74e-4e4c-b370-be7383cfe188)) - (fp_line (start -3.5 -3.5) (end -3.5 3.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3ab9a798-4250-4b8e-b6c2-98b9cee80ee5)) - (fp_line (start -3.5 -3.5) (end 3.5 -3.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c8c5acca-52d0-4620-b713-58ca540c6ffa)) - (fp_line (start -3.5 3.5) (end 3.5 3.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7589eba4-730e-416f-a6e3-cb6cb18fbd84)) - (fp_line (start 3.5 -3.5) (end 3.5 3.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c2c0b6a0-0d9b-40f8-b661-b372093647dd)) - (fp_circle (center 0 0) (end 3.175 0) - (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 64cc39e0-9117-4337-a2a7-4d04bc1ca320)) - (pad "1" thru_hole circle locked (at 0 0) (size 2.05 2.05) (drill 1.5) (layers "*.Cu" "*.Mask") - (net 74 "Net-(J7-In)") (pinfunction "In") (pintype "passive") (tstamp e9dc4cb4-b281-4ae2-af4f-c41076128d1f)) - (pad "2" thru_hole circle locked (at -2.54 -2.54) (size 2.25 2.25) (drill 1.7) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "Ext") (pintype "passive") (tstamp 14179566-0052-4195-b6e2-d16b0a6a813f)) - (pad "2" thru_hole circle locked (at -2.54 2.54) (size 2.25 2.25) (drill 1.7) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "Ext") (pintype "passive") (tstamp bd9f9667-0064-43cf-91d0-54397ddf4576)) - (pad "2" thru_hole circle locked (at 2.54 -2.54) (size 2.25 2.25) (drill 1.7) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "Ext") (pintype "passive") (tstamp 300e33ef-9c34-48f4-a538-b65a5f7e1c17)) - (pad "2" thru_hole circle locked (at 2.54 2.54) (size 2.25 2.25) (drill 1.7) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "Ext") (pintype "passive") (tstamp ca14f122-7edd-4c1f-9123-b8f2e23a7b16)) - (model "${KICAD6_3DMODEL_DIR}/Connector_Coaxial.3dshapes/SMA_Amphenol_132291-12_Vertical.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_1210_3225Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70c882) - (at 131.5 42.8 180) - (descr "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") - (tags "resistor") - (property "MFN" "Yageo") - (property "PN" "RC1210FR-0749R9L") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Resistor, small symbol") - (property "ki_keywords" "R resistor") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005c1a6223") - (attr smd) - (fp_text reference "R11" (at 0 -2.35 180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp f1179d70-c1ee-414f-8d3d-a40438d57838) - ) - (fp_text value "49.9" (at 0 2.4 180) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 4fd77025-464b-41f8-bb24-9a35596860d5) - ) - (fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab") - (effects (font (size 0.7 0.7) (thickness 0.105))) - (tstamp 9c93d979-2512-4318-9eeb-5afce8097ec3) - ) - (fp_line (start -0.723737 -1.355) (end 0.723737 -1.355) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3ca9e988-5a56-4c9f-a831-cf9bc43caec3)) - (fp_line (start -0.723737 1.355) (end 0.723737 1.355) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1fc26e2f-ea65-49c6-8044-7ec9a4fb39b0)) - (fp_line (start -2.28 -1.58) (end 2.28 -1.58) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ba5daf9a-32d5-4dee-b9a8-923d57284544)) - (fp_line (start -2.28 1.58) (end -2.28 -1.58) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 24db09d8-c976-4cd5-99c2-5320226df015)) - (fp_line (start 2.28 -1.58) (end 2.28 1.58) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f7849c4a-2e2b-4301-bdc8-386eb3f5d76f)) - (fp_line (start 2.28 1.58) (end -2.28 1.58) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp eeb2de43-79f5-48dd-8493-ef03ddb447f7)) - (fp_line (start -1.6 -1.245) (end 1.6 -1.245) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0d0455fc-05cd-4723-ae2c-42113165a4c6)) - (fp_line (start -1.6 1.245) (end -1.6 -1.245) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ba795ab0-aed8-492b-96c8-2ede3892eaf0)) - (fp_line (start 1.6 -1.245) (end 1.6 1.245) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b3933869-0859-450b-8b4b-72427f7a924c)) - (fp_line (start 1.6 1.245) (end -1.6 1.245) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 35da8178-d30f-4568-9ce7-5829986d5a95)) - (pad "1" smd roundrect (at -1.4625 0 180) (size 1.125 2.65) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.222222) - (net 78 "Net-(J14-In)") (pintype "passive") (tstamp 713bcc46-60bb-4936-9f38-3a7698a48532)) - (pad "2" smd roundrect (at 1.4625 0 180) (size 1.125 2.65) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.222222) - (net 84 "Net-(U8A-+)") (pintype "passive") (tstamp 18bfa0a6-16b0-4f9f-a5a5-00b82ad359b6)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1210_3225Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_1210_3225Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70c8b2) - (at 109.7 59.9 180) - (descr "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") - (tags "resistor") - (property "MFN" "Panasonic") - (property "PN" "ERJ-14YJ4R7U") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Resistor") - (property "ki_keywords" "R res resistor") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b057987") - (attr smd) - (fp_text reference "R16" (at 0 -2.25 180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 61ba3f2e-7e46-4438-a09b-37af46fc01a5) - ) - (fp_text value "4.7" (at 0 2.4 180) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 791d05fe-1898-4ec1-8c2c-b764d121a0fc) - ) - (fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab") - (effects (font (size 0.7 0.7) (thickness 0.105))) - (tstamp 30a4ffcb-9dfe-4958-ab8f-92829089439e) - ) - (fp_line (start -0.723737 -1.355) (end 0.723737 -1.355) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e539a516-b105-4a39-9db4-b7a840f8cca9)) - (fp_line (start -0.723737 1.355) (end 0.723737 1.355) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 880726d0-fd3d-40fe-bb5d-85ddf729f150)) - (fp_line (start -2.28 -1.58) (end 2.28 -1.58) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aca69ea0-2b41-4028-a066-cca226256faa)) - (fp_line (start -2.28 1.58) (end -2.28 -1.58) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 968c684a-e9c2-4192-a055-42f3043c3a6c)) - (fp_line (start 2.28 -1.58) (end 2.28 1.58) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 98067884-8e06-42ad-b627-57e6a4267d8f)) - (fp_line (start 2.28 1.58) (end -2.28 1.58) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f56d3345-b56f-456c-8796-af1d761c5b14)) - (fp_line (start -1.6 -1.245) (end 1.6 -1.245) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0efb4276-e28c-45e9-b48c-ccc206368e0b)) - (fp_line (start -1.6 1.245) (end -1.6 -1.245) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 83c4b1a3-d137-404a-a1b0-b768f55f0c17)) - (fp_line (start 1.6 -1.245) (end 1.6 1.245) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 94570762-94c8-4b9f-937e-dff8ddda8fca)) - (fp_line (start 1.6 1.245) (end -1.6 1.245) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 12cc371e-253b-4075-8ae7-db470414df26)) - (pad "1" smd roundrect (at -1.4625 0 180) (size 1.125 2.65) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.222222) - (net 73 "Net-(J5-In)") (pintype "passive") (tstamp 940add53-80da-4c36-9fcc-90d7337284f3)) - (pad "2" smd roundrect (at 1.4625 0 180) (size 1.125 2.65) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.222222) - (net 87 "Net-(U4C-+)") (pintype "passive") (tstamp 3ee10f7b-7705-4c29-a84d-eb13a2b689df)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1210_3225Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_1210_3225Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70c8e2) - (at 186.1 50.4 180) - (descr "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") - (tags "resistor") - (property "MFN" "Yageo") - (property "PN" "RC1210FR-0749R9L") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Resistor, small symbol") - (property "ki_keywords" "R resistor") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005f57dbca") - (attr smd) - (fp_text reference "R26" (at 0 2.5) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 053771f1-2afe-4507-b599-61e298294402) - ) - (fp_text value "49.9" (at 0 2.4) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 1196ba79-b1b5-4edd-a5c4-8229622f44be) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.7 0.7) (thickness 0.105))) - (tstamp 482d1e0d-221c-4ff0-a12d-d51668fbe168) - ) - (fp_line (start -0.723737 -1.355) (end 0.723737 -1.355) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 650a4950-80a5-4886-b1fb-01fc824f254e)) - (fp_line (start -0.723737 1.355) (end 0.723737 1.355) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3401379c-349e-4960-8953-d075b0c32e23)) - (fp_line (start -2.28 -1.58) (end 2.28 -1.58) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ef2f08fc-f2d1-4b56-b368-131b7afdbf87)) - (fp_line (start -2.28 1.58) (end -2.28 -1.58) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp eca87758-f516-4842-a32b-dd058a6a72f6)) - (fp_line (start 2.28 -1.58) (end 2.28 1.58) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 562fb43f-219d-499c-99b2-be3cdd02e3f9)) - (fp_line (start 2.28 1.58) (end -2.28 1.58) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a33bb803-b03b-4157-a07b-ef53a23476fa)) - (fp_line (start -1.6 -1.245) (end 1.6 -1.245) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0b3c7e5e-3f97-46ab-8bf7-5733d5825cf9)) - (fp_line (start -1.6 1.245) (end -1.6 -1.245) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a5ce4c7b-1194-49f5-9b3f-589127704a92)) - (fp_line (start 1.6 -1.245) (end 1.6 1.245) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4584a953-d5c4-4c88-9327-b2667330e437)) - (fp_line (start 1.6 1.245) (end -1.6 1.245) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ee98256c-e251-4d8d-93d6-6693fb920b42)) - (pad "1" smd roundrect (at -1.4625 0 180) (size 1.125 2.65) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.222222) - (net 77 "Net-(J13-In)") (pintype "passive") (tstamp ba3d08a9-8465-4de5-802d-0a0916f098f6)) - (pad "2" smd roundrect (at 1.4625 0 180) (size 1.125 2.65) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.222222) - (net 67 "Net-(R20-Pad1)") (pintype "passive") (tstamp 41d60988-ac34-4128-a58f-2f32a6510ea5)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1210_3225Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70c912) - (at 169.1 49.9 90) - (descr "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") - (tags "capacitor") - (property "MFN" "Kemet") - (property "PN" "C0603C104K5RECAUTO") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Unpolarized capacitor, small symbol") - (property "ki_keywords" "capacitor cap") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005f57dc38") - (attr smd) - (fp_text reference "C27" (at 0 -1.5 90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 9a4d93cf-f8d4-4ce5-b093-032be9fc05b9) - ) - (fp_text value "100n" (at 0 1.5 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 48f718f0-cfde-4e01-85d4-480c54d1f665) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") - (effects (font (size 0.3 0.3) (thickness 0.075))) - (tstamp 010baaae-e119-4811-b94f-0d615c30f153) - ) - (fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 10c5425e-8a15-43f0-ad63-8c716bff1981)) - (fp_line (start -0.14058 0.51) (end 0.14058 0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a799e3ba-c9ad-4a9b-90d6-13ed773dfb01)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 870bc8d8-8e16-4c8b-b995-ea087d3b4130)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e4430f4e-2ed6-462b-a9a7-ba45340076bb)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 91a586c2-49f9-4bae-a4aa-619fe2358557)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d2350170-b595-4963-b8dc-bed2e306912b)) - (fp_line (start -0.8 -0.4) (end 0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ccfb0afa-1ddc-4d31-9976-23ec364f4f44)) - (fp_line (start -0.8 0.4) (end -0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fd40ed12-5c79-4a55-a0eb-4a64cb182a44)) - (fp_line (start 0.8 -0.4) (end 0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4357c18e-2790-4089-aff6-335e3ca26f4b)) - (fp_line (start 0.8 0.4) (end -0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5626d496-2325-408d-bc2e-4566c1b227f7)) - (pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp e546257c-ba96-466c-9910-6ab4491c6a0f)) - (pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 4 "/Input_Output_Module/+12V") (pintype "passive") (tstamp 1e274f16-c3f5-49e4-93c5-a222151cbb53)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70c981) - (at 102.6 102.9) - (descr "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") - (tags "capacitor") - (property "MFN" "Taiyo Yuden") - (property "PN" "UMK212B7105KG-T") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "Unpolarized capacitor, small symbol") - (property "ki_keywords" "capacitor cap") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005b0aea0f") - (attr smd) - (fp_text reference "C7" (at 0 1.8) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 3bdbfc89-76f1-4c35-bc21-63cf983ffa58) - ) - (fp_text value "1u" (at 0 1.75) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 7468ae0e-a81c-47cf-91fe-130c018e677d) - ) - (fp_text user "${REFERENCE}" (at 0 -1.5) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 7c8d5a4e-e7d7-455e-af74-bd5dc3ef8b99) - ) - (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 34a55cd1-4b35-40c4-9b9b-598df244e9b1)) - (fp_line (start -0.261252 0.735) (end 0.261252 0.735) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 588a5f6a-7933-466c-99ef-62b695a5cb8c)) - (fp_line (start -1.7 -0.98) (end 1.7 -0.98) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8bb19825-0afd-4fcf-9287-0930913cbd07)) - (fp_line (start -1.7 0.98) (end -1.7 -0.98) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 58e93246-ffa4-46b0-9ce7-30c5e9e8dbc2)) - (fp_line (start 1.7 -0.98) (end 1.7 0.98) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 33c64182-8289-46dc-8ddc-c3d0f458782d)) - (fp_line (start 1.7 0.98) (end -1.7 0.98) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 500f2663-4b48-4018-8107-1b2217c7ee3e)) - (fp_line (start -1 -0.625) (end 1 -0.625) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e746250c-e174-4a44-a769-5c6a4d180c8e)) - (fp_line (start -1 0.625) (end -1 -0.625) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e3bd7f72-f4cf-4c39-a9ca-e29cfa99c937)) - (fp_line (start 1 -0.625) (end 1 0.625) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f8238c7b-b8cc-4843-9519-4ebac83df0b1)) - (fp_line (start 1 0.625) (end -1 0.625) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aa8c2ab1-9931-4f21-b7d9-c59bc0b7db06)) - (pad "1" smd roundrect (at -0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 7 "Net-(U6-INTVcc)") (pintype "passive") (tstamp e1c2c40a-fbc1-4904-8afd-97f2cc9ca1d8)) - (pad "2" smd roundrect (at 0.95 0) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp bb13ac92-7de9-4c8a-a214-41ccae3775b8)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70ca1a) - (at 109.9 51.4 -90) - (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 "Field4" "1") - (property "MFN" "Texas Instruments") - (property "PN" "BUF634AIDR") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "250mA, High-Speed Buffer") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b05797a") - (attr smd) - (fp_text reference "U5" (at 0 -3.5 90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 3737816f-e0c1-4108-9915-1e538fed77fa) - ) - (fp_text value "BUF634" (at 0 3.5 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 5e49e8df-ceb2-445e-8f05-19f603ceea2d) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 3df7aa3c-174c-409f-9805-a5dcb9ada2a9) - ) - (fp_line (start 0 -2.56) (end -3.45 -2.56) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d1b0ec61-3647-42e2-b80b-b420779e8d9e)) - (fp_line (start 0 -2.56) (end 1.95 -2.56) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 45cae7ad-3a53-4dbc-b009-8a823c31459e)) - (fp_line (start 0 2.56) (end -1.95 2.56) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 77d0257c-c96c-47f2-b173-e8fb07e18529)) - (fp_line (start 0 2.56) (end 1.95 2.56) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 47df0bda-ec09-43e3-a72a-ec86ff810d0c)) - (fp_line (start -3.7 -2.7) (end -3.7 2.7) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2a913d9d-43d9-42bb-87db-c5e39a1e4ed5)) - (fp_line (start -3.7 2.7) (end 3.7 2.7) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6380b65e-b3ba-4799-842b-c639e4f38bf3)) - (fp_line (start 3.7 -2.7) (end -3.7 -2.7) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5737f057-c69f-45df-b347-1b4ea5aa6640)) - (fp_line (start 3.7 2.7) (end 3.7 -2.7) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2eea43c1-f37b-4bf3-bced-646af0fdc325)) - (fp_line (start -1.95 -1.475) (end -0.975 -2.45) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5d44e986-6c0a-4347-a87d-cb9151085176)) - (fp_line (start -1.95 2.45) (end -1.95 -1.475) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8153d055-1a7e-40e5-89ba-97708f15b329)) - (fp_line (start -0.975 -2.45) (end 1.95 -2.45) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a0f60397-d14b-4369-8443-7e1dd592c7dd)) - (fp_line (start 1.95 -2.45) (end 1.95 2.45) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4f422794-2343-4a9b-a42a-44b46838a021)) - (fp_line (start 1.95 2.45) (end -1.95 2.45) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 92bf6706-dbff-4e09-ab29-9b1ec299108f)) - (pad "1" smd roundrect (at -2.475 -1.905 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 19 "/Input_Output_Module/-12V") (pinfunction "BW") (pintype "passive") (tstamp f543942f-00b9-4530-955b-9e39de99730d)) - (pad "2" smd roundrect (at -2.475 -0.635 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 43 "unconnected-(U5-Pad2)") (pintype "no_connect") (tstamp d0290a3f-3e52-4414-8348-f152d73926ee)) - (pad "3" smd roundrect (at -2.475 0.635 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 18 "Net-(U4-Pad7)") (pintype "input") (tstamp dc602ff4-5407-4d59-9df0-35fc2fa42f18)) - (pad "4" smd roundrect (at -2.475 1.905 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 19 "/Input_Output_Module/-12V") (pinfunction "V-") (pintype "power_in") (tstamp cbf7157b-891c-4a9c-9fc0-d54c44ea20f9)) - (pad "5" smd roundrect (at 2.475 1.905 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 44 "unconnected-(U5-Pad5)") (pintype "no_connect") (tstamp 80c34a22-eccd-4eb0-8ada-a7e7598d760f)) - (pad "6" smd roundrect (at 2.475 0.635 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 87 "Net-(U4C-+)") (pintype "output") (tstamp 7a851ded-6a37-4a47-88fd-69ee83dd1b82)) - (pad "7" smd roundrect (at 2.475 -0.635 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 4 "/Input_Output_Module/+12V") (pinfunction "V+") (pintype "power_in") (tstamp b245f2f4-c192-4681-975f-8c152891f6e4)) - (pad "8" smd roundrect (at 2.475 -1.905 270) (size 1.95 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 71 "unconnected-(U5-Pad8)") (pintype "no_connect") (tstamp 8819da19-5eab-45af-8282-e591a92361fa)) - (model "${KICAD6_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-8_3.9x4.9mm_P1.27mm.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70ca5c) - (at 180.1 44.9 180) - (descr "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") - (tags "capacitor") - (property "MFN" "Kemet") - (property "PN" "C0603C104K5RECAUTO") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Unpolarized capacitor, small symbol") - (property "ki_keywords" "capacitor cap") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005f57dc2c") - (attr smd) - (fp_text reference "C26" (at -0.75 1.5 180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp fb734c4e-6049-44e4-8cc4-fafcce56176c) - ) - (fp_text value "100n" (at 0 1.5) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 9df7035d-93fc-4192-8901-e530709aae35) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.3 0.3) (thickness 0.075))) - (tstamp f7fb08ef-5284-4101-9517-2ebc39417843) - ) - (fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 13faf79b-23d2-4e3e-a6a8-a9c82dd44508)) - (fp_line (start -0.14058 0.51) (end 0.14058 0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 24ea2bcb-eec7-4168-a543-c92f58b8b18b)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8980d8ec-dfe3-489d-865d-4517a1b4d8c3)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 56e68ee3-f47e-43eb-abae-c35f5aa09cfa)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4d9768fe-37f4-4d6e-8ed1-5ad6d24df2b8)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 66f6ed8d-f4f8-44c9-a542-e5443b011e74)) - (fp_line (start -0.8 -0.4) (end 0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eed91cf3-7a6a-4a19-88ea-eaea52ff3ccd)) - (fp_line (start -0.8 0.4) (end -0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 34cb0c4f-5ab9-40fa-9988-76cff9f5fb77)) - (fp_line (start 0.8 -0.4) (end 0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f7e6f129-e5c1-4ec1-a01a-fae5dd6e7e55)) - (fp_line (start 0.8 0.4) (end -0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3857f22d-2e99-4a4b-a622-9f3ef3dda4cf)) - (pad "1" smd roundrect (at -0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp 250273bc-6214-4194-9edc-a4cc82c08c2c)) - (pad "2" smd roundrect (at 0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 19 "/Input_Output_Module/-12V") (pintype "passive") (tstamp bfb3a5e6-c4e0-447e-8f07-5a757bc3f89f)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70cbdc) - (at 89.1 101.2 180) - (descr "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") - (tags "resistor") - (property "MFN" "Susumu") - (property "PN" "RR0816P-5232-D-70C") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "Resistor, small symbol") - (property "ki_keywords" "R resistor") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005b0af358") - (attr smd) - (fp_text reference "R5" (at 1.2 -1.5) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 63a0c8bd-7493-46a1-b235-4097a7961438) - ) - (fp_text value "52.3k" (at 0 1.5 180) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp c7c814ab-4e95-44e6-a50d-f0eeb85cab12) - ) - (fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.075))) - (tstamp c89a7a46-5d9a-4a51-b909-86e13d1eb5be) - ) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0d6bdeba-2331-477a-b2f5-36447c936c45)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 26b75bab-cab1-4bb0-8f3a-34a25f08ef30)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6b76c101-8fff-4506-82ff-640c632acd44)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 194c236f-a929-4342-9046-9471cc768ca3)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp daefde98-a2ee-4236-b079-635f2178420f)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1967143e-459a-4be7-9f2b-41f93f8c04ee)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ce480058-c481-42e4-a809-9e1b562d7b26)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a968ede1-0209-49da-83bf-626360494cba)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1600f7ae-93cc-4a64-b262-458445d3eda0)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp adf836ff-1547-4186-b3b9-c6faa2c73481)) - (pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 81 "Net-(U6-RT)") (pintype "passive") (tstamp 0dcab7fc-1f75-4da8-8c1c-47b6951b7e26)) - (pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp a590420f-6a06-438f-93ad-cd8a8509b4c9)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Connector_Coaxial:SMA_Amphenol_132134_Vertical" locked (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70cc12) - (at 139.1 42.9) - (descr "https://www.amphenolrf.com/downloads/dl/file/id/2187/product/2843/132134_customer_drawing.pdf") - (tags "SMA THT Female Jack Vertical ExtendedLegs") - (property "Config" "") - (property "MFN" "Amphenol") - (property "PN" "901-144-8RFX") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "coaxial connector (BNC, SMA, SMB, SMC, Cinch/RCA, LEMO, ...)") - (property "ki_keywords" "BNC SMA SMB SMC LEMO coaxial connector CINCH RCA") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b0591a2") - (attr through_hole) - (fp_text reference "J14" (at 0 -5) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 2b46cb25-b66b-46a4-ad02-e33bd204a9c7) - ) - (fp_text value "Error_Out (In1)" (at 0 5) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 4505ff80-7af9-4aeb-b86b-af84fe55259c) - ) - (fp_text user "${REFERENCE}" (at 0 -5) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 4a81af50-fafe-4600-a89e-f14a1913020d) - ) - (fp_line (start -3.68 -1.8) (end -3.68 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a649082c-bd89-4045-9fcb-076bc95b7890)) - (fp_line (start -1.8 -3.68) (end 1.8 -3.68) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c6ee5798-ecc8-490e-b850-56203eef5314)) - (fp_line (start -1.8 3.68) (end 1.8 3.68) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d6d5bf28-edca-4c06-8743-45296d658cda)) - (fp_line (start 3.68 -1.8) (end 3.68 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9b875b05-deb2-4359-aef1-972221c6ee56)) - (fp_line (start -4.17 -4.17) (end -4.17 4.17) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c199752a-5af0-4986-b7a4-45143cd51d43)) - (fp_line (start -4.17 -4.17) (end 4.17 -4.17) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2738a82c-5974-4397-9305-2546bffe6021)) - (fp_line (start 4.17 4.17) (end -4.17 4.17) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1c37aa47-794a-4e39-8a77-4b01d4b40d67)) - (fp_line (start 4.17 4.17) (end 4.17 -4.17) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0d64f94e-28d7-4ba3-ada2-e49f040b281d)) - (fp_line (start -3.5 -3.5) (end -3.5 3.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 62cb8db9-9a5e-45f1-918e-1c2c52809ae3)) - (fp_line (start -3.5 -3.5) (end 3.5 -3.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 70a13a9c-5a43-4b5c-87c4-ad08bf2b830e)) - (fp_line (start -3.5 3.5) (end 3.5 3.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 00504e95-7fec-47c3-bb0d-78ad503afee4)) - (fp_line (start 3.5 -3.5) (end 3.5 3.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 657641bd-f3f1-402f-8a9d-b6ace8548556)) - (fp_circle (center 0 0) (end 3.175 0) - (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 74ddc3ec-c28e-4d8a-bb6e-85d3064701c0)) - (pad "1" thru_hole circle locked (at 0 0) (size 2.05 2.05) (drill 1.5) (layers "*.Cu" "*.Mask") - (net 78 "Net-(J14-In)") (pinfunction "In") (pintype "passive") (tstamp 0c409cf4-07be-491f-b857-6ac7537fe607)) - (pad "2" thru_hole circle locked (at -2.54 -2.54) (size 2.25 2.25) (drill 1.7) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "Ext") (pintype "passive") (tstamp 63d96a7c-c757-4e40-9801-f4da5d302219)) - (pad "2" thru_hole circle locked (at -2.54 2.54) (size 2.25 2.25) (drill 1.7) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "Ext") (pintype "passive") (tstamp a8b3b3c9-55ea-4080-830f-058d264ad329)) - (pad "2" thru_hole circle locked (at 2.54 -2.54) (size 2.25 2.25) (drill 1.7) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "Ext") (pintype "passive") (tstamp e5a33f16-0fc9-4ed5-8e73-cc8c96d44b3d)) - (pad "2" thru_hole circle locked (at 2.54 2.54) (size 2.25 2.25) (drill 1.7) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "Ext") (pintype "passive") (tstamp 607c5bf5-7787-44fa-9caf-95735ddeb05f)) - (model "${KICAD6_3DMODEL_DIR}/Connector_Coaxial.3dshapes/SMA_Amphenol_132291-12_Vertical.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Connector_Coaxial:SMA_Amphenol_132134_Vertical" locked (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70cc54) - (at 167.1 56.9) - (descr "https://www.amphenolrf.com/downloads/dl/file/id/2187/product/2843/132134_customer_drawing.pdf") - (tags "SMA THT Female Jack Vertical ExtendedLegs") - (property "Config" "") - (property "MFN" "Amphenol") - (property "PN" "901-144-8RFX") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "coaxial connector (BNC, SMA, SMB, SMC, Cinch/RCA, LEMO, ...)") - (property "ki_keywords" "BNC SMA SMB SMC LEMO coaxial connector CINCH RCA") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005f57db71") - (attr through_hole) - (fp_text reference "J11" (at 0 -5) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp b34a02c7-1b7c-4dda-89d7-10fdc418a1ce) - ) - (fp_text value "Curr_In (Out2)" (at 0 5) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 9b90ca28-af0e-4923-b353-e16bcbf7f1a3) - ) - (fp_text user "${REFERENCE}" (at 0 -5) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 29f79873-c951-41c2-a902-d15a862e60bd) - ) - (fp_line (start -3.68 -1.8) (end -3.68 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f5e18fa8-8998-4de4-baff-1eb05d412242)) - (fp_line (start -1.8 -3.68) (end 1.8 -3.68) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5e49653e-2d0b-4910-982d-88ed07b81894)) - (fp_line (start -1.8 3.68) (end 1.8 3.68) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2cce5aac-fa36-4c21-be36-cdc7ab087c6d)) - (fp_line (start 3.68 -1.8) (end 3.68 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fc64b25e-4f0e-4b99-9ace-fb7d817c0bff)) - (fp_line (start -4.17 -4.17) (end -4.17 4.17) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 57bb6752-412d-4b5e-8c9e-e1708ba89110)) - (fp_line (start -4.17 -4.17) (end 4.17 -4.17) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3fd5bda8-0136-42e6-9df7-060763e1c076)) - (fp_line (start 4.17 4.17) (end -4.17 4.17) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c3e2952d-66ba-49d0-bd8c-92af0a4be4dc)) - (fp_line (start 4.17 4.17) (end 4.17 -4.17) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 06c75506-4f17-4bb1-8d11-2f45226b558e)) - (fp_line (start -3.5 -3.5) (end -3.5 3.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2a7ea0c4-b25a-43df-8e39-a3cb6c1a50c0)) - (fp_line (start -3.5 -3.5) (end 3.5 -3.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2a130577-06c1-444b-87af-93c1082c64c4)) - (fp_line (start -3.5 3.5) (end 3.5 3.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a26cd43d-5d17-4d8d-b568-4823d3661bf6)) - (fp_line (start 3.5 -3.5) (end 3.5 3.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9c0b3fad-39d8-4841-8d24-2a1d61939f92)) - (fp_circle (center 0 0) (end 3.175 0) - (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 5eb88003-1c96-42fc-b2ef-618c7beda6a3)) - (pad "1" thru_hole circle locked (at 0 0) (size 2.05 2.05) (drill 1.5) (layers "*.Cu" "*.Mask") - (net 75 "Net-(J11-In)") (pinfunction "In") (pintype "passive") (tstamp beb984c9-b037-4469-8e5d-6b30fba4bef3)) - (pad "2" thru_hole circle locked (at -2.54 -2.54) (size 2.25 2.25) (drill 1.7) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "Ext") (pintype "passive") (tstamp 10cfd09f-1db2-4f25-8203-98629d7b1292)) - (pad "2" thru_hole circle locked (at -2.54 2.54) (size 2.25 2.25) (drill 1.7) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "Ext") (pintype "passive") (tstamp 1b7032f8-0570-44ba-bc84-baf892c201de)) - (pad "2" thru_hole circle locked (at 2.54 -2.54) (size 2.25 2.25) (drill 1.7) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "Ext") (pintype "passive") (tstamp 5b806bc5-0415-4210-b7d0-0dfd8479dd30)) - (pad "2" thru_hole circle locked (at 2.54 2.54) (size 2.25 2.25) (drill 1.7) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "Ext") (pintype "passive") (tstamp f21b2606-de52-4ba1-9815-8ec950de7c99)) - (model "${KICAD6_3DMODEL_DIR}/Connector_Coaxial.3dshapes/SMA_Amphenol_132291-12_Vertical.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70cc90) - (at 97.85 56.26) - (descr "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") - (tags "resistor") - (property "MFN" "Susumu") - (property "PN" "RR0816P-102-D") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Resistor, small symbol") - (property "ki_keywords" "R resistor") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005ccfcd96") - (attr smd) - (fp_text reference "R4" (at -2.66 -0.075) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp a19770df-fb2e-4c04-8ab6-86a8ec324532) - ) - (fp_text value "1k" (at 0 1.5) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 8ac1e7bb-0d7b-466e-84c1-716852c49e7a) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.075))) - (tstamp 14f60daf-0b78-4bcd-9a6d-8864084428f4) - ) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 400d77e6-762f-4c72-9e75-9aaf6b44cf1e)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 56e9a352-5583-4107-9468-d1a8451f8682)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4d445729-fa75-4c62-aaef-abc378222310)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3be38b69-cd6e-46a6-8043-fe34776baf85)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0b767333-772a-4607-adc0-15b12da8840c)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 67bf394d-5eaf-4791-88ee-58a19d6d7db8)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aa3ae8db-49d0-477b-91bb-ac36f5739358)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3cea40bd-7589-4e62-88e8-332ee992dd4f)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 74579146-2d61-4932-8686-f33665d0c342)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b5756787-107b-4b34-ad1d-618297ad31d4)) - (pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 24 "Net-(R4-Pad1)") (pintype "passive") (tstamp 04bef38a-c745-49f5-8248-780844e29155)) - (pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 80 "Net-(U4A--)") (pintype "passive") (tstamp bfafd760-ddd7-4ca5-a04d-c16809ced2b8)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70ccc0) - (at 97.85 57.9) - (descr "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") - (tags "resistor") - (property "MFN" "Vishay") - (property "PN" "RCS0603249RFKEA") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Resistor, small symbol") - (property "ki_keywords" "R resistor") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005ccfce48") - (attr smd) - (fp_text reference "R3" (at -2.73 0.02) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp f34e3a51-4c3b-4917-b341-ae079b11f2ca) - ) - (fp_text value "249" (at 0 1.5) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 79cdcac0-fbab-4807-b48c-a648dfca8bbe) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.075))) - (tstamp bf4b9bf0-ca34-40a9-a165-75ca793b3b09) - ) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 513ccc1b-f3ed-4018-8b45-b3736ebce630)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 24ba93e8-e169-4a81-903f-5e916aa98a11)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 700d2596-7a2d-4a36-b9af-16cfae1c6d2f)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b9986638-85d9-4f8e-bdb4-e7777fa6d867)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ea6ee497-bf9a-4f22-b77a-a213da9ec6d6)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2994cd64-7441-4854-ba1b-7211d921f60b)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e94a1535-780a-4e50-9784-a2a039deda65)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6e7929dc-89c2-444a-aa6e-125b701fe18e)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fbe79fcc-0b59-4526-a432-59133eb96d00)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 93a506f7-f0f0-4fb9-9723-da79c587c665)) - (pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp 9c468f98-8fa1-4500-ae74-0f6672ad40af)) - (pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 80 "Net-(U4A--)") (pintype "passive") (tstamp 4d6f1fba-2169-470f-8e93-bc8d84a9f42f)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70cdc2) - (at 126.1 57.15 90) - (descr "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") - (tags "resistor") - (property "Config" "DNF") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Resistor, small symbol") - (property "ki_keywords" "R resistor") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b3fa4a8") - (attr smd) - (fp_text reference "R7" (at -2.6 0 270) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 5aa670be-398d-4f9f-9846-57b175046d2b) - ) - (fp_text value "DNF" (at 0 1.5 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp fbb736dc-873d-4a2f-a783-f42f67d12bee) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.075))) - (tstamp 706c65ed-429e-4fc2-8d28-8cb946272280) - ) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9378c9d2-01cb-46a2-af7b-fd62d6d79205)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3472257b-78d5-44e4-b8d7-029928e80f00)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 03bd7986-0ec7-4fbe-be85-98280c26dada)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f084b5b2-a9b6-4b31-8994-ce6e0babb23f)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c8a9ad3a-4668-4792-9ee5-80e133d97ab6)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fb02f153-c71d-4604-b36e-f3cd566863b2)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 40ce29ed-bb7d-4076-9c10-c6bd822ea9c8)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fc893b3d-0c61-402d-9611-72b81d4f9b16)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a13c1fe1-69dd-4998-8cfb-5a4142385f0a)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f25092e7-3184-4c49-a9e2-5c4e5f7e9b17)) - (pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp 4a39133b-c5f3-40ee-820f-e2fdf8719f7e)) - (pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 82 "Net-(U8B--)") (pintype "passive") (tstamp 6d06083a-6ca0-43d4-8c60-7cf4a1d6d254)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Connector_Coaxial:SMA_Amphenol_132134_Vertical" locked (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70cdfb) - (at 118.6 57) - (descr "https://www.amphenolrf.com/downloads/dl/file/id/2187/product/2843/132134_customer_drawing.pdf") - (tags "SMA THT Female Jack Vertical ExtendedLegs") - (property "Config" "") - (property "MFN" "Amphenol") - (property "PN" "901-144-8RFX") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "coaxial connector (BNC, SMA, SMB, SMC, Cinch/RCA, LEMO, ...)") - (property "ki_keywords" "BNC SMA SMB SMC LEMO coaxial connector CINCH RCA") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b05798e") - (attr through_hole) - (fp_text reference "J5" (at 0 -5) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp d31b712a-6cc0-46a1-843e-d81d4bed9d7a) - ) - (fp_text value "Piezo_Out" (at 0 5) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 564123cb-4c74-4a56-96dd-77cf9bcd0fdd) - ) - (fp_text user "${REFERENCE}" (at 0 -5) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 0523cfd9-1710-4571-aaa2-3c9cabe35cb0) - ) - (fp_line (start -3.68 -1.8) (end -3.68 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 137a70c7-f597-4884-9e61-af110de23bd4)) - (fp_line (start -1.8 -3.68) (end 1.8 -3.68) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5813bb3b-6bde-460e-a9e0-8e3d510be799)) - (fp_line (start -1.8 3.68) (end 1.8 3.68) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b7f78ffb-9339-479e-a19c-b9dca285254b)) - (fp_line (start 3.68 -1.8) (end 3.68 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a5f366c8-c400-492d-bae7-d47b104d3a52)) - (fp_line (start -4.17 -4.17) (end -4.17 4.17) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dcb33c45-cf30-4ec2-9336-c00830818089)) - (fp_line (start -4.17 -4.17) (end 4.17 -4.17) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1906d46b-659c-4b0b-b8fd-c9058aebcf23)) - (fp_line (start 4.17 4.17) (end -4.17 4.17) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a28834e2-18d9-4af1-ae40-d2b08628bbc4)) - (fp_line (start 4.17 4.17) (end 4.17 -4.17) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5e718e01-e0a8-4406-83ae-00db4aeb3c7d)) - (fp_line (start -3.5 -3.5) (end -3.5 3.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f6aabc2e-26d2-4e8c-a116-2a65cbac4e3f)) - (fp_line (start -3.5 -3.5) (end 3.5 -3.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e92e7ed0-50c5-435a-a27f-b644b70e498a)) - (fp_line (start -3.5 3.5) (end 3.5 3.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ff44a003-bafe-49b8-8f27-a643c2167181)) - (fp_line (start 3.5 -3.5) (end 3.5 3.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3026a39d-be81-4eb7-b7d2-2089af5d4eba)) - (fp_circle (center 0 0) (end 3.175 0) - (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 25919ef2-7522-450e-9f17-4d1993213403)) - (pad "1" thru_hole circle locked (at 0 0) (size 2.05 2.05) (drill 1.5) (layers "*.Cu" "*.Mask") - (net 73 "Net-(J5-In)") (pinfunction "In") (pintype "passive") (tstamp 70debdc3-087e-404a-9c28-88e1b63193a1)) - (pad "2" thru_hole circle locked (at -2.54 -2.54) (size 2.25 2.25) (drill 1.7) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "Ext") (pintype "passive") (tstamp 516f49a7-6ad7-485e-ae71-e4eafa79cf90)) - (pad "2" thru_hole circle locked (at -2.54 2.54) (size 2.25 2.25) (drill 1.7) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "Ext") (pintype "passive") (tstamp 8d8dd6fe-31b0-4a0d-905d-eca5b9c4a74e)) - (pad "2" thru_hole circle locked (at 2.54 -2.54) (size 2.25 2.25) (drill 1.7) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "Ext") (pintype "passive") (tstamp 00193843-4ae5-4c93-b23f-09357e6d6400)) - (pad "2" thru_hole circle locked (at 2.54 2.54) (size 2.25 2.25) (drill 1.7) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "Ext") (pintype "passive") (tstamp cd039853-c0e1-4f2b-ba53-b2846ca5e812)) - (model "${KICAD6_3DMODEL_DIR}/Connector_Coaxial.3dshapes/SMA_Amphenol_132291-12_Vertical.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Connector_Coaxial:SMA_Amphenol_132134_Vertical" locked (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70ce3d) - (at 139.1 57) - (descr "https://www.amphenolrf.com/downloads/dl/file/id/2187/product/2843/132134_customer_drawing.pdf") - (tags "SMA THT Female Jack Vertical ExtendedLegs") - (property "Config" "") - (property "MFN" "Amphenol") - (property "PN" "901-144-8RFX") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "coaxial connector (BNC, SMA, SMB, SMC, Cinch/RCA, LEMO, ...)") - (property "ki_keywords" "BNC SMA SMB SMC LEMO coaxial connector CINCH RCA") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b0591ae") - (attr through_hole) - (fp_text reference "J12" (at 0 -5) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 80e4f595-1c0d-49f9-909c-f5368743539f) - ) - (fp_text value "Error_In" (at 0 5) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp ce728bcd-b9e1-4612-81c6-b4d0c133ba26) - ) - (fp_text user "${REFERENCE}" (at 0 -5) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 43bcf8da-2f0a-4976-a57c-8b07c143f336) - ) - (fp_line (start -3.68 -1.8) (end -3.68 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a6336d85-d16e-4c27-a1b8-10b9402f829f)) - (fp_line (start -1.8 -3.68) (end 1.8 -3.68) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 67a344eb-76fc-47d3-9beb-fe7b55ee321f)) - (fp_line (start -1.8 3.68) (end 1.8 3.68) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 46aee640-f96a-4dfc-b906-483a20ba0a98)) - (fp_line (start 3.68 -1.8) (end 3.68 1.8) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 07b6480e-555d-4340-92e0-85529b0ebd57)) - (fp_line (start -4.17 -4.17) (end -4.17 4.17) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6a8930d1-6d6c-4aa6-81e2-e0b26aa0deb5)) - (fp_line (start -4.17 -4.17) (end 4.17 -4.17) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bcfa9355-d4d3-4e02-ad16-4761854c18a2)) - (fp_line (start 4.17 4.17) (end -4.17 4.17) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 36473991-3780-434a-95ea-434cce6e0618)) - (fp_line (start 4.17 4.17) (end 4.17 -4.17) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 802159be-d882-4ead-829f-44b1d792b0bf)) - (fp_line (start -3.5 -3.5) (end -3.5 3.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4fad0d9d-dcff-4161-967b-7a857b24c182)) - (fp_line (start -3.5 -3.5) (end 3.5 -3.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d5599cf0-281c-454d-b733-b4df3d683100)) - (fp_line (start -3.5 3.5) (end 3.5 3.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3685d04f-9d7f-4c03-be8b-2e4912a7de77)) - (fp_line (start 3.5 -3.5) (end 3.5 3.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 47aba5c8-14ac-4e8c-8d43-40beeda37e48)) - (fp_circle (center 0 0) (end 3.175 0) - (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 489dec27-788f-4455-945e-038c9a813833)) - (pad "1" thru_hole circle locked (at 0 0) (size 2.05 2.05) (drill 1.5) (layers "*.Cu" "*.Mask") - (net 76 "Net-(J12-In)") (pinfunction "In") (pintype "passive") (tstamp 927a9d3e-a598-4502-9ea7-3e8dbb78e8e7)) - (pad "2" thru_hole circle locked (at -2.54 -2.54) (size 2.25 2.25) (drill 1.7) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "Ext") (pintype "passive") (tstamp 11dbb7f8-267e-4e8f-8112-09385fd2af79)) - (pad "2" thru_hole circle locked (at -2.54 2.54) (size 2.25 2.25) (drill 1.7) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "Ext") (pintype "passive") (tstamp 3d6a2082-49f4-41e0-b01d-518047a2d721)) - (pad "2" thru_hole circle locked (at 2.54 -2.54) (size 2.25 2.25) (drill 1.7) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "Ext") (pintype "passive") (tstamp d89826de-f31c-4d26-8f52-f432be1dc281)) - (pad "2" thru_hole circle locked (at 2.54 2.54) (size 2.25 2.25) (drill 1.7) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "Ext") (pintype "passive") (tstamp b62090b9-ee14-49d1-b6f1-1db299d10df2)) - (model "${KICAD6_3DMODEL_DIR}/Connector_Coaxial.3dshapes/SMA_Amphenol_132291-12_Vertical.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Inductor_SMD:L_0805_2012Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70ce79) - (at 76.7 93.1) - (descr "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") - (tags "inductor") - (property "MFN" "TDK") - (property "PN" "MPZ2012S221AT000") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "Ferrite bead, small symbol") - (property "ki_keywords" "L ferrite bead inductor filter") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005b0b0023") - (attr smd) - (fp_text reference "FB1" (at 0 -2.1) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 7becadcf-92bb-4b0f-b424-e601177ae7c7) - ) - (fp_text value "TDK MPZ2012S221A" (at 0 2.1) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp b236fba4-ee3f-4f51-84ba-e0e0cc4e4685) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.5 0.5) (thickness 0.075))) - (tstamp af1a91f7-0fa3-408d-8b61-4c2bae43ef2e) - ) - (fp_line (start -0.399622 -0.56) (end 0.399622 -0.56) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6b00e94a-d188-4659-9a77-f0ab62077904)) - (fp_line (start -0.399622 0.56) (end 0.399622 0.56) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a2974f25-8554-432f-ae0b-ad99bf17d4e6)) - (fp_line (start -1.75 -0.85) (end 1.75 -0.85) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8b0e749d-cfce-4110-927b-3e5a67046224)) - (fp_line (start -1.75 0.85) (end -1.75 -0.85) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9fcb5f2d-a864-45b1-961b-52e5bdc0c67e)) - (fp_line (start 1.75 -0.85) (end 1.75 0.85) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5c284338-b96e-47e9-abed-63174f7a17d2)) - (fp_line (start 1.75 0.85) (end -1.75 0.85) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ba92032a-b424-42ae-88fb-6a02679d4be0)) - (fp_line (start -1 -0.45) (end 1 -0.45) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e43a283a-9edc-46d9-a699-4d948c4df798)) - (fp_line (start -1 0.45) (end -1 -0.45) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 23c17200-5adc-48db-9c3d-c98d63b7c1d8)) - (fp_line (start 1 -0.45) (end 1 0.45) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c0fc0cd9-440b-4c7d-b891-bed09f56b926)) - (fp_line (start 1 0.45) (end -1 0.45) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ef31713a-9f28-44c8-b702-db9afca4d892)) - (pad "1" smd roundrect (at -1.0625 0) (size 0.875 1.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 1 "/Supply_Ref/+15V") (pintype "passive") (tstamp 5bfc57ee-1dbd-457e-9b5d-2ef1d6977545)) - (pad "2" smd roundrect (at 1.0625 0) (size 0.875 1.2) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 51 "Net-(C2-Pad1)") (pintype "passive") (tstamp 93915679-8af9-4956-b60c-1fb38bde88f1)) - (model "${KICAD6_3DMODEL_DIR}/Inductor_SMD.3dshapes/L_0805_2012Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "TestPoint:TestPoint_THTPad_D1.5mm_Drill0.7mm" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70cea0) - (at 89.49 76.46) - (descr "THT pad as test Point, diameter 1.5mm, hole diameter 0.7mm") - (tags "test point THT pad") - (property "Config" "DNF") - (property "MFN" "") - (property "PN" "") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "test point") - (property "ki_keywords" "test point tp") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005c229a96") - (attr exclude_from_pos_files) - (fp_text reference "TP3" (at 0 -2) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 301d75eb-2f4c-460b-ac8b-8f31b054be34) - ) - (fp_text value "TestPoint" (at 0 2) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 2acae94a-c237-4284-8e5d-7c0f94e17c68) - ) - (fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 79d37b06-badc-4f5f-97a6-c7c1287dbda6) - ) - (fp_circle (center 0 0) (end 0 0.95) - (stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp b52a7edb-1e83-4e61-8294-9f8403bad521)) - (fp_circle (center 0 0) (end 1.25 0) - (stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp ee14cc72-b150-493b-bcd2-a7180923b266)) - (pad "1" thru_hole circle (at 0 0) (size 1.5 1.5) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pinfunction "1") (pintype "passive") (tstamp 5011c101-848a-4802-a764-075466081f95)) - ) - - (footprint "custom:Laird_Technologies_BMI-S-107_44.37x44.37mm" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70cf00) - (at 88.7 107.9) - (descr "Laird Technologies BMI-S-107 Shielding Cabinet One Piece SMD 44.37x44.37mm") - (tags "Shielding Cabinet") - (property "Config" "") - (property "MFN" "Wurth Electronics") - (property "PN" "36907406S") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "One-piece EMI RF shielding cabinet") - (property "ki_keywords" "RF EMI shielding cabinet") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005b0d8bf4") - (attr smd) - (fp_text reference "J9" (at 0 -23.59) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 6fb7696d-ef60-4685-9f0d-0faea27741b4) - ) - (fp_text value "RF_Shield_One_Piece" (at 0 23.59) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 6affafb0-9ade-4fc7-9113-27dbcf952c45) - ) - (fp_line (start -22.335 -18.85) (end -22.335 -17.25) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp c4017700-1f70-4430-9570-0d8b6be71ec1)) - (fp_line (start -22.335 -12.85) (end -22.335 -11.25) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp fd1ea787-6c1a-4cc5-8a12-060b8e2e1d35)) - (fp_line (start -22.335 -6.85) (end -22.335 -5.25) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp ed2a0219-caad-4b26-8603-c7f644f3bb78)) - (fp_line (start -22.335 -0.85) (end -22.335 0.85) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 92bccd77-df02-4d24-82ee-862237527d29)) - (fp_line (start -22.335 5.25) (end -22.335 6.85) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 420c1fdf-5cc8-48b8-859e-f30fb6e97ecd)) - (fp_line (start -22.335 11.25) (end -22.335 12.85) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 68105948-89d3-44d8-a997-7eefb9dd3615)) - (fp_line (start -22.335 17.25) (end -22.335 18.85) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 286c43b6-e70d-4945-afa7-72df204c29e7)) - (fp_line (start -18.85 -22.335) (end -17.25 -22.335) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 3905d60b-a708-423f-ae40-e94febd8de9a)) - (fp_line (start -18.85 22.335) (end -17.25 22.335) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 1fc6fcd1-684e-4cd7-a02d-0fd7d7dc3a97)) - (fp_line (start -12.85 -22.335) (end -11.25 -22.335) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 05fb2ffc-c488-4657-b9a8-afe1d931781d)) - (fp_line (start -12.85 22.335) (end -11.25 22.335) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 644b4e81-409e-4ba2-9f90-cecc660f2a89)) - (fp_line (start -6.85 -22.335) (end -5.25 -22.335) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp a2660252-b0b3-45a7-842f-58afe0c2fa9a)) - (fp_line (start -6.85 22.335) (end -5.25 22.335) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 8b217842-7ced-466b-942e-72d0abdbd7d7)) - (fp_line (start -0.85 -22.335) (end 0.85 -22.335) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 1a384d23-1f83-4a10-af56-a22728cc3ebd)) - (fp_line (start -0.85 22.335) (end 0.85 22.335) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 4a7154b0-f326-41ac-b197-8e6f5f24492d)) - (fp_line (start 5.25 -22.335) (end 6.85 -22.335) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp f8d9eab7-2066-4033-bc36-20ac971a4319)) - (fp_line (start 5.25 22.335) (end 6.85 22.335) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 45a962c9-a1ba-4201-a4c8-d385dbef2e6e)) - (fp_line (start 11.25 -22.335) (end 12.85 -22.335) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp bd330bc1-2f3f-42e1-bf78-cbc89c175ca1)) - (fp_line (start 11.25 22.335) (end 12.85 22.335) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 9b853372-98bd-496d-853d-4dc614e8e265)) - (fp_line (start 17.25 -22.335) (end 18.85 -22.335) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp f15d7bb7-bd9a-4aa9-8aef-3795c539f52e)) - (fp_line (start 17.25 22.335) (end 18.85 22.335) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 3a68191d-9041-4779-93fe-22b3782beb9a)) - (fp_line (start 22.335 -18.85) (end 22.335 -17.25) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 917cf5fa-f55a-4a70-b5d2-77a9145dddb5)) - (fp_line (start 22.335 -12.85) (end 22.335 -11.25) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 36d5be83-44db-4349-85e3-e7e0d6a3d3ca)) - (fp_line (start 22.335 -6.85) (end 22.335 -5.25) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 0284a34d-e590-4c80-8229-718bf80faee7)) - (fp_line (start 22.335 -0.85) (end 22.335 0.85) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 1108052d-7ea6-4718-a868-4f9fd507ae46)) - (fp_line (start 22.335 5.25) (end 22.335 6.85) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 8d27e3f6-ae90-4bc3-9c4e-3b861868fbc0)) - (fp_line (start 22.335 11.25) (end 22.335 12.85) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 89d6cce5-fcfd-4b93-9b14-0e180cbb6314)) - (fp_line (start 22.335 17.25) (end 22.335 18.85) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 901cdee0-9b58-4160-8def-4cf789163e60)) - (fp_line (start -22.85 -22.85) (end -22.85 22.85) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 67cbe75b-0c3a-419f-8e23-f29b5c095225)) - (fp_line (start -22.85 22.85) (end 22.85 22.85) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 91b527c8-673d-48a0-a220-e2fce0ec49a5)) - (fp_line (start -21.4 -21.4) (end 21.4 -21.4) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 53302b20-1441-4046-bfa1-49cc4c822de5)) - (fp_line (start -21.4 21.4) (end -21.4 -21.4) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 175a2f89-e2b9-412a-8d1d-78faf1608fb5)) - (fp_line (start 21.4 -21.4) (end 21.4 21.4) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9b549f67-8bd5-4cbf-8008-ef78f2b64baa)) - (fp_line (start 21.4 21.4) (end -21.4 21.4) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c66d821f-6231-4bc9-b1a0-999c79e85231)) - (fp_line (start 22.85 -22.85) (end -22.85 -22.85) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 32de88c5-2396-4f49-836b-30f3e7de319b)) - (fp_line (start 22.85 22.85) (end 22.85 -22.85) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 070b24c4-4635-48e4-86a4-5a413f861c92)) - (fp_line (start -22.185 -22.185) (end -22.185 22.185) - (stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 034398e7-87ea-40ac-8e9b-dc6c785fef2f)) - (fp_line (start -22.185 22.185) (end 22.185 22.185) - (stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp b07178c1-961d-44e9-a088-2fbc2ea89e23)) - (fp_line (start 22.185 -22.185) (end -22.185 -22.185) - (stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 29886cd8-62bf-49a3-b0b7-3c3158a780fb)) - (fp_line (start 22.185 22.185) (end 22.185 -22.185) - (stroke (width 0.15) (type solid)) (layer "F.Fab") (tstamp 481308bd-a0d4-4e4a-82b2-92458d4980f0)) - (pad "1" smd rect (at -22.09 -22.09) (size 1 1) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 1920c031-fc52-46c4-a681-5d475549933b)) - (pad "1" smd rect (at -22.09 -20.37) (size 1 2.44) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 4db839eb-4f0a-4e98-aab8-c9c1898ee7b9)) - (pad "1" smd rect (at -22.09 -15.05) (size 1 3.8) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 7748767b-de77-4777-a8e2-c90441e27a63)) - (pad "1" smd rect (at -22.09 -9.05) (size 1 3.8) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 88eaf426-7be7-4428-a571-767287c54006)) - (pad "1" smd rect (at -22.09 -3.05) (size 1 3.8) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 6f18f3d7-edb9-4cce-96dc-5a938ded4615)) - (pad "1" smd rect (at -22.09 3.05) (size 1 3.8) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 161a6664-0775-4675-baaa-253cea4c31b9)) - (pad "1" smd rect (at -22.09 9.05) (size 1 3.8) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp dd22ce9e-4a90-4f1c-9808-3b10df65e069)) - (pad "1" smd rect (at -22.09 15.05) (size 1 3.8) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 2fa0f4f4-80f2-4a4a-9390-e3d92f826ba4)) - (pad "1" smd rect (at -22.09 20.37) (size 1 2.44) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp bbb03cc7-6d7c-44a2-8799-82cdce0ec972)) - (pad "1" smd rect (at -22.09 22.09) (size 1 1) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 204851ad-68b4-45cd-ab55-fd3603326358)) - (pad "1" smd rect (at -20.37 -22.09) (size 2.44 1) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp b7391c7c-4c30-4785-9fc0-7d5c98189b59)) - (pad "1" smd rect (at -20.37 22.09) (size 2.44 1) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp b4b7adc5-3888-4729-83ee-d6d322333f74)) - (pad "1" smd rect (at -15.05 -22.09) (size 3.8 1) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp bd8067da-9b15-4d9e-a4a1-a48c7bf2b858)) - (pad "1" smd rect (at -15.05 22.09) (size 3.8 1) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp a21f38f7-0346-475b-afaf-7c1db864ec6a)) - (pad "1" smd rect (at -9.05 -22.09) (size 3.8 1) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp b167e2ed-44d2-4427-a43e-18a35351d421)) - (pad "1" smd rect (at -9.05 22.09) (size 3.8 1) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp cd28a45f-0054-4eef-9409-acf5c5874193)) - (pad "1" smd rect (at -3.05 -22.09) (size 3.8 1) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 9f1b7ccf-95da-4c90-b4f4-e1d4d8869bc8)) - (pad "1" smd rect (at -3.05 22.09) (size 3.8 1) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp d4453ca7-531b-47e1-a141-3fdf3c7725a9)) - (pad "1" smd rect (at 3.05 -22.09) (size 3.8 1) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 63d25790-6ada-4346-aea2-ab2be868881e)) - (pad "1" smd rect (at 3.05 22.09) (size 3.8 1) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp fba056b4-8883-44a0-99c2-ce21fae4fff4)) - (pad "1" smd rect (at 9.05 -22.09) (size 3.8 1) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 5ad98276-09f7-495f-92d5-ac2fec22355a)) - (pad "1" smd rect (at 9.05 22.09) (size 3.8 1) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 236b7b83-698d-4d56-950f-17a39879b06d)) - (pad "1" smd rect (at 15.05 -22.09) (size 3.8 1) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 7c013fdc-77d0-4d4d-9f8e-e96f76776357)) - (pad "1" smd rect (at 15.05 22.09) (size 3.8 1) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 247be710-85a7-4e84-88b4-af07d29366a3)) - (pad "1" smd rect (at 20.37 -22.09) (size 2.44 1) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 0f270ce2-1657-4cb5-b592-6f6c8d4a4a29)) - (pad "1" smd rect (at 20.37 22.09) (size 2.44 1) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp cd7f411a-fef3-4977-aeaf-8aba74eb202d)) - (pad "1" smd rect (at 22.09 -22.09) (size 1 1) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp d5f403af-ad93-439c-b890-dbd6cbb4cc02)) - (pad "1" smd rect (at 22.09 -20.37) (size 1 2.44) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp bc1ec9da-4f13-422d-a05c-4c64b9fe952c)) - (pad "1" smd rect (at 22.09 -15.05) (size 1 3.8) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp c90187cc-a33d-4030-9adb-ce86e49e1cbc)) - (pad "1" smd rect (at 22.09 -9.05) (size 1 3.8) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 5ae49217-93c5-4964-9764-ee4a00b0a770)) - (pad "1" smd rect (at 22.09 -3.05) (size 1 3.8) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp d9a62572-f0c3-4a85-92f2-721dcd0e175d)) - (pad "1" smd rect (at 22.09 3.05) (size 1 3.8) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 7053dc57-68b2-4459-934f-a34c026a161f)) - (pad "1" smd rect (at 22.09 9.05) (size 1 3.8) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp c00afe95-b3c5-4947-a8d8-254c66cf533c)) - (pad "1" smd rect (at 22.09 15.05) (size 1 3.8) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 0e4512a1-d141-4530-ad20-456964559c80)) - (pad "1" smd rect (at 22.09 20.37) (size 1 2.44) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 80166b3d-3ced-4234-a98f-d003eb19be77)) - (pad "1" smd rect (at 22.09 22.09) (size 1 1) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 5a86c0be-936b-431a-a78d-68981781995c)) - ) - - (footprint "custom:APQ-Logo" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70cfab) - (at 114.9 127.4) - (property "Config" "DNF") - (property "MFN" "") - (property "PN" "") - (property "Sheetfile" "RedPitaya_Lockbox.kicad_sch") - (property "Sheetname" "") - (property "Sim.Enable" "0") - (property "exclude_from_bom" "") - (property "ki_description" "Atoms - Photons - Quanta") - (property "ki_keywords" "Logo") - (path "/00000000-0000-0000-0000-00005f6d3841") - (attr exclude_from_pos_files exclude_from_bom) - (fp_text reference "LOGO1" (at 0 0.5) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 9f927595-3e42-4377-b7e5-03386aa49846) - ) - (fp_text value "Logo_APQ" (at 0 4.58) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 7dfb4377-382a-4fce-814f-06af1ef4b884) - ) - (fp_text user "APQ" (at 11.91 2.66) (layer "F.SilkS") - (effects (font (size 4.4 4.4) (thickness 0.6))) - (tstamp ceaaa759-0d34-4815-a2f9-fc12219b1ec5) - ) - (fp_circle (center 0.25 0.5) (end 0.504 0.5) - (stroke (width 1) (type solid)) (fill none) (layer "F.SilkS") (tstamp f3582da6-2351-43b4-946c-01afa0d5cd6c)) - (fp_circle (center 0.25 2.5) (end 0.504 2.5) - (stroke (width 1) (type solid)) (fill none) (layer "F.SilkS") (tstamp 194ba717-2ccf-4576-b7e0-af4783d37ae4)) - (fp_circle (center 0.25 4.5) (end 0.504 4.5) - (stroke (width 1) (type solid)) (fill none) (layer "F.SilkS") (tstamp 5b611a25-88f4-4347-beed-87a976124a25)) - (fp_circle (center 2.25 0.5) (end 2.504 0.5) - (stroke (width 1) (type solid)) (fill none) (layer "F.SilkS") (tstamp fe58fd34-1617-411b-babd-ff4285279cb4)) - (fp_circle (center 2.25 2.5) (end 2.504 2.5) - (stroke (width 1) (type solid)) (fill none) (layer "F.SilkS") (tstamp 9b66dc29-9c59-4dcd-b53d-18487ef7806b)) - (fp_circle (center 2.25 4.5) (end 2.504 4.5) - (stroke (width 1) (type solid)) (fill none) (layer "F.SilkS") (tstamp 9c7c2af0-3b48-462e-924b-566eb39aa168)) - (fp_circle (center 4.25 0.5) (end 4.504 0.5) - (stroke (width 1) (type solid)) (fill none) (layer "F.SilkS") (tstamp 6cd1eb57-21bd-40d0-906d-265953d03897)) - (fp_circle (center 4.25 2.5) (end 4.504 2.5) - (stroke (width 1) (type solid)) (fill none) (layer "F.SilkS") (tstamp 05da709d-38f7-43bd-8575-74e0d278c548)) - (fp_circle (center 4.25 4.5) (end 4.504 4.5) - (stroke (width 1) (type solid)) (fill none) (layer "F.SilkS") (tstamp 8cebedcf-c19c-48bf-b93e-9001603f1f96)) - ) - - (footprint "Connector_Molex:Molex_KK-254_AE-6410-03A_1x03_P2.54mm_Vertical" locked (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70cfd5) - (at 78.5 63.98 90) - (descr "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") - (tags "connector Molex KK-254 vertical") - (property "Config" "") - (property "MFN" "Molex") - (property "PN" "22-23-2031") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "Potentiometer") - (property "ki_keywords" "resistor variable") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005d6da79f") - (attr through_hole) - (fp_text reference "RV1" (at 2.54 -4.12 90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 54e0bd10-c11b-4e32-a2ad-e8ff7bd09496) - ) - (fp_text value "10k" (at 2.54 4.08 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 5129f1f6-52bd-430c-8d70-c41552e7db76) - ) - (fp_text user "${REFERENCE}" (at 2.54 -2.22 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp added1b8-fdae-46c4-88b0-4acc74e9a9a2) - ) - (fp_line (start -1.67 -2) (end -1.67 2) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b8605d37-5223-42a2-bdb3-65830d81b5ea)) - (fp_line (start -1.38 -3.03) (end -1.38 2.99) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 35814732-bc65-4c9e-988c-dc9dfab839fc)) - (fp_line (start -1.38 2.99) (end 6.46 2.99) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 678d90e2-8ca0-42cb-8ca8-c1c1b8190c61)) - (fp_line (start -0.8 -3.03) (end -0.8 -2.43) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b90ffa26-0071-4b76-b01b-070e697f3ea7)) - (fp_line (start -0.8 -2.43) (end 0.8 -2.43) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3b7606ce-bd82-47c8-baa4-8c0636fe6500)) - (fp_line (start 0 1.99) (end 0.25 1.46) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 23338660-e6ea-47e2-becc-d96862aae157)) - (fp_line (start 0 1.99) (end 5.08 1.99) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 729f6907-fe79-47cf-bb47-0e29b47f3702)) - (fp_line (start 0 2.99) (end 0 1.99) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp abd49ece-b77c-44c9-83dd-054b29b76a66)) - (fp_line (start 0.25 1.46) (end 4.83 1.46) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ba840c95-281d-4539-977c-f2ea4b1370e2)) - (fp_line (start 0.25 2.99) (end 0.25 1.99) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1b19f1e9-18d6-484b-9c59-734cd2ebf29b)) - (fp_line (start 0.8 -2.43) (end 0.8 -3.03) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 385e310b-9b6a-4794-ab1b-82e681d8ce77)) - (fp_line (start 1.74 -3.03) (end 1.74 -2.43) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aa853e74-68e2-4c83-809e-89f5b1ed0a6b)) - (fp_line (start 1.74 -2.43) (end 3.34 -2.43) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 73510195-f153-4a6b-a704-acf64f6d91f5)) - (fp_line (start 3.34 -2.43) (end 3.34 -3.03) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c2e8e38e-d439-4aef-bf33-41970c5dce9b)) - (fp_line (start 4.28 -3.03) (end 4.28 -2.43) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 61e5bee4-4dfe-480e-9ab8-03bf5b5dee38)) - (fp_line (start 4.28 -2.43) (end 5.88 -2.43) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d5f58405-397d-4768-a748-87a5a26a848b)) - (fp_line (start 4.83 1.46) (end 5.08 1.99) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6f79e602-a186-413a-9fe0-24faa8ae8512)) - (fp_line (start 4.83 2.99) (end 4.83 1.99) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp efd1a7f3-02e0-48b9-9687-5f83c813c79d)) - (fp_line (start 5.08 1.99) (end 5.08 2.99) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 892cd033-c405-49ef-88ff-d565cf5e4ae1)) - (fp_line (start 5.88 -2.43) (end 5.88 -3.03) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d4bd0f7a-166f-44a3-87cc-28d8a47a9c81)) - (fp_line (start 6.46 -3.03) (end -1.38 -3.03) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2de22f6e-7a9d-493a-8d94-f77ae5be8ea8)) - (fp_line (start 6.46 2.99) (end 6.46 -3.03) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d197249c-0531-4d14-bb0f-02194f964baf)) - (fp_line (start -1.77 -3.42) (end -1.77 3.38) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a1d6242b-5ad7-436a-a1c0-6784e8270bcf)) - (fp_line (start -1.77 3.38) (end 6.85 3.38) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 341c1495-d53c-4b7d-9aba-1524f9655e15)) - (fp_line (start 6.85 -3.42) (end -1.77 -3.42) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d49996c4-af48-489f-af24-0a6c0f64f8de)) - (fp_line (start 6.85 3.38) (end 6.85 -3.42) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d6c6f540-2551-44d3-8263-2349a8414878)) - (fp_line (start -1.27 -2.92) (end -1.27 2.88) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 69eae764-2122-49c1-89fe-41d03449a552)) - (fp_line (start -1.27 -0.5) (end -0.562893 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 557c1667-46f5-45cb-a920-cbc50d9eb82d)) - (fp_line (start -1.27 2.88) (end 6.35 2.88) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 98d56e5a-05b3-428d-81ca-a68913c0e33b)) - (fp_line (start -0.562893 0) (end -1.27 0.5) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8b604cef-b7ce-4c3a-9ebf-2635f45b0a5d)) - (fp_line (start 6.35 -2.92) (end -1.27 -2.92) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ec2e7c0f-8df6-4fa9-8eb1-25ea10d1be2c)) - (fp_line (start 6.35 2.88) (end 6.35 -2.92) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aefadd62-638f-491a-a7b7-6bc984b602d4)) - (pad "1" thru_hole roundrect locked (at 0 0 90) (size 1.74 2.19) (drill 1.19) (layers "*.Cu" "*.Mask") (roundrect_rratio 0.143678) - (net 2 "GND") (pinfunction "1") (pintype "passive") (tstamp 788ffb3a-f3bf-4a87-9032-652020623d34)) - (pad "2" thru_hole oval locked (at 2.54 0 90) (size 1.74 2.19) (drill 1.19) (layers "*.Cu" "*.Mask") - (net 97 "/Input_Output_Module/SET") (pinfunction "2") (pintype "passive") (tstamp e1c686cf-e08a-4c55-a00d-2162f95f5b4a)) - (pad "3" thru_hole oval locked (at 5.08 0 90) (size 1.74 2.19) (drill 1.19) (layers "*.Cu" "*.Mask") - (net 118 "/Input_Output_Module/+10V_ref") (pinfunction "3") (pintype "passive") (tstamp 20ba3f23-9027-4135-a7ff-cda6ced29c4a)) - (model "${KICAD6_3DMODEL_DIR}/Connector_Molex.3dshapes/Molex_KK-254_AE-6410-03A_1x03_P2.54mm_Vertical.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70d0a4) - (at 101.5 98.9 180) - (descr "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") - (tags "resistor") - (property "MFN" "Panasonic") - (property "PN" "ERJ-3RED1004V") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "Resistor, small symbol") - (property "ki_keywords" "R resistor") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005b0af408") - (attr smd) - (fp_text reference "R15" (at -3.2 0 180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 35d48ece-2741-4e81-adb6-27b357694ea5) - ) - (fp_text value "1M" (at 0 1.5 180) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 65cd102f-31ca-4702-b9cb-0d47f479124b) - ) - (fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.075))) - (tstamp 6baaa700-ab39-4405-96f1-475c1adc3163) - ) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 465f0981-893f-4fb8-956a-093cffd38ded)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9e9f7fb0-51f6-40d9-ad41-7740ba9400f1)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cc3acf36-ba50-406c-8059-67ea968632d1)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f9cf3365-bbd0-496e-8788-1eac62696887)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5a2d8f06-020e-4b40-aed2-4ed23a7d37d1)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 28fcd91e-dc7f-4797-be22-475d81d9c793)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e380c3a6-823a-4e8c-9f1b-2474d2cdf32f)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b1f11776-ee9b-4e3f-a9ac-a610662b2c9b)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0e2d2b9d-440b-4cb8-8a63-4d2976496b70)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d6767a2a-82c3-491d-bc95-3c4880c3512f)) - (pad "1" smd roundrect (at -0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 21 "/Supply_Ref/+5V") (pintype "passive") (tstamp b5e51790-b63d-4ed0-9674-67c98c89f869)) - (pad "2" smd roundrect (at 0.825 0 180) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 12 "Net-(U6-FB)") (pintype "passive") (tstamp dbc7ace1-771e-4593-87f7-7333f3b9016a)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_SMD:C_1206_3216Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70d0d4) - (at 77.6 50.9 180) - (descr "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") - (tags "capacitor") - (property "MFN" "KEMET") - (property "PN" "C1206C104K3GEC7210") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "Unpolarized capacitor, small symbol") - (property "ki_keywords" "capacitor cap") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005b054c4b") - (attr smd) - (fp_text reference "C9" (at -3.23 0.02 180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 7f9249ef-b8ce-4af1-b36d-e4600bc5d4ab) - ) - (fp_text value "100n" (at 0 2 180) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 656fb36a-b554-403d-830e-c7a7904db9dd) - ) - (fp_text user "${REFERENCE}" (at 0 -1.75 180) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 65e0f4d5-e0ff-4554-a510-ac3169fe7d9c) - ) - (fp_line (start -0.711252 -0.91) (end 0.711252 -0.91) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e56d1685-d605-4215-9b4b-40372ab976e4)) - (fp_line (start -0.711252 0.91) (end 0.711252 0.91) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a0da7787-0809-4138-9fb4-8000d37837af)) - (fp_line (start -2.3 -1.15) (end 2.3 -1.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7485e56a-1e77-457c-a5c6-f1640bb6089d)) - (fp_line (start -2.3 1.15) (end -2.3 -1.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c0c2d413-5c94-4cb3-bb11-639825d47482)) - (fp_line (start 2.3 -1.15) (end 2.3 1.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 81c51dba-f8e3-4eea-8618-d0cdb98b8b04)) - (fp_line (start 2.3 1.15) (end -2.3 1.15) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 39506b72-5684-445d-87b8-fcd6953e15fa)) - (fp_line (start -1.6 -0.8) (end 1.6 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d7ead384-2e29-4287-a69c-67b70c64e406)) - (fp_line (start -1.6 0.8) (end -1.6 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 84261484-0242-476e-b9a6-39df448260cc)) - (fp_line (start 1.6 -0.8) (end 1.6 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 73991205-5ddf-4dce-b25c-15418e2f2e08)) - (fp_line (start 1.6 0.8) (end -1.6 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4c7ae9a3-a1ff-43b8-b359-9d13f9c443a9)) - (pad "1" smd roundrect (at -1.475 0 180) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) - (net 2 "GND") (pintype "passive") (tstamp f67c058a-3158-4688-92d4-5937a69f4185)) - (pad "2" smd roundrect (at 1.475 0 180) (size 1.15 1.8) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391) - (net 9 "Net-(U2-SET)") (pintype "passive") (tstamp c61ece2f-fcb9-4f36-a283-05e79ef1ae6f)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_SMD:C_0805_2012Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70d107) - (at 73.8 94.1 -90) - (descr "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") - (tags "capacitor") - (property "MFN" "Wurth Electronics") - (property "PN" "885012107013") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "Unpolarized capacitor, small symbol") - (property "ki_keywords" "capacitor cap") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005b0ae6a5") - (attr smd) - (fp_text reference "C1" (at -0.1 1.8 -90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp d32bb6ad-dd8d-4873-a675-191352caa713) - ) - (fp_text value "4.7u" (at 0 1.75 -90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp b4ba89a2-989d-4ae1-9513-d78887282d08) - ) - (fp_text user "${REFERENCE}" (at 0 -1.5 -90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp b3bbb56f-3a9b-487a-a676-357f00f6f123) - ) - (fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 92aa9daa-23f5-4cef-845a-aae475e37697)) - (fp_line (start -0.261252 0.735) (end 0.261252 0.735) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c0cdc379-15bd-4d71-904a-d680558758cd)) - (fp_line (start -1.7 -0.98) (end 1.7 -0.98) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5afa49a8-c8f9-459d-9b42-d8f6b5164a6a)) - (fp_line (start -1.7 0.98) (end -1.7 -0.98) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f155b941-e17a-46af-8a54-425524ad0e28)) - (fp_line (start 1.7 -0.98) (end 1.7 0.98) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ad9408e0-639b-4391-a45c-f716b1fb2879)) - (fp_line (start 1.7 0.98) (end -1.7 0.98) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d3aa16f5-bc24-4bbf-a5d9-8bc998f520f7)) - (fp_line (start -1 -0.625) (end 1 -0.625) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6c2e0f7a-aa4c-428e-a2cb-54319d0b8258)) - (fp_line (start -1 0.625) (end -1 -0.625) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1ec74ba7-6d03-4e1d-8ae2-5a4fc05d5ab3)) - (fp_line (start 1 -0.625) (end 1 0.625) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1e664408-4f57-4cb7-99f9-7869977ebf1f)) - (fp_line (start 1 0.625) (end -1 0.625) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 96193522-2a3f-4e43-a5a1-5e06f87deadc)) - (pad "1" smd roundrect (at -0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 1 "/Supply_Ref/+15V") (pintype "passive") (tstamp fe27ccb4-412b-4089-89b6-9c78e00e4270)) - (pad "2" smd roundrect (at 0.95 0 270) (size 1 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp cbe552ff-3a33-4c3b-a10e-efb537caaead)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70d137) - (at 100.9 57.15 90) - (descr "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") - (tags "capacitor") - (property "MFN" "Kemet") - (property "PN" "C0603C104K5RECAUTO") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Unpolarized capacitor, small symbol") - (property "ki_keywords" "capacitor cap") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b057937") - (attr smd) - (fp_text reference "C14" (at -0.1 1.4 270) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp f658923a-c58a-4576-9013-0af6613536ad) - ) - (fp_text value "100n" (at 0 1.5 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 9d0d4267-7ab3-46a7-a1fc-d3113c4201ff) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") - (effects (font (size 0.3 0.3) (thickness 0.075))) - (tstamp d6c465fc-0a78-43e0-9d61-ad1db0187110) - ) - (fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f4801ac3-e26e-442b-94fd-dc6e1b4223e0)) - (fp_line (start -0.14058 0.51) (end 0.14058 0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b47dd82c-e217-4195-a5b2-7f1d4c142846)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a84aac61-fef6-43a7-8baf-be5c284ec30a)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 40178c8c-6fd7-4b3a-9f2d-0b1102903bb1)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e75ae5b9-20c5-4bdf-a82e-7f23821e7648)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a3ba41d1-cd46-47a6-9952-c29f4a419a89)) - (fp_line (start -0.8 -0.4) (end 0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e2cc8468-2ec6-47b2-92ea-cfb16b67d75d)) - (fp_line (start -0.8 0.4) (end -0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1ea917a6-e05c-42b3-81ef-0897fb4562c4)) - (fp_line (start 0.8 -0.4) (end 0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 846c6943-1f26-4e0f-a98a-344fbcd2790f)) - (fp_line (start 0.8 0.4) (end -0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 24de6c7a-4e57-474f-8ea4-5750e7449c98)) - (pad "1" smd roundrect (at -0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp 2f2be494-5f87-4e03-a8e0-194fc57ca101)) - (pad "2" smd roundrect (at 0.775 0 90) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 4 "/Input_Output_Module/+12V") (pintype "passive") (tstamp 8ff79a45-df2c-4f1a-9de1-917e1ff5958c)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_SMD:C_0603_1608Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005f70d167) - (at 101.5 100.4 180) - (descr "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") - (tags "capacitor") - (property "MFN" "Wurth Electronics") - (property "PN" "885012006051") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "Unpolarized capacitor, small symbol") - (property "ki_keywords" "capacitor cap") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005b0aeff1") - (attr smd) - (fp_text reference "C16" (at -3.2 0 180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 8a37beb2-1cda-4c45-bb19-0e38116661ff) - ) - (fp_text value "10p" (at 0 1.5 180) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 832b594a-b6e7-4e17-9708-5ee3436072d1) - ) - (fp_text user "${REFERENCE}" (at 0 0 180) (layer "F.Fab") - (effects (font (size 0.3 0.3) (thickness 0.075))) - (tstamp ca77f7e3-244d-42ea-b039-c6a67c1bfc1c) - ) - (fp_line (start -0.14058 -0.51) (end 0.14058 -0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ad57154b-aa42-4ca9-bc34-9d2b3c2dc567)) - (fp_line (start -0.14058 0.51) (end 0.14058 0.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 21c5de9f-6a13-4c48-9b7e-243c778f45d2)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7f5aa4d8-8a34-4637-b4b9-1088e7417624)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a986c334-1b9f-45d4-af73-d4a2e7719197)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2ecc9c2a-6043-4dc5-a694-25c2dc1a2e6e)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c1fc7c8d-aaa4-48b0-b6af-e763c33e129a)) - (fp_line (start -0.8 -0.4) (end 0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3656cc9f-8ec7-42a0-83d2-a303f0e7e0ef)) - (fp_line (start -0.8 0.4) (end -0.8 -0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 33a525de-ea5c-4e9a-8ed4-0ae2f5f8f181)) - (fp_line (start 0.8 -0.4) (end 0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ad2f3448-a6a9-40a9-ac38-9f10b9dbe4e4)) - (fp_line (start 0.8 0.4) (end -0.8 0.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d94845a0-37c1-47d8-ae6d-1102e0d65f2a)) - (pad "1" smd roundrect (at -0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 21 "/Supply_Ref/+5V") (pintype "passive") (tstamp 384136d3-ca34-41fc-918e-5955a16ec25f)) - (pad "2" smd roundrect (at 0.775 0 180) (size 0.9 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 12 "Net-(U6-FB)") (pintype "passive") (tstamp eb42412f-9a30-4436-a213-64b6faa1f145)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005faeb17a) - (at 159.75 58.75 -90) - (descr "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") - (tags "resistor") - (property "MFN" "Panasonic") - (property "PN" "ERJ-3RED1004V") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Resistor, small symbol") - (property "ki_keywords" "R resistor") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005faf2109") - (attr smd) - (fp_text reference "R28" (at 0 -1.43 90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp f8d1e744-8718-4c84-86b2-3631d176bafd) - ) - (fp_text value "1M" (at 0 1.43 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 5c0c45e9-d781-4b05-bbd0-809cbe82a6dd) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06))) - (tstamp 09c7f566-c0c5-4204-b2df-d25360a07e37) - ) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 04657b0c-2dda-4012-a0ea-c919847a1559)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c4c2292e-a602-4b6b-8353-062cece26cf9)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 61c83789-4872-4a29-8076-67cd2d4c2ac9)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 23af4dec-4b1b-4c2f-b2cb-a271c7f90e7c)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b25d8d09-46e8-4f53-979b-b6b000c7b59e)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3d1bf7ee-1e67-41de-ae83-b2824bdaafc5)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dde31022-bcec-44b5-9edd-547cbaf232df)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d9009774-2daa-4244-b3a1-b928c2a5e459)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7dc01c00-36c5-413c-896a-3fb3bf625509)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9791165b-1cf6-40bb-9fd4-e66cd2a48726)) - (pad "1" smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 75 "Net-(J11-In)") (pintype "passive") (tstamp 6b3e208d-9776-4f7e-9869-1558dd31c298)) - (pad "2" smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp 8d7d310e-4250-4590-88b0-3b381dd39a01)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00005faeb4bf) - (at 86.5 65.2125 -90) - (descr "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") - (tags "resistor") - (property "MFN" "Panasonic") - (property "PN" "ERJ-3RED1004V") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Resistor, small symbol") - (property "ki_keywords" "R resistor") - (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005fb11c66") - (attr smd) - (fp_text reference "R30" (at 0.0375 1.5 90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 3e35adf3-d2ca-4384-a064-9784c1b5fb8b) - ) - (fp_text value "1M" (at 0 1.43 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp d7982456-dc90-4a76-9446-d870d839d575) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06))) - (tstamp 89b46cee-34e2-4390-874a-51a8a4956ccc) - ) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 43b03459-f8f3-4e13-a72d-544c20bcb0ce)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 89ad5695-64ee-452f-9f57-31dce9de9444)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 592a5d87-d6c2-4491-bac5-42d2f62c4025)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 36f0f312-5450-4552-b9b8-bc148166c905)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c8e0769e-b521-4624-b5f1-58a93868b5a3)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d2334686-6524-4c43-9d1e-ef2a8e758808)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2ec30ad2-b898-46db-9062-6e331a089adb)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b52bc6d9-4556-42fc-bf1e-9f5696ac087d)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 52a2d82b-d76c-47ed-b624-dbbfe59211db)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f651c432-cec9-4afb-8007-b371d62b516d)) - (pad "1" smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 72 "Net-(J3-In)") (pintype "passive") (tstamp 1f009be8-218f-412d-ba63-19667ffaf294)) - (pad "2" smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp b9c54a29-a111-429b-8219-daed947bdb3f)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00006154be8c) - (at 57.3 128.8 -90) - (descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, open") - (tags "solder jumper open") - (property "Config" "DNF") - (property "Sheetfile" "RedPitaya_Lockbox.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Solder Jumper, 2-pole, open") - (property "ki_keywords" "solder jumper SPST") - (path "/00000000-0000-0000-0000-00006156e035") - (attr exclude_from_pos_files) - (fp_text reference "JP1" (at 3.2 0.1 90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 11fbb8c8-b8da-4a89-a836-acfaf09cbe38) - ) - (fp_text value "GND" (at 0 1.9 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 148e609f-d698-4e8c-a691-5dfba64532d6) - ) - (fp_line (start -1.4 0.3) (end -1.4 -0.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 08268981-218c-4464-bdbf-897e683d5c82)) - (fp_line (start -0.7 -1) (end 0.7 -1) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fbb3a6a3-8311-4ee2-99ef-22650a498ea4)) - (fp_line (start 0.7 1) (end -0.7 1) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fc79fcc9-255f-45f7-983f-d91898fefb5b)) - (fp_line (start 1.4 -0.3) (end 1.4 0.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1926f1e2-908e-4f7c-a24a-5148585364e9)) - (fp_arc (start -1.4 -0.3) (mid -1.194975 -0.794975) (end -0.7 -1) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 149b47fc-39da-4d2b-a616-2eded59594d5)) - (fp_arc (start -0.7 1) (mid -1.194975 0.794975) (end -1.4 0.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8dd578d9-6404-4fd9-a392-f2c4ff8517d1)) - (fp_arc (start 0.7 -1) (mid 1.194975 -0.794975) (end 1.4 -0.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 09641ef0-5ff5-4045-9a6d-7c77d85e7276)) - (fp_arc (start 1.4 0.3) (mid 1.194975 0.794975) (end 0.7 1) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 71e7df31-75ef-4fea-8dc4-284a1ae13d15)) - (fp_line (start -1.65 -1.25) (end -1.65 1.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 830ba680-202e-4884-a876-b0ab970817c7)) - (fp_line (start -1.65 -1.25) (end 1.65 -1.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1413e1f9-ace3-4775-bce1-5e3e91a43aa0)) - (fp_line (start 1.65 1.25) (end -1.65 1.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 76200c2d-856e-4a3a-92a5-8c74a6656c50)) - (fp_line (start 1.65 1.25) (end 1.65 -1.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5b43ad13-2761-4d3c-9eda-d15787ed8d7d)) - (pad "1" smd custom (at -0.65 0 270) (size 1 0.5) (layers "F.Cu" "F.Mask") - (net 125 "Net-(J1-Pin_a1)") (pinfunction "A") (pintype "passive") (zone_connect 2) - (options (clearance outline) (anchor rect)) - (primitives - (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) - (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) - (gr_poly - (pts - (xy 0.5 0.75) - (xy 0 0.75) - (xy 0 -0.75) - (xy 0.5 -0.75) - ) - (width 0) (fill yes)) - ) (tstamp a671d271-ba9c-45c9-82bf-c7f007e6dd29)) - (pad "2" smd custom (at 0.65 0 270) (size 1 0.5) (layers "F.Cu" "F.Mask") - (net 2 "GND") (pinfunction "B") (pintype "passive") (zone_connect 2) - (options (clearance outline) (anchor rect)) - (primitives - (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) - (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) - (gr_poly - (pts - (xy 0 0.75) - (xy -0.5 0.75) - (xy -0.5 -0.75) - (xy 0 -0.75) - ) - (width 0) (fill yes)) - ) (tstamp 00f9bdbf-3678-4f8d-88df-d60be33300d7)) - ) - - (footprint "Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00006154be9e) - (at 58 39.5 -90) - (descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, open") - (tags "solder jumper open") - (property "Config" "DNF") - (property "Sheetfile" "RedPitaya_Lockbox.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Solder Jumper, 2-pole, open") - (property "ki_keywords" "solder jumper SPST") - (path "/00000000-0000-0000-0000-0000615d2f6d") - (attr exclude_from_pos_files) - (fp_text reference "JP2" (at -2.4 0) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp a7b372f4-c36c-4355-8f58-365dcc50bbf7) - ) - (fp_text value "+15V" (at 0 1.9 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 4ff3b73e-5c9b-4d28-8467-79aa7c68de25) - ) - (fp_line (start -1.4 0.3) (end -1.4 -0.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4c1e4c9d-62c4-4560-a808-f79ff63bdc59)) - (fp_line (start -0.7 -1) (end 0.7 -1) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 570e879d-714f-4eae-99e2-a000b1569c87)) - (fp_line (start 0.7 1) (end -0.7 1) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6fd61624-3a2b-4c3d-afe2-2bf029cd6b9e)) - (fp_line (start 1.4 -0.3) (end 1.4 0.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 20785acb-d9b7-4fbd-8b1c-92fe22e43d67)) - (fp_arc (start -1.4 -0.3) (mid -1.194975 -0.794975) (end -0.7 -1) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2e0e93ec-61e6-407a-98aa-72087ee6aabf)) - (fp_arc (start -0.7 1) (mid -1.194975 0.794975) (end -1.4 0.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a4aab8e1-ddfa-42d7-8535-bc0d70e47c06)) - (fp_arc (start 0.7 -1) (mid 1.194975 -0.794975) (end 1.4 -0.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 15d4ff78-39b9-4cf8-8da1-ff65cfea9fd3)) - (fp_arc (start 1.4 0.3) (mid 1.194975 0.794975) (end 0.7 1) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6f444e0d-9974-44a6-a857-6ffe9d038435)) - (fp_line (start -1.65 -1.25) (end -1.65 1.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9e78cccd-c0c1-45ff-8cc8-171f8f239613)) - (fp_line (start -1.65 -1.25) (end 1.65 -1.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9aefc7fa-1bdb-47f9-be69-1f7628b20fd4)) - (fp_line (start 1.65 1.25) (end -1.65 1.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 88aa937c-3f52-4995-8e25-56c2cf0bacb3)) - (fp_line (start 1.65 1.25) (end 1.65 -1.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b2d5ddac-0369-4be9-874c-717c9f50ead4)) - (pad "1" smd custom (at -0.65 0 270) (size 1 0.5) (layers "F.Cu" "F.Mask") - (net 131 "Net-(J1-Pin_a31)") (pinfunction "A") (pintype "passive") (zone_connect 2) - (options (clearance outline) (anchor rect)) - (primitives - (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) - (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) - (gr_poly - (pts - (xy 0.5 0.75) - (xy 0 0.75) - (xy 0 -0.75) - (xy 0.5 -0.75) - ) - (width 0) (fill yes)) - ) (tstamp 71110a1f-fd33-405d-b628-033fdfff133f)) - (pad "2" smd custom (at 0.65 0 270) (size 1 0.5) (layers "F.Cu" "F.Mask") - (net 1 "/Supply_Ref/+15V") (pinfunction "B") (pintype "passive") (zone_connect 2) - (options (clearance outline) (anchor rect)) - (primitives - (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) - (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) - (gr_poly - (pts - (xy 0 0.75) - (xy -0.5 0.75) - (xy -0.5 -0.75) - (xy 0 -0.75) - ) - (width 0) (fill yes)) - ) (tstamp 1af08458-c769-4bf9-a25a-639ca598cdc9)) - ) - - (footprint "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00006154beb1) - (at 60 128.8 -90) - (descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip") - (tags "net tie solder jumper bridged") - (property "Config" "DNF") - (property "MFN" "") - (property "PN" "") - (property "Sheetfile" "RedPitaya_Lockbox.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Solder Jumper, 2-pole, closed/bridged") - (property "ki_keywords" "solder jumper SPST") - (path "/00000000-0000-0000-0000-0000615158e2") - (attr exclude_from_pos_files) - (net_tie_pad_groups "1, 2") - (fp_text reference "JP3" (at 0 -1.8 -90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 619c8820-9d41-4f76-8a67-c91d8e32e400) - ) - (fp_text value "+15V" (at 0 1.9 -90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp bacd3d70-b635-46c3-979f-7487c1b8b529) - ) - (fp_poly - (pts - (xy 0.25 -0.3) - (xy -0.25 -0.3) - (xy -0.25 0.3) - (xy 0.25 0.3) - ) - - (stroke (width 0) (type solid)) (fill solid) (layer "F.Cu") (tstamp 42be17d2-cc81-4310-a39a-17a4a437bfa1)) - (fp_line (start -1.4 0.3) (end -1.4 -0.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0d3b2d66-0fcd-4584-8f0d-b0087196bfc0)) - (fp_line (start -0.7 -1) (end 0.7 -1) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fb1962d4-f414-4840-a471-0a93fa327cec)) - (fp_line (start 0.7 1) (end -0.7 1) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8d0495f9-b65e-4051-9d36-dc3333a8d9b9)) - (fp_line (start 1.4 -0.3) (end 1.4 0.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1f186b9f-b5e8-467d-b9c9-6b2ffb7b23a7)) - (fp_arc (start -1.4 -0.3) (mid -1.194975 -0.794975) (end -0.7 -1) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 035fb29a-5778-45af-92a5-785f6caf8d56)) - (fp_arc (start -0.7 1) (mid -1.194975 0.794975) (end -1.4 0.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d3aac0b8-493e-4b7b-9e7d-5c852d0df32c)) - (fp_arc (start 0.7 -1) (mid 1.194975 -0.794975) (end 1.4 -0.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 84b6b804-3ef8-4495-baab-adbd8a973a55)) - (fp_arc (start 1.4 0.3) (mid 1.194975 0.794975) (end 0.7 1) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 78056bfe-eb33-4165-92a7-53570e73d7f4)) - (fp_line (start -1.65 -1.25) (end -1.65 1.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 00f6d03c-fbf7-4a1b-ae00-6a654d5856c8)) - (fp_line (start -1.65 -1.25) (end 1.65 -1.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6e663a28-9206-41ec-8250-76e6f9b03c4a)) - (fp_line (start 1.65 1.25) (end -1.65 1.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 84aaae51-4c5b-400d-b1e2-143a13b2e0cd)) - (fp_line (start 1.65 1.25) (end 1.65 -1.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 71b995eb-6277-4c4c-94ad-3671563c8f68)) - (pad "1" smd custom (at -0.65 0 270) (size 1 0.5) (layers "F.Cu" "F.Mask") - (net 125 "Net-(J1-Pin_a1)") (pinfunction "A") (pintype "passive") (zone_connect 2) - (options (clearance outline) (anchor rect)) - (primitives - (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) - (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) - (gr_poly - (pts - (xy 0.5 0.75) - (xy 0 0.75) - (xy 0 -0.75) - (xy 0.5 -0.75) - ) - (width 0) (fill yes)) - ) (tstamp d98a0a97-c57b-4aca-bc6f-f591e83caaea)) - (pad "2" smd custom (at 0.65 0 270) (size 1 0.5) (layers "F.Cu" "F.Mask") - (net 1 "/Supply_Ref/+15V") (pinfunction "B") (pintype "passive") (zone_connect 2) - (options (clearance outline) (anchor rect)) - (primitives - (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) - (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) - (gr_poly - (pts - (xy 0 0.75) - (xy -0.5 0.75) - (xy -0.5 -0.75) - (xy 0 -0.75) - ) - (width 0) (fill yes)) - ) (tstamp a85f4347-7ed7-4b9a-b679-6dad415fc295)) - ) - - (footprint "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00006154bec4) - (at 64.1 119.3) - (descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip") - (tags "net tie solder jumper bridged") - (property "Config" "DNF") - (property "MFN" "") - (property "PN" "") - (property "Sheetfile" "RedPitaya_Lockbox.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Solder Jumper, 2-pole, closed/bridged") - (property "ki_keywords" "solder jumper SPST") - (path "/00000000-0000-0000-0000-00006152fdf0") - (attr exclude_from_pos_files) - (net_tie_pad_groups "1, 2") - (fp_text reference "JP4" (at 0 -2.1) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 2703bde7-a9be-4d57-80fd-733ece88fbc1) - ) - (fp_text value "+15V" (at 0 1.9) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 23ce416c-ff53-4749-b6aa-bd1b256daa83) - ) - (fp_poly - (pts - (xy 0.25 -0.3) - (xy -0.25 -0.3) - (xy -0.25 0.3) - (xy 0.25 0.3) - ) - - (stroke (width 0) (type solid)) (fill solid) (layer "F.Cu") (tstamp 927f6383-773f-4f90-8a5f-d993105d7822)) - (fp_line (start -1.4 0.3) (end -1.4 -0.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aeb8b38a-d268-464c-ae58-60344a772841)) - (fp_line (start -0.7 -1) (end 0.7 -1) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cbb4794f-736a-44df-9040-4117434d5ead)) - (fp_line (start 0.7 1) (end -0.7 1) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bb701e72-78a1-4e5d-ac1c-5d36635b3f6f)) - (fp_line (start 1.4 -0.3) (end 1.4 0.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 07c6a524-bdde-4565-9fc5-96ef9507e400)) - (fp_arc (start -1.4 -0.3) (mid -1.194975 -0.794975) (end -0.7 -1) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6c30edba-e62e-4709-bb7f-ec07748d5be8)) - (fp_arc (start -0.7 1) (mid -1.194975 0.794975) (end -1.4 0.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 83295679-4a40-4c53-a856-ad01d39d4fb2)) - (fp_arc (start 0.7 -1) (mid 1.194975 -0.794975) (end 1.4 -0.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 114c738a-5198-4d53-a599-f511c9fb7b7c)) - (fp_arc (start 1.4 0.3) (mid 1.194975 0.794975) (end 0.7 1) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 04d45ec2-1eb7-4eb8-bead-264fe3bb5196)) - (fp_line (start -1.65 -1.25) (end -1.65 1.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f14d9943-2c17-4bb2-86d6-1611149212d9)) - (fp_line (start -1.65 -1.25) (end 1.65 -1.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 277293d2-042e-439d-8148-bc124adeac66)) - (fp_line (start 1.65 1.25) (end -1.65 1.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 899351a3-4b02-42d4-bef9-119028345f0d)) - (fp_line (start 1.65 1.25) (end 1.65 -1.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 83fb82b8-bf3a-47d9-bcf2-44707f23580d)) - (pad "1" smd custom (at -0.65 0) (size 1 0.5) (layers "F.Cu" "F.Mask") - (net 126 "Net-(J1-Pin_a2)") (pinfunction "A") (pintype "passive") (zone_connect 2) - (options (clearance outline) (anchor rect)) - (primitives - (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) - (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) - (gr_poly - (pts - (xy 0.5 0.75) - (xy 0 0.75) - (xy 0 -0.75) - (xy 0.5 -0.75) - ) - (width 0) (fill yes)) - ) (tstamp 3041bf7f-2456-4696-aee5-be9393b958dc)) - (pad "2" smd custom (at 0.65 0) (size 1 0.5) (layers "F.Cu" "F.Mask") - (net 1 "/Supply_Ref/+15V") (pinfunction "B") (pintype "passive") (zone_connect 2) - (options (clearance outline) (anchor rect)) - (primitives - (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) - (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) - (gr_poly - (pts - (xy 0 0.75) - (xy -0.5 0.75) - (xy -0.5 -0.75) - (xy 0 -0.75) - ) - (width 0) (fill yes)) - ) (tstamp 5d65922d-e78b-4877-8749-7877fda7f86c)) - ) - - (footprint "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00006154bed7) - (at 64.1 122.4) - (descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip") - (tags "net tie solder jumper bridged") - (property "Config" "DNF") - (property "MFN" "") - (property "PN" "") - (property "Sheetfile" "RedPitaya_Lockbox.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Solder Jumper, 2-pole, closed/bridged") - (property "ki_keywords" "solder jumper SPST") - (path "/00000000-0000-0000-0000-00006152eb89") - (attr exclude_from_pos_files) - (net_tie_pad_groups "1, 2") - (fp_text reference "JP5" (at 0 2.2) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 720366d8-b598-4133-bb40-74ff9d42672e) - ) - (fp_text value "+15V" (at 0 1.9) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 6c84f2c7-ac0e-4f88-844c-57e607dab62b) - ) - (fp_poly - (pts - (xy 0.25 -0.3) - (xy -0.25 -0.3) - (xy -0.25 0.3) - (xy 0.25 0.3) - ) - - (stroke (width 0) (type solid)) (fill solid) (layer "F.Cu") (tstamp c8449c18-a45d-42df-a95a-7b3a0cf17d08)) - (fp_line (start -1.4 0.3) (end -1.4 -0.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3e2bf355-0374-4900-98f0-b2c43b3ec6a0)) - (fp_line (start -0.7 -1) (end 0.7 -1) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bd4c72c1-bda6-45e5-81d9-154ef75c4054)) - (fp_line (start 0.7 1) (end -0.7 1) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 06025086-01ea-4e93-bd9b-f9721c16029e)) - (fp_line (start 1.4 -0.3) (end 1.4 0.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 459b09e8-0330-442c-9f73-dd3d57f599d2)) - (fp_arc (start -1.4 -0.3) (mid -1.194975 -0.794975) (end -0.7 -1) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 95d5042a-5f2a-4933-b409-5aa3e69739b6)) - (fp_arc (start -0.7 1) (mid -1.194975 0.794975) (end -1.4 0.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 345180af-6f44-48fb-91f2-2a7261b2eebb)) - (fp_arc (start 0.7 -1) (mid 1.194975 -0.794975) (end 1.4 -0.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 15d2be37-5abe-44d3-9c6f-3fa7111b0d0b)) - (fp_arc (start 1.4 0.3) (mid 1.194975 0.794975) (end 0.7 1) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aa73624a-1df4-45ab-b42b-3f8130c558d7)) - (fp_line (start -1.65 -1.25) (end -1.65 1.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 23eefd67-da2d-4866-9ab4-f7c20722b024)) - (fp_line (start -1.65 -1.25) (end 1.65 -1.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2e89aab0-bcd4-4476-9f51-1872edb7071b)) - (fp_line (start 1.65 1.25) (end -1.65 1.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 932d2f23-7dcf-444d-815b-9909a4bcfb70)) - (fp_line (start 1.65 1.25) (end 1.65 -1.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c4cd8df5-2bd7-49c7-b78f-9f18919cf433)) - (pad "1" smd custom (at -0.65 0) (size 1 0.5) (layers "F.Cu" "F.Mask") - (net 133 "Net-(J1-Pin_c2)") (pinfunction "A") (pintype "passive") (zone_connect 2) - (options (clearance outline) (anchor rect)) - (primitives - (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) - (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) - (gr_poly - (pts - (xy 0.5 0.75) - (xy 0 0.75) - (xy 0 -0.75) - (xy 0.5 -0.75) - ) - (width 0) (fill yes)) - ) (tstamp c5a90152-a6e8-4fc1-abc6-9175f08abe54)) - (pad "2" smd custom (at 0.65 0) (size 1 0.5) (layers "F.Cu" "F.Mask") - (net 1 "/Supply_Ref/+15V") (pinfunction "B") (pintype "passive") (zone_connect 2) - (options (clearance outline) (anchor rect)) - (primitives - (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) - (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) - (gr_poly - (pts - (xy 0 0.75) - (xy -0.5 0.75) - (xy -0.5 -0.75) - (xy 0 -0.75) - ) - (width 0) (fill yes)) - ) (tstamp 7e9eee4e-f028-4985-85e9-0694bbb3dd68)) - ) - - (footprint "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00006154bf82) - (at 62.25 39.25) - (descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip") - (tags "net tie solder jumper bridged") - (property "Config" "DNF") - (property "MFN" "") - (property "PN" "") - (property "Sheetfile" "RedPitaya_Lockbox.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Solder Jumper, 2-pole, closed/bridged") - (property "ki_keywords" "solder jumper SPST") - (path "/00000000-0000-0000-0000-0000615805b0") - (attr exclude_from_pos_files) - (net_tie_pad_groups "1, 2") - (fp_text reference "JP14" (at 0 -2.05) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp f317fc60-219c-4985-9bef-d16a6609ccf5) - ) - (fp_text value "-15V" (at 0 1.9) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 522a86b5-fa98-456f-ab24-e6eae7f4ceeb) - ) - (fp_poly - (pts - (xy 0.25 -0.3) - (xy -0.25 -0.3) - (xy -0.25 0.3) - (xy 0.25 0.3) - ) - - (stroke (width 0) (type solid)) (fill solid) (layer "F.Cu") (tstamp 69b9acf8-5de9-44de-a4a4-706001ea518a)) - (fp_line (start -1.4 0.3) (end -1.4 -0.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2da5fdde-fcae-4f18-b89a-b0c56e5125a4)) - (fp_line (start -0.7 -1) (end 0.7 -1) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 912dbc30-9006-4501-910a-359e62c40a17)) - (fp_line (start 0.7 1) (end -0.7 1) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ed1a0608-a813-46ac-9b6a-d6cd2ab344e4)) - (fp_line (start 1.4 -0.3) (end 1.4 0.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7659cccc-228f-4ec3-be07-612488d6d88d)) - (fp_arc (start -1.4 -0.3) (mid -1.194975 -0.794975) (end -0.7 -1) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 061a41be-07a9-4a57-8793-56a662e673cf)) - (fp_arc (start -0.7 1) (mid -1.194975 0.794975) (end -1.4 0.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4b7d835c-76dd-418d-9cfb-783afac001aa)) - (fp_arc (start 0.7 -1) (mid 1.194975 -0.794975) (end 1.4 -0.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0d563289-9584-4d8c-9828-ba69c799e6a0)) - (fp_arc (start 1.4 0.3) (mid 1.194975 0.794975) (end 0.7 1) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7ded75e8-7149-4aea-8658-b3b8260d24c0)) - (fp_line (start -1.65 -1.25) (end -1.65 1.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5a071039-6498-495d-abd9-eff11b4e5448)) - (fp_line (start -1.65 -1.25) (end 1.65 -1.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp af20f38b-1ee5-4af7-bfac-83a52e0a40c2)) - (fp_line (start 1.65 1.25) (end -1.65 1.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a04e43c1-2508-4b7f-9eea-f64553ad6ea8)) - (fp_line (start 1.65 1.25) (end 1.65 -1.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 22f86075-1047-4806-9fb6-3cc3ec84717d)) - (pad "1" smd custom (at -0.65 0) (size 1 0.5) (layers "F.Cu" "F.Mask") - (net 131 "Net-(J1-Pin_a31)") (pinfunction "A") (pintype "passive") (zone_connect 2) - (options (clearance outline) (anchor rect)) - (primitives - (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) - (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) - (gr_poly - (pts - (xy 0.5 0.75) - (xy 0 0.75) - (xy 0 -0.75) - (xy 0.5 -0.75) - ) - (width 0) (fill yes)) - ) (tstamp 50573ae8-20bc-4d7b-a794-697e89d84505)) - (pad "2" smd custom (at 0.65 0) (size 1 0.5) (layers "F.Cu" "F.Mask") - (net 3 "/Supply_Ref/-15V") (pinfunction "B") (pintype "passive") (zone_connect 2) - (options (clearance outline) (anchor rect)) - (primitives - (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) - (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) - (gr_poly - (pts - (xy 0 0.75) - (xy -0.5 0.75) - (xy -0.5 -0.75) - (xy 0 -0.75) - ) - (width 0) (fill yes)) - ) (tstamp 25ea618e-128d-4083-b992-810475797572)) - ) - - (footprint "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00006154bf95) - (at 62.25 41.75) - (descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip") - (tags "net tie solder jumper bridged") - (property "Config" "DNF") - (property "MFN" "") - (property "PN" "") - (property "Sheetfile" "RedPitaya_Lockbox.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Solder Jumper, 2-pole, closed/bridged") - (property "ki_keywords" "solder jumper SPST") - (path "/00000000-0000-0000-0000-000061580ef2") - (attr exclude_from_pos_files) - (net_tie_pad_groups "1, 2") - (fp_text reference "JP15" (at -0.05 2.05) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 30a60aac-e54c-4062-bdd4-a146175665d6) - ) - (fp_text value "-15V" (at 0 1.9) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp a7757da9-ee5d-48f1-a6ff-2b1ffb33a077) - ) - (fp_poly - (pts - (xy 0.25 -0.3) - (xy -0.25 -0.3) - (xy -0.25 0.3) - (xy 0.25 0.3) - ) - - (stroke (width 0) (type solid)) (fill solid) (layer "F.Cu") (tstamp 87dbe4fe-4382-4997-aaaf-396e9b2317cd)) - (fp_line (start -1.4 0.3) (end -1.4 -0.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 04f4ff8f-66ce-4bbe-95de-5d87d4e738a2)) - (fp_line (start -0.7 -1) (end 0.7 -1) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7e1c50dc-cdb9-48e3-82be-00ebdb2ca8ea)) - (fp_line (start 0.7 1) (end -0.7 1) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dc058e98-6e66-4b90-960b-f1bc6fd675bf)) - (fp_line (start 1.4 -0.3) (end 1.4 0.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp db9b7016-32b9-4925-b98b-eceaf30289af)) - (fp_arc (start -1.4 -0.3) (mid -1.194975 -0.794975) (end -0.7 -1) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e09d61c3-c880-4152-929f-48c1de05988c)) - (fp_arc (start -0.7 1) (mid -1.194975 0.794975) (end -1.4 0.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 15359828-8401-4faf-b6e5-54d975991293)) - (fp_arc (start 0.7 -1) (mid 1.194975 -0.794975) (end 1.4 -0.3) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6940a065-850a-49c9-9f21-690a395a2f35)) - (fp_arc (start 1.4 0.3) (mid 1.194975 0.794975) (end 0.7 1) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ba5a2424-b311-40dc-a9b9-36b205c16758)) - (fp_line (start -1.65 -1.25) (end -1.65 1.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ac460719-900a-4e43-8b07-6ec88f2d105e)) - (fp_line (start -1.65 -1.25) (end 1.65 -1.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 732ef432-0cd4-4b43-82d7-b8dd7a3691b3)) - (fp_line (start 1.65 1.25) (end -1.65 1.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 246b1777-36c1-4d6b-bb10-6fc7ede6bd8a)) - (fp_line (start 1.65 1.25) (end 1.65 -1.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9989a2a1-7596-4f6a-914c-07dba82d24c0)) - (pad "1" smd custom (at -0.65 0) (size 1 0.5) (layers "F.Cu" "F.Mask") - (net 132 "Net-(J1-Pin_a32)") (pinfunction "A") (pintype "passive") (zone_connect 2) - (options (clearance outline) (anchor rect)) - (primitives - (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) - (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) - (gr_poly - (pts - (xy 0.5 0.75) - (xy 0 0.75) - (xy 0 -0.75) - (xy 0.5 -0.75) - ) - (width 0) (fill yes)) - ) (tstamp 9c1a8cfa-f851-4f51-b367-1a1acd1333d9)) - (pad "2" smd custom (at 0.65 0) (size 1 0.5) (layers "F.Cu" "F.Mask") - (net 3 "/Supply_Ref/-15V") (pinfunction "B") (pintype "passive") (zone_connect 2) - (options (clearance outline) (anchor rect)) - (primitives - (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) - (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) - (gr_poly - (pts - (xy 0 0.75) - (xy -0.5 0.75) - (xy -0.5 -0.75) - (xy 0 -0.75) - ) - (width 0) (fill yes)) - ) (tstamp 5f3cb317-03df-46fb-8d69-ffbd5b9072d1)) - ) - - (footprint "Diode_SMD:D_SOD-323" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-00006166ec76) - (at 80.4545 71.8566 90) - (descr "SOD-323") - (tags "SOD-323") - (property "MFN" "Panjit") - (property "PN" "BAT54WS_R1_00001") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "Schottky diode") - (property "ki_keywords" "diode Schottky") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-000061675730") - (attr smd) - (fp_text reference "D1" (at -0.0254 1.905 90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 703150d0-e8a2-44b6-94d5-ec30a62ed616) - ) - (fp_text value "BAT54" (at 0.1 1.9 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 06d55417-1e03-41de-887c-b850d38faf7b) - ) - (fp_text user "${REFERENCE}" (at 0 -1.85 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 67072130-730d-460d-be20-620590197f3d) - ) - (fp_line (start -1.61 -0.85) (end -1.61 0.85) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 467b4f6c-a157-494c-8a2b-87281cacdc34)) - (fp_line (start -1.61 -0.85) (end 1.05 -0.85) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 335430a7-7121-4c8b-9267-13286587ff1f)) - (fp_line (start -1.61 0.85) (end 1.05 0.85) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9b68c332-8020-43c9-b345-7c5ae6cd47e3)) - (fp_line (start -1.6 -0.95) (end -1.6 0.95) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0af7b84f-dc45-4f4c-aad3-bd1f08a79e70)) - (fp_line (start -1.6 -0.95) (end 1.6 -0.95) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c945d39c-f63f-4a6f-bade-87e4349d8b45)) - (fp_line (start -1.6 0.95) (end 1.6 0.95) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a1523b1d-06e4-4f90-8c42-37b1ab159f95)) - (fp_line (start 1.6 -0.95) (end 1.6 0.95) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 31c5c54a-bc10-439c-9147-edfb6a293636)) - (fp_line (start -0.9 -0.7) (end 0.9 -0.7) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp af85fdf3-b389-4cec-bfca-31044bc09f9c)) - (fp_line (start -0.9 0.7) (end -0.9 -0.7) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 861f6f8d-44c2-4ee7-aa76-be052d34eea1)) - (fp_line (start -0.3 -0.35) (end -0.3 0.35) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a2d23e2b-5160-4cb6-8c2f-968e74287757)) - (fp_line (start -0.3 0) (end -0.5 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1befbafc-1c19-4d72-be1e-c7f335a2d201)) - (fp_line (start -0.3 0) (end 0.2 -0.35) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a02bb494-751e-44d2-877b-b209991639f1)) - (fp_line (start 0.2 -0.35) (end 0.2 0.35) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 62ca71cc-789d-4143-b144-00320807fea9)) - (fp_line (start 0.2 0) (end 0.45 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 02447507-4eeb-4a8f-b334-365bf5999254)) - (fp_line (start 0.2 0.35) (end -0.3 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dc86a31a-7b07-4c7b-ad72-f220dca0acb4)) - (fp_line (start 0.9 -0.7) (end 0.9 0.7) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 98f7a9cf-c9de-4529-a60b-55b967caa573)) - (fp_line (start 0.9 0.7) (end -0.9 0.7) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ac5c210c-9bf0-4db8-a87e-e36e9d554a3d)) - (pad "1" smd roundrect (at -1.05 0 90) (size 0.6 0.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 4 "/Input_Output_Module/+12V") (pinfunction "K") (pintype "passive") (tstamp 68a133db-7fb1-4155-bc5c-5d050c90a985)) - (pad "2" smd roundrect (at 1.05 0 90) (size 0.6 0.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pinfunction "A") (pintype "passive") (tstamp 2115231e-17de-43c6-a372-3b5f0562906c)) - (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_THT:CP_Radial_D6.3mm_P2.50mm" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-000061e581eb) - (at 66.3 70 90) - (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=6.3mm, Electrolytic Capacitor") - (tags "CP Radial series Radial pin pitch 2.50mm diameter 6.3mm Electrolytic Capacitor") - (property "MFN" "Nichicon") - (property "PN" "UHV1V101MED") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "Polarized capacitor, small symbol") - (property "ki_keywords" "cap capacitor") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-000061e832ac") - (attr through_hole) - (fp_text reference "C28" (at 5.4 -2.5 180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp a31c7322-9714-43ce-bf7b-75ef79ae4e0d) - ) - (fp_text value "100u" (at 1.25 4.4 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp cac398cc-3c90-41b1-a62d-8eae2c772a93) - ) - (fp_text user "${REFERENCE}" (at 1.25 0 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp bf35111a-4ccf-4d43-b970-71836bded4d5) - ) - (fp_line (start -2.250241 -1.839) (end -1.620241 -1.839) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0d65ef5f-58fa-4378-9d7d-6d0e9f411cc3)) - (fp_line (start -1.935241 -2.154) (end -1.935241 -1.524) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e6bdd719-0e91-43d7-9efe-5fd59476859e)) - (fp_line (start 1.25 -3.23) (end 1.25 3.23) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7f1e210c-f8cd-4238-a179-f193a3c02d18)) - (fp_line (start 1.29 -3.23) (end 1.29 3.23) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3c70f38a-466c-4e46-b3aa-f390bf1ecf6a)) - (fp_line (start 1.33 -3.23) (end 1.33 3.23) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d63498a8-2006-4a97-b8d9-f339e1c45022)) - (fp_line (start 1.37 -3.228) (end 1.37 3.228) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 740ee6dd-6e4f-4d48-ab3e-debda5f63ded)) - (fp_line (start 1.41 -3.227) (end 1.41 3.227) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b82a26c6-75a2-4fa7-af67-544672c7a81f)) - (fp_line (start 1.45 -3.224) (end 1.45 3.224) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 683ab9d2-7d07-4759-9d48-aa3a3e6386b4)) - (fp_line (start 1.49 -3.222) (end 1.49 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1fe76a1f-a625-42bd-b71a-7edfe96858ab)) - (fp_line (start 1.49 1.04) (end 1.49 3.222) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5aaac94c-bc12-4270-b2bc-c43ffe404de2)) - (fp_line (start 1.53 -3.218) (end 1.53 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 256f908b-bdb1-4afe-9cf8-046882d01d53)) - (fp_line (start 1.53 1.04) (end 1.53 3.218) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cb81759b-0822-48d5-812c-dc1332080050)) - (fp_line (start 1.57 -3.215) (end 1.57 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0336b1ea-4a43-4002-8a74-e519b30ef7cc)) - (fp_line (start 1.57 1.04) (end 1.57 3.215) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 36ea56e7-7a3a-42fa-a161-ad6244aee524)) - (fp_line (start 1.61 -3.211) (end 1.61 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fe12d149-f3a2-4f08-8105-f81d798ab2f0)) - (fp_line (start 1.61 1.04) (end 1.61 3.211) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6bec59f4-70b9-4f0f-a34c-5aa37c52b9b4)) - (fp_line (start 1.65 -3.206) (end 1.65 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4a568746-0671-4682-822b-6a497bedff18)) - (fp_line (start 1.65 1.04) (end 1.65 3.206) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1f1319c3-57f4-4bd4-85cf-997a8feb50b0)) - (fp_line (start 1.69 -3.201) (end 1.69 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 02536d07-c0a6-4e62-9d81-a385f5f07dc1)) - (fp_line (start 1.69 1.04) (end 1.69 3.201) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b8b73585-77cb-4ed7-9a79-14c1ccafe8c2)) - (fp_line (start 1.73 -3.195) (end 1.73 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 000b7115-2973-45b1-8ce1-3121bd829365)) - (fp_line (start 1.73 1.04) (end 1.73 3.195) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3e0a4205-f7ef-4d99-9013-4510df00b433)) - (fp_line (start 1.77 -3.189) (end 1.77 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6dbad0d1-ab09-46fc-bcf1-4190e69c1367)) - (fp_line (start 1.77 1.04) (end 1.77 3.189) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ce8be7b9-8dc0-4d10-8084-414870ef044d)) - (fp_line (start 1.81 -3.182) (end 1.81 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ff24289d-446e-4135-b1ae-d42ec2788725)) - (fp_line (start 1.81 1.04) (end 1.81 3.182) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8473a5ac-f0ea-4945-afc0-5354d24b1c69)) - (fp_line (start 1.85 -3.175) (end 1.85 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9c71d322-25de-4d7f-b214-bc250056682e)) - (fp_line (start 1.85 1.04) (end 1.85 3.175) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2f287c88-8049-4e7e-91c0-aa88d2c22ac1)) - (fp_line (start 1.89 -3.167) (end 1.89 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5fb1410d-c80f-4aec-aeb2-5f6b559f3a05)) - (fp_line (start 1.89 1.04) (end 1.89 3.167) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 09b1b2d4-6d7c-45c2-bf16-7a8a19db7641)) - (fp_line (start 1.93 -3.159) (end 1.93 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cf5cdea5-8ee4-4508-8b1b-2fec9dd14ac8)) - (fp_line (start 1.93 1.04) (end 1.93 3.159) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d9ae4364-df70-4152-b289-7ffafa290b18)) - (fp_line (start 1.971 -3.15) (end 1.971 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 69d0e59d-38c8-476f-9465-8fb1b42973dc)) - (fp_line (start 1.971 1.04) (end 1.971 3.15) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f1bf2bd2-08d8-4cd0-a84e-478e38bb2026)) - (fp_line (start 2.011 -3.141) (end 2.011 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f0361dea-662a-43b8-acbf-d41cc8f50836)) - (fp_line (start 2.011 1.04) (end 2.011 3.141) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a2764210-84c5-449b-8523-292de7748c2a)) - (fp_line (start 2.051 -3.131) (end 2.051 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 62b904f1-6dea-4c11-bac3-3157f4ebdac0)) - (fp_line (start 2.051 1.04) (end 2.051 3.131) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ef1f82f3-3014-4301-8b79-121e7313db55)) - (fp_line (start 2.091 -3.121) (end 2.091 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d18bee4e-72dd-41a9-b52a-de6991e8d653)) - (fp_line (start 2.091 1.04) (end 2.091 3.121) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d1d4a82f-2ae2-457b-964b-f9ac7c6ae574)) - (fp_line (start 2.131 -3.11) (end 2.131 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d7c3ad43-f00b-4785-bc8d-2bbf9b93ebe0)) - (fp_line (start 2.131 1.04) (end 2.131 3.11) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f9d73f9e-45e1-466e-85eb-babce9f379b5)) - (fp_line (start 2.171 -3.098) (end 2.171 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5237d0d5-860d-4979-9f0a-c110e6371e93)) - (fp_line (start 2.171 1.04) (end 2.171 3.098) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 14c4b0b0-fdcd-4913-a349-7115583bd724)) - (fp_line (start 2.211 -3.086) (end 2.211 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 114b8ed4-0c38-4115-a891-a0e9a030b6c4)) - (fp_line (start 2.211 1.04) (end 2.211 3.086) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6025d0d2-4346-4d16-a316-774a2c18ece8)) - (fp_line (start 2.251 -3.074) (end 2.251 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b980622b-5665-419d-af83-d7c75cc0fe37)) - (fp_line (start 2.251 1.04) (end 2.251 3.074) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f91c8f98-1be2-4774-9af9-f670572d2377)) - (fp_line (start 2.291 -3.061) (end 2.291 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dc9f39ce-5eb8-42c9-aa87-dee1073a8dca)) - (fp_line (start 2.291 1.04) (end 2.291 3.061) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 98ce81c2-6e14-4f19-9b52-804ae0183a88)) - (fp_line (start 2.331 -3.047) (end 2.331 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp db294f77-0d3d-41bb-956e-f275757dba08)) - (fp_line (start 2.331 1.04) (end 2.331 3.047) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 31456d56-ea3a-4c06-81db-3b28c1b2b403)) - (fp_line (start 2.371 -3.033) (end 2.371 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 59dc214f-e452-412e-9ded-87190a30802e)) - (fp_line (start 2.371 1.04) (end 2.371 3.033) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a09a1cbb-3a86-4871-bee5-5612635b42c3)) - (fp_line (start 2.411 -3.018) (end 2.411 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1507ea7c-8d71-43f1-9c83-532406ff506d)) - (fp_line (start 2.411 1.04) (end 2.411 3.018) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2f9d004a-e36c-4d2b-a556-5e69ba42de47)) - (fp_line (start 2.451 -3.002) (end 2.451 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5b8f0cd9-d3a3-45bc-b23c-82a84f9ca3a8)) - (fp_line (start 2.451 1.04) (end 2.451 3.002) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp db081d1b-90ba-4654-98d9-40d33b31b6e1)) - (fp_line (start 2.491 -2.986) (end 2.491 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 32ff9b60-4177-4fb4-b19e-29e28ae19fee)) - (fp_line (start 2.491 1.04) (end 2.491 2.986) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fd8661f5-3c95-44df-a8ff-36f1ac56521b)) - (fp_line (start 2.531 -2.97) (end 2.531 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 76302c46-1af0-4532-aeec-1ce215b55729)) - (fp_line (start 2.531 1.04) (end 2.531 2.97) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3054fc2f-a877-46ab-b793-16ca7cb4f1e3)) - (fp_line (start 2.571 -2.952) (end 2.571 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7e5ecbe7-b12a-45fd-a46e-684b7cff36ef)) - (fp_line (start 2.571 1.04) (end 2.571 2.952) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b8b3a100-85ad-4f3d-8976-1ba7c228130b)) - (fp_line (start 2.611 -2.934) (end 2.611 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c2d70983-ed56-453b-b6b4-e06e0731a0b8)) - (fp_line (start 2.611 1.04) (end 2.611 2.934) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7acdde7b-de4b-4868-b362-be807970741c)) - (fp_line (start 2.651 -2.916) (end 2.651 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 439c28ac-cb6d-4cb5-b511-63ecc5605004)) - (fp_line (start 2.651 1.04) (end 2.651 2.916) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3e5c3b9b-b068-4911-82f3-1438e00ee4af)) - (fp_line (start 2.691 -2.896) (end 2.691 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b119eb1e-ddf2-4c22-8c0a-628eeea836f8)) - (fp_line (start 2.691 1.04) (end 2.691 2.896) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b8600807-3ee7-4a7c-81c1-8781dd9baef4)) - (fp_line (start 2.731 -2.876) (end 2.731 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dd272174-e521-49c1-8775-f0d1d138a011)) - (fp_line (start 2.731 1.04) (end 2.731 2.876) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f1263703-f31d-4355-a040-b3715ceb5b05)) - (fp_line (start 2.771 -2.856) (end 2.771 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0b8856c6-c512-454e-9f5b-762acb3da405)) - (fp_line (start 2.771 1.04) (end 2.771 2.856) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3e58c595-4fd2-4919-b42f-96ed412bfdfd)) - (fp_line (start 2.811 -2.834) (end 2.811 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bd13ce4f-e9ef-4aad-a8d7-05c1c9fdd352)) - (fp_line (start 2.811 1.04) (end 2.811 2.834) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 783f82b1-43a8-42d9-aca3-9a4a798eeff1)) - (fp_line (start 2.851 -2.812) (end 2.851 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp de539dcc-7274-47ec-8e2e-5705296b1997)) - (fp_line (start 2.851 1.04) (end 2.851 2.812) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1ce439bc-a004-46bb-9390-60089915fbeb)) - (fp_line (start 2.891 -2.79) (end 2.891 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 66178bb1-8e28-44d3-90e2-46db6d0f33f0)) - (fp_line (start 2.891 1.04) (end 2.891 2.79) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0c1b7dbf-461e-45f9-8b3e-d0d5e460acaa)) - (fp_line (start 2.931 -2.766) (end 2.931 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0e162d21-5426-4548-81d8-7fabcc0c7eee)) - (fp_line (start 2.931 1.04) (end 2.931 2.766) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0dc7c411-57cd-49de-8305-9e9e17386c85)) - (fp_line (start 2.971 -2.742) (end 2.971 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b922ed06-8d55-4a2e-ab9a-f15037e42423)) - (fp_line (start 2.971 1.04) (end 2.971 2.742) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 04ba9359-6b3f-4961-bf81-f8df38489ac4)) - (fp_line (start 3.011 -2.716) (end 3.011 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 671aa945-9205-461a-8b50-2aaf1862c0fe)) - (fp_line (start 3.011 1.04) (end 3.011 2.716) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 68f49c79-f418-44ff-a2d5-a9397b37b62d)) - (fp_line (start 3.051 -2.69) (end 3.051 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp da33d188-a133-4ac4-8874-9a7c86d82f0c)) - (fp_line (start 3.051 1.04) (end 3.051 2.69) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5a0d6513-7c1e-43c1-83a3-b4344d03d35f)) - (fp_line (start 3.091 -2.664) (end 3.091 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f5e9a724-03a9-4075-963c-a7753167fee0)) - (fp_line (start 3.091 1.04) (end 3.091 2.664) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0685a506-dd53-404c-9bf1-ff8fc9794384)) - (fp_line (start 3.131 -2.636) (end 3.131 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3e0a91ec-2524-4de2-b3dd-5518568dbb67)) - (fp_line (start 3.131 1.04) (end 3.131 2.636) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8b198079-a168-4af9-a515-12d671b7106a)) - (fp_line (start 3.171 -2.607) (end 3.171 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 80c590ad-cea0-4d37-a1ce-0e2e796bc4a4)) - (fp_line (start 3.171 1.04) (end 3.171 2.607) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1dac93ef-a9b8-45ea-8823-e5e2d9000fe2)) - (fp_line (start 3.211 -2.578) (end 3.211 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0c6357f2-c059-44d9-a246-6bc6cbf16fa7)) - (fp_line (start 3.211 1.04) (end 3.211 2.578) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 57aa0c9a-e874-45ad-943d-9a28a9b60ac4)) - (fp_line (start 3.251 -2.548) (end 3.251 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c7e70b44-29bf-4a0f-a2e3-29a3da2e0334)) - (fp_line (start 3.251 1.04) (end 3.251 2.548) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 02a4d60a-0770-4a8e-9262-43a9788a767f)) - (fp_line (start 3.291 -2.516) (end 3.291 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6b0907b8-8453-44c7-845c-43f0c72ee138)) - (fp_line (start 3.291 1.04) (end 3.291 2.516) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 94e1ffcd-e55d-4a00-ae90-9daf460e4053)) - (fp_line (start 3.331 -2.484) (end 3.331 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7ad1c6b3-965c-4425-a5e9-d12eec2c97d5)) - (fp_line (start 3.331 1.04) (end 3.331 2.484) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9b42ade3-6495-4fc7-9291-952ef7ef304d)) - (fp_line (start 3.371 -2.45) (end 3.371 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp af141691-95b7-44a2-b164-2efb43316f1a)) - (fp_line (start 3.371 1.04) (end 3.371 2.45) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dbfbff2f-f7a6-4b38-8854-5a3e291b63fb)) - (fp_line (start 3.411 -2.416) (end 3.411 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 78dab272-36d0-4a79-b8c6-f248f946df59)) - (fp_line (start 3.411 1.04) (end 3.411 2.416) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5ea7d8aa-97ba-4a65-8cd5-d1be85ff7f78)) - (fp_line (start 3.451 -2.38) (end 3.451 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c874d7be-dc13-46f7-b384-a8d08f21230f)) - (fp_line (start 3.451 1.04) (end 3.451 2.38) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d93b4533-6de5-4685-a343-9cc9631f230b)) - (fp_line (start 3.491 -2.343) (end 3.491 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2c9df5f7-7ace-4c21-b000-3a9a8ad5ef93)) - (fp_line (start 3.491 1.04) (end 3.491 2.343) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 74133efb-ad77-45fb-a051-393836c74d9e)) - (fp_line (start 3.531 -2.305) (end 3.531 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b5bc3f84-e5ea-49d7-b575-80502943d02f)) - (fp_line (start 3.531 1.04) (end 3.531 2.305) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dd3aeeed-2db0-4df2-a39e-9c4f0da6ef2a)) - (fp_line (start 3.571 -2.265) (end 3.571 2.265) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 580a90fb-bde6-4408-a823-fe274669bd98)) - (fp_line (start 3.611 -2.224) (end 3.611 2.224) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6688dc83-aacd-4616-9c88-3be178af630a)) - (fp_line (start 3.651 -2.182) (end 3.651 2.182) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1c3140d8-653f-4c9a-91b8-2ca0b49d719e)) - (fp_line (start 3.691 -2.137) (end 3.691 2.137) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3b7c998c-1314-4125-9eb5-3fa7438dd378)) - (fp_line (start 3.731 -2.092) (end 3.731 2.092) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 03df12dc-28be-4787-81dc-06be20675730)) - (fp_line (start 3.771 -2.044) (end 3.771 2.044) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 27563cd5-c8a7-4da9-9a52-b22d55fa15a2)) - (fp_line (start 3.811 -1.995) (end 3.811 1.995) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2936a2e6-f5e9-4904-8f51-4602345e8509)) - (fp_line (start 3.851 -1.944) (end 3.851 1.944) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2cfda13a-560a-4b35-8a64-cf8c65122926)) - (fp_line (start 3.891 -1.89) (end 3.891 1.89) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp de858c4d-0115-4581-bb06-4d5c4c054b34)) - (fp_line (start 3.931 -1.834) (end 3.931 1.834) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7c3a4d54-bd7f-46ef-a42e-dc7d91e7b89b)) - (fp_line (start 3.971 -1.776) (end 3.971 1.776) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 64d2fe56-3d0d-42b7-848e-78f30e924309)) - (fp_line (start 4.011 -1.714) (end 4.011 1.714) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bf1eda7b-5078-4e99-9304-0fc55cc44c65)) - (fp_line (start 4.051 -1.65) (end 4.051 1.65) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a6b450be-3131-43a3-9203-18f8c244a3a4)) - (fp_line (start 4.091 -1.581) (end 4.091 1.581) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9430f137-f19e-455e-aa26-aaa9cd9e41b1)) - (fp_line (start 4.131 -1.509) (end 4.131 1.509) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3a1e4020-26e6-463d-9053-c1d563095bcb)) - (fp_line (start 4.171 -1.432) (end 4.171 1.432) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp db54a01e-db07-47da-92bc-ebfff7d0245b)) - (fp_line (start 4.211 -1.35) (end 4.211 1.35) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dcd98ead-a031-4c48-ad8d-5670ca4ca61f)) - (fp_line (start 4.251 -1.262) (end 4.251 1.262) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6c3c9ab0-80d6-442e-b7b7-01219610a913)) - (fp_line (start 4.291 -1.165) (end 4.291 1.165) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fdff2238-f040-4c18-be56-bf8eaef3f698)) - (fp_line (start 4.331 -1.059) (end 4.331 1.059) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f912d6a9-515f-4796-bc6a-8b22c01a475e)) - (fp_line (start 4.371 -0.94) (end 4.371 0.94) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6bc4648f-e2a0-468a-8b99-e22cd6486f13)) - (fp_line (start 4.411 -0.802) (end 4.411 0.802) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2568d367-52d3-4217-bdb6-e441c10cce9b)) - (fp_line (start 4.451 -0.633) (end 4.451 0.633) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c14e5767-2bde-4dfa-a992-afefafaaa62c)) - (fp_line (start 4.491 -0.402) (end 4.491 0.402) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 296f5fdd-3568-40e3-8210-9c1f2258135a)) - (fp_circle (center 1.25 0) (end 4.52 0) - (stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp d1d6e762-f10d-44f9-bd19-91b8d7c2ca6d)) - (fp_circle (center 1.25 0) (end 4.65 0) - (stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 5000f756-08f2-4f01-aad5-a7bac5544635)) - (fp_line (start -1.443972 -1.3735) (end -0.813972 -1.3735) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 94648ea1-ee31-4905-b6bb-5ea8bd6e9c96)) - (fp_line (start -1.128972 -1.6885) (end -1.128972 -1.0585) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4b379500-013e-4000-8f1e-86b3bc247caa)) - (fp_circle (center 1.25 0) (end 4.4 0) - (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 2170553b-3409-4d41-ace6-aa184fcd5ea9)) - (pad "1" thru_hole rect (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask") - (net 1 "/Supply_Ref/+15V") (pintype "passive") (tstamp 25401a7d-541b-4e1a-82ef-f80b30266898)) - (pad "2" thru_hole circle (at 2.5 0 90) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pintype "passive") (tstamp 9bb06c69-a8cb-4eec-8479-61666a4f170c)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D6.3mm_P2.50mm.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_THT:CP_Radial_D6.3mm_P2.50mm" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-000061e5827f) - (at 68.6 39.8 -90) - (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=6.3mm, Electrolytic Capacitor") - (tags "CP Radial series Radial pin pitch 2.50mm diameter 6.3mm Electrolytic Capacitor") - (property "MFN" "Nichicon") - (property "PN" "UHV1V101MED") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "Polarized capacitor, small symbol") - (property "ki_keywords" "cap capacitor") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-000061e83ad8") - (attr through_hole) - (fp_text reference "C29" (at 1.25 -4.4 90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 32020767-02e3-4638-abaa-3ece5d916711) - ) - (fp_text value "100u" (at 1.25 4.4 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 13f0536c-e8bc-47c4-a7a7-e5303e7ff46f) - ) - (fp_text user "${REFERENCE}" (at 1.25 0 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 7d2e71ba-0716-42fa-b36e-59aa5a93973a) - ) - (fp_line (start -2.250241 -1.839) (end -1.620241 -1.839) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2835d249-9988-4cb4-8317-b3251bd1e907)) - (fp_line (start -1.935241 -2.154) (end -1.935241 -1.524) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b0940431-2ba9-4ef8-b039-446eb25e7aeb)) - (fp_line (start 1.25 -3.23) (end 1.25 3.23) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b2f1c867-f02a-480d-a42f-097d24193abf)) - (fp_line (start 1.29 -3.23) (end 1.29 3.23) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c3182427-fc7c-4769-a72f-6d95b0bec1e4)) - (fp_line (start 1.33 -3.23) (end 1.33 3.23) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9008a20c-6578-4dd3-82cb-80563a54f3f7)) - (fp_line (start 1.37 -3.228) (end 1.37 3.228) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8408a08c-992e-40ff-a33b-248a89719850)) - (fp_line (start 1.41 -3.227) (end 1.41 3.227) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c8196566-37a6-4e1e-ab81-aafd7aa92013)) - (fp_line (start 1.45 -3.224) (end 1.45 3.224) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dd97fbbb-f739-4ee3-a1ed-f7529beddf2f)) - (fp_line (start 1.49 -3.222) (end 1.49 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp be657835-5961-4ceb-8c68-16c867ef5e2b)) - (fp_line (start 1.49 1.04) (end 1.49 3.222) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f5741fc2-e334-4b22-b12e-ecb4216f55c1)) - (fp_line (start 1.53 -3.218) (end 1.53 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 58905ebb-9f95-448d-8219-d43a257ffc8d)) - (fp_line (start 1.53 1.04) (end 1.53 3.218) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7ac70a07-490d-408e-bc22-77a8222c6dbe)) - (fp_line (start 1.57 -3.215) (end 1.57 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0ad870d5-d868-4262-956a-ec8bb8f2a671)) - (fp_line (start 1.57 1.04) (end 1.57 3.215) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7b4a8bf3-84af-49a3-828a-edb150434dc2)) - (fp_line (start 1.61 -3.211) (end 1.61 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5e9b0edb-e3ce-43ce-a781-dd833557caed)) - (fp_line (start 1.61 1.04) (end 1.61 3.211) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1367ca0a-922c-49ee-8884-09e14c96c528)) - (fp_line (start 1.65 -3.206) (end 1.65 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9b7034ff-abe2-4ed9-9ea0-aff5ee30d6fe)) - (fp_line (start 1.65 1.04) (end 1.65 3.206) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1986a6cb-58d4-4eef-add5-71998e3df437)) - (fp_line (start 1.69 -3.201) (end 1.69 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2b0fd0c1-42ee-4efe-bea5-42ea09360386)) - (fp_line (start 1.69 1.04) (end 1.69 3.201) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a3be8156-dc3d-409c-baa0-271dd30d0c0a)) - (fp_line (start 1.73 -3.195) (end 1.73 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f7d391a4-a035-4787-ac84-679b38af0794)) - (fp_line (start 1.73 1.04) (end 1.73 3.195) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c84e17c4-5758-405a-928a-8fd3fef223fd)) - (fp_line (start 1.77 -3.189) (end 1.77 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 23bb0460-b8c5-426c-ac4a-4ecb1ee753e0)) - (fp_line (start 1.77 1.04) (end 1.77 3.189) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp de4e2eb8-b598-4754-a2bb-cda988bf3bbb)) - (fp_line (start 1.81 -3.182) (end 1.81 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 242debc5-08a5-49c8-8362-b3d8fd405a22)) - (fp_line (start 1.81 1.04) (end 1.81 3.182) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 714c573b-a764-4204-a73d-e1112696aa59)) - (fp_line (start 1.85 -3.175) (end 1.85 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5404c83a-a010-4550-a344-8e541bd11b43)) - (fp_line (start 1.85 1.04) (end 1.85 3.175) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7f494420-a93b-4fdb-91a6-12d2503aed02)) - (fp_line (start 1.89 -3.167) (end 1.89 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8c6aca82-6489-46c1-941e-838006e24084)) - (fp_line (start 1.89 1.04) (end 1.89 3.167) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 281dd520-75ac-4f35-bcd8-aaf143099271)) - (fp_line (start 1.93 -3.159) (end 1.93 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 30037967-aa2e-4a93-b19a-ab6bd34898ad)) - (fp_line (start 1.93 1.04) (end 1.93 3.159) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4555ba25-6f40-4b46-b41f-5fb4698826c2)) - (fp_line (start 1.971 -3.15) (end 1.971 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f3caebd0-1d0b-472b-9d0e-677c72af256f)) - (fp_line (start 1.971 1.04) (end 1.971 3.15) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ab4ebe41-6231-4e9d-af49-a4457e08c7e3)) - (fp_line (start 2.011 -3.141) (end 2.011 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp adf9d74e-5009-45f1-918e-a05d58b6ae69)) - (fp_line (start 2.011 1.04) (end 2.011 3.141) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 78e881b2-94bc-4c23-9973-5467fcb65828)) - (fp_line (start 2.051 -3.131) (end 2.051 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dafc46ab-7e80-48fd-a4e3-b60bb49d29c7)) - (fp_line (start 2.051 1.04) (end 2.051 3.131) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7b1af17d-34be-4977-b25b-9e5ab83902be)) - (fp_line (start 2.091 -3.121) (end 2.091 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c5097275-f7db-4d88-b28c-2d52ab35201e)) - (fp_line (start 2.091 1.04) (end 2.091 3.121) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dc4f9fac-7f4a-43b5-8ff3-1db66bf0a6cd)) - (fp_line (start 2.131 -3.11) (end 2.131 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 08983040-a78a-44ee-bdc7-934494796a4c)) - (fp_line (start 2.131 1.04) (end 2.131 3.11) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bc6c0392-ac54-4bb6-b360-aacdd1bacd43)) - (fp_line (start 2.171 -3.098) (end 2.171 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b5381d3a-807c-4588-9399-9ea13c467732)) - (fp_line (start 2.171 1.04) (end 2.171 3.098) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2ca69b36-8308-4c70-bf48-c44ed5231c8f)) - (fp_line (start 2.211 -3.086) (end 2.211 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 214304ff-409c-425e-95f8-f40b0520ca0c)) - (fp_line (start 2.211 1.04) (end 2.211 3.086) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 93900881-7e5c-4303-b12e-f028247fca20)) - (fp_line (start 2.251 -3.074) (end 2.251 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 389dc957-1231-4551-bd16-20a699e222dc)) - (fp_line (start 2.251 1.04) (end 2.251 3.074) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2776192a-6585-49f6-9722-32b9e26a5a60)) - (fp_line (start 2.291 -3.061) (end 2.291 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0c584890-672f-47f7-8849-0a893e3768f4)) - (fp_line (start 2.291 1.04) (end 2.291 3.061) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4cf4d8f0-f060-48f0-b1cc-c64793bc64e8)) - (fp_line (start 2.331 -3.047) (end 2.331 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4d196c5a-3905-417f-926a-74c256ecc5da)) - (fp_line (start 2.331 1.04) (end 2.331 3.047) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e0bd197f-48f8-49d9-ab00-01bcd54cc666)) - (fp_line (start 2.371 -3.033) (end 2.371 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5e2e66a9-0a86-4b03-9288-03010d0fe8fe)) - (fp_line (start 2.371 1.04) (end 2.371 3.033) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 77d4da77-3627-4363-9885-450201af2c78)) - (fp_line (start 2.411 -3.018) (end 2.411 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b7c7bd13-b6c4-4da2-b696-40cb0556fc66)) - (fp_line (start 2.411 1.04) (end 2.411 3.018) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9665294b-ff6c-4da6-adec-656cb373c296)) - (fp_line (start 2.451 -3.002) (end 2.451 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cc8e2236-55c4-46e3-97cc-d933f8f90b41)) - (fp_line (start 2.451 1.04) (end 2.451 3.002) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 56fe4d21-cbb0-4294-8a84-3be4c61ddd23)) - (fp_line (start 2.491 -2.986) (end 2.491 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1955ea64-5c98-45d1-9c5c-064980cdbe9c)) - (fp_line (start 2.491 1.04) (end 2.491 2.986) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 62c2c31d-7105-4c32-bd77-a197c095163d)) - (fp_line (start 2.531 -2.97) (end 2.531 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8f431c59-c748-47c3-ae58-b72fade60136)) - (fp_line (start 2.531 1.04) (end 2.531 2.97) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 872ddde0-173b-4999-b5eb-93ec215014c6)) - (fp_line (start 2.571 -2.952) (end 2.571 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a3e0602e-4673-43b8-a8bd-8a7634039502)) - (fp_line (start 2.571 1.04) (end 2.571 2.952) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e121c01c-6b88-49c3-ac96-fe6c2ffcc4a2)) - (fp_line (start 2.611 -2.934) (end 2.611 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2f0c4139-aa47-410c-ae86-41517289a783)) - (fp_line (start 2.611 1.04) (end 2.611 2.934) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 06430f55-10b1-493b-b996-9554ebcea032)) - (fp_line (start 2.651 -2.916) (end 2.651 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 76cb1ae0-7e8b-480c-9066-332f6008f739)) - (fp_line (start 2.651 1.04) (end 2.651 2.916) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8933288e-66c4-4d65-8fc0-601a91908334)) - (fp_line (start 2.691 -2.896) (end 2.691 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 47f456b0-66c0-4de3-ba2b-55685b006b65)) - (fp_line (start 2.691 1.04) (end 2.691 2.896) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 44bcdc6c-ccfe-4a28-b480-ac22e51fe9a9)) - (fp_line (start 2.731 -2.876) (end 2.731 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9386fe4f-edad-49a2-9a72-bb64eb2f6af0)) - (fp_line (start 2.731 1.04) (end 2.731 2.876) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 71a1a046-9c1f-411d-a630-d90f48a37c47)) - (fp_line (start 2.771 -2.856) (end 2.771 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b0a3cb35-8eea-4119-9a3e-7389d3a1cfe7)) - (fp_line (start 2.771 1.04) (end 2.771 2.856) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0991b516-375c-4a1c-9631-b73a2f1d91c7)) - (fp_line (start 2.811 -2.834) (end 2.811 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f597e4e1-281b-4786-891f-89a529eb0d72)) - (fp_line (start 2.811 1.04) (end 2.811 2.834) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 840105bf-6b7c-483f-b1ff-6b51cc495a95)) - (fp_line (start 2.851 -2.812) (end 2.851 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 035b5405-9ac2-45f1-ad69-db4cfc1b4d5e)) - (fp_line (start 2.851 1.04) (end 2.851 2.812) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 83535d32-e3a6-41f3-b467-8b31285ad61a)) - (fp_line (start 2.891 -2.79) (end 2.891 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b6dc5701-34ea-46a8-bd59-e292140a6dd3)) - (fp_line (start 2.891 1.04) (end 2.891 2.79) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6eb3dd1f-9eb4-445e-89b3-acc6d48d65f3)) - (fp_line (start 2.931 -2.766) (end 2.931 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ade313b9-f262-4fcf-a478-2f36a0a3e90b)) - (fp_line (start 2.931 1.04) (end 2.931 2.766) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cf4e7d5f-23aa-451d-8a10-4c56c2200824)) - (fp_line (start 2.971 -2.742) (end 2.971 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 80632f82-7094-41ad-8db4-d7227e7aa960)) - (fp_line (start 2.971 1.04) (end 2.971 2.742) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 13522a37-4917-4230-b7a5-2ba5247719ce)) - (fp_line (start 3.011 -2.716) (end 3.011 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 560478bf-9819-4f29-b85e-d18cbb57270e)) - (fp_line (start 3.011 1.04) (end 3.011 2.716) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c31ff307-34a0-4667-b823-f7b65a4d8600)) - (fp_line (start 3.051 -2.69) (end 3.051 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 166e04fe-57e0-4aa0-adf6-086be1d30777)) - (fp_line (start 3.051 1.04) (end 3.051 2.69) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a27ce73b-f85a-44cb-891a-164da6b9175c)) - (fp_line (start 3.091 -2.664) (end 3.091 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d89a004f-c000-4f2e-ba35-2fbc871c1495)) - (fp_line (start 3.091 1.04) (end 3.091 2.664) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f89c66f7-6974-460d-9555-0c57197a2e5f)) - (fp_line (start 3.131 -2.636) (end 3.131 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3268c4c5-d6c4-4666-b533-246478a776e4)) - (fp_line (start 3.131 1.04) (end 3.131 2.636) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 26df5b0b-b5ef-41ff-8e30-0cc3ce20fb52)) - (fp_line (start 3.171 -2.607) (end 3.171 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c5ebac32-24db-45ee-a294-673a2dfaa621)) - (fp_line (start 3.171 1.04) (end 3.171 2.607) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b657a949-fc84-4789-b840-3f8467da0725)) - (fp_line (start 3.211 -2.578) (end 3.211 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 37c4c931-c108-4b42-88ed-1c1ff6be91d9)) - (fp_line (start 3.211 1.04) (end 3.211 2.578) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c52078e0-1a26-4859-baef-d1427a389228)) - (fp_line (start 3.251 -2.548) (end 3.251 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b9d1e033-9387-45e3-baee-5710582a01ed)) - (fp_line (start 3.251 1.04) (end 3.251 2.548) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a40f2a60-2cc0-455c-8a4e-3e62c995f772)) - (fp_line (start 3.291 -2.516) (end 3.291 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 66f4f1c3-8c19-42e1-af62-6589942b2b9d)) - (fp_line (start 3.291 1.04) (end 3.291 2.516) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2a7bc60d-1fdf-4621-abfe-58c894cd5884)) - (fp_line (start 3.331 -2.484) (end 3.331 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fe091665-fe16-4228-b6bd-a224239cb496)) - (fp_line (start 3.331 1.04) (end 3.331 2.484) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 51127f7f-e138-49f0-a6bb-3e7765ebcd9a)) - (fp_line (start 3.371 -2.45) (end 3.371 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 48604c2e-95d1-49b1-9133-7404157a675d)) - (fp_line (start 3.371 1.04) (end 3.371 2.45) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fc2b4cfa-e9e9-4b73-9369-e33375b5f5f9)) - (fp_line (start 3.411 -2.416) (end 3.411 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6342c894-a7e7-4f02-9f74-cf25e84e1266)) - (fp_line (start 3.411 1.04) (end 3.411 2.416) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 49d03dfe-fdeb-4e9d-888c-64c171c4f517)) - (fp_line (start 3.451 -2.38) (end 3.451 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 04bc0c95-17db-4fb1-b38c-fdbe3ceb3787)) - (fp_line (start 3.451 1.04) (end 3.451 2.38) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6d87e994-10ef-4225-87a3-43400a930076)) - (fp_line (start 3.491 -2.343) (end 3.491 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 26dc1995-9f76-415e-a4a5-0f4423658377)) - (fp_line (start 3.491 1.04) (end 3.491 2.343) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 07fb363b-faa6-4d13-93c1-bf9acff00e8e)) - (fp_line (start 3.531 -2.305) (end 3.531 -1.04) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 05e774bc-195d-4a19-b233-8b5db2ded44e)) - (fp_line (start 3.531 1.04) (end 3.531 2.305) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5639adbe-2b90-49fe-a5f4-18a01a128698)) - (fp_line (start 3.571 -2.265) (end 3.571 2.265) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 27c7450f-66be-4a67-8f24-34e0fc290912)) - (fp_line (start 3.611 -2.224) (end 3.611 2.224) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 385147a6-5e64-4909-a9cc-26182f0f26f8)) - (fp_line (start 3.651 -2.182) (end 3.651 2.182) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 452a57f8-d7c3-4a91-8054-609cb34723c6)) - (fp_line (start 3.691 -2.137) (end 3.691 2.137) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0663e00b-8417-48f2-8be4-8192aab8c813)) - (fp_line (start 3.731 -2.092) (end 3.731 2.092) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d1eb4bd5-f71b-41ba-a56a-5569b7e681f2)) - (fp_line (start 3.771 -2.044) (end 3.771 2.044) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 86917c37-19bf-43cb-a42c-28fbb8cb4ea9)) - (fp_line (start 3.811 -1.995) (end 3.811 1.995) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ee1ec9a7-2fea-40c3-bf87-5abc546be26a)) - (fp_line (start 3.851 -1.944) (end 3.851 1.944) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f59e2edc-31db-4676-8f86-6e3f918e6b0a)) - (fp_line (start 3.891 -1.89) (end 3.891 1.89) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 24b46c01-ec26-4134-ab42-5be913a88561)) - (fp_line (start 3.931 -1.834) (end 3.931 1.834) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0a5d3c97-e1ed-4fdc-b5a5-1d68ef79f599)) - (fp_line (start 3.971 -1.776) (end 3.971 1.776) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d297e348-16fb-458e-b5a0-eb0b39e3e64a)) - (fp_line (start 4.011 -1.714) (end 4.011 1.714) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 63014cac-b0de-4f63-af82-24d79d8758f5)) - (fp_line (start 4.051 -1.65) (end 4.051 1.65) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5ddd304a-94ef-497e-989d-b42a9096730c)) - (fp_line (start 4.091 -1.581) (end 4.091 1.581) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 70ee7a65-73fb-4849-a0b5-1c5473e4aaea)) - (fp_line (start 4.131 -1.509) (end 4.131 1.509) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 809e9a4c-505e-4b65-86bf-74a9e0cd6438)) - (fp_line (start 4.171 -1.432) (end 4.171 1.432) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5fcad7fa-3081-4661-8dfd-143f20f621e1)) - (fp_line (start 4.211 -1.35) (end 4.211 1.35) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3f19fae4-febb-422c-bb0f-f0f082708772)) - (fp_line (start 4.251 -1.262) (end 4.251 1.262) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c31a8df9-660c-4a50-9878-62d41f3aaeaa)) - (fp_line (start 4.291 -1.165) (end 4.291 1.165) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fc9d3a22-0e2a-411d-ad06-8bf377e19a6b)) - (fp_line (start 4.331 -1.059) (end 4.331 1.059) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7b5a0d43-d9e3-48f9-9c3d-81fd80ba4571)) - (fp_line (start 4.371 -0.94) (end 4.371 0.94) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 765d05c2-e693-4ffe-9f1b-27547c722dcf)) - (fp_line (start 4.411 -0.802) (end 4.411 0.802) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cfa1ccbf-f7da-4d18-83ab-82bf1bddcb2d)) - (fp_line (start 4.451 -0.633) (end 4.451 0.633) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp caa75fb2-c73a-4e69-8b5c-582c5db0706f)) - (fp_line (start 4.491 -0.402) (end 4.491 0.402) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c0f2ea2d-8334-4418-8295-59f6fadef7b8)) - (fp_circle (center 1.25 0) (end 4.52 0) - (stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp b9b2264c-4578-4eba-8a61-9ef012aa2be1)) - (fp_circle (center 1.25 0) (end 4.65 0) - (stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 12b77e13-f97e-4778-9977-62d9775417e0)) - (fp_line (start -1.443972 -1.3735) (end -0.813972 -1.3735) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7cff2ba3-b495-4f87-8aa3-3e48f76582dc)) - (fp_line (start -1.128972 -1.6885) (end -1.128972 -1.0585) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ff2d2ebd-be64-4ce9-b93e-930c56ab531d)) - (fp_circle (center 1.25 0) (end 4.4 0) - (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp e5cc6f30-eed6-4f03-87ab-2253d9ac09fc)) - (pad "1" thru_hole rect (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask") - (net 2 "GND") (pintype "passive") (tstamp 481446df-fecf-4e66-978c-109b555b226f)) - (pad "2" thru_hole circle (at 2.5 0 270) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask") - (net 3 "/Supply_Ref/-15V") (pintype "passive") (tstamp 9e5de4b2-52db-408f-9aa4-2614703e56bc)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D6.3mm_P2.50mm.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Diode_SMD:D_SMB" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-000061e58297) - (at 72 120.2) - (descr "Diode SMB (DO-214AA)") - (tags "Diode SMB (DO-214AA)") - (property "MFN" "Bourns") - (property "PN" "SMBJ40CA-QH") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "Bidirectional transient-voltage-suppression diode") - (property "ki_keywords" "diode TVS thyrector") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-000061e66d74") - (attr smd) - (fp_text reference "D2" (at 0 -3) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 2d9cfb1d-75d8-489b-9abb-554088669c18) - ) - (fp_text value "SMBJ40CA" (at 0 3.1) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp f98cbbd5-de41-4840-b41c-4859ccade383) - ) - (fp_text user "${REFERENCE}" (at 0 -3) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp a697dc8c-9e7f-4a04-89fe-254335db6d31) - ) - (fp_line (start -3.66 -2.15) (end -3.66 2.15) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6f9a05f9-39c2-4669-861d-03854d3d667a)) - (fp_line (start -3.66 -2.15) (end 2.15 -2.15) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d939c9cc-f584-4bde-b8c5-83642d6fb058)) - (fp_line (start -3.66 2.15) (end 2.15 2.15) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c16d1280-dbfc-460c-8da3-1441a29f9c27)) - (fp_line (start -3.65 -2.25) (end 3.65 -2.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ba7b6e25-2f03-44ae-8e04-8d589c2a47a1)) - (fp_line (start -3.65 2.25) (end -3.65 -2.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 770ad062-44fc-4a4c-ad4e-b4c2371ab1f3)) - (fp_line (start 3.65 -2.25) (end 3.65 2.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cdcadbcd-1ed0-4a36-bca9-ebe08b79b0a8)) - (fp_line (start 3.65 2.25) (end -3.65 2.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 24fdb289-5e7d-4bec-85a2-ba59e07b4aa6)) - (fp_line (start -2.3 2) (end -2.3 -2) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 73b625b7-f6f3-4972-b192-6ad74c7200bf)) - (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3ce117c4-af18-4db1-9345-22bdc4f756e3)) - (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6503d335-b188-4afe-b338-cffedbf77091)) - (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bd579e52-0a69-48ce-956e-a0af38e5f9d3)) - (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a514e6c9-f8b5-45d3-923e-c8479c58849a)) - (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a3e91f89-b3f2-4559-8683-86a554c75acf)) - (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp af455b2d-30c2-483b-8585-0a9e311b468b)) - (fp_line (start 2.3 -2) (end -2.3 -2) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a3d0decc-ff8f-4aa0-bf5d-70d50484cc38)) - (fp_line (start 2.3 -2) (end 2.3 2) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cd23ef5d-1d59-4b54-ad15-9140c22d4f41)) - (fp_line (start 2.3 2) (end -2.3 2) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2e9410f6-a781-46a3-a944-94c43fa52b8e)) - (pad "1" smd roundrect (at -2.15 0) (size 2.5 2.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1086956522) - (net 1 "/Supply_Ref/+15V") (pinfunction "A1") (pintype "passive") (tstamp 83cc7c69-0a92-424b-94f0-a14d19f63c69)) - (pad "2" smd roundrect (at 2.15 0) (size 2.5 2.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1086956522) - (net 2 "GND") (pinfunction "A2") (pintype "passive") (tstamp 2e0b1082-8e80-4737-af6a-52750d7af12b)) - (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMB.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Diode_SMD:D_SMB" (layer "F.Cu") - (tstamp 00000000-0000-0000-0000-000061e582af) - (at 66.3 54.8 180) - (descr "Diode SMB (DO-214AA)") - (tags "Diode SMB (DO-214AA)") - (property "MFN" "Bourns") - (property "PN" "SMBJ40CA-QH") - (property "Sheetfile" "Supply_Ref.kicad_sch") - (property "Sheetname" "Supply_Ref") - (property "ki_description" "Bidirectional transient-voltage-suppression diode") - (property "ki_keywords" "diode TVS thyrector") - (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-000061e67517") - (attr smd) - (fp_text reference "D3" (at -4.5 -0.1 90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 8cb14cca-6937-40cd-97a6-7feb614d3403) - ) - (fp_text value "SMBJ40CA" (at 0 3.1) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 881f19e2-ada9-410d-8e8f-8aa3ba6f10f5) - ) - (fp_text user "${REFERENCE}" (at 0 -3) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 10ae2b79-ad7a-4934-af83-5eff731df396) - ) - (fp_line (start -3.66 -2.15) (end -3.66 2.15) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1c6c1b23-b3ae-4b7a-a6db-721607d601f7)) - (fp_line (start -3.66 -2.15) (end 2.15 -2.15) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 07421639-ab5b-4a7e-9be4-6b6bed959d7d)) - (fp_line (start -3.66 2.15) (end 2.15 2.15) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 36dd3926-97e8-4636-a6c0-ea99ca3534ba)) - (fp_line (start -3.65 -2.25) (end 3.65 -2.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5c595322-784a-4f4f-a6b4-8d703c1bd4c8)) - (fp_line (start -3.65 2.25) (end -3.65 -2.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 58e54a0a-0412-492f-8b8a-5318d5668755)) - (fp_line (start 3.65 -2.25) (end 3.65 2.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3a749608-a07a-4374-9edb-6a52108f69f6)) - (fp_line (start 3.65 2.25) (end -3.65 2.25) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ff279f66-a590-40e0-92e0-e7c8d12f5561)) - (fp_line (start -2.3 2) (end -2.3 -2) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0d750a46-6605-45ec-974c-1be5898bd924)) - (fp_line (start -0.64944 -0.79908) (end -0.64944 0.80112) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 272077a3-87b9-495f-a98e-83f37645a93d)) - (fp_line (start -0.64944 0.00102) (end -1.55114 0.00102) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 28310dec-02c9-494b-8baa-b6a0fbf66a81)) - (fp_line (start -0.64944 0.00102) (end 0.50118 -0.79908) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 521877ac-ea47-47e8-8ef0-cfc952a1375e)) - (fp_line (start -0.64944 0.00102) (end 0.50118 0.75032) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 28142cbd-3fed-4564-ab03-1cfae7bb9de1)) - (fp_line (start 0.50118 0.00102) (end 1.4994 0.00102) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6682ad9a-d222-4f39-8a80-5bb0b4344e6e)) - (fp_line (start 0.50118 0.75032) (end 0.50118 -0.79908) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8b752183-e706-487c-84fc-fce168560b70)) - (fp_line (start 2.3 -2) (end -2.3 -2) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 09d87361-0122-48f3-b57e-e2ab180da300)) - (fp_line (start 2.3 -2) (end 2.3 2) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ee538744-53b7-49d6-ad2c-64ea64bede03)) - (fp_line (start 2.3 2) (end -2.3 2) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3d70631c-cfe4-4a25-a589-6c71bf8bcdf6)) - (pad "1" smd roundrect (at -2.15 0 180) (size 2.5 2.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1086956522) - (net 2 "GND") (pinfunction "A1") (pintype "passive") (tstamp 5a7c7867-0c05-49af-9d10-4d1d63d84fe4)) - (pad "2" smd roundrect (at 2.15 0 180) (size 2.5 2.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1086956522) - (net 3 "/Supply_Ref/-15V") (pinfunction "A2") (pintype "passive") (tstamp 02ddc0f1-c800-4c10-909c-2a8acf1ec117)) - (model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMB.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") - (tstamp 03b21780-41fc-412f-9634-726d758979eb) - (at 174.2 43.1) - (descr "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") - (tags "resistor") - (property "MFN" "Susumu") - (property "PN" "RR0816P-102-D") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Resistor, small symbol") - (property "ki_keywords" "R resistor") - (path "/00000000-0000-0000-0000-00005b057307/85928547-ef90-41f4-89e0-2c16d7077ebc") - (attr smd) - (fp_text reference "R17" (at 0 -1.5) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp f5448a41-8b15-431b-be39-a4cf47597616) - ) - (fp_text value "1k" (at 0 1.43) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp d1df90ee-4a1d-4307-b1eb-3510bfd93e5a) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06))) - (tstamp 20e7def5-98c4-4c45-bd0d-01dee6f017d1) - ) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 796c59bc-4341-4f13-91ef-b303872e8599)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bf527418-67ae-437f-8cbe-16c9614b7fda)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ac5a2dfe-a734-436a-a5ed-9c0a49c8095f)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 055484e1-5081-4b40-82e0-261554d0a55f)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4aad3432-5faa-49bb-a071-ae84dceea025)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 26fcacfa-7fe5-4f5c-8351-dd8d06745939)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3aa76c14-79cf-4c1c-9d51-8bc1478e4c19)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a8bfac19-66a3-428c-bbaa-310847de1d5e)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 76d97f62-abdb-4142-a629-5396b89b805c)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ab5fce64-f260-40db-9db2-dc16ba3da2ca)) - (pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 88 "Net-(U7B--)") (pintype "passive") (tstamp 021eb58b-7131-448c-915c-e8cf06175d07)) - (pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 89 "Net-(U7A--)") (pintype "passive") (tstamp db407b30-9c6a-43d7-a660-cdb8ec0635b0)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") - (tstamp 1b3cc04c-8f88-4e39-b15d-e0c4efafc2d5) - (at 161.6 39.3 90) - (descr "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") - (tags "resistor") - (property "Config" "") - (property "MFN" "Susumu") - (property "PN" "RR0816P-913-D") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Resistor, small symbol") - (property "ki_keywords" "R resistor") - (path "/00000000-0000-0000-0000-00005b057307/691945d5-7544-4393-8de4-ef9a08567d22") - (attr smd) - (fp_text reference "R32" (at 0 -1.43 90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp b99248c8-17bb-45e0-b9f3-bc33eac61747) - ) - (fp_text value "91k" (at 0 1.43 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 9ddf0201-8844-4bad-9c65-f2e783c26d9d) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06))) - (tstamp 35c1430d-bba5-46ff-8bd8-a7ec044df027) - ) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 077534fe-314d-4f87-8a66-3d718e12b7b2)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d4b9d0a6-fcbe-451c-9049-92d9f4e357e8)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 653e12b8-11cd-4abc-accf-b62295c5fe1e)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 57012dc4-182f-4c34-8e38-7c3a4ca9ea74)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 23ce7fb2-067d-4088-aefd-d6d78d5de862)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a02b4685-544c-472e-a840-e385c140324e)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 93e65f13-978a-4dfc-aee7-416acb600839)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1bcefcc4-991f-410e-bb4a-720a87b93d8e)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 58dfbf7b-bb4e-4d4e-afc8-27d59b154e30)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp daf0e937-c1cb-40ec-a4ed-46a1ac6013d7)) - (pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 14 "Net-(U7B-+)") (pintype "passive") (tstamp 8add8553-73f7-4d97-80c1-fe2045a23c42)) - (pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 118 "/Input_Output_Module/+10V_ref") (pintype "passive") (tstamp 723679b8-5896-48da-9025-ce84168f3264)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") - (tstamp 40d949b9-e0e4-4df7-8565-5117f67c5ae6) - (at 179.2 48.1 90) - (descr "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") - (tags "resistor") - (property "MFN" "Susumu") - (property "PN" "RR0816P-102-D") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Resistor, small symbol") - (property "ki_keywords" "R resistor") - (path "/00000000-0000-0000-0000-00005b057307/34ea8110-746e-472c-a415-537e7776ba7d") - (attr smd) - (fp_text reference "R20" (at 0 1.6 90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp a5632595-debe-4e10-9dbb-32bb0e03f3d8) - ) - (fp_text value "1k" (at 0 1.43 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 0ab77463-c7ff-46fd-9f04-ae5ad33db65a) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06))) - (tstamp 4aba62a3-566a-45b4-84f2-7f6ce2394e05) - ) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3512e4c6-eaab-4ca4-b299-dd9eecdc17dd)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dc3bea3b-6978-4a2f-897d-f40ce0e9de40)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 63aa99e8-5c91-401a-a286-aebfb5f5a5ae)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 053da637-cf71-4571-8ec8-20cb69319444)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2ef4f85c-0b13-4ff8-8dc0-509e73424a12)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0f9b173d-fecf-4883-ab35-b6251f5c6e45)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2c658615-bdee-40e2-bf66-c429911878ee)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4ed2cc6d-69dc-4b88-84b7-2f72ba4cd3ff)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 732236b6-d3bb-4c4a-b48f-061372aefa57)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bbe86225-b2e8-4315-b3b0-ab8e38fcb3c3)) - (pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 67 "Net-(R20-Pad1)") (pintype "passive") (tstamp 63a09988-a9b1-4f59-aead-9d3e0c5e4b84)) - (pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 89 "Net-(U7A--)") (pintype "passive") (tstamp 1176555c-edfe-4e86-8372-d29b1195ee7f)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_Tantalum_SMD:CP_EIA-3528-21_Kemet-B" (layer "F.Cu") - (tstamp 7684b0c8-a3c0-4a5f-badc-1e8985b77239) - (at 168.7 39.2) - (descr "Tantalum Capacitor SMD Kemet-B (3528-21 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator") - (tags "capacitor tantalum") - (property "MFN" "AVX") - (property "PN" "TCJB106M025R0150") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Polarized capacitor") - (property "ki_keywords" "cap capacitor") - (path "/00000000-0000-0000-0000-00005b057307/ba32c028-f96b-40c5-96bd-2c6f5cb0e71f") - (attr smd) - (fp_text reference "C24" (at 0 -2.35) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp ac3b5d5a-db85-4821-aa85-0541b2e5ae9f) - ) - (fp_text value "10u" (at 0 2.35) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 435a926d-79fa-4b91-ae70-f8884c5a01cf) - ) - (fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") - (effects (font (size 0.88 0.88) (thickness 0.13))) - (tstamp 954fab0a-a175-4fd1-9301-ac7a0f44a2ff) - ) - (fp_line (start -2.46 -1.51) (end -2.46 1.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ababdca8-7432-4c1d-8a3c-048eed19c9e7)) - (fp_line (start -2.46 1.51) (end 1.75 1.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 26125a8c-f113-4fc1-9cad-4f0c47530f4b)) - (fp_line (start 1.75 -1.51) (end -2.46 -1.51) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fc452234-865d-4135-9529-606e486f6c36)) - (fp_line (start -2.45 -1.65) (end 2.45 -1.65) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ac067960-9012-482d-9cc2-6349911d110d)) - (fp_line (start -2.45 1.65) (end -2.45 -1.65) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 51547115-285d-45e2-84c6-ab00ab6b14d5)) - (fp_line (start 2.45 -1.65) (end 2.45 1.65) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1ca56d02-3453-4d04-80e4-ebcfc9b6b3b5)) - (fp_line (start 2.45 1.65) (end -2.45 1.65) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3ddd21b1-de51-4b3f-ab77-94fb33a5c23c)) - (fp_line (start -1.75 -0.7) (end -1.75 1.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ade462f7-e89c-4097-9ee9-9d6cbcf658cf)) - (fp_line (start -1.75 1.4) (end 1.75 1.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3309accc-4667-4bc6-98e0-aa5b760d8a1d)) - (fp_line (start -1.05 -1.4) (end -1.75 -0.7) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9efb4578-ef21-46c0-a742-cd291d343fbf)) - (fp_line (start 1.75 -1.4) (end -1.05 -1.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 460cd0ac-4dcd-4e20-ad54-43e4941ad878)) - (fp_line (start 1.75 1.4) (end 1.75 -1.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9d6a35a1-7617-4193-8c01-9162792b6c98)) - (pad "1" smd roundrect (at -1.5375 0) (size 1.325 2.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.188679) - (net 14 "Net-(U7B-+)") (pintype "passive") (tstamp 92f6977e-f247-486b-8232-5b14b334c6a4)) - (pad "2" smd roundrect (at 1.5375 0) (size 1.325 2.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.188679) - (net 2 "GND") (pintype "passive") (tstamp 8affc735-14b3-4bbe-834f-27975ed07d91)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-3528-21_Kemet-B.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") - (tstamp da45010f-ef64-4740-82f1-fee030820c70) - (at 164.7 39.3 90) - (descr "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") - (tags "resistor") - (property "MFN" "Susumu") - (property "PN" "RR0816P-103-D") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Resistor, small symbol") - (property "ki_keywords" "R resistor") - (path "/00000000-0000-0000-0000-00005b057307/c5e86fd8-41d3-4087-97b4-5d16719c9207") - (attr smd) - (fp_text reference "R31" (at 0 -1.43 90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp e28a44ef-dc4c-45cd-9f28-ee8259283481) - ) - (fp_text value "10k" (at 0 1.43 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp b6707652-4f8e-4f36-9c3a-e8ee0bd39e3a) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06))) - (tstamp 721a3b8e-d276-4807-858d-700db348b72f) - ) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ae8eef94-02ce-48cc-b2a0-d7e2470a0199)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 106220f7-241f-43f1-9b1e-b182a1fb2b71)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 01914458-1b03-45ad-a056-60dd5804bf9e)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 83fede9b-d4ab-4f04-8b66-ea2d53c931a5)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ed2411d5-0097-43f6-8245-da4f1d083719)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c2dcdd67-0d29-428c-a876-6fd7b5ed6457)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d23321b9-7b6f-4902-94ca-e645adcc0bab)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0bdd565d-2581-442a-b87a-bd82443c1cae)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c611a64a-03bf-4a08-a6fc-e9a86c5d8dab)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 046599c6-1228-4dec-a456-efded3ca4e42)) - (pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp 6ee82b1f-bba0-484a-9257-2afb7dda927e)) - (pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 14 "Net-(U7B-+)") (pintype "passive") (tstamp 2485c6ea-08e0-4d60-a426-df87defc1840)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") - (tstamp e21396fb-d38d-4523-9a75-52acb1f5f431) - (at 172.4 51.4 -90) - (descr "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") - (tags "resistor") - (property "MFN" "Susumu") - (property "PN" "RR0816P-102-D") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Resistor, small symbol") - (property "ki_keywords" "R resistor") - (path "/00000000-0000-0000-0000-00005b057307/e3056e1e-b81f-451c-85a7-a9781a32dd24") - (attr smd) - (fp_text reference "R19" (at 3 0 90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 0d926c6f-2d84-42f4-82a1-cc6fd8e15c82) - ) - (fp_text value "1k" (at 0 1.43 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp b4f3b259-add1-43f9-a581-c6e2e4569301) - ) - (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06))) - (tstamp 1f5f5ab7-653f-4ef3-b56b-b1796442b56f) - ) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a0b10883-ee07-4b5e-ae63-6a17d641a0b4)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2a79e227-0e7d-4fe3-b7c7-c69e80294b65)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dcbf6851-9f91-4592-9c19-cadac8495c2b)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b8618396-338e-4ad9-9ef7-837f4d529caa)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0720ea8d-880c-4f5a-a40a-5d65f7f1ebb8)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0e890e22-37c6-4934-942b-95fe9964b0f7)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9ed543f6-4b0a-46a5-9bc0-47578d94d3c2)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 941b6431-2b7c-4233-8345-80bcc4a1d593)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 14e9a109-ef36-4bac-b64b-27913efc33b0)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8198ed10-908e-4c6a-95c1-9917abd1db6b)) - (pad "1" smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 15 "Net-(U7A-+)") (pintype "passive") (tstamp 8a8c75b3-55e0-4cad-87dc-f2428ecadcac)) - (pad "2" smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 75 "Net-(J11-In)") (pintype "passive") (tstamp 1c6ade06-6346-4fc4-a443-8b6c7bd822e8)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu") - (tstamp f255db96-29d0-4680-8627-2238d36b7cb1) - (at 174.2 51.4 -90) - (descr "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") - (tags "resistor") - (property "MFN" "Susumu") - (property "PN" "RR0816P-102-D") - (property "Sheetfile" "Input_Output_Module.kicad_sch") - (property "Sheetname" "Input_Output_Module") - (property "ki_description" "Resistor, small symbol") - (property "ki_keywords" "R resistor") - (path "/00000000-0000-0000-0000-00005b057307/1b8505fd-6bd4-453d-9c3a-68f9976fea56") - (attr smd) - (fp_text reference "R33" (at 3.1 0 -270) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 8b3b631e-6761-425a-b192-6feba03a2beb) - ) - (fp_text value "1k" (at 0 1.43 -270) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp d24e0722-6706-4442-bf93-bbee6b73ab54) - ) - (fp_text user "${REFERENCE}" (at 0 0 -270) (layer "F.Fab") - (effects (font (size 0.4 0.4) (thickness 0.06))) - (tstamp 34f63058-808e-4ede-afcb-ed248544b7a7) - ) - (fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 761eeeaf-0a0b-4a74-8965-5834bd71e7e1)) - (fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e95f4385-02c2-4f2c-9e5c-a116854b52a0)) - (fp_line (start -1.48 -0.73) (end 1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 130e9379-de27-47de-993c-1762c92c06a6)) - (fp_line (start -1.48 0.73) (end -1.48 -0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f78c857a-4979-41a8-ad63-9cbed910ded0)) - (fp_line (start 1.48 -0.73) (end 1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1ce8cc69-4e6a-4f15-b8c2-618770762697)) - (fp_line (start 1.48 0.73) (end -1.48 0.73) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6af52ae0-7c24-45ba-99c7-dfc3b6deb717)) - (fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7c7cf670-6747-4699-97d8-c125f0d67a8f)) - (fp_line (start -0.8 0.4125) (end -0.8 -0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b83f7fb1-ba1e-4095-8beb-02f086f38643)) - (fp_line (start 0.8 -0.4125) (end 0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3b1201ff-c918-4f6b-8186-2207db7e913a)) - (fp_line (start 0.8 0.4125) (end -0.8 0.4125) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c04ca70b-e3b4-4703-9f1f-22628a52f962)) - (pad "1" smd roundrect (at -0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 15 "Net-(U7A-+)") (pintype "passive") (tstamp 9bcefba8-ef9a-42fe-9272-2f4fbe31899f)) - (pad "2" smd roundrect (at 0.825 0 270) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25) - (net 2 "GND") (pintype "passive") (tstamp 00a9da5c-cf4d-4791-b4c5-27d30fbd69ce)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Symbol:OSHW-Logo_5.7x6mm_SilkScreen" locked (layer "B.Cu") - (tstamp 00000000-0000-0000-0000-00005f70c947) - (at 206.17 110.9 -90) - (descr "Open Source Hardware Logo") - (tags "Logo OSHW") - (property "Config" "DNF") - (property "Sheetfile" "RedPitaya_Lockbox.kicad_sch") - (property "Sheetname" "") - (property "Sim.Enable" "0") - (property "ki_description" "Open Hardware logo, small") - (property "ki_keywords" "Logo") - (path "/00000000-0000-0000-0000-00005f6d62f6") - (attr exclude_from_pos_files) - (fp_text reference "LOGO2" (at 0 0 90) (layer "B.SilkS") hide - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp ff39eaca-b893-4ed0-80ab-2bb417880bd9) - ) - (fp_text value "Logo_Open_Hardware_Small" (at 0.75 0 90) (layer "B.Fab") hide - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp a1c1a3b3-de2c-4664-adc8-fce018110009) - ) - (fp_poly - (pts - (xy 1.79946 -1.45803) - (xy 1.842711 -1.471245) - (xy 1.870558 -1.487941) - (xy 1.879629 -1.501145) - (xy 1.877132 -1.516797) - (xy 1.860931 -1.541385) - (xy 1.847232 -1.5588) - (xy 1.818992 -1.590283) - (xy 1.797775 -1.603529) - (xy 1.779688 -1.602664) - (xy 1.726035 -1.58901) - (xy 1.68663 -1.58963) - (xy 1.654632 -1.605104) - (xy 1.64389 -1.614161) - (xy 1.609505 -1.646027) - (xy 1.609505 -2.062179) - (xy 1.471188 -2.062179) - (xy 1.471188 -1.458614) - (xy 1.540347 -1.458614) - (xy 1.581869 -1.460256) - (xy 1.603291 -1.466087) - (xy 1.609502 -1.477461) - (xy 1.609505 -1.477798) - (xy 1.612439 -1.489713) - (xy 1.625704 -1.488159) - (xy 1.644084 -1.479563) - (xy 1.682046 -1.463568) - (xy 1.712872 -1.453945) - (xy 1.752536 -1.451478) - (xy 1.79946 -1.45803) - ) - - (stroke (width 0.01) (type solid)) (fill solid) (layer "B.SilkS") (tstamp be773226-1171-465d-ac35-a5c84c061a08)) - (fp_poly - (pts - (xy 1.635255 -2.401486) - (xy 1.683595 -2.411015) - (xy 1.711114 -2.425125) - (xy 1.740064 -2.448568) - (xy 1.698876 -2.500571) - (xy 1.673482 -2.532064) - (xy 1.656238 -2.547428) - (xy 1.639102 -2.549776) - (xy 1.614027 -2.542217) - (xy 1.602257 -2.537941) - (xy 1.55427 -2.531631) - (xy 1.510324 -2.545156) - (xy 1.47806 -2.57571) - (xy 1.472819 -2.585452) - (xy 1.467112 -2.611258) - (xy 1.462706 -2.658817) - (xy 1.459811 -2.724758) - (xy 1.458631 -2.80571) - (xy 1.458614 -2.817226) - (xy 1.458614 -3.017822) - (xy 1.320297 -3.017822) - (xy 1.320297 -2.401683) - (xy 1.389456 -2.401683) - (xy 1.429333 -2.402725) - (xy 1.450107 -2.407358) - (xy 1.457789 -2.417849) - (xy 1.458614 -2.427745) - (xy 1.458614 -2.453806) - (xy 1.491745 -2.427745) - (xy 1.529735 -2.409965) - (xy 1.58077 -2.401174) - (xy 1.635255 -2.401486) - ) - - (stroke (width 0.01) (type solid)) (fill solid) (layer "B.SilkS") (tstamp 3ee4f758-4199-4abf-a6b6-efb5d750b648)) - (fp_poly - (pts - (xy -0.993356 -2.40302) - (xy -0.974539 -2.40866) - (xy -0.968473 -2.421053) - (xy -0.968218 -2.426647) - (xy -0.967129 -2.44223) - (xy -0.959632 -2.444676) - (xy -0.939381 -2.433993) - (xy -0.927351 -2.426694) - (xy -0.8894 -2.411063) - (xy -0.844072 -2.403334) - (xy -0.796544 -2.40274) - (xy -0.751995 -2.408513) - (xy -0.715602 -2.419884) - (xy -0.692543 -2.436088) - (xy -0.687996 -2.456355) - (xy -0.690291 -2.461843) - (xy -0.70702 -2.484626) - (xy -0.732963 -2.512647) - (xy -0.737655 -2.517177) - (xy -0.762383 -2.538005) - (xy -0.783718 -2.544735) - (xy -0.813555 -2.540038) - (xy -0.825508 -2.536917) - (xy -0.862705 -2.529421) - (xy -0.888859 -2.532792) - (xy -0.910946 -2.544681) - (xy -0.931178 -2.560635) - (xy -0.946079 -2.5807) - (xy -0.956434 -2.608702) - (xy -0.963029 -2.648467) - (xy -0.966649 -2.703823) - (xy -0.968078 -2.778594) - (xy -0.968218 -2.82374) - (xy -0.968218 -3.017822) - (xy -1.09396 -3.017822) - (xy -1.09396 -2.401683) - (xy -1.031089 -2.401683) - (xy -0.993356 -2.40302) - ) - - (stroke (width 0.01) (type solid)) (fill solid) (layer "B.SilkS") (tstamp e29e31ad-da7f-4130-a5ea-8739ddca431c)) - (fp_poly - (pts - (xy 0.993367 -1.654342) - (xy 0.994555 -1.746563) - (xy 0.998897 -1.81661) - (xy 1.007558 -1.867381) - (xy 1.021704 -1.901772) - (xy 1.0425 -1.922679) - (xy 1.07111 -1.933) - (xy 1.106535 -1.935636) - (xy 1.143636 -1.932682) - (xy 1.171818 -1.921889) - (xy 1.192243 -1.90036) - (xy 1.206079 -1.865199) - (xy 1.214491 -1.81351) - (xy 1.218643 -1.742394) - (xy 1.219703 -1.654342) - (xy 1.219703 -1.458614) - (xy 1.35802 -1.458614) - (xy 1.35802 -2.062179) - (xy 1.288862 -2.062179) - (xy 1.24717 -2.060489) - (xy 1.225701 -2.054556) - (xy 1.219703 -2.043293) - (xy 1.216091 -2.033261) - (xy 1.201714 -2.035383) - (xy 1.172736 -2.04958) - (xy 1.106319 -2.07148) - (xy 1.035875 -2.069928) - (xy 0.968377 -2.046147) - (xy 0.936233 -2.027362) - (xy 0.911715 -2.007022) - (xy 0.893804 -1.981573) - (xy 0.881479 -1.947458) - (xy 0.873723 -1.901121) - (xy 0.869516 -1.839007) - (xy 0.86784 -1.757561) - (xy 0.867624 -1.694578) - (xy 0.867624 -1.458614) - (xy 0.993367 -1.458614) - (xy 0.993367 -1.654342) - ) - - (stroke (width 0.01) (type solid)) (fill solid) (layer "B.SilkS") (tstamp 7bc7c235-3047-4b9b-b53d-bec23ed67010)) - (fp_poly - (pts - (xy -0.754012 -1.469002) - (xy -0.722717 -1.48395) - (xy -0.692409 -1.505541) - (xy -0.669318 -1.530391) - (xy -0.6525 -1.562087) - (xy -0.641006 -1.604214) - (xy -0.633891 -1.660358) - (xy -0.630207 -1.734106) - (xy -0.629008 -1.829044) - (xy -0.628989 -1.838985) - (xy -0.628713 -2.062179) - (xy -0.76703 -2.062179) - (xy -0.76703 -1.856418) - (xy -0.767128 -1.780189) - (xy -0.767809 -1.724939) - (xy -0.769651 -1.686501) - (xy -0.773233 -1.660706) - (xy -0.779132 -1.643384) - (xy -0.787927 -1.630368) - (xy -0.80018 -1.617507) - (xy -0.843047 -1.589873) - (xy -0.889843 -1.584745) - (xy -0.934424 -1.602217) - (xy -0.949928 -1.615221) - (xy -0.96131 -1.627447) - (xy -0.969481 -1.64054) - (xy -0.974974 -1.658615) - (xy -0.97832 -1.685787) - (xy -0.980051 -1.72617) - (xy -0.980697 -1.783879) - (xy -0.980792 -1.854132) - (xy -0.980792 -2.062179) - (xy -1.119109 -2.062179) - (xy -1.119109 -1.458614) - (xy -1.04995 -1.458614) - (xy -1.008428 -1.460256) - (xy -0.987006 -1.466087) - (xy -0.980795 -1.477461) - (xy -0.980792 -1.477798) - (xy -0.97791 -1.488938) - (xy -0.965199 -1.487674) - (xy -0.939926 -1.475434) - (xy -0.882605 -1.457424) - (xy -0.817037 -1.455421) - (xy -0.754012 -1.469002) - ) - - (stroke (width 0.01) (type solid)) (fill solid) (layer "B.SilkS") (tstamp 4198214f-4a46-4be9-a84a-0b7bae5a3d42)) - (fp_poly - (pts - (xy 2.217226 -1.46388) - (xy 2.29008 -1.49483) - (xy 2.313027 -1.509895) - (xy 2.342354 -1.533048) - (xy 2.360764 -1.551253) - (xy 2.363961 -1.557183) - (xy 2.354935 -1.57034) - (xy 2.331837 -1.592667) - (xy 2.313344 -1.60825) - (xy 2.262728 -1.648926) - (xy 2.22276 -1.615295) - (xy 2.191874 -1.593584) - (xy 2.161759 -1.58609) - (xy 2.127292 -1.58792) - (xy 2.072561 -1.601528) - (xy 2.034886 -1.629772) - (xy 2.011991 -1.675433) - (xy 2.001597 -1.741289) - (xy 2.001595 -1.741331) - (xy 2.002494 -1.814939) - (xy 2.016463 -1.868946) - (xy 2.044328 -1.905716) - (xy 2.063325 -1.918168) - (xy 2.113776 -1.933673) - (xy 2.167663 -1.933683) - (xy 2.214546 -1.918638) - (xy 2.225644 -1.911287) - (xy 2.253476 -1.892511) - (xy 2.275236 -1.889434) - (xy 2.298704 -1.903409) - (xy 2.324649 -1.92851) - (xy 2.365716 -1.97088) - (xy 2.320121 -2.008464) - (xy 2.249674 -2.050882) - (xy 2.170233 -2.071785) - (xy 2.087215 -2.070272) - (xy 2.032694 -2.056411) - (xy 1.96897 -2.022135) - (xy 1.918005 -1.968212) - (xy 1.894851 -1.930149) - (xy 1.876099 -1.875536) - (xy 1.866715 -1.806369) - (xy 1.866643 -1.731407) - (xy 1.875824 -1.659409) - (xy 1.894199 -1.599137) - (xy 1.897093 -1.592958) - (xy 1.939952 -1.532351) - (xy 1.997979 -1.488224) - (xy 2.066591 -1.461493) - (xy 2.141201 -1.453073) - (xy 2.217226 -1.46388) - ) - - (stroke (width 0.01) (type solid)) (fill solid) (layer "B.SilkS") (tstamp 7623bd1a-4adc-4f76-af08-20516570781e)) - (fp_poly - (pts - (xy 0.610762 -1.466055) - (xy 0.674363 -1.500692) - (xy 0.724123 -1.555372) - (xy 0.747568 -1.599842) - (xy 0.757634 -1.639121) - (xy 0.764156 -1.695116) - (xy 0.766951 -1.759621) - (xy 0.765836 -1.824429) - (xy 0.760626 -1.881334) - (xy 0.754541 -1.911727) - (xy 0.734014 -1.953306) - (xy 0.698463 -1.997468) - (xy 0.655619 -2.036087) - (xy 0.613211 -2.061034) - (xy 0.612177 -2.06143) - (xy 0.559553 -2.072331) - (xy 0.497188 -2.072601) - (xy 0.437924 -2.062676) - (xy 0.41504 -2.054722) - (xy 0.356102 -2.0213) - (xy 0.31389 -1.977511) - (xy 0.286156 -1.919538) - (xy 0.270651 -1.843565) - (xy 0.267143 -1.803771) - (xy 0.26759 -1.753766) - (xy 0.402376 -1.753766) - (xy 0.406917 -1.826732) - (xy 0.419986 -1.882334) - (xy 0.440756 -1.917861) - (xy 0.455552 -1.92802) - (xy 0.493464 -1.935104) - (xy 0.538527 -1.933007) - (xy 0.577487 -1.922812) - (xy 0.587704 -1.917204) - (xy 0.614659 -1.884538) - (xy 0.632451 -1.834545) - (xy 0.640024 -1.773705) - (xy 0.636325 -1.708497) - (xy 0.628057 -1.669253) - (xy 0.60432 -1.623805) - (xy 0.566849 -1.595396) - (xy 0.52172 -1.585573) - (xy 0.475011 -1.595887) - (xy 0.439132 -1.621112) - (xy 0.420277 -1.641925) - (xy 0.409272 -1.662439) - (xy 0.404026 -1.690203) - (xy 0.402449 -1.732762) - (xy 0.402376 -1.753766) - (xy 0.26759 -1.753766) - (xy 0.268094 -1.69758) - (xy 0.285388 -1.610501) - (xy 0.319029 -1.54253) - (xy 0.369018 -1.493664) - (xy 0.435356 -1.463899) - (xy 0.449601 -1.460448) - (xy 0.53521 -1.452345) - (xy 0.610762 -1.466055) - ) - - (stroke (width 0.01) (type solid)) (fill solid) (layer "B.SilkS") (tstamp 23fde0b4-e5d2-48a8-9d3f-c7d3d0b72180)) - (fp_poly - (pts - (xy 0.281524 -2.404237) - (xy 0.331255 -2.407971) - (xy 0.461291 -2.797773) - (xy 0.481678 -2.728614) - (xy 0.493946 -2.685874) - (xy 0.510085 -2.628115) - (xy 0.527512 -2.564625) - (xy 0.536726 -2.53057) - (xy 0.571388 -2.401683) - (xy 0.714391 -2.401683) - (xy 0.671646 -2.536857) - (xy 0.650596 -2.603342) - (xy 0.625167 -2.683539) - (xy 0.59861 -2.767193) - (xy 0.574902 -2.841782) - (xy 0.520902 -3.011535) - (xy 0.462598 -3.015328) - (xy 0.404295 -3.019122) - (xy 0.372679 -2.914734) - (xy 0.353182 -2.849889) - (xy 0.331904 -2.7784) - (xy 0.313308 -2.715263) - (xy 0.312574 -2.71275) - (xy 0.298684 -2.669969) - (xy 0.286429 -2.640779) - (xy 0.277846 -2.629741) - (xy 0.276082 -2.631018) - (xy 0.269891 -2.64813) - (xy 0.258128 -2.684787) - (xy 0.242225 -2.736378) - (xy 0.223614 -2.798294) - (xy 0.213543 -2.832352) - (xy 0.159007 -3.017822) - (xy 0.043264 -3.017822) - (xy -0.049263 -2.725471) - (xy -0.075256 -2.643462) - (xy -0.098934 -2.568987) - (xy -0.11918 -2.505544) - (xy -0.134874 -2.456632) - (xy -0.144898 -2.425749) - (xy -0.147945 -2.416726) - (xy -0.145533 -2.407487) - (xy -0.126592 -2.403441) - (xy -0.087177 -2.403846) - (xy -0.081007 -2.404152) - (xy -0.007914 -2.407971) - (xy 0.039957 -2.58401) - (xy 0.057553 -2.648211) - (xy 0.073277 -2.704649) - (xy 0.085746 -2.748422) - (xy 0.093574 -2.77463) - (xy 0.09502 -2.778903) - (xy 0.101014 -2.77399) - (xy 0.113101 -2.748532) - (xy 0.129893 -2.705997) - (xy 0.150003 -2.64985) - (xy 0.167003 -2.59913) - (xy 0.231794 -2.400504) - (xy 0.281524 -2.404237) - ) - - (stroke (width 0.01) (type solid)) (fill solid) (layer "B.SilkS") (tstamp f49f66d0-a4ab-47bd-99cf-ad4af4e55685)) - (fp_poly - (pts - (xy -2.538261 -1.465148) - (xy -2.472479 -1.494231) - (xy -2.42254 -1.542793) - (xy -2.388374 -1.610908) - (xy -2.369907 -1.698651) - (xy -2.368583 -1.712351) - (xy -2.367546 -1.808939) - (xy -2.380993 -1.893602) - (xy -2.408108 -1.962221) - (xy -2.422627 -1.984294) - (xy -2.473201 -2.031011) - (xy -2.537609 -2.061268) - (xy -2.609666 -2.073824) - (xy -2.683185 -2.067439) - (xy -2.739072 -2.047772) - (xy -2.787132 -2.014629) - (xy -2.826412 -1.971175) - (xy -2.827092 -1.970158) - (xy -2.843044 -1.943338) - (xy -2.85341 -1.916368) - (xy -2.859688 -1.882332) - (xy -2.863373 -1.83431) - (xy -2.864997 -1.794931) - (xy -2.865672 -1.759219) - (xy -2.739955 -1.759219) - (xy -2.738726 -1.79477) - (xy -2.734266 -1.842094) - (xy -2.726397 -1.872465) - (xy -2.712207 -1.894072) - (xy -2.698917 -1.906694) - (xy -2.651802 -1.933122) - (xy -2.602505 -1.936653) - (xy -2.556593 -1.917639) - (xy -2.533638 -1.896331) - (xy -2.517096 -1.874859) - (xy -2.507421 -1.854313) - (xy -2.503174 -1.827574) - (xy -2.50292 -1.787523) - (xy -2.504228 -1.750638) - (xy -2.507043 -1.697947) - (xy -2.511505 -1.663772) - (xy -2.519548 -1.64148) - (xy -2.533103 -1.624442) - (xy -2.543845 -1.614703) - (xy -2.588777 -1.589123) - (xy -2.637249 -1.587847) - (xy -2.677894 -1.602999) - (xy -2.712567 -1.634642) - (xy -2.733224 -1.68662) - (xy -2.739955 -1.759219) - (xy -2.865672 -1.759219) - (xy -2.866479 -1.716621) - (xy -2.863948 -1.658056) - (xy -2.856362 -1.614007) - (xy -2.842681 -1.579248) - (xy -2.821865 -1.548551) - (xy -2.814147 -1.539436) - (xy -2.765889 -1.494021) - (xy -2.714128 -1.467493) - (xy -2.650828 -1.456379) - (xy -2.619961 -1.455471) - (xy -2.538261 -1.465148) - ) - - (stroke (width 0.01) (type solid)) (fill solid) (layer "B.SilkS") (tstamp 33c65409-88a8-4e6d-81e8-8ba8191da123)) - (fp_poly - (pts - (xy -0.201188 -3.017822) - (xy -0.270346 -3.017822) - (xy -0.310488 -3.016645) - (xy -0.331394 -3.011772) - (xy -0.338922 -3.001186) - (xy -0.339505 -2.994029) - (xy -0.340774 -2.979676) - (xy -0.348779 -2.976923) - (xy -0.369815 -2.985771) - (xy -0.386173 -2.994029) - (xy -0.448977 -3.013597) - (xy -0.517248 -3.014729) - (xy -0.572752 -3.000135) - (xy -0.624438 -2.964877) - (xy -0.663838 -2.912835) - (xy -0.685413 -2.85145) - (xy -0.685962 -2.848018) - (xy -0.689167 -2.810571) - (xy -0.690761 -2.756813) - (xy -0.690633 -2.716155) - (xy -0.553279 -2.716155) - (xy -0.550097 -2.770194) - (xy -0.542859 -2.814735) - (xy -0.53306 -2.839888) - (xy -0.495989 -2.87426) - (xy -0.451974 -2.886582) - (xy -0.406584 -2.876618) - (xy -0.367797 -2.846895) - (xy -0.353108 -2.826905) - (xy -0.344519 -2.80305) - (xy -0.340496 -2.76823) - (xy -0.339505 -2.71593) - (xy -0.341278 -2.664139) - (xy -0.345963 -2.618634) - (xy -0.352603 -2.588181) - (xy -0.35371 -2.585452) - (xy -0.380491 -2.553) - (xy -0.419579 -2.535183) - (xy -0.463315 -2.532306) - (xy -0.504038 -2.544674) - (xy -0.534087 -2.572593) - (xy -0.537204 -2.578148) - (xy -0.546961 -2.612022) - (xy -0.552277 -2.660728) - (xy -0.553279 -2.716155) - (xy -0.690633 -2.716155) - (xy -0.690568 -2.69554) - (xy -0.689664 -2.662563) - (xy -0.683514 -2.580981) - (xy -0.670733 -2.51973) - (xy -0.649471 -2.474449) - (xy -0.617878 -2.440779) - (xy -0.587207 -2.421014) - (xy -0.544354 -2.40712) - (xy -0.491056 -2.402354) - (xy -0.43648 -2.406236) - (xy -0.389792 -2.418282) - (xy -0.365124 -2.432693) - (xy -0.339505 -2.455878) - (xy -0.339505 -2.162773) - (xy -0.201188 -2.162773) - (xy -0.201188 -3.017822) - ) - - (stroke (width 0.01) (type solid)) (fill solid) (layer "B.SilkS") (tstamp 84d50e58-a234-480a-bebc-fefd687ceb2c)) - (fp_poly - (pts - (xy 2.677898 -1.456457) - (xy 2.710096 -1.464279) - (xy 2.771825 -1.492921) - (xy 2.82461 -1.536667) - (xy 2.861141 -1.589117) - (xy 2.86616 -1.600893) - (xy 2.873045 -1.63174) - (xy 2.877864 -1.677371) - (xy 2.879505 -1.723492) - (xy 2.879505 -1.810693) - (xy 2.697178 -1.810693) - (xy 2.621979 -1.810978) - (xy 2.569003 -1.812704) - (xy 2.535325 -1.817181) - (xy 2.51802 -1.82572) - (xy 2.514163 -1.83963) - (xy 2.520829 -1.860222) - (xy 2.53277 -1.884315) - (xy 2.56608 -1.924525) - (xy 2.612368 -1.944558) - (xy 2.668944 -1.943905) - (xy 2.733031 -1.922101) - (xy 2.788417 -1.895193) - (xy 2.834375 -1.931532) - (xy 2.880333 -1.967872) - (xy 2.837096 -2.007819) - (xy 2.779374 -2.045563) - (xy 2.708386 -2.06832) - (xy 2.632029 -2.074688) - (xy 2.558199 -2.063268) - (xy 2.546287 -2.059393) - (xy 2.481399 -2.025506) - (xy 2.43313 -1.974986) - (xy 2.400465 -1.906325) - (xy 2.382385 -1.818014) - (xy 2.382175 -1.816121) - (xy 2.380556 -1.719878) - (xy 2.3871 -1.685542) - (xy 2.514852 -1.685542) - (xy 2.526584 -1.690822) - (xy 2.558438 -1.694867) - (xy 2.605397 -1.697176) - (xy 2.635154 -1.697525) - (xy 2.690648 -1.697306) - (xy 2.725346 -1.695916) - (xy 2.743601 -1.692251) - (xy 2.749766 -1.68521) - (xy 2.748195 -1.67369) - (xy 2.746878 -1.669233) - (xy 2.724382 -1.627355) - (xy 2.689003 -1.593604) - (xy 2.65778 -1.578773) - (xy 2.616301 -1.579668) - (xy 2.574269 -1.598164) - (xy 2.539012 -1.628786) - (xy 2.517854 -1.666062) - (xy 2.514852 -1.685542) - (xy 2.3871 -1.685542) - (xy 2.39669 -1.635229) - (xy 2.428698 -1.564191) - (xy 2.474701 -1.508779) - (xy 2.532821 -1.471009) - (xy 2.60118 -1.452896) - (xy 2.677898 -1.456457) - ) - - (stroke (width 0.01) (type solid)) (fill solid) (layer "B.SilkS") (tstamp cf1d51bd-fd8f-484b-8927-8eac8281000f)) - (fp_poly - (pts - (xy 0.014017 -1.456452) - (xy 0.061634 -1.465482) - (xy 0.111034 -1.48437) - (xy 0.116312 -1.486777) - (xy 0.153774 -1.506476) - (xy 0.179717 -1.524781) - (xy 0.188103 -1.536508) - (xy 0.180117 -1.555632) - (xy 0.16072 -1.58385) - (xy 0.15211 -1.594384) - (xy 0.116628 -1.635847) - (xy 0.070885 -1.608858) - (xy 0.02735 -1.590878) - (xy -0.02295 -1.581267) - (xy -0.071188 -1.58066) - (xy -0.108533 -1.589691) - (xy -0.117495 -1.595327) - (xy -0.134563 -1.621171) - (xy -0.136637 -1.650941) - (xy -0.123866 -1.674197) - (xy -0.116312 -1.678708) - (xy -0.093675 -1.684309) - (xy -0.053885 -1.690892) - (xy -0.004834 -1.697183) - (xy 0.004215 -1.69817) - (xy 0.082996 -1.711798) - (xy 0.140136 -1.734946) - (xy 0.17803 -1.769752) - (xy 0.199079 -1.818354) - (xy 0.205635 -1.877718) - (xy 0.196577 -1.945198) - (xy 0.167164 -1.998188) - (xy 0.117278 -2.036783) - (xy 0.0468 -2.061081) - (xy -0.031435 -2.070667) - (xy -0.095234 -2.070552) - (xy -0.146984 -2.061845) - (xy -0.182327 -2.049825) - (xy -0.226983 -2.02888) - (xy -0.268253 -2.004574) - (xy -0.282921 -1.993876) - (xy -0.320643 -1.963084) - (xy -0.275148 -1.917049) - (xy -0.229653 -1.871013) - (xy -0.177928 -1.905243) - (xy -0.126048 -1.930952) - (xy -0.070649 -1.944399) - (xy -0.017395 -1.945818) - (xy 0.028049 -1.935443) - (xy 0.060016 -1.913507) - (xy 0.070338 -1.894998) - (xy 0.068789 -1.865314) - (xy 0.04314 -1.842615) - (xy -0.00654 -1.82694) - (xy -0.060969 -1.819695) - (xy -0.144736 -1.805873) - (xy -0.206967 -1.779796) - (xy -0.248493 -1.740699) - (xy -0.270147 -1.68782) - (xy -0.273147 -1.625126) - (xy -0.258329 -1.559642) - (xy -0.224546 -1.510144) - (xy -0.171495 -1.476408) - (xy -0.098874 -1.458207) - (xy -0.045072 -1.454639) - (xy 0.014017 -1.456452) - ) - - (stroke (width 0.01) (type solid)) (fill solid) (layer "B.SilkS") (tstamp 7ff96606-3f84-4385-acf0-c1c53d2c0571)) - (fp_poly - (pts - (xy 2.032581 -2.40497) - (xy 2.092685 -2.420597) - (xy 2.143021 -2.452848) - (xy 2.167393 -2.47694) - (xy 2.207345 -2.533895) - (xy 2.230242 -2.599965) - (xy 2.238108 -2.681182) - (xy 2.238148 -2.687748) - (xy 2.238218 -2.753763) - (xy 1.858264 -2.753763) - (xy 1.866363 -2.788342) - (xy 1.880987 -2.819659) - (xy 1.906581 -2.852291) - (xy 1.911935 -2.8575) - (xy 1.957943 -2.885694) - (xy 2.01041 -2.890475) - (xy 2.070803 -2.871926) - (xy 2.08104 -2.866931) - (xy 2.112439 -2.851745) - (xy 2.13347 -2.843094) - (xy 2.137139 -2.842293) - (xy 2.149948 -2.850063) - (xy 2.174378 -2.869072) - (xy 2.186779 -2.87946) - (xy 2.212476 -2.903321) - (xy 2.220915 -2.919077) - (xy 2.215058 -2.933571) - (xy 2.211928 -2.937534) - (xy 2.190725 -2.954879) - (xy 2.155738 -2.975959) - (xy 2.131337 -2.988265) - (xy 2.062072 -3.009946) - (xy 1.985388 -3.016971) - (xy 1.912765 -3.008647) - (xy 1.892426 -3.002686) - (xy 1.829476 -2.968952) - (xy 1.782815 -2.917045) - (xy 1.752173 -2.846459) - (xy 1.737282 -2.756692) - (xy 1.735647 -2.709753) - (xy 1.740421 -2.641413) - (xy 1.86099 -2.641413) - (xy 1.872652 -2.646465) - (xy 1.903998 -2.650429) - (xy 1.949571 -2.652768) - (xy 1.980446 -2.653169) - (xy 2.035981 -2.652783) - (xy 2.071033 -2.650975) - (xy 2.090262 -2.646773) - (xy 2.09833 -2.639203) - (xy 2.099901 -2.628218) - (xy 2.089121 -2.594381) - (xy 2.06198 -2.56094) - (xy 2.026277 -2.535272) - (xy 1.99056 -2.524772) - (xy 1.942048 -2.534086) - (xy 1.900053 -2.561013) - (xy 1.870936 -2.599827) - (xy 1.86099 -2.641413) - (xy 1.740421 -2.641413) - (xy 1.742599 -2.610236) - (xy 1.764055 -2.530949) - (xy 1.80047 -2.471263) - (xy 1.852297 -2.430549) - (xy 1.91999 -2.408179) - (xy 1.956662 -2.403871) - (xy 2.032581 -2.40497) - ) - - (stroke (width 0.01) (type solid)) (fill solid) (layer "B.SilkS") (tstamp 0307652e-709d-4481-a6b7-dc0b7ae02837)) - (fp_poly - (pts - (xy -1.356699 -1.472614) - (xy -1.344168 -1.478514) - (xy -1.300799 -1.510283) - (xy -1.25979 -1.556646) - (xy -1.229168 -1.607696) - (xy -1.220459 -1.631166) - (xy -1.212512 -1.673091) - (xy -1.207774 -1.723757) - (xy -1.207199 -1.744679) - (xy -1.207129 -1.810693) - (xy -1.587083 -1.810693) - (xy -1.578983 -1.845273) - (xy -1.559104 -1.88617) - (xy -1.524347 -1.921514) - (xy -1.482998 -1.944282) - (xy -1.456649 -1.94901) - (xy -1.420916 -1.943273) - (xy -1.378282 -1.928882) - (xy -1.363799 -1.922262) - (xy -1.31024 -1.895513) - (xy -1.264533 -1.930376) - (xy -1.238158 -1.953955) - (xy -1.224124 -1.973417) - (xy -1.223414 -1.979129) - (xy -1.235951 -1.992973) - (xy -1.263428 -2.014012) - (xy -1.288366 -2.030425) - (xy -1.355664 -2.05993) - (xy -1.43111 -2.073284) - (xy -1.505888 -2.069812) - (xy -1.565495 -2.051663) - (xy -1.626941 -2.012784) - (xy -1.670608 -1.961595) - (xy -1.697926 -1.895367) - (xy -1.710322 -1.811371) - (xy -1.711421 -1.772936) - (xy -1.707022 -1.684861) - (xy -1.706482 -1.682299) - (xy -1.580582 -1.682299) - (xy -1.577115 -1.690558) - (xy -1.562863 -1.695113) - (xy -1.53347 -1.697065) - (xy -1.484575 -1.697517) - (xy -1.465748 -1.697525) - (xy -1.408467 -1.696843) - (xy -1.372141 -1.694364) - (xy -1.352604 -1.689443) - (xy -1.34569 -1.681434) - (xy -1.345445 -1.678862) - (xy -1.353336 -1.658423) - (xy -1.373085 -1.629789) - (xy -1.381575 -1.619763) - (xy -1.413094 -1.591408) - (xy -1.445949 -1.580259) - (xy -1.463651 -1.579327) - (xy -1.511539 -1.590981) - (xy -1.551699 -1.622285) - (xy -1.577173 -1.667752) - (xy -1.577625 -1.669233) - (xy -1.580582 -1.682299) - (xy -1.706482 -1.682299) - (xy -1.692392 -1.61551) - (xy -1.666038 -1.560025) - (xy -1.633807 -1.520639) - (xy -1.574217 -1.477931) - (xy -1.504168 -1.455109) - (xy -1.429661 -1.453046) - (xy -1.356699 -1.472614) - ) - - (stroke (width 0.01) (type solid)) (fill solid) (layer "B.SilkS") (tstamp 519021e3-30dd-448a-8d47-64e9d44dbce7)) - (fp_poly - (pts - (xy 1.038411 -2.405417) - (xy 1.091411 -2.41829) - (xy 1.106731 -2.42511) - (xy 1.136428 -2.442974) - (xy 1.15922 -2.463093) - (xy 1.176083 -2.488962) - (xy 1.187998 -2.524073) - (xy 1.195942 -2.57192) - (xy 1.200894 -2.635996) - (xy 1.203831 -2.719794) - (xy 1.204947 -2.775768) - (xy 1.209052 -3.017822) - (xy 1.138932 -3.017822) - (xy 1.096393 -3.016038) - (xy 1.074476 -3.009942) - (xy 1.068812 -2.999706) - (xy 1.065821 -2.988637) - (xy 1.052451 -2.990754) - (xy 1.034233 -2.999629) - (xy 0.988624 -3.013233) - (xy 0.930007 -3.016899) - (xy 0.868354 -3.010903) - (xy 0.813638 -2.995521) - (xy 0.80873 -2.993386) - (xy 0.758723 -2.958255) - (xy 0.725756 -2.909419) - (xy 0.710587 -2.852333) - (xy 0.711746 -2.831824) - (xy 0.835508 -2.831824) - (xy 0.846413 -2.859425) - (xy 0.878745 -2.879204) - (xy 0.93091 -2.889819) - (xy 0.958787 -2.891228) - (xy 1.005247 -2.88762) - (xy 1.036129 -2.873597) - (xy 1.043664 -2.866931) - (xy 1.064076 -2.830666) - (xy 1.068812 -2.797773) - (xy 1.068812 -2.753763) - (xy 1.007513 -2.753763) - (xy 0.936256 -2.757395) - (xy 0.886276 -2.768818) - (xy 0.854696 -2.788824) - (xy 0.847626 -2.797743) - (xy 0.835508 -2.831824) - (xy 0.711746 -2.831824) - (xy 0.713971 -2.792456) - (xy 0.736663 -2.735244) - (xy 0.767624 -2.69658) - (xy 0.786376 -2.679864) - (xy 0.804733 -2.668878) - (xy 0.828619 -2.66218) - (xy 0.863957 -2.658326) - (xy 0.916669 -2.655873) - (xy 0.937577 -2.655168) - (xy 1.068812 -2.650879) - (xy 1.06862 -2.611158) - (xy 1.063537 -2.569405) - (xy 1.045162 -2.544158) - (xy 1.008039 -2.52803) - (xy 1.007043 -2.527742) - (xy 0.95441 -2.5214) - (xy 0.902906 -2.529684) - (xy 0.86463 -2.549827) - (xy 0.849272 -2.559773) - (xy 0.83273 -2.558397) - (xy 0.807275 -2.543987) - (xy 0.792328 -2.533817) - (xy 0.763091 -2.512088) - (xy 0.74498 -2.4958) - (xy 0.742074 -2.491137) - (xy 0.75404 -2.467005) - (xy 0.789396 -2.438185) - (xy 0.804753 -2.428461) - (xy 0.848901 -2.411714) - (xy 0.908398 -2.402227) - (xy 0.974487 -2.400095) - (xy 1.038411 -2.405417) - ) - - (stroke (width 0.01) (type solid)) (fill solid) (layer "B.SilkS") (tstamp 674148db-5643-491b-b1c7-35a41eef1a55)) - (fp_poly - (pts - (xy -1.38421 -2.406555) - (xy -1.325055 -2.422339) - (xy -1.280023 -2.450948) - (xy -1.248246 -2.488419) - (xy -1.238366 -2.504411) - (xy -1.231073 -2.521163) - (xy -1.225974 -2.542592) - (xy -1.222679 -2.572616) - (xy -1.220797 -2.615154) - (xy -1.219937 -2.674122) - (xy -1.219707 -2.75344) - (xy -1.219703 -2.774484) - (xy -1.219703 -3.017822) - (xy -1.280059 -3.017822) - (xy -1.318557 -3.015126) - (xy -1.347023 -3.008295) - (xy -1.354155 -3.004083) - (xy -1.373652 -2.996813) - (xy -1.393566 -3.004083) - (xy -1.426353 -3.01316) - (xy -1.473978 -3.016813) - (xy -1.526764 -3.015228) - (xy -1.575036 -3.008589) - (xy -1.603218 -3.000072) - (xy -1.657753 -2.965063) - (xy -1.691835 -2.916479) - (xy -1.707157 -2.851882) - (xy -1.707299 -2.850223) - (xy -1.705955 -2.821566) - (xy -1.584356 -2.821566) - (xy -1.573726 -2.854161) - (xy -1.55641 -2.872505) - (xy -1.521652 -2.886379) - (xy -1.475773 -2.891917) - (xy -1.428988 -2.889191) - (xy -1.391514 -2.878274) - (xy -1.381015 -2.871269) - (xy -1.362668 -2.838904) - (xy -1.35802 -2.802111) - (xy -1.35802 -2.753763) - (xy -1.427582 -2.753763) - (xy -1.493667 -2.75885) - (xy -1.543764 -2.773263) - (xy -1.574929 -2.795729) - (xy -1.584356 -2.821566) - (xy -1.705955 -2.821566) - (xy -1.703987 -2.779647) - (xy -1.68071 -2.723845) - (xy -1.636948 -2.681647) - (xy -1.630899 -2.677808) - (xy -1.604907 -2.665309) - (xy -1.572735 -2.65774) - (xy -1.52776 -2.654061) - (xy -1.474331 -2.653216) - (xy -1.35802 -2.653169) - (xy -1.35802 -2.604411) - (xy -1.362953 -2.566581) - (xy -1.375543 -2.541236) - (xy -1.377017 -2.539887) - (xy -1.405034 -2.5288) - (xy -1.447326 -2.524503) - (xy -1.494064 -2.526615) - (xy -1.535418 -2.534756) - (xy -1.559957 -2.546965) - (xy -1.573253 -2.556746) - (xy -1.587294 -2.558613) - (xy -1.606671 -2.5506) - (xy -1.635976 -2.530739) - (xy -1.679803 -2.497063) - (xy -1.683825 -2.493909) - (xy -1.681764 -2.482236) - (xy -1.664568 -2.462822) - (xy -1.638433 -2.441248) - (xy -1.609552 -2.423096) - (xy -1.600478 -2.418809) - (xy -1.56738 -2.410256) - (xy -1.51888 -2.404155) - (xy -1.464695 -2.401708) - (xy -1.462161 -2.401703) - (xy -1.38421 -2.406555) - ) - - (stroke (width 0.01) (type solid)) (fill solid) (layer "B.SilkS") (tstamp 3b13a509-4760-4857-85bf-9228b40dea6b)) - (fp_poly - (pts - (xy -1.908759 -1.469184) - (xy -1.882247 -1.482282) - (xy -1.849553 -1.505106) - (xy -1.825725 -1.529996) - (xy -1.809406 -1.561249) - (xy -1.79924 -1.603166) - (xy -1.793872 -1.660044) - (xy -1.791944 -1.736184) - (xy -1.791831 -1.768917) - (xy -1.792161 -1.840656) - (xy -1.793527 -1.891927) - (xy -1.7965 -1.927404) - (xy -1.801649 -1.951763) - (xy -1.809543 -1.96968) - (xy -1.817757 -1.981902) - (xy -1.870187 -2.033905) - (xy -1.93193 -2.065184) - (xy -1.998536 -2.074592) - (xy -2.065558 -2.06098) - (xy -2.086792 -2.051354) - (xy -2.137624 -2.024859) - (xy -2.137624 -2.440052) - (xy -2.100525 -2.420868) - (xy -2.051643 -2.406025) - (xy -1.991561 -2.402222) - (xy -1.931564 -2.409243) - (xy -1.886256 -2.425013) - (xy -1.848675 -2.455047) - (xy -1.816564 -2.498024) - (xy -1.81415 -2.502436) - (xy -1.803967 -2.523221) - (xy -1.79653 -2.54417) - (xy -1.791411 -2.569548) - (xy -1.788181 -2.603618) - (xy -1.786413 -2.650641) - (xy -1.785677 -2.714882) - (xy -1.785544 -2.787176) - (xy -1.785544 -3.017822) - (xy -1.923861 -3.017822) - (xy -1.923861 -2.592533) - (xy -1.962549 -2.559979) - (xy -2.002738 -2.53394) - (xy -2.040797 -2.529205) - (xy -2.079066 -2.541389) - (xy -2.099462 -2.55332) - (xy -2.114642 -2.570313) - (xy -2.125438 -2.595995) - (xy -2.132683 -2.633991) - (xy -2.137208 -2.687926) - (xy -2.139844 -2.761425) - (xy -2.140772 -2.810347) - (xy -2.143911 -3.011535) - (xy -2.209926 -3.015336) - (xy -2.27594 -3.019136) - (xy -2.27594 -1.77065) - (xy -2.137624 -1.77065) - (xy -2.134097 -1.840254) - (xy -2.122215 -1.888569) - (xy -2.10002 -1.918631) - (xy -2.065559 -1.933471) - (xy -2.030742 -1.936436) - (xy -1.991329 -1.933028) - (xy -1.965171 -1.919617) - (xy -1.948814 -1.901896) - (xy -1.935937 -1.882835) - (xy -1.928272 -1.861601) - (xy -1.924861 -1.831849) - (xy -1.924749 -1.787236) - (xy -1.925897 -1.74988) - (xy -1.928532 -1.693604) - (xy -1.932456 -1.656658) - (xy -1.939063 -1.633223) - (xy -1.949749 -1.61748) - (xy -1.959833 -1.60838) - (xy -2.00197 -1.588537) - (xy -2.05184 -1.585332) - (xy -2.080476 -1.592168) - (xy -2.108828 -1.616464) - (xy -2.127609 -1.663728) - (xy -2.136712 -1.733624) - (xy -2.137624 -1.77065) - (xy -2.27594 -1.77065) - (xy -2.27594 -1.458614) - (xy -2.206782 -1.458614) - (xy -2.16526 -1.460256) - (xy -2.143838 -1.466087) - (xy -2.137626 -1.477461) - (xy -2.137624 -1.477798) - (xy -2.134742 -1.488938) - (xy -2.12203 -1.487673) - (xy -2.096757 -1.475433) - (xy -2.037869 -1.456707) - (xy -1.971615 -1.454739) - (xy -1.908759 -1.469184) - ) - - (stroke (width 0.01) (type solid)) (fill solid) (layer "B.SilkS") (tstamp 13097eed-2b6a-4241-afee-28cfdabd9cda)) - (fp_poly - (pts - (xy 0.376964 2.709982) - (xy 0.433812 2.40843) - (xy 0.853338 2.235488) - (xy 1.104984 2.406605) - (xy 1.175458 2.45425) - (xy 1.239163 2.49679) - (xy 1.293126 2.532285) - (xy 1.334373 2.55879) - (xy 1.359934 2.574364) - (xy 1.366895 2.577722) - (xy 1.379435 2.569086) - (xy 1.406231 2.545208) - (xy 1.44428 2.509141) - (xy 1.490579 2.463933) - (xy 1.542123 2.412636) - (xy 1.595909 2.358299) - (xy 1.648935 2.303972) - (xy 1.698195 2.252705) - (xy 1.740687 2.207549) - (xy 1.773407 2.171554) - (xy 1.793351 2.14777) - (xy 1.798119 2.13981) - (xy 1.791257 2.125135) - (xy 1.77202 2.092986) - (xy 1.74243 2.046508) - (xy 1.70451 1.988844) - (xy 1.660282 1.92314) - (xy 1.634654 1.885664) - (xy 1.587941 1.817232) - (xy 1.546432 1.75548) - (xy 1.51214 1.703481) - (xy 1.48708 1.664308) - (xy 1.473264 1.641035) - (xy 1.471188 1.636145) - (xy 1.475895 1.622245) - (xy 1.488723 1.58985) - (xy 1.507738 1.543515) - (xy 1.531003 1.487794) - (xy 1.556584 1.427242) - (xy 1.582545 1.366414) - (xy 1.60695 1.309864) - (xy 1.627863 1.262148) - (xy 1.643349 1.227819) - (xy 1.651472 1.211432) - (xy 1.651952 1.210788) - (xy 1.664707 1.207659) - (xy 1.698677 1.200679) - (xy 1.75034 1.190533) - (xy 1.816176 1.177908) - (xy 1.892664 1.163491) - (xy 1.93729 1.155177) - (xy 2.019021 1.139616) - (xy 2.092843 1.124808) - (xy 2.155021 1.111564) - (xy 2.201822 1.100695) - (xy 2.229509 1.093011) - (xy 2.235074 1.090573) - (xy 2.240526 1.07407) - (xy 2.244924 1.0368) - (xy 2.248272 0.98312) - (xy 2.250574 0.917388) - (xy 2.251832 0.843963) - (xy 2.252048 0.767204) - (xy 2.251227 0.691468) - (xy 2.249371 0.621114) - (xy 2.246482 0.5605) - (xy 2.242565 0.513984) - (xy 2.237622 0.485925) - (xy 2.234657 0.480084) - (xy 2.216934 0.473083) - (xy 2.179381 0.463073) - (xy 2.126964 0.451231) - (xy 2.064652 0.438733) - (xy 2.0429 0.43469) - (xy 1.938024 0.41548) - (xy 1.85518 0.400009) - (xy 1.79163 0.387663) - (xy 1.744637 0.377827) - (xy 1.711463 0.369886) - (xy 1.689371 0.363224) - (xy 1.675624 0.357227) - (xy 1.667484 0.351281) - (xy 1.666345 0.350106) - (xy 1.654977 0.331174) - (xy 1.637635 0.294331) - (xy 1.61605 0.244087) - (xy 1.591954 0.184954) - (xy 1.567079 0.121444) - (xy 1.543157 0.058068) - (xy 1.521919 -0.000662) - (xy 1.505097 -0.050235) - (xy 1.494422 -0.086139) - (xy 1.491627 -0.103862) - (xy 1.49186 -0.104483) - (xy 1.501331 -0.11897) - (xy 1.522818 -0.150844) - (xy 1.554063 -0.196789) - (xy 1.592807 -0.253485) - (xy 1.636793 -0.317617) - (xy 1.649319 -0.335842) - (xy 1.693984 -0.401914) - (xy 1.733288 -0.4622) - (xy 1.765088 -0.513235) - (xy 1.787245 -0.55156) - (xy 1.797617 -0.573711) - (xy 1.798119 -0.576432) - (xy 1.789405 -0.590736) - (xy 1.765325 -0.619072) - (xy 1.728976 -0.658396) - (xy 1.683453 -0.705661) - (xy 1.631852 -0.757823) - (xy 1.577267 -0.811835) - (xy 1.522794 -0.864653) - (xy 1.471529 -0.913231) - (xy 1.426567 -0.954523) - (xy 1.391004 -0.985485) - (xy 1.367935 -1.00307) - (xy 1.361554 -1.005941) - (xy 1.346699 -0.999178) - (xy 1.316286 -0.980939) - (xy 1.275268 -0.954297) - (xy 1.243709 -0.932852) - (xy 1.186525 -0.893503) - (xy 1.118806 -0.847171) - (xy 1.05088 -0.800913) - (xy 1.014361 -0.776155) - (xy 0.890752 -0.692547) - (xy 0.786991 -0.74865) - (xy 0.73972 -0.773228) - (xy 0.699523 -0.792331) - (xy 0.672326 -0.803227) - (xy 0.665402 -0.804743) - (xy 0.657077 -0.793549) - (xy 0.640654 -0.761917) - (xy 0.617357 -0.712765) - (xy 0.588414 -0.64901) - (xy 0.55505 -0.573571) - (xy 0.518491 -0.489364) - (xy 0.479964 -0.399308) - (xy 0.440694 -0.306321) - (xy 0.401908 -0.21332) - (xy 0.36483 -0.123223) - (xy 0.330689 -0.038948) - (xy 0.300708 0.036587) - (xy 0.276116 0.100466) - (xy 0.258136 0.149769) - (xy 0.247997 0.181579) - (xy 0.246366 0.192504) - (xy 0.259291 0.206439) - (xy 0.287589 0.22906) - (xy 0.325346 0.255667) - (xy 0.328515 0.257772) - (xy 0.4261 0.335886) - (xy 0.504786 0.427018) - (xy 0.563891 0.528255) - (xy 0.602732 0.636682) - (xy 0.620628 0.749386) - (xy 0.616897 0.863452) - (xy 0.590857 0.975966) - (xy 0.541825 1.084015) - (xy 0.5274 1.107655) - (xy 0.452369 1.203113) - (xy 0.36373 1.279768) - (xy 0.264549 1.33722) - (xy 0.157895 1.375071) - (xy 0.046836 1.392922) - (xy -0.065561 1.390375) - (xy -0.176227 1.36703) - (xy -0.282094 1.32249) - (xy -0.380095 1.256355) - (xy -0.41041 1.229513) - (xy -0.487562 1.145488) - (xy -0.543782 1.057034) - (xy -0.582347 0.957885) - (xy -0.603826 0.859697) - (xy -0.609128 0.749303) - (xy -0.591448 0.63836) - (xy -0.552581 0.530619) - (xy -0.494323 0.429831) - (xy -0.418469 0.339744) - (xy -0.326817 0.264108) - (xy -0.314772 0.256136) - (xy -0.276611 0.230026) - (xy -0.247601 0.207405) - (xy -0.233732 0.192961) - (xy -0.233531 0.192504) - (xy -0.236508 0.176879) - (xy -0.248311 0.141418) - (xy -0.267714 0.089038) - (xy -0.293488 0.022655) - (xy -0.324409 -0.054814) - (xy -0.359249 -0.14045) - (xy -0.396783 -0.231337) - (xy -0.435783 -0.324559) - (xy -0.475023 -0.417197) - (xy -0.513276 -0.506335) - (xy -0.549317 -0.589055) - (xy -0.581917 -0.662441) - (xy -0.609852 -0.723575) - (xy -0.631895 -0.769541) - (xy -0.646818 -0.797421) - (xy -0.652828 -0.804743) - (xy -0.671191 -0.799041) - (xy -0.705552 -0.783749) - (xy -0.749984 -0.761599) - (xy -0.774417 -0.74865) - (xy -0.878178 -0.692547) - (xy -1.001787 -0.776155) - (xy -1.064886 -0.818987) - (xy -1.13397 -0.866122) - (xy -1.198707 -0.910503) - (xy -1.231134 -0.932852) - (xy -1.276741 -0.963477) - (xy -1.31536 -0.987747) - (xy -1.341952 -1.002587) - (xy -1.35059 -1.005724) - (xy -1.363161 -0.997261) - (xy -1.390984 -0.973636) - (xy -1.431361 -0.937302) - (xy -1.481595 -0.890711) - (xy -1.538988 -0.836317) - (xy -1.575286 -0.801392) - (xy -1.63879 -0.738996) - (xy -1.693673 -0.683188) - (xy -1.737714 -0.636354) - (xy -1.768695 -0.600882) - (xy -1.784398 -0.579161) - (xy -1.785905 -0.574752) - (xy -1.778914 -0.557985) - (xy -1.759594 -0.524082) - (xy -1.730091 -0.476476) - (xy -1.692545 -0.418599) - (xy -1.6491 -0.353884) - (xy -1.636745 -0.335842) - (xy -1.591727 -0.270267) - (xy -1.55134 -0.211228) - (xy -1.51784 -0.162042) - (xy -1.493486 -0.126028) - (xy -1.480536 -0.106502) - (xy -1.479285 -0.104483) - (xy -1.481156 -0.088922) - (xy -1.491087 -0.054709) - (xy -1.507347 -0.006355) - (xy -1.528205 0.051629) - (xy -1.551927 0.11473) - (xy -1.576784 0.178437) - (xy -1.601042 0.238239) - (xy -1.622971 0.289624) - (xy -1.640838 0.328081) - (xy -1.652913 0.349098) - (xy -1.653771 0.350106) - (xy -1.661154 0.356112) - (xy -1.673625 0.362052) - (xy -1.69392 0.36854) - (xy -1.724778 0.376191) - (xy -1.768934 0.38562) - (xy -1.829126 0.397441) - (xy -1.908093 0.412271) - (xy -2.00857 0.430723) - (xy -2.030325 0.43469) - (xy -2.094802 0.447147) - (xy -2.151011 0.459334) - (xy -2.193987 0.470074) - (xy -2.21876 0.478191) - (xy -2.222082 0.480084) - (xy -2.227556 0.496862) - (xy -2.232006 0.534355) - (xy -2.235428 0.588206) - (xy -2.237819 0.654056) - (xy -2.239177 0.727547) - (xy -2.239499 0.80432) - (xy -2.238781 0.880017) - (xy -2.237021 0.95028) - (xy -2.234216 1.01075) - (xy -2.230362 1.05707) - (xy -2.225457 1.084881) - (xy -2.2225 1.090573) - (xy -2.206037 1.096314) - (xy -2.168551 1.105655) - (xy -2.113775 1.117785) - (xy -2.045445 1.131893) - (xy -1.967294 1.14717) - (xy -1.924716 1.155177) - (xy -1.843929 1.170279) - (xy -1.771887 1.18396) - (xy -1.712111 1.195533) - (xy -1.668121 1.204313) - (xy -1.643439 1.209613) - (xy -1.639377 1.210788) - (xy -1.632511 1.224035) - (xy -1.617998 1.255943) - (xy -1.597771 1.301953) - (xy -1.573766 1.357508) - (xy -1.547918 1.418047) - (xy -1.52216 1.479014) - (xy -1.498427 1.535849) - (xy -1.478654 1.583994) - (xy -1.464776 1.61889) - (xy -1.458726 1.635979) - (xy -1.458614 1.636726) - (xy -1.465472 1.650207) - (xy -1.484698 1.68123) - (xy -1.514272 1.726711) - (xy -1.552173 1.783568) - (xy -1.59638 1.848717) - (xy -1.622079 1.886138) - (xy -1.668907 1.954753) - (xy -1.710499 2.017048) - (xy -1.744825 2.069871) - (xy -1.769857 2.110073) - (xy -1.783565 2.1345) - (xy -1.785544 2.139976) - (xy -1.777034 2.152722) - (xy -1.753507 2.179937) - (xy -1.717968 2.218572) - (xy -1.673423 2.265577) - (xy -1.622877 2.317905) - (xy -1.569336 2.372505) - (xy -1.515805 2.42633) - (xy -1.465289 2.47633) - (xy -1.420794 2.519457) - (xy -1.385325 2.552661) - (xy -1.361887 2.572894) - (xy -1.354046 2.577722) - (xy -1.34128 2.570933) - (xy -1.310744 2.551858) - (xy -1.26541 2.522439) - (xy -1.208244 2.484619) - (xy -1.142216 2.440339) - (xy -1.09241 2.406605) - (xy -0.840764 2.235488) - (xy -0.631001 2.321959) - (xy -0.421237 2.40843) - (xy -0.364389 2.709982) - (xy -0.30754 3.011534) - (xy 0.320115 3.011534) - (xy 0.376964 2.709982) - ) - - (stroke (width 0.01) (type solid)) (fill solid) (layer "B.SilkS") (tstamp c74949f0-e271-4fb5-972b-418817019fe4)) - ) - - (footprint "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (layer "B.Cu") - (tstamp 00000000-0000-0000-0000-00006154beea) - (at 52.5 88.8 180) - (descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip") - (tags "net tie solder jumper bridged") - (property "Config" "DNF") - (property "MFN" "") - (property "PN" "") - (property "Sheetfile" "RedPitaya_Lockbox.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Solder Jumper, 2-pole, closed/bridged") - (property "ki_keywords" "solder jumper SPST") - (path "/00000000-0000-0000-0000-0000614b49d3") - (attr exclude_from_pos_files) - (net_tie_pad_groups "1, 2") - (fp_text reference "JP6" (at 0 -3.95) (layer "B.SilkS") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp db0e3fbc-c14f-4cf9-b08d-c7e78ee0b063) - ) - (fp_text value "GND" (at 0 -1.9) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp ec1e9510-b4b9-47c0-9880-673f1b267a5e) - ) - (fp_poly - (pts - (xy 0.25 0.3) - (xy -0.25 0.3) - (xy -0.25 -0.3) - (xy 0.25 -0.3) - ) - - (stroke (width 0) (type solid)) (fill solid) (layer "B.Cu") (tstamp e7c87b44-9ebd-4cc1-aaee-298b626e2d9c)) - (fp_line (start -1.4 -0.3) (end -1.4 0.3) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 03ee6f3e-ef87-4064-baf7-9b5d71842540)) - (fp_line (start -0.7 1) (end 0.7 1) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 2261788b-3d59-409b-bb30-deeb7bc64ea5)) - (fp_line (start 0.7 -1) (end -0.7 -1) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 1ab8a624-6937-429f-a783-49d7f42361a4)) - (fp_line (start 1.4 0.3) (end 1.4 -0.3) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 7458160e-5782-4ba4-b95e-b126d418fef4)) - (fp_arc (start -1.4 -0.3) (mid -1.194975 -0.794975) (end -0.7 -1) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp f11e6073-ee30-46ab-a465-439f01e8fe1c)) - (fp_arc (start -0.7 1) (mid -1.194975 0.794975) (end -1.4 0.3) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 0858abe4-8ae1-4392-995b-232c06aa4f3c)) - (fp_arc (start 0.7 -1) (mid 1.194975 -0.794975) (end 1.4 -0.3) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 530b517c-07f1-465a-b925-8c732f18cd7d)) - (fp_arc (start 1.4 0.3) (mid 1.194975 0.794975) (end 0.7 1) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 959896b7-a55d-4d04-afa4-2e7f4fe49384)) - (fp_line (start -1.65 1.25) (end -1.65 -1.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp aa77ea1e-f771-445c-bf98-2ffca8a4af0f)) - (fp_line (start -1.65 1.25) (end 1.65 1.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp c7af5323-f918-41cf-b097-92ab781b8dc7)) - (fp_line (start 1.65 -1.25) (end -1.65 -1.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 67e4ebcf-205b-44cf-a542-fea3e21de773)) - (fp_line (start 1.65 -1.25) (end 1.65 1.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 5a5d674f-da49-443e-87ae-7b9244066b8a)) - (pad "1" smd custom (at -0.65 0 180) (size 1 0.5) (layers "B.Cu" "B.Mask") - (net 127 "Net-(J1-Pin_a15)") (pinfunction "A") (pintype "passive") (zone_connect 2) - (options (clearance outline) (anchor rect)) - (primitives - (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) - (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) - (gr_poly - (pts - (xy 0.5 -0.75) - (xy 0 -0.75) - (xy 0 0.75) - (xy 0.5 0.75) - ) - (width 0) (fill yes)) - ) (tstamp b648583f-5917-4a5b-b72a-80f0c2523822)) - (pad "2" smd custom (at 0.65 0 180) (size 1 0.5) (layers "B.Cu" "B.Mask") - (net 2 "GND") (pinfunction "B") (pintype "passive") (zone_connect 2) - (options (clearance outline) (anchor rect)) - (primitives - (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) - (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) - (gr_poly - (pts - (xy 0 -0.75) - (xy -0.5 -0.75) - (xy -0.5 0.75) - (xy 0 0.75) - ) - (width 0) (fill yes)) - ) (tstamp ecdf7bef-47b5-4be8-9082-e415ab45fe8b)) - ) - - (footprint "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (layer "B.Cu") - (tstamp 00000000-0000-0000-0000-00006154befd) - (at 63.5 88.75) - (descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip") - (tags "net tie solder jumper bridged") - (property "Config" "DNF") - (property "MFN" "") - (property "PN" "") - (property "Sheetfile" "RedPitaya_Lockbox.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Solder Jumper, 2-pole, closed/bridged") - (property "ki_keywords" "solder jumper SPST") - (path "/00000000-0000-0000-0000-0000614ba6fe") - (attr exclude_from_pos_files) - (net_tie_pad_groups "1, 2") - (fp_text reference "JP7" (at 3.75 0 180) (layer "B.SilkS") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 3b3afe82-552a-4120-a440-a43367b080a7) - ) - (fp_text value "GND" (at 0 -1.9 180) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp d390e22e-38d0-4ebb-8e15-a8d8567b8c66) - ) - (fp_poly - (pts - (xy 0.25 0.3) - (xy -0.25 0.3) - (xy -0.25 -0.3) - (xy 0.25 -0.3) - ) - - (stroke (width 0) (type solid)) (fill solid) (layer "B.Cu") (tstamp 3217aaff-75c5-4468-b6c4-40b84fcec5ea)) - (fp_line (start -1.4 -0.3) (end -1.4 0.3) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 7d0b5593-81e6-471a-a16a-d14a28d9e20e)) - (fp_line (start -0.7 1) (end 0.7 1) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 0620cddc-53a1-43c9-bdb6-75a425436768)) - (fp_line (start 0.7 -1) (end -0.7 -1) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp ad8706da-9b2f-4534-9e41-ad7e2da3da98)) - (fp_line (start 1.4 0.3) (end 1.4 -0.3) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 4ef41bda-c9b7-4cb0-9e06-135f42532c3d)) - (fp_arc (start -1.4 -0.3) (mid -1.194975 -0.794975) (end -0.7 -1) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 3fd249f9-734d-4754-9467-a00c4070de88)) - (fp_arc (start -0.7 1) (mid -1.194975 0.794975) (end -1.4 0.3) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 42c0c4da-20f3-4e58-a028-5065b957b584)) - (fp_arc (start 0.7 -1) (mid 1.194975 -0.794975) (end 1.4 -0.3) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp ecdf48a3-c525-4979-b90c-58cc2f4ff70f)) - (fp_arc (start 1.4 0.3) (mid 1.194975 0.794975) (end 0.7 1) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp bc126085-97cb-4832-ad05-991ab1afb1e2)) - (fp_line (start -1.65 1.25) (end -1.65 -1.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 97dfd29f-02be-4e31-acff-b543e4e85737)) - (fp_line (start -1.65 1.25) (end 1.65 1.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 8c9e238d-9612-4154-955d-b39ad8557582)) - (fp_line (start 1.65 -1.25) (end -1.65 -1.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 05bdf6c5-cc2a-4fcd-a4c4-604853d4f519)) - (fp_line (start 1.65 -1.25) (end 1.65 1.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 008894b6-a3a0-4666-8538-e037bc9df45d)) - (pad "1" smd custom (at -0.65 0) (size 1 0.5) (layers "B.Cu" "B.Mask") - (net 134 "Net-(J1-Pin_c15)") (pinfunction "A") (pintype "passive") (zone_connect 2) - (options (clearance outline) (anchor rect)) - (primitives - (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) - (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) - (gr_poly - (pts - (xy 0.5 -0.75) - (xy 0 -0.75) - (xy 0 0.75) - (xy 0.5 0.75) - ) - (width 0) (fill yes)) - ) (tstamp 9f7f5259-db47-4003-bdf5-6388701c52b4)) - (pad "2" smd custom (at 0.65 0) (size 1 0.5) (layers "B.Cu" "B.Mask") - (net 2 "GND") (pinfunction "B") (pintype "passive") (zone_connect 2) - (options (clearance outline) (anchor rect)) - (primitives - (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) - (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) - (gr_poly - (pts - (xy 0 -0.75) - (xy -0.5 -0.75) - (xy -0.5 0.75) - (xy 0 0.75) - ) - (width 0) (fill yes)) - ) (tstamp c52ac7ea-ddf4-4425-a63f-9bbb7d016cc0)) - ) - - (footprint "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (layer "B.Cu") - (tstamp 00000000-0000-0000-0000-00006154bf10) - (at 52.5 86.25 180) - (descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip") - (tags "net tie solder jumper bridged") - (property "Config" "DNF") - (property "MFN" "") - (property "PN" "") - (property "Sheetfile" "RedPitaya_Lockbox.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Solder Jumper, 2-pole, closed/bridged") - (property "ki_keywords" "solder jumper SPST") - (path "/00000000-0000-0000-0000-0000614bacb5") - (attr exclude_from_pos_files) - (net_tie_pad_groups "1, 2") - (fp_text reference "JP8" (at 0 -4.75) (layer "B.SilkS") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 965f7518-5fe4-40ec-b4d2-75392c88a06e) - ) - (fp_text value "GND" (at 0 -1.9) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp c553d5bc-e936-4100-a0f4-2949ee17d6b8) - ) - (fp_poly - (pts - (xy 0.25 0.3) - (xy -0.25 0.3) - (xy -0.25 -0.3) - (xy 0.25 -0.3) - ) - - (stroke (width 0) (type solid)) (fill solid) (layer "B.Cu") (tstamp 980a7f6c-8528-4741-8c87-80035819ebb6)) - (fp_line (start -1.4 -0.3) (end -1.4 0.3) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 85ec0361-df9f-4822-8912-be2de64e44bb)) - (fp_line (start -0.7 1) (end 0.7 1) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 9c806605-f940-46ab-a55e-b328b7ccfa91)) - (fp_line (start 0.7 -1) (end -0.7 -1) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 670bfc30-f1ec-41f1-9a6d-6699463b35b1)) - (fp_line (start 1.4 0.3) (end 1.4 -0.3) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 3394cd91-4da2-4752-adf6-686b35b53740)) - (fp_arc (start -1.4 -0.3) (mid -1.194975 -0.794975) (end -0.7 -1) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp bbbb773f-0349-4944-95bb-1aaf68e61176)) - (fp_arc (start -0.7 1) (mid -1.194975 0.794975) (end -1.4 0.3) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp c72ba3e7-affc-446a-85ac-1bbf9385ac9e)) - (fp_arc (start 0.7 -1) (mid 1.194975 -0.794975) (end 1.4 -0.3) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp a0021f44-c444-4e4d-9cc6-6d8a769debcc)) - (fp_arc (start 1.4 0.3) (mid 1.194975 0.794975) (end 0.7 1) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp be448164-7033-4166-b620-f93ca706fdea)) - (fp_line (start -1.65 1.25) (end -1.65 -1.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 7532464a-59b0-466a-b7d8-30233fb28467)) - (fp_line (start -1.65 1.25) (end 1.65 1.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 7b4c202b-5aa5-4725-8be4-8208b4b5ac8c)) - (fp_line (start 1.65 -1.25) (end -1.65 -1.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp e7496920-81a8-4e7c-a06f-11b9a7abb529)) - (fp_line (start 1.65 -1.25) (end 1.65 1.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp eef50f9b-84a8-4c63-bf14-db59a117cea7)) - (pad "1" smd custom (at -0.65 0 180) (size 1 0.5) (layers "B.Cu" "B.Mask") - (net 128 "Net-(J1-Pin_a16)") (pinfunction "A") (pintype "passive") (zone_connect 2) - (options (clearance outline) (anchor rect)) - (primitives - (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) - (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) - (gr_poly - (pts - (xy 0.5 -0.75) - (xy 0 -0.75) - (xy 0 0.75) - (xy 0.5 0.75) - ) - (width 0) (fill yes)) - ) (tstamp 130de44a-67b4-4326-934e-802fe8b60e95)) - (pad "2" smd custom (at 0.65 0 180) (size 1 0.5) (layers "B.Cu" "B.Mask") - (net 2 "GND") (pinfunction "B") (pintype "passive") (zone_connect 2) - (options (clearance outline) (anchor rect)) - (primitives - (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) - (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) - (gr_poly - (pts - (xy 0 -0.75) - (xy -0.5 -0.75) - (xy -0.5 0.75) - (xy 0 0.75) - ) - (width 0) (fill yes)) - ) (tstamp 83087361-3e78-4042-b3f4-fe4a1ce44a97)) - ) - - (footprint "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (layer "B.Cu") - (tstamp 00000000-0000-0000-0000-00006154bf23) - (at 63.5 86.25) - (descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip") - (tags "net tie solder jumper bridged") - (property "Config" "DNF") - (property "MFN" "") - (property "PN" "") - (property "Sheetfile" "RedPitaya_Lockbox.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Solder Jumper, 2-pole, closed/bridged") - (property "ki_keywords" "solder jumper SPST") - (path "/00000000-0000-0000-0000-0000614bb04c") - (attr exclude_from_pos_files) - (net_tie_pad_groups "1, 2") - (fp_text reference "JP9" (at 3.75 0 180) (layer "B.SilkS") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 8bb9f261-0455-4f84-9210-4ca6da2ae9d4) - ) - (fp_text value "GND" (at 0 -1.9 180) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp d5c88ddb-8557-4a74-a135-c9c13c44da2c) - ) - (fp_poly - (pts - (xy 0.25 0.3) - (xy -0.25 0.3) - (xy -0.25 -0.3) - (xy 0.25 -0.3) - ) - - (stroke (width 0) (type solid)) (fill solid) (layer "B.Cu") (tstamp fc79be1f-a9c4-4607-b568-44594efff0ff)) - (fp_line (start -1.4 -0.3) (end -1.4 0.3) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 924775ae-e2be-4a21-8c64-e835029bdc80)) - (fp_line (start -0.7 1) (end 0.7 1) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp b413f7ca-083f-434c-ae6b-5b4383d7110e)) - (fp_line (start 0.7 -1) (end -0.7 -1) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 3a921e26-e722-4836-a86c-0fa3bc3c70a4)) - (fp_line (start 1.4 0.3) (end 1.4 -0.3) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp c80934ee-4eeb-44d2-abc0-2b654cd920c2)) - (fp_arc (start -1.4 -0.3) (mid -1.194975 -0.794975) (end -0.7 -1) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 4da8022d-68bc-4915-a391-bf639b2f08fd)) - (fp_arc (start -0.7 1) (mid -1.194975 0.794975) (end -1.4 0.3) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 250c13d0-beb7-492b-978a-e50ef9ab85a1)) - (fp_arc (start 0.7 -1) (mid 1.194975 -0.794975) (end 1.4 -0.3) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp ddcf4930-cd82-49b1-9e9d-964f5c7829d6)) - (fp_arc (start 1.4 0.3) (mid 1.194975 0.794975) (end 0.7 1) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp b3fca970-95b1-4410-840c-afea027079ca)) - (fp_line (start -1.65 1.25) (end -1.65 -1.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 8cbf5591-de74-4582-80d2-ab8b59ea8dae)) - (fp_line (start -1.65 1.25) (end 1.65 1.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp a0c536dc-f854-4802-aaf3-873c1a1ee9fe)) - (fp_line (start 1.65 -1.25) (end -1.65 -1.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp dd5ffeff-390f-468f-9eed-a6d4a9eda19a)) - (fp_line (start 1.65 -1.25) (end 1.65 1.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 04f87264-538c-4798-a8fc-38a7a3cdf80d)) - (pad "1" smd custom (at -0.65 0) (size 1 0.5) (layers "B.Cu" "B.Mask") - (net 135 "Net-(J1-Pin_c16)") (pinfunction "A") (pintype "passive") (zone_connect 2) - (options (clearance outline) (anchor rect)) - (primitives - (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) - (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) - (gr_poly - (pts - (xy 0.5 -0.75) - (xy 0 -0.75) - (xy 0 0.75) - (xy 0.5 0.75) - ) - (width 0) (fill yes)) - ) (tstamp 309480fa-993b-4d37-bd02-72c17e612ff8)) - (pad "2" smd custom (at 0.65 0) (size 1 0.5) (layers "B.Cu" "B.Mask") - (net 2 "GND") (pinfunction "B") (pintype "passive") (zone_connect 2) - (options (clearance outline) (anchor rect)) - (primitives - (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) - (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) - (gr_poly - (pts - (xy 0 -0.75) - (xy -0.5 -0.75) - (xy -0.5 0.75) - (xy 0 0.75) - ) - (width 0) (fill yes)) - ) (tstamp 4f14d7fb-4a22-4020-88f3-d604d2d920cc)) - ) - - (footprint "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (layer "B.Cu") - (tstamp 00000000-0000-0000-0000-00006154bf36) - (at 52.5 83.75 180) - (descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip") - (tags "net tie solder jumper bridged") - (property "Config" "DNF") - (property "MFN" "") - (property "PN" "") - (property "Sheetfile" "RedPitaya_Lockbox.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Solder Jumper, 2-pole, closed/bridged") - (property "ki_keywords" "solder jumper SPST") - (path "/00000000-0000-0000-0000-0000614baac4") - (attr exclude_from_pos_files) - (net_tie_pad_groups "1, 2") - (fp_text reference "JP10" (at 0 5.75) (layer "B.SilkS") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp b2777a47-9793-457c-8ac9-c42a10af467e) - ) - (fp_text value "GND" (at 0 -1.9) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 0f9992e3-5e84-4368-94cc-d0534d8ec840) - ) - (fp_poly - (pts - (xy 0.25 0.3) - (xy -0.25 0.3) - (xy -0.25 -0.3) - (xy 0.25 -0.3) - ) - - (stroke (width 0) (type solid)) (fill solid) (layer "B.Cu") (tstamp 532df292-3a79-4cc2-b1d0-769dba3d8538)) - (fp_line (start -1.4 -0.3) (end -1.4 0.3) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp f8684f0c-a2e4-444f-9207-848a8c1494ab)) - (fp_line (start -0.7 1) (end 0.7 1) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp ba3f8333-bf14-4fe3-a1bf-de3d318ece96)) - (fp_line (start 0.7 -1) (end -0.7 -1) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp a93ae324-cf52-4994-9a0c-655aaf0a1365)) - (fp_line (start 1.4 0.3) (end 1.4 -0.3) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 86d25af5-7d0d-4c36-9422-b61ce52c6fdd)) - (fp_arc (start -1.4 -0.3) (mid -1.194975 -0.794975) (end -0.7 -1) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 76cd85d1-f0c9-4015-b6c6-2f74aa308d65)) - (fp_arc (start -0.7 1) (mid -1.194975 0.794975) (end -1.4 0.3) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 72cdd653-6729-48eb-a408-ef7c0fde9118)) - (fp_arc (start 0.7 -1) (mid 1.194975 -0.794975) (end 1.4 -0.3) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp c7795e3f-76a9-4c43-a18d-1d1c2001dd85)) - (fp_arc (start 1.4 0.3) (mid 1.194975 0.794975) (end 0.7 1) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 088521ad-777c-40ea-bbb0-7c592d4ec29c)) - (fp_line (start -1.65 1.25) (end -1.65 -1.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 5807fed0-008f-40f1-8d9a-880234c9f260)) - (fp_line (start -1.65 1.25) (end 1.65 1.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 411f16f4-7b30-477a-839c-3fd156d4d143)) - (fp_line (start 1.65 -1.25) (end -1.65 -1.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 9c141b74-c3d3-439e-89ac-f893471761b7)) - (fp_line (start 1.65 -1.25) (end 1.65 1.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 87fc3bd2-88cd-4420-8ed1-7232df7b0852)) - (pad "1" smd custom (at -0.65 0 180) (size 1 0.5) (layers "B.Cu" "B.Mask") - (net 129 "Net-(J1-Pin_a17)") (pinfunction "A") (pintype "passive") (zone_connect 2) - (options (clearance outline) (anchor rect)) - (primitives - (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) - (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) - (gr_poly - (pts - (xy 0.5 -0.75) - (xy 0 -0.75) - (xy 0 0.75) - (xy 0.5 0.75) - ) - (width 0) (fill yes)) - ) (tstamp 51cb74eb-6644-40a3-8580-ed4174a2d8b2)) - (pad "2" smd custom (at 0.65 0 180) (size 1 0.5) (layers "B.Cu" "B.Mask") - (net 2 "GND") (pinfunction "B") (pintype "passive") (zone_connect 2) - (options (clearance outline) (anchor rect)) - (primitives - (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) - (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) - (gr_poly - (pts - (xy 0 -0.75) - (xy -0.5 -0.75) - (xy -0.5 0.75) - (xy 0 0.75) - ) - (width 0) (fill yes)) - ) (tstamp 5eed5d70-3f1b-48f0-b26e-1f2b1ba5f2f1)) - ) - - (footprint "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (layer "B.Cu") - (tstamp 00000000-0000-0000-0000-00006154bf49) - (at 63.5 83.75) - (descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip") - (tags "net tie solder jumper bridged") - (property "Config" "DNF") - (property "MFN" "") - (property "PN" "") - (property "Sheetfile" "RedPitaya_Lockbox.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Solder Jumper, 2-pole, closed/bridged") - (property "ki_keywords" "solder jumper SPST") - (path "/00000000-0000-0000-0000-0000614ba937") - (attr exclude_from_pos_files) - (net_tie_pad_groups "1, 2") - (fp_text reference "JP11" (at 3.7 0 180) (layer "B.SilkS") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp aa604451-e36e-4f3d-b802-6cde20bbc62c) - ) - (fp_text value "GND" (at 0 -1.9 180) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 02820cef-d300-4de1-bea0-7270c230e882) - ) - (fp_poly - (pts - (xy 0.25 0.3) - (xy -0.25 0.3) - (xy -0.25 -0.3) - (xy 0.25 -0.3) - ) - - (stroke (width 0) (type solid)) (fill solid) (layer "B.Cu") (tstamp 398a4e4a-a3f9-48e0-a9fe-a491a2a5b466)) - (fp_line (start -1.4 -0.3) (end -1.4 0.3) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 7d810971-e519-4a2c-8486-fdb6766f27b5)) - (fp_line (start -0.7 1) (end 0.7 1) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp f0850110-27a7-4e8a-af3f-a1988ec2b522)) - (fp_line (start 0.7 -1) (end -0.7 -1) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 1337005d-525c-45d3-8640-63bd66d68ab9)) - (fp_line (start 1.4 0.3) (end 1.4 -0.3) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 611fa3e2-41f9-433f-a477-cf7bdd18fe25)) - (fp_arc (start -1.4 -0.3) (mid -1.194975 -0.794975) (end -0.7 -1) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 7b22b814-0d96-450b-b588-8eb8dd13c296)) - (fp_arc (start -0.7 1) (mid -1.194975 0.794975) (end -1.4 0.3) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp f895915a-e9e8-4878-a5a8-03436061d9ee)) - (fp_arc (start 0.7 -1) (mid 1.194975 -0.794975) (end 1.4 -0.3) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 61ace20e-a5f9-4217-a5d5-8f03085a92f6)) - (fp_arc (start 1.4 0.3) (mid 1.194975 0.794975) (end 0.7 1) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 3a81c303-e2f6-4139-8065-e84ba35bc20c)) - (fp_line (start -1.65 1.25) (end -1.65 -1.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 144b2ede-e7b5-414e-9568-e03e81c83e65)) - (fp_line (start -1.65 1.25) (end 1.65 1.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 33abc005-b131-492a-9984-e6a14389067d)) - (fp_line (start 1.65 -1.25) (end -1.65 -1.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 4b339a3e-3d69-4457-be5a-1be1d8bb898b)) - (fp_line (start 1.65 -1.25) (end 1.65 1.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp abb90c6c-04ae-4cf4-a749-6c0ede398207)) - (pad "1" smd custom (at -0.65 0) (size 1 0.5) (layers "B.Cu" "B.Mask") - (net 136 "Net-(J1-Pin_c17)") (pinfunction "A") (pintype "passive") (zone_connect 2) - (options (clearance outline) (anchor rect)) - (primitives - (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) - (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) - (gr_poly - (pts - (xy 0.5 -0.75) - (xy 0 -0.75) - (xy 0 0.75) - (xy 0.5 0.75) - ) - (width 0) (fill yes)) - ) (tstamp c3402339-549a-45f6-a29a-bf1d78eebb1c)) - (pad "2" smd custom (at 0.65 0) (size 1 0.5) (layers "B.Cu" "B.Mask") - (net 2 "GND") (pinfunction "B") (pintype "passive") (zone_connect 2) - (options (clearance outline) (anchor rect)) - (primitives - (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) - (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) - (gr_poly - (pts - (xy 0 -0.75) - (xy -0.5 -0.75) - (xy -0.5 0.75) - (xy 0 0.75) - ) - (width 0) (fill yes)) - ) (tstamp 96c7a10a-5930-40dd-b6d0-d7f876a7288a)) - ) - - (footprint "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (layer "B.Cu") - (tstamp 00000000-0000-0000-0000-00006154bf6f) - (at 63.5 81.25) - (descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip") - (tags "net tie solder jumper bridged") - (property "Config" "DNF") - (property "MFN" "") - (property "PN" "") - (property "Sheetfile" "RedPitaya_Lockbox.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Solder Jumper, 2-pole, closed/bridged") - (property "ki_keywords" "solder jumper SPST") - (path "/00000000-0000-0000-0000-0000614ba1f4") - (attr exclude_from_pos_files) - (net_tie_pad_groups "1, 2") - (fp_text reference "JP13" (at 3.7 0 180) (layer "B.SilkS") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp ec6fa52b-9096-45b9-a882-880649f4beec) - ) - (fp_text value "GND" (at 0 -1.9 180) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 830a7595-17ab-431e-9abc-6631f8e5f41b) - ) - (fp_poly - (pts - (xy 0.25 0.3) - (xy -0.25 0.3) - (xy -0.25 -0.3) - (xy 0.25 -0.3) - ) - - (stroke (width 0) (type solid)) (fill solid) (layer "B.Cu") (tstamp 57917a79-ed8d-466f-acd4-fa9b44ccd9cd)) - (fp_line (start -1.4 -0.3) (end -1.4 0.3) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 14ad7b16-e276-4e7d-9164-b4b4be475522)) - (fp_line (start -0.7 1) (end 0.7 1) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 778ada72-0805-4307-a4df-a556f08b675c)) - (fp_line (start 0.7 -1) (end -0.7 -1) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 58685098-03f0-45fa-b703-884f91d07f50)) - (fp_line (start 1.4 0.3) (end 1.4 -0.3) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 36bd668f-084f-4c2d-934e-7028d5967f3c)) - (fp_arc (start -1.4 -0.3) (mid -1.194975 -0.794975) (end -0.7 -1) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 85f23ba1-ff86-40c2-83a7-f522ee30200f)) - (fp_arc (start -0.7 1) (mid -1.194975 0.794975) (end -1.4 0.3) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp eaa06bef-e21f-41ce-bfc6-f4d5c31a271a)) - (fp_arc (start 0.7 -1) (mid 1.194975 -0.794975) (end 1.4 -0.3) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp fec01735-d370-4dc4-8793-fff180e7f7d9)) - (fp_arc (start 1.4 0.3) (mid 1.194975 0.794975) (end 0.7 1) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp e2280e5b-25a5-4b1e-a0ba-602928e72087)) - (fp_line (start -1.65 1.25) (end -1.65 -1.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 7d1e1fa1-d049-4889-8dcf-7d8346171f84)) - (fp_line (start -1.65 1.25) (end 1.65 1.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp ec9fc47c-54a9-4379-be2e-06d28f6e6b06)) - (fp_line (start 1.65 -1.25) (end -1.65 -1.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 4bb8c2a0-c764-4ee1-a3e4-ece172d14441)) - (fp_line (start 1.65 -1.25) (end 1.65 1.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 7220a7fc-23dd-4b23-b22c-525dc3396ef8)) - (pad "1" smd custom (at -0.65 0) (size 1 0.5) (layers "B.Cu" "B.Mask") - (net 137 "Net-(J1-Pin_c18)") (pinfunction "A") (pintype "passive") (zone_connect 2) - (options (clearance outline) (anchor rect)) - (primitives - (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) - (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) - (gr_poly - (pts - (xy 0.5 -0.75) - (xy 0 -0.75) - (xy 0 0.75) - (xy 0.5 0.75) - ) - (width 0) (fill yes)) - ) (tstamp 8b489c3f-4313-43a9-a85a-c956665b6315)) - (pad "2" smd custom (at 0.65 0) (size 1 0.5) (layers "B.Cu" "B.Mask") - (net 2 "GND") (pinfunction "B") (pintype "passive") (zone_connect 2) - (options (clearance outline) (anchor rect)) - (primitives - (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) - (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) - (gr_poly - (pts - (xy 0 -0.75) - (xy -0.5 -0.75) - (xy -0.5 0.75) - (xy 0 0.75) - ) - (width 0) (fill yes)) - ) (tstamp fa5adae1-d9e4-4d45-860b-2790b52f0d17)) - ) - - (footprint "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (layer "B.Cu") - (tstamp fc4d6792-244a-439a-9c0a-3b9ef97b70c8) - (at 52.5 81.25 180) - (descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip") - (tags "net tie solder jumper bridged") - (property "Config" "DNF") - (property "MFN" "") - (property "PN" "") - (property "Sheetfile" "RedPitaya_Lockbox.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Solder Jumper, 2-pole, closed/bridged") - (property "ki_keywords" "solder jumper SPST") - (path "/00000000-0000-0000-0000-0000614ba49d") - (attr exclude_from_pos_files) - (net_tie_pad_groups "1, 2") - (fp_text reference "JP12" (at 0 1.8) (layer "B.SilkS") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp aead36aa-ec50-40f8-96f6-fa4b28aaee29) - ) - (fp_text value "GND" (at 0 -1.9) (layer "B.Fab") - (effects (font (size 1 1) (thickness 0.15)) (justify mirror)) - (tstamp 55f0dcaa-cddf-4c39-9ea6-c01024c011a7) - ) - (fp_poly - (pts - (xy 0.25 0.3) - (xy -0.25 0.3) - (xy -0.25 -0.3) - (xy 0.25 -0.3) - ) - - (stroke (width 0) (type solid)) (fill solid) (layer "B.Cu") (tstamp 52039168-bc80-447a-b14d-bc25cbcf95f6)) - (fp_line (start -1.4 -0.3) (end -1.4 0.3) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 2b80fb51-6a27-4103-b2c4-2ef6c46da39a)) - (fp_line (start -0.7 1) (end 0.7 1) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp f31f6a8f-771d-46ef-aed1-85c8cace9383)) - (fp_line (start 0.7 -1) (end -0.7 -1) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp f7ce0371-eee5-49be-95ba-843face136c8)) - (fp_line (start 1.4 0.3) (end 1.4 -0.3) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp b1392eee-f51d-48f1-ba68-e5835916ea76)) - (fp_arc (start -1.4 -0.3) (mid -1.194975 -0.794975) (end -0.7 -1) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 89f8b723-6ce8-45c2-b2ea-2c4ca6f9f1d7)) - (fp_arc (start -0.7 1) (mid -1.194975 0.794975) (end -1.4 0.3) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 546b2e55-dd66-434c-8880-aa4191c460a9)) - (fp_arc (start 0.7 -1) (mid 1.194975 -0.794975) (end 1.4 -0.3) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp cd782183-e036-4caa-a805-3a94d0b963b8)) - (fp_arc (start 1.4 0.3) (mid 1.194975 0.794975) (end 0.7 1) - (stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 576a77fb-2006-4efb-8752-ba7a9dfa8ecc)) - (fp_line (start -1.65 1.25) (end -1.65 -1.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 16a76149-3164-4b90-b274-250aac22a11f)) - (fp_line (start -1.65 1.25) (end 1.65 1.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp de1f7504-2d27-4c3a-a18b-1321c0027f3f)) - (fp_line (start 1.65 -1.25) (end -1.65 -1.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 18360ecc-376d-437b-8791-c7a2a376cf6c)) - (fp_line (start 1.65 -1.25) (end 1.65 1.25) - (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 6dec42ac-395b-4b73-abfa-50b9a6584845)) - (pad "1" smd custom (at -0.65 0 180) (size 1 0.5) (layers "B.Cu" "B.Mask") - (net 130 "Net-(J1-Pin_a18)") (pinfunction "A") (pintype "passive") (zone_connect 2) - (options (clearance outline) (anchor rect)) - (primitives - (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) - (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) - (gr_poly - (pts - (xy 0.5 -0.75) - (xy 0 -0.75) - (xy 0 0.75) - (xy 0.5 0.75) - ) - (width 0) (fill yes)) - ) (tstamp e8bb247d-1500-48f7-aab2-a085a3af6da6)) - (pad "2" smd custom (at 0.65 0 180) (size 1 0.5) (layers "B.Cu" "B.Mask") - (net 2 "GND") (pinfunction "B") (pintype "passive") (zone_connect 2) - (options (clearance outline) (anchor rect)) - (primitives - (gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes)) - (gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes)) - (gr_poly - (pts - (xy 0 -0.75) - (xy -0.5 -0.75) - (xy -0.5 0.75) - (xy 0 0.75) - ) - (width 0) (fill yes)) - ) (tstamp a1b8f1fb-32b4-4cb4-b295-aeaf4a332932)) - ) - - (gr_line (start 209.6 63.9) (end 189.6 63.9) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005f70c501)) - (gr_line (start 189.6 63.9) (end 189.6 35.4) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005f70c504)) - (gr_line (start 189.6 35.4) (end 209.6 35.4) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005f70c507)) - (gr_line (start 209.6 35.4) (end 209.6 63.9) - (stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005f70c50a)) - (gr_line (start 210 35) (end 50 35) - (stroke (width 0.15) (type solid)) (layer "Edge.Cuts") (tstamp 00000000-0000-0000-0000-00005f70c4e0)) - (gr_line (start 210 35) (end 210 135) - (stroke (width 0.15) (type solid)) (layer "Edge.Cuts") (tstamp 00000000-0000-0000-0000-00005f70c4e3)) - (gr_line (start 210 135) (end 50 135) - (stroke (width 0.15) (type solid)) (layer "Edge.Cuts") (tstamp 00000000-0000-0000-0000-00005f70c4e6)) - (gr_line (start 50 135) (end 50 35) - (stroke (width 0.15) (type solid)) (layer "Edge.Cuts") (tstamp 00000000-0000-0000-0000-00005f70c4e9)) - (gr_text "Design by: Tilman Preuschoff" (at 206.81 90.27 90) (layer "B.SilkS") (tstamp 00000000-0000-0000-0000-00005f70c4f8) - (effects (font (size 1.5 1.5) (thickness 0.3)) (justify mirror)) - ) - (gr_text "Power supply options:\nAPQ (default): JP1,JP2 open; JP3-JP15 closed\nToptica/LQO: JP1,JP2 closed; JP3-JP15 open" (at 66.2 91.3 90) (layer "B.SilkS") (tstamp 00000000-0000-0000-0000-00006154c980) - (effects (font (size 1 1) (thickness 0.15)) (justify left mirror)) - ) - (gr_text "RedPitaya Lockbox\n2023-11 Rev. 1.6.2" (at 134.6 129.9) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005f70c4ef) - (effects (font (size 2 2) (thickness 0.35)) (justify left)) - ) - (gr_text "V-" (at 65.6 45.9) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005f70c519) - (effects (font (size 1.5 1.5) (thickness 0.25))) - ) - (gr_text "V+" (at 64.4 127.3) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005f70c525) - (effects (font (size 1.5 1.5) (thickness 0.25))) - ) - (gr_text "GND" (at 63.6 85.9 90) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005f70c528) - (effects (font (size 1.5 1.5) (thickness 0.25))) - ) - (gr_text "CaseSrew MountingHole" (at 52.8828 132.461) (layer "F.Fab") (tstamp 00f08a0b-82b9-45e5-8519-9f3c6377cd02) - (effects (font (size 1 1) (thickness 0.15))) - ) - (gr_text "Manufacturing instructions:\n- Material FR-4\n- Finished thickness: 1.57 mm ± 0.13 mm\n- Surface finish: HASL lead-free\n- PCBs are to be RoHS compliant\n- Do not edit artwork, e.g. to add logos\n or order numbers\n- Clean to meet IPC J-STD-001E, Class 2\n or better after assembly\n\nFor assembled PCBs, use the \nfollowing TARIC code for shipping:\n90304000" (at 225 50) (layer "F.Fab") (tstamp 03273d97-5274-435d-8d30-f6cf1379d2ec) - (effects (font (size 1.5 1.5) (thickness 0.3)) (justify left)) - ) - (gr_text "CaseSrew MountingHole" (at 53.0479 37.9095) (layer "F.Fab") (tstamp c7d84f6e-a707-4ffd-8ab8-e4d824111c03) - (effects (font (size 1 1) (thickness 0.15))) - ) - (dimension (type aligned) (layer "Dwgs.User") (tstamp 00000000-0000-0000-0000-00005f70c4f3) - (pts (xy 210 35) (xy 50 35)) - (height 2.5) - (gr_text "160.0000 mm" (at 130 30.7) (layer "Dwgs.User") (tstamp 00000000-0000-0000-0000-00005f70c4f3) - (effects (font (size 1.5 1.5) (thickness 0.3))) - ) - (format (prefix "") (suffix "") (units 2) (units_format 1) (precision 4)) - (style (thickness 0.3) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0) keep_text_aligned) - ) - (dimension (type aligned) (layer "Dwgs.User") (tstamp 00000000-0000-0000-0000-00005f70c4fc) - (pts (xy 210 135) (xy 210 35)) - (height 5) - (gr_text "100.0000 mm" (at 213.2 85 90) (layer "Dwgs.User") (tstamp 00000000-0000-0000-0000-00005f70c4fc) - (effects (font (size 1.5 1.5) (thickness 0.3))) - ) - (format (prefix "") (suffix "") (units 2) (units_format 1) (precision 4)) - (style (thickness 0.3) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0) keep_text_aligned) - ) - - (segment (start 58 42.5) (end 58 43.75) (width 1) (layer "F.Cu") (net 1) (tstamp 00000000-0000-0000-0000-00006154eecb)) - (segment (start 58 41.25) (end 58 42.5) (width 1) (layer "F.Cu") (net 1) (tstamp 00000000-0000-0000-0000-00006154eecd)) - (segment (start 66.920002 126.3) (end 69.85 123.370002) (width 1) (layer "F.Cu") (net 1) (tstamp 0b9dfbfe-1e19-4396-b6a1-78bceb1cec64)) - (segment (start 67.44 74.595) (end 66.305 74.595) (width 0.25) (layer "F.Cu") (net 1) (tstamp 1214da2f-202f-4aba-925e-67384a880b73)) - (segment (start 58.155001 72.344999) (end 64.044999 72.344999) (width 0.25) (layer "F.Cu") (net 1) (tstamp 14c9c5e0-cf46-42b2-82a4-1fc9dad67ea0)) - (segment (start 61.25 67.25) (end 64 70) (width 0.25) (layer "F.Cu") (net 1) (tstamp 1d23c79a-356b-440d-9928-a8b6c266b834)) - (segment (start 63.804999 74.795001) (end 64.1 74.5) (width 0.25) (layer "F.Cu") (net 1) (tstamp 1efab745-4ea2-4503-bd05-3123a3de84ef)) - (segment (start 65.409999 95.310001) (end 65.2 95.52) (width 1) (layer "F.Cu") (net 1) (tstamp 201da9bb-18a8-4628-9f72-99fe7bd0fa03)) - (segment (start 71.695 77.505) (end 71.5 77.7) (width 0.25) (layer "F.Cu") (net 1) (tstamp 2138f960-30ef-4963-92a6-e5d06f389b0a)) - (segment (start 65.2 126.3) (end 66.920002 126.3) (width 1) (layer "F.Cu") (net 1) (tstamp 25b9b6d4-722b-4fc2-8315-c355f287841f)) - (segment (start 67.44 75.245) (end 66.255 75.245) (width 0.25) (layer "F.Cu") (net 1) (tstamp 2787e483-5c73-4cd6-b879-fae53ba125f2)) - (segment (start 64.1 72.4) (end 64.1 74.5) (width 0.25) (layer "F.Cu") (net 1) (tstamp 2ed795d4-9928-4760-a0b0-796f1d7302ac)) - (segment (start 58 52.5) (end 58 55.1) (width 1) (layer "F.Cu") (net 1) (tstamp 32062560-499b-44dc-9b07-a0809ef2ea64)) - (segment (start 69.1 101.8) (end 70.4 103.1) (width 1) (layer "F.Cu") (net 1) (tstamp 33b067b5-f5f2-47ca-b6f5-0655e1c3b542)) - (segment (start 69.85 120.2) (end 65.6 120.2) (width 1) (layer "F.Cu") (net 1) (tstamp 375c7386-b2fa-41e4-9578-da51d4d7b33c)) - (segment (start 66.3 74.6) (end 66 74.6) (width 0.25) (layer "F.Cu") (net 1) (tstamp 377a14b2-2bd6-49e3-82b1-7abd6141afe4)) - (segment (start 58 40.15) (end 58 41.25) (width 1) (layer "F.Cu") (net 1) (tstamp 39ea8622-ff03-464a-b272-99edd2919443)) - (segment (start 65.2 119.8) (end 65.2 114) (width 1) (layer "F.Cu") (net 1) (tstamp 43d6a7dc-ede7-42a0-80b8-3bc25a5c4a75)) - (segment (start 58 69.75) (end 63.75 69.75) (width 0.25) (layer "F.Cu") (net 1) (tstamp 48573f01-35ca-4940-a0fb-37a7195d04a8)) - (segment (start 58 69.75) (end 58 72.5) (width 1) (layer "F.Cu") (net 1) (tstamp 4e5c0499-4917-48e7-9f4d-c201cc63ee81)) - (segment (start 63.75 69.75) (end 64 70) (width 0.25) (layer "F.Cu") (net 1) (tstamp 542c0bc2-7279-4d6b-bfea-489836939f96)) - (segment (start 66.26 71.94) (end 67.44 71.94) (width 0.25) (layer "F.Cu") (net 1) (tstamp 549acdbd-cd17-4eae-93f4-9209e642adc2)) - (segment (start 65.6 120.2) (end 65.2 119.8) (width 1) (layer "F.Cu") (net 1) (tstamp 551a9c77-351f-46d5-a216-b0289f2b7181)) - (segment (start 58 74.75) (end 58.045001 74.795001) (width 0.25) (layer "F.Cu") (net 1) (tstamp 5677ce6f-2f2b-441c-afdd-2baebbd3014e)) - (segment (start 69.85 116.630002) (end 69.85 120.2) (width 1) (layer "F.Cu") (net 1) (tstamp 570e06c8-e282-47ad-a16f-1c101653bcd2)) - (segment (start 69.85 123.370002) (end 69.85 120.2) (width 1) (layer "F.Cu") (net 1) (tstamp 59f2b60e-2b27-46d5-ad73-640286523b3d)) - (segment (start 58 72.5) (end 58.155001 72.344999) (width 0.25) (layer "F.Cu") (net 1) (tstamp 64fe4ef0-94d6-4168-93a5-da4cb1d6b68d)) - (segment (start 65.2 89.319998) (end 65.2 95.100002) (width 1) (layer "F.Cu") (net 1) (tstamp 69dbf79a-0755-4698-b4ab-edc5c3bf8438)) - (segment (start 67.219998 114) (end 69.85 116.630002) (width 1) (layer "F.Cu") (net 1) (tstamp 6ae5519f-a82c-423d-89f5-15a3d808e9b8)) - (segment (start 65.409999 102.109999) (end 65.719998 101.8) (width 1) (layer "F.Cu") (net 1) (tstamp 6e72ccaa-c091-4330-a23e-92e3f7e9d19d)) - (segment (start 64 70) (end 64.1 70.1) (width 0.25) (layer "F.Cu") (net 1) (tstamp 709590f4-b237-4a3b-993d-ad7f0777012b)) - (segment (start 66 74.99) (end 66 74.6) (width 0.25) (layer "F.Cu") (net 1) (tstamp 76f53cfe-a474-4d06-a4ee-4118e1446cad)) - (segment (start 65.999998 95.9) (end 68.9 95.9) (width 1) (layer "F.Cu") (net 1) (tstamp 7b4ce615-f0d5-4b1f-9b49-d02fdef0cf8b)) - (segment (start 70.6375 89.8) (end 66.1 89.8) (width 1) (layer "F.Cu") (net 1) (tstamp 7c78ac6e-4741-4718-9f69-92b018410c98)) - (segment (start 65.2 114) (end 65.2 102.319998) (width 1) (layer "F.Cu") (net 1) (tstamp 7d590ff0-32de-4f01-bf4c-caa51c97e2a2)) - (segment (start 65.409999 89.109999) (end 65.2 88.9) (width 1) (layer "F.Cu") (net 1) (tstamp 8b014bea-020e-4c32-8a2e-afb44e577967)) - (segment (start 66 72.2) (end 66.26 71.94) (width 0.25) (layer "F.Cu") (net 1) (tstamp 8e826973-d3e6-464e-9abd-8779fff78ab9)) - (segment (start 66 73.9) (end 66 72.2) (width 0.25) (layer "F.Cu") (net 1) (tstamp 966ae757-124f-4812-ab1f-2068389d5a22)) - (segment (start 65.2 126.9) (end 65.2 126.3) (width 1) (layer "F.Cu") (net 1) (tstamp 9b52db44-d7de-4fdd-bf98-b91b7e70bfef)) - (segment (start 66.045 73.945) (end 66 73.9) (width 0.25) (layer "F.Cu") (net 1) (tstamp a62eebac-7cd4-4d87-9d67-7d9e4541ef27)) - (segment (start 65.2 88.9) (end 65.2 81.7) (width 1) (layer "F.Cu") (net 1) (tstamp a9881c4d-1698-40b0-8ef8-bcb44452f73f)) - (segment (start 67.44 73.945) (end 66.045 73.945) (width 0.25) (layer "F.Cu") (net 1) (tstamp ab237cac-d232-4700-9f12-db45cc70040c)) - (segment (start 58 54.5) (end 58 55.1) (width 1) (layer "F.Cu") (net 1) (tstamp abc99c1d-371a-46da-9c0e-ac8fa4c77b83)) - (segment (start 65.2 102.319998) (end 65.409999 102.109999) (width 1) (layer "F.Cu") (net 1) (tstamp ad2404c6-4ebc-4c59-b4a0-c769f8c853bf)) - (segment (start 64.044999 72.344999) (end 64.1 72.4) (width 0.25) (layer "F.Cu") (net 1) (tstamp ade271db-05bf-4376-8f80-56d1f37eb279)) - (segment (start 65.2 95.100002) (end 65.409999 95.310001) (width 1) (layer "F.Cu") (net 1) (tstamp ae6b057a-8520-4469-8c04-e1544917a44f)) - (segment (start 65.2 95.52) (end 65.2 102.319998) (width 1) (layer "F.Cu") (net 1) (tstamp b1c9b65b-80b5-4113-9a9c-1b6fb2c1c939)) - (segment (start 65.2 81.7) (end 67.1 79.8) (width 1) (layer "F.Cu") (net 1) (tstamp b413ae81-6cdf-4dbb-8fe0-87b77f1bd3d0)) - (segment (start 65.409999 89.109999) (end 65.2 89.319998) (width 1) (layer "F.Cu") (net 1) (tstamp b8c3b962-07e0-448f-b262-3034538a3e93)) - (segment (start 64.1 70.1) (end 64.1 72.4) (width 0.25) (layer "F.Cu") (net 1) (tstamp bbbe638a-e56f-4270-af80-e1e96cce71e8)) - (segment (start 66.305 74.595) (end 66.3 74.6) (width 0.25) (layer "F.Cu") (net 1) (tstamp c5c43eae-8a34-43c6-832a-dc49bf5c56de)) - (segment (start 60 129.45) (end 62.65 129.45) (width 1) (layer "F.Cu") (net 1) (tstamp c657675e-8deb-40bb-80e5-5beec789b8d6)) - (segment (start 65.2 114) (end 67.219998 114) (width 1) (layer "F.Cu") (net 1) (tstamp c74fc314-66d8-4de7-ba0f-a8d825b92c4d)) - (segment (start 65.719998 101.8) (end 69.1 101.8) (width 1) (layer "F.Cu") (net 1) (tstamp cc28128d-dda5-4a0d-848a-18ff95d24656)) - (segment (start 58 67.25) (end 61.25 67.25) (width 0.25) (layer "F.Cu") (net 1) (tstamp ccda9c76-c57b-44a6-8d1b-073f6f0dc746)) - (segment (start 66 74.6) (end 66 73.9) (width 0.25) (layer "F.Cu") (net 1) (tstamp ce929668-cd7e-4f28-a8b4-132607aa94dc)) - (segment (start 69.2 77.7) (end 67.1 79.8) (width 0.25) (layer "F.Cu") (net 1) (tstamp df13ab82-8ece-41c7-9c9d-be8ec03b21c5)) - (segment (start 65.409999 95.310001) (end 65.999998 95.9) (width 1) (layer "F.Cu") (net 1) (tstamp dfec3e8d-8c25-49f6-a37d-8d2d914dbfd2)) - (segment (start 58 67.25) (end 58 69.75) (width 1) (layer "F.Cu") (net 1) (tstamp e13e1f10-5db0-4724-9b61-b42e7e4e1d4a)) - (segment (start 58.045001 74.795001) (end 63.804999 74.795001) (width 0.25) (layer "F.Cu") (net 1) (tstamp e2546db5-a1db-4f9e-8034-a00a080f8427)) - (segment (start 58 55.1) (end 58 67.25) (width 1) (layer "F.Cu") (net 1) (tstamp ea6e2566-2683-41e4-8014-dff521dc4537)) - (segment (start 67.44 71.94) (end 67.44 73.295) (width 0.25) (layer "F.Cu") (net 1) (tstamp ee8c7a3b-1896-41b4-9450-5834bc1af06d)) - (segment (start 62.65 129.45) (end 65.2 126.9) (width 1) (layer "F.Cu") (net 1) (tstamp f6e556b2-bac9-4e15-9a71-952ab3e508d1)) - (segment (start 65.2 126.3) (end 65.2 119.8) (width 1) (layer "F.Cu") (net 1) (tstamp f782812e-41f5-4fb0-b703-4162c93716f8)) - (segment (start 71.5 77.7) (end 69.2 77.7) (width 0.25) (layer "F.Cu") (net 1) (tstamp fad7036b-9191-4ff4-954d-14b31d22be7b)) - (segment (start 71.695 76.545) (end 71.695 77.505) (width 0.25) (layer "F.Cu") (net 1) (tstamp fd1953ec-65e6-420d-ab5c-9d7fa82aab97)) - (segment (start 58 72.5) (end 58 74.4) (width 1) (layer "F.Cu") (net 1) (tstamp fe601422-18d3-4f37-bb00-5caa5362248b)) - (segment (start 66.1 89.8) (end 65.409999 89.109999) (width 1) (layer "F.Cu") (net 1) (tstamp ff11fd62-fa45-44b4-8ae9-a5104aab9f02)) - (segment (start 66.255 75.245) (end 66 74.99) (width 0.25) (layer "F.Cu") (net 1) (tstamp ff863c04-3a15-420e-9bda-1991f8da8948)) - (via (at 58 53.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 1) (tstamp 983c6f9b-ab5a-42af-bd5a-759d76f91388)) - (via (at 58 43.75) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 1) (tstamp a9a939f5-10d0-414e-b2e4-40fdea93f675)) - (via (at 58 54.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 1) (tstamp b9fd7874-550d-4b45-bf4e-6567fdb916af)) - (via (at 58 41.25) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 1) (tstamp edf14a6b-0d70-4db0-9e28-784d655ee5be)) - (via (at 58 52.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 1) (tstamp f0786ee3-a048-405f-8056-d584552fedf1)) - (via (at 58 42.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 1) (tstamp f0eaad98-d205-41c4-a0e6-ff5881df4ae0)) - (segment (start 58 53.5) (end 58 54.5) (width 1) (layer "B.Cu") (net 1) (tstamp 00000000-0000-0000-0000-00006154ef99)) - (segment (start 58 52.5) (end 58 53.5) (width 1) (layer "B.Cu") (net 1) (tstamp 00000000-0000-0000-0000-00006154ef9b)) - (segment (start 58 41.25) (end 58 52.5) (width 1) (layer "B.Cu") (net 1) (tstamp 40b56ce4-b09f-4e90-85cf-ab6bc76787eb)) - (segment (start 85.6 116.9) (end 85.6 118.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b2b0)) - (segment (start 89.6 116.9) (end 87.6 116.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b2bc)) - (segment (start 87.6 114.9) (end 89.6 114.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b2c8)) - (segment (start 83.6 114.9) (end 85.6 114.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b2d4)) - (segment (start 79.6 114.9) (end 81.6 114.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b2e0)) - (segment (start 75.6 114.9) (end 77.6 114.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b2ec)) - (segment (start 71.6 114.9) (end 73.6 114.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b2f8)) - (segment (start 69.6 112.9) (end 69.6 114.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b304)) - (segment (start 73.6 112.9) (end 71.6 112.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b310)) - (segment (start 77.6 112.9) (end 75.6 112.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b31c)) - (segment (start 81.6 112.9) (end 79.6 112.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b328)) - (segment (start 85.6 112.9) (end 83.6 112.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b334)) - (segment (start 107.6 97.4) (end 108.6 97.4) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b445)) - (segment (start 105.6 97.4) (end 106.6 97.4) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b451)) - (segment (start 103.6 97.4) (end 104.6 97.4) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b45d)) - (segment (start 101.6 97.4) (end 102.6 97.4) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b469)) - (segment (start 99.6 97.4) (end 100.6 97.4) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b475)) - (segment (start 97.6 97.4) (end 98.6 97.4) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b481)) - (segment (start 87.6 126.9) (end 89.6 126.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b487)) - (segment (start 85.6 124.9) (end 85.6 126.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b493)) - (segment (start 89.6 124.9) (end 87.6 124.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b49f)) - (segment (start 87.6 122.9) (end 89.6 122.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b4ab)) - (segment (start 85.6 120.9) (end 85.6 122.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b4b7)) - (segment (start 89.6 120.9) (end 87.6 120.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b4c3)) - (segment (start 87.6 118.9) (end 89.6 118.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b4cf)) - (segment (start 96.6 99.4) (end 95.6 99.4) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b53e)) - (segment (start 81.3 93.2) (end 82.6 93.2) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b54d)) - (segment (start 101.14 63.46) (end 101.1 63.5) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b559)) - (segment (start 102.21 63.46) (end 101.14 63.46) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b55c)) - (segment (start 95.64 42.14) (end 95.6 42.1) (width 0.5) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b562)) - (segment (start 98.06 42.14) (end 95.64 42.14) (width 0.5) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b565)) - (segment (start 110.65 45.25) (end 110.6 45.3) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b56b)) - (segment (start 111.8 45.25) (end 110.65 45.25) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b56e)) - (segment (start 126.6 44.2) (end 126.6 45.35) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b574)) - (segment (start 64.2 77.35) (end 64.2 78.7) (width 0.5) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b57a)) - (segment (start 92.05 104.8) (end 90.2 104.8) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b5bc)) - (segment (start 69.6 106.9) (end 69.6 108.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b607)) - (segment (start 103.6 99.9) (end 103.6 100.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b652)) - (segment (start 105.6 99.9) (end 104.6 99.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b65e)) - (segment (start 107.6 99.9) (end 106.6 99.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b66a)) - (segment (start 107.6 100.9) (end 108.6 100.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b676)) - (segment (start 105.6 100.9) (end 106.6 100.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b682)) - (segment (start 104.6 101.9) (end 104.6 100.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b68e)) - (segment (start 94.4 106.2) (end 94.4 107.5) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b6d0)) - (segment (start 94.4 108.8) (end 94.3 108.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b6e8)) - (segment (start 94.3 108.9) (end 92.5 108.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b6eb)) - (segment (start 106.6 101.9) (end 105.6 101.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b745)) - (segment (start 108.6 101.9) (end 107.6 101.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b751)) - (segment (start 107.6 102.9) (end 108.6 102.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b75d)) - (segment (start 105.6 102.9) (end 106.6 102.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b769)) - (segment (start 89.6 98.4) (end 87.6 98.4) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b79f)) - (segment (start 89.6 98.4) (end 88.6 98.4) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b7a8)) - (segment (start 94.6 98.4) (end 93.6 98.4) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b7b1)) - (segment (start 96.6 98.4) (end 95.6 98.4) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b7bd)) - (segment (start 97.6 97.4) (end 97.6 98.4) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b7c9)) - (segment (start 79.61 129.99) (end 79.65 129.99) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b9a3)) - (segment (start 79.6 130) (end 79.61 129.99) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b9a9)) - (segment (start 89.6 112.9) (end 87.6 112.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70bc37)) - (segment (start 87.6 110.9) (end 89.6 110.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70bc43)) - (segment (start 83.6 110.9) (end 85.6 110.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70bc4f)) - (segment (start 79.6 110.9) (end 81.6 110.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70bc5b)) - (segment (start 75.6 110.9) (end 77.6 110.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70bc67)) - (segment (start 71.6 110.9) (end 73.6 110.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70bc73)) - (segment (start 69.6 108.9) (end 69.6 110.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70bc7f)) - (segment (start 104.6 96.4) (end 105.6 96.4) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c05a)) - (segment (start 102.6 96.4) (end 103.6 96.4) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c066)) - (segment (start 100.6 96.4) (end 101.6 96.4) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c072)) - (segment (start 98.6 96.4) (end 99.6 96.4) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c07e)) - (segment (start 96.6 96.4) (end 97.6 96.4) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c08a)) - (segment (start 94.6 96.4) (end 95.6 96.4) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c096)) - (segment (start 92.6 96.4) (end 93.6 96.4) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c0a2)) - (segment (start 90.6 96.4) (end 91.6 96.4) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c0ae)) - (segment (start 88.6 96.4) (end 89.6 96.4) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c0ba)) - (segment (start 65.3 50.8) (end 65.3 52.1) (width 0.5) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c1c2)) - (segment (start 76.6 44.69) (end 76.6 45.9) (width 0.5) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c288)) - (segment (start 71.695 75.245) (end 70.03375 75.245) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c28b)) - (segment (start 70.03375 75.245) (end 70.0025 75.27625) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c291)) - (segment (start 126.1 57.9375) (end 126.8625 57.9375) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c297)) - (segment (start 126.8625 57.9375) (end 127 57.8) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c29a)) - (segment (start 121.14 54.46) (end 121.19 54.46) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c2a0)) - (segment (start 121.19 54.46) (end 122.7875 52.8625) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c2a3)) - (segment (start 122.7875 52.8625) (end 124.35 52.8625) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c2a6)) - (segment (start 112.1375 56.6) (end 112.1375 56.0375) (width 0.5) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c2a9)) - (segment (start 112.1375 56.0375) (end 111.7 55.6) (width 0.5) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c2ac)) - (segment (start 100.9 45.1125) (end 101.3125 45.1125) (width 0.5) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c2b2)) - (segment (start 95.7 104.7) (end 95.7 106.2) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c5d9)) - (segment (start 95.6 97.4) (end 96.6 97.4) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70ca83)) - (segment (start 93.6 97.4) (end 94.6 97.4) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70ca8f)) - (segment (start 91.6 97.4) (end 92.6 97.4) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70ca9b)) - (segment (start 89.6 97.4) (end 90.6 97.4) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70caa7)) - (segment (start 87.6 97.4) (end 88.6 97.4) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cab3)) - (segment (start 91.6 98.4) (end 90.6 98.4) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cae6)) - (segment (start 92.6 99.4) (end 91.6 99.4) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70caf2)) - (segment (start 94.6 99.4) (end 93.6 99.4) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cafe)) - (segment (start 91.75 130.05) (end 91.75 129.99) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cb76)) - (segment (start 91.7 130.1) (end 91.75 130.05) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cb7c)) - (segment (start 101.3125 45.1125) (end 101.85 45.65) (width 0.5) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd11)) - (segment (start 100.9 57.9375) (end 100.3875 57.9375) (width 0.5) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd17)) - (segment (start 100.3875 57.9375) (end 99.85 57.4) (width 0.5) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd1a)) - (segment (start 99 98.8125) (end 98.3125 98.8125) (width 0.2) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd20)) - (segment (start 98.3125 98.8125) (end 98.3 98.8) (width 0.2) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd26)) - (segment (start 79 50.9) (end 79 50.6) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd3b)) - (segment (start 79 50.6) (end 78.1 49.7) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd3e)) - (segment (start 78.4 52.9) (end 79 52.3) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd44)) - (segment (start 79 52.3) (end 79 50.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd47)) - (segment (start 78.3875 52.9) (end 78.4 52.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd4a)) - (segment (start 76.8 78.5) (end 76.8 77.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd4d)) - (segment (start 76.8 77.9) (end 75.8 76.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd50)) - (segment (start 75.25 75.9) (end 75.25 76.35) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd53)) - (segment (start 75.25 76.35) (end 75.8 76.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd56)) - (segment (start 92.8 67.5) (end 92.1 67.5) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd5c)) - (segment (start 92.1 67.5) (end 91.3 66.7) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd5f)) - (segment (start 97.0625 57.9) (end 97.0625 58.7625) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd65)) - (segment (start 97.0625 58.7625) (end 97.1 58.8) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd68)) - (segment (start 170.2 50.4) (end 169.95 50.65) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd71)) - (segment (start 169.95 50.65) (end 169.1 50.65) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd74)) - (segment (start 180.85 45.9) (end 180.85 44.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd7a)) - (segment (start 132.1 55.75) (end 131.15 55.75) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd7d)) - (segment (start 131.15 55.75) (end 131.1 55.8) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd80)) - (segment (start 92.8 104.05) (end 92.8 104.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd86)) - (segment (start 92.8 103.55) (end 91.45 103.55) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd89)) - (segment (start 92.8 104.05) (end 91.55 104.05) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd8c)) - (segment (start 73.0025 48.63625) (end 74.16125 48.63625) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd8f)) - (segment (start 74.16125 48.63625) (end 74.175 48.65) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd95)) - (segment (start 106.6 96.4) (end 107.6 96.4) (width 0.25) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cdad)) - (segment (start 70.5 54.8) (end 71.5 54.8) (width 1) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-000061e592d2)) - (segment (start 71.5 54.8) (end 72.4 54.8) (width 1) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-000061e592d4)) - (segment (start 72.4 54.8) (end 73.2 54.8) (width 1) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-000061e592d6)) - (segment (start 73.2 54.8) (end 74.2 54.8) (width 1) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-000061e592d8)) - (segment (start 73.8 95.05) (end 75.65 95.05) (width 0.5) (layer "F.Cu") (net 2) (tstamp 0aaa1b9d-9c85-4894-9353-845cf3bf0a1a)) - (segment (start 75.65 95.05) (end 75.7 95) (width 0.5) (layer "F.Cu") (net 2) (tstamp 0b447d38-f49e-42e8-b985-28da10c3e6d7)) - (segment (start 67.44 77.46) (end 67.4 77.5) (width 0.25) (layer "F.Cu") (net 2) (tstamp 0be47f5e-8728-4813-9da5-3e9b67d971d3)) - (segment (start 164.7 40.125) (end 164.7 41.3) (width 0.2) (layer "F.Cu") (net 2) (tstamp 107b3863-6510-45fe-8193-4c5f49adf12b)) - (segment (start 86.5 66) (end 86.5 67.25) (width 0.25) (layer "F.Cu") (net 2) (tstamp 1ad7167c-d842-43e1-aa03-616956653f99)) - (segment (start 91.55 104.05) (end 91.3 103.8) (width 0.25) (layer "F.Cu") (net 2) (tstamp 2786f092-7272-42cd-a433-3addaa236d6d)) - (segment (start 73.9 67.1) (end 75.4 67.1) (width 0.5) (layer "F.Cu") (net 2) (tstamp 2d665c4d-1437-426f-b9cd-c53451fe5b1a)) - (segment (start 71.305 63.9) (end 71.305 65.405) (width 0.5) (layer "F.Cu") (net 2) (tstamp 2e68d109-cc4d-465c-aef0-0344d11ba114)) - (segment (start 80.4545 69.2912) (end 80.4799 69.2658) (width 0.5) (layer "F.Cu") (net 2) (tstamp 37d3bf2b-1361-43a6-a660-8e584912f573)) - (segment (start 68.7925 52.392502) (end 68.799998 52.4) (width 0.25) (layer "F.Cu") (net 2) (tstamp 561099e0-143b-4476-90ab-c417c91b1a04)) - (segment (start 159.75 59.5375) (end 159.75 60.75) (width 0.5) (layer "F.Cu") (net 2) (tstamp 6c1254ea-bcca-4e9f-8154-57ba0c018bda)) - (segment (start 75.45 69.1776) (end 75.4507 69.1769) (width 0.5) (layer "F.Cu") (net 2) (tstamp 72eb8031-447e-41e3-aaa5-59f792bf0a9e)) - (segment (start 92.3 105.1) (end 92.6 105.1) (width 0.25) (layer "F.Cu") (net 2) (tstamp 7876f78a-9f02-4f4c-94e9-30073256a9eb)) - (segment (start 80.4545 70.8066) (end 80.4545 69.2912) (width 0.5) (layer "F.Cu") (net 2) (tstamp 7a4a755d-2ace-41c1-b10d-7757788b8203)) - (segment (start 75.45 70.5) (end 75.45 69.1776) (width 0.5) (layer "F.Cu") (net 2) (tstamp 85ae0676-f861-4514-b9fb-20bc3f549861)) - (segment (start 92.6 105.1) (end 92.8 104.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp 9b587819-d52a-49cb-9dab-e60a2c588bcd)) - (segment (start 174.2 52.225) (end 174.2 54) (width 0.25) (layer "F.Cu") (net 2) (tstamp b584625e-256c-4476-88cd-af81c321d26a)) - (segment (start 92.05 104.85) (end 92.3 105.1) (width 0.25) (layer "F.Cu") (net 2) (tstamp bd2fcea9-2d79-4197-9d49-eeb248b865cc)) - (segment (start 92.05 104.8) (end 92.05 104.85) (width 0.25) (layer "F.Cu") (net 2) (tstamp bde9786c-a7cc-4f48-8142-cf2173909ee0)) - (segment (start 91.3 103.7) (end 91.45 103.55) (width 0.25) (layer "F.Cu") (net 2) (tstamp bed534f0-4c66-412a-82f7-4ba52b42ed9a)) - (segment (start 68.45 54.8) (end 70.5 54.8) (width 1) (layer "F.Cu") (net 2) (tstamp bede1092-872b-4e49-9d3a-d552aec96b57)) - (segment (start 67.44 76.545) (end 67.44 77.46) (width 0.25) (layer "F.Cu") (net 2) (tstamp cc2cc001-3014-4352-a9f3-8f23cffbd334)) - (segment (start 91.3 103.8) (end 91.3 103.7) (width 0.25) (layer "F.Cu") (net 2) (tstamp d0742770-7d3f-454e-b2d5-217f8c198464)) - (segment (start 68.7925 49.93625) (end 68.7925 52.392502) (width 0.25) (layer "F.Cu") (net 2) (tstamp e2543627-5409-4a7b-8859-04e0792eebb7)) - (segment (start 170.2375 39.2) (end 171.8 39.2) (width 0.2) (layer "F.Cu") (net 2) (tstamp f57881b5-c9c9-4bcf-be4b-dd8cfd505873)) - (segment (start 176 52.1875) (end 176 53.9) (width 0.25) (layer "F.Cu") (net 2) (tstamp fccd36d1-d574-415c-88e5-a02709365d94)) - (via (at 87.6 118.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b2ad)) - (via (at 85.6 118.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b2b3)) - (via (at 85.6 116.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b2b9)) - (via (at 87.6 116.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b2bf)) - (via (at 89.6 116.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b2c5)) - (via (at 89.6 114.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b2cb)) - (via (at 87.6 114.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b2d1)) - (via (at 85.6 114.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b2d7)) - (via (at 83.6 114.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b2dd)) - (via (at 81.6 114.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b2e3)) - (via (at 79.6 114.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b2e9)) - (via (at 77.6 114.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b2ef)) - (via (at 75.6 114.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b2f5)) - (via (at 73.6 114.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b2fb)) - (via (at 71.6 114.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b301)) - (via (at 69.6 114.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b307)) - (via (at 69.6 112.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b30d)) - (via (at 71.6 112.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b313)) - (via (at 73.6 112.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b319)) - (via (at 75.6 112.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b31f)) - (via (at 77.6 112.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b325)) - (via (at 79.6 112.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b32b)) - (via (at 81.6 112.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b331)) - (via (at 83.6 112.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b337)) - (via (at 108.6 97.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b448)) - (via (at 107.6 97.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b44e)) - (via (at 106.6 97.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b454)) - (via (at 105.6 97.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b45a)) - (via (at 104.6 97.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b460)) - (via (at 103.6 97.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b466)) - (via (at 102.6 97.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b46c)) - (via (at 101.6 97.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b472)) - (via (at 100.6 97.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b478)) - (via (at 99.6 97.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b47e)) - (via (at 98.6 97.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b484)) - (via (at 89.6 126.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b48a)) - (via (at 87.6 126.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b490)) - (via (at 85.6 126.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b496)) - (via (at 85.6 124.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b49c)) - (via (at 87.6 124.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b4a2)) - (via (at 89.6 124.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b4a8)) - (via (at 89.6 122.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b4ae)) - (via (at 87.6 122.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b4b4)) - (via (at 85.6 122.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b4ba)) - (via (at 85.6 120.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b4c0)) - (via (at 87.6 120.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b4c6)) - (via (at 89.6 120.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b4cc)) - (via (at 89.6 118.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b4d2)) - (via (at 94.6 99.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b53b)) - (via (at 95.6 99.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b541)) - (via (at 96.6 99.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b547)) - (via (at 97.6 99.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b54a)) - (via (at 82.6 93.2) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b550)) - (via (at 101.1 63.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b55f)) - (via (at 95.6 42.1) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b568)) - (via (at 110.6 45.3) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b571)) - (via (at 126.6 44.2) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b577)) - (via (at 64.2 78.7) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b57d)) - (via (at 95.4 102.2) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b5b3)) - (via (at 94.6 103.2) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b5b6)) - (via (at 95.4 103.2) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b5b9)) - (via (at 71.6 108.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b604)) - (via (at 69.6 108.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b60a)) - (via (at 69.6 106.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b610)) - (via (at 71.6 106.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b616)) - (via (at 89.6 106.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b64c)) - (via (at 103.6 100.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b655)) - (via (at 103.6 99.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b65b)) - (via (at 104.6 99.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b661)) - (via (at 105.6 99.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b667)) - (via (at 106.6 99.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b66d)) - (via (at 107.6 99.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b673)) - (via (at 108.6 100.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b679)) - (via (at 107.6 100.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b67f)) - (via (at 106.6 100.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b685)) - (via (at 105.6 100.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b68b)) - (via (at 104.6 100.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b691)) - (via (at 95.7 106.2) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b6c7)) - (via (at 94.4 106.2) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b6cd)) - (via (at 94.4 107.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b6d3)) - (via (at 94.4 108.8) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b6e5)) - (via (at 92.5 108.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b6ee)) - (via (at 94.4 104.7) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b6fa)) - (via (at 69.1775 75.98875) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b709)) - (via (at 70.0025 75.98875) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b70c)) - (via (at 69.1775 75.27625) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b70f)) - (via (at 69.1775 74.56375) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b712)) - (via (at 70 74.56) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b715)) - (via (at 69.1775 73.85125) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b718)) - (via (at 70.0025 73.85125) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b71b)) - (via (at 104.6 101.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b742)) - (via (at 105.6 101.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b748)) - (via (at 106.6 101.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b74e)) - (via (at 107.6 101.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b754)) - (via (at 108.6 101.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b75a)) - (via (at 108.6 102.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b760)) - (via (at 107.6 102.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b766)) - (via (at 106.6 102.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b76c)) - (via (at 105.6 102.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b76f)) - (via (at 87.6 98.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b7a2)) - (via (at 88.6 98.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b7a5)) - (via (at 92.6 98.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b7ae)) - (via (at 93.6 98.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b7b4)) - (via (at 94.6 98.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b7ba)) - (via (at 95.6 98.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b7c0)) - (via (at 96.6 98.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b7c6)) - (via (at 97.6 98.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b7cc)) - (via (at 79.6 130) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b9a6)) - (via (at 73.65 129.99) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b9ac)) - (via (at 66.7 129.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b9af)) - (via (at 85.6 112.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70bc34)) - (via (at 87.6 112.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70bc3a)) - (via (at 89.6 112.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70bc40)) - (via (at 89.6 110.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70bc46)) - (via (at 87.6 110.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70bc4c)) - (via (at 85.6 110.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70bc52)) - (via (at 83.6 110.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70bc58)) - (via (at 81.6 110.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70bc5e)) - (via (at 79.6 110.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70bc64)) - (via (at 77.6 110.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70bc6a)) - (via (at 75.6 110.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70bc70)) - (via (at 73.6 110.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70bc76)) - (via (at 71.6 110.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70bc7c)) - (via (at 69.6 110.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70bc82)) - (via (at 89.6 108.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70bc8e)) - (via (at 106.6 96.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c057)) - (via (at 105.6 96.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c05d)) - (via (at 104.6 96.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c063)) - (via (at 103.6 96.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c069)) - (via (at 102.6 96.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c06f)) - (via (at 101.6 96.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c075)) - (via (at 100.6 96.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c07b)) - (via (at 99.6 96.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c081)) - (via (at 98.6 96.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c087)) - (via (at 97.6 96.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c08d)) - (via (at 96.6 96.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c093)) - (via (at 95.6 96.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c099)) - (via (at 94.6 96.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c09f)) - (via (at 93.6 96.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c0a5)) - (via (at 92.6 96.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c0ab)) - (via (at 91.6 96.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c0b1)) - (via (at 90.6 96.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c0b7)) - (via (at 89.6 96.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c0bd)) - (via (at 88.6 96.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c0c3)) - (via (at 87.6 96.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c0c9)) - (via (at 65.3 52.1) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c1c5)) - (via (at 94.6 101.2) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c1c8)) - (via (at 95.4 101.2) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c1cb)) - (via (at 94.6 102.2) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c1ce)) - (via (at 76.6 45.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c285)) - (via (at 70.0025 75.27625) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c28e)) - (via (at 88.7 104.7) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c294)) - (via (at 127 57.8) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c29d)) - (via (at 111.7 55.6) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c2af)) - (via (at 73.7 85.8) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c55e)) - (via (at 79.65 85.81) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c561)) - (via (at 85.6 85.8) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c56a)) - (via (at 91.75 85.81) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c56d)) - (via (at 97.7 85.8) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c576)) - (via (at 103.75 85.81) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c579)) - (via (at 110.79 85.81) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c57c)) - (via (at 110.79 92.85) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c57f)) - (via (at 103.75 129.99) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c58b)) - (via (at 68.33 85.81) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c594)) - (via (at 66.61 87.53) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c59d)) - (via (at 109.07 85.81) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c5a6)) - (via (at 110.79 87.53) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c5af)) - (via (at 110.79 128.27) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c5b8)) - (via (at 109.07 129.99) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c5c1)) - (via (at 66.61 128.27) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c5ca)) - (via (at 68.33 129.99) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c5d3)) - (via (at 95.7 104.7) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c5d6)) - (via (at 97.6 97.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70ca80)) - (via (at 96.6 97.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70ca86)) - (via (at 95.6 97.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70ca8c)) - (via (at 94.6 97.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70ca92)) - (via (at 93.6 97.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70ca98)) - (via (at 92.6 97.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70ca9e)) - (via (at 91.6 97.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70caa4)) - (via (at 90.6 97.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70caaa)) - (via (at 89.6 97.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cab0)) - (via (at 88.6 97.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cab6)) - (via (at 87.6 97.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cabc)) - (via (at 89.6 98.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cae3)) - (via (at 90.6 98.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cae9)) - (via (at 91.6 98.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70caef)) - (via (at 91.6 99.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70caf5)) - (via (at 92.6 99.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cafb)) - (via (at 93.6 99.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cb01)) - (via (at 110.8 98.8) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cb52)) - (via (at 110.79 104.85) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cb55)) - (via (at 110.8 111) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cb5e)) - (via (at 110.79 116.95) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cb61)) - (via (at 110.8 123) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cb6a)) - (via (at 110.79 129.99) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cb6d)) - (via (at 97.75 129.99) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cb73)) - (via (at 91.7 130.1) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cb79)) - (via (at 85.65 129.99) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cb7f)) - (via (at 66.5 117) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cbac)) - (via (at 66.61 110.95) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cbaf)) - (via (at 66.6 104.8) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cbb8)) - (via (at 66.61 98.85) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cbbb)) - (via (at 66.6 92.8) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cbc4)) - (via (at 66.61 85.81) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cbc7)) - (via (at 101.85 45.65) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd14)) - (via (at 99.85 57.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd1d)) - (via (at 78.1 49.7) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd41)) - (via (at 75.8 76.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd59)) - (via (at 91.3 66.7) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd62)) - (via (at 97.1 58.8) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd6b)) - (via (at 170.2 50.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd6e)) - (via (at 180.85 45.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd77)) - (via (at 131.1 55.8) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd83)) - (via (at 74.175 48.65) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cd92)) - (via (at 108.6 96.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cdaa)) - (via (at 107.6 96.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cdb0)) - (via (at 66.61 122.95) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70ceaf)) - (via (at 57.3 131.1) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00006155394b)) - (via (at 58.3 131.1) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00006155394d)) - (via (at 56.3 132.1) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00006155394f)) - (via (at 57.3 132.1) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-000061553951)) - (via (at 58.3 132.1) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-000061553953)) - (via (at 56.3 133.1) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-000061553955)) - (via (at 57.3 133.1) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-000061553957)) - (via (at 58.3 133.1) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-000061553959)) - (via (at 75.7 95) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 1a583d77-1271-468e-9e6d-48c6b4b96c33)) - (via (at 86.5 67.25) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 228e687f-46bf-4c71-b216-27a36bf502b3)) - (via (at 68.799998 52.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 31d58769-4cff-4557-a551-62670289ca77)) - (via (at 74.2 54.8) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 50383816-a4cc-4b5e-9339-20372903bf5c)) - (via (at 75.4507 69.1769) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 5fd956ea-65d6-43f8-ada9-d42beef6dfb4)) - (via (at 71.305 65.405) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp 66f6f596-d133-4b42-be47-c4fe19e2ffad)) - (via (at 171.8 39.2) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp a39bff73-ba40-4b6f-b0a8-69b4aafc2399)) - (via (at 73.3 54.8) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp ab43ca15-9c06-47f9-b257-1383a2b21523)) - (via (at 71.5 54.8) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp ae6839cd-d76e-41ae-9d9d-d53496654de7)) - (via (at 159.75 60.75) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp b71ddef6-c4f1-4638-88a2-70b8198ce713)) - (via (at 75.4 67.1) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp b816ca3f-a882-4972-80a7-12605138b1a3)) - (via (at 70.5 54.8) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp d04e4a25-fea8-400a-b78a-19b8bbedb78b)) - (via (at 174.2 54) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp d0dc6cb1-608d-4c01-bd2e-8bd0c1c4df03)) - (via (at 176 53.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp dbbfe389-3bd0-4aa8-a1bc-1597f4364d65)) - (via (at 56.3 131.1) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp e0e2ca39-d81d-4638-b2d7-b3eff9325a7e)) - (via (at 67.4 77.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp e547fe25-99ba-4e40-b44f-26baa2850f1a)) - (via (at 80.4799 69.2658) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp e7c62455-092d-4b40-96ae-88b150e3c5b0)) - (via (at 72.4 54.8) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp eecc54f1-353d-4bbc-bb3a-293df7de7d03)) - (via (at 164.7 41.3) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp fcddc2de-8d05-432b-bb70-fda429d1e840)) - (segment (start 87.6 116.9) (end 85.6 116.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b2b6)) - (segment (start 89.6 114.9) (end 89.6 116.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b2c2)) - (segment (start 85.6 114.9) (end 87.6 114.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b2ce)) - (segment (start 81.6 114.9) (end 83.6 114.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b2da)) - (segment (start 77.6 114.9) (end 79.6 114.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b2e6)) - (segment (start 73.6 114.9) (end 75.6 114.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b2f2)) - (segment (start 69.6 114.9) (end 71.6 114.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b2fe)) - (segment (start 71.6 112.9) (end 69.6 112.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b30a)) - (segment (start 75.6 112.9) (end 73.6 112.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b316)) - (segment (start 79.6 112.9) (end 77.6 112.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b322)) - (segment (start 83.6 112.9) (end 81.6 112.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b32e)) - (segment (start 87.6 112.9) (end 85.6 112.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b33a)) - (segment (start 106.6 97.4) (end 107.6 97.4) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b44b)) - (segment (start 104.6 97.4) (end 105.6 97.4) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b457)) - (segment (start 102.6 97.4) (end 103.6 97.4) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b463)) - (segment (start 100.6 97.4) (end 101.6 97.4) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b46f)) - (segment (start 98.6 97.4) (end 99.6 97.4) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b47b)) - (segment (start 85.6 126.9) (end 87.6 126.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b48d)) - (segment (start 87.6 124.9) (end 85.6 124.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b499)) - (segment (start 89.6 122.9) (end 89.6 124.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b4a5)) - (segment (start 85.6 122.9) (end 87.6 122.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b4b1)) - (segment (start 87.6 120.9) (end 85.6 120.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b4bd)) - (segment (start 89.6 118.9) (end 89.6 120.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b4c9)) - (segment (start 85.6 118.9) (end 87.6 118.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b4d5)) - (segment (start 95.6 99.4) (end 94.6 99.4) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b538)) - (segment (start 97.6 99.4) (end 96.6 99.4) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b544)) - (segment (start 71.6 106.9) (end 69.6 106.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b60d)) - (segment (start 104.6 99.9) (end 103.6 99.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b658)) - (segment (start 106.6 99.9) (end 105.6 99.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b664)) - (segment (start 108.6 100.9) (end 107.6 99.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b670)) - (segment (start 106.6 100.9) (end 107.6 100.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b67c)) - (segment (start 104.6 100.9) (end 105.6 100.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b688)) - (segment (start 105.6 101.9) (end 104.6 101.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b694)) - (segment (start 95.7 106.2) (end 94.4 106.2) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b6ca)) - (segment (start 92.5 108.9) (end 90.5 106.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b6f1)) - (segment (start 90.5 106.9) (end 89.6 106.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b6f4)) - (segment (start 94.4 104.7) (end 95.7 104.7) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b6fd)) - (segment (start 107.6 101.9) (end 106.6 101.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b74b)) - (segment (start 108.6 102.9) (end 108.6 101.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b757)) - (segment (start 106.6 102.9) (end 107.6 102.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b763)) - (segment (start 93.6 98.4) (end 92.6 98.4) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b7ab)) - (segment (start 95.6 98.4) (end 94.6 98.4) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b7b7)) - (segment (start 97.6 98.4) (end 96.6 98.4) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70b7c3)) - (segment (start 89.6 110.9) (end 89.6 112.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70bc3d)) - (segment (start 85.6 110.9) (end 87.6 110.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70bc49)) - (segment (start 81.6 110.9) (end 83.6 110.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70bc55)) - (segment (start 77.6 110.9) (end 79.6 110.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70bc61)) - (segment (start 73.6 110.9) (end 75.6 110.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70bc6d)) - (segment (start 69.6 110.9) (end 71.6 110.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70bc79)) - (segment (start 89.6 108.9) (end 89.6 111.1) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70bc85)) - (segment (start 89.6 108.8) (end 89.6 108.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70bc88)) - (segment (start 69.6 108.9) (end 71.6 108.9) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70bcc1)) - (segment (start 105.6 96.4) (end 106.6 96.4) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c054)) - (segment (start 103.6 96.4) (end 104.6 96.4) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c060)) - (segment (start 101.6 96.4) (end 102.6 96.4) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c06c)) - (segment (start 99.6 96.4) (end 100.6 96.4) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c078)) - (segment (start 97.6 96.4) (end 98.6 96.4) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c084)) - (segment (start 95.6 96.4) (end 96.6 96.4) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c090)) - (segment (start 93.6 96.4) (end 94.6 96.4) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c09c)) - (segment (start 91.6 96.4) (end 92.6 96.4) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c0a8)) - (segment (start 89.6 96.4) (end 90.6 96.4) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c0b4)) - (segment (start 87.6 96.4) (end 88.6 96.4) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70c0c0)) - (segment (start 96.6 97.4) (end 97.6 97.4) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70ca7d)) - (segment (start 94.6 97.4) (end 95.6 97.4) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70ca89)) - (segment (start 92.6 97.4) (end 93.6 97.4) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70ca95)) - (segment (start 90.6 97.4) (end 91.6 97.4) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70caa1)) - (segment (start 88.6 97.4) (end 89.6 97.4) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70caad)) - (segment (start 90.6 98.4) (end 89.6 98.4) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cae0)) - (segment (start 91.6 99.4) (end 91.6 98.4) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70caec)) - (segment (start 93.6 99.4) (end 92.6 99.4) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70caf8)) - (segment (start 107.6 96.4) (end 108.6 96.4) (width 0.25) (layer "B.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005f70cda7)) - (segment (start 68.7475 49.28625) (end 67.41375 49.28625) (width 0.25) (layer "F.Cu") (net 3) (tstamp 00000000-0000-0000-0000-00005f70c231)) - (segment (start 68.7475 47.33625) (end 67.53625 47.33625) (width 0.25) (layer "F.Cu") (net 3) (tstamp 00000000-0000-0000-0000-00005f70c234)) - (segment (start 68.7925 46.68625) (end 68.7925 45.6075) (width 0.25) (layer "F.Cu") (net 3) (tstamp 00000000-0000-0000-0000-00005f70c237)) - (segment (start 68.7925 47.98625) (end 67.71375 47.98625) (width 0.25) (layer "F.Cu") (net 3) (tstamp 00000000-0000-0000-0000-00005f70c23a)) - (segment (start 68.7925 46.68625) (end 67.71375 46.68625) (width 0.25) (layer "F.Cu") (net 3) (tstamp 00000000-0000-0000-0000-00005f70c23d)) - (segment (start 60.638002 50.71) (end 60.44 50.71) (width 1.5) (layer "F.Cu") (net 3) (tstamp 0ada491f-7b3a-4275-b2ca-22fca6089023)) - (segment (start 55.36 50.71) (end 60.44 50.71) (width 1.5) (layer "F.Cu") (net 3) (tstamp 58566856-5539-42fb-a348-d1f63282f371)) - (segment (start 64.15 54.8) (end 64.15 54.221998) (width 1.5) (layer "F.Cu") (net 3) (tstamp 5e337a7c-5c7e-412e-b445-f14ae21eb616)) - (segment (start 60.44 50.71) (end 60.79 50.71) (width 1.5) (layer "F.Cu") (net 3) (tstamp 644bbd24-d19c-4ac4-8536-811a45903237)) - (segment (start 63.55 47.95) (end 65.35 47.95) (width 1.5) (layer "F.Cu") (net 3) (tstamp a3049de8-f8f1-485d-b5d4-7c1d239712c3)) - (segment (start 60.79 50.71) (end 63.55 47.95) (width 1.5) (layer "F.Cu") (net 3) (tstamp bcfc8ebe-3259-407f-9ca0-83b908ed29de)) - (segment (start 64.15 54.221998) (end 60.638002 50.71) (width 1.5) (layer "F.Cu") (net 3) (tstamp fff14835-a6f2-47f8-9733-ef3f4514ad5e)) - (via (at 70.485 47.2425) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 3) (tstamp 00000000-0000-0000-0000-00005f70c25b)) - (via (at 71.31 47.2425) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 3) (tstamp 00000000-0000-0000-0000-00005f70c267)) - (via (at 71.31 47.955) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 3) (tstamp 00000000-0000-0000-0000-00005f70c26a)) - (via (at 70.485 47.955) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 3) (tstamp 00000000-0000-0000-0000-00005f70c26d)) - (via (at 70.485 48.6675) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 3) (tstamp 00000000-0000-0000-0000-00005f70c270)) - (via (at 71.31 48.6675) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 3) (tstamp 00000000-0000-0000-0000-00005f70c273)) - (via (at 70.485 49.38) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 3) (tstamp 00000000-0000-0000-0000-00005f70c276)) - (via (at 71.31 49.38) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 3) (tstamp 00000000-0000-0000-0000-00005f70c279)) - (via (at 66 42) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 3) (tstamp 00000000-0000-0000-0000-00006154c374)) - (via (at 64.5 43.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 3) (tstamp 00000000-0000-0000-0000-00006154c37a)) - (via (at 66 43.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 3) (tstamp 00000000-0000-0000-0000-00006154c37c)) - (via (at 64.5 45) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 3) (tstamp 00000000-0000-0000-0000-00006154c382)) - (via (at 66 45) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 3) (tstamp 00000000-0000-0000-0000-00006154c384)) - (via (at 67.5 45) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 3) (tstamp 00000000-0000-0000-0000-00006154c386)) - (via (at 69 45) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 3) (tstamp 00000000-0000-0000-0000-00006154c388)) - (via (at 64.5 42) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 3) (tstamp 72263aa2-32c4-4252-a768-30b77365cca2)) - (segment (start 111.4 51.9) (end 129.75 51.9) (width 0.5) (layer "F.Cu") (net 4) (tstamp 00000000-0000-0000-0000-00005f70c213)) - (segment (start 110.535 51.9) (end 111.4 51.9) (width 0.5) (layer "F.Cu") (net 4) (tstamp 00000000-0000-0000-0000-00005f70c216)) - (segment (start 101.9 51.9) (end 110.535 51.9) (width 0.5) (layer "F.Cu") (net 4) (tstamp 00000000-0000-0000-0000-00005f70c219)) - (segment (start 100.9 52.1) (end 101.1 51.9) (width 0.5) (layer "F.Cu") (net 4) (tstamp 00000000-0000-0000-0000-00005f70c21c)) - (segment (start 101.1 51.9) (end 101.9 51.9) (width 0.5) (layer "F.Cu") (net 4) (tstamp 00000000-0000-0000-0000-00005f70c21f)) - (segment (start 100.9 54.1) (end 100.9 52.1) (width 0.5) (layer "F.Cu") (net 4) (tstamp 00000000-0000-0000-0000-00005f70c222)) - (segment (start 110.535 54.1) (end 110.535 51.9) (width 0.5) (layer "F.Cu") (net 4) (tstamp 00000000-0000-0000-0000-00005f70c225)) - (segment (start 110.535 54.1) (end 110.535 56.5725) (width 0.5) (layer "F.Cu") (net 4) (tstamp 00000000-0000-0000-0000-00005f70c6c0)) - (segment (start 110.535 56.5725) (end 110.5625 56.6) (width 0.5) (layer "F.Cu") (net 4) (tstamp 00000000-0000-0000-0000-00005f70c6c3)) - (segment (start 100.9 56.3625) (end 100.9 54.1) (width 0.5) (layer "F.Cu") (net 4) (tstamp 00000000-0000-0000-0000-00005f70c6c6)) - (segment (start 170.395 48.805) (end 170.05 49.15) (width 0.25) (layer "F.Cu") (net 4) (tstamp 00000000-0000-0000-0000-00005f70c6c9)) - (segment (start 170.05 49.15) (end 169.1 49.15) (width 0.25) (layer "F.Cu") (net 4) (tstamp 00000000-0000-0000-0000-00005f70c6cc)) - (segment (start 171.4 48.805) (end 170.395 48.805) (width 0.25) (layer "F.Cu") (net 4) (tstamp 00000000-0000-0000-0000-00005f70c6cf)) - (segment (start 129.75 51.9) (end 132.2 51.9) (width 0.5) (layer "F.Cu") (net 4) (tstamp 00000000-0000-0000-0000-00005f70c6d2)) - (segment (start 132.2 51.9) (end 144.4 51.9) (width 0.5) (layer "F.Cu") (net 4) (tstamp 00000000-0000-0000-0000-00005f70c6d5)) - (segment (start 132.1 54.25) (end 132.1 52) (width 0.25) (layer "F.Cu") (net 4) (tstamp 00000000-0000-0000-0000-00005f70c6d8)) - (segment (start 132.1 52) (end 132.2 51.9) (width 0.25) (layer "F.Cu") (net 4) (tstamp 00000000-0000-0000-0000-00005f70c6db)) - (segment (start 131.25 54.25) (end 131.2 54.2) (width 0.25) (layer "F.Cu") (net 4) (tstamp 00000000-0000-0000-0000-00005f70c6de)) - (segment (start 131.2 54.2) (end 130.405 54.2) (width 0.25) (layer "F.Cu") (net 4) (tstamp 00000000-0000-0000-0000-00005f70c6e1)) - (segment (start 132.1 54.25) (end 131.25 54.25) (width 0.25) (layer "F.Cu") (net 4) (tstamp 00000000-0000-0000-0000-00005f70c6e4)) - (segment (start 83.4 53.4) (end 84.9 51.9) (width 0.5) (layer "F.Cu") (net 4) (tstamp 00000000-0000-0000-0000-00005f70c6f0)) - (segment (start 83.4 70.2) (end 83.4 53.4) (width 0.5) (layer "F.Cu") (net 4) (tstamp 00000000-0000-0000-0000-00005f70cba0)) - (segment (start 84.9 51.9) (end 102 51.9) (width 0.5) (layer "F.Cu") (net 4) (tstamp 00000000-0000-0000-0000-00005f70cba3)) - (segment (start 73.3 73.9) (end 73.255 73.945) (width 0.25) (layer "F.Cu") (net 4) (tstamp 3022579f-b1a2-487e-814c-db193073aa97)) - (segment (start 73.3 73.3) (end 73.3 73.9) (width 0.25) (layer "F.Cu") (net 4) (tstamp 3cad1dda-2f7b-41a1-9458-ef83e7c21ee1)) - (segment (start 71.695 74.595) (end 73.205 74.595) (width 0.25) (layer "F.Cu") (net 4) (tstamp 404b6548-6540-4b6b-9207-34d947483f74)) - (segment (start 71.695 73.295) (end 73.295 73.295) (width 0.25) (layer "F.Cu") (net 4) (tstamp 4329fdf5-6250-438d-8659-8ea773b1d1fa)) - (segment (start 68.765 66.265) (end 68.765 63.675) (width 0.5) (layer "F.Cu") (net 4) (tstamp 720775db-3021-4d2f-ad19-0d71c433bbc1)) - (segment (start 69.6 67.1) (end 68.765 66.265) (width 0.5) (layer "F.Cu") (net 4) (tstamp 7380ac1d-fc0a-40cc-ac6d-59fcc4b4c293)) - (segment (start 71.1 69.4) (end 71.1 67.1) (width 0.5) (layer "F.Cu") (net 4) (tstamp 82ca9713-76e4-410d-ab0c-e33db44be4a7)) - (segment (start 71.695 72.405) (end 71.695 73.295) (width 0.25) (layer "F.Cu") (net 4) (tstamp 88c498c9-2e37-4e34-8c4c-0d92496526fb)) - (segment (start 71.1 69.7) (end 71.1 69.4) (width 0.5) (layer "F.Cu") (net 4) (tstamp 9d48f963-1cee-46b7-9262-acdd1f4625f3)) - (segment (start 71.1 71.81) (end 71.695 72.405) (width 0.25) (layer "F.Cu") (net 4) (tstamp a0690737-64f9-4087-8003-54fd6b993b40)) - (segment (start 73.255 73.945) (end 71.695 73.945) (width 0.25) (layer "F.Cu") (net 4) (tstamp a89026d0-f8d7-4cd0-a895-8f38465ed793)) - (segment (start 73.205 74.595) (end 73.3 74.5) (width 0.25) (layer "F.Cu") (net 4) (tstamp acd07a39-e062-4fbc-ae69-cbced1445345)) - (segment (start 71.1 67.1) (end 69.6 67.1) (width 0.5) (layer "F.Cu") (net 4) (tstamp ad08e5d4-999e-4573-a2c5-ea4aea5fe9da)) - (segment (start 73.295 73.295) (end 73.3 73.3) (width 0.25) (layer "F.Cu") (net 4) (tstamp df0bab81-f59b-42b7-b223-41ca6ef77aaa)) - (segment (start 73.3 74.5) (end 73.3 73.9) (width 0.25) (layer "F.Cu") (net 4) (tstamp dfa09420-4d0e-4048-93d3-d51e6b69552a)) - (segment (start 71.1 69.4) (end 71.1 71.81) (width 0.25) (layer "F.Cu") (net 4) (tstamp f53e0c25-3ad3-4343-8fdf-426ce77a04fa)) - (segment (start 173.095 48.805) (end 171.4 48.805) (width 0.5) (layer "F.Cu") (net 4) (tstamp feaa0fb2-4dc3-4764-a4ea-a208103e5101)) - (segment (start 173.3 48.6) (end 173.095 48.805) (width 0.5) (layer "F.Cu") (net 4) (tstamp ff80b2f5-c0d2-44a7-836b-42a38032e39a)) - (via (at 173.3 48.6) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 4) (tstamp 00000000-0000-0000-0000-00005f70cb8b)) - (via (at 144.4 51.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 4) (tstamp 00000000-0000-0000-0000-00005f70cb9d)) - (segment (start 173.3 48.6) (end 173.3 45.189962) (width 0.5) (layer "B.Cu") (net 4) (tstamp 16f851bc-013a-4f65-af4e-e5450f505615)) - (segment (start 155.59999 44.00001) (end 147.7 51.9) (width 0.5) (layer "B.Cu") (net 4) (tstamp 303eb22a-469d-4eac-a74c-c2b2b61bdb1f)) - (segment (start 173.3 45.189962) (end 172.110048 44.00001) (width 0.5) (layer "B.Cu") (net 4) (tstamp 3b7c9f35-92fc-4808-8bd2-2bf57c386569)) - (segment (start 147.7 51.9) (end 144.4 51.9) (width 0.5) (layer "B.Cu") (net 4) (tstamp e688855d-c369-47b2-be38-e4d599fb4cb6)) - (segment (start 172.110048 44.00001) (end 155.59999 44.00001) (width 0.5) (layer "B.Cu") (net 4) (tstamp ed56bbf8-27e4-4e19-8498-d0c02d1da8d1)) - (segment (start 87 102.8) (end 84.05 102.8) (width 0.75) (layer "F.Cu") (net 5) (tstamp 00000000-0000-0000-0000-00005f70d1a9)) - (segment (start 87.0625 102.8625) (end 87 102.8) (width 0.75) (layer "F.Cu") (net 5) (tstamp 00000000-0000-0000-0000-00005f70d1ac)) - (segment (start 90.2 102.8625) (end 87.0625 102.8625) (width 0.75) (layer "F.Cu") (net 5) (tstamp 00000000-0000-0000-0000-00005f70d1af)) - (segment (start 91.15 102.55) (end 90.9 102.8) (width 0.25) (layer "F.Cu") (net 5) (tstamp 00000000-0000-0000-0000-00005f70d1b2)) - (segment (start 92.8 102.55) (end 91.15 102.55) (width 0.25) (layer "F.Cu") (net 5) (tstamp 00000000-0000-0000-0000-00005f70d1b5)) - (segment (start 90.9 102.8) (end 90.2 102.8) (width 0.25) (layer "F.Cu") (net 5) (tstamp 00000000-0000-0000-0000-00005f70d1b8)) - (segment (start 91.15 103.05) (end 90.9 102.8) (width 0.25) (layer "F.Cu") (net 5) (tstamp 00000000-0000-0000-0000-00005f70d1bb)) - (segment (start 92.8 103.05) (end 91.15 103.05) (width 0.25) (layer "F.Cu") (net 5) (tstamp 00000000-0000-0000-0000-00005f70d1be)) - (segment (start 92.8 102.05) (end 90.95 102.05) (width 0.25) (layer "F.Cu") (net 5) (tstamp 00000000-0000-0000-0000-00005f70d1c1)) - (segment (start 90.95 102.05) (end 90.2 102.8) (width 0.25) (layer "F.Cu") (net 5) (tstamp 00000000-0000-0000-0000-00005f70d1c4)) - (segment (start 89.8875 99.6) (end 90.3 99.6) (width 0.2) (layer "F.Cu") (net 6) (tstamp 00000000-0000-0000-0000-00005f70d1a0)) - (segment (start 90.3 99.6) (end 91.75 101.05) (width 0.2) (layer "F.Cu") (net 6) (tstamp 00000000-0000-0000-0000-00005f70d1a3)) - (segment (start 91.75 101.05) (end 92.8 101.05) (width 0.2) (layer "F.Cu") (net 6) (tstamp 00000000-0000-0000-0000-00005f70d1a6)) - (segment (start 97.15 102.05) (end 100.05 102.05) (width 0.2) (layer "F.Cu") (net 7) (tstamp 00000000-0000-0000-0000-00005f70d197)) - (segment (start 100.05 102.05) (end 100.9 102.9) (width 0.2) (layer "F.Cu") (net 7) (tstamp 00000000-0000-0000-0000-00005f70d19a)) - (segment (start 100.9 102.9) (end 101.6625 102.9) (width 0.2) (layer "F.Cu") (net 7) (tstamp 00000000-0000-0000-0000-00005f70d19d)) - (segment (start 71.695 75.895) (end 73.745 75.895) (width 0.25) (layer "F.Cu") (net 8) (tstamp 00000000-0000-0000-0000-00005f70bdd2)) - (segment (start 73.745 75.895) (end 73.75 75.9) (width 0.25) (layer "F.Cu") (net 8) (tstamp 00000000-0000-0000-0000-00005f70d18b)) - (segment (start 74 77.4) (end 73.75 77.15) (width 0.25) (layer "F.Cu") (net 8) (tstamp 00000000-0000-0000-0000-00005f70d18e)) - (segment (start 73.75 77.15) (end 73.75 75.9) (width 0.25) (layer "F.Cu") (net 8) (tstamp 00000000-0000-0000-0000-00005f70d191)) - (segment (start 74 78.5) (end 74 77.4) (width 0.25) (layer "F.Cu") (net 8) (tstamp 00000000-0000-0000-0000-00005f70d194)) - (segment (start 76.2 50.9) (end 75.1 50.9) (width 0.25) (layer "F.Cu") (net 9) (tstamp 00000000-0000-0000-0000-00005f70bdba)) - (segment (start 76.2 51.7) (end 76.8125 52.3125) (width 0.25) (layer "F.Cu") (net 9) (tstamp 00000000-0000-0000-0000-00005f70bdbd)) - (segment (start 76.8125 52.3125) (end 76.8125 52.9) (width 0.25) (layer "F.Cu") (net 9) (tstamp 00000000-0000-0000-0000-00005f70bdc0)) - (segment (start 76.2 50.9) (end 76.2 51.7) (width 0.25) (layer "F.Cu") (net 9) (tstamp 00000000-0000-0000-0000-00005f70bdc3)) - (segment (start 74.6 50.4) (end 75.1 50.9) (width 0.25) (layer "F.Cu") (net 9) (tstamp 00000000-0000-0000-0000-00005f70bdc6)) - (segment (start 74.6 50) (end 74.6 50.4) (width 0.25) (layer "F.Cu") (net 9) (tstamp 00000000-0000-0000-0000-00005f70bdc9)) - (segment (start 73.88625 49.28625) (end 74.6 50) (width 0.25) (layer "F.Cu") (net 9) (tstamp 00000000-0000-0000-0000-00005f70bdcc)) - (segment (start 73.0025 49.28625) (end 73.88625 49.28625) (width 0.25) (layer "F.Cu") (net 9) (tstamp 00000000-0000-0000-0000-00005f70bdcf)) - (segment (start 99.63 53.875) (end 99.63 52.83) (width 0.25) (layer "F.Cu") (net 10) (tstamp 00000000-0000-0000-0000-00005f70d020)) - (segment (start 99.63 52.83) (end 99.3 52.5) (width 0.25) (layer "F.Cu") (net 10) (tstamp 00000000-0000-0000-0000-00005f70d023)) - (segment (start 92.8 64.7) (end 92.8 63.85) (width 0.25) (layer "F.Cu") (net 10) (tstamp 00000000-0000-0000-0000-00005f70d026)) - (segment (start 92.8 63.85) (end 94.3 62.35) (width 0.25) (layer "F.Cu") (net 10) (tstamp 00000000-0000-0000-0000-00005f70d029)) - (segment (start 94.3 62.35) (end 94.3 54.1) (width 0.25) (layer "F.Cu") (net 10) (tstamp 00000000-0000-0000-0000-00005f70d02c)) - (segment (start 94.3 54.1) (end 95.9 52.5) (width 0.25) (layer "F.Cu") (net 10) (tstamp 00000000-0000-0000-0000-00005f70d02f)) - (segment (start 95.9 52.5) (end 99.3 52.5) (width 0.25) (layer "F.Cu") (net 10) (tstamp 00000000-0000-0000-0000-00005f70d032)) - (segment (start 91.3 64.5) (end 91.5 64.7) (width 0.25) (layer "F.Cu") (net 10) (tstamp 00000000-0000-0000-0000-00005f70d035)) - (segment (start 91.5 64.7) (end 92.8 64.7) (width 0.25) (layer "F.Cu") (net 10) (tstamp 00000000-0000-0000-0000-00005f70d038)) - (segment (start 90.5875 64.5) (end 91.3 64.5) (width 0.25) (layer "F.Cu") (net 10) (tstamp 00000000-0000-0000-0000-00005f70d03b)) - (segment (start 99.45 102.55) (end 99.85 102.95) (width 0.2) (layer "F.Cu") (net 11) (tstamp 00000000-0000-0000-0000-00005f70bd9c)) - (segment (start 99.85 102.95) (end 99.85 103.5125) (width 0.2) (layer "F.Cu") (net 11) (tstamp 00000000-0000-0000-0000-00005f70bd9f)) - (segment (start 97.15 102.55) (end 99.45 102.55) (width 0.2) (layer "F.Cu") (net 11) (tstamp 00000000-0000-0000-0000-00005f70bda2)) - (segment (start 99 100.3875) (end 99.8875 100.3875) (width 0.25) (layer "F.Cu") (net 12) (tstamp 00000000-0000-0000-0000-00005f70bd87)) - (segment (start 99.8875 100.3875) (end 99.9 100.4) (width 0.25) (layer "F.Cu") (net 12) (tstamp 00000000-0000-0000-0000-00005f70bd8a)) - (segment (start 100.7125 100.4) (end 99.9 100.4) (width 0.25) (layer "F.Cu") (net 12) (tstamp 00000000-0000-0000-0000-00005f70bd8d)) - (segment (start 100.7125 98.9) (end 100.7125 100.4) (width 0.25) (layer "F.Cu") (net 12) (tstamp 00000000-0000-0000-0000-00005f70bd90)) - (segment (start 98.15 100.55) (end 98.3125 100.3875) (width 0.2) (layer "F.Cu") (net 12) (tstamp 00000000-0000-0000-0000-00005f70bd93)) - (segment (start 98.3125 100.3875) (end 99 100.3875) (width 0.2) (layer "F.Cu") (net 12) (tstamp 00000000-0000-0000-0000-00005f70bd96)) - (segment (start 97.2 100.55) (end 98.15 100.55) (width 0.2) (layer "F.Cu") (net 12) (tstamp 00000000-0000-0000-0000-00005f70bd99)) - (segment (start 94.9875 45.2) (end 98.05 45.2) (width 0.5) (layer "F.Cu") (net 13) (tstamp 00000000-0000-0000-0000-00005f70b802)) - (segment (start 98.05 45.2) (end 98.06 45.19) (width 0.5) (layer "F.Cu") (net 13) (tstamp 00000000-0000-0000-0000-00005f70b805)) - (segment (start 99.63 46.76) (end 98.06 45.19) (width 0.5) (layer "F.Cu") (net 13) (tstamp 00000000-0000-0000-0000-00005f70b808)) - (segment (start 99.63 48.7) (end 99.63 46.76) (width 0.5) (layer "F.Cu") (net 13) (tstamp 00000000-0000-0000-0000-00005f70b80b)) - (segment (start 163.825 38.475) (end 164.7 38.475) (width 0.2) (layer "F.Cu") (net 14) (tstamp 011178d6-4025-413b-baf9-cf0b6cfe3bd2)) - (segment (start 168.3 42.1) (end 171.3 42.1) (width 0.2) (layer "F.Cu") (net 14) (tstamp 063f906b-381a-4e9b-9705-4656f9d949eb)) - (segment (start 161.6 40.125) (end 162.175 40.125) (width 0.2) (layer "F.Cu") (net 14) (tstamp 226355de-58e6-4382-b81d-eb5574981c21)) - (segment (start 166.4375 38.475) (end 164.7 38.475) (width 0.2) (layer "F.Cu") (net 14) (tstamp 23e8f6d6-dc05-413b-bdf4-3972f7aaa452)) - (segment (start 167.1625 39.2) (end 166.4375 38.475) (width 0.2) (layer "F.Cu") (net 14) (tstamp 5effda4f-f509-4c42-bf3f-632077643ed1)) - (segment (start 171.625 42.425) (end 171.625 44.995) (width 0.2) (layer "F.Cu") (net 14) (tstamp 66c9e9dc-66c0-42e4-af7d-d00366d4ce10)) - (segment (start 167.1625 40.9625) (end 168.3 42.1) (width 0.2) (layer "F.Cu") (net 14) (tstamp b9efdb59-2bf9-44e7-832c-7e0204aa6539)) - (segment (start 162.175 40.125) (end 163.825 38.475) (width 0.2) (layer "F.Cu") (net 14) (tstamp cfee214d-0896-49fa-acf5-34e5207a32bd)) - (segment (start 167.1625 39.2) (end 167.1625 40.9625) (width 0.2) (layer "F.Cu") (net 14) (tstamp d7886505-c1bf-4c3e-b2dc-c6b50efcab3f)) - (segment (start 171.3 42.1) (end 171.625 42.425) (width 0.2) (layer "F.Cu") (net 14) (tstamp df0419eb-4e26-41cf-9d0e-5aadf9865d46)) - (segment (start 181.5 47.025) (end 181.5 49.5) (width 0.25) (layer "F.Cu") (net 15) (tstamp 0f3d2bc0-ef2f-498a-bc7c-feccd28d23e5)) - (segment (start 174.2 50.575) (end 175.9625 50.575) (width 0.25) (layer "F.Cu") (net 15) (tstamp 1ca07a16-e8a7-485a-b6ed-4d978fda82e4)) - (segment (start 175.9625 50.575) (end 176 50.6125) (width 0.25) (layer "F.Cu") (net 15) (tstamp 3ee644d5-9b18-4e77-9c7f-dc6fdeec1f43)) - (segment (start 176.835 46.525) (end 181 46.525) (width 0.25) (layer "F.Cu") (net 15) (tstamp 4c26380e-25f5-47c4-b436-cc2cc920f329)) - (segment (start 172.4 50.575) (end 174.2 50.575) (width 0.25) (layer "F.Cu") (net 15) (tstamp 6b8c8058-2d12-45ff-a948-1f6fd59fbc08)) - (segment (start 180.3875 50.6125) (end 176 50.6125) (width 0.25) (layer "F.Cu") (net 15) (tstamp 75cc94f8-2c85-4145-b749-40a57cfb581d)) - (segment (start 176.575 46.265) (end 176.835 46.525) (width 0.25) (layer "F.Cu") (net 15) (tstamp 89557794-3ae6-46fa-be5d-4a1ae4dd9735)) - (segment (start 181.5 49.5) (end 180.3875 50.6125) (width 0.25) (layer "F.Cu") (net 15) (tstamp f2bc774e-29b7-486e-bd78-97835e65f0e4)) - (segment (start 181 46.525) (end 181.5 47.025) (width 0.25) (layer "F.Cu") (net 15) (tstamp f5c0c235-ff14-4225-94b7-caea44acba48)) - (segment (start 109.265 50.165) (end 109.3 50.2) (width 0.5) (layer "F.Cu") (net 18) (tstamp 00000000-0000-0000-0000-00005f70b877)) - (segment (start 109.265 48.7) (end 109.265 50.165) (width 0.5) (layer "F.Cu") (net 18) (tstamp 00000000-0000-0000-0000-00005f70b87a)) - (segment (start 104.71 54.1) (end 105.8 54.1) (width 0.5) (layer "F.Cu") (net 18) (tstamp 00000000-0000-0000-0000-00005f70b883)) - (segment (start 106.200001 53.699999) (end 106.5 53.4) (width 0.5) (layer "F.Cu") (net 18) (tstamp 00000000-0000-0000-0000-00005f70b886)) - (segment (start 105.8 54.1) (end 106.200001 53.699999) (width 0.5) (layer "F.Cu") (net 18) (tstamp 00000000-0000-0000-0000-00005f70bee0)) - (via (at 109.3 50.2) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 18) (tstamp 00000000-0000-0000-0000-00005f70b87d)) - (via (at 106.5 53.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 18) (tstamp 00000000-0000-0000-0000-00005f70b880)) - (segment (start 109.3 50.6) (end 109.3 50.2) (width 0.5) (layer "B.Cu") (net 18) (tstamp 00000000-0000-0000-0000-00005f70b871)) - (segment (start 106.5 53.4) (end 109.3 50.6) (width 0.5) (layer "B.Cu") (net 18) (tstamp 00000000-0000-0000-0000-00005f70b874)) - (segment (start 100.9 50.8) (end 101.1 51) (width 0.5) (layer "F.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70c6a2)) - (segment (start 111.805 48.7) (end 111.805 51) (width 0.5) (layer "F.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70c6a5)) - (segment (start 107.995 51) (end 108 51) (width 0.5) (layer "F.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70c6a8)) - (segment (start 107.995 48.7) (end 107.995 51) (width 0.5) (layer "F.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70c6ab)) - (segment (start 126.6 48.795) (end 126.595 48.8) (width 0.5) (layer "F.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70c6ae)) - (segment (start 126.6 47.05) (end 126.6 48.795) (width 0.5) (layer "F.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70c6b1)) - (segment (start 126.4 51) (end 126.595 50.805) (width 0.5) (layer "F.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70c6b4)) - (segment (start 126.595 50.805) (end 126.595 48.8) (width 0.5) (layer "F.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70c6b7)) - (segment (start 126.025 51) (end 126.4 51) (width 0.5) (layer "F.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70c6ba)) - (segment (start 111.805 51) (end 126.025 51) (width 0.5) (layer "F.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70c6bd)) - (segment (start 73.0475 47.98625) (end 74.41375 47.98625) (width 0.25) (layer "F.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70d03e)) - (segment (start 73.0475 46.68625) (end 74.28625 46.68625) (width 0.25) (layer "F.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70d041)) - (segment (start 73.0475 47.33625) (end 74.36375 47.33625) (width 0.25) (layer "F.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70d044)) - (segment (start 76.6 47.49) (end 79.05 47.49) (width 0.5) (layer "F.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70d047)) - (segment (start 79.05 47.49) (end 81.629999 50.069999) (width 0.5) (layer "F.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70d04a)) - (segment (start 81.629999 50.069999) (end 81.629999 50.329999) (width 0.5) (layer "F.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70d04d)) - (segment (start 81.629999 50.329999) (end 82.3 51) (width 0.5) (layer "F.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70d050)) - (segment (start 82.3 51) (end 101.1 51) (width 0.5) (layer "F.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70d053)) - (segment (start 100.9 48.7) (end 100.9 46.6875) (width 0.5) (layer "F.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70d056)) - (segment (start 179.35 44.9) (end 178.4 44.9) (width 0.25) (layer "F.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70d059)) - (segment (start 178.4 44.9) (end 178.3 45) (width 0.25) (layer "F.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70d05c)) - (segment (start 73.0025 46.68625) (end 73.0025 45.8025) (width 0.25) (layer "F.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70d05f)) - (segment (start 176.8 44.995) (end 178.3 45) (width 0.25) (layer "F.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70d062)) - (segment (start 126.025 51) (end 126.075001 51.050001) (width 0.5) (layer "F.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70d07a)) - (segment (start 126.075001 51.050001) (end 142.750001 51.050001) (width 0.5) (layer "F.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70d07d)) - (segment (start 111.8 48.695) (end 111.805 48.7) (width 0.5) (layer "F.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70d080)) - (segment (start 111.8 46.75) (end 111.8 48.695) (width 0.5) (layer "F.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70d083)) - (segment (start 111.805 51) (end 111.9 51) (width 0.5) (layer "F.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70d086)) - (segment (start 100.9 50.8) (end 100.9 48.7) (width 0.5) (layer "F.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70d089)) - (segment (start 108 51) (end 111.9 51) (width 0.5) (layer "F.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70d08c)) - (segment (start 101.7 51) (end 108 51) (width 0.5) (layer "F.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70d08f)) - (segment (start 101.1 51) (end 101.7 51) (width 0.5) (layer "F.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70d092)) - (via (at 178.3 45) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70d068)) - (via (at 142.750001 51.050001) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70d077)) - (segment (start 172.4 43.3) (end 174.1 45) (width 0.5) (layer "B.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70d065)) - (segment (start 174.1 45) (end 178.3 45) (width 0.5) (layer "B.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70d06b)) - (segment (start 155.2 43.3) (end 172.4 43.3) (width 0.5) (layer "B.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70d06e)) - (segment (start 147.449999 51.050001) (end 155.2 43.3) (width 0.5) (layer "B.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70d071)) - (segment (start 142.750001 51.050001) (end 147.449999 51.050001) (width 0.5) (layer "B.Cu") (net 19) (tstamp 00000000-0000-0000-0000-00005f70d074)) - (segment (start 102.25 99.75) (end 102.35 99.85) (width 0.25) (layer "F.Cu") (net 21) (tstamp 00000000-0000-0000-0000-00005f70b820)) - (segment (start 102.35 99.85) (end 102.35 100.5) (width 0.25) (layer "F.Cu") (net 21) (tstamp 00000000-0000-0000-0000-00005f70b823)) - (segment (start 102.25 99) (end 102.25 99.75) (width 0.25) (layer "F.Cu") (net 21) (tstamp 00000000-0000-0000-0000-00005f70b826)) - (segment (start 101.9 101.4) (end 102.35 100.95) (width 0.2) (layer "F.Cu") (net 21) (tstamp 00000000-0000-0000-0000-00005f70b829)) - (segment (start 98.3 101.4) (end 101.9 101.4) (width 0.2) (layer "F.Cu") (net 21) (tstamp 00000000-0000-0000-0000-00005f70b82c)) - (segment (start 98.15 101.55) (end 98.3 101.4) (width 0.2) (layer "F.Cu") (net 21) (tstamp 00000000-0000-0000-0000-00005f70b82f)) - (segment (start 97.2 101.55) (end 98.15 101.55) (width 0.2) (layer "F.Cu") (net 21) (tstamp 00000000-0000-0000-0000-00005f70b832)) - (segment (start 102.35 100.95) (end 102.35 100.5) (width 0.2) (layer "F.Cu") (net 21) (tstamp 00000000-0000-0000-0000-00005f70b835)) - (segment (start 164.3 126.9) (end 164.3 120.9) (width 0.25) (layer "F.Cu") (net 21) (tstamp 00000000-0000-0000-0000-00005f70b838)) - (segment (start 167.6 130.2) (end 164.3 126.9) (width 0.25) (layer "F.Cu") (net 21) (tstamp 00000000-0000-0000-0000-00005f70b83b)) - (segment (start 164.3 120.9) (end 165 120.2) (width 0.25) (layer "F.Cu") (net 21) (tstamp 00000000-0000-0000-0000-00005f70b83e)) - (segment (start 165 113.4) (end 160.6 109) (width 2) (layer "F.Cu") (net 21) (tstamp 00000000-0000-0000-0000-00005f70b841)) - (segment (start 165 120.2) (end 165 113.4) (width 2) (layer "F.Cu") (net 21) (tstamp 00000000-0000-0000-0000-00005f70b844)) - (segment (start 160.6 109) (end 123.6 109) (width 2) (layer "F.Cu") (net 21) (tstamp 00000000-0000-0000-0000-00005f70b847)) - (segment (start 123.6 109) (end 112.7 119.9) (width 2) (layer "F.Cu") (net 21) (tstamp 00000000-0000-0000-0000-00005f70b84a)) - (segment (start 165 120.9976) (end 165 120.2) (width 2) (layer "F.Cu") (net 21) (tstamp 00000000-0000-0000-0000-00005f70b84d)) - (segment (start 107.8 99) (end 109.6 100.8) (width 0.25) (layer "F.Cu") (net 21) (tstamp 00000000-0000-0000-0000-00005f70b850)) - (segment (start 109.6 100.8) (end 109.6 118.1) (width 0.25) (layer "F.Cu") (net 21) (tstamp 00000000-0000-0000-0000-00005f70b853)) - (segment (start 109.6 118.1) (end 109.15 117.65) (width 0.25) (layer "F.Cu") (net 21) (tstamp 00000000-0000-0000-0000-00005f70b856)) - (segment (start 109.15 117.65) (end 101.3 117.65) (width 0.25) (layer "F.Cu") (net 21) (tstamp 00000000-0000-0000-0000-00005f70b859)) - (segment (start 102.25 99) (end 107.8 99) (width 0.25) (layer "F.Cu") (net 21) (tstamp 00000000-0000-0000-0000-00005f70b85c)) - (segment (start 106.35 117.65) (end 108.6 119.9) (width 1.5) (layer "F.Cu") (net 21) (tstamp 00000000-0000-0000-0000-00005f70b85f)) - (segment (start 112.5 119.9) (end 112.7 119.9) (width 1.5) (layer "F.Cu") (net 21) (tstamp 00000000-0000-0000-0000-00005f70b862)) - (segment (start 108.6 119.9) (end 112.5 119.9) (width 1.5) (layer "F.Cu") (net 21) (tstamp 00000000-0000-0000-0000-00005f70b865)) - (segment (start 101.3 117.65) (end 106.35 117.65) (width 1.5) (layer "F.Cu") (net 21) (tstamp 00000000-0000-0000-0000-00005f70b868)) - (segment (start 164.3306 121.667) (end 165 120.9976) (width 2) (layer "F.Cu") (net 21) (tstamp 00000000-0000-0000-0000-00005f70b86b)) - (segment (start 161.467 121.667) (end 164.3306 121.667) (width 2) (layer "F.Cu") (net 21) (tstamp 00000000-0000-0000-0000-00005f70b86e)) - (segment (start 97.09 53.875) (end 97.09 55.335) (width 0.25) (layer "F.Cu") (net 24) (tstamp 00000000-0000-0000-0000-00005f70d21e)) - (segment (start 97.0625 56.26) (end 96.51 56.26) (width 0.25) (layer "F.Cu") (net 24) (tstamp 00000000-0000-0000-0000-00005f70d221)) - (segment (start 97.09 55.335) (end 97.0625 55.3625) (width 0.25) (layer "F.Cu") (net 24) (tstamp 00000000-0000-0000-0000-00005f70d224)) - (segment (start 97.0625 55.3625) (end 97.0625 56.26) (width 0.25) (layer "F.Cu") (net 24) (tstamp 00000000-0000-0000-0000-00005f70d227)) - (segment (start 100.5 59.8) (end 96.574998 59.8) (width 0.25) (layer "F.Cu") (net 24) (tstamp 00000000-0000-0000-0000-00005f70d22a)) - (segment (start 96.574998 59.8) (end 95.6 58.825002) (width 0.25) (layer "F.Cu") (net 24) (tstamp 00000000-0000-0000-0000-00005f70d22d)) - (segment (start 95.6 57.17) (end 95.6 58.825002) (width 0.25) (layer "F.Cu") (net 24) (tstamp 00000000-0000-0000-0000-00005f70d230)) - (segment (start 96.51 56.26) (end 95.6 57.17) (width 0.25) (layer "F.Cu") (net 24) (tstamp 00000000-0000-0000-0000-00005f70d233)) - (segment (start 78.6 96.7) (end 78.6 93.1) (width 1) (layer "F.Cu") (net 51) (tstamp 5e9726ce-4d01-40c5-88cc-419709628a07)) - (segment (start 75.55 99.75) (end 78.6 96.7) (width 1) (layer "F.Cu") (net 51) (tstamp 8f97d945-610e-4294-8734-ed76e417b74a)) - (segment (start 78.6 93.1) (end 79.3625 93.1) (width 0.5) (layer "F.Cu") (net 51) (tstamp b428b46e-6bb2-4218-88bb-f65b402ba084)) - (segment (start 75.55 102.8) (end 75.55 99.75) (width 1) (layer "F.Cu") (net 51) (tstamp e682de9f-cfe4-4eb4-bf46-5f9ba649d8da)) - (segment (start 77.6375 93.1) (end 78.6 93.1) (width 0.5) (layer "F.Cu") (net 51) (tstamp ff965ae9-0de4-48fa-a1a6-d1580e191547)) - (segment (start 97.2 103.55) (end 98.25 103.55) (width 0.25) (layer "F.Cu") (net 57) (tstamp 00000000-0000-0000-0000-00005f70bdb1)) - (segment (start 98.05 103.05) (end 98.3 103.3) (width 0.25) (layer "F.Cu") (net 57) (tstamp 1722b78b-f55f-454f-b8c1-d5fee7286d88)) - (segment (start 97.2 104.05) (end 98.25 104.05) (width 0.25) (layer "F.Cu") (net 57) (tstamp 1d2bdc7b-c38c-4947-9f5b-525c86b7ed60)) - (segment (start 99.85 105.0875) (end 100.7875 105.0875) (width 0.25) (layer "F.Cu") (net 57) (tstamp 1e3639f5-e7e3-4694-9294-3921c4c3d8d8)) - (segment (start 97.2 105.3) (end 97.2 104.05) (width 0.25) (layer "F.Cu") (net 57) (tstamp 2322cde5-ab92-4bac-a88f-594c925d9cb2)) - (segment (start 101.3 105.6) (end 101.3 109.15) (width 0.25) (layer "F.Cu") (net 57) (tstamp 274414ab-1890-467f-a7af-4d612100a2a6)) - (segment (start 100.7875 105.0875) (end 101.3 105.6) (width 0.25) (layer "F.Cu") (net 57) (tstamp 5732fe89-5269-4719-98b5-f2ef3f341659)) - (segment (start 98.3 105.1) (end 97.9 105.5) (width 0.25) (layer "F.Cu") (net 57) (tstamp 70650231-3657-458f-9f48-741b42421c7d)) - (segment (start 97.2 103.05) (end 98.05 103.05) (width 0.25) (layer "F.Cu") (net 57) (tstamp 8c7f55c3-6bab-4728-8dd7-d1fea60ba753)) - (segment (start 97.4 105.5) (end 97.2 105.3) (width 0.25) (layer "F.Cu") (net 57) (tstamp b3c17d85-5b6a-4d30-87cd-376f4206f580)) - (segment (start 98.3 103.3) (end 98.3 105.1) (width 0.25) (layer "F.Cu") (net 57) (tstamp c624c794-7be8-4dd6-8892-1c8fa699ae65)) - (segment (start 97.9 105.5) (end 97.4 105.5) (width 0.25) (layer "F.Cu") (net 57) (tstamp fd49b611-21fb-4daf-b867-b30558d907db)) - (segment (start 180.375 48.925) (end 180.4 48.9) (width 0.25) (layer "F.Cu") (net 67) (tstamp 2475e366-838d-45ff-a5a7-1ba7f73d907a)) - (segment (start 182.1 50.4) (end 184.7 50.4) (width 0.25) (layer "F.Cu") (net 67) (tstamp 3d280482-c783-4905-9ece-e562770eeaf6)) - (segment (start 178.2 49) (end 179.125 49) (width 0.25) (layer "F.Cu") (net 67) (tstamp 540aa39f-afd8-4ff8-972d-f1c6a5485cc7)) - (segment (start 176.575 48.805) (end 178.005 48.805) (width 0.25) (layer "F.Cu") (net 67) (tstamp de67032b-e900-43c7-be56-99db966ac92a)) - (segment (start 179.2 48.925) (end 180.375 48.925) (width 0.25) (layer "F.Cu") (net 67) (tstamp e79f93cf-2b70-4755-9b1b-122ea02ea9ff)) - (segment (start 178.005 48.805) (end 178.2 49) (width 0.25) (layer "F.Cu") (net 67) (tstamp ee9114ae-5e43-419f-91b9-9056e7638dec)) - (segment (start 179.125 49) (end 179.2 48.925) (width 0.25) (layer "F.Cu") (net 67) (tstamp f5e2c354-79dd-40fb-9d6a-8ec622a9b22e)) - (via (at 182.1 50.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 67) (tstamp 2d993e3b-afb6-40b0-af6a-1f137ca289a6)) - (via (at 180.4 48.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 67) (tstamp b5e822d4-7555-453b-b54a-b13165b266c6)) - (segment (start 180.4 48.9) (end 180.6 48.9) (width 0.25) (layer "B.Cu") (net 67) (tstamp 0e53b6fa-66e7-4931-b878-7d2afdb3458c)) - (segment (start 180.6 48.9) (end 182.1 50.4) (width 0.25) (layer "B.Cu") (net 67) (tstamp beb5b508-444c-47a1-b4a3-7334542b86d2)) - (segment (start 89.0125 64.5) (end 89.0125 62.3875) (width 0.25) (layer "F.Cu") (net 72) (tstamp 00000000-0000-0000-0000-00005f70d017)) - (segment (start 89.0125 62.3875) (end 89.2 62.2) (width 0.25) (layer "F.Cu") (net 72) (tstamp 00000000-0000-0000-0000-00005f70d01a)) - (segment (start 89.2 62.2) (end 89.2 57) (width 0.25) (layer "F.Cu") (net 72) (tstamp 00000000-0000-0000-0000-00005f70d01d)) - (segment (start 88.9375 64.425) (end 89.0125 64.5) (width 0.25) (layer "F.Cu") (net 72) (tstamp 0787ede9-95c1-4b0a-9bc2-b45cb9e49f9b)) - (segment (start 86.5 64.425) (end 88.9375 64.425) (width 0.25) (layer "F.Cu") (net 72) (tstamp ce33ad8a-c2e6-426e-a4ca-cd2e064f3711)) - (segment (start 111.15 59.9) (end 112.5 59.9) (width 1) (layer "F.Cu") (net 73) (tstamp 00000000-0000-0000-0000-00005f70d008)) - (segment (start 112.5 59.9) (end 113.6 58.8) (width 1) (layer "F.Cu") (net 73) (tstamp 00000000-0000-0000-0000-00005f70d00b)) - (segment (start 113.6 58.8) (end 113.6 58.2) (width 1) (layer "F.Cu") (net 73) (tstamp 00000000-0000-0000-0000-00005f70d00e)) - (segment (start 113.6 58.2) (end 114.8 57) (width 1) (layer "F.Cu") (net 73) (tstamp 00000000-0000-0000-0000-00005f70d011)) - (segment (start 114.8 57) (end 118.6 57) (width 1) (layer "F.Cu") (net 73) (tstamp 00000000-0000-0000-0000-00005f70d014)) - (segment (start 118.4 42.9) (end 108.8 42.9) (width 1) (layer "F.Cu") (net 74) (tstamp 00000000-0000-0000-0000-00005f70bf22)) - (segment (start 104.8 43.75) (end 107.95 43.75) (width 1) (layer "F.Cu") (net 74) (tstamp 00000000-0000-0000-0000-00005f70bf25)) - (segment (start 107.95 43.75) (end 108.8 42.9) (width 1) (layer "F.Cu") (net 74) (tstamp 00000000-0000-0000-0000-00005f70bf28)) - (segment (start 170.4 56.9) (end 172.4 54.9) (width 0.2) (layer "F.Cu") (net 75) (tstamp 51e2451d-884f-4a96-954b-98ad2f7cc073)) - (segment (start 172.4 54.9) (end 172.4 52.225) (width 0.2) (layer "F.Cu") (net 75) (tstamp 6c73415e-4b8c-4b3c-a6b8-fae4615062e4)) - (segment (start 159.75 57.9625) (end 160.8125 56.9) (width 0.2) (layer "F.Cu") (net 75) (tstamp a6f58718-da4d-4e42-beba-05533fe1992f)) - (segment (start 167.1 56.9) (end 170.4 56.9) (width 0.2) (layer "F.Cu") (net 75) (tstamp bd6583b3-24d0-4611-b7fc-36acfa2af18f)) - (segment (start 160.8125 56.9) (end 167.1 56.9) (width 0.2) (layer "F.Cu") (net 75) (tstamp c9faa841-8cd7-40c8-84bd-8334f85dcf8d)) - (segment (start 124.35 57.9375) (end 124.35 58.85) (width 0.5) (layer "F.Cu") (net 76) (tstamp 00000000-0000-0000-0000-00005f70cff9)) - (segment (start 124.35 58.85) (end 125.6 60.1) (width 0.5) (layer "F.Cu") (net 76) (tstamp 00000000-0000-0000-0000-00005f70cffc)) - (segment (start 131.2 60.1) (end 125.6 60.1) (width 0.5) (layer "F.Cu") (net 76) (tstamp 00000000-0000-0000-0000-00005f70cfff)) - (segment (start 134.4 56.9) (end 139 56.9) (width 0.5) (layer "F.Cu") (net 76) (tstamp 00000000-0000-0000-0000-00005f70d002)) - (segment (start 131.2 60.1) (end 134.4 56.9) (width 0.5) (layer "F.Cu") (net 76) (tstamp 00000000-0000-0000-0000-00005f70d005)) - (segment (start 181.1 56.9) (end 184.8 56.9) (width 0.5) (layer "F.Cu") (net 77) (tstamp 00000000-0000-0000-0000-00005f70bd39)) - (segment (start 187.5 50.4) (end 187.5 54.2) (width 0.5) (layer "F.Cu") (net 77) (tstamp 00000000-0000-0000-0000-00005f70bd3c)) - (segment (start 187.5 54.2) (end 184.8 56.9) (width 0.5) (layer "F.Cu") (net 77) (tstamp 00000000-0000-0000-0000-00005f70bd3f)) - (segment (start 139.1 42.8) (end 132.95 42.8) (width 1) (layer "F.Cu") (net 78) (tstamp 00000000-0000-0000-0000-00005f70cff6)) - (segment (start 148.2 56.9) (end 148.15 56.85) (width 0.5) (layer "F.Cu") (net 79) (tstamp 00000000-0000-0000-0000-00005f70befe)) - (segment (start 148.15 56.85) (end 145.6 56.85) (width 0.5) (layer "F.Cu") (net 79) (tstamp 00000000-0000-0000-0000-00005f70bf01)) - (segment (start 153.1 56.9) (end 148.2 56.9) (width 0.5) (layer "F.Cu") (net 79) (tstamp 00000000-0000-0000-0000-00005f70bf04)) - (segment (start 98.36 53.875) (end 98.36 55.26) (width 0.25) (layer "F.Cu") (net 80) (tstamp 00000000-0000-0000-0000-00005f70b5a7)) - (segment (start 98.6375 56.26) (end 98.6375 57.9) (width 0.25) (layer "F.Cu") (net 80) (tstamp 00000000-0000-0000-0000-00005f70b5aa)) - (segment (start 98.6375 56.26) (end 98.6375 55.5375) (width 0.25) (layer "F.Cu") (net 80) (tstamp 00000000-0000-0000-0000-00005f70b5ad)) - (segment (start 98.6375 55.5375) (end 98.36 55.26) (width 0.25) (layer "F.Cu") (net 80) (tstamp 00000000-0000-0000-0000-00005f70b5b0)) - (segment (start 91.35 101.55) (end 91 101.2) (width 0.2) (layer "F.Cu") (net 81) (tstamp 00000000-0000-0000-0000-00005f70bd30)) - (segment (start 91 101.2) (end 89.8875 101.2) (width 0.2) (layer "F.Cu") (net 81) (tstamp 00000000-0000-0000-0000-00005f70bd33)) - (segment (start 92.8 101.55) (end 91.35 101.55) (width 0.2) (layer "F.Cu") (net 81) (tstamp 00000000-0000-0000-0000-00005f70bd36)) - (segment (start 127.865 55.435) (end 127.8125 55.4875) (width 0.25) (layer "F.Cu") (net 82) (tstamp 00000000-0000-0000-0000-00005f70b80e)) - (segment (start 127.8125 55.4875) (end 127.8125 56.65) (width 0.25) (layer "F.Cu") (net 82) (tstamp 00000000-0000-0000-0000-00005f70b811)) - (segment (start 127.865 54.2) (end 127.865 55.435) (width 0.25) (layer "F.Cu") (net 82) (tstamp 00000000-0000-0000-0000-00005f70b814)) - (segment (start 126.8125 56.3625) (end 127.1 56.65) (width 0.25) (layer "F.Cu") (net 82) (tstamp 00000000-0000-0000-0000-00005f70b817)) - (segment (start 127.1 56.65) (end 127.8125 56.65) (width 0.25) (layer "F.Cu") (net 82) (tstamp 00000000-0000-0000-0000-00005f70b81a)) - (segment (start 126.1 56.3625) (end 126.8125 56.3625) (width 0.25) (layer "F.Cu") (net 82) (tstamp 00000000-0000-0000-0000-00005f70b81d)) - (segment (start 102.17 54.1) (end 102.17 58.47) (width 0.5) (layer "F.Cu") (net 83) (tstamp 00000000-0000-0000-0000-00005f70b7f0)) - (segment (start 102 59.8) (end 102 58.64) (width 0.5) (layer "F.Cu") (net 83) (tstamp 00000000-0000-0000-0000-00005f70b7f3)) - (segment (start 102 58.64) (end 102.17 58.47) (width 0.5) (layer "F.Cu") (net 83) (tstamp 00000000-0000-0000-0000-00005f70b7f6)) - (segment (start 102.2 60.9) (end 102.2 61.95) (width 0.5) (layer "F.Cu") (net 83) (tstamp 00000000-0000-0000-0000-00005f70b7f9)) - (segment (start 102 60.7) (end 102.2 60.9) (width 0.5) (layer "F.Cu") (net 83) (tstamp 00000000-0000-0000-0000-00005f70b7fc)) - (segment (start 102 59.8) (end 102 60.7) (width 0.5) (layer "F.Cu") (net 83) (tstamp 00000000-0000-0000-0000-00005f70b7ff)) - (segment (start 129.135 52.865) (end 129.2 52.8) (width 0.25) (layer "F.Cu") (net 84) (tstamp 00000000-0000-0000-0000-00005f70b7cf)) - (segment (start 127.865 48.8) (end 127.865 50.285) (width 0.25) (layer "F.Cu") (net 84) (tstamp 00000000-0000-0000-0000-00005f70b7d2)) - (segment (start 127.865 50.285) (end 127.85 50.3) (width 0.25) (layer "F.Cu") (net 84) (tstamp 00000000-0000-0000-0000-00005f70b7d5)) - (segment (start 127.865 43.635) (end 128.7 42.8) (width 0.5) (layer "F.Cu") (net 84) (tstamp 00000000-0000-0000-0000-00005f70b7e7)) - (segment (start 128.7 42.8) (end 130.05 42.8) (width 0.5) (layer "F.Cu") (net 84) (tstamp 00000000-0000-0000-0000-00005f70b7ea)) - (segment (start 127.865 48.8) (end 127.865 43.635) (width 0.5) (layer "F.Cu") (net 84) (tstamp 00000000-0000-0000-0000-00005f70b7ed)) - (segment (start 129.15 55.45) (end 129.135 55.435) (width 0.25) (layer "F.Cu") (net 84) (tstamp 00000000-0000-0000-0000-00005f70d236)) - (segment (start 129.135 55.435) (end 129.135 54.2) (width 0.25) (layer "F.Cu") (net 84) (tstamp 00000000-0000-0000-0000-00005f70d239)) - (segment (start 129.15 56.4) (end 129.15 55.45) (width 0.25) (layer "F.Cu") (net 84) (tstamp 00000000-0000-0000-0000-00005f70d23c)) - (segment (start 129.135 54.2) (end 129.135 52.865) (width 0.25) (layer "F.Cu") (net 84) (tstamp 00000000-0000-0000-0000-00005f70d23f)) - (via (at 127.85 50.3) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 84) (tstamp 00000000-0000-0000-0000-00005f70b7e1)) - (via (at 129.2 52.8) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 84) (tstamp 00000000-0000-0000-0000-00005f70b7e4)) - (segment (start 129.2 52.8) (end 129.2 51.65) (width 0.25) (layer "B.Cu") (net 84) (tstamp 00000000-0000-0000-0000-00005f70b7d8)) - (segment (start 129.2 51.65) (end 128.149999 50.599999) (width 0.25) (layer "B.Cu") (net 84) (tstamp 00000000-0000-0000-0000-00005f70b7db)) - (segment (start 128.149999 50.599999) (end 127.85 50.3) (width 0.25) (layer "B.Cu") (net 84) (tstamp 00000000-0000-0000-0000-00005f70b7de)) - (segment (start 103.6225 56.36) (end 103.6225 58.29) (width 0.25) (layer "F.Cu") (net 85) (tstamp 00000000-0000-0000-0000-00005f70b598)) - (segment (start 103.6225 58.29) (end 103.6125 58.3) (width 0.25) (layer "F.Cu") (net 85) (tstamp 00000000-0000-0000-0000-00005f70b59b)) - (segment (start 103.6225 56.36) (end 103.6225 55.4225) (width 0.25) (layer "F.Cu") (net 85) (tstamp 00000000-0000-0000-0000-00005f70b59e)) - (segment (start 103.6225 55.4225) (end 103.44 55.24) (width 0.25) (layer "F.Cu") (net 85) (tstamp 00000000-0000-0000-0000-00005f70b5a1)) - (segment (start 103.44 54.1) (end 103.44 55.24) (width 0.25) (layer "F.Cu") (net 85) (tstamp 00000000-0000-0000-0000-00005f70b5a4)) - (segment (start 105.1875 58.3) (end 105.1875 57.6125) (width 0.25) (layer "F.Cu") (net 86) (tstamp 00000000-0000-0000-0000-00005f70d1fd)) - (segment (start 105.1875 57.6125) (end 105.2 57.6) (width 0.25) (layer "F.Cu") (net 86) (tstamp 00000000-0000-0000-0000-00005f70d200)) - (segment (start 98.2 47.2) (end 98.36 47.36) (width 0.25) (layer "F.Cu") (net 86) (tstamp 00000000-0000-0000-0000-00005f70d206)) - (segment (start 98.36 47.36) (end 98.36 48.7) (width 0.25) (layer "F.Cu") (net 86) (tstamp 00000000-0000-0000-0000-00005f70d209)) - (segment (start 97.3 47.2) (end 98.2 47.2) (width 0.25) (layer "F.Cu") (net 86) (tstamp 00000000-0000-0000-0000-00005f70d20c)) - (segment (start 97.09 47.41) (end 97.3 47.2) (width 0.25) (layer "F.Cu") (net 86) (tstamp 00000000-0000-0000-0000-00005f70d20f)) - (segment (start 97.09 48.7) (end 97.09 47.41) (width 0.25) (layer "F.Cu") (net 86) (tstamp 00000000-0000-0000-0000-00005f70d212)) - (segment (start 98.36 48.7) (end 98.36 50.11) (width 0.25) (layer "F.Cu") (net 86) (tstamp 00000000-0000-0000-0000-00005f70d215)) - (segment (start 98.36 50.11) (end 98.5 50.25) (width 0.25) (layer "F.Cu") (net 86) (tstamp 00000000-0000-0000-0000-00005f70d218)) - (via (at 105.2 57.6) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 86) (tstamp 00000000-0000-0000-0000-00005f70d203)) - (via (at 98.5 50.25) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 86) (tstamp 00000000-0000-0000-0000-00005f70d21b)) - (segment (start 105.2 56.95) (end 98.5 50.25) (width 0.25) (layer "B.Cu") (net 86) (tstamp 00000000-0000-0000-0000-00005f70d1f7)) - (segment (start 105.2 57.6) (end 105.2 56.95) (width 0.25) (layer "B.Cu") (net 86) (tstamp 00000000-0000-0000-0000-00005f70d1fa)) - (segment (start 102.17 48.7) (end 102.17 50.17) (width 0.5) (layer "F.Cu") (net 87) (tstamp 00000000-0000-0000-0000-00005f70b58c)) - (segment (start 102.17 50.17) (end 102.2 50.2) (width 0.5) (layer "F.Cu") (net 87) (tstamp 00000000-0000-0000-0000-00005f70b58f)) - (segment (start 109.265 54.1) (end 109.265 55.435) (width 0.5) (layer "F.Cu") (net 87) (tstamp 00000000-0000-0000-0000-00005f70b595)) - (segment (start 106.44 56.36) (end 108.26 56.36) (width 0.5) (layer "F.Cu") (net 87) (tstamp 00000000-0000-0000-0000-00005f70bf34)) - (segment (start 105.1975 56.36) (end 106.44 56.36) (width 0.25) (layer "F.Cu") (net 87) (tstamp 00000000-0000-0000-0000-00005f70bf37)) - (segment (start 108.26 56.36) (end 108.3 56.4) (width 0.5) (layer "F.Cu") (net 87) (tstamp 00000000-0000-0000-0000-00005f70bf3a)) - (segment (start 108.3 59.9) (end 108.3 56.4) (width 0.5) (layer "F.Cu") (net 87) (tstamp 00000000-0000-0000-0000-00005f70bf3d)) - (segment (start 108.3 56.4) (end 109.265 55.435) (width 0.5) (layer "F.Cu") (net 87) (tstamp 00000000-0000-0000-0000-00005f70bf40)) - (via (at 102.2 50.2) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 87) (tstamp 00000000-0000-0000-0000-00005f70b592)) - (via (at 106.44 56.36) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 87) (tstamp 00000000-0000-0000-0000-00005f70bf31)) - (segment (start 106.44 56.36) (end 105.66 56.36) (width 0.25) (layer "B.Cu") (net 87) (tstamp 00000000-0000-0000-0000-00005f70bf2b)) - (segment (start 105.66 56.36) (end 102.2 52.9) (width 0.25) (layer "B.Cu") (net 87) (tstamp 00000000-0000-0000-0000-00005f70bf2e)) - (segment (start 102.2 52.9) (end 102.2 50.2) (width 0.25) (layer "B.Cu") (net 87) (tstamp 00000000-0000-0000-0000-00005f70bf43)) - (segment (start 169.8 46.5) (end 170.035 46.265) (width 0.25) (layer "F.Cu") (net 88) (tstamp 2ca6b632-cd19-4979-9b47-ccd0117d9e63)) - (segment (start 173.375 45.925) (end 173.375 43.1) (width 0.25) (layer "F.Cu") (net 88) (tstamp 36c79c7d-3066-4ae6-8ba5-cf2b0c8ae0a7)) - (segment (start 170.035 46.265) (end 171.625 46.265) (width 0.25) (layer "F.Cu") (net 88) (tstamp 85b0aafc-5e68-4103-8ab9-5275f8986842)) - (segment (start 169.935 47.535) (end 169.8 47.4) (width 0.25) (layer "F.Cu") (net 88) (tstamp 9ed78f4f-93f9-4e02-a523-dc742637ec4a)) - (segment (start 171.625 46.265) (end 173.035 46.265) (width 0.25) (layer "F.Cu") (net 88) (tstamp b12ad68b-37cb-4d6b-86e4-929fa68deeb4)) - (segment (start 173.035 46.265) (end 173.375 45.925) (width 0.25) (layer "F.Cu") (net 88) (tstamp d03fb867-fdc3-4d6c-b6d0-d336283fa1d2)) - (segment (start 169.8 47.4) (end 169.8 46.5) (width 0.25) (layer "F.Cu") (net 88) (tstamp d3c01d53-af18-4914-a55f-173197cbe748)) - (segment (start 171.625 47.535) (end 169.935 47.535) (width 0.25) (layer "F.Cu") (net 88) (tstamp f3895239-87a9-41ec-9b40-24c2f146160d)) - (segment (start 178.325 47.275) (end 179.2 47.275) (width 0.25) (layer "F.Cu") (net 89) (tstamp 577fe6bc-e14d-403b-ab25-10b69f6abb11)) - (segment (start 176.575 47.535) (end 178.065 47.535) (width 0.25) (layer "F.Cu") (net 89) (tstamp 5c8784c2-bc11-4a3d-ac76-951cded7af73)) - (segment (start 175.435 47.535) (end 174.7 46.8) (width 0.25) (layer "F.Cu") (net 89) (tstamp 6e8a65d0-e657-4502-9d32-3cd72e19f8ee)) - (segment (start 178.065 47.535) (end 178.325 47.275) (width 0.25) (layer "F.Cu") (net 89) (tstamp a326d7e2-f08d-44c8-88f1-eb363c4f5610)) - (segment (start 176.575 47.535) (end 175.435 47.535) (width 0.25) (layer "F.Cu") (net 89) (tstamp ac8606e7-f31d-4fe8-8477-02b6a775ddcd)) - (segment (start 174.7 46.8) (end 174.7 43.425) (width 0.25) (layer "F.Cu") (net 89) (tstamp cb24682a-183a-4e02-9990-2dad23cc7621)) - (segment (start 174.7 43.425) (end 175.025 43.1) (width 0.25) (layer "F.Cu") (net 89) (tstamp cb6b4d32-4149-48b3-b4f3-f0c65be70a18)) - (segment (start 103.44 48.7) (end 103.44 47.26) (width 0.25) (layer "F.Cu") (net 90) (tstamp 00000000-0000-0000-0000-00005f70bf13)) - (segment (start 103.44 47.26) (end 104.05 46.65) (width 0.25) (layer "F.Cu") (net 90) (tstamp 00000000-0000-0000-0000-00005f70bf16)) - (segment (start 104.05 46.65) (end 104.8 46.65) (width 0.25) (layer "F.Cu") (net 90) (tstamp 00000000-0000-0000-0000-00005f70bf19)) - (segment (start 104.71 48.7) (end 104.71 46.74) (width 0.5) (layer "F.Cu") (net 90) (tstamp 00000000-0000-0000-0000-00005f70bf1c)) - (segment (start 104.71 46.74) (end 104.8 46.65) (width 0.5) (layer "F.Cu") (net 90) (tstamp 00000000-0000-0000-0000-00005f70bf1f)) - (segment (start 124.35 56.3625) (end 124.35 54.4375) (width 0.25) (layer "F.Cu") (net 91) (tstamp 00000000-0000-0000-0000-00005f70bf07)) - (segment (start 125.5625 54.4375) (end 124.35 54.4375) (width 0.25) (layer "F.Cu") (net 91) (tstamp 00000000-0000-0000-0000-00005f70bf0a)) - (segment (start 125.8 54.2) (end 125.5625 54.4375) (width 0.25) (layer "F.Cu") (net 91) (tstamp 00000000-0000-0000-0000-00005f70bf0d)) - (segment (start 126.595 54.2) (end 125.8 54.2) (width 0.25) (layer "F.Cu") (net 91) (tstamp 00000000-0000-0000-0000-00005f70bf10)) - (segment (start 129.135 48.8) (end 129.135 47.365) (width 0.25) (layer "F.Cu") (net 92) (tstamp 00000000-0000-0000-0000-00005f70bee3)) - (segment (start 129.135 47.365) (end 129.4 47.1) (width 0.25) (layer "F.Cu") (net 92) (tstamp 00000000-0000-0000-0000-00005f70bee6)) - (segment (start 129.4 47.1) (end 130.1475 47.1) (width 0.25) (layer "F.Cu") (net 92) (tstamp 00000000-0000-0000-0000-00005f70bee9)) - (segment (start 130.1475 47.1) (end 130.405 47.3575) (width 0.25) (layer "F.Cu") (net 92) (tstamp 00000000-0000-0000-0000-00005f70beec)) - (segment (start 130.405 47.3575) (end 130.405 48.8) (width 0.25) (layer "F.Cu") (net 92) (tstamp 00000000-0000-0000-0000-00005f70beef)) - (segment (start 143.5 48.8) (end 145.6 50.9) (width 0.5) (layer "F.Cu") (net 92) (tstamp 00000000-0000-0000-0000-00005f70bef2)) - (segment (start 130.405 48.8) (end 143.5 48.8) (width 0.5) (layer "F.Cu") (net 92) (tstamp 00000000-0000-0000-0000-00005f70bef5)) - (segment (start 145.6 50.9) (end 145.6 53.95) (width 0.5) (layer "F.Cu") (net 92) (tstamp 00000000-0000-0000-0000-00005f70bef8)) - (segment (start 130.405 48.8) (end 130.405 48.805) (width 0.5) (layer "F.Cu") (net 92) (tstamp 00000000-0000-0000-0000-00005f70befb)) - (segment (start 93.4125 45.2) (end 92.7 45.2) (width 0.5) (layer "F.Cu") (net 97) (tstamp 00000000-0000-0000-0000-00005f70d1dc)) - (segment (start 85.14999 49.369989) (end 85.1 49.319999) (width 0.5) (layer "F.Cu") (net 97) (tstamp 00000000-0000-0000-0000-00005f70d1eb)) - (segment (start 88.530011 49.369989) (end 85.14999 49.369989) (width 0.5) (layer "F.Cu") (net 97) (tstamp 00000000-0000-0000-0000-00005f70d1ee)) - (segment (start 92.7 45.2) (end 88.530011 49.369989) (width 0.5) (layer "F.Cu") (net 97) (tstamp 00000000-0000-0000-0000-00005f70d1f4)) - (via (at 85.1 49.319999) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 97) (tstamp 00000000-0000-0000-0000-00005f70d1f1)) - (segment (start 81.7 52.719999) (end 81.7 58.99) (width 0.5) (layer "B.Cu") (net 97) (tstamp 00000000-0000-0000-0000-00005f70d1df)) - (segment (start 81.7 58.99) (end 79.25 61.44) (width 0.5) (layer "B.Cu") (net 97) (tstamp 00000000-0000-0000-0000-00005f70d1e2)) - (segment (start 79.25 61.44) (end 78.5 61.44) (width 0.5) (layer "B.Cu") (net 97) (tstamp 00000000-0000-0000-0000-00005f70d1e5)) - (segment (start 85.1 49.319999) (end 81.7 52.719999) (width 0.5) (layer "B.Cu") (net 97) (tstamp 00000000-0000-0000-0000-00005f70d1e8)) - (segment (start 77.02 56.02) (end 77.56 56.02) (width 0.5) (layer "F.Cu") (net 118) (tstamp 00000000-0000-0000-0000-00005f70cb04)) - (segment (start 71.24 56.02) (end 77.02 56.02) (width 0.5) (layer "F.Cu") (net 118) (tstamp 00000000-0000-0000-0000-00005f70cb07)) - (segment (start 78.5 56.02) (end 77.02 56.02) (width 0.5) (layer "F.Cu") (net 118) (tstamp 00000000-0000-0000-0000-00005f70cb0a)) - (segment (start 78.5 56.02) (end 78.5 58.9) (width 0.5) (layer "F.Cu") (net 118) (tstamp 00000000-0000-0000-0000-00005f70cb0d)) - (segment (start 70.035 57.225) (end 71.24 56.02) (width 0.5) (layer "F.Cu") (net 118) (tstamp 00000000-0000-0000-0000-00005f70cb10)) - (segment (start 70.035 58.5) (end 70.035 57.225) (width 0.5) (layer "F.Cu") (net 118) (tstamp 00000000-0000-0000-0000-00005f70cb13)) - (segment (start 159.725 36.6) (end 161.6 38.475) (width 0.5) (layer "F.Cu") (net 118) (tstamp 0ef3391c-448f-4046-9390-a1228c05017a)) - (segment (start 95.9 36.6) (end 159.725 36.6) (width 0.5) (layer "F.Cu") (net 118) (tstamp 91ff9cb7-97f7-4d29-9257-85bc3fbf4e51)) - (segment (start 78.5 56.02) (end 81.1 53.42) (width 0.5) (layer "F.Cu") (net 118) (tstamp 961432c1-1bd7-464d-95af-efaf33643fb7)) - (segment (start 83.1 49.4) (end 95.9 36.6) (width 0.5) (layer "F.Cu") (net 118) (tstamp ab8879a6-ca0c-46ac-83c5-8bb7dec20d15)) - (segment (start 81.1 53.42) (end 81.1 51.4) (width 0.5) (layer "F.Cu") (net 118) (tstamp fa263bbc-3bf4-4d98-a5b9-2944bd9662c5)) - (via (at 81.1 51.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 118) (tstamp 1d6d8071-ac92-4e97-b4a0-5e84ed87d1ef)) - (via (at 83.1 49.4) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net 118) (tstamp 4a40e094-f21a-4fb0-ba28-4ea9335dbc8c)) - (segment (start 81.1 51.4) (end 83.1 49.4) (width 0.5) (layer "B.Cu") (net 118) (tstamp 49a0d866-1333-4b7a-b0da-76faf8703a7d)) - (segment (start 57.3 126.31) (end 55.36 124.37) (width 1) (layer "F.Cu") (net 125) (tstamp 37831b48-f4c4-4a4e-96f6-6caf87351379)) - (segment (start 57.3 128.15) (end 57.3 126.31) (width 1) (layer "F.Cu") (net 125) (tstamp 457f42c3-5be7-4c16-bf1a-e05a256ab5fe)) - (segment (start 60 128.15) (end 60 126.25) (width 1) (layer "F.Cu") (net 125) (tstamp 5fa02eb0-56a0-482e-b756-b7f0021f33cf)) - (segment (start 60 126.25) (end 60.44 125.81) (width 1) (layer "F.Cu") (net 125) (tstamp 9531728f-5408-4d24-9bf0-265b3ca723fe)) - (segment (start 60.44 124.37) (end 60.44 125.81) (width 1) (layer "F.Cu") (net 125) (tstamp cf5d4bae-d12a-406a-a3c8-49f81871d674)) - (segment (start 60.44 124.37) (end 55.36 124.37) (width 1) (layer "F.Cu") (net 125) (tstamp d7c7f8d0-8abd-4b14-a87a-dab19cb91c93)) - (segment (start 55.36 121.83) (end 59.214999 117.975001) (width 0.25) (layer "F.Cu") (net 126) (tstamp 2af41a6f-50e3-4940-94db-0303a147d3dd)) - (segment (start 62.125001 117.975001) (end 63.45 119.3) (width 0.25) (layer "F.Cu") (net 126) (tstamp 36138b6c-c5d8-4ffa-9779-31d5d77ff476)) - (segment (start 59.214999 117.975001) (end 62.125001 117.975001) (width 0.25) (layer "F.Cu") (net 126) (tstamp cbe9fb0f-1393-4f98-ab3d-28189cd4fb56)) - (segment (start 55.36 88.81) (end 53.16 88.81) (width 1) (layer "B.Cu") (net 127) (tstamp 92b9c171-f48f-4a07-a929-746ef8b65aa5)) - (segment (start 53.16 88.81) (end 53.15 88.8) (width 1) (layer "B.Cu") (net 127) (tstamp dc0220f9-04c1-449e-84d0-375c676e54f2)) - (segment (start 55.36 86.27) (end 53.17 86.27) (width 1) (layer "B.Cu") (net 128) (tstamp 760ff2bd-bd8c-4d24-ae65-543a7ec24db5)) - (segment (start 53.17 86.27) (end 53.15 86.25) (width 1) (layer "B.Cu") (net 128) (tstamp 8e72df28-7a3b-4bfd-9fb1-68cf22924073)) - (segment (start 55.36 83.73) (end 53.17 83.73) (width 1) (layer "B.Cu") (net 129) (tstamp 7dcc42dc-83c5-4a58-bb53-a5f05330d5f8)) - (segment (start 53.17 83.73) (end 53.15 83.75) (width 1) (layer "B.Cu") (net 129) (tstamp f21adf6a-f285-4b44-adee-f33ac0ad1ce8)) - (segment (start 55.35 81.2) (end 55.36 81.19) (width 1) (layer "B.Cu") (net 130) (tstamp 047e0d1e-484a-4d10-b086-6b188a78c581)) - (segment (start 53.15 81.2) (end 55.35 81.2) (width 1) (layer "B.Cu") (net 130) (tstamp d646c145-0888-4122-a9ee-c80c4050d447)) - (segment (start 55.5 40.056482) (end 56.856492 38.69999) (width 1.5) (layer "F.Cu") (net 131) (tstamp 13f7a552-a646-40e6-b51b-e08ee801d2ce)) - (segment (start 61.6 39.25) (end 61.04999 38.69999) (width 0.5) (layer "F.Cu") (net 131) (tstamp 25685d95-061b-41e5-bee4-bdfb1eabe30b)) - (segment (start 55.36 48.17) (end 54.087208 48.17) (width 1.5) (layer "F.Cu") (net 131) (tstamp 2671210c-343e-42c5-bfa0-6397ac0b7e06)) - (segment (start 56.856492 38.69999) (end 61.04999 38.69999) (width 1.5) (layer "F.Cu") (net 131) (tstamp 45badfed-eaac-416c-9bd9-db8b3bb2c682)) - (segment (start 55.36 48.17) (end 60.44 48.17) (width 1.5) (layer "F.Cu") (net 131) (tstamp 48cffc50-fb06-4eb1-9b93-78f85a43b110)) - (segment (start 55.5 42.25) (end 55.5 40.056482) (width 1.5) (layer "F.Cu") (net 131) (tstamp 7b05dc4b-8994-4544-9dfc-6bb51aca0e1a)) - (segment (start 53.509999 47.592791) (end 53.509999 44.240001) (width 1.5) (layer "F.Cu") (net 131) (tstamp b1ea61e3-8197-47f3-a174-72d230429ed2)) - (segment (start 53.509999 44.240001) (end 55.5 42.25) (width 1.5) (layer "F.Cu") (net 131) (tstamp c5a10efe-7a10-4b9e-9cd8-a54114330eab)) - (segment (start 56.856492 38.69999) (end 58 38.69999) (width 1.5) (layer "F.Cu") (net 131) (tstamp ebc12e1b-80b0-437c-bc63-293e25268c98)) - (segment (start 54.087208 48.17) (end 53.509999 47.592791) (width 1.5) (layer "F.Cu") (net 131) (tstamp f4e605a5-bff5-4896-ba3d-c2d51cc5f9d8)) - (segment (start 60.44 42.75999) (end 61.44999 41.75) (width 1.5) (layer "F.Cu") (net 132) (tstamp 0e3033c9-10ba-4ec4-9f5a-f9c0baa896c5)) - (segment (start 55.36 45.63) (end 60.44 45.63) (width 1.5) (layer "F.Cu") (net 132) (tstamp 1eeecfbb-3527-478e-b14e-f1a92259fe26)) - (segment (start 60.44 45.63) (end 60.44 42.75999) (width 1.5) (layer "F.Cu") (net 132) (tstamp f90a51ff-416f-4eac-82ed-38c599a6ae3f)) - (segment (start 63.45 122.4) (end 62.9 122.4) (width 0.5) (layer "F.Cu") (net 133) (tstamp 41c614d0-9505-469f-810e-cbd6247c6a10)) - (segment (start 60.44 121.83) (end 62.33 121.83) (width 1) (layer "F.Cu") (net 133) (tstamp 53b1f897-371c-47dd-959a-c072a27d4e74)) - (segment (start 62.33 121.83) (end 62.8 122.3) (width 1) (layer "F.Cu") (net 133) (tstamp 8c280046-befe-4ad1-8124-a6c196c5f7d2)) - (segment (start 62.9 122.4) (end 62.8 122.3) (width 0.5) (layer "F.Cu") (net 133) (tstamp a3a178f8-ad5c-4757-9f2a-0c8ca7814040)) - (segment (start 60.44 88.81) (end 62.79 88.81) (width 1) (layer "B.Cu") (net 134) (tstamp 4871090e-e0b1-4014-8fea-f2f7f4c1f8bb)) - (segment (start 62.79 88.81) (end 62.85 88.75) (width 1) (layer "B.Cu") (net 134) (tstamp 9c13bc04-6c55-4fe1-abf9-4cf52a065eec)) - (segment (start 62.83 86.27) (end 62.85 86.25) (width 1) (layer "B.Cu") (net 135) (tstamp 30e6816a-934e-4ead-9b92-dcd91099f61d)) - (segment (start 60.44 86.27) (end 62.83 86.27) (width 1) (layer "B.Cu") (net 135) (tstamp 833632e3-89a5-48d8-98b6-547be90ad674)) - (segment (start 62.83 83.73) (end 62.85 83.75) (width 1) (layer "B.Cu") (net 136) (tstamp 083e1a17-4d2b-41f4-9f1b-ca7db66d10c6)) - (segment (start 60.44 83.73) (end 62.83 83.73) (width 1) (layer "B.Cu") (net 136) (tstamp fb7892a0-29e9-4d08-86e9-ed9ad1c00745)) - (segment (start 60.44 81.19) (end 62.79 81.19) (width 1) (layer "B.Cu") (net 137) (tstamp 5a4b792d-7daf-49f9-a003-f77559fa2efd)) - - (zone (net 2) (net_name "GND") (layer "F.Cu") (tstamp 00000000-0000-0000-0000-000061e5b18f) (hatch edge 0.508) - (connect_pads (clearance 0.25)) - (min_thickness 0.2) (filled_areas_thickness no) - (fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508) (smoothing fillet) (radius 0.2)) - (polygon - (pts - (xy 59.9 135) - (xy 50 134.9) - (xy 50 129) - (xy 59.9 129) - ) - ) - (filled_polygon - (layer "F.Cu") - (pts - (xy 51.134363 129.018907) - (xy 51.170327 129.068407) - (xy 51.171634 129.12523) - (xy 51.170307 129.130059) - (xy 51.140802 129.385635) - (xy 51.140801 129.385638) - (xy 51.150655 129.642719) - (xy 51.180759 129.797936) - (xy 51.199639 129.895283) - (xy 51.282228 130.125237) - (xy 51.286602 130.137414) - (xy 51.354437 130.262162) - (xy 51.409504 130.363428) - (xy 51.48976 130.468714) - (xy 51.565471 130.568036) - (xy 51.750832 130.746429) - (xy 51.750834 130.746431) - (xy 51.750837 130.746433) - (xy 51.750838 130.746434) - (xy 51.961268 130.894447) - (xy 51.961271 130.894449) - (xy 51.961276 130.894452) - (xy 52.191821 131.008602) - (xy 52.191823 131.008602) - (xy 52.191826 131.008604) - (xy 52.437108 131.086228) - (xy 52.691364 131.1255) - (xy 52.691365 131.1255) - (xy 52.88423 131.1255) - (xy 52.936553 131.121482) - (xy 53.076517 131.110737) - (xy 53.07652 131.110736) - (xy 53.076522 131.110736) - (xy 53.106859 131.103636) - (xy 53.327021 131.052117) - (xy 53.565641 130.955944) - (xy 53.786783 130.824474) - (xy 53.985265 130.660787) - (xy 54.156435 130.46872) - (xy 54.296279 130.252775) - (xy 54.401521 130.018014) - (xy 54.413663 129.973832) - (xy 54.461999 129.797936) - (xy 54.469693 129.769939) - (xy 54.499198 129.514365) - (xy 54.489344 129.257282) - (xy 54.484691 129.233289) - (xy 54.462303 129.117849) - (xy 54.469785 129.057123) - (xy 54.511533 129.012392) - (xy 54.559492 129) - (xy 58.895592 129) - (xy 58.953783 129.018907) - (xy 58.989747 129.068407) - (xy 58.994592 129.099) - (xy 58.994592 129.521888) - (xy 59.004937 129.593841) - (xy 59.004938 129.593846) - (xy 59.045443 129.731796) - (xy 59.045443 129.731797) - (xy 59.075642 129.797924) - (xy 59.075649 129.797936) - (xy 59.15337 129.918873) - (xy 59.153376 129.918881) - (xy 59.200984 129.973824) - (xy 59.200991 129.97383) - (xy 59.200993 129.973832) - (xy 59.309639 130.067974) - (xy 59.309652 130.067983) - (xy 59.370789 130.107273) - (xy 59.370791 130.107274) - (xy 59.370799 130.107279) - (xy 59.501584 130.167007) - (xy 59.571336 130.187488) - (xy 59.618774 130.194308) - (xy 59.713647 130.20795) - (xy 59.713651 130.20795) - (xy 59.786342 130.20795) - (xy 59.786348 130.20795) - (xy 59.786893 130.207871) - (xy 59.787057 130.207899) - (xy 59.789881 130.207698) - (xy 59.78993 130.208396) - (xy 59.847183 130.218293) - (xy 59.889834 130.262162) - (xy 59.9 130.305861) - (xy 59.9 134.788157) - (xy 59.898073 134.807593) - (xy 59.890596 134.844936) - (xy 59.860632 134.898283) - (xy 59.805035 134.923828) - (xy 59.793523 134.9245) - (xy 52.425556 134.9245) - (xy 50.210927 134.902129) - (xy 50.185503 134.898543) - (xy 50.148074 134.888176) - (xy 50.097042 134.854422) - (xy 50.075596 134.797118) - (xy 50.0755 134.792768) - (xy 50.0755 129.106011) - (xy 50.094407 129.04782) - (xy 50.143907 129.011856) - (xy 50.155183 129.008914) - (xy 50.168434 129.006278) - (xy 50.190441 129.001902) - (xy 50.209752 129) - (xy 51.076172 129) - ) - ) - ) - (zone (net 1) (net_name "/Supply_Ref/+15V") (layer "F.Cu") (tstamp 00000000-0000-0000-0000-000061e5b195) (hatch edge 0.508) - (connect_pads (clearance 0.25)) - (min_thickness 0.2) (filled_areas_thickness no) - (fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508) (smoothing fillet) (radius 0.2)) - (polygon - (pts - (xy 72.1 81.9) - (xy 62.4 81.9) - (xy 62.4 68.9) - (xy 72.1 68.9) - ) - ) - (filled_polygon - (layer "F.Cu") - (pts - (xy 64.985313 68.918907) - (xy 65.021277 68.968407) - (xy 65.021277 69.029593) - (xy 65.01988 69.033596) - (xy 64.998506 69.0909) - (xy 64.998504 69.090911) - (xy 64.992 69.151412) - (xy 64.992 69.745999) - (xy 64.992001 69.746) - (xy 65.988314 69.746) - (xy 65.972359 69.761955) - (xy 65.914835 69.874852) - (xy 65.895014 70) - (xy 65.914835 70.125148) - (xy 65.972359 70.238045) - (xy 65.988314 70.254) - (xy 64.992001 70.254) - (xy 64.992 70.254001) - (xy 64.992 70.848587) - (xy 64.998504 70.909088) - (xy 64.998506 70.909098) - (xy 65.049552 71.04596) - (xy 65.137092 71.162899) - (xy 65.1371 71.162907) - (xy 65.254039 71.250447) - (xy 65.390901 71.301493) - (xy 65.390911 71.301495) - (xy 65.451413 71.308) - (xy 66.045999 71.308) - (xy 66.046 71.307999) - (xy 66.046 70.311686) - (xy 66.061955 70.327641) - (xy 66.174852 70.385165) - (xy 66.268519 70.4) - (xy 66.331481 70.4) - (xy 66.425148 70.385165) - (xy 66.538045 70.327641) - (xy 66.554 70.311686) - (xy 66.554 71.307999) - (xy 66.554001 71.308) - (xy 67.148587 71.308) - (xy 67.209088 71.301495) - (xy 67.209098 71.301493) - (xy 67.34596 71.250447) - (xy 67.462899 71.162907) - (xy 67.462907 71.162899) - (xy 67.550447 71.04596) - (xy 67.601493 70.909098) - (xy 67.601495 70.909088) - (xy 67.608 70.848587) - (xy 67.608 70.254001) - (xy 67.607999 70.254) - (xy 66.611686 70.254) - (xy 66.627641 70.238045) - (xy 66.685165 70.125148) - (xy 66.704986 70) - (xy 66.685165 69.874852) - (xy 66.627641 69.761955) - (xy 66.611686 69.746) - (xy 67.607999 69.746) - (xy 67.608 69.745999) - (xy 67.608 69.151412) - (xy 67.601495 69.090911) - (xy 67.601493 69.0909) - (xy 67.58012 69.033596) - (xy 67.5775 68.972467) - (xy 67.611311 68.921472) - (xy 67.668639 68.900091) - (xy 67.672878 68.9) - (xy 67.758645 68.9) - (xy 67.816836 68.918907) - (xy 67.8528 68.968407) - (xy 67.855742 69.018312) - (xy 67.850607 69.044135) - (xy 67.848768 69.056533) - (xy 67.848766 69.056546) - (xy 67.848766 69.056547) - (xy 67.845115 69.093617) - (xy 67.845116 69.093616) - (xy 67.8445 69.106142) - (xy 67.8445 72.488) - (xy 67.825593 72.546191) - (xy 67.776093 72.582155) - (xy 67.7455 72.587) - (xy 67.640001 72.587) - (xy 67.64 72.587001) - (xy 67.64 75.3455) - (xy 67.621093 75.403691) - (xy 67.571593 75.439655) - (xy 67.541 75.4445) - (xy 66.781739 75.4445) - (xy 66.776631 75.44487) - (xy 66.773051 75.445) - (xy 66.21492 75.445) - (xy 66.22265 75.503719) - (xy 66.283911 75.651619) - (xy 66.283913 75.651623) - (xy 66.381369 75.77863) - (xy 66.425767 75.812697) - (xy 66.460423 75.863121) - (xy 66.4645 75.891239) - (xy 66.4645 76.02826) - (xy 66.471118 76.073682) - (xy 66.474427 76.096395) - (xy 66.513598 76.17652) - (xy 66.522169 76.237102) - (xy 66.513598 76.26348) - (xy 66.474427 76.343604) - (xy 66.469832 76.375143) - (xy 66.4645 76.41174) - (xy 66.4645 76.67826) - (xy 66.471075 76.723385) - (xy 66.474427 76.746395) - (xy 66.507376 76.813792) - (xy 66.525802 76.851483) - (xy 66.608517 76.934198) - (xy 66.644161 76.951623) - (xy 66.713604 76.985572) - (xy 66.713605 76.985572) - (xy 66.713607 76.985573) - (xy 66.78174 76.9955) - (xy 66.892474 76.9955) - (xy 66.950665 77.014407) - (xy 66.986629 77.063907) - (xy 66.986629 77.125093) - (xy 66.971016 77.154767) - (xy 66.919142 77.22237) - (xy 66.919137 77.222378) - (xy 66.86367 77.35629) - (xy 66.863669 77.356291) - (xy 66.84475 77.499999) - (xy 66.84475 77.5) - (xy 66.863669 77.643708) - (xy 66.86367 77.643709) - (xy 66.906815 77.747873) - (xy 66.919139 77.777625) - (xy 67.007379 77.892621) - (xy 67.122375 77.980861) - (xy 67.256291 78.03633) - (xy 67.4 78.05525) - (xy 67.543709 78.03633) - (xy 67.677625 77.980861) - (xy 67.792621 77.892621) - (xy 67.880861 77.777625) - (xy 67.93633 77.643709) - (xy 67.95525 77.5) - (xy 67.95215 77.476457) - (xy 67.93633 77.356291) - (xy 67.880861 77.222375) - (xy 67.88086 77.222374) - (xy 67.88086 77.222373) - (xy 67.835958 77.163856) - (xy 67.815534 77.10618) - (xy 67.8155 77.103589) - (xy 67.8155 77.0945) - (xy 67.834407 77.036309) - (xy 67.883907 77.000345) - (xy 67.9145 76.9955) - (xy 68.098257 76.9955) - (xy 68.09826 76.9955) - (xy 68.166393 76.985573) - (xy 68.271483 76.934198) - (xy 68.354198 76.851483) - (xy 68.405573 76.746393) - (xy 68.4155 76.67826) - (xy 68.4155 76.59571) - (xy 68.434407 76.537519) - (xy 68.483907 76.501555) - (xy 68.545093 76.501555) - (xy 68.576059 76.520531) - (xy 68.576291 76.520184) - (xy 68.667257 76.580964) - (xy 68.66726 76.580966) - (xy 68.715773 76.590616) - (xy 68.740315 76.595498) - (xy 68.74032 76.595498) - (xy 68.740326 76.5955) - (xy 68.740327 76.5955) - (xy 70.408421 76.5955) - (xy 70.466612 76.614407) - (xy 70.502576 76.663907) - (xy 70.506072 76.681699) - (xy 70.506578 76.681633) - (xy 70.522649 76.803718) - (xy 70.52265 76.803719) - (xy 70.583911 76.951619) - (xy 70.583913 76.951623) - (xy 70.681368 77.078627) - (xy 70.681372 77.078631) - (xy 70.808376 77.176086) - (xy 70.80838 77.176088) - (xy 70.956275 77.237348) - (xy 70.956283 77.23735) - (xy 71.075152 77.252999) - (xy 71.539998 77.252999) - (xy 71.54 77.252998) - (xy 71.54 76.4445) - (xy 71.558907 76.386309) - (xy 71.608407 76.350345) - (xy 71.639 76.3455) - (xy 71.841 76.3455) - (xy 71.899191 76.364407) - (xy 71.935155 76.413907) - (xy 71.94 76.4445) - (xy 71.94 76.834822) - (xy 71.923382 76.886285) - (xy 71.924341 76.886787) - (xy 71.921413 76.892384) - (xy 71.921305 76.892719) - (xy 71.92106 76.893057) - (xy 71.874852 76.981394) - (xy 71.874848 76.981402) - (xy 71.854851 77.04951) - (xy 71.854847 77.049526) - (xy 71.8445 77.121494) - (xy 71.8445 77.1215) - (xy 71.8445 81.693862) - (xy 71.845116 81.706383) - (xy 71.845115 81.706382) - (xy 71.845428 81.709561) - (xy 71.848766 81.743456) - (xy 71.849686 81.74966) - (xy 71.850607 81.755867) - (xy 71.855743 81.781688) - (xy 71.848551 81.842449) - (xy 71.807017 81.887378) - (xy 71.758645 81.9) - (xy 62.609752 81.9) - (xy 62.590438 81.898098) - (xy 62.57447 81.894921) - (xy 62.542775 81.888617) - (xy 62.507089 81.873835) - (xy 62.50633 81.873328) - (xy 62.474949 81.852359) - (xy 62.44764 81.82505) - (xy 62.426163 81.792908) - (xy 62.411382 81.757222) - (xy 62.411112 81.755867) - (xy 62.401902 81.709561) - (xy 62.4 81.690248) - (xy 62.4 78.031113) - (xy 62.418907 77.972922) - (xy 62.468407 77.936958) - (xy 62.529593 77.936958) - (xy 62.578251 77.971783) - (xy 62.642454 78.057546) - (xy 62.642457 78.057548) - (xy 62.642458 78.057549) - (xy 62.75767 78.143797) - (xy 62.892511 78.194089) - (xy 62.892512 78.194089) - (xy 62.892517 78.194091) - (xy 62.952127 78.2005) - (xy 63.6005 78.200499) - (xy 63.658691 78.219406) - (xy 63.694655 78.268906) - (xy 63.6995 78.299499) - (xy 63.6995 78.450096) - (xy 63.691965 78.48798) - (xy 63.663669 78.556293) - (xy 63.64475 78.699999) - (xy 63.64475 78.7) - (xy 63.663669 78.843708) - (xy 63.66367 78.843709) - (xy 63.719139 78.977625) - (xy 63.807379 79.092621) - (xy 63.922375 79.180861) - (xy 64.056291 79.23633) - (xy 64.2 79.25525) - (xy 64.343709 79.23633) - (xy 64.477625 79.180861) - (xy 64.592621 79.092621) - (xy 64.680861 78.977625) - (xy 64.73633 78.843709) - (xy 64.75525 78.7) - (xy 64.73633 78.556291) - (xy 64.708034 78.487978) - (xy 64.7005 78.450096) - (xy 64.7005 78.299499) - (xy 64.719407 78.241308) - (xy 64.768907 78.205344) - (xy 64.7995 78.200499) - (xy 65.247867 78.200499) - (xy 65.247872 78.200499) - (xy 65.307483 78.194091) - (xy 65.374907 78.168943) - (xy 65.442329 78.143797) - (xy 65.442329 78.143796) - (xy 65.442331 78.143796) - (xy 65.557546 78.057546) - (xy 65.643796 77.942331) - (xy 65.694091 77.807483) - (xy 65.7005 77.747873) - (xy 65.700499 77.002128) - (xy 65.694091 76.942517) - (xy 65.663428 76.860304) - (xy 65.643797 76.80767) - (xy 65.557549 76.692458) - (xy 65.557548 76.692457) - (xy 65.557546 76.692454) - (xy 65.54523 76.683234) - (xy 65.442329 76.606202) - (xy 65.307488 76.55591) - (xy 65.307483 76.555909) - (xy 65.307481 76.555908) - (xy 65.307477 76.555908) - (xy 65.274846 76.5524) - (xy 65.247873 76.5495) - (xy 65.24787 76.5495) - (xy 62.952133 76.5495) - (xy 62.952129 76.5495) - (xy 62.952128 76.549501) - (xy 62.944949 76.550272) - (xy 62.892519 76.555908) - (xy 62.892514 76.555909) - (xy 62.75767 76.606202) - (xy 62.642458 76.69245) - (xy 62.64245 76.692458) - (xy 62.578253 76.778215) - (xy 62.528244 76.813468) - (xy 62.467065 76.812594) - (xy 62.418084 76.775926) - (xy 62.4 76.718886) - (xy 62.4 75.447891) - (xy 62.418907 75.3897) - (xy 62.468407 75.353736) - (xy 62.529593 75.353736) - (xy 62.550973 75.36363) - (xy 62.677474 75.441657) - (xy 62.845678 75.497394) - (xy 62.949484 75.508) - (xy 63.845999 75.508) - (xy 63.846 75.507999) - (xy 64.354 75.507999) - (xy 64.354001 75.508) - (xy 65.250516 75.508) - (xy 65.354321 75.497394) - (xy 65.522525 75.441657) - (xy 65.673337 75.348635) - (xy 65.798635 75.223337) - (xy 65.891657 75.072525) - (xy 65.900778 75.045) - (xy 66.214919 75.045) - (xy 67.239999 75.045) - (xy 67.24 75.044999) - (xy 67.24 74.795001) - (xy 67.239999 74.795) - (xy 66.21492 74.795) - (xy 66.22265 74.853718) - (xy 66.222651 74.853725) - (xy 66.234411 74.882116) - (xy 66.23921 74.943113) - (xy 66.234412 74.957882) - (xy 66.222649 74.986281) - (xy 66.214919 75.045) - (xy 65.900778 75.045) - (xy 65.947394 74.904321) - (xy 65.958 74.800515) - (xy 65.958 74.679001) - (xy 65.957999 74.679) - (xy 64.354001 74.679) - (xy 64.354 74.679001) - (xy 64.354 75.507999) - (xy 63.846 75.507999) - (xy 63.846 74.395) - (xy 66.214919 74.395) - (xy 67.239999 74.395) - (xy 67.24 74.394999) - (xy 67.24 74.145001) - (xy 67.239999 74.145) - (xy 66.21492 74.145) - (xy 66.22265 74.203718) - (xy 66.222651 74.203725) - (xy 66.234411 74.232116) - (xy 66.23921 74.293113) - (xy 66.234412 74.307882) - (xy 66.222649 74.336281) - (xy 66.214919 74.395) - (xy 63.846 74.395) - (xy 63.846 74.170999) - (xy 64.354 74.170999) - (xy 64.354001 74.171) - (xy 65.957999 74.171) - (xy 65.958 74.170999) - (xy 65.958 74.049484) - (xy 65.947394 73.945678) - (xy 65.891657 73.777474) - (xy 65.871627 73.745) - (xy 66.214919 73.745) - (xy 67.239999 73.745) - (xy 67.24 73.744999) - (xy 67.24 73.495001) - (xy 67.239999 73.495) - (xy 66.21492 73.495) - (xy 66.22265 73.553718) - (xy 66.222651 73.553725) - (xy 66.234411 73.582116) - (xy 66.23921 73.643113) - (xy 66.234412 73.657882) - (xy 66.222649 73.686281) - (xy 66.214919 73.745) - (xy 65.871627 73.745) - (xy 65.798635 73.626662) - (xy 65.673337 73.501364) - (xy 65.522525 73.408342) - (xy 65.354321 73.352605) - (xy 65.250516 73.342) - (xy 64.354001 73.342) - (xy 64.354 73.342001) - (xy 64.354 74.170999) - (xy 63.846 74.170999) - (xy 63.846 73.342001) - (xy 63.845999 73.342) - (xy 62.949484 73.342) - (xy 62.845678 73.352605) - (xy 62.677472 73.408343) - (xy 62.550972 73.486369) - (xy 62.491519 73.500825) - (xy 62.434924 73.477575) - (xy 62.402803 73.425499) - (xy 62.4 73.402108) - (xy 62.4 73.095) - (xy 66.214919 73.095) - (xy 67.239999 73.095) - (xy 67.24 73.094999) - (xy 67.24 72.587001) - (xy 67.239999 72.587) - (xy 66.775156 72.587) - (xy 66.775151 72.587001) - (xy 66.656281 72.602649) - (xy 66.65628 72.60265) - (xy 66.50838 72.663911) - (xy 66.508376 72.663913) - (xy 66.381372 72.761368) - (xy 66.381368 72.761372) - (xy 66.283913 72.888376) - (xy 66.283911 72.88838) - (xy 66.22265 73.036279) - (xy 66.214919 73.095) - (xy 62.4 73.095) - (xy 62.4 69.109751) - (xy 62.401902 69.090438) - (xy 62.411382 69.042777) - (xy 62.426162 69.007092) - (xy 62.447642 68.974946) - (xy 62.474946 68.947642) - (xy 62.507092 68.926162) - (xy 62.542775 68.911382) - (xy 62.568021 68.90636) - (xy 62.590439 68.901902) - (xy 62.609752 68.9) - (xy 64.927122 68.9) - ) - ) - ) - (zone (net 4) (net_name "/Input_Output_Module/+12V") (layer "F.Cu") (tstamp 00000000-0000-0000-0000-000061e5b198) (hatch edge 0.508) - (priority 1) - (connect_pads (clearance 0.25)) - (min_thickness 0.254) (filled_areas_thickness no) - (fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508) (smoothing fillet) (radius 0.2)) - (polygon - (pts - (xy 72.1 81.9) - (xy 83.6 81.9) - (xy 83.6 68.9) - (xy 68.1 68.9) - (xy 68.1 72.7) - (xy 72.1 72.7) - (xy 72.1 75.9) - ) - ) - (filled_polygon - (layer "F.Cu") - (pts - (xy 74.856351 68.920002) - (xy 74.902844 68.973658) - (xy 74.913151 69.042444) - (xy 74.907177 69.087828) - (xy 74.89545 69.1769) - (xy 74.914369 69.320607) - (xy 74.939909 69.382265) - (xy 74.9495 69.430483) - (xy 74.9495 69.4735) - (xy 74.929498 69.541621) - (xy 74.875842 69.588114) - (xy 74.8235 69.5995) - (xy 74.302135 69.5995) - (xy 74.302114 69.599502) - (xy 74.242519 69.605908) - (xy 74.242518 69.605908) - (xy 74.107673 69.656201) - (xy 74.10767 69.656203) - (xy 73.992453 69.742453) - (xy 73.906203 69.85767) - (xy 73.906201 69.857673) - (xy 73.855909 69.992515) - (xy 73.8495 70.052121) - (xy 73.8495 70.797864) - (xy 73.849502 70.797885) - (xy 73.855908 70.85748) - (xy 73.855908 70.857481) - (xy 73.906201 70.992326) - (xy 73.906203 70.992329) - (xy 73.906204 70.992331) - (xy 73.933315 71.028546) - (xy 73.992453 71.107546) - (xy 74.050061 71.150671) - (xy 74.107669 71.193796) - (xy 74.107671 71.193796) - (xy 74.107673 71.193798) - (xy 74.16803 71.216309) - (xy 74.242514 71.24409) - (xy 74.242517 71.244091) - (xy 74.302127 71.2505) - (xy 76.597872 71.250499) - (xy 76.657483 71.244091) - (xy 76.792331 71.193796) - (xy 76.907546 71.107546) - (xy 76.993796 70.992331) - (xy 77.044091 70.857483) - (xy 77.0505 70.797873) - (xy 77.050499 70.052128) - (xy 77.044091 69.992517) - (xy 77.0228 69.935435) - (xy 76.993798 69.857673) - (xy 76.993796 69.85767) - (xy 76.993796 69.857669) - (xy 76.950671 69.800061) - (xy 76.907546 69.742453) - (xy 76.830591 69.684845) - (xy 76.792331 69.656204) - (xy 76.792329 69.656203) - (xy 76.792326 69.656201) - (xy 76.657483 69.605909) - (xy 76.657486 69.605909) - (xy 76.597878 69.5995) - (xy 76.597873 69.5995) - (xy 76.0765 69.5995) - (xy 76.008379 69.579498) - (xy 75.961886 69.525842) - (xy 75.9505 69.4735) - (xy 75.9505 69.433863) - (xy 75.960091 69.385645) - (xy 75.961491 69.382265) - (xy 75.98703 69.320609) - (xy 76.00595 69.1769) - (xy 75.988248 69.042444) - (xy 75.999187 68.972298) - (xy 76.046315 68.919199) - (xy 76.11317 68.9) - (xy 79.846991 68.9) - (xy 79.915112 68.920002) - (xy 79.961605 68.973658) - (xy 79.971709 69.043932) - (xy 79.963401 69.074213) - (xy 79.957762 69.087828) - (xy 79.943569 69.122092) - (xy 79.92465 69.265799) - (xy 79.92465 69.2658) - (xy 79.94357 69.409509) - (xy 79.944408 69.411532) - (xy 79.94526 69.415818) - (xy 79.945708 69.417488) - (xy 79.945598 69.417517) - (xy 79.954 69.459752) - (xy 79.954 70.842399) - (xy 79.956169 70.857483) - (xy 79.969336 70.949061) - (xy 79.971873 70.957701) - (xy 79.970409 70.95813) - (xy 79.979 70.997626) - (xy 79.979 71.028546) - (xy 79.98928 71.099111) - (xy 80.042485 71.207944) - (xy 80.042488 71.207948) - (xy 80.128151 71.293611) - (xy 80.128153 71.293612) - (xy 80.236991 71.34682) - (xy 80.307551 71.3571) - (xy 80.601448 71.357099) - (xy 80.672009 71.34682) - (xy 80.676369 71.344688) - (xy 80.780844 71.293614) - (xy 80.780848 71.293611) - (xy 80.866511 71.207948) - (xy 80.866512 71.207947) - (xy 80.91972 71.099109) - (xy 80.93 71.028549) - (xy 80.929999 70.997633) - (xy 80.938593 70.958135) - (xy 80.937126 70.957705) - (xy 80.939664 70.949061) - (xy 80.952831 70.857483) - (xy 80.955 70.842399) - (xy 80.955 69.582395) - (xy 80.96459 69.534179) - (xy 81.01623 69.409509) - (xy 81.03515 69.2658) - (xy 81.01623 69.122091) - (xy 80.996399 69.074215) - (xy 80.988811 69.003628) - (xy 81.02059 68.940141) - (xy 81.081649 68.903914) - (xy 81.112809 68.9) - (xy 83.38759 68.9) - (xy 83.412171 68.902421) - (xy 83.451953 68.910334) - (xy 83.497376 68.929149) - (xy 83.520583 68.944656) - (xy 83.555343 68.979416) - (xy 83.57085 69.002623) - (xy 83.589664 69.048043) - (xy 83.597578 69.087825) - (xy 83.6 69.112409) - (xy 83.6 81.68759) - (xy 83.597578 81.712174) - (xy 83.589664 81.751956) - (xy 83.57085 81.797376) - (xy 83.555343 81.820583) - (xy 83.520583 81.855343) - (xy 83.497376 81.87085) - (xy 83.451956 81.889664) - (xy 83.412174 81.897578) - (xy 83.38759 81.9) - (xy 72.31241 81.9) - (xy 72.28783 81.897579) - (xy 72.27004 81.89404) - (xy 72.248044 81.889665) - (xy 72.202623 81.87085) - (xy 72.179416 81.855343) - (xy 72.144656 81.820583) - (xy 72.129149 81.797376) - (xy 72.110334 81.751953) - (xy 72.102421 81.712171) - (xy 72.1 81.68759) - (xy 72.1 77.1215) - (xy 72.120002 77.053379) - (xy 72.173658 77.006886) - (xy 72.226 76.9955) - (xy 72.398255 76.9955) - (xy 72.39826 76.9955) - (xy 72.466393 76.985573) - (xy 72.571483 76.934198) - (xy 72.654198 76.851483) - (xy 72.705573 76.746393) - (xy 72.7155 76.67826) - (xy 72.7155 76.41174) - (xy 72.715499 76.411736) - (xy 72.71517 76.40719) - (xy 72.717006 76.407056) - (xy 72.725896 76.344378) - (xy 72.772286 76.290633) - (xy 72.840368 76.2705) - (xy 72.941731 76.2705) - (xy 73.009852 76.290502) - (xy 73.056345 76.344158) - (xy 73.06066 76.354885) - (xy 73.072204 76.387876) - (xy 73.072205 76.387878) - (xy 73.072206 76.387879) - (xy 73.072207 76.387882) - (xy 73.095275 76.419138) - (xy 73.152851 76.497152) - (xy 73.262114 76.577791) - (xy 73.262117 76.577793) - (xy 73.271186 76.580966) - (xy 73.290113 76.587588) - (xy 73.347805 76.628965) - (xy 73.373969 76.694964) - (xy 73.3745 76.706518) - (xy 73.3745 77.097989) - (xy 73.371818 77.123846) - (xy 73.369632 77.134267) - (xy 73.371967 77.152994) - (xy 73.374016 77.169436) - (xy 73.3745 77.177225) - (xy 73.3745 77.181114) - (xy 73.376314 77.191986) - (xy 73.378342 77.20414) - (xy 73.385132 77.25862) - (xy 73.387384 77.266182) - (xy 73.389755 77.273088) - (xy 73.389989 77.278281) - (xy 73.391481 77.282895) - (xy 73.391488 77.282935) - (xy 73.390209 77.283158) - (xy 73.392957 77.344012) - (xy 73.357306 77.405409) - (xy 73.346093 77.41487) - (xy 73.242452 77.492455) - (xy 73.156203 77.60767) - (xy 73.156201 77.607673) - (xy 73.105909 77.742515) - (xy 73.0995 77.802121) - (xy 73.0995 79.197864) - (xy 73.099502 79.197885) - (xy 73.105908 79.25748) - (xy 73.105908 79.257481) - (xy 73.156201 79.392326) - (xy 73.156203 79.392329) - (xy 73.242453 79.507546) - (xy 73.300061 79.550671) - (xy 73.357669 79.593796) - (xy 73.357671 79.593796) - (xy 73.357673 79.593798) - (xy 73.41803 79.616309) - (xy 73.492514 79.64409) - (xy 73.492517 79.644091) - (xy 73.552127 79.6505) - (xy 74.297872 79.650499) - (xy 74.357483 79.644091) - (xy 74.492331 79.593796) - (xy 74.607546 79.507546) - (xy 74.693796 79.392331) - (xy 74.744091 79.257483) - (xy 74.7505 79.197873) - (xy 74.750499 77.802128) - (xy 74.744091 77.742517) - (xy 74.717864 77.672199) - (xy 74.693798 77.607673) - (xy 74.693796 77.60767) - (xy 74.693796 77.607669) - (xy 74.650671 77.550061) - (xy 74.607546 77.492453) - (xy 74.492332 77.406205) - (xy 74.492331 77.406204) - (xy 74.445212 77.388629) - (xy 74.388379 77.346084) - (xy 74.370414 77.301525) - (xy 74.369948 77.301759) - (xy 74.369936 77.301735) - (xy 74.369652 77.300844) - (xy 74.367845 77.301383) - (xy 74.362619 77.283833) - (xy 74.360064 77.276388) - (xy 74.333943 77.228119) - (xy 74.310963 77.181114) - (xy 74.309826 77.178788) - (xy 74.309825 77.178787) - (xy 74.305269 77.172405) - (xy 74.300421 77.166176) - (xy 74.260041 77.129003) - (xy 74.162405 77.031366) - (xy 74.128379 76.969054) - (xy 74.1255 76.942271) - (xy 74.1255 76.613637) - (xy 74.145502 76.545516) - (xy 74.176679 76.512257) - (xy 74.19715 76.49715) - (xy 74.216673 76.470698) - (xy 74.277791 76.387885) - (xy 74.277793 76.387881) - (xy 74.293016 76.344378) - (xy 74.322646 76.259699) - (xy 74.3255 76.229266) - (xy 74.6745 76.229266) - (xy 74.677354 76.2597) - (xy 74.677355 76.259704) - (xy 74.722206 76.387881) - (xy 74.722208 76.387885) - (xy 74.802849 76.49715) - (xy 74.912114 76.577791) - (xy 74.912118 76.577793) - (xy 74.937409 76.586643) - (xy 74.98113 76.612869) - (xy 74.989971 76.621008) - (xy 75.210835 76.841872) - (xy 75.244859 76.904182) - (xy 75.246661 76.914519) - (xy 75.26367 77.043709) - (xy 75.319137 77.177624) - (xy 75.407378 77.292621) - (xy 75.522375 77.380862) - (xy 75.604481 77.41487) - (xy 75.656291 77.43633) - (xy 75.785479 77.453338) - (xy 75.850407 77.48206) - (xy 75.858128 77.489165) - (xy 76.018676 77.649713) - (xy 76.052702 77.712025) - (xy 76.054859 77.752276) - (xy 76.0495 77.802114) - (xy 76.0495 79.197864) - (xy 76.049502 79.197885) - (xy 76.055908 79.25748) - (xy 76.055908 79.257481) - (xy 76.106201 79.392326) - (xy 76.106203 79.392329) - (xy 76.192453 79.507546) - (xy 76.250061 79.550671) - (xy 76.307669 79.593796) - (xy 76.307671 79.593796) - (xy 76.307673 79.593798) - (xy 76.36803 79.616309) - (xy 76.442514 79.64409) - (xy 76.442517 79.644091) - (xy 76.502127 79.6505) - (xy 77.247872 79.650499) - (xy 77.307483 79.644091) - (xy 77.442331 79.593796) - (xy 77.557546 79.507546) - (xy 77.643796 79.392331) - (xy 77.694091 79.257483) - (xy 77.7005 79.197873) - (xy 77.700499 77.802128) - (xy 77.694091 77.742517) - (xy 77.667864 77.672199) - (xy 77.643798 77.607673) - (xy 77.643796 77.60767) - (xy 77.643796 77.607669) - (xy 77.601521 77.551197) - (xy 80.208012 77.551197) - (xy 80.2686 77.593622) - (xy 80.468092 77.686647) - (xy 80.468096 77.686649) - (xy 80.680712 77.743619) - (xy 80.9 77.762804) - (xy 81.119287 77.743619) - (xy 81.331903 77.686649) - (xy 81.331912 77.686645) - (xy 81.531405 77.593619) - (xy 81.531412 77.593615) - (xy 81.591986 77.551198) - (xy 81.591986 77.551197) - (xy 80.9 76.85921) - (xy 80.899999 76.85921) - (xy 80.208012 77.551196) - (xy 80.208012 77.551197) - (xy 77.601521 77.551197) - (xy 77.600671 77.550061) - (xy 77.557546 77.492453) - (xy 77.442332 77.406205) - (xy 77.442331 77.406204) - (xy 77.442329 77.406203) - (xy 77.442326 77.406201) - (xy 77.307483 77.355909) - (xy 77.307486 77.355909) - (xy 77.247878 77.3495) - (xy 77.247873 77.3495) - (xy 76.832728 77.3495) - (xy 76.764607 77.329498) - (xy 76.743633 77.312595) - (xy 76.389164 76.958126) - (xy 76.355138 76.895814) - (xy 76.35334 76.885499) - (xy 76.33633 76.756291) - (xy 76.310561 76.694079) - (xy 76.280862 76.622375) - (xy 76.192621 76.507378) - (xy 76.183006 76.5) - (xy 79.637195 76.5) - (xy 79.65638 76.719287) - (xy 79.71335 76.931903) - (xy 79.713352 76.931907) - (xy 79.806378 77.131402) - (xy 79.848801 77.191986) - (xy 80.511486 76.529302) - (xy 80.546372 76.529302) - (xy 80.575047 76.642538) - (xy 80.638936 76.740327) - (xy 80.731115 76.812072) - (xy 80.841595 76.85) - (xy 80.929005 76.85) - (xy 81.015216 76.835614) - (xy 81.117947 76.780019) - (xy 81.19706 76.694079) - (xy 81.243982 76.587108) - (xy 81.2512 76.499999) - (xy 81.259209 76.499999) - (xy 81.951197 77.191986) - (xy 81.951198 77.191986) - (xy 81.993615 77.131412) - (xy 81.993619 77.131405) - (xy 82.086645 76.931912) - (xy 82.086649 76.931903) - (xy 82.143619 76.719287) - (xy 82.162804 76.5) - (xy 82.143619 76.280712) - (xy 82.086649 76.068096) - (xy 82.086647 76.068092) - (xy 81.993621 75.868598) - (xy 81.951198 75.808012) - (xy 81.951196 75.808012) - (xy 81.259209 76.499999) - (xy 81.2512 76.499999) - (xy 81.253628 76.470698) - (xy 81.224953 76.357462) - (xy 81.161064 76.259673) - (xy 81.068885 76.187928) - (xy 80.958405 76.15) - (xy 80.870995 76.15) - (xy 80.784784 76.164386) - (xy 80.682053 76.219981) - (xy 80.60294 76.305921) - (xy 80.556018 76.412892) - (xy 80.546372 76.529302) - (xy 80.511486 76.529302) - (xy 80.540789 76.499999) - (xy 79.848801 75.808011) - (xy 79.806378 75.868598) - (xy 79.713352 76.068092) - (xy 79.71335 76.068096) - (xy 79.65638 76.280712) - (xy 79.637195 76.5) - (xy 76.183006 76.5) - (xy 76.077625 76.419138) - (xy 76.046789 76.406366) - (xy 75.991508 76.361818) - (xy 75.969087 76.294455) - (xy 75.971911 76.26306) - (xy 75.972644 76.259704) - (xy 75.972646 76.259699) - (xy 75.9755 76.229266) - (xy 75.9755 75.570734) - (xy 75.972646 75.540301) - (xy 75.965367 75.5195) - (xy 75.940629 75.448801) - (xy 80.208011 75.448801) - (xy 80.899999 76.140789) - (xy 80.9 76.140789) - (xy 81.591986 75.448801) - (xy 81.591986 75.4488) - (xy 81.531401 75.406378) - (xy 81.531402 75.406378) - (xy 81.331907 75.313352) - (xy 81.331903 75.31335) - (xy 81.119287 75.25638) - (xy 80.9 75.237195) - (xy 80.680712 75.25638) - (xy 80.468096 75.31335) - (xy 80.468092 75.313352) - (xy 80.268598 75.406378) - (xy 80.208011 75.448801) - (xy 75.940629 75.448801) - (xy 75.927793 75.412118) - (xy 75.927791 75.412114) - (xy 75.84715 75.302849) - (xy 75.737885 75.222208) - (xy 75.737881 75.222206) - (xy 75.609704 75.177355) - (xy 75.6097 75.177354) - (xy 75.579266 75.1745) - (xy 75.070734 75.1745) - (xy 75.070733 75.1745) - (xy 75.040299 75.177354) - (xy 75.040295 75.177355) - (xy 74.912118 75.222206) - (xy 74.912114 75.222208) - (xy 74.802849 75.302849) - (xy 74.722208 75.412114) - (xy 74.722206 75.412118) - (xy 74.677355 75.540295) - (xy 74.677354 75.540299) - (xy 74.6745 75.570733) - (xy 74.6745 76.229266) - (xy 74.3255 76.229266) - (xy 74.3255 75.570734) - (xy 74.322646 75.540301) - (xy 74.315367 75.5195) - (xy 74.277793 75.412118) - (xy 74.277791 75.412114) - (xy 74.19715 75.302849) - (xy 74.087885 75.222208) - (xy 74.087881 75.222206) - (xy 73.959704 75.177355) - (xy 73.9597 75.177354) - (xy 73.929266 75.1745) - (xy 73.420734 75.1745) - (xy 73.420733 75.1745) - (xy 73.390299 75.177354) - (xy 73.390295 75.177355) - (xy 73.262118 75.222206) - (xy 73.262114 75.222208) - (xy 73.152849 75.302849) - (xy 73.072208 75.412114) - (xy 73.072207 75.412118) - (xy 73.064159 75.435115) - (xy 73.022783 75.492806) - (xy 72.956783 75.518969) - (xy 72.945231 75.5195) - (xy 72.84061 75.5195) - (xy 72.772489 75.499498) - (xy 72.725996 75.445842) - (xy 72.716951 75.382939) - (xy 72.71517 75.38281) - (xy 72.7155 75.378255) - (xy 72.7155 75.254554) - (xy 72.735502 75.186433) - (xy 72.764796 75.154591) - (xy 72.798632 75.128627) - (xy 72.896082 75.001629) - (xy 72.896087 75.001621) - (xy 72.95735 74.853718) - (xy 72.965081 74.795) - (xy 72.40744 74.795) - (xy 72.402885 74.794835) - (xy 72.398264 74.7945) - (xy 72.39826 74.7945) - (xy 72.1 74.7945) - (xy 72.1 74.395) - (xy 72.965079 74.395) - (xy 72.95735 74.336281) - (xy 72.957349 74.33628) - (xy 72.949868 74.318218) - (xy 72.942279 74.247628) - (xy 72.949868 74.221782) - (xy 72.95735 74.203718) - (xy 72.965081 74.145) - (xy 72.1 74.145) - (xy 72.1 73.745) - (xy 72.965079 73.745) - (xy 72.95735 73.686281) - (xy 72.957349 73.68628) - (xy 72.949868 73.668218) - (xy 72.945652 73.629) - (xy 73.592 73.629) - (xy 73.592 73.750516) - (xy 73.602605 73.854318) - (xy 73.602606 73.854321) - (xy 73.658342 74.022525) - (xy 73.751365 74.173339) - (xy 73.75137 74.173345) - (xy 73.876654 74.298629) - (xy 73.87666 74.298634) - (xy 74.027474 74.391657) - (xy 74.195678 74.447393) - (xy 74.195681 74.447394) - (xy 74.299483 74.457999) - (xy 74.299483 74.458) - (xy 75.196 74.458) - (xy 75.196 73.629) - (xy 75.704 73.629) - (xy 75.704 74.458) - (xy 76.600517 74.458) - (xy 76.600516 74.457999) - (xy 76.704318 74.447394) - (xy 76.704321 74.447393) - (xy 76.872525 74.391657) - (xy 77.023339 74.298634) - (xy 77.023345 74.298629) - (xy 77.148629 74.173345) - (xy 77.148634 74.173339) - (xy 77.241657 74.022525) - (xy 77.297393 73.854321) - (xy 77.297394 73.854318) - (xy 77.307999 73.750516) - (xy 77.308 73.750516) - (xy 77.308 73.629) - (xy 75.704 73.629) - (xy 75.196 73.629) - (xy 73.592 73.629) - (xy 72.945652 73.629) - (xy 72.942279 73.597628) - (xy 72.949868 73.571782) - (xy 72.95735 73.553718) - (xy 72.965081 73.495) - (xy 72.1 73.495) - (xy 72.1 73.1316) - (xy 79.7215 73.1316) - (xy 79.7215 73.156771) - (xy 79.724267 73.191932) - (xy 79.724269 73.191944) - (xy 79.768008 73.342493) - (xy 79.847809 73.477428) - (xy 79.847814 73.477435) - (xy 79.958664 73.588285) - (xy 79.958671 73.58829) - (xy 80.093606 73.668091) - (xy 80.2295 73.707571) - (xy 80.2295 73.1316) - (xy 80.6795 73.1316) - (xy 80.6795 73.707571) - (xy 80.815393 73.668091) - (xy 80.950328 73.58829) - (xy 80.950335 73.588285) - (xy 81.061185 73.477435) - (xy 81.06119 73.477428) - (xy 81.140991 73.342493) - (xy 81.18473 73.191944) - (xy 81.184732 73.191932) - (xy 81.1875 73.156771) - (xy 81.1875 73.1316) - (xy 80.6795 73.1316) - (xy 80.2295 73.1316) - (xy 79.7215 73.1316) - (xy 72.1 73.1316) - (xy 72.1 73.121) - (xy 73.592 73.121) - (xy 75.196 73.121) - (xy 75.196 72.292) - (xy 75.704 72.292) - (xy 75.704 73.121) - (xy 77.308 73.121) - (xy 77.308 72.999483) - (xy 77.297394 72.895681) - (xy 77.297393 72.895678) - (xy 77.241657 72.727474) - (xy 77.213362 72.6816) - (xy 79.7215 72.6816) - (xy 80.2295 72.6816) - (xy 80.2295 72.105627) - (xy 80.6795 72.105627) - (xy 80.6795 72.6816) - (xy 81.1875 72.6816) - (xy 81.1875 72.656429) - (xy 81.184732 72.621267) - (xy 81.18473 72.621255) - (xy 81.140991 72.470706) - (xy 81.06119 72.335771) - (xy 81.061185 72.335764) - (xy 80.950335 72.224914) - (xy 80.950328 72.224909) - (xy 80.815393 72.145108) - (xy 80.6795 72.105627) - (xy 80.2295 72.105627) - (xy 80.093606 72.145108) - (xy 79.958671 72.224909) - (xy 79.958664 72.224914) - (xy 79.847814 72.335764) - (xy 79.847809 72.335771) - (xy 79.768008 72.470706) - (xy 79.724269 72.621255) - (xy 79.724267 72.621267) - (xy 79.7215 72.656429) - (xy 79.7215 72.6816) - (xy 77.213362 72.6816) - (xy 77.148634 72.57666) - (xy 77.148629 72.576654) - (xy 77.023345 72.45137) - (xy 77.023339 72.451365) - (xy 76.872525 72.358342) - (xy 76.704321 72.302606) - (xy 76.704318 72.302605) - (xy 76.600516 72.292) - (xy 75.704 72.292) - (xy 75.196 72.292) - (xy 74.299483 72.292) - (xy 74.195681 72.302605) - (xy 74.195678 72.302606) - (xy 74.027474 72.358342) - (xy 73.87666 72.451365) - (xy 73.876654 72.45137) - (xy 73.75137 72.576654) - (xy 73.751365 72.57666) - (xy 73.658342 72.727474) - (xy 73.602606 72.895678) - (xy 73.602605 72.895681) - (xy 73.592 72.999483) - (xy 73.592 73.121) - (xy 72.1 73.121) - (xy 72.1 73.095) - (xy 72.965079 73.095) - (xy 72.95735 73.036281) - (xy 72.957349 73.03628) - (xy 72.896087 72.888378) - (xy 72.896082 72.88837) - (xy 72.79863 72.761369) - (xy 72.671629 72.663917) - (xy 72.671621 72.663912) - (xy 72.523718 72.602649) - (xy 72.404849 72.587) - (xy 71.94 72.587) - (xy 71.94 72.7) - (xy 71.9 72.7) - (xy 71.54 72.7) - (xy 71.54 72.587) - (xy 71.075154 72.587) - (xy 71.075145 72.587001) - (xy 70.956281 72.60265) - (xy 70.95628 72.60265) - (xy 70.808378 72.663912) - (xy 70.808373 72.663915) - (xy 70.795283 72.673961) - (xy 70.729063 72.699563) - (xy 70.718577 72.7) - (xy 68.31241 72.7) - (xy 68.28783 72.697579) - (xy 68.27004 72.69404) - (xy 68.248044 72.689665) - (xy 68.202623 72.67085) - (xy 68.179416 72.655343) - (xy 68.144656 72.620583) - (xy 68.129149 72.597376) - (xy 68.110334 72.551953) - (xy 68.102421 72.512171) - (xy 68.1 72.48759) - (xy 68.1 69.112409) - (xy 68.102421 69.087828) - (xy 68.110334 69.048046) - (xy 68.129149 69.002623) - (xy 68.144656 68.979416) - (xy 68.179416 68.944656) - (xy 68.202623 68.929149) - (xy 68.248047 68.910334) - (xy 68.28783 68.902421) - (xy 68.31241 68.9) - (xy 74.78823 68.9) - ) - ) - ) - (zone (net 2) (net_name "GND") (layer "F.Cu") (tstamp 00000000-0000-0000-0000-000061e5b19e) (hatch edge 0.508) - (priority 2) - (connect_pads (clearance 0.25)) - (min_thickness 0.2) (filled_areas_thickness no) - (fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508)) - (polygon - (pts - (xy 111.5 85.1) - (xy 111.5 98.7) - (xy 100.2 98.7) - (xy 100.2 100.2) - (xy 96.3 100.2) - (xy 96.3 109.3) - (xy 90.5 109.3) - (xy 90.5 130.8) - (xy 65.9 130.7) - (xy 65.9 105.9) - (xy 93.7 105.9) - (xy 93.7 105.5) - (xy 86.3 105.5) - (xy 86 105.5) - (xy 81.8 105.5) - (xy 80.6 105.5) - (xy 80.6 85) - ) - ) - (polygon - (pts - (xy 91.8 103.2) - (xy 91.8 104.7) - (xy 93.7 104.7) - (xy 93.700001 103.2) - ) - ) - (filled_polygon - (layer "F.Cu") - (pts - (xy 83.17806 85.008343) - (xy 83.23619 85.027438) - (xy 83.271993 85.077054) - (xy 83.271795 85.138239) - (xy 83.270498 85.141938) - (xy 83.248506 85.2009) - (xy 83.248504 85.200911) - (xy 83.242 85.261412) - (xy 83.242 85.555999) - (xy 83.242001 85.556) - (xy 88.057999 85.556) - (xy 88.058 85.555999) - (xy 88.058 85.261412) - (xy 88.051495 85.200911) - (xy 88.051493 85.200904) - (xy 88.035476 85.157959) - (xy 88.032856 85.09683) - (xy 88.066666 85.045835) - (xy 88.123994 85.024453) - (xy 88.128499 85.024364) - (xy 89.270707 85.02806) - (xy 89.328836 85.047155) - (xy 89.364639 85.096771) - (xy 89.364441 85.157956) - (xy 89.363145 85.161654) - (xy 89.348505 85.200905) - (xy 89.348504 85.200911) - (xy 89.342 85.261412) - (xy 89.342 85.555999) - (xy 89.342001 85.556) - (xy 94.157999 85.556) - (xy 94.158 85.555999) - (xy 94.158 85.261412) - (xy 94.151495 85.200911) - (xy 94.151493 85.200904) - (xy 94.142848 85.177724) - (xy 94.140227 85.116595) - (xy 94.174038 85.0656) - (xy 94.231366 85.044218) - (xy 94.235873 85.044129) - (xy 95.263473 85.047454) - (xy 95.321602 85.066549) - (xy 95.357405 85.116165) - (xy 95.357207 85.17735) - (xy 95.355912 85.181046) - (xy 95.348505 85.200905) - (xy 95.348504 85.200911) - (xy 95.342 85.261412) - (xy 95.342 85.555999) - (xy 95.342001 85.556) - (xy 100.157999 85.556) - (xy 100.158 85.555999) - (xy 100.158 85.261412) - (xy 100.151495 85.200911) - (xy 100.151493 85.200903) - (xy 100.1501 85.197167) - (xy 100.147478 85.136038) - (xy 100.181288 85.085042) - (xy 100.238615 85.063659) - (xy 100.243126 85.063569) - (xy 101.256241 85.066848) - (xy 101.314369 85.085943) - (xy 101.350172 85.135559) - (xy 101.349974 85.196744) - (xy 101.348681 85.200435) - (xy 101.348506 85.200903) - (xy 101.348504 85.200911) - (xy 101.342 85.261412) - (xy 101.342 85.555999) - (xy 101.342001 85.556) - (xy 106.157999 85.556) - (xy 106.158 85.555999) - (xy 106.158 85.261412) - (xy 106.150833 85.194747) - (xy 106.153259 85.194486) - (xy 106.157417 85.143816) - (xy 106.197308 85.097423) - (xy 106.249072 85.083006) - (xy 107.25094 85.086248) - (xy 107.309067 85.105343) - (xy 107.34487 85.154959) - (xy 107.34905 85.195828) - (xy 107.342 85.26141) - (xy 107.342 85.555999) - (xy 107.342001 85.556) - (xy 110.945 85.556) - (xy 111.003191 85.574907) - (xy 111.039155 85.624407) - (xy 111.044 85.655) - (xy 111.044 89.257999) - (xy 111.044001 89.258) - (xy 111.338585 89.258) - (xy 111.390416 89.252427) - (xy 111.450295 89.265005) - (xy 111.491344 89.310377) - (xy 111.5 89.35086) - (xy 111.5 90.349139) - (xy 111.481093 90.40733) - (xy 111.431593 90.443294) - (xy 111.390418 90.447572) - (xy 111.338587 90.442) - (xy 111.044001 90.442) - (xy 111.044 90.442001) - (xy 111.044 95.257999) - (xy 111.044001 95.258) - (xy 111.338585 95.258) - (xy 111.390416 95.252427) - (xy 111.450295 95.265005) - (xy 111.491344 95.310377) - (xy 111.5 95.35086) - (xy 111.5 96.349139) - (xy 111.481093 96.40733) - (xy 111.431593 96.443294) - (xy 111.390418 96.447572) - (xy 111.338587 96.442) - (xy 111.044001 96.442) - (xy 111.044 96.442001) - (xy 111.044 98.7) - (xy 110.536 98.7) - (xy 110.536 96.442001) - (xy 110.535999 96.442) - (xy 110.241413 96.442) - (xy 110.180911 96.448504) - (xy 110.180901 96.448506) - (xy 110.044039 96.499552) - (xy 109.9271 96.587092) - (xy 109.927092 96.5871) - (xy 109.839552 96.704039) - (xy 109.788506 96.840901) - (xy 109.788504 96.840911) - (xy 109.782 96.901412) - (xy 109.782 98.601) - (xy 109.763093 98.659191) - (xy 109.713593 98.695155) - (xy 109.683 98.7) - (xy 108.059898 98.7) - (xy 108.001707 98.681093) - (xy 107.999091 98.679125) - (xy 107.981189 98.665191) - (xy 107.974281 98.661452) - (xy 107.967195 98.657988) - (xy 107.928743 98.646541) - (xy 107.914596 98.642329) - (xy 107.86266 98.6245) - (xy 107.862657 98.624499) - (xy 107.854923 98.623208) - (xy 107.847089 98.622232) - (xy 107.847088 98.622232) - (xy 107.847086 98.622232) - (xy 107.792244 98.6245) - (xy 103.070692 98.6245) - (xy 103.012501 98.605593) - (xy 102.976537 98.556093) - (xy 102.974468 98.546067) - (xy 102.973931 98.546185) - (xy 102.972646 98.540305) - (xy 102.972646 98.540301) - (xy 102.927793 98.412118) - (xy 102.885671 98.355045) - (xy 102.847154 98.302855) - (xy 102.847152 98.302853) - (xy 102.84715 98.30285) - (xy 102.847146 98.302847) - (xy 102.847144 98.302845) - (xy 102.737883 98.222207) - (xy 102.609703 98.177355) - (xy 102.609694 98.177353) - (xy 102.579274 98.1745) - (xy 102.579266 98.1745) - (xy 102.070734 98.1745) - (xy 102.070725 98.1745) - (xy 102.040305 98.177353) - (xy 102.040296 98.177355) - (xy 101.912116 98.222207) - (xy 101.802855 98.302845) - (xy 101.802845 98.302855) - (xy 101.722207 98.412116) - (xy 101.677355 98.540296) - (xy 101.677353 98.540305) - (xy 101.6745 98.570725) - (xy 101.6745 98.601) - (xy 101.655593 98.659191) - (xy 101.606093 98.695155) - (xy 101.5755 98.7) - (xy 101.4245 98.7) - (xy 101.366309 98.681093) - (xy 101.330345 98.631593) - (xy 101.3255 98.601) - (xy 101.3255 98.570727) - (xy 101.325499 98.570725) - (xy 101.324127 98.556093) - (xy 101.322646 98.540301) - (xy 101.277793 98.412118) - (xy 101.235671 98.355045) - (xy 101.197154 98.302855) - (xy 101.197152 98.302853) - (xy 101.19715 98.30285) - (xy 101.197146 98.302847) - (xy 101.197144 98.302845) - (xy 101.087883 98.222207) - (xy 100.959703 98.177355) - (xy 100.959694 98.177353) - (xy 100.929274 98.1745) - (xy 100.929266 98.1745) - (xy 100.420734 98.1745) - (xy 100.420725 98.1745) - (xy 100.390305 98.177353) - (xy 100.390296 98.177355) - (xy 100.262116 98.222207) - (xy 100.152855 98.302845) - (xy 100.152844 98.302856) - (xy 100.113441 98.356245) - (xy 100.063673 98.391837) - (xy 100.00249 98.391379) - (xy 99.953261 98.355045) - (xy 99.93927 98.326909) - (xy 99.925369 98.282299) - (xy 99.925366 98.282292) - (xy 99.836419 98.135157) - (xy 99.714842 98.01358) - (xy 99.567707 97.924633) - (xy 99.567699 97.92463) - (xy 99.403563 97.873483) - (xy 99.403557 97.873481) - (xy 99.33223 97.867) - (xy 99.254001 97.867) - (xy 99.254 97.867001) - (xy 99.254 98.93) - (xy 99.235093 98.988191) - (xy 99.185593 99.024155) - (xy 99.155 99.029) - (xy 98.017002 99.029) - (xy 98.017001 99.029001) - (xy 98.017001 99.032232) - (xy 98.023481 99.103556) - (xy 98.023483 99.103562) - (xy 98.07463 99.267699) - (xy 98.074633 99.267707) - (xy 98.16358 99.414842) - (xy 98.285157 99.536419) - (xy 98.432292 99.625366) - (xy 98.432302 99.62537) - (xy 98.489546 99.643208) - (xy 98.539478 99.67857) - (xy 98.559087 99.736528) - (xy 98.540884 99.794943) - (xy 98.516819 99.816083) - (xy 98.518087 99.817801) - (xy 98.402855 99.902845) - (xy 98.402845 99.902855) - (xy 98.330517 100.000857) - (xy 98.280749 100.03645) - (xy 98.267172 100.039716) - (xy 98.261969 100.040585) - (xy 98.211107 100.046926) - (xy 98.204075 100.049019) - (xy 98.197121 100.051407) - (xy 98.15205 100.075797) - (xy 98.106018 100.098301) - (xy 98.100029 100.102577) - (xy 98.09424 100.107083) - (xy 98.074733 100.128273) - (xy 98.059533 100.144785) - (xy 98.054818 100.1495) - (xy 98.045744 100.158573) - (xy 97.991226 100.186349) - (xy 97.933904 100.178291) - (xy 97.885547 100.155741) - (xy 97.861842 100.15262) - (xy 97.838139 100.1495) - (xy 97.838137 100.1495) - (xy 96.461865 100.1495) - (xy 96.461854 100.149501) - (xy 96.414456 100.15574) - (xy 96.375419 100.173943) - (xy 96.339432 100.190724) - (xy 96.300686 100.199314) - (xy 96.287325 100.212675) - (xy 96.281093 100.231857) - (xy 96.271004 100.243669) - (xy 96.229252 100.285421) - (xy 96.18826 100.373329) - (xy 96.146532 100.418077) - (xy 96.08647 100.429751) - (xy 96.06394 100.424247) - (xy 95.934599 100.376006) - (xy 95.934588 100.376004) - (xy 95.874087 100.3695) - (xy 95.254001 100.3695) - (xy 95.254 100.369501) - (xy 95.254 104.230499) - (xy 95.254001 104.2305) - (xy 95.874087 104.2305) - (xy 95.934588 104.223995) - (xy 95.934596 104.223993) - (xy 96.063939 104.175752) - (xy 96.125069 104.173132) - (xy 96.176063 104.206943) - (xy 96.18826 104.226671) - (xy 96.229251 104.314576) - (xy 96.229252 104.314577) - (xy 96.229253 104.314579) - (xy 96.271005 104.356331) - (xy 96.298781 104.410846) - (xy 96.3 104.426333) - (xy 96.3 106.991464) - (xy 96.281093 107.049655) - (xy 96.231593 107.085619) - (xy 96.201786 107.090461) - (xy 95 107.1) - (xy 94.983579 109.201773) - (xy 94.964218 109.259815) - (xy 94.914438 109.295391) - (xy 94.884582 109.3) - (xy 90.5 109.3) - (xy 90.5 109.300001) - (xy 90.5 128.883) - (xy 90.481093 128.941191) - (xy 90.431593 128.977155) - (xy 90.401 128.982) - (xy 89.801413 128.982) - (xy 89.740911 128.988504) - (xy 89.740901 128.988506) - (xy 89.604039 129.039552) - (xy 89.4871 129.127092) - (xy 89.487092 129.1271) - (xy 89.399552 129.244039) - (xy 89.348506 129.380901) - (xy 89.348504 129.380911) - (xy 89.342 129.441412) - (xy 89.342 129.735999) - (xy 89.342001 129.736) - (xy 90.5 129.736) - (xy 90.5 130.244) - (xy 89.342001 130.244) - (xy 89.342 130.244001) - (xy 89.342 130.538587) - (xy 89.348504 130.599088) - (xy 89.348506 130.599099) - (xy 89.371758 130.661439) - (xy 89.374378 130.722568) - (xy 89.340567 130.773562) - (xy 89.283239 130.794944) - (xy 89.278598 130.795034) - (xy 88.12235 130.790334) - (xy 88.064236 130.77119) - (xy 88.028474 130.721545) - (xy 88.028723 130.66036) - (xy 88.029994 130.656737) - (xy 88.051494 130.599092) - (xy 88.051495 130.599088) - (xy 88.058 130.538587) - (xy 88.058 130.244001) - (xy 88.057999 130.244) - (xy 83.242001 130.244) - (xy 83.242 130.244001) - (xy 83.242 130.538587) - (xy 83.248504 130.599088) - (xy 83.248505 130.599095) - (xy 83.262496 130.636606) - (xy 83.265115 130.697735) - (xy 83.231303 130.748729) - (xy 83.173975 130.77011) - (xy 83.169334 130.7702) - (xy 82.131432 130.76598) - (xy 82.073319 130.746836) - (xy 82.037557 130.697191) - (xy 82.037806 130.636006) - (xy 82.039078 130.632382) - (xy 82.051493 130.599096) - (xy 82.051495 130.599088) - (xy 82.058 130.538587) - (xy 82.058 130.244001) - (xy 82.057999 130.244) - (xy 77.242001 130.244) - (xy 77.242 130.244001) - (xy 77.242 130.538587) - (xy 77.248504 130.599088) - (xy 77.248506 130.599098) - (xy 77.253385 130.612179) - (xy 77.256003 130.673309) - (xy 77.222191 130.724302) - (xy 77.164862 130.745682) - (xy 77.160224 130.745772) - (xy 76.140516 130.741627) - (xy 76.082402 130.722483) - (xy 76.04664 130.672838) - (xy 76.046889 130.611653) - (xy 76.048163 130.608024) - (xy 76.051494 130.599095) - (xy 76.051495 130.599088) - (xy 76.058 130.538587) - (xy 76.058 130.244001) - (xy 76.057999 130.244) - (xy 71.242001 130.244) - (xy 71.242 130.244001) - (xy 71.242 130.538587) - (xy 71.248504 130.599091) - (xy 71.248619 130.599575) - (xy 71.248591 130.599903) - (xy 71.249167 130.605252) - (xy 71.248143 130.605362) - (xy 71.243605 130.660555) - (xy 71.203705 130.706941) - (xy 71.151872 130.721348) - (xy 70.148288 130.717268) - (xy 70.090174 130.698124) - (xy 70.054412 130.648479) - (xy 70.052737 130.605456) - (xy 70.050833 130.605252) - (xy 70.058 130.538587) - (xy 70.058 130.244001) - (xy 70.057999 130.244) - (xy 66.455 130.244) - (xy 66.396809 130.225093) - (xy 66.360845 130.175593) - (xy 66.356 130.145) - (xy 66.356 129.735999) - (xy 66.864 129.735999) - (xy 66.864001 129.736) - (xy 68.075999 129.736) - (xy 68.076 129.735999) - (xy 68.584 129.735999) - (xy 68.584001 129.736) - (xy 70.057999 129.736) - (xy 70.058 129.735999) - (xy 71.242 129.735999) - (xy 71.242001 129.736) - (xy 73.395999 129.736) - (xy 73.396 129.735999) - (xy 73.904 129.735999) - (xy 73.904001 129.736) - (xy 76.057999 129.736) - (xy 76.058 129.735999) - (xy 77.242 129.735999) - (xy 77.242001 129.736) - (xy 79.395999 129.736) - (xy 79.396 129.735999) - (xy 79.904 129.735999) - (xy 79.904001 129.736) - (xy 82.057999 129.736) - (xy 82.058 129.735999) - (xy 83.242 129.735999) - (xy 83.242001 129.736) - (xy 85.395999 129.736) - (xy 85.396 129.735999) - (xy 85.904 129.735999) - (xy 85.904001 129.736) - (xy 88.057999 129.736) - (xy 88.058 129.735999) - (xy 88.058 129.441412) - (xy 88.051495 129.380911) - (xy 88.051493 129.380901) - (xy 88.000447 129.244039) - (xy 87.912907 129.1271) - (xy 87.912899 129.127092) - (xy 87.79596 129.039552) - (xy 87.659098 128.988506) - (xy 87.659088 128.988504) - (xy 87.598587 128.982) - (xy 85.904001 128.982) - (xy 85.904 128.982001) - (xy 85.904 129.735999) - (xy 85.396 129.735999) - (xy 85.396 128.982001) - (xy 85.395999 128.982) - (xy 83.701413 128.982) - (xy 83.640911 128.988504) - (xy 83.640901 128.988506) - (xy 83.504039 129.039552) - (xy 83.3871 129.127092) - (xy 83.387092 129.1271) - (xy 83.299552 129.244039) - (xy 83.248506 129.380901) - (xy 83.248504 129.380911) - (xy 83.242 129.441412) - (xy 83.242 129.735999) - (xy 82.058 129.735999) - (xy 82.058 129.441412) - (xy 82.051495 129.380911) - (xy 82.051493 129.380901) - (xy 82.000447 129.244039) - (xy 81.912907 129.1271) - (xy 81.912899 129.127092) - (xy 81.79596 129.039552) - (xy 81.659098 128.988506) - (xy 81.659088 128.988504) - (xy 81.598587 128.982) - (xy 79.904001 128.982) - (xy 79.904 128.982001) - (xy 79.904 129.735999) - (xy 79.396 129.735999) - (xy 79.396 128.982001) - (xy 79.395999 128.982) - (xy 77.701413 128.982) - (xy 77.640911 128.988504) - (xy 77.640901 128.988506) - (xy 77.504039 129.039552) - (xy 77.3871 129.127092) - (xy 77.387092 129.1271) - (xy 77.299552 129.244039) - (xy 77.248506 129.380901) - (xy 77.248504 129.380911) - (xy 77.242 129.441412) - (xy 77.242 129.735999) - (xy 76.058 129.735999) - (xy 76.058 129.441412) - (xy 76.051495 129.380911) - (xy 76.051493 129.380901) - (xy 76.000447 129.244039) - (xy 75.912907 129.1271) - (xy 75.912899 129.127092) - (xy 75.79596 129.039552) - (xy 75.659098 128.988506) - (xy 75.659088 128.988504) - (xy 75.598587 128.982) - (xy 73.904001 128.982) - (xy 73.904 128.982001) - (xy 73.904 129.735999) - (xy 73.396 129.735999) - (xy 73.396 128.982001) - (xy 73.395999 128.982) - (xy 71.701413 128.982) - (xy 71.640911 128.988504) - (xy 71.640901 128.988506) - (xy 71.504039 129.039552) - (xy 71.3871 129.127092) - (xy 71.387092 129.1271) - (xy 71.299552 129.244039) - (xy 71.248506 129.380901) - (xy 71.248504 129.380911) - (xy 71.242 129.441412) - (xy 71.242 129.735999) - (xy 70.058 129.735999) - (xy 70.058 129.441412) - (xy 70.051495 129.380911) - (xy 70.051493 129.380901) - (xy 70.000447 129.244039) - (xy 69.912907 129.1271) - (xy 69.912899 129.127092) - (xy 69.79596 129.039552) - (xy 69.659098 128.988506) - (xy 69.659088 128.988504) - (xy 69.598587 128.982) - (xy 68.584001 128.982) - (xy 68.584 128.982001) - (xy 68.584 129.735999) - (xy 68.076 129.735999) - (xy 68.076 128.982001) - (xy 68.075999 128.982) - (xy 67.717 128.982) - (xy 67.658809 128.963093) - (xy 67.622845 128.913593) - (xy 67.618 128.883) - (xy 67.618 128.524001) - (xy 67.617999 128.524) - (xy 66.864001 128.524) - (xy 66.864 128.524001) - (xy 66.864 129.735999) - (xy 66.356 129.735999) - (xy 66.356 128.115) - (xy 66.374907 128.056809) - (xy 66.424407 128.020845) - (xy 66.455 128.016) - (xy 67.617999 128.016) - (xy 67.618 128.015999) - (xy 67.618 127.001412) - (xy 67.611495 126.940911) - (xy 67.611493 126.940903) - (xy 67.560101 126.803113) - (xy 67.557481 126.741983) - (xy 67.582852 126.698516) - (xy 70.336937 123.944431) - (xy 70.347816 123.935032) - (xy 70.36853 123.919612) - (xy 70.402464 123.879169) - (xy 70.405364 123.876004) - (xy 70.411591 123.869779) - (xy 70.43194 123.844042) - (xy 70.481302 123.785216) - (xy 70.481716 123.784391) - (xy 70.492537 123.767403) - (xy 70.493111 123.766679) - (xy 70.525575 123.697059) - (xy 70.56004 123.628435) - (xy 70.560253 123.627538) - (xy 70.566865 123.608514) - (xy 70.567257 123.607675) - (xy 70.576353 123.563616) - (xy 70.582793 123.532436) - (xy 70.6005 123.457724) - (xy 70.6005 123.456793) - (xy 70.602545 123.436773) - (xy 70.602734 123.435856) - (xy 70.6005 123.359084) - (xy 70.6005 121.699499) - (xy 70.619407 121.641308) - (xy 70.668907 121.605344) - (xy 70.6995 121.600499) - (xy 70.897867 121.600499) - (xy 70.897872 121.600499) - (xy 70.957483 121.594091) - (xy 71.024907 121.568943) - (xy 71.092329 121.543797) - (xy 71.092329 121.543796) - (xy 71.092331 121.543796) - (xy 71.207546 121.457546) - (xy 71.293796 121.342331) - (xy 71.344091 121.207483) - (xy 71.350216 121.150514) - (xy 72.391999 121.150514) - (xy 72.402605 121.254321) - (xy 72.458342 121.422525) - (xy 72.551364 121.573337) - (xy 72.676662 121.698635) - (xy 72.827474 121.791657) - (xy 72.995678 121.847394) - (xy 73.099484 121.858) - (xy 73.895999 121.858) - (xy 73.896 121.857999) - (xy 74.404 121.857999) - (xy 74.404001 121.858) - (xy 75.200516 121.858) - (xy 75.304321 121.847394) - (xy 75.472525 121.791657) - (xy 75.623337 121.698635) - (xy 75.748635 121.573337) - (xy 75.841657 121.422525) - (xy 75.897394 121.254321) - (xy 75.908 121.150514) - (xy 75.908 120.454001) - (xy 75.907999 120.454) - (xy 74.404001 120.454) - (xy 74.404 120.454001) - (xy 74.404 121.857999) - (xy 73.896 121.857999) - (xy 73.896 120.454001) - (xy 73.895999 120.454) - (xy 72.392001 120.454) - (xy 72.392 120.454001) - (xy 72.392 121.150514) - (xy 72.391999 121.150514) - (xy 71.350216 121.150514) - (xy 71.3505 121.147873) - (xy 71.350499 119.945999) - (xy 72.392 119.945999) - (xy 72.392001 119.946) - (xy 73.895999 119.946) - (xy 73.896 119.945999) - (xy 74.404 119.945999) - (xy 74.404001 119.946) - (xy 75.907999 119.946) - (xy 75.908 119.945999) - (xy 75.908 119.249481) - (xy 75.897394 119.145678) - (xy 75.841657 118.977474) - (xy 75.748635 118.826662) - (xy 75.623337 118.701364) - (xy 75.472525 118.608342) - (xy 75.304321 118.552605) - (xy 75.200516 118.542) - (xy 74.404001 118.542) - (xy 74.404 118.542001) - (xy 74.404 119.945999) - (xy 73.896 119.945999) - (xy 73.896 118.542001) - (xy 73.895999 118.542) - (xy 73.099484 118.542) - (xy 72.995678 118.552605) - (xy 72.827474 118.608342) - (xy 72.676662 118.701364) - (xy 72.551364 118.826662) - (xy 72.458342 118.977474) - (xy 72.402605 119.145678) - (xy 72.392 119.249481) - (xy 72.392 119.945999) - (xy 71.350499 119.945999) - (xy 71.350499 119.252128) - (xy 71.344091 119.192517) - (xy 71.308078 119.09596) - (xy 71.293797 119.05767) - (xy 71.207549 118.942458) - (xy 71.207548 118.942457) - (xy 71.207546 118.942454) - (xy 71.150167 118.8995) - (xy 71.092329 118.856202) - (xy 70.957488 118.80591) - (xy 70.957483 118.805909) - (xy 70.957481 118.805908) - (xy 70.957477 118.805908) - (xy 70.926249 118.80255) - (xy 70.897873 118.7995) - (xy 70.89787 118.7995) - (xy 70.6995 118.7995) - (xy 70.641309 118.780593) - (xy 70.605345 118.731093) - (xy 70.6005 118.7005) - (xy 70.6005 116.691886) - (xy 70.601545 116.677539) - (xy 70.601584 116.677268) - (xy 70.605289 116.651979) - (xy 70.600687 116.599381) - (xy 70.6005 116.595081) - (xy 70.6005 116.5863) - (xy 70.6005 116.586293) - (xy 70.596691 116.553709) - (xy 70.589998 116.477204) - (xy 70.589705 116.476322) - (xy 70.585349 116.456667) - (xy 70.585241 116.455748) - (xy 70.585241 116.455745) - (xy 70.558966 116.383558) - (xy 70.534813 116.310667) - (xy 70.534325 116.309876) - (xy 70.525553 116.291754) - (xy 70.525237 116.290885) - (xy 70.483022 116.226701) - (xy 70.442711 116.161346) - (xy 70.442045 116.16068) - (xy 70.429335 116.145074) - (xy 70.42883 116.144306) - (xy 70.428829 116.144305) - (xy 70.372964 116.091599) - (xy 67.794435 113.513069) - (xy 67.785029 113.502183) - (xy 67.769612 113.481474) - (xy 67.769607 113.481469) - (xy 67.760731 113.474021) - (xy 67.729174 113.447542) - (xy 67.725997 113.44463) - (xy 67.719772 113.438406) - (xy 67.694039 113.418059) - (xy 67.635213 113.368698) - (xy 67.635204 113.368692) - (xy 67.634363 113.36827) - (xy 67.617415 113.357473) - (xy 67.61668 113.356892) - (xy 67.616668 113.356885) - (xy 67.547056 113.324424) - (xy 67.542985 113.32238) - (xy 67.538209 113.319981) - (xy 67.494695 113.276972) - (xy 67.48477 113.216597) - (xy 67.503387 113.172183) - (xy 67.560447 113.09596) - (xy 67.611493 112.959098) - (xy 67.611495 112.959088) - (xy 67.618 112.898587) - (xy 67.618 111.204001) - (xy 67.617999 111.204) - (xy 66.455 111.204) - (xy 66.396809 111.185093) - (xy 66.360845 111.135593) - (xy 66.356 111.105) - (xy 66.356 110.695999) - (xy 66.864 110.695999) - (xy 66.864001 110.696) - (xy 67.617999 110.696) - (xy 67.618 110.695999) - (xy 67.618 109.001412) - (xy 67.611495 108.940911) - (xy 67.611493 108.940901) - (xy 67.560447 108.804039) - (xy 67.472907 108.6871) - (xy 67.472899 108.687092) - (xy 67.35596 108.599552) - (xy 67.219098 108.548506) - (xy 67.219088 108.548504) - (xy 67.158587 108.542) - (xy 66.864001 108.542) - (xy 66.864 108.542001) - (xy 66.864 110.695999) - (xy 66.356 110.695999) - (xy 66.356 108.542001) - (xy 66.355999 108.542) - (xy 66.06141 108.542) - (xy 66.060081 108.542143) - (xy 66.059809 108.542085) - (xy 66.058764 108.542142) - (xy 66.058749 108.541863) - (xy 66.000203 108.529563) - (xy 65.959154 108.484191) - (xy 65.9505 108.44371) - (xy 65.9505 107.356289) - (xy 65.969407 107.298098) - (xy 66.018907 107.262134) - (xy 66.058756 107.257999) - (xy 66.058764 107.257858) - (xy 66.059655 107.257905) - (xy 66.060106 107.257859) - (xy 66.061415 107.258) - (xy 66.355999 107.258) - (xy 66.356 107.257999) - (xy 66.356 105.9) - (xy 66.864 105.9) - (xy 66.864 107.257999) - (xy 66.864001 107.258) - (xy 67.158587 107.258) - (xy 67.219088 107.251495) - (xy 67.219098 107.251493) - (xy 67.35596 107.200447) - (xy 67.472899 107.112907) - (xy 67.472907 107.112899) - (xy 67.560447 106.99596) - (xy 67.611493 106.859098) - (xy 67.611495 106.859088) - (xy 67.618 106.798587) - (xy 67.618 105.999) - (xy 67.636907 105.940809) - (xy 67.686407 105.904845) - (xy 67.717 105.9) - (xy 72.801 105.9) - (xy 72.859191 105.918907) - (xy 72.895155 105.968407) - (xy 72.9 105.999) - (xy 72.9 109.4) - (xy 86.7 109.5) - (xy 86.7 109.499999) - (xy 86.71353 107.700515) - (xy 90.542 107.700515) - (xy 90.552605 107.804321) - (xy 90.608342 107.972525) - (xy 90.701364 108.123337) - (xy 90.826662 108.248635) - (xy 90.977474 108.341657) - (xy 91.145678 108.397394) - (xy 91.249484 108.408) - (xy 92.145999 108.408) - (xy 92.146 108.407999) - (xy 92.654 108.407999) - (xy 92.654001 108.408) - (xy 93.550516 108.408) - (xy 93.654321 108.397394) - (xy 93.822525 108.341657) - (xy 93.973337 108.248635) - (xy 94.098635 108.123337) - (xy 94.191657 107.972525) - (xy 94.247394 107.804321) - (xy 94.258 107.700515) - (xy 94.258 107.579001) - (xy 94.257999 107.579) - (xy 92.654001 107.579) - (xy 92.654 107.579001) - (xy 92.654 108.407999) - (xy 92.146 108.407999) - (xy 92.146 107.579001) - (xy 92.145999 107.579) - (xy 90.542001 107.579) - (xy 90.542 107.579001) - (xy 90.542 107.700515) - (xy 86.71353 107.700515) - (xy 86.718263 107.070999) - (xy 90.542 107.070999) - (xy 90.542001 107.071) - (xy 92.145999 107.071) - (xy 92.146 107.070999) - (xy 92.654 107.070999) - (xy 92.654001 107.071) - (xy 94.257999 107.071) - (xy 94.258 107.070999) - (xy 94.258 106.949484) - (xy 94.247394 106.845678) - (xy 94.191657 106.677474) - (xy 94.098635 106.526662) - (xy 93.973337 106.401364) - (xy 93.822525 106.308342) - (xy 93.654321 106.252605) - (xy 93.550516 106.242) - (xy 92.654001 106.242) - (xy 92.654 106.242001) - (xy 92.654 107.070999) - (xy 92.146 107.070999) - (xy 92.146 106.242001) - (xy 92.145999 106.242) - (xy 91.249484 106.242) - (xy 91.145678 106.252605) - (xy 90.977474 106.308342) - (xy 90.826662 106.401364) - (xy 90.701364 106.526662) - (xy 90.608342 106.677474) - (xy 90.552605 106.845678) - (xy 90.542 106.949484) - (xy 90.542 107.070999) - (xy 86.718263 107.070999) - (xy 86.726329 105.998256) - (xy 86.745673 105.940209) - (xy 86.795442 105.904618) - (xy 86.825326 105.9) - (xy 93.699999 105.9) - (xy 93.7 105.9) - (xy 93.7 105.5) - (xy 93.699999 105.5) - (xy 91.434572 105.5) - (xy 91.376381 105.481093) - (xy 91.340417 105.431593) - (xy 91.340417 105.370407) - (xy 91.350311 105.349027) - (xy 91.366657 105.322525) - (xy 91.422394 105.154321) - (xy 91.433 105.050515) - (xy 91.433 105.004001) - (xy 91.432999 105.004) - (xy 88.967001 105.004) - (xy 88.967 105.004001) - (xy 88.967 105.050515) - (xy 88.977605 105.154321) - (xy 89.033342 105.322525) - (xy 89.049689 105.349027) - (xy 89.064145 105.40848) - (xy 89.040895 105.465076) - (xy 88.988819 105.497197) - (xy 88.965428 105.5) - (xy 86.829822 105.5) - (xy 86.771631 105.481093) - (xy 86.735667 105.431593) - (xy 86.730825 105.400256) - (xy 86.730987 105.378788) - (xy 86.744688 103.55649) - (xy 86.764032 103.498444) - (xy 86.813801 103.462853) - (xy 86.874985 103.463313) - (xy 86.882982 103.46637) - (xy 86.886604 103.467937) - (xy 86.933203 103.475317) - (xy 86.937761 103.47626) - (xy 86.952651 103.480083) - (xy 86.983475 103.487999) - (xy 86.983479 103.487999) - (xy 86.983481 103.488) - (xy 87.005483 103.488) - (xy 87.020968 103.489218) - (xy 87.042696 103.49266) - (xy 87.072092 103.489881) - (xy 87.089672 103.48822) - (xy 87.094333 103.488) - (xy 89.375185 103.488) - (xy 89.433376 103.506907) - (xy 89.434514 103.507747) - (xy 89.482667 103.543795) - (xy 89.482668 103.543795) - (xy 89.482669 103.543796) - (xy 89.557045 103.571536) - (xy 89.604956 103.609584) - (xy 89.621355 103.668531) - (xy 89.599974 103.725859) - (xy 89.553587 103.758268) - (xy 89.402473 103.808343) - (xy 89.251662 103.901364) - (xy 89.126364 104.026662) - (xy 89.033342 104.177474) - (xy 88.977605 104.345678) - (xy 88.967 104.449484) - (xy 88.967 104.495999) - (xy 88.967001 104.496) - (xy 91.432999 104.496) - (xy 91.433 104.495999) - (xy 91.433 104.449484) - (xy 91.422394 104.345678) - (xy 91.366657 104.177474) - (xy 91.273635 104.026662) - (xy 91.148337 103.901364) - (xy 90.997526 103.808343) - (xy 90.846412 103.758268) - (xy 90.797123 103.722016) - (xy 90.778555 103.663716) - (xy 90.797801 103.605637) - (xy 90.842954 103.571536) - (xy 90.917331 103.543796) - (xy 91.032546 103.457546) - (xy 91.032551 103.457538) - (xy 91.033251 103.45684) - (xy 91.033997 103.456459) - (xy 91.038214 103.453303) - (xy 91.038759 103.454032) - (xy 91.087765 103.429057) - (xy 91.099172 103.427921) - (xy 91.102906 103.427766) - (xy 91.102911 103.427768) - (xy 91.156298 103.42556) - (xy 91.157756 103.4255) - (xy 91.8 103.4255) - (xy 91.8 103.7) - (xy 91.621843 103.7) - (xy 91.632853 103.783627) - (xy 91.631255 103.783837) - (xy 91.631255 103.816162) - (xy 91.632853 103.816373) - (xy 91.621843 103.9) - (xy 91.8 103.9) - (xy 91.8 104.2) - (xy 91.621843 104.2) - (xy 91.632005 104.27719) - (xy 91.632007 104.277198) - (xy 91.690748 104.419012) - (xy 91.69075 104.419017) - (xy 91.779542 104.534733) - (xy 91.799966 104.592409) - (xy 91.8 104.595) - (xy 91.8 104.7) - (xy 91.800001 104.7) - (xy 92.097773 104.7) - (xy 92.104241 104.700424) - (xy 92.161785 104.707999) - (xy 92.161787 104.708) - (xy 92.699999 104.708) - (xy 92.7 104.707999) - (xy 92.7 104.7) - (xy 93 104.7) - (xy 93 104.707999) - (xy 93.000001 104.708) - (xy 93.538213 104.708) - (xy 93.538214 104.707999) - (xy 93.595759 104.700424) - (xy 93.602227 104.7) - (xy 93.699999 104.7) - (xy 93.7 104.7) - (xy 93.7 104.699998) - (xy 93.728996 104.671003) - (xy 93.730222 104.672229) - (xy 93.761117 104.647876) - (xy 93.794014 104.63425) - (xy 93.794016 104.634249) - (xy 93.915795 104.540805) - (xy 93.915805 104.540795) - (xy 94.009249 104.419016) - (xy 94.009251 104.419012) - (xy 94.062021 104.291615) - (xy 94.101757 104.245089) - (xy 94.153485 104.2305) - (xy 94.745999 104.2305) - (xy 94.746 104.230499) - (xy 94.746 100.369501) - (xy 94.745999 100.3695) - (xy 94.125913 100.3695) - (xy 94.065411 100.376004) - (xy 94.0654 100.376006) - (xy 93.936059 100.424247) - (xy 93.87493 100.426867) - (xy 93.823935 100.393055) - (xy 93.811739 100.373329) - (xy 93.770747 100.285421) - (xy 93.689579 100.204253) - (xy 93.585545 100.155741) - (xy 93.538139 100.1495) - (xy 93.538137 100.1495) - (xy 92.161865 100.1495) - (xy 92.161854 100.149501) - (xy 92.114455 100.15574) - (xy 92.114453 100.15574) - (xy 92.010423 100.204251) - (xy 91.929253 100.285421) - (xy 91.880741 100.389455) - (xy 91.8745 100.436862) - (xy 91.8745 100.43981) - (xy 91.855593 100.498001) - (xy 91.806093 100.533965) - (xy 91.744907 100.533965) - (xy 91.705496 100.509814) - (xy 90.604495 99.408813) - (xy 90.576718 99.354296) - (xy 90.575499 99.338809) - (xy 90.575499 99.304521) - (xy 90.575499 99.304516) - (xy 90.569412 99.247886) - (xy 90.521628 99.119774) - (xy 90.439687 99.010313) - (xy 90.332401 98.93) - (xy 90.330228 98.928373) - (xy 90.330226 98.928372) - (xy 90.202114 98.880588) - (xy 90.202113 98.880587) - (xy 90.163895 98.876479) - (xy 90.145485 98.8745) - (xy 90.145481 98.8745) - (xy 89.604521 98.8745) - (xy 89.604515 98.874501) - (xy 89.547888 98.880587) - (xy 89.547886 98.880588) - (xy 89.419774 98.928372) - (xy 89.419773 98.928372) - (xy 89.419772 98.928373) - (xy 89.322728 99.001018) - (xy 89.264813 99.020754) - (xy 89.206358 99.002679) - (xy 89.179139 98.973737) - (xy 89.128891 98.892273) - (xy 89.007726 98.771108) - (xy 88.861888 98.681154) - (xy 88.861886 98.681153) - (xy 88.699232 98.627255) - (xy 88.598852 98.617) - (xy 88.579001 98.617) - (xy 88.579 98.617001) - (xy 88.579 100.531993) - (xy 88.560093 100.590184) - (xy 88.550004 100.601997) - (xy 88.529 100.623001) - (xy 88.529 101.355) - (xy 88.510093 101.413191) - (xy 88.460593 101.449155) - (xy 88.43 101.454) - (xy 87.367002 101.454) - (xy 87.367001 101.454001) - (xy 87.367001 101.532232) - (xy 87.373481 101.603556) - (xy 87.373483 101.603562) - (xy 87.42463 101.767699) - (xy 87.424633 101.767707) - (xy 87.51358 101.914842) - (xy 87.635159 102.036421) - (xy 87.663044 102.053278) - (xy 87.703061 102.099562) - (xy 87.708231 102.160529) - (xy 87.676577 102.21289) - (xy 87.620192 102.236646) - (xy 87.611828 102.237) - (xy 87.299706 102.237) - (xy 87.252012 102.224754) - (xy 87.232093 102.213803) - (xy 87.232089 102.213801) - (xy 87.21078 102.20833) - (xy 87.196083 102.203298) - (xy 87.175896 102.194562) - (xy 87.17589 102.19456) - (xy 87.129286 102.187179) - (xy 87.124718 102.186233) - (xy 87.079021 102.1745) - (xy 87.079019 102.1745) - (xy 87.057018 102.1745) - (xy 87.04153 102.173281) - (xy 87.019804 102.169839) - (xy 86.972828 102.17428) - (xy 86.968167 102.1745) - (xy 86.854826 102.1745) - (xy 86.796635 102.155593) - (xy 86.760671 102.106093) - (xy 86.755829 102.074756) - (xy 86.764316 100.945999) - (xy 87.367 100.945999) - (xy 87.367001 100.946) - (xy 88.020999 100.946) - (xy 88.021 100.945999) - (xy 88.021 100.268007) - (xy 88.039907 100.209816) - (xy 88.049996 100.198003) - (xy 88.071 100.176999) - (xy 88.071 99.854001) - (xy 88.070999 99.854) - (xy 87.367001 99.854) - (xy 87.367 99.854001) - (xy 87.367 99.898851) - (xy 87.377255 99.999232) - (xy 87.431153 100.161886) - (xy 87.431154 100.161888) - (xy 87.521108 100.307726) - (xy 87.536055 100.322673) - (xy 87.563832 100.37719) - (xy 87.554261 100.437622) - (xy 87.536057 100.462678) - (xy 87.513584 100.485152) - (xy 87.513581 100.485156) - (xy 87.424633 100.632292) - (xy 87.42463 100.6323) - (xy 87.373483 100.796436) - (xy 87.373481 100.796442) - (xy 87.367 100.867769) - (xy 87.367 100.945999) - (xy 86.764316 100.945999) - (xy 86.776346 99.345999) - (xy 87.367 99.345999) - (xy 87.367001 99.346) - (xy 88.070999 99.346) - (xy 88.071 99.345999) - (xy 88.071 98.617001) - (xy 88.070999 98.617) - (xy 88.051148 98.617) - (xy 87.950767 98.627255) - (xy 87.788113 98.681153) - (xy 87.788111 98.681154) - (xy 87.642273 98.771108) - (xy 87.521108 98.892273) - (xy 87.431154 99.038111) - (xy 87.431153 99.038113) - (xy 87.377255 99.200767) - (xy 87.367 99.301148) - (xy 87.367 99.345999) - (xy 86.776346 99.345999) - (xy 86.782549 98.520999) - (xy 98.017 98.520999) - (xy 98.017001 98.521) - (xy 98.745999 98.521) - (xy 98.746 98.520999) - (xy 98.746 97.866999) - (xy 98.667784 97.867) - (xy 98.667767 97.867001) - (xy 98.596443 97.873481) - (xy 98.596437 97.873483) - (xy 98.4323 97.92463) - (xy 98.432292 97.924633) - (xy 98.285157 98.01358) - (xy 98.16358 98.135157) - (xy 98.074633 98.282292) - (xy 98.07463 98.2823) - (xy 98.023483 98.446436) - (xy 98.023481 98.446442) - (xy 98.017 98.517769) - (xy 98.017 98.520999) - (xy 86.782549 98.520999) - (xy 86.8 96.2) - (xy 80.699 96.2) - (xy 80.640809 96.181093) - (xy 80.604845 96.131593) - (xy 80.6 96.101) - (xy 80.6 94.798587) - (xy 109.782 94.798587) - (xy 109.788504 94.859088) - (xy 109.788506 94.859098) - (xy 109.839552 94.99596) - (xy 109.927092 95.112899) - (xy 109.9271 95.112907) - (xy 110.044039 95.200447) - (xy 110.180901 95.251493) - (xy 110.180911 95.251495) - (xy 110.241413 95.258) - (xy 110.535999 95.258) - (xy 110.536 95.257999) - (xy 110.536 93.104001) - (xy 110.535999 93.104) - (xy 109.782001 93.104) - (xy 109.782 93.104001) - (xy 109.782 94.798587) - (xy 80.6 94.798587) - (xy 80.6 94.378084) - (xy 80.618907 94.319893) - (xy 80.668407 94.283929) - (xy 80.729593 94.283929) - (xy 80.73014 94.284109) - (xy 80.845678 94.322394) - (xy 80.949484 94.333) - (xy 80.995999 94.333) - (xy 80.996 94.332999) - (xy 81.504 94.332999) - (xy 81.504001 94.333) - (xy 81.550516 94.333) - (xy 81.654321 94.322394) - (xy 81.822525 94.266657) - (xy 81.973337 94.173635) - (xy 82.098635 94.048337) - (xy 82.191657 93.897525) - (xy 82.247394 93.729321) - (xy 82.258 93.625515) - (xy 82.258 93.354001) - (xy 82.257999 93.354) - (xy 81.504001 93.354) - (xy 81.504 93.354001) - (xy 81.504 94.332999) - (xy 80.996 94.332999) - (xy 80.996 92.845999) - (xy 81.504 92.845999) - (xy 81.504001 92.846) - (xy 82.257999 92.846) - (xy 82.258 92.845999) - (xy 82.258 92.595999) - (xy 109.782 92.595999) - (xy 109.782001 92.596) - (xy 110.535999 92.596) - (xy 110.536 92.595999) - (xy 110.536 90.442001) - (xy 110.535999 90.442) - (xy 110.241413 90.442) - (xy 110.180911 90.448504) - (xy 110.180901 90.448506) - (xy 110.044039 90.499552) - (xy 109.9271 90.587092) - (xy 109.927092 90.5871) - (xy 109.839552 90.704039) - (xy 109.788506 90.840901) - (xy 109.788504 90.840911) - (xy 109.782 90.901412) - (xy 109.782 92.595999) - (xy 82.258 92.595999) - (xy 82.258 92.574484) - (xy 82.247394 92.470678) - (xy 82.191657 92.302474) - (xy 82.098635 92.151662) - (xy 81.973337 92.026364) - (xy 81.822525 91.933342) - (xy 81.654321 91.877605) - (xy 81.550516 91.867) - (xy 81.504001 91.867) - (xy 81.504 91.867001) - (xy 81.504 92.845999) - (xy 80.996 92.845999) - (xy 80.996 91.867001) - (xy 80.995999 91.867) - (xy 80.949484 91.867) - (xy 80.845678 91.877605) - (xy 80.73014 91.915891) - (xy 80.668956 91.916247) - (xy 80.619247 91.880572) - (xy 80.600002 91.822492) - (xy 80.6 91.821916) - (xy 80.6 88.798587) - (xy 109.782 88.798587) - (xy 109.788504 88.859088) - (xy 109.788506 88.859098) - (xy 109.839552 88.99596) - (xy 109.927092 89.112899) - (xy 109.9271 89.112907) - (xy 110.044039 89.200447) - (xy 110.180901 89.251493) - (xy 110.180911 89.251495) - (xy 110.241413 89.258) - (xy 110.535999 89.258) - (xy 110.536 89.257999) - (xy 110.536 87.784001) - (xy 110.535999 87.784) - (xy 109.782001 87.784) - (xy 109.782 87.784001) - (xy 109.782 88.798587) - (xy 80.6 88.798587) - (xy 80.6 86.917) - (xy 80.618907 86.858809) - (xy 80.668407 86.822845) - (xy 80.699 86.818) - (xy 81.598587 86.818) - (xy 81.659088 86.811495) - (xy 81.659098 86.811493) - (xy 81.79596 86.760447) - (xy 81.912899 86.672907) - (xy 81.912907 86.672899) - (xy 82.000447 86.55596) - (xy 82.051493 86.419098) - (xy 82.051495 86.419088) - (xy 82.058 86.358587) - (xy 83.242 86.358587) - (xy 83.248504 86.419088) - (xy 83.248506 86.419098) - (xy 83.299552 86.55596) - (xy 83.387092 86.672899) - (xy 83.3871 86.672907) - (xy 83.504039 86.760447) - (xy 83.640901 86.811493) - (xy 83.640911 86.811495) - (xy 83.701413 86.818) - (xy 85.395999 86.818) - (xy 85.396 86.817999) - (xy 85.904 86.817999) - (xy 85.904001 86.818) - (xy 87.598587 86.818) - (xy 87.659088 86.811495) - (xy 87.659098 86.811493) - (xy 87.79596 86.760447) - (xy 87.912899 86.672907) - (xy 87.912907 86.672899) - (xy 88.000447 86.55596) - (xy 88.051493 86.419098) - (xy 88.051495 86.419088) - (xy 88.058 86.358587) - (xy 89.342 86.358587) - (xy 89.348504 86.419088) - (xy 89.348506 86.419098) - (xy 89.399552 86.55596) - (xy 89.487092 86.672899) - (xy 89.4871 86.672907) - (xy 89.604039 86.760447) - (xy 89.740901 86.811493) - (xy 89.740911 86.811495) - (xy 89.801413 86.818) - (xy 91.495999 86.818) - (xy 91.496 86.817999) - (xy 92.004 86.817999) - (xy 92.004001 86.818) - (xy 93.698587 86.818) - (xy 93.759088 86.811495) - (xy 93.759098 86.811493) - (xy 93.89596 86.760447) - (xy 94.012899 86.672907) - (xy 94.012907 86.672899) - (xy 94.100447 86.55596) - (xy 94.151493 86.419098) - (xy 94.151495 86.419088) - (xy 94.158 86.358587) - (xy 95.342 86.358587) - (xy 95.348504 86.419088) - (xy 95.348506 86.419098) - (xy 95.399552 86.55596) - (xy 95.487092 86.672899) - (xy 95.4871 86.672907) - (xy 95.604039 86.760447) - (xy 95.740901 86.811493) - (xy 95.740911 86.811495) - (xy 95.801413 86.818) - (xy 97.495999 86.818) - (xy 97.496 86.817999) - (xy 98.004 86.817999) - (xy 98.004001 86.818) - (xy 99.698587 86.818) - (xy 99.759088 86.811495) - (xy 99.759098 86.811493) - (xy 99.89596 86.760447) - (xy 100.012899 86.672907) - (xy 100.012907 86.672899) - (xy 100.100447 86.55596) - (xy 100.151493 86.419098) - (xy 100.151495 86.419088) - (xy 100.158 86.358587) - (xy 101.342 86.358587) - (xy 101.348504 86.419088) - (xy 101.348506 86.419098) - (xy 101.399552 86.55596) - (xy 101.487092 86.672899) - (xy 101.4871 86.672907) - (xy 101.604039 86.760447) - (xy 101.740901 86.811493) - (xy 101.740911 86.811495) - (xy 101.801413 86.818) - (xy 103.495999 86.818) - (xy 103.496 86.817999) - (xy 104.004 86.817999) - (xy 104.004001 86.818) - (xy 105.698587 86.818) - (xy 105.759088 86.811495) - (xy 105.759098 86.811493) - (xy 105.89596 86.760447) - (xy 106.012899 86.672907) - (xy 106.012907 86.672899) - (xy 106.100447 86.55596) - (xy 106.151493 86.419098) - (xy 106.151495 86.419088) - (xy 106.158 86.358587) - (xy 107.342 86.358587) - (xy 107.348504 86.419088) - (xy 107.348506 86.419098) - (xy 107.399552 86.55596) - (xy 107.487092 86.672899) - (xy 107.4871 86.672907) - (xy 107.604039 86.760447) - (xy 107.740901 86.811493) - (xy 107.740911 86.811495) - (xy 107.801413 86.818) - (xy 108.815999 86.818) - (xy 108.816 86.817999) - (xy 109.324 86.817999) - (xy 109.324001 86.818) - (xy 109.683 86.818) - (xy 109.741191 86.836907) - (xy 109.777155 86.886407) - (xy 109.782 86.917) - (xy 109.782 87.275999) - (xy 109.782001 87.276) - (xy 110.535999 87.276) - (xy 110.536 87.275999) - (xy 110.536 86.064001) - (xy 110.535999 86.064) - (xy 109.324001 86.064) - (xy 109.324 86.064001) - (xy 109.324 86.817999) - (xy 108.816 86.817999) - (xy 108.816 86.064001) - (xy 108.815999 86.064) - (xy 107.342001 86.064) - (xy 107.342 86.064001) - (xy 107.342 86.358587) - (xy 106.158 86.358587) - (xy 106.158 86.064001) - (xy 106.157999 86.064) - (xy 104.004001 86.064) - (xy 104.004 86.064001) - (xy 104.004 86.817999) - (xy 103.496 86.817999) - (xy 103.496 86.064001) - (xy 103.495999 86.064) - (xy 101.342001 86.064) - (xy 101.342 86.064001) - (xy 101.342 86.358587) - (xy 100.158 86.358587) - (xy 100.158 86.064001) - (xy 100.157999 86.064) - (xy 98.004001 86.064) - (xy 98.004 86.064001) - (xy 98.004 86.817999) - (xy 97.496 86.817999) - (xy 97.496 86.064001) - (xy 97.495999 86.064) - (xy 95.342001 86.064) - (xy 95.342 86.064001) - (xy 95.342 86.358587) - (xy 94.158 86.358587) - (xy 94.158 86.064001) - (xy 94.157999 86.064) - (xy 92.004001 86.064) - (xy 92.004 86.064001) - (xy 92.004 86.817999) - (xy 91.496 86.817999) - (xy 91.496 86.064001) - (xy 91.495999 86.064) - (xy 89.342001 86.064) - (xy 89.342 86.064001) - (xy 89.342 86.358587) - (xy 88.058 86.358587) - (xy 88.058 86.064001) - (xy 88.057999 86.064) - (xy 85.904001 86.064) - (xy 85.904 86.064001) - (xy 85.904 86.817999) - (xy 85.396 86.817999) - (xy 85.396 86.064001) - (xy 85.395999 86.064) - (xy 83.242001 86.064) - (xy 83.242 86.064001) - (xy 83.242 86.358587) - (xy 82.058 86.358587) - (xy 82.058 86.064001) - (xy 82.057999 86.064) - (xy 80.6 86.064) - (xy 80.6 85.556) - (xy 82.057999 85.556) - (xy 82.058 85.555999) - (xy 82.058 85.261412) - (xy 82.051495 85.200911) - (xy 82.051493 85.200904) - (xy 82.028225 85.138518) - (xy 82.025605 85.077389) - (xy 82.059415 85.026394) - (xy 82.116743 85.005012) - (xy 82.121245 85.004923) - ) - ) - (filled_polygon - (layer "F.Cu") - (pts - (xy 68.308692 120.969407) - (xy 68.344656 121.018907) - (xy 68.349501 121.0495) - (xy 68.349501 121.14787) - (xy 68.355908 121.20748) - (xy 68.355909 121.207485) - (xy 68.406202 121.342329) - (xy 68.466237 121.422525) - (xy 68.492454 121.457546) - (xy 68.492457 121.457548) - (xy 68.492458 121.457549) - (xy 68.60767 121.543797) - (xy 68.742511 121.594089) - (xy 68.742512 121.594089) - (xy 68.742517 121.594091) - (xy 68.802127 121.6005) - (xy 69.000501 121.600499) - (xy 69.05869 121.619406) - (xy 69.094654 121.668906) - (xy 69.0995 121.699499) - (xy 69.0995 123.018126) - (xy 69.080593 123.076317) - (xy 69.070504 123.08813) - (xy 67.787004 124.37163) - (xy 67.732487 124.399407) - (xy 67.672055 124.389836) - (xy 67.62879 124.346571) - (xy 67.618 124.301626) - (xy 67.618 123.204001) - (xy 67.617999 123.204) - (xy 66.455 123.204) - (xy 66.396809 123.185093) - (xy 66.360845 123.135593) - (xy 66.356 123.105) - (xy 66.356 122.795) - (xy 66.374907 122.736809) - (xy 66.424407 122.700845) - (xy 66.455 122.696) - (xy 67.617999 122.696) - (xy 67.618 122.695999) - (xy 67.618 121.0495) - (xy 67.636907 120.991309) - (xy 67.686407 120.955345) - (xy 67.717 120.9505) - (xy 68.250501 120.9505) - ) - ) - (filled_polygon - (layer "F.Cu") - (pts - (xy 67.787002 115.628372) - (xy 68.25023 116.091599) - (xy 69.070504 116.911873) - (xy 69.098281 116.96639) - (xy 69.0995 116.981877) - (xy 69.0995 118.7005) - (xy 69.080593 118.758691) - (xy 69.031093 118.794655) - (xy 69.0005 118.7995) - (xy 68.802133 118.7995) - (xy 68.802129 118.7995) - (xy 68.802128 118.799501) - (xy 68.794949 118.800272) - (xy 68.742519 118.805908) - (xy 68.742514 118.805909) - (xy 68.60767 118.856202) - (xy 68.492458 118.94245) - (xy 68.49245 118.942458) - (xy 68.406202 119.05767) - (xy 68.35591 119.192511) - (xy 68.355908 119.192522) - (xy 68.353717 119.212903) - (xy 68.349785 119.249481) - (xy 68.3495 119.252129) - (xy 68.3495 119.3505) - (xy 68.330593 119.408691) - (xy 68.281093 119.444655) - (xy 68.2505 119.4495) - (xy 67.454296 119.4495) - (xy 67.396105 119.430593) - (xy 67.360141 119.381093) - (xy 67.360141 119.319907) - (xy 67.394967 119.271246) - (xy 67.472903 119.212903) - (xy 67.472907 119.212899) - (xy 67.560447 119.09596) - (xy 67.611493 118.959098) - (xy 67.611495 118.959088) - (xy 67.618 118.898587) - (xy 67.618 117.204001) - (xy 67.617999 117.204) - (xy 66.455 117.204) - (xy 66.396809 117.185093) - (xy 66.360845 117.135593) - (xy 66.356 117.105) - (xy 66.356 116.795) - (xy 66.374907 116.736809) - (xy 66.424407 116.700845) - (xy 66.455 116.696) - (xy 67.617999 116.696) - (xy 67.618 116.695999) - (xy 67.618 115.698377) - (xy 67.636907 115.640186) - (xy 67.686407 115.604222) - (xy 67.747593 115.604222) - ) - ) - ) - (zone (net 1) (net_name "/Supply_Ref/+15V") (layer "F.Cu") (tstamp 00000000-0000-0000-0000-000061e5b1a1) (hatch edge 0.508) - (connect_pads (clearance 0.25)) - (min_thickness 0.2) (filled_areas_thickness no) - (fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508)) - (polygon - (pts - (xy 77.7 105.6) - (xy 67.3 105.6) - (xy 67.3 86.5) - (xy 80.3 86.5) - (xy 80.3 92.2) - (xy 77.7 92.3) - ) - ) - (filled_polygon - (layer "F.Cu") - (pts - (xy 71.608435 86.516683) - (xy 71.65226 86.545966) - (xy 71.707808 86.557015) - (xy 71.725315 86.560498) - (xy 71.72532 86.560498) - (xy 71.725326 86.5605) - (xy 71.725327 86.5605) - (xy 75.574673 86.5605) - (xy 75.574674 86.5605) - (xy 75.64774 86.545966) - (xy 75.691564 86.516683) - (xy 75.746565 86.5) - (xy 77.553435 86.5) - (xy 77.608435 86.516683) - (xy 77.65226 86.545966) - (xy 77.707808 86.557015) - (xy 77.725315 86.560498) - (xy 77.72532 86.560498) - (xy 77.725326 86.5605) - (xy 77.725327 86.5605) - (xy 80.201 86.5605) - (xy 80.259191 86.579407) - (xy 80.295155 86.628907) - (xy 80.3 86.6595) - (xy 80.3 92.104734) - (xy 80.281093 92.162925) - (xy 80.231593 92.198889) - (xy 80.204804 92.203661) - (xy 79.923627 92.214474) - (xy 79.864753 92.197817) - (xy 79.860495 92.194801) - (xy 79.842329 92.181202) - (xy 79.707488 92.13091) - (xy 79.707483 92.130909) - (xy 79.707481 92.130908) - (xy 79.707477 92.130908) - (xy 79.676249 92.12755) - (xy 79.647873 92.1245) - (xy 79.64787 92.1245) - (xy 79.052133 92.1245) - (xy 79.052129 92.1245) - (xy 79.052128 92.124501) - (xy 79.044949 92.125272) - (xy 78.992519 92.130908) - (xy 78.992514 92.130909) - (xy 78.85767 92.181202) - (xy 78.777779 92.241008) - (xy 78.722256 92.260681) - (xy 78.174263 92.281758) - (xy 78.135863 92.27559) - (xy 78.082023 92.255509) - (xy 78.082016 92.255508) - (xy 78.056744 92.252791) - (xy 78.02613 92.2495) - (xy 77.49887 92.2495) - (xy 77.471943 92.252394) - (xy 77.442983 92.255508) - (xy 77.442972 92.25551) - (xy 77.316551 92.302662) - (xy 77.208531 92.383525) - (xy 77.208525 92.383531) - (xy 77.127662 92.491551) - (xy 77.08051 92.617972) - (xy 77.080508 92.617983) - (xy 77.0745 92.673873) - (xy 77.0745 93.526126) - (xy 77.074499 93.526126) - (xy 77.080508 93.582016) - (xy 77.08051 93.582027) - (xy 77.127662 93.708448) - (xy 77.1382 93.722525) - (xy 77.208528 93.816472) - (xy 77.261927 93.856446) - (xy 77.316551 93.897337) - (xy 77.442972 93.944489) - (xy 77.442973 93.944489) - (xy 77.442978 93.944491) - (xy 77.49887 93.9505) - (xy 77.601 93.9505) - (xy 77.659191 93.969407) - (xy 77.695155 94.018907) - (xy 77.7 94.0495) - (xy 77.7 96.101) - (xy 77.681093 96.159191) - (xy 77.631593 96.195155) - (xy 77.601 96.2) - (xy 72.9 96.2) - (xy 72.9 96.200001) - (xy 72.9 105.501) - (xy 72.881093 105.559191) - (xy 72.831593 105.595155) - (xy 72.801 105.6) - (xy 67.4595 105.6) - (xy 67.401309 105.581093) - (xy 67.365345 105.531593) - (xy 67.3605 105.501) - (xy 67.3605 102.925327) - (xy 67.360498 102.925315) - (xy 67.357015 102.907808) - (xy 67.345966 102.85226) - (xy 67.316683 102.808434) - (xy 67.3 102.753434) - (xy 67.3 100.946565) - (xy 67.316684 100.891564) - (xy 67.345966 100.84774) - (xy 67.3605 100.774674) - (xy 67.3605 96.925326) - (xy 67.345966 96.85226) - (xy 67.316683 96.808434) - (xy 67.3 96.753434) - (xy 67.3 94.946565) - (xy 67.316684 94.891564) - (xy 67.345966 94.84774) - (xy 67.3605 94.774674) - (xy 67.3605 93.450515) - (xy 72.567 93.450515) - (xy 72.577605 93.554321) - (xy 72.633342 93.722525) - (xy 72.726364 93.873337) - (xy 72.851662 93.998635) - (xy 73.002474 94.091657) - (xy 73.153586 94.141731) - (xy 73.202876 94.177983) - (xy 73.221444 94.236282) - (xy 73.202199 94.294362) - (xy 73.157043 94.328464) - (xy 73.082669 94.356203) - (xy 72.967458 94.44245) - (xy 72.96745 94.442458) - (xy 72.881202 94.55767) - (xy 72.83091 94.692511) - (xy 72.830908 94.692522) - (xy 72.8245 94.752129) - (xy 72.8245 95.347866) - (xy 72.824501 95.34787) - (xy 72.830908 95.40748) - (xy 72.830909 95.407485) - (xy 72.881202 95.542329) - (xy 72.890875 95.55525) - (xy 72.967454 95.657546) - (xy 72.967457 95.657548) - (xy 72.967458 95.657549) - (xy 73.08267 95.743797) - (xy 73.217511 95.794089) - (xy 73.217512 95.794089) - (xy 73.217517 95.794091) - (xy 73.277127 95.8005) - (xy 74.322872 95.800499) - (xy 74.382483 95.794091) - (xy 74.449907 95.768943) - (xy 74.517329 95.743797) - (xy 74.517329 95.743796) - (xy 74.517331 95.743796) - (xy 74.632546 95.657546) - (xy 74.682983 95.59017) - (xy 74.732991 95.554918) - (xy 74.762236 95.5505) - (xy 75.585544 95.5505) - (xy 75.60659 95.552763) - (xy 75.608413 95.553159) - (xy 75.613927 95.554359) - (xy 75.6553 95.551399) - (xy 75.675277 95.551994) - (xy 75.686428 95.553463) - (xy 75.699997 95.55525) - (xy 75.7 95.55525) - (xy 75.843709 95.53633) - (xy 75.977625 95.480861) - (xy 76.092621 95.392621) - (xy 76.180861 95.277625) - (xy 76.23633 95.143709) - (xy 76.25525 95) - (xy 76.23633 94.856291) - (xy 76.180861 94.722375) - (xy 76.092621 94.607379) - (xy 75.977625 94.519139) - (xy 75.977621 94.519137) - (xy 75.843709 94.46367) - (xy 75.843708 94.463669) - (xy 75.7 94.44475) - (xy 75.556291 94.463669) - (xy 75.55629 94.46367) - (xy 75.422378 94.519137) - (xy 75.422374 94.519139) - (xy 75.409468 94.529043) - (xy 75.351791 94.549466) - (xy 75.349201 94.5495) - (xy 74.762236 94.5495) - (xy 74.704045 94.530593) - (xy 74.682983 94.509829) - (xy 74.632549 94.442458) - (xy 74.632548 94.442457) - (xy 74.632546 94.442454) - (xy 74.632541 94.44245) - (xy 74.517329 94.356202) - (xy 74.442957 94.328464) - (xy 74.395042 94.290414) - (xy 74.378644 94.231467) - (xy 74.400025 94.174139) - (xy 74.446413 94.141731) - (xy 74.597525 94.091657) - (xy 74.748341 93.998632) - (xy 74.758341 93.988633) - (xy 74.812857 93.960853) - (xy 74.873289 93.970423) - (xy 74.89835 93.98863) - (xy 74.964922 94.055201) - (xy 74.964928 94.055206) - (xy 75.109517 94.144391) - (xy 75.27079 94.197831) - (xy 75.370319 94.207999) - (xy 75.3835 94.207998) - (xy 75.8915 94.207998) - (xy 75.891501 94.207999) - (xy 75.90468 94.207999) - (xy 76.004203 94.197832) - (xy 76.004215 94.197829) - (xy 76.165482 94.144391) - (xy 76.310071 94.055206) - (xy 76.430206 93.935071) - (xy 76.519391 93.790482) - (xy 76.572831 93.629209) - (xy 76.583 93.52968) - (xy 76.583 93.354001) - (xy 76.582999 93.354) - (xy 75.891501 93.354) - (xy 75.8915 93.354001) - (xy 75.8915 94.207998) - (xy 75.3835 94.207998) - (xy 75.3835 93.354001) - (xy 75.383499 93.354) - (xy 75.073001 93.354) - (xy 75.051997 93.375004) - (xy 74.99748 93.402781) - (xy 74.981993 93.404) - (xy 72.567001 93.404) - (xy 72.567 93.404001) - (xy 72.567 93.450515) - (xy 67.3605 93.450515) - (xy 67.3605 92.895999) - (xy 72.567 92.895999) - (xy 72.567001 92.896) - (xy 73.545999 92.896) - (xy 73.546 92.895999) - (xy 74.054 92.895999) - (xy 74.054001 92.896) - (xy 74.651999 92.896) - (xy 74.673003 92.874996) - (xy 74.72752 92.847219) - (xy 74.743007 92.846) - (xy 75.383499 92.846) - (xy 75.3835 92.845999) - (xy 75.8915 92.845999) - (xy 75.891501 92.846) - (xy 76.582998 92.846) - (xy 76.582999 92.845999) - (xy 76.582999 92.670319) - (xy 76.572832 92.570796) - (xy 76.572829 92.570784) - (xy 76.519391 92.409517) - (xy 76.430206 92.264928) - (xy 76.310071 92.144793) - (xy 76.165482 92.055608) - (xy 76.004209 92.002168) - (xy 75.904681 91.992) - (xy 75.891501 91.992) - (xy 75.8915 91.992001) - (xy 75.8915 92.845999) - (xy 75.3835 92.845999) - (xy 75.3835 91.992) - (xy 75.383499 91.991999) - (xy 75.370338 91.992) - (xy 75.270787 92.002169) - (xy 75.270784 92.00217) - (xy 75.109517 92.055608) - (xy 74.964928 92.144793) - (xy 74.964922 92.144798) - (xy 74.84081 92.268909) - (xy 74.786293 92.296686) - (xy 74.725861 92.287114) - (xy 74.718835 92.283166) - (xy 74.597527 92.208343) - (xy 74.429321 92.152605) - (xy 74.325516 92.142) - (xy 74.054001 92.142) - (xy 74.054 92.142001) - (xy 74.054 92.895999) - (xy 73.546 92.895999) - (xy 73.546 92.142001) - (xy 73.545999 92.142) - (xy 73.274484 92.142) - (xy 73.170678 92.152605) - (xy 73.002474 92.208342) - (xy 72.851662 92.301364) - (xy 72.726364 92.426662) - (xy 72.633342 92.577474) - (xy 72.577605 92.745678) - (xy 72.567 92.849484) - (xy 72.567 92.895999) - (xy 67.3605 92.895999) - (xy 67.3605 90.925326) - (xy 67.345966 90.85226) - (xy 67.316683 90.808434) - (xy 67.3 90.753434) - (xy 67.3 88.946565) - (xy 67.316684 88.891564) - (xy 67.345966 88.84774) - (xy 67.3605 88.774674) - (xy 67.3605 86.6595) - (xy 67.379407 86.601309) - (xy 67.428907 86.565345) - (xy 67.4595 86.5605) - (xy 69.574673 86.5605) - (xy 69.574674 86.5605) - (xy 69.64774 86.545966) - (xy 69.691564 86.516683) - (xy 69.746565 86.5) - (xy 71.553435 86.5) - ) - ) - ) - (zone (net 21) (net_name "/Supply_Ref/+5V") (layer "F.Cu") (tstamp 00000000-0000-0000-0000-000061e5b1a4) (hatch edge 0.508) - (priority 1) - (connect_pads (clearance 0.25)) - (min_thickness 0.2) (filled_areas_thickness no) - (fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508)) - (polygon - (pts - (xy 96.3 112.4) - (xy 110 112.4) - (xy 109.9 129.1) - (xy 90.8 129) - (xy 90.8 109.6) - (xy 96.3 109.6) - ) - ) - (filled_polygon - (layer "F.Cu") - (pts - (xy 94.938884 109.618907) - (xy 94.974848 109.668407) - (xy 94.979689 109.699768) - (xy 94.9 119.9) - (xy 98.053021 119.9) - (xy 98.111212 119.918907) - (xy 98.132274 119.939671) - (xy 98.187092 120.012899) - (xy 98.1871 120.012907) - (xy 98.304039 120.100447) - (xy 98.440901 120.151493) - (xy 98.440911 120.151495) - (xy 98.501413 120.158) - (xy 101.045999 120.158) - (xy 101.046 120.157999) - (xy 101.046 119.999) - (xy 101.064907 119.940809) - (xy 101.114407 119.904845) - (xy 101.145 119.9) - (xy 101.455 119.9) - (xy 101.513191 119.918907) - (xy 101.549155 119.968407) - (xy 101.554 119.999) - (xy 101.554 120.157999) - (xy 101.554001 120.158) - (xy 104.098587 120.158) - (xy 104.159088 120.151495) - (xy 104.159098 120.151493) - (xy 104.29596 120.100447) - (xy 104.412899 120.012907) - (xy 104.412907 120.012899) - (xy 104.467726 119.939671) - (xy 104.517734 119.904418) - (xy 104.546979 119.9) - (xy 107.7 119.9) - (xy 107.7 119.899999) - (xy 107.699483 119.83333) - (xy 107.642633 112.499764) - (xy 107.661089 112.441432) - (xy 107.710308 112.405085) - (xy 107.74163 112.4) - (xy 109.900406 112.4) - (xy 109.958597 112.418907) - (xy 109.994561 112.468407) - (xy 109.999404 112.499593) - (xy 109.900592 129.001076) - (xy 109.881337 129.059152) - (xy 109.831622 129.094819) - (xy 109.801076 129.099482) - (xy 90.898482 129.000515) - (xy 90.840391 128.981303) - (xy 90.804687 128.931615) - (xy 90.8 128.901516) - (xy 90.8 111.359572) - (xy 90.818907 111.301381) - (xy 90.868407 111.265417) - (xy 90.929593 111.265417) - (xy 90.950973 111.275311) - (xy 90.977474 111.291657) - (xy 91.145678 111.347394) - (xy 91.249484 111.358) - (xy 92.145999 111.358) - (xy 92.146 111.357999) - (xy 92.654 111.357999) - (xy 92.654001 111.358) - (xy 93.550516 111.358) - (xy 93.654321 111.347394) - (xy 93.822525 111.291657) - (xy 93.973337 111.198635) - (xy 94.098635 111.073337) - (xy 94.191657 110.922525) - (xy 94.247394 110.754321) - (xy 94.258 110.650515) - (xy 94.258 110.529001) - (xy 94.257999 110.529) - (xy 92.654001 110.529) - (xy 92.654 110.529001) - (xy 92.654 111.357999) - (xy 92.146 111.357999) - (xy 92.146 110.12) - (xy 92.164907 110.061809) - (xy 92.214407 110.025845) - (xy 92.245 110.021) - (xy 94.257999 110.021) - (xy 94.258 110.020999) - (xy 94.258 109.899484) - (xy 94.247394 109.79568) - (xy 94.225677 109.730141) - (xy 94.225321 109.668956) - (xy 94.260996 109.619248) - (xy 94.319075 109.600002) - (xy 94.319652 109.6) - (xy 94.880693 109.6) - ) - ) - ) - (zone (net 2) (net_name "GND") (layer "F.Cu") (tstamp 00000000-0000-0000-0000-000061e5b1a7) (hatch edge 0.508) - (connect_pads (clearance 0.25)) - (min_thickness 0.2) (filled_areas_thickness no) - (fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508)) - (polygon - (pts - (xy 109.3 103.7) - (xy 102.4 103.7) - (xy 102.4 99.1) - (xy 109.3 99.1) - ) - ) - (filled_polygon - (layer "F.Cu") - (pts - (xy 107.661646 99.394407) - (xy 107.673459 99.404496) - (xy 109.195504 100.926541) - (xy 109.223281 100.981058) - (xy 109.2245 100.996545) - (xy 109.2245 103.601) - (xy 109.205593 103.659191) - (xy 109.156093 103.695155) - (xy 109.1255 103.7) - (xy 104.627936 103.7) - (xy 104.569745 103.681093) - (xy 104.533781 103.631593) - (xy 104.533781 103.570407) - (xy 104.533961 103.569859) - (xy 104.547394 103.529319) - (xy 104.558 103.425515) - (xy 104.558 103.154001) - (xy 104.557999 103.154) - (xy 103.395 103.154) - (xy 103.336809 103.135093) - (xy 103.300845 103.085593) - (xy 103.296 103.055) - (xy 103.296 102.645999) - (xy 103.804 102.645999) - (xy 103.804001 102.646) - (xy 104.557999 102.646) - (xy 104.558 102.645999) - (xy 104.558 102.374484) - (xy 104.547394 102.270678) - (xy 104.491657 102.102474) - (xy 104.398635 101.951662) - (xy 104.273337 101.826364) - (xy 104.122525 101.733342) - (xy 103.954321 101.677605) - (xy 103.850516 101.667) - (xy 103.804001 101.667) - (xy 103.804 101.667001) - (xy 103.804 102.645999) - (xy 103.296 102.645999) - (xy 103.296 101.667001) - (xy 103.295999 101.667) - (xy 103.249484 101.667) - (xy 103.145678 101.677605) - (xy 102.977474 101.733342) - (xy 102.826662 101.826364) - (xy 102.701364 101.951662) - (xy 102.608343 102.102473) - (xy 102.592975 102.148851) - (xy 102.556723 102.19814) - (xy 102.498423 102.216708) - (xy 102.440344 102.197462) - (xy 102.404669 102.147754) - (xy 102.4 102.11771) - (xy 102.4 101.436689) - (xy 102.418907 101.378498) - (xy 102.428996 101.366686) - (xy 102.564879 101.230802) - (xy 102.580734 101.217926) - (xy 102.590669 101.211437) - (xy 102.611338 101.184879) - (xy 102.615388 101.180292) - (xy 102.618375 101.177307) - (xy 102.631044 101.159561) - (xy 102.662517 101.119126) - (xy 102.662516 101.119126) - (xy 102.667557 101.112651) - (xy 102.669875 101.114455) - (xy 102.704211 101.081756) - (xy 102.712379 101.078284) - (xy 102.730226 101.071628) - (xy 102.839687 100.989687) - (xy 102.921628 100.880226) - (xy 102.969412 100.752114) - (xy 102.9755 100.695485) - (xy 102.975499 100.104516) - (xy 102.969412 100.047886) - (xy 102.921628 99.919774) - (xy 102.839687 99.810313) - (xy 102.739362 99.735211) - (xy 102.704108 99.685202) - (xy 102.704982 99.624023) - (xy 102.739902 99.576302) - (xy 102.775501 99.550029) - (xy 102.84715 99.49715) - (xy 102.907254 99.415712) - (xy 102.957021 99.380119) - (xy 102.986909 99.3755) - (xy 107.603455 99.3755) - ) - ) - ) - (zone (net 57) (net_name "Net-(C11-Pad2)") (layer "F.Cu") (tstamp 00000000-0000-0000-0000-000061e5b1aa) (hatch edge 0.508) - (connect_pads (clearance 0.25)) - (min_thickness 0.2) (filled_areas_thickness no) - (fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508)) - (polygon - (pts - (xy 96.6 104.5) - (xy 98.3 104.5) - (xy 98.3 103.2) - (xy 100.4 103.2) - (xy 100.4 104) - (xy 109.3 104) - (xy 109.3 112.4) - (xy 96.6 112.4) - ) - ) - (filled_polygon - (layer "F.Cu") - (pts - (xy 99.083691 103.218907) - (xy 99.119655 103.268407) - (xy 99.1245 103.299) - (xy 99.1245 103.795478) - (xy 99.124501 103.795484) - (xy 99.130587 103.852111) - (xy 99.130587 103.852112) - (xy 99.130588 103.852114) - (xy 99.178372 103.980226) - (xy 99.247509 104.072583) - (xy 99.251019 104.077271) - (xy 99.270755 104.135185) - (xy 99.25268 104.19364) - (xy 99.223738 104.220859) - (xy 99.142276 104.271105) - (xy 99.021108 104.392273) - (xy 98.931154 104.538111) - (xy 98.931153 104.538113) - (xy 98.877255 104.700767) - (xy 98.867 104.801148) - (xy 98.867 104.820999) - (xy 98.867001 104.821) - (xy 100.832999 104.821) - (xy 100.833 104.820999) - (xy 100.833 104.801148) - (xy 100.822744 104.700767) - (xy 100.768846 104.538113) - (xy 100.768845 104.538111) - (xy 100.678891 104.392273) - (xy 100.557724 104.271106) - (xy 100.476262 104.22086) - (xy 100.43666 104.174219) - (xy 100.432037 104.113208) - (xy 100.448981 104.077271) - (xy 100.477128 104.03967) - (xy 100.527137 104.004418) - (xy 100.556381 104) - (xy 109.1255 104) - (xy 109.183691 104.018907) - (xy 109.219655 104.068407) - (xy 109.2245 104.099) - (xy 109.2245 112.0455) - (xy 109.205593 112.103691) - (xy 109.156093 112.139655) - (xy 109.1255 112.1445) - (xy 107.74162 112.1445) - (xy 107.742077 112.144482) - (xy 107.683176 112.127918) - (xy 107.64526 112.079897) - (xy 107.639118 112.046328) - (xy 107.634472 111.446995) - (xy 107.6 107) - (xy 107.599999 107) - (xy 104.614599 107.023692) - (xy 104.55626 107.005247) - (xy 104.521055 106.959292) - (xy 104.500446 106.904038) - (xy 104.412907 106.7871) - (xy 104.412899 106.787092) - (xy 104.29596 106.699552) - (xy 104.159098 106.648506) - (xy 104.159088 106.648504) - (xy 104.098587 106.642) - (xy 101.554001 106.642) - (xy 101.554 106.642001) - (xy 101.554 106.949765) - (xy 101.535093 107.007956) - (xy 101.485593 107.04392) - (xy 101.455786 107.048762) - (xy 101.145786 107.051222) - (xy 101.087447 107.032777) - (xy 101.051091 106.983564) - (xy 101.046 106.952225) - (xy 101.046 106.642001) - (xy 101.045999 106.642) - (xy 98.501413 106.642) - (xy 98.440911 106.648504) - (xy 98.440901 106.648506) - (xy 98.304039 106.699552) - (xy 98.1871 106.787092) - (xy 98.187092 106.7871) - (xy 98.099553 106.904038) - (xy 98.059268 107.012048) - (xy 98.021217 107.059962) - (xy 97.967296 107.076448) - (xy 96.699786 107.086508) - (xy 96.641447 107.068063) - (xy 96.605091 107.01885) - (xy 96.6 106.987511) - (xy 96.6 105.348851) - (xy 98.867 105.348851) - (xy 98.877255 105.449232) - (xy 98.931153 105.611886) - (xy 98.931154 105.611888) - (xy 99.021108 105.757726) - (xy 99.142273 105.878891) - (xy 99.288111 105.968845) - (xy 99.288113 105.968846) - (xy 99.450767 106.022744) - (xy 99.551148 106.033) - (xy 99.595999 106.033) - (xy 99.596 106.032999) - (xy 100.104 106.032999) - (xy 100.104001 106.033) - (xy 100.148852 106.033) - (xy 100.249232 106.022744) - (xy 100.411886 105.968846) - (xy 100.411888 105.968845) - (xy 100.557726 105.878891) - (xy 100.678891 105.757726) - (xy 100.768845 105.611888) - (xy 100.768846 105.611886) - (xy 100.822744 105.449232) - (xy 100.833 105.348851) - (xy 100.833 105.329001) - (xy 100.832999 105.329) - (xy 100.104001 105.329) - (xy 100.104 105.329001) - (xy 100.104 106.032999) - (xy 99.596 106.032999) - (xy 99.596 105.329001) - (xy 99.595999 105.329) - (xy 98.867001 105.329) - (xy 98.867 105.329001) - (xy 98.867 105.348851) - (xy 96.6 105.348851) - (xy 96.6 104.807) - (xy 96.618907 104.748809) - (xy 96.668407 104.712845) - (xy 96.699 104.708) - (xy 96.999999 104.708) - (xy 97 104.707999) - (xy 97 104.5) - (xy 97.3 104.5) - (xy 97.3 104.707999) - (xy 97.300001 104.708) - (xy 97.838213 104.708) - (xy 97.838214 104.707999) - (xy 97.95219 104.692994) - (xy 97.952198 104.692992) - (xy 98.094012 104.634251) - (xy 98.094016 104.634249) - (xy 98.215802 104.5408) - (xy 98.21739 104.538731) - (xy 98.21893 104.537672) - (xy 98.220393 104.53621) - (xy 98.220663 104.53648) - (xy 98.267815 104.504076) - (xy 98.295931 104.5) - (xy 98.299999 104.5) - (xy 98.3 104.5) - (xy 98.3 104.46104) - (xy 98.307536 104.423155) - (xy 98.367992 104.277199) - (xy 98.367994 104.27719) - (xy 98.378157 104.2) - (xy 98.3 104.2) - (xy 98.3 103.9) - (xy 98.378157 103.9) - (xy 98.378157 103.899999) - (xy 98.367147 103.816372) - (xy 98.368752 103.81616) - (xy 98.368752 103.783839) - (xy 98.367147 103.783628) - (xy 98.378157 103.7) - (xy 98.3 103.7) - (xy 98.3 103.4) - (xy 98.378157 103.4) - (xy 98.378157 103.399999) - (xy 98.367147 103.316372) - (xy 98.368756 103.31616) - (xy 98.368774 103.274283) - (xy 98.369043 103.273283) - (xy 98.402417 103.222002) - (xy 98.45956 103.200131) - (xy 98.464644 103.2) - (xy 99.0255 103.2) - ) - ) - ) - (zone (net 3) (net_name "/Supply_Ref/-15V") (layer "F.Cu") (tstamp 00000000-0000-0000-0000-000061e5b1ad) (hatch edge 0.508) - (connect_pads (clearance 0.25)) - (min_thickness 0.2) (filled_areas_thickness no) - (fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508) (smoothing fillet) (radius 0.2)) - (polygon - (pts - (xy 70.2 46) - (xy 67.8 46) - (xy 67.8 50.6) - (xy 70.2 50.6) - (xy 70.2 54.6) - (xy 62.5 54.6) - (xy 62.5 49.4) - (xy 62.55 49.45) - (xy 62.6 35) - (xy 70.2 35) - ) - ) - (filled_polygon - (layer "F.Cu") - (pts - (xy 70.152179 35.094407) - (xy 70.188143 35.143907) - (xy 70.191086 35.155186) - (xy 70.197365 35.186755) - (xy 70.198098 35.190437) - (xy 70.2 35.209751) - (xy 70.2 45.790248) - (xy 70.198097 45.809563) - (xy 70.188616 45.857224) - (xy 70.173835 45.89291) - (xy 70.152362 45.925047) - (xy 70.125047 45.952362) - (xy 70.09291 45.973835) - (xy 70.057224 45.988616) - (xy 70.009563 45.998097) - (xy 69.990248 46) - (xy 69.565638 46) - (xy 69.537784 45.99446) - (xy 69.537485 45.995579) - (xy 69.531219 45.993899) - (xy 69.412347 45.97825) - (xy 68.947501 45.97825) - (xy 68.9475 45.978251) - (xy 68.9475 46) - (xy 68.5475 46) - (xy 68.5475 45.978251) - (xy 68.547499 45.97825) - (xy 68.082656 45.97825) - (xy 68.082651 45.978251) - (xy 67.963781 45.993899) - (xy 67.96378 45.9939) - (xy 67.949053 46) - (xy 67.8 46) - (xy 67.8 46.067345) - (xy 67.688872 46.152618) - (xy 67.688868 46.152622) - (xy 67.591413 46.279626) - (xy 67.591411 46.27963) - (xy 67.53015 46.427529) - (xy 67.522419 46.48625) - (xy 67.8 46.48625) - (xy 67.8 46.88625) - (xy 67.52242 46.88625) - (xy 67.53015 46.944968) - (xy 67.530151 46.944975) - (xy 67.541911 46.973366) - (xy 67.54671 47.034363) - (xy 67.541912 47.049132) - (xy 67.530149 47.077531) - (xy 67.522419 47.13625) - (xy 67.8 47.13625) - (xy 67.8 47.53625) - (xy 67.52242 47.53625) - (xy 67.53015 47.594968) - (xy 67.530151 47.594975) - (xy 67.541911 47.623366) - (xy 67.54671 47.684363) - (xy 67.541912 47.699132) - (xy 67.530149 47.727531) - (xy 67.522419 47.78625) - (xy 67.8 47.78625) - (xy 67.8 48.18625) - (xy 67.52242 48.18625) - (xy 67.53015 48.244969) - (xy 67.591411 48.392869) - (xy 67.591413 48.392873) - (xy 67.688869 48.51988) - (xy 67.733267 48.553947) - (xy 67.767923 48.604371) - (xy 67.772 48.632489) - (xy 67.772 48.640009) - (xy 67.753093 48.6982) - (xy 67.733269 48.718549) - (xy 67.688877 48.752613) - (xy 67.688868 48.752622) - (xy 67.591413 48.879626) - (xy 67.591411 48.87963) - (xy 67.53015 49.027529) - (xy 67.522419 49.08625) - (xy 67.8 49.08625) - (xy 67.8 49.48625) - (xy 67.52242 49.48625) - (xy 67.53015 49.544969) - (xy 67.591411 49.692869) - (xy 67.591413 49.692873) - (xy 67.688869 49.81988) - (xy 67.733267 49.853947) - (xy 67.767923 49.904371) - (xy 67.772 49.932489) - (xy 67.772 50.06951) - (xy 67.781927 50.137642) - (xy 67.789941 50.154035) - (xy 67.8 50.197515) - (xy 67.8 50.6) - (xy 68.318 50.6) - (xy 68.376191 50.618907) - (xy 68.412155 50.668407) - (xy 68.417 50.699) - (xy 68.417 51.961231) - (xy 68.398093 52.019422) - (xy 68.396542 52.021498) - (xy 68.31914 52.12237) - (xy 68.319135 52.122378) - (xy 68.263668 52.25629) - (xy 68.263667 52.256291) - (xy 68.244748 52.399999) - (xy 68.244748 52.4) - (xy 68.263667 52.543708) - (xy 68.263668 52.543709) - (xy 68.319137 52.677625) - (xy 68.407377 52.792621) - (xy 68.522373 52.880861) - (xy 68.656289 52.93633) - (xy 68.799998 52.95525) - (xy 68.943707 52.93633) - (xy 69.077623 52.880861) - (xy 69.192619 52.792621) - (xy 69.280859 52.677625) - (xy 69.336328 52.543709) - (xy 69.355248 52.4) - (xy 69.336328 52.256291) - (xy 69.280859 52.122375) - (xy 69.192619 52.007379) - (xy 69.192617 52.007378) - (xy 69.188669 52.002232) - (xy 69.191166 52.000315) - (xy 69.169219 51.95724) - (xy 69.168 51.941753) - (xy 69.168 50.699) - (xy 69.186907 50.640809) - (xy 69.236407 50.604845) - (xy 69.267 50.6) - (xy 69.990248 50.6) - (xy 70.009561 50.601902) - (xy 70.057222 50.611382) - (xy 70.092908 50.626163) - (xy 70.12505 50.64764) - (xy 70.152359 50.674949) - (xy 70.16843 50.699) - (xy 70.173835 50.707089) - (xy 70.188616 50.742775) - (xy 70.198097 50.790436) - (xy 70.2 50.809751) - (xy 70.2 53.9505) - (xy 70.181093 54.008691) - (xy 70.131593 54.044655) - (xy 70.101 54.0495) - (xy 70.049499 54.0495) - (xy 69.991308 54.030593) - (xy 69.955344 53.981093) - (xy 69.950499 53.9505) - (xy 69.950499 53.852133) - (xy 69.950499 53.852128) - (xy 69.944091 53.792517) - (xy 69.926621 53.745678) - (xy 69.893797 53.65767) - (xy 69.807549 53.542458) - (xy 69.807548 53.542457) - (xy 69.807546 53.542454) - (xy 69.807541 53.54245) - (xy 69.692329 53.456202) - (xy 69.557488 53.40591) - (xy 69.557483 53.405909) - (xy 69.557481 53.405908) - (xy 69.557477 53.405908) - (xy 69.526249 53.40255) - (xy 69.497873 53.3995) - (xy 69.49787 53.3995) - (xy 67.402133 53.3995) - (xy 67.402129 53.3995) - (xy 67.402128 53.399501) - (xy 67.394949 53.400272) - (xy 67.342519 53.405908) - (xy 67.342514 53.405909) - (xy 67.20767 53.456202) - (xy 67.092458 53.54245) - (xy 67.09245 53.542458) - (xy 67.006202 53.65767) - (xy 66.95591 53.792511) - (xy 66.955909 53.792517) - (xy 66.949785 53.849481) - (xy 66.9495 53.852129) - (xy 66.9495 54.501) - (xy 66.930593 54.559191) - (xy 66.881093 54.595155) - (xy 66.8505 54.6) - (xy 66.007 54.6) - (xy 65.948809 54.581093) - (xy 65.912845 54.531593) - (xy 65.908 54.501) - (xy 65.908 53.849481) - (xy 65.897394 53.745678) - (xy 65.841657 53.577474) - (xy 65.748635 53.426662) - (xy 65.623337 53.301364) - (xy 65.472525 53.208342) - (xy 65.304321 53.152605) - (xy 65.200516 53.142) - (xy 64.404001 53.142) - (xy 64.404 53.142001) - (xy 64.404 54.6) - (xy 63.896 54.6) - (xy 63.896 53.142001) - (xy 63.895999 53.142) - (xy 63.099484 53.142) - (xy 62.995678 53.152605) - (xy 62.827474 53.208342) - (xy 62.676662 53.301364) - (xy 62.669004 53.309023) - (xy 62.614487 53.3368) - (xy 62.554055 53.327229) - (xy 62.51079 53.283964) - (xy 62.5 53.239019) - (xy 62.5 51.197866) - (xy 63.7495 51.197866) - (xy 63.749501 51.19787) - (xy 63.755908 51.25748) - (xy 63.755909 51.257485) - (xy 63.806202 51.392329) - (xy 63.89245 51.507541) - (xy 63.892454 51.507546) - (xy 63.892457 51.507548) - (xy 63.892458 51.507549) - (xy 64.00767 51.593797) - (xy 64.142511 51.644089) - (xy 64.142512 51.644089) - (xy 64.142517 51.644091) - (xy 64.202127 51.6505) - (xy 64.7005 51.650499) - (xy 64.758691 51.669406) - (xy 64.794655 51.718906) - (xy 64.7995 51.749499) - (xy 64.7995 51.850096) - (xy 64.791965 51.88798) - (xy 64.763669 51.956293) - (xy 64.74475 52.099999) - (xy 64.74475 52.1) - (xy 64.763669 52.243708) - (xy 64.76367 52.243709) - (xy 64.819139 52.377625) - (xy 64.907379 52.492621) - (xy 65.022375 52.580861) - (xy 65.156291 52.63633) - (xy 65.3 52.65525) - (xy 65.443709 52.63633) - (xy 65.577625 52.580861) - (xy 65.692621 52.492621) - (xy 65.780861 52.377625) - (xy 65.83633 52.243709) - (xy 65.85525 52.1) - (xy 65.83633 51.956291) - (xy 65.808034 51.887978) - (xy 65.8005 51.850096) - (xy 65.8005 51.749499) - (xy 65.819407 51.691308) - (xy 65.868907 51.655344) - (xy 65.8995 51.650499) - (xy 66.497867 51.650499) - (xy 66.497872 51.650499) - (xy 66.557483 51.644091) - (xy 66.624907 51.618943) - (xy 66.692329 51.593797) - (xy 66.692329 51.593796) - (xy 66.692331 51.593796) - (xy 66.807546 51.507546) - (xy 66.893796 51.392331) - (xy 66.944091 51.257483) - (xy 66.9505 51.197873) - (xy 66.950499 50.452128) - (xy 66.944091 50.392517) - (xy 66.919076 50.325448) - (xy 66.893797 50.25767) - (xy 66.807549 50.142458) - (xy 66.807548 50.142457) - (xy 66.807546 50.142454) - (xy 66.807541 50.14245) - (xy 66.692329 50.056202) - (xy 66.557488 50.00591) - (xy 66.557483 50.005909) - (xy 66.557481 50.005908) - (xy 66.557477 50.005908) - (xy 66.526249 50.00255) - (xy 66.497873 49.9995) - (xy 66.49787 49.9995) - (xy 64.202133 49.9995) - (xy 64.202129 49.9995) - (xy 64.202128 49.999501) - (xy 64.194949 50.000272) - (xy 64.142519 50.005908) - (xy 64.142514 50.005909) - (xy 64.00767 50.056202) - (xy 63.892458 50.14245) - (xy 63.89245 50.142458) - (xy 63.806202 50.25767) - (xy 63.75591 50.392511) - (xy 63.755908 50.392522) - (xy 63.7495 50.452129) - (xy 63.7495 51.197866) - (xy 62.5 51.197866) - (xy 62.5 49.51017) - (xy 62.518907 49.451979) - (xy 62.533471 49.440521) - (xy 62.531852 49.438895) - (xy 62.535381 49.435381) - (xy 62.55 49.45) - (xy 62.554151 48.250515) - (xy 63.492 48.250515) - (xy 63.502605 48.354321) - (xy 63.558342 48.522525) - (xy 63.651364 48.673337) - (xy 63.776662 48.798635) - (xy 63.927474 48.891657) - (xy 64.095678 48.947394) - (xy 64.199484 48.958) - (xy 65.095999 48.958) - (xy 65.096 48.957999) - (xy 65.604 48.957999) - (xy 65.604001 48.958) - (xy 66.500516 48.958) - (xy 66.604321 48.947394) - (xy 66.772525 48.891657) - (xy 66.923337 48.798635) - (xy 67.048635 48.673337) - (xy 67.141657 48.522525) - (xy 67.197394 48.354321) - (xy 67.208 48.250515) - (xy 67.208 48.129001) - (xy 67.207999 48.129) - (xy 65.604001 48.129) - (xy 65.604 48.129001) - (xy 65.604 48.957999) - (xy 65.096 48.957999) - (xy 65.096 48.129001) - (xy 65.095999 48.129) - (xy 63.492001 48.129) - (xy 63.492 48.129001) - (xy 63.492 48.250515) - (xy 62.554151 48.250515) - (xy 62.556329 47.620999) - (xy 63.492 47.620999) - (xy 63.492001 47.621) - (xy 65.095999 47.621) - (xy 65.096 47.620999) - (xy 65.604 47.620999) - (xy 65.604001 47.621) - (xy 67.207999 47.621) - (xy 67.208 47.620999) - (xy 67.208 47.499484) - (xy 67.197394 47.395678) - (xy 67.141657 47.227474) - (xy 67.048635 47.076662) - (xy 66.923337 46.951364) - (xy 66.772525 46.858342) - (xy 66.604321 46.802605) - (xy 66.500516 46.792) - (xy 65.604001 46.792) - (xy 65.604 46.792001) - (xy 65.604 47.620999) - (xy 65.096 47.620999) - (xy 65.096 46.792001) - (xy 65.095999 46.792) - (xy 64.199484 46.792) - (xy 64.095678 46.802605) - (xy 63.927474 46.858342) - (xy 63.776662 46.951364) - (xy 63.651364 47.076662) - (xy 63.558342 47.227474) - (xy 63.502605 47.395678) - (xy 63.492 47.499484) - (xy 63.492 47.620999) - (xy 62.556329 47.620999) - (xy 62.57474 42.300003) - (xy 67.287004 42.300003) - (xy 67.306949 42.527991) - (xy 67.366187 42.749069) - (xy 67.46291 42.956495) - (xy 67.512899 43.027888) - (xy 68.201272 42.339514) - (xy 68.214835 42.425148) - (xy 68.272359 42.538045) - (xy 68.361955 42.627641) - (xy 68.474852 42.685165) - (xy 68.560481 42.698727) - (xy 67.87211 43.387099) - (xy 67.943503 43.437088) - (xy 68.15093 43.533812) - (xy 68.372008 43.59305) - (xy 68.599997 43.612996) - (xy 68.600003 43.612996) - (xy 68.827991 43.59305) - (xy 69.049069 43.533812) - (xy 69.256498 43.437087) - (xy 69.256499 43.437087) - (xy 69.327888 43.387099) - (xy 68.639516 42.698727) - (xy 68.725148 42.685165) - (xy 68.838045 42.627641) - (xy 68.927641 42.538045) - (xy 68.985165 42.425148) - (xy 68.998727 42.339516) - (xy 69.687099 43.027888) - (xy 69.737087 42.956499) - (xy 69.737087 42.956498) - (xy 69.833812 42.749069) - (xy 69.89305 42.527991) - (xy 69.912996 42.300003) - (xy 69.912996 42.299996) - (xy 69.89305 42.072008) - (xy 69.833812 41.85093) - (xy 69.737088 41.643503) - (xy 69.687099 41.57211) - (xy 68.998727 42.260481) - (xy 68.985165 42.174852) - (xy 68.927641 42.061955) - (xy 68.838045 41.972359) - (xy 68.725148 41.914835) - (xy 68.639514 41.901272) - (xy 69.327888 41.212899) - (xy 69.256495 41.16291) - (xy 69.04907 41.066187) - (xy 68.970472 41.045127) - (xy 68.919158 41.011803) - (xy 68.897231 40.954682) - (xy 68.913066 40.895581) - (xy 68.960616 40.857076) - (xy 68.996095 40.8505) - (xy 69.424673 40.8505) - (xy 69.424674 40.8505) - (xy 69.49774 40.835966) - (xy 69.580601 40.780601) - (xy 69.635966 40.69774) - (xy 69.6505 40.624674) - (xy 69.6505 38.975326) - (xy 69.635966 38.90226) - (xy 69.580601 38.819399) - (xy 69.580599 38.819397) - (xy 69.497742 38.764035) - (xy 69.49774 38.764034) - (xy 69.497737 38.764033) - (xy 69.497736 38.764033) - (xy 69.424684 38.749501) - (xy 69.424674 38.7495) - (xy 67.775326 38.7495) - (xy 67.775325 38.7495) - (xy 67.775315 38.749501) - (xy 67.702263 38.764033) - (xy 67.702257 38.764035) - (xy 67.6194 38.819397) - (xy 67.619397 38.8194) - (xy 67.564035 38.902257) - (xy 67.564033 38.902263) - (xy 67.549501 38.975315) - (xy 67.5495 38.975327) - (xy 67.5495 40.624672) - (xy 67.549501 40.624684) - (xy 67.564033 40.697736) - (xy 67.564035 40.697742) - (xy 67.619397 40.780599) - (xy 67.619399 40.780601) - (xy 67.70226 40.835966) - (xy 67.757808 40.847015) - (xy 67.775315 40.850498) - (xy 67.77532 40.850498) - (xy 67.775326 40.8505) - (xy 67.775327 40.8505) - (xy 68.203905 40.8505) - (xy 68.262096 40.869407) - (xy 68.29806 40.918907) - (xy 68.29806 40.980093) - (xy 68.262096 41.029593) - (xy 68.229528 41.045127) - (xy 68.150924 41.066188) - (xy 67.94351 41.162907) - (xy 67.943493 41.162917) - (xy 67.87211 41.212899) - (xy 68.560483 41.901272) - (xy 68.474852 41.914835) - (xy 68.361955 41.972359) - (xy 68.272359 42.061955) - (xy 68.214835 42.174852) - (xy 68.201272 42.260483) - (xy 67.512899 41.57211) - (xy 67.462917 41.643493) - (xy 67.462907 41.64351) - (xy 67.366188 41.850925) - (xy 67.306949 42.072008) - (xy 67.287004 42.299996) - (xy 67.287004 42.300003) - (xy 62.57474 42.300003) - (xy 62.599265 35.212312) - (xy 62.602712 35.186755) - (xy 62.613054 35.1486) - (xy 62.646526 35.097383) - (xy 62.703711 35.075621) - (xy 62.708606 35.0755) - (xy 70.093988 35.0755) - ) - ) - ) - (zone (net 19) (net_name "/Input_Output_Module/-12V") (layer "F.Cu") (tstamp 00000000-0000-0000-0000-000061e5b1b0) (hatch edge 0.508) - (connect_pads (clearance 0.25)) - (min_thickness 0.2) (filled_areas_thickness no) - (fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508) (smoothing fillet) (radius 0.2)) - (polygon - (pts - (xy 70.5 50.6) - (xy 73.7 50.6) - (xy 73.7 46) - (xy 70.5 46) - (xy 70.5 35) - (xy 82.6 35) - (xy 82.6 54.6) - (xy 70.5 54.6) - ) - ) - (filled_polygon - (layer "F.Cu") - (pts - (xy 82.552179 35.094407) - (xy 82.588143 35.143907) - (xy 82.591086 35.155186) - (xy 82.598098 35.190437) - (xy 82.6 35.209751) - (xy 82.6 49.148889) - (xy 82.592465 49.186771) - (xy 82.56367 49.256291) - (xy 82.563669 49.256294) - (xy 82.54475 49.399999) - (xy 82.54475 49.4) - (xy 82.556288 49.487643) - (xy 82.56367 49.543709) - (xy 82.592464 49.613226) - (xy 82.6 49.651109) - (xy 82.6 54.390248) - (xy 82.598097 54.409563) - (xy 82.588616 54.457224) - (xy 82.573835 54.49291) - (xy 82.552362 54.525047) - (xy 82.525047 54.552362) - (xy 82.49291 54.573835) - (xy 82.457224 54.588616) - (xy 82.409563 54.598097) - (xy 82.390248 54.6) - (xy 80.866821 54.6) - (xy 80.80863 54.581093) - (xy 80.772666 54.531593) - (xy 80.772666 54.470407) - (xy 80.796817 54.430997) - (xy 81.408326 53.819486) - (xy 81.424813 53.806201) - (xy 81.424918 53.806133) - (xy 81.431128 53.802143) - (xy 81.465402 53.762586) - (xy 81.467776 53.760035) - (xy 81.47922 53.748593) - (xy 81.4889 53.73566) - (xy 81.491116 53.732911) - (xy 81.525377 53.693373) - (xy 81.528492 53.686549) - (xy 81.539296 53.668342) - (xy 81.539921 53.667506) - (xy 81.543796 53.662331) - (xy 81.562084 53.613295) - (xy 81.563432 53.610043) - (xy 81.578161 53.577792) - (xy 81.585165 53.562457) - (xy 81.586233 53.555022) - (xy 81.591467 53.534515) - (xy 81.594091 53.527483) - (xy 81.597824 53.475272) - (xy 81.598199 53.471799) - (xy 81.6005 53.455799) - (xy 81.6005 53.439651) - (xy 81.600626 53.436118) - (xy 81.600765 53.43416) - (xy 81.604359 53.383927) - (xy 81.602762 53.376585) - (xy 81.6005 53.355542) - (xy 81.6005 51.649902) - (xy 81.608035 51.612018) - (xy 81.63633 51.543709) - (xy 81.65525 51.4) - (xy 81.63633 51.256291) - (xy 81.580861 51.122375) - (xy 81.492621 51.007379) - (xy 81.377625 50.919139) - (xy 81.377621 50.919137) - (xy 81.243709 50.86367) - (xy 81.243708 50.863669) - (xy 81.1 50.84475) - (xy 80.956291 50.863669) - (xy 80.95629 50.86367) - (xy 80.822378 50.919137) - (xy 80.822374 50.919139) - (xy 80.707381 51.007377) - (xy 80.707377 51.007381) - (xy 80.619139 51.122374) - (xy 80.619137 51.122378) - (xy 80.56367 51.25629) - (xy 80.563669 51.256291) - (xy 80.548107 51.3745) - (xy 80.54475 51.4) - (xy 80.56367 51.543709) - (xy 80.591964 51.612018) - (xy 80.5995 51.649902) - (xy 80.5995 53.171678) - (xy 80.580593 53.229869) - (xy 80.570504 53.241682) - (xy 79.241182 54.571004) - (xy 79.186665 54.598781) - (xy 79.171178 54.6) - (xy 74.996187 54.6) - (xy 74.937996 54.581093) - (xy 74.905283 54.540211) - (xy 74.888248 54.500719) - (xy 74.854377 54.422196) - (xy 74.74961 54.28147) - (xy 74.749608 54.281468) - (xy 74.615216 54.168699) - (xy 74.61453 54.168354) - (xy 74.458433 54.08996) - (xy 74.458429 54.089959) - (xy 74.458423 54.089956) - (xy 74.287723 54.0495) - (xy 74.287721 54.0495) - (xy 73.287721 54.0495) - (xy 72.487721 54.0495) - (xy 71.587721 54.0495) - (xy 70.599 54.0495) - (xy 70.540809 54.030593) - (xy 70.504845 53.981093) - (xy 70.5 53.9505) - (xy 70.5 50.809751) - (xy 70.501902 50.790438) - (xy 70.511382 50.742777) - (xy 70.526162 50.707092) - (xy 70.547642 50.674946) - (xy 70.574946 50.647642) - (xy 70.607092 50.626162) - (xy 70.642775 50.611382) - (xy 70.668021 50.60636) - (xy 70.690439 50.601902) - (xy 70.709752 50.6) - (xy 73.499999 50.6) - (xy 73.5 50.6) - (xy 73.7 50.6) - (xy 73.7 50.435973) - (xy 73.718799 50.402406) - (xy 73.76669 50.379543) - (xy 73.766551 50.379092) - (xy 73.769626 50.378141) - (xy 73.771728 50.377138) - (xy 73.773893 50.376823) - (xy 73.878983 50.325448) - (xy 73.961698 50.242733) - (xy 74.013073 50.137643) - (xy 74.013072 50.137643) - (xy 74.015721 50.132227) - (xy 74.058265 50.088253) - (xy 74.11853 50.077683) - (xy 74.173499 50.104556) - (xy 74.174666 50.105703) - (xy 74.195504 50.126541) - (xy 74.223281 50.181058) - (xy 74.2245 50.196545) - (xy 74.2245 50.350789) - (xy 74.222393 50.371103) - (xy 74.220624 50.379543) - (xy 74.219633 50.384268) - (xy 74.220054 50.387646) - (xy 74.22412 50.420263) - (xy 74.2245 50.426391) - (xy 74.2245 50.431114) - (xy 74.228342 50.45414) - (xy 74.235134 50.508626) - (xy 74.235134 50.508627) - (xy 74.235135 50.50863) - (xy 74.237371 50.516144) - (xy 74.239935 50.523612) - (xy 74.257348 50.555788) - (xy 74.266055 50.571877) - (xy 74.285369 50.611382) - (xy 74.290176 50.621215) - (xy 74.294736 50.627601) - (xy 74.299579 50.633823) - (xy 74.299581 50.633826) - (xy 74.33997 50.671007) - (xy 74.791336 51.122374) - (xy 74.799685 51.130723) - (xy 74.812559 51.146576) - (xy 74.819916 51.157836) - (xy 74.848531 51.180108) - (xy 74.853134 51.184172) - (xy 74.856482 51.18752) - (xy 74.875495 51.201094) - (xy 74.918811 51.234809) - (xy 74.918813 51.234809) - (xy 74.925719 51.238547) - (xy 74.932796 51.242006) - (xy 74.932801 51.24201) - (xy 74.985403 51.25767) - (xy 75.011371 51.266585) - (xy 75.037339 51.2755) - (xy 75.045076 51.276791) - (xy 75.052905 51.277766) - (xy 75.052912 51.277768) - (xy 75.107756 51.2755) - (xy 75.200501 51.2755) - (xy 75.258692 51.294407) - (xy 75.294656 51.343907) - (xy 75.299501 51.3745) - (xy 75.299501 51.59787) - (xy 75.305908 51.65748) - (xy 75.305909 51.657485) - (xy 75.356202 51.792329) - (xy 75.428281 51.888614) - (xy 75.442454 51.907546) - (xy 75.442457 51.907548) - (xy 75.442458 51.907549) - (xy 75.55767 51.993797) - (xy 75.692511 52.044089) - (xy 75.692512 52.044089) - (xy 75.692517 52.044091) - (xy 75.752127 52.0505) - (xy 75.978454 52.050499) - (xy 76.036644 52.069406) - (xy 76.048458 52.079495) - (xy 76.200659 52.231696) - (xy 76.228436 52.286213) - (xy 76.218865 52.346645) - (xy 76.210311 52.360487) - (xy 76.172207 52.412116) - (xy 76.127355 52.540296) - (xy 76.127353 52.540305) - (xy 76.1245 52.570725) - (xy 76.1245 53.229274) - (xy 76.127353 53.259694) - (xy 76.127355 53.259703) - (xy 76.172207 53.387883) - (xy 76.252845 53.497144) - (xy 76.252847 53.497146) - (xy 76.25285 53.49715) - (xy 76.252853 53.497152) - (xy 76.252855 53.497154) - (xy 76.362116 53.577792) - (xy 76.362117 53.577792) - (xy 76.362118 53.577793) - (xy 76.490301 53.622646) - (xy 76.520725 53.625499) - (xy 76.520727 53.6255) - (xy 76.520734 53.6255) - (xy 77.029273 53.6255) - (xy 77.029273 53.625499) - (xy 77.059699 53.622646) - (xy 77.187882 53.577793) - (xy 77.29715 53.49715) - (xy 77.377793 53.387882) - (xy 77.422646 53.259699) - (xy 77.425499 53.229273) - (xy 77.4255 53.229273) - (xy 77.4255 52.570727) - (xy 77.425499 52.570725) - (xy 77.42326 52.546847) - (xy 77.422646 52.540301) - (xy 77.377793 52.412118) - (xy 77.335421 52.354706) - (xy 77.297154 52.302855) - (xy 77.297152 52.302853) - (xy 77.29715 52.30285) - (xy 77.207512 52.236695) - (xy 77.177381 52.195611) - (xy 77.17647 52.196105) - (xy 77.172886 52.189482) - (xy 77.172665 52.189181) - (xy 77.172564 52.188888) - (xy 77.146445 52.140623) - (xy 77.130219 52.107435) - (xy 77.122326 52.091289) - (xy 77.122324 52.091287) - (xy 77.122324 52.091286) - (xy 77.117771 52.084909) - (xy 77.112921 52.078677) - (xy 77.112919 52.078674) - (xy 77.102851 52.069406) - (xy 77.072529 52.041492) - (xy 76.919652 51.888614) - (xy 76.891875 51.834098) - (xy 76.896898 51.784015) - (xy 76.944089 51.657488) - (xy 76.94409 51.657485) - (xy 76.944091 51.657483) - (xy 76.9505 51.597873) - (xy 76.950499 50.202128) - (xy 76.944091 50.142517) - (xy 76.940253 50.132227) - (xy 76.893797 50.00767) - (xy 76.807549 49.892458) - (xy 76.807548 49.892457) - (xy 76.807546 49.892454) - (xy 76.807541 49.89245) - (xy 76.692329 49.806202) - (xy 76.557488 49.75591) - (xy 76.557483 49.755909) - (xy 76.557481 49.755908) - (xy 76.557477 49.755908) - (xy 76.526249 49.75255) - (xy 76.497873 49.7495) - (xy 76.49787 49.7495) - (xy 75.752133 49.7495) - (xy 75.752129 49.7495) - (xy 75.752128 49.749501) - (xy 75.744949 49.750272) - (xy 75.692519 49.755908) - (xy 75.692514 49.755909) - (xy 75.55767 49.806202) - (xy 75.442458 49.89245) - (xy 75.44245 49.892458) - (xy 75.356202 50.00767) - (xy 75.30591 50.142511) - (xy 75.305908 50.142522) - (xy 75.2995 50.202129) - (xy 75.2995 50.329455) - (xy 75.280593 50.387646) - (xy 75.231093 50.42361) - (xy 75.169907 50.42361) - (xy 75.130496 50.399459) - (xy 75.117787 50.38675) - (xy 75.004495 50.273457) - (xy 74.976719 50.218942) - (xy 74.9755 50.203455) - (xy 74.9755 50.04921) - (xy 74.977607 50.028894) - (xy 74.980367 50.015732) - (xy 74.975879 49.979733) - (xy 74.9755 49.973608) - (xy 74.9755 49.96888) - (xy 74.971658 49.945859) - (xy 74.968035 49.916805) - (xy 74.964866 49.891374) - (xy 74.964864 49.89137) - (xy 74.962626 49.88385) - (xy 74.960065 49.876389) - (xy 74.933945 49.828123) - (xy 74.916588 49.792621) - (xy 74.909826 49.778789) - (xy 74.909824 49.778787) - (xy 74.909824 49.778786) - (xy 74.905271 49.772409) - (xy 74.900421 49.766177) - (xy 74.900419 49.766174) - (xy 74.860029 49.728992) - (xy 74.831037 49.7) - (xy 77.54475 49.7) - (xy 77.563669 49.843708) - (xy 77.56367 49.843709) - (xy 77.616898 49.972216) - (xy 77.619139 49.977625) - (xy 77.707379 50.092621) - (xy 77.822375 50.180861) - (xy 77.956291 50.23633) - (xy 78.094564 50.254534) - (xy 78.149789 50.280875) - (xy 78.151646 50.282683) - (xy 78.220504 50.351541) - (xy 78.248281 50.406058) - (xy 78.2495 50.421545) - (xy 78.2495 51.597866) - (xy 78.249501 51.59787) - (xy 78.255908 51.65748) - (xy 78.255909 51.657485) - (xy 78.306202 51.792329) - (xy 78.378281 51.888614) - (xy 78.392454 51.907546) - (xy 78.392457 51.907548) - (xy 78.392458 51.907549) - (xy 78.510943 51.996247) - (xy 78.546196 52.046256) - (xy 78.545322 52.107435) - (xy 78.508655 52.156416) - (xy 78.451614 52.1745) - (xy 78.170725 52.1745) - (xy 78.140305 52.177353) - (xy 78.140296 52.177355) - (xy 78.012116 52.222207) - (xy 77.902855 52.302845) - (xy 77.902845 52.302855) - (xy 77.822207 52.412116) - (xy 77.777355 52.540296) - (xy 77.777353 52.540305) - (xy 77.7745 52.570725) - (xy 77.7745 53.229274) - (xy 77.777353 53.259694) - (xy 77.777355 53.259703) - (xy 77.822207 53.387883) - (xy 77.902845 53.497144) - (xy 77.902847 53.497146) - (xy 77.90285 53.49715) - (xy 77.902853 53.497152) - (xy 77.902855 53.497154) - (xy 78.012116 53.577792) - (xy 78.012117 53.577792) - (xy 78.012118 53.577793) - (xy 78.140301 53.622646) - (xy 78.170725 53.625499) - (xy 78.170727 53.6255) - (xy 78.170734 53.6255) - (xy 78.679273 53.6255) - (xy 78.679273 53.625499) - (xy 78.709699 53.622646) - (xy 78.837882 53.577793) - (xy 78.94715 53.49715) - (xy 79.027793 53.387882) - (xy 79.072646 53.259699) - (xy 79.075499 53.229273) - (xy 79.0755 53.229273) - (xy 79.0755 52.796543) - (xy 79.094407 52.738352) - (xy 79.104491 52.726545) - (xy 79.230724 52.600311) - (xy 79.24657 52.587443) - (xy 79.257836 52.580084) - (xy 79.280121 52.55145) - (xy 79.284177 52.546858) - (xy 79.287519 52.543518) - (xy 79.290519 52.539315) - (xy 79.301086 52.524516) - (xy 79.317947 52.502852) - (xy 79.334809 52.481189) - (xy 79.33481 52.481183) - (xy 79.338542 52.474289) - (xy 79.34201 52.467198) - (xy 79.35767 52.414596) - (xy 79.3755 52.36266) - (xy 79.3755 52.362655) - (xy 79.37679 52.354926) - (xy 79.377765 52.347095) - (xy 79.377768 52.347088) - (xy 79.3755 52.292244) - (xy 79.3755 52.147206) - (xy 79.394407 52.089015) - (xy 79.443907 52.053051) - (xy 79.463913 52.048774) - (xy 79.507483 52.044091) - (xy 79.63576 51.996247) - (xy 79.642329 51.993797) - (xy 79.642329 51.993796) - (xy 79.642331 51.993796) - (xy 79.757546 51.907546) - (xy 79.843796 51.792331) - (xy 79.894091 51.657483) - (xy 79.9005 51.597873) - (xy 79.900499 50.202128) - (xy 79.894091 50.142517) - (xy 79.890253 50.132227) - (xy 79.843797 50.00767) - (xy 79.757549 49.892458) - (xy 79.757548 49.892457) - (xy 79.757546 49.892454) - (xy 79.757541 49.89245) - (xy 79.642329 49.806202) - (xy 79.507488 49.75591) - (xy 79.507483 49.755909) - (xy 79.507481 49.755908) - (xy 79.507477 49.755908) - (xy 79.476249 49.75255) - (xy 79.447873 49.7495) - (xy 79.44787 49.7495) - (xy 78.748587 49.7495) - (xy 78.690396 49.730593) - (xy 78.654432 49.681093) - (xy 78.650434 49.663422) - (xy 78.643565 49.61125) - (xy 78.63633 49.556291) - (xy 78.580861 49.422375) - (xy 78.492621 49.307379) - (xy 78.377625 49.219139) - (xy 78.377621 49.219137) - (xy 78.243709 49.16367) - (xy 78.243708 49.163669) - (xy 78.1 49.14475) - (xy 77.956291 49.163669) - (xy 77.95629 49.16367) - (xy 77.822378 49.219137) - (xy 77.822374 49.219139) - (xy 77.707381 49.307377) - (xy 77.707377 49.307381) - (xy 77.619139 49.422374) - (xy 77.619137 49.422378) - (xy 77.56367 49.55629) - (xy 77.563669 49.556291) - (xy 77.54475 49.699999) - (xy 77.54475 49.7) - (xy 74.831037 49.7) - (xy 74.550547 49.41951) - (xy 74.422528 49.29149) - (xy 74.394751 49.236974) - (xy 74.404322 49.176542) - (xy 74.447587 49.133277) - (xy 74.451814 49.131328) - (xy 74.452618 49.130863) - (xy 74.452625 49.130861) - (xy 74.567621 49.042621) - (xy 74.655861 48.927625) - (xy 74.71133 48.793709) - (xy 74.73025 48.65) - (xy 74.71133 48.506291) - (xy 74.655861 48.372375) - (xy 74.567621 48.257379) - (xy 74.452625 48.169139) - (xy 74.452621 48.169137) - (xy 74.318709 48.11367) - (xy 74.318708 48.113669) - (xy 74.175 48.09475) - (xy 74.031291 48.113669) - (xy 74.03129 48.11367) - (xy 73.897372 48.169139) - (xy 73.891751 48.172385) - (xy 73.890285 48.169845) - (xy 73.84407 48.186216) - (xy 73.841469 48.18625) - (xy 73.714449 48.18625) - (xy 73.710869 48.18612) - (xy 73.705761 48.18575) - (xy 73.70576 48.18575) - (xy 73.7 48.18575) - (xy 73.7 47.940515) - (xy 74.742 47.940515) - (xy 74.752605 48.044321) - (xy 74.808342 48.212525) - (xy 74.901364 48.363337) - (xy 75.026662 48.488635) - (xy 75.177474 48.581657) - (xy 75.345678 48.637394) - (xy 75.449484 48.648) - (xy 76.345999 48.648) - (xy 76.346 48.647999) - (xy 76.854 48.647999) - (xy 76.854001 48.648) - (xy 77.750516 48.648) - (xy 77.854321 48.637394) - (xy 78.022525 48.581657) - (xy 78.173337 48.488635) - (xy 78.298635 48.363337) - (xy 78.391657 48.212525) - (xy 78.447394 48.044321) - (xy 78.458 47.940515) - (xy 78.458 47.819001) - (xy 78.457999 47.819) - (xy 76.854001 47.819) - (xy 76.854 47.819001) - (xy 76.854 48.647999) - (xy 76.346 48.647999) - (xy 76.346 47.819001) - (xy 76.345999 47.819) - (xy 74.742001 47.819) - (xy 74.742 47.819001) - (xy 74.742 47.940515) - (xy 73.7 47.940515) - (xy 73.7 47.78625) - (xy 74.27258 47.78625) - (xy 74.27258 47.786249) - (xy 74.26485 47.727531) - (xy 74.253088 47.699136) - (xy 74.248287 47.638139) - (xy 74.253088 47.623363) - (xy 74.26485 47.594967) - (xy 74.272581 47.53625) - (xy 73.7 47.53625) - (xy 73.7 47.310999) - (xy 74.742 47.310999) - (xy 74.742001 47.311) - (xy 78.457999 47.311) - (xy 78.458 47.310999) - (xy 78.458 47.189484) - (xy 78.447394 47.085678) - (xy 78.391657 46.917474) - (xy 78.298635 46.766662) - (xy 78.173337 46.641364) - (xy 78.022525 46.548342) - (xy 77.854321 46.492605) - (xy 77.750516 46.482) - (xy 77.037462 46.482) - (xy 76.979271 46.463093) - (xy 76.943307 46.413593) - (xy 76.943307 46.352407) - (xy 76.977195 46.304458) - (xy 76.980285 46.302086) - (xy 76.992621 46.292621) - (xy 77.080861 46.177625) - (xy 77.13633 46.043709) - (xy 77.15525 45.9) - (xy 77.13633 45.756291) - (xy 77.108034 45.687978) - (xy 77.1005 45.650096) - (xy 77.1005 45.539499) - (xy 77.119407 45.481308) - (xy 77.168907 45.445344) - (xy 77.1995 45.440499) - (xy 77.747867 45.440499) - (xy 77.747872 45.440499) - (xy 77.807483 45.434091) - (xy 77.874907 45.408943) - (xy 77.942329 45.383797) - (xy 77.942329 45.383796) - (xy 77.942331 45.383796) - (xy 78.057546 45.297546) - (xy 78.143796 45.182331) - (xy 78.194091 45.047483) - (xy 78.2005 44.987873) - (xy 78.200499 44.242128) - (xy 78.194091 44.182517) - (xy 78.194089 44.182511) - (xy 78.143797 44.04767) - (xy 78.057549 43.932458) - (xy 78.057548 43.932457) - (xy 78.057546 43.932454) - (xy 78.057541 43.93245) - (xy 77.942329 43.846202) - (xy 77.807488 43.79591) - (xy 77.807483 43.795909) - (xy 77.807481 43.795908) - (xy 77.807477 43.795908) - (xy 77.776249 43.79255) - (xy 77.747873 43.7895) - (xy 77.74787 43.7895) - (xy 75.452133 43.7895) - (xy 75.452129 43.7895) - (xy 75.452128 43.789501) - (xy 75.444949 43.790272) - (xy 75.392519 43.795908) - (xy 75.392514 43.795909) - (xy 75.25767 43.846202) - (xy 75.142458 43.93245) - (xy 75.14245 43.932458) - (xy 75.056202 44.04767) - (xy 75.00591 44.182511) - (xy 75.005908 44.182522) - (xy 74.9995 44.242129) - (xy 74.9995 44.987866) - (xy 74.999501 44.98787) - (xy 75.005908 45.04748) - (xy 75.005909 45.047485) - (xy 75.056202 45.182329) - (xy 75.14245 45.297541) - (xy 75.142454 45.297546) - (xy 75.142457 45.297548) - (xy 75.142458 45.297549) - (xy 75.25767 45.383797) - (xy 75.392511 45.434089) - (xy 75.392512 45.434089) - (xy 75.392517 45.434091) - (xy 75.452127 45.4405) - (xy 76.0005 45.440499) - (xy 76.058691 45.459406) - (xy 76.094655 45.508906) - (xy 76.0995 45.539499) - (xy 76.0995 45.650096) - (xy 76.091965 45.68798) - (xy 76.063669 45.756293) - (xy 76.04475 45.899999) - (xy 76.04475 45.9) - (xy 76.063669 46.043708) - (xy 76.06367 46.043709) - (xy 76.108782 46.152622) - (xy 76.119139 46.177625) - (xy 76.207379 46.292621) - (xy 76.207383 46.292624) - (xy 76.207384 46.292625) - (xy 76.222805 46.304458) - (xy 76.257461 46.354883) - (xy 76.255859 46.416047) - (xy 76.218612 46.464589) - (xy 76.162538 46.482) - (xy 75.449484 46.482) - (xy 75.345678 46.492605) - (xy 75.177474 46.548342) - (xy 75.026662 46.641364) - (xy 74.901364 46.766662) - (xy 74.808342 46.917474) - (xy 74.752605 47.085678) - (xy 74.742 47.189484) - (xy 74.742 47.310999) - (xy 73.7 47.310999) - (xy 73.7 47.13625) - (xy 74.27258 47.13625) - (xy 74.27258 47.136249) - (xy 74.26485 47.077531) - (xy 74.253088 47.049136) - (xy 74.248287 46.988139) - (xy 74.253088 46.973363) - (xy 74.26485 46.944967) - (xy 74.272581 46.88625) - (xy 73.7 46.88625) - (xy 73.7 46.48625) - (xy 74.27258 46.48625) - (xy 74.27258 46.486249) - (xy 74.264849 46.42753) - (xy 74.203588 46.27963) - (xy 74.203586 46.279626) - (xy 74.106131 46.152622) - (xy 74.106127 46.152618) - (xy 73.979123 46.055163) - (xy 73.979119 46.055161) - (xy 73.831224 45.993901) - (xy 73.831216 45.993899) - (xy 73.712347 45.97825) - (xy 73.247501 45.97825) - (xy 73.2475 45.978251) - (xy 73.2475 46) - (xy 72.8475 46) - (xy 72.8475 45.978251) - (xy 72.847499 45.97825) - (xy 72.382656 45.97825) - (xy 72.382651 45.978251) - (xy 72.263781 45.993899) - (xy 72.257515 45.995579) - (xy 72.257215 45.99446) - (xy 72.229362 46) - (xy 70.709752 46) - (xy 70.690438 45.998098) - (xy 70.669328 45.993899) - (xy 70.642775 45.988617) - (xy 70.607089 45.973835) - (xy 70.60633 45.973328) - (xy 70.574949 45.952359) - (xy 70.54764 45.92505) - (xy 70.526163 45.892908) - (xy 70.511382 45.857222) - (xy 70.501902 45.809561) - (xy 70.5 45.790248) - (xy 70.5 42.951198) - (xy 77.208011 42.951198) - (xy 77.268593 42.993619) - (xy 77.268605 42.993625) - (xy 77.468091 43.086647) - (xy 77.46809 43.086647) - (xy 77.680723 43.143621) - (xy 77.899997 43.162805) - (xy 77.900003 43.162805) - (xy 78.119276 43.143621) - (xy 78.331906 43.086648) - (xy 78.531406 42.993618) - (xy 78.591986 42.951198) - (xy 77.899999 42.259211) - (xy 77.208011 42.951198) - (xy 70.5 42.951198) - (xy 70.5 41.900003) - (xy 76.637195 41.900003) - (xy 76.656378 42.119276) - (xy 76.713352 42.331909) - (xy 76.806374 42.531394) - (xy 76.806376 42.531398) - (xy 76.8488 42.591986) - (xy 77.511484 41.929302) - (xy 77.546372 41.929302) - (xy 77.575047 42.042538) - (xy 77.638936 42.140327) - (xy 77.731115 42.212072) - (xy 77.841595 42.25) - (xy 77.929005 42.25) - (xy 78.015216 42.235614) - (xy 78.117947 42.180019) - (xy 78.19706 42.094079) - (xy 78.243982 41.987108) - (xy 78.2512 41.899999) - (xy 78.259211 41.899999) - (xy 78.951198 42.591986) - (xy 78.993618 42.531406) - (xy 79.086648 42.331906) - (xy 79.143621 42.119276) - (xy 79.162805 41.900003) - (xy 79.162805 41.899996) - (xy 79.143621 41.680723) - (xy 79.086647 41.46809) - (xy 78.993625 41.268606) - (xy 78.99362 41.268596) - (xy 78.951198 41.208012) - (xy 78.259211 41.899999) - (xy 78.2512 41.899999) - (xy 78.253628 41.870698) - (xy 78.224953 41.757462) - (xy 78.161064 41.659673) - (xy 78.068885 41.587928) - (xy 77.958405 41.55) - (xy 77.870995 41.55) - (xy 77.784784 41.564386) - (xy 77.682053 41.619981) - (xy 77.60294 41.705921) - (xy 77.556018 41.812892) - (xy 77.546372 41.929302) - (xy 77.511484 41.929302) - (xy 77.540787 41.899999) - (xy 76.8488 41.208012) - (xy 76.80638 41.268595) - (xy 76.806373 41.268607) - (xy 76.713352 41.46809) - (xy 76.656378 41.680723) - (xy 76.637195 41.899996) - (xy 76.637195 41.900003) - (xy 70.5 41.900003) - (xy 70.5 40.8488) - (xy 77.208012 40.8488) - (xy 77.899999 41.540787) - (xy 78.591986 40.8488) - (xy 78.531398 40.806376) - (xy 78.531394 40.806374) - (xy 78.331908 40.713352) - (xy 78.331909 40.713352) - (xy 78.119276 40.656378) - (xy 77.900003 40.637195) - (xy 77.899997 40.637195) - (xy 77.680723 40.656378) - (xy 77.46809 40.713352) - (xy 77.268607 40.806373) - (xy 77.268595 40.80638) - (xy 77.208012 40.8488) - (xy 70.5 40.8488) - (xy 70.5 35.209751) - (xy 70.501902 35.190437) - (xy 70.508914 35.155186) - (xy 70.538811 35.101802) - (xy 70.594376 35.076186) - (xy 70.606012 35.0755) - (xy 82.493988 35.0755) - ) - ) - ) - (zone (net 0) (net_name "") (layer "F.Cu") (tstamp 244d0622-2f04-4395-b0ce-fa7cdc47da8f) (hatch edge 0.508) - (connect_pads (clearance 0)) - (min_thickness 0.2) (filled_areas_thickness no) - (keepout (tracks allowed) (vias not_allowed) (pads allowed) (copperpour not_allowed) (footprints allowed)) - (fill (thermal_gap 0.508) (thermal_bridge_width 0.508)) - (polygon - (pts - (xy 86.7 109.5) - (xy 72.9 109.4) - (xy 72.9 96.2) - (xy 86.8 96.2) - ) - ) - ) - (zone (net 0) (net_name "") (layer "F.Cu") (tstamp d7278cec-9bf5-40d0-a7e9-73a064c77d8d) (hatch edge 0.508) - (connect_pads (clearance 0)) - (min_thickness 0.2) (filled_areas_thickness no) - (keepout (tracks allowed) (vias not_allowed) (pads allowed) (copperpour not_allowed) (footprints allowed)) - (fill (thermal_gap 0.508) (thermal_bridge_width 0.508)) - (polygon - (pts - (xy 107.7 119.9) - (xy 94.9 119.9) - (xy 95 107.1) - (xy 107.6 107) - ) - ) - ) - (zone (net 3) (net_name "/Supply_Ref/-15V") (layer "B.Cu") (tstamp 00000000-0000-0000-0000-000061e5b192) (hatch edge 0.508) - (priority 1) - (connect_pads (clearance 0.25)) - (min_thickness 0.254) (filled_areas_thickness no) - (fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508) (smoothing fillet) (radius 0.2)) - (polygon - (pts - (xy 73.5 51.5) - (xy 62.5 51.5) - (xy 62.5 41) - (xy 73.5 41) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 67.844662 41.020002) - (xy 67.891155 41.073658) - (xy 67.901259 41.143932) - (xy 67.872666 41.206538) - (xy 67.872109 41.2129) - (xy 68.560481 41.901272) - (xy 68.474852 41.914835) - (xy 68.361955 41.972359) - (xy 68.272359 42.061955) - (xy 68.214835 42.174852) - (xy 68.201272 42.260481) - (xy 67.5129 41.572109) - (xy 67.462913 41.6435) - (xy 67.366188 41.850926) - (xy 67.366186 41.850931) - (xy 67.306951 42.071997) - (xy 67.287004 42.3) - (xy 67.306951 42.528002) - (xy 67.366186 42.749068) - (xy 67.366188 42.749073) - (xy 67.462913 42.956501) - (xy 67.512899 43.027888) - (xy 68.201272 42.339516) - (xy 68.214835 42.425148) - (xy 68.272359 42.538045) - (xy 68.361955 42.627641) - (xy 68.474852 42.685165) - (xy 68.560482 42.698727) - (xy 67.87211 43.387098) - (xy 67.87211 43.3871) - (xy 67.943498 43.437086) - (xy 68.150926 43.533811) - (xy 68.150931 43.533813) - (xy 68.371999 43.593048) - (xy 68.371995 43.593048) - (xy 68.6 43.612995) - (xy 68.828002 43.593048) - (xy 69.049068 43.533813) - (xy 69.049073 43.533811) - (xy 69.256497 43.437088) - (xy 69.327888 43.387099) - (xy 69.327888 43.387097) - (xy 68.639518 42.698727) - (xy 68.725148 42.685165) - (xy 68.838045 42.627641) - (xy 68.927641 42.538045) - (xy 68.985165 42.425148) - (xy 68.998727 42.339518) - (xy 69.687097 43.027888) - (xy 69.687099 43.027888) - (xy 69.737088 42.956497) - (xy 69.833811 42.749073) - (xy 69.833813 42.749068) - (xy 69.893048 42.528002) - (xy 69.912995 42.3) - (xy 69.893048 42.071997) - (xy 69.833813 41.850931) - (xy 69.833811 41.850926) - (xy 69.737086 41.643498) - (xy 69.6871 41.57211) - (xy 69.687098 41.57211) - (xy 68.998727 42.260481) - (xy 68.985165 42.174852) - (xy 68.927641 42.061955) - (xy 68.838045 41.972359) - (xy 68.725148 41.914835) - (xy 68.639517 41.901272) - (xy 69.327888 41.212899) - (xy 69.326627 41.198487) - (xy 69.306859 41.173756) - (xy 69.29955 41.103136) - (xy 69.331581 41.039776) - (xy 69.392782 41.003791) - (xy 69.423458 41) - (xy 73.28759 41) - (xy 73.312171 41.002421) - (xy 73.351953 41.010334) - (xy 73.397376 41.029149) - (xy 73.420583 41.044656) - (xy 73.455343 41.079416) - (xy 73.47085 41.102623) - (xy 73.489664 41.148043) - (xy 73.497578 41.187825) - (xy 73.5 41.212409) - (xy 73.5 51.28759) - (xy 73.497578 51.312174) - (xy 73.489664 51.351956) - (xy 73.47085 51.397376) - (xy 73.455343 51.420583) - (xy 73.420583 51.455343) - (xy 73.397376 51.47085) - (xy 73.351956 51.489664) - (xy 73.312174 51.497578) - (xy 73.28759 51.5) - (xy 62.71241 51.5) - (xy 62.68783 51.497579) - (xy 62.67004 51.49404) - (xy 62.648044 51.489665) - (xy 62.602623 51.47085) - (xy 62.579416 51.455343) - (xy 62.544656 51.420583) - (xy 62.529149 51.397376) - (xy 62.510334 51.351953) - (xy 62.502421 51.312171) - (xy 62.5 51.28759) - (xy 62.5 41.212409) - (xy 62.502421 41.187828) - (xy 62.510334 41.148046) - (xy 62.529149 41.102623) - (xy 62.544656 41.079416) - (xy 62.579416 41.044656) - (xy 62.602623 41.029149) - (xy 62.648047 41.010334) - (xy 62.68783 41.002421) - (xy 62.71241 41) - (xy 67.776541 41) - ) - ) - ) - (zone (net 2) (net_name "GND") (layer "B.Cu") (tstamp 00000000-0000-0000-0000-000061e5b19b) (hatch edge 0.508) - (connect_pads (clearance 0.25)) - (min_thickness 0.2) (filled_areas_thickness no) - (fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508) (smoothing fillet) (radius 0.2)) - (polygon - (pts - (xy 210 62.7) - (xy 111.6 62.7) - (xy 111.6 81.9) - (xy 65.6 81.9) - (xy 65.6 83.9) - (xy 113.6 83.9) - (xy 113.6 64.7) - (xy 210 64.7) - (xy 209.6 134.9) - (xy 50 135) - (xy 50 35) - (xy 209.9 35.1) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 131.241 121.224529) - (xy 131.131592 121.174565) - (xy 131.023334 121.159) - (xy 130.950666 121.159) - (xy 130.842408 121.174565) - (xy 130.733 121.224529) - (xy 130.733 119.56947) - (xy 130.842408 119.619435) - (xy 130.950666 119.635) - (xy 131.023334 119.635) - (xy 131.131592 119.619435) - (xy 131.241 119.56947) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 136.321 121.224529) - (xy 136.211592 121.174565) - (xy 136.103334 121.159) - (xy 136.030666 121.159) - (xy 135.922408 121.174565) - (xy 135.813 121.224529) - (xy 135.813 119.56947) - (xy 135.922408 119.619435) - (xy 136.030666 119.635) - (xy 136.103334 119.635) - (xy 136.211592 119.619435) - (xy 136.321 119.56947) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 170.751098 35.075516) - (xy 209.687855 35.099866) - (xy 209.713398 35.103236) - (xy 209.775035 35.119746) - (xy 209.819317 35.145266) - (xy 209.854973 35.180815) - (xy 209.880626 35.225022) - (xy 209.897321 35.286608) - (xy 209.900769 35.312151) - (xy 209.9245 41.86189) - (xy 209.9245 62.593822) - (xy 209.905593 62.652013) - (xy 209.856093 62.687977) - (xy 209.844859 62.690911) - (xy 209.827253 62.694421) - (xy 209.808856 62.698089) - (xy 209.789502 62.7) - (xy 111.6 62.7) - (xy 111.6 62.899999) - (xy 111.6 81.690248) - (xy 111.598097 81.709563) - (xy 111.588616 81.757224) - (xy 111.573835 81.79291) - (xy 111.552362 81.825047) - (xy 111.525047 81.852362) - (xy 111.49291 81.873835) - (xy 111.457224 81.888616) - (xy 111.409563 81.898097) - (xy 111.390248 81.9) - (xy 65.6 81.9) - (xy 65.6 83.9) - (xy 113.399999 83.9) - (xy 113.4 83.9) - (xy 113.6 83.9) - (xy 113.6 68) - (xy 120.344518 68) - (xy 120.364421 68.278288) - (xy 120.42373 68.550927) - (xy 120.521231 68.812338) - (xy 120.521232 68.81234) - (xy 120.654944 69.057213) - (xy 120.654943 69.057213) - (xy 120.82214 69.280562) - (xy 120.822142 69.280564) - (xy 120.822145 69.280568) - (xy 121.019432 69.477855) - (xy 121.019435 69.477857) - (xy 121.019437 69.477859) - (xy 121.242786 69.645056) - (xy 121.487659 69.778767) - (xy 121.487663 69.778769) - (xy 121.749072 69.876269) - (xy 121.749077 69.876271) - (xy 122.021706 69.935578) - (xy 122.152104 69.944904) - (xy 122.23034 69.9505) - (xy 122.230343 69.9505) - (xy 122.36966 69.9505) - (xy 122.439202 69.945526) - (xy 122.578294 69.935578) - (xy 122.850923 69.876271) - (xy 123.112337 69.778769) - (xy 123.357213 69.645056) - (xy 123.580568 69.477855) - (xy 123.777855 69.280568) - (xy 123.945056 69.057213) - (xy 124.078769 68.812337) - (xy 124.176271 68.550923) - (xy 124.235578 68.278294) - (xy 124.255482 68) - (xy 204.344518 68) - (xy 204.364421 68.278288) - (xy 204.42373 68.550927) - (xy 204.521231 68.812338) - (xy 204.521232 68.81234) - (xy 204.654944 69.057213) - (xy 204.654943 69.057213) - (xy 204.82214 69.280562) - (xy 204.822142 69.280564) - (xy 204.822145 69.280568) - (xy 205.019432 69.477855) - (xy 205.019435 69.477857) - (xy 205.019437 69.477859) - (xy 205.242786 69.645056) - (xy 205.487659 69.778767) - (xy 205.487663 69.778769) - (xy 205.749072 69.876269) - (xy 205.749077 69.876271) - (xy 206.021706 69.935578) - (xy 206.152104 69.944904) - (xy 206.23034 69.9505) - (xy 206.230343 69.9505) - (xy 206.36966 69.9505) - (xy 206.439202 69.945526) - (xy 206.578294 69.935578) - (xy 206.850923 69.876271) - (xy 207.112337 69.778769) - (xy 207.357213 69.645056) - (xy 207.580568 69.477855) - (xy 207.777855 69.280568) - (xy 207.945056 69.057213) - (xy 208.078769 68.812337) - (xy 208.176271 68.550923) - (xy 208.235578 68.278294) - (xy 208.255482 68) - (xy 208.235578 67.721706) - (xy 208.176271 67.449077) - (xy 208.078769 67.187663) - (xy 207.945056 66.942787) - (xy 207.945055 66.942786) - (xy 207.945056 66.942786) - (xy 207.777859 66.719437) - (xy 207.777857 66.719435) - (xy 207.777855 66.719432) - (xy 207.580568 66.522145) - (xy 207.580564 66.522142) - (xy 207.580562 66.52214) - (xy 207.357213 66.354943) - (xy 207.11234 66.221232) - (xy 207.112338 66.221231) - (xy 206.850926 66.12373) - (xy 206.850928 66.12373) - (xy 206.790082 66.110493) - (xy 206.578294 66.064422) - (xy 206.578291 66.064421) - (xy 206.578288 66.064421) - (xy 206.36966 66.0495) - (xy 206.369657 66.0495) - (xy 206.230343 66.0495) - (xy 206.23034 66.0495) - (xy 206.021711 66.064421) - (xy 205.749072 66.12373) - (xy 205.487661 66.221231) - (xy 205.487659 66.221232) - (xy 205.242786 66.354943) - (xy 205.019437 66.52214) - (xy 204.82214 66.719437) - (xy 204.654943 66.942786) - (xy 204.521232 67.187659) - (xy 204.521231 67.187661) - (xy 204.42373 67.449072) - (xy 204.364421 67.721711) - (xy 204.344518 68) - (xy 124.255482 68) - (xy 124.235578 67.721706) - (xy 124.176271 67.449077) - (xy 124.078769 67.187663) - (xy 123.945056 66.942787) - (xy 123.945055 66.942786) - (xy 123.945056 66.942786) - (xy 123.777859 66.719437) - (xy 123.777857 66.719435) - (xy 123.777855 66.719432) - (xy 123.580568 66.522145) - (xy 123.580564 66.522142) - (xy 123.580562 66.52214) - (xy 123.357213 66.354943) - (xy 123.11234 66.221232) - (xy 123.112338 66.221231) - (xy 122.850926 66.12373) - (xy 122.850928 66.12373) - (xy 122.790082 66.110493) - (xy 122.578294 66.064422) - (xy 122.578291 66.064421) - (xy 122.578288 66.064421) - (xy 122.36966 66.0495) - (xy 122.369657 66.0495) - (xy 122.230343 66.0495) - (xy 122.23034 66.0495) - (xy 122.021711 66.064421) - (xy 121.749072 66.12373) - (xy 121.487661 66.221231) - (xy 121.487659 66.221232) - (xy 121.242786 66.354943) - (xy 121.019437 66.52214) - (xy 120.82214 66.719437) - (xy 120.654943 66.942786) - (xy 120.521232 67.187659) - (xy 120.521231 67.187661) - (xy 120.42373 67.449072) - (xy 120.364421 67.721711) - (xy 120.344518 68) - (xy 113.6 68) - (xy 113.6 64.909751) - (xy 113.601902 64.890438) - (xy 113.611382 64.842777) - (xy 113.626162 64.807092) - (xy 113.647642 64.774946) - (xy 113.674946 64.747642) - (xy 113.707092 64.726162) - (xy 113.742775 64.711382) - (xy 113.768021 64.70636) - (xy 113.790439 64.701902) - (xy 113.809752 64.7) - (xy 209.789071 64.7) - (xy 209.808454 64.701916) - (xy 209.844883 64.709189) - (xy 209.898245 64.739123) - (xy 209.923822 64.794706) - (xy 209.9245 64.806273) - (xy 209.9245 77.95025) - (xy 209.601205 134.688282) - (xy 209.597714 134.713783) - (xy 209.580936 134.775261) - (xy 209.555253 134.819378) - (xy 209.519602 134.854847) - (xy 209.475362 134.880302) - (xy 209.413801 134.89677) - (xy 209.388285 134.900132) - (xy 170.497132 134.9245) - (xy 50.1745 134.9245) - (xy 50.116309 134.905593) - (xy 50.080345 134.856093) - (xy 50.0755 134.8255) - (xy 50.0755 129.385638) - (xy 51.140801 129.385638) - (xy 51.150655 129.642719) - (xy 51.199638 129.89528) - (xy 51.286602 130.137414) - (xy 51.349332 130.252774) - (xy 51.409504 130.363428) - (xy 51.48976 130.468714) - (xy 51.565471 130.568036) - (xy 51.750832 130.746429) - (xy 51.750834 130.746431) - (xy 51.750837 130.746433) - (xy 51.750838 130.746434) - (xy 51.941391 130.880466) - (xy 51.961271 130.894449) - (xy 51.961276 130.894452) - (xy 52.191821 131.008602) - (xy 52.191823 131.008602) - (xy 52.191826 131.008604) - (xy 52.437108 131.086228) - (xy 52.691364 131.1255) - (xy 52.691365 131.1255) - (xy 52.88423 131.1255) - (xy 52.936553 131.121482) - (xy 53.076517 131.110737) - (xy 53.07652 131.110736) - (xy 53.076522 131.110736) - (xy 53.106859 131.103636) - (xy 53.327021 131.052117) - (xy 53.565641 130.955944) - (xy 53.786783 130.824474) - (xy 53.985265 130.660787) - (xy 54.156435 130.46872) - (xy 54.296279 130.252775) - (xy 54.319936 130.200003) - (xy 166.594659 130.200003) - (xy 166.613974 130.396126) - (xy 166.613975 130.396129) - (xy 166.671187 130.58473) - (xy 166.671188 130.584732) - (xy 166.71184 130.660786) - (xy 166.76409 130.758538) - (xy 166.764092 130.75854) - (xy 166.764093 130.758542) - (xy 166.889112 130.910878) - (xy 166.889121 130.910887) - (xy 167.041185 131.035683) - (xy 167.041462 131.03591) - (xy 167.215273 131.128814) - (xy 167.403868 131.186024) - (xy 167.40387 131.186024) - (xy 167.403873 131.186025) - (xy 167.599997 131.205341) - (xy 167.6 131.205341) - (xy 167.600003 131.205341) - (xy 167.796126 131.186025) - (xy 167.796127 131.186024) - (xy 167.796132 131.186024) - (xy 167.984727 131.128814) - (xy 168.158538 131.03591) - (xy 168.310883 130.910883) - (xy 168.43591 130.758538) - (xy 168.528814 130.584727) - (xy 168.586024 130.396132) - (xy 168.589246 130.363425) - (xy 168.605341 130.200003) - (xy 168.605341 130.199996) - (xy 168.586025 130.003873) - (xy 168.586024 130.00387) - (xy 168.586024 130.003868) - (xy 168.528814 129.815273) - (xy 168.43591 129.641462) - (xy 168.331599 129.514359) - (xy 168.310887 129.489121) - (xy 168.310878 129.489112) - (xy 168.26322 129.45) - (xy 204.594551 129.45) - (xy 204.614316 129.701146) - (xy 204.673127 129.946113) - (xy 204.769532 130.178856) - (xy 204.769535 130.178862) - (xy 204.901162 130.393656) - (xy 204.901168 130.393664) - (xy 205.064355 130.584732) - (xy 205.064776 130.585224) - (xy 205.064782 130.585229) - (xy 205.064785 130.585232) - (xy 205.256335 130.748831) - (xy 205.256341 130.748836) - (xy 205.272173 130.758538) - (xy 205.471137 130.880464) - (xy 205.471141 130.880466) - (xy 205.653354 130.955941) - (xy 205.703887 130.976872) - (xy 205.703889 130.976873) - (xy 205.948852 131.035683) - (xy 206.137118 131.0505) - (xy 206.137123 131.0505) - (xy 206.262877 131.0505) - (xy 206.262882 131.0505) - (xy 206.451148 131.035683) - (xy 206.696111 130.976873) - (xy 206.928859 130.880466) - (xy 207.143659 130.748836) - (xy 207.335224 130.585224) - (xy 207.498836 130.393659) - (xy 207.630466 130.178859) - (xy 207.726873 129.946111) - (xy 207.785683 129.701148) - (xy 207.805449 129.45) - (xy 207.785683 129.198852) - (xy 207.726873 128.953889) - (xy 207.69709 128.881987) - (xy 207.630467 128.721143) - (xy 207.630464 128.721137) - (xy 207.498837 128.506343) - (xy 207.498836 128.506341) - (xy 207.335224 128.314776) - (xy 207.335217 128.31477) - (xy 207.335214 128.314767) - (xy 207.143664 128.151168) - (xy 207.143656 128.151162) - (xy 206.928862 128.019535) - (xy 206.928856 128.019532) - (xy 206.696112 127.923127) - (xy 206.696113 127.923127) - (xy 206.451146 127.864316) - (xy 206.322812 127.854216) - (xy 206.262882 127.8495) - (xy 206.137118 127.8495) - (xy 206.080775 127.853934) - (xy 205.948853 127.864316) - (xy 205.703886 127.923127) - (xy 205.471143 128.019532) - (xy 205.471137 128.019535) - (xy 205.256343 128.151162) - (xy 205.256335 128.151168) - (xy 205.064785 128.314767) - (xy 205.064767 128.314785) - (xy 204.901168 128.506335) - (xy 204.901162 128.506343) - (xy 204.769535 128.721137) - (xy 204.769532 128.721143) - (xy 204.673127 128.953886) - (xy 204.614316 129.198853) - (xy 204.594551 129.45) - (xy 168.26322 129.45) - (xy 168.158542 129.364093) - (xy 168.15854 129.364092) - (xy 168.158538 129.36409) - (xy 168.117618 129.342218) - (xy 167.984732 129.271188) - (xy 167.98473 129.271187) - (xy 167.796129 129.213975) - (xy 167.796126 129.213974) - (xy 167.600003 129.194659) - (xy 167.599997 129.194659) - (xy 167.403873 129.213974) - (xy 167.40387 129.213975) - (xy 167.215269 129.271187) - (xy 167.215267 129.271188) - (xy 167.041467 129.364087) - (xy 167.041457 129.364093) - (xy 166.889121 129.489112) - (xy 166.889112 129.489121) - (xy 166.764093 129.641457) - (xy 166.764087 129.641467) - (xy 166.671188 129.815267) - (xy 166.671187 129.815269) - (xy 166.613975 130.00387) - (xy 166.613974 130.003873) - (xy 166.594659 130.199996) - (xy 166.594659 130.200003) - (xy 54.319936 130.200003) - (xy 54.401521 130.018014) - (xy 54.405409 130.003868) - (xy 54.457236 129.815269) - (xy 54.469693 129.769939) - (xy 54.499198 129.514365) - (xy 54.49823 129.489121) - (xy 54.489344 129.25728) - (xy 54.440361 129.004719) - (xy 54.440361 129.004717) - (xy 54.353399 128.762588) - (xy 54.230496 128.536572) - (xy 54.074531 128.331966) - (xy 54.056679 128.314785) - (xy 53.889167 128.15357) - (xy 53.889165 128.153568) - (xy 53.678728 128.00555) - (xy 53.678723 128.005547) - (xy 53.448178 127.891397) - (xy 53.448175 127.891396) - (xy 53.202893 127.813772) - (xy 53.202887 127.813771) - (xy 53.044215 127.789263) - (xy 52.948636 127.7745) - (xy 52.755773 127.7745) - (xy 52.75577 127.7745) - (xy 52.563477 127.789263) - (xy 52.312979 127.847883) - (xy 52.074353 127.944058) - (xy 51.853216 128.075525) - (xy 51.654742 128.239206) - (xy 51.654734 128.239213) - (xy 51.483561 128.431285) - (xy 51.48356 128.431285) - (xy 51.34372 128.647225) - (xy 51.238478 128.881987) - (xy 51.238475 128.881995) - (xy 51.170307 129.130058) - (xy 51.140802 129.385635) - (xy 51.140801 129.385638) - (xy 50.0755 129.385638) - (xy 50.0755 124.942871) - (xy 54.3345 124.942871) - (xy 54.340908 125.002478) - (xy 54.34091 125.002489) - (xy 54.391202 125.137329) - (xy 54.449136 125.214719) - (xy 54.477453 125.252547) - (xy 54.553974 125.30983) - (xy 54.59267 125.338797) - (xy 54.72751 125.389089) - (xy 54.727511 125.389089) - (xy 54.727516 125.389091) - (xy 54.787126 125.3955) - (xy 54.787129 125.3955) - (xy 55.932871 125.3955) - (xy 55.932874 125.3955) - (xy 55.992484 125.389091) - (xy 56.039303 125.371628) - (xy 56.127329 125.338797) - (xy 56.127329 125.338796) - (xy 56.127331 125.338796) - (xy 56.242547 125.252547) - (xy 56.328796 125.137331) - (xy 56.379091 125.002484) - (xy 56.3855 124.942874) - (xy 56.3855 124.370003) - (xy 59.409538 124.370003) - (xy 59.429336 124.571028) - (xy 59.429337 124.571033) - (xy 59.487977 124.764341) - (xy 59.487979 124.764346) - (xy 59.583199 124.942491) - (xy 59.632429 125.002478) - (xy 59.711353 125.098647) - (xy 59.711358 125.098651) - (xy 59.867508 125.2268) - (xy 60.045653 125.32202) - (xy 60.045659 125.322023) - (xy 60.180327 125.362873) - (xy 60.238966 125.380662) - (xy 60.238971 125.380663) - (xy 60.439997 125.400462) - (xy 60.44 125.400462) - (xy 60.440003 125.400462) - (xy 60.641028 125.380663) - (xy 60.641033 125.380662) - (xy 60.834341 125.322023) - (xy 60.914925 125.278949) - (xy 61.012491 125.2268) - (xy 61.012492 125.226798) - (xy 61.012494 125.226798) - (xy 61.168647 125.098647) - (xy 61.296798 124.942494) - (xy 61.392023 124.764341) - (xy 61.450662 124.571033) - (xy 61.450663 124.571028) - (xy 61.470462 124.370003) - (xy 61.470462 124.369996) - (xy 61.450663 124.168971) - (xy 61.450662 124.168966) - (xy 61.432873 124.110327) - (xy 61.392023 123.975659) - (xy 61.39202 123.975653) - (xy 61.2968 123.797508) - (xy 61.168651 123.641358) - (xy 61.168647 123.641353) - (xy 61.168641 123.641348) - (xy 61.012491 123.513199) - (xy 60.834346 123.417979) - (xy 60.834341 123.417977) - (xy 60.641033 123.359337) - (xy 60.641028 123.359336) - (xy 60.440003 123.339538) - (xy 60.439997 123.339538) - (xy 60.238971 123.359336) - (xy 60.238966 123.359337) - (xy 60.045658 123.417977) - (xy 60.045653 123.417979) - (xy 59.867508 123.513199) - (xy 59.711358 123.641348) - (xy 59.711348 123.641358) - (xy 59.583199 123.797508) - (xy 59.487979 123.975653) - (xy 59.487977 123.975658) - (xy 59.429337 124.168966) - (xy 59.429336 124.168971) - (xy 59.409538 124.369996) - (xy 59.409538 124.370003) - (xy 56.3855 124.370003) - (xy 56.3855 123.797126) - (xy 56.379091 123.737516) - (xy 56.379089 123.73751) - (xy 56.328797 123.60267) - (xy 56.242548 123.487455) - (xy 56.242547 123.487453) - (xy 56.14974 123.417979) - (xy 56.127329 123.401202) - (xy 55.992489 123.35091) - (xy 55.992484 123.350909) - (xy 55.992482 123.350908) - (xy 55.992478 123.350908) - (xy 55.96125 123.34755) - (xy 55.932874 123.3445) - (xy 54.787126 123.3445) - (xy 54.762635 123.347133) - (xy 54.727521 123.350908) - (xy 54.72751 123.35091) - (xy 54.59267 123.401202) - (xy 54.477455 123.487451) - (xy 54.477451 123.487455) - (xy 54.391202 123.60267) - (xy 54.34091 123.73751) - (xy 54.340908 123.737521) - (xy 54.3345 123.797128) - (xy 54.3345 124.942871) - (xy 50.0755 124.942871) - (xy 50.0755 121.830003) - (xy 54.329538 121.830003) - (xy 54.349336 122.031028) - (xy 54.349337 122.031033) - (xy 54.407977 122.224341) - (xy 54.407979 122.224346) - (xy 54.503199 122.402491) - (xy 54.59335 122.51234) - (xy 54.631353 122.558647) - (xy 54.666296 122.587324) - (xy 54.787508 122.6868) - (xy 54.963928 122.781098) - (xy 54.965659 122.782023) - (xy 55.100327 122.822873) - (xy 55.158966 122.840662) - (xy 55.158971 122.840663) - (xy 55.359997 122.860462) - (xy 55.36 122.860462) - (xy 55.360003 122.860462) - (xy 55.561028 122.840663) - (xy 55.561033 122.840662) - (xy 55.754341 122.782023) - (xy 55.834925 122.738949) - (xy 55.932491 122.6868) - (xy 55.932492 122.686798) - (xy 55.932494 122.686798) - (xy 56.088647 122.558647) - (xy 56.216798 122.402494) - (xy 56.312023 122.224341) - (xy 56.370662 122.031033) - (xy 56.370663 122.031028) - (xy 56.390462 121.830003) - (xy 59.409538 121.830003) - (xy 59.429336 122.031028) - (xy 59.429337 122.031033) - (xy 59.487977 122.224341) - (xy 59.487979 122.224346) - (xy 59.583199 122.402491) - (xy 59.67335 122.51234) - (xy 59.711353 122.558647) - (xy 59.746296 122.587324) - (xy 59.867508 122.6868) - (xy 60.043928 122.781098) - (xy 60.045659 122.782023) - (xy 60.180327 122.822873) - (xy 60.238966 122.840662) - (xy 60.238971 122.840663) - (xy 60.439997 122.860462) - (xy 60.44 122.860462) - (xy 60.440003 122.860462) - (xy 60.641028 122.840663) - (xy 60.641033 122.840662) - (xy 60.834341 122.782023) - (xy 60.914925 122.738949) - (xy 61.012491 122.6868) - (xy 61.012492 122.686798) - (xy 61.012494 122.686798) - (xy 61.168647 122.558647) - (xy 61.296798 122.402494) - (xy 61.392023 122.224341) - (xy 61.450662 122.031033) - (xy 61.450663 122.031028) - (xy 61.453719 122) - (xy 120.344518 122) - (xy 120.364421 122.278288) - (xy 120.364421 122.278291) - (xy 120.364422 122.278294) - (xy 120.39144 122.402494) - (xy 120.42373 122.550927) - (xy 120.521231 122.812338) - (xy 120.521232 122.81234) - (xy 120.654944 123.057213) - (xy 120.654943 123.057213) - (xy 120.82214 123.280562) - (xy 120.822142 123.280564) - (xy 120.822145 123.280568) - (xy 121.019432 123.477855) - (xy 121.019435 123.477857) - (xy 121.019437 123.477859) - (xy 121.242786 123.645056) - (xy 121.412103 123.73751) - (xy 121.487663 123.778769) - (xy 121.749072 123.876269) - (xy 121.749077 123.876271) - (xy 122.021706 123.935578) - (xy 122.152104 123.944904) - (xy 122.23034 123.9505) - (xy 122.230343 123.9505) - (xy 122.36966 123.9505) - (xy 122.439202 123.945526) - (xy 122.578294 123.935578) - (xy 122.850923 123.876271) - (xy 123.112337 123.778769) - (xy 123.357213 123.645056) - (xy 123.580568 123.477855) - (xy 123.777855 123.280568) - (xy 123.945056 123.057213) - (xy 124.078769 122.812337) - (xy 124.176271 122.550923) - (xy 124.235578 122.278294) - (xy 124.255482 122) - (xy 124.249832 121.921) - (xy 129.636426 121.921) - (xy 129.685272 122.113884) - (xy 129.685273 122.113887) - (xy 129.776578 122.322044) - (xy 129.900904 122.51234) - (xy 130.054857 122.679578) - (xy 130.234231 122.81919) - (xy 130.234234 122.819192) - (xy 130.434141 122.927377) - (xy 130.649139 123.001187) - (xy 130.649137 123.001187) - (xy 130.733 123.015179) - (xy 130.733 122.10947) - (xy 130.842408 122.159435) - (xy 130.950666 122.175) - (xy 131.023334 122.175) - (xy 131.131592 122.159435) - (xy 131.241 122.10947) - (xy 131.241 123.015179) - (xy 131.324861 123.001187) - (xy 131.539858 122.927377) - (xy 131.739765 122.819192) - (xy 131.739768 122.81919) - (xy 131.919142 122.679578) - (xy 132.073095 122.51234) - (xy 132.197421 122.322044) - (xy 132.288726 122.113887) - (xy 132.288727 122.113885) - (xy 132.296148 122.084583) - (xy 132.328762 122.032814) - (xy 132.385576 122.010102) - (xy 132.444889 122.025122) - (xy 132.480368 122.067721) - (xy 132.481642 122.067087) - (xy 132.483681 122.071183) - (xy 132.483682 122.071184) - (xy 132.575715 122.256011) - (xy 132.700143 122.42078) - (xy 132.852728 122.55988) - (xy 133.028275 122.668574) - (xy 133.220806 122.743161) - (xy 133.423763 122.7811) - (xy 133.630237 122.7811) - (xy 133.833194 122.743161) - (xy 134.025725 122.668574) - (xy 134.201272 122.55988) - (xy 134.353857 122.42078) - (xy 134.478285 122.256011) - (xy 134.570318 122.071184) - (xy 134.570318 122.071183) - (xy 134.572358 122.067087) - (xy 134.57388 122.067844) - (xy 134.608178 122.025717) - (xy 134.667319 122.010036) - (xy 134.724383 122.032111) - (xy 134.757573 122.083513) - (xy 134.75785 122.084581) - (xy 134.765269 122.113878) - (xy 134.765273 122.113887) - (xy 134.856578 122.322044) - (xy 134.980904 122.51234) - (xy 135.134857 122.679578) - (xy 135.314231 122.81919) - (xy 135.314234 122.819192) - (xy 135.514141 122.927377) - (xy 135.729139 123.001187) - (xy 135.729137 123.001187) - (xy 135.813 123.015179) - (xy 135.813 122.10947) - (xy 135.922408 122.159435) - (xy 136.030666 122.175) - (xy 136.103334 122.175) - (xy 136.211592 122.159435) - (xy 136.321 122.10947) - (xy 136.321 123.015179) - (xy 136.404861 123.001187) - (xy 136.619858 122.927377) - (xy 136.819765 122.819192) - (xy 136.819768 122.81919) - (xy 136.999142 122.679578) - (xy 137.153095 122.51234) - (xy 137.277421 122.322044) - (xy 137.368726 122.113887) - (xy 137.368727 122.113885) - (xy 137.376148 122.084583) - (xy 137.408762 122.032814) - (xy 137.465576 122.010102) - (xy 137.524889 122.025122) - (xy 137.560368 122.067721) - (xy 137.561642 122.067087) - (xy 137.563681 122.071183) - (xy 137.563682 122.071184) - (xy 137.655715 122.256011) - (xy 137.780143 122.42078) - (xy 137.932728 122.55988) - (xy 138.108275 122.668574) - (xy 138.300806 122.743161) - (xy 138.503763 122.7811) - (xy 138.710237 122.7811) - (xy 138.913194 122.743161) - (xy 139.105725 122.668574) - (xy 139.281272 122.55988) - (xy 139.433857 122.42078) - (xy 139.558285 122.256011) - (xy 139.650318 122.071184) - (xy 139.706822 121.872592) - (xy 139.725873 121.667) - (xy 140.028127 121.667) - (xy 140.047178 121.872593) - (xy 140.084308 122.00309) - (xy 140.103682 122.071184) - (xy 140.195715 122.256011) - (xy 140.320143 122.42078) - (xy 140.472728 122.55988) - (xy 140.648275 122.668574) - (xy 140.840806 122.743161) - (xy 141.043763 122.7811) - (xy 141.250237 122.7811) - (xy 141.453194 122.743161) - (xy 141.645725 122.668574) - (xy 141.821272 122.55988) - (xy 141.973857 122.42078) - (xy 142.098285 122.256011) - (xy 142.190318 122.071184) - (xy 142.246822 121.872592) - (xy 142.265873 121.667) - (xy 142.568127 121.667) - (xy 142.587178 121.872593) - (xy 142.624308 122.00309) - (xy 142.643682 122.071184) - (xy 142.735715 122.256011) - (xy 142.860143 122.42078) - (xy 143.012728 122.55988) - (xy 143.188275 122.668574) - (xy 143.380806 122.743161) - (xy 143.583763 122.7811) - (xy 143.790237 122.7811) - (xy 143.993194 122.743161) - (xy 144.185725 122.668574) - (xy 144.361272 122.55988) - (xy 144.513857 122.42078) - (xy 144.638285 122.256011) - (xy 144.730318 122.071184) - (xy 144.786822 121.872592) - (xy 144.805873 121.667) - (xy 145.108127 121.667) - (xy 145.127178 121.872593) - (xy 145.164308 122.00309) - (xy 145.183682 122.071184) - (xy 145.275715 122.256011) - (xy 145.400143 122.42078) - (xy 145.552728 122.55988) - (xy 145.728275 122.668574) - (xy 145.920806 122.743161) - (xy 146.123763 122.7811) - (xy 146.330237 122.7811) - (xy 146.533194 122.743161) - (xy 146.725725 122.668574) - (xy 146.901272 122.55988) - (xy 147.053857 122.42078) - (xy 147.178285 122.256011) - (xy 147.270318 122.071184) - (xy 147.326822 121.872592) - (xy 147.345873 121.667) - (xy 147.326822 121.461408) - (xy 147.270318 121.262816) - (xy 147.178285 121.077989) - (xy 147.053857 120.91322) - (xy 146.901272 120.77412) - (xy 146.725725 120.665426) - (xy 146.533194 120.590839) - (xy 146.533193 120.590838) - (xy 146.533191 120.590838) - (xy 146.330237 120.5529) - (xy 146.123763 120.5529) - (xy 145.920808 120.590838) - (xy 145.915269 120.592984) - (xy 145.728275 120.665426) - (xy 145.552728 120.77412) - (xy 145.400144 120.913219) - (xy 145.275716 121.077987) - (xy 145.275711 121.077996) - (xy 145.183682 121.262815) - (xy 145.127178 121.461406) - (xy 145.108127 121.667) - (xy 144.805873 121.667) - (xy 144.786822 121.461408) - (xy 144.730318 121.262816) - (xy 144.638285 121.077989) - (xy 144.513857 120.91322) - (xy 144.361272 120.77412) - (xy 144.185725 120.665426) - (xy 143.993194 120.590839) - (xy 143.993193 120.590838) - (xy 143.993191 120.590838) - (xy 143.790237 120.5529) - (xy 143.583763 120.5529) - (xy 143.380808 120.590838) - (xy 143.375269 120.592984) - (xy 143.188275 120.665426) - (xy 143.012728 120.77412) - (xy 142.860144 120.913219) - (xy 142.735716 121.077987) - (xy 142.735711 121.077996) - (xy 142.643682 121.262815) - (xy 142.587178 121.461406) - (xy 142.568127 121.667) - (xy 142.265873 121.667) - (xy 142.246822 121.461408) - (xy 142.190318 121.262816) - (xy 142.098285 121.077989) - (xy 141.973857 120.91322) - (xy 141.821272 120.77412) - (xy 141.645725 120.665426) - (xy 141.453194 120.590839) - (xy 141.453193 120.590838) - (xy 141.453191 120.590838) - (xy 141.250237 120.5529) - (xy 141.043763 120.5529) - (xy 140.840808 120.590838) - (xy 140.835269 120.592984) - (xy 140.648275 120.665426) - (xy 140.472728 120.77412) - (xy 140.320144 120.913219) - (xy 140.195716 121.077987) - (xy 140.195711 121.077996) - (xy 140.103682 121.262815) - (xy 140.047178 121.461406) - (xy 140.028127 121.667) - (xy 139.725873 121.667) - (xy 139.706822 121.461408) - (xy 139.650318 121.262816) - (xy 139.558285 121.077989) - (xy 139.433857 120.91322) - (xy 139.281272 120.77412) - (xy 139.105725 120.665426) - (xy 138.913194 120.590839) - (xy 138.913193 120.590838) - (xy 138.913191 120.590838) - (xy 138.710237 120.5529) - (xy 138.503763 120.5529) - (xy 138.300808 120.590838) - (xy 138.295269 120.592984) - (xy 138.108275 120.665426) - (xy 137.932728 120.77412) - (xy 137.780144 120.913219) - (xy 137.655716 121.077987) - (xy 137.655711 121.077996) - (xy 137.615376 121.159) - (xy 137.563683 121.262815) - (xy 137.561642 121.266913) - (xy 137.560129 121.266159) - (xy 137.525778 121.30831) - (xy 137.466629 121.323961) - (xy 137.409576 121.301855) - (xy 137.376413 121.250437) - (xy 137.376148 121.249416) - (xy 137.368727 121.220115) - (xy 137.368726 121.220112) - (xy 137.277421 121.011955) - (xy 137.153095 120.821659) - (xy 136.999142 120.654421) - (xy 136.819768 120.514809) - (xy 136.819765 120.514807) - (xy 136.762964 120.484068) - (xy 136.720786 120.439744) - (xy 136.712716 120.379093) - (xy 136.741837 120.325282) - (xy 136.762964 120.309932) - (xy 136.819765 120.279192) - (xy 136.819768 120.27919) - (xy 136.999142 120.139578) - (xy 137.153095 119.97234) - (xy 137.277421 119.782044) - (xy 137.368726 119.573887) - (xy 137.368727 119.573885) - (xy 137.376148 119.544583) - (xy 137.408762 119.492814) - (xy 137.465576 119.470102) - (xy 137.524889 119.485122) - (xy 137.560368 119.527721) - (xy 137.561642 119.527087) - (xy 137.563681 119.531183) - (xy 137.563682 119.531184) - (xy 137.655715 119.716011) - (xy 137.780143 119.88078) - (xy 137.932728 120.01988) - (xy 138.108275 120.128574) - (xy 138.300806 120.203161) - (xy 138.503763 120.2411) - (xy 138.710237 120.2411) - (xy 138.913194 120.203161) - (xy 139.105725 120.128574) - (xy 139.281272 120.01988) - (xy 139.433857 119.88078) - (xy 139.558285 119.716011) - (xy 139.650318 119.531184) - (xy 139.706822 119.332592) - (xy 139.725873 119.127) - (xy 140.028127 119.127) - (xy 140.047178 119.332593) - (xy 140.060951 119.381) - (xy 140.103682 119.531184) - (xy 140.195715 119.716011) - (xy 140.320143 119.88078) - (xy 140.472728 120.01988) - (xy 140.648275 120.128574) - (xy 140.840806 120.203161) - (xy 141.043763 120.2411) - (xy 141.250237 120.2411) - (xy 141.453194 120.203161) - (xy 141.645725 120.128574) - (xy 141.821272 120.01988) - (xy 141.973857 119.88078) - (xy 142.098285 119.716011) - (xy 142.190318 119.531184) - (xy 142.246822 119.332592) - (xy 142.265873 119.127) - (xy 142.568127 119.127) - (xy 142.587178 119.332593) - (xy 142.600951 119.381) - (xy 142.643682 119.531184) - (xy 142.735715 119.716011) - (xy 142.860143 119.88078) - (xy 143.012728 120.01988) - (xy 143.188275 120.128574) - (xy 143.380806 120.203161) - (xy 143.583763 120.2411) - (xy 143.790237 120.2411) - (xy 143.993194 120.203161) - (xy 144.185725 120.128574) - (xy 144.361272 120.01988) - (xy 144.513857 119.88078) - (xy 144.638285 119.716011) - (xy 144.730318 119.531184) - (xy 144.786822 119.332592) - (xy 144.805873 119.127) - (xy 145.108127 119.127) - (xy 145.127178 119.332593) - (xy 145.140951 119.381) - (xy 145.183682 119.531184) - (xy 145.275715 119.716011) - (xy 145.400143 119.88078) - (xy 145.552728 120.01988) - (xy 145.728275 120.128574) - (xy 145.920806 120.203161) - (xy 146.123763 120.2411) - (xy 146.330237 120.2411) - (xy 146.533194 120.203161) - (xy 146.725725 120.128574) - (xy 146.901272 120.01988) - (xy 147.053857 119.88078) - (xy 147.178285 119.716011) - (xy 147.270318 119.531184) - (xy 147.270318 119.531183) - (xy 147.272358 119.527087) - (xy 147.27388 119.527844) - (xy 147.308178 119.485717) - (xy 147.367319 119.470036) - (xy 147.424383 119.492111) - (xy 147.457573 119.543513) - (xy 147.45785 119.544581) - (xy 147.465269 119.573878) - (xy 147.465273 119.573887) - (xy 147.556578 119.782044) - (xy 147.680904 119.97234) - (xy 147.834857 120.139578) - (xy 148.014231 120.27919) - (xy 148.014234 120.279192) - (xy 148.214142 120.387378) - (xy 148.366963 120.439841) - (xy 148.415862 120.476618) - (xy 148.433804 120.535113) - (xy 148.413938 120.592984) - (xy 148.370582 120.625791) - (xy 148.26828 120.665423) - (xy 148.268277 120.665425) - (xy 148.092728 120.77412) - (xy 147.940144 120.913219) - (xy 147.815716 121.077987) - (xy 147.815711 121.077996) - (xy 147.723682 121.262815) - (xy 147.667178 121.461406) - (xy 147.648127 121.667) - (xy 147.667178 121.872593) - (xy 147.704308 122.00309) - (xy 147.723682 122.071184) - (xy 147.815715 122.256011) - (xy 147.940143 122.42078) - (xy 148.092728 122.55988) - (xy 148.268275 122.668574) - (xy 148.460806 122.743161) - (xy 148.663763 122.7811) - (xy 148.870237 122.7811) - (xy 149.073194 122.743161) - (xy 149.265725 122.668574) - (xy 149.441272 122.55988) - (xy 149.593857 122.42078) - (xy 149.718285 122.256011) - (xy 149.810318 122.071184) - (xy 149.866822 121.872592) - (xy 149.885873 121.667) - (xy 150.188127 121.667) - (xy 150.207178 121.872593) - (xy 150.244308 122.00309) - (xy 150.263682 122.071184) - (xy 150.355715 122.256011) - (xy 150.480143 122.42078) - (xy 150.632728 122.55988) - (xy 150.808275 122.668574) - (xy 151.000806 122.743161) - (xy 151.203763 122.7811) - (xy 151.410237 122.7811) - (xy 151.613194 122.743161) - (xy 151.805725 122.668574) - (xy 151.981272 122.55988) - (xy 152.133857 122.42078) - (xy 152.258285 122.256011) - (xy 152.350318 122.071184) - (xy 152.406822 121.872592) - (xy 152.425873 121.667) - (xy 152.728127 121.667) - (xy 152.747178 121.872593) - (xy 152.784308 122.00309) - (xy 152.803682 122.071184) - (xy 152.895715 122.256011) - (xy 153.020143 122.42078) - (xy 153.172728 122.55988) - (xy 153.348275 122.668574) - (xy 153.540806 122.743161) - (xy 153.743763 122.7811) - (xy 153.950237 122.7811) - (xy 154.153194 122.743161) - (xy 154.345725 122.668574) - (xy 154.521272 122.55988) - (xy 154.673857 122.42078) - (xy 154.798285 122.256011) - (xy 154.890318 122.071184) - (xy 154.946822 121.872592) - (xy 154.965873 121.667) - (xy 155.268127 121.667) - (xy 155.287178 121.872593) - (xy 155.324308 122.00309) - (xy 155.343682 122.071184) - (xy 155.435715 122.256011) - (xy 155.560143 122.42078) - (xy 155.712728 122.55988) - (xy 155.888275 122.668574) - (xy 156.080806 122.743161) - (xy 156.283763 122.7811) - (xy 156.490237 122.7811) - (xy 156.693194 122.743161) - (xy 156.885725 122.668574) - (xy 157.061272 122.55988) - (xy 157.213857 122.42078) - (xy 157.338285 122.256011) - (xy 157.430318 122.071184) - (xy 157.486822 121.872592) - (xy 157.505873 121.667) - (xy 157.808127 121.667) - (xy 157.827178 121.872593) - (xy 157.864308 122.00309) - (xy 157.883682 122.071184) - (xy 157.975715 122.256011) - (xy 158.100143 122.42078) - (xy 158.252728 122.55988) - (xy 158.428275 122.668574) - (xy 158.620806 122.743161) - (xy 158.823763 122.7811) - (xy 159.030237 122.7811) - (xy 159.233194 122.743161) - (xy 159.425725 122.668574) - (xy 159.601272 122.55988) - (xy 159.606327 122.555272) - (xy 160.3529 122.555272) - (xy 160.352901 122.555284) - (xy 160.367433 122.628336) - (xy 160.367435 122.628342) - (xy 160.422797 122.711199) - (xy 160.422799 122.711201) - (xy 160.50566 122.766566) - (xy 160.561208 122.777615) - (xy 160.578715 122.781098) - (xy 160.57872 122.781098) - (xy 160.578726 122.7811) - (xy 160.578727 122.7811) - (xy 162.355273 122.7811) - (xy 162.355274 122.7811) - (xy 162.42834 122.766566) - (xy 162.511201 122.711201) - (xy 162.566566 122.62834) - (xy 162.5811 122.555274) - (xy 162.5811 122) - (xy 204.344518 122) - (xy 204.364421 122.278288) - (xy 204.364421 122.278291) - (xy 204.364422 122.278294) - (xy 204.39144 122.402494) - (xy 204.42373 122.550927) - (xy 204.521231 122.812338) - (xy 204.521232 122.81234) - (xy 204.654944 123.057213) - (xy 204.654943 123.057213) - (xy 204.82214 123.280562) - (xy 204.822142 123.280564) - (xy 204.822145 123.280568) - (xy 205.019432 123.477855) - (xy 205.019435 123.477857) - (xy 205.019437 123.477859) - (xy 205.242786 123.645056) - (xy 205.412103 123.73751) - (xy 205.487663 123.778769) - (xy 205.749072 123.876269) - (xy 205.749077 123.876271) - (xy 206.021706 123.935578) - (xy 206.152104 123.944904) - (xy 206.23034 123.9505) - (xy 206.230343 123.9505) - (xy 206.36966 123.9505) - (xy 206.439202 123.945526) - (xy 206.578294 123.935578) - (xy 206.850923 123.876271) - (xy 207.112337 123.778769) - (xy 207.357213 123.645056) - (xy 207.580568 123.477855) - (xy 207.777855 123.280568) - (xy 207.945056 123.057213) - (xy 208.078769 122.812337) - (xy 208.176271 122.550923) - (xy 208.235578 122.278294) - (xy 208.255482 122) - (xy 208.235578 121.721706) - (xy 208.176271 121.449077) - (xy 208.078769 121.187663) - (xy 207.945056 120.942787) - (xy 207.945055 120.942786) - (xy 207.945056 120.942786) - (xy 207.777859 120.719437) - (xy 207.777857 120.719435) - (xy 207.777855 120.719432) - (xy 207.580568 120.522145) - (xy 207.580564 120.522142) - (xy 207.580562 120.52214) - (xy 207.357213 120.354943) - (xy 207.11234 120.221232) - (xy 207.112338 120.221231) - (xy 206.850926 120.12373) - (xy 206.850928 120.12373) - (xy 206.790082 120.110493) - (xy 206.578294 120.064422) - (xy 206.578291 120.064421) - (xy 206.578288 120.064421) - (xy 206.36966 120.0495) - (xy 206.369657 120.0495) - (xy 206.230343 120.0495) - (xy 206.23034 120.0495) - (xy 206.021711 120.064421) - (xy 205.749072 120.12373) - (xy 205.487661 120.221231) - (xy 205.487659 120.221232) - (xy 205.242786 120.354943) - (xy 205.019437 120.52214) - (xy 204.82214 120.719437) - (xy 204.654943 120.942786) - (xy 204.521232 121.187659) - (xy 204.521231 121.187661) - (xy 204.42373 121.449072) - (xy 204.364421 121.721711) - (xy 204.344518 122) - (xy 162.5811 122) - (xy 162.5811 120.778726) - (xy 162.566566 120.70566) - (xy 162.511201 120.622799) - (xy 162.511199 120.622797) - (xy 162.428342 120.567435) - (xy 162.42834 120.567434) - (xy 162.428337 120.567433) - (xy 162.428336 120.567433) - (xy 162.355284 120.552901) - (xy 162.355274 120.5529) - (xy 160.578726 120.5529) - (xy 160.578725 120.5529) - (xy 160.578715 120.552901) - (xy 160.505663 120.567433) - (xy 160.505657 120.567435) - (xy 160.4228 120.622797) - (xy 160.422797 120.6228) - (xy 160.367435 120.705657) - (xy 160.367433 120.705663) - (xy 160.352901 120.778715) - (xy 160.3529 120.778727) - (xy 160.3529 122.555272) - (xy 159.606327 122.555272) - (xy 159.753857 122.42078) - (xy 159.878285 122.256011) - (xy 159.970318 122.071184) - (xy 160.026822 121.872592) - (xy 160.045873 121.667) - (xy 160.026822 121.461408) - (xy 159.970318 121.262816) - (xy 159.878285 121.077989) - (xy 159.753857 120.91322) - (xy 159.601272 120.77412) - (xy 159.425725 120.665426) - (xy 159.233194 120.590839) - (xy 159.233193 120.590838) - (xy 159.233191 120.590838) - (xy 159.030237 120.5529) - (xy 158.823763 120.5529) - (xy 158.620808 120.590838) - (xy 158.615269 120.592984) - (xy 158.428275 120.665426) - (xy 158.252728 120.77412) - (xy 158.100144 120.913219) - (xy 157.975716 121.077987) - (xy 157.975711 121.077996) - (xy 157.883682 121.262815) - (xy 157.827178 121.461406) - (xy 157.808127 121.667) - (xy 157.505873 121.667) - (xy 157.486822 121.461408) - (xy 157.430318 121.262816) - (xy 157.338285 121.077989) - (xy 157.213857 120.91322) - (xy 157.061272 120.77412) - (xy 156.885725 120.665426) - (xy 156.693194 120.590839) - (xy 156.693193 120.590838) - (xy 156.693191 120.590838) - (xy 156.490237 120.5529) - (xy 156.283763 120.5529) - (xy 156.080808 120.590838) - (xy 156.075269 120.592984) - (xy 155.888275 120.665426) - (xy 155.712728 120.77412) - (xy 155.560144 120.913219) - (xy 155.435716 121.077987) - (xy 155.435711 121.077996) - (xy 155.343682 121.262815) - (xy 155.287178 121.461406) - (xy 155.268127 121.667) - (xy 154.965873 121.667) - (xy 154.946822 121.461408) - (xy 154.890318 121.262816) - (xy 154.798285 121.077989) - (xy 154.673857 120.91322) - (xy 154.521272 120.77412) - (xy 154.345725 120.665426) - (xy 154.153194 120.590839) - (xy 154.153193 120.590838) - (xy 154.153191 120.590838) - (xy 153.950237 120.5529) - (xy 153.743763 120.5529) - (xy 153.540808 120.590838) - (xy 153.535269 120.592984) - (xy 153.348275 120.665426) - (xy 153.172728 120.77412) - (xy 153.020144 120.913219) - (xy 152.895716 121.077987) - (xy 152.895711 121.077996) - (xy 152.803682 121.262815) - (xy 152.747178 121.461406) - (xy 152.728127 121.667) - (xy 152.425873 121.667) - (xy 152.406822 121.461408) - (xy 152.350318 121.262816) - (xy 152.258285 121.077989) - (xy 152.133857 120.91322) - (xy 151.981272 120.77412) - (xy 151.805725 120.665426) - (xy 151.613194 120.590839) - (xy 151.613193 120.590838) - (xy 151.613191 120.590838) - (xy 151.410237 120.5529) - (xy 151.203763 120.5529) - (xy 151.000808 120.590838) - (xy 150.995269 120.592984) - (xy 150.808275 120.665426) - (xy 150.632728 120.77412) - (xy 150.480144 120.913219) - (xy 150.355716 121.077987) - (xy 150.355711 121.077996) - (xy 150.263682 121.262815) - (xy 150.207178 121.461406) - (xy 150.188127 121.667) - (xy 149.885873 121.667) - (xy 149.866822 121.461408) - (xy 149.810318 121.262816) - (xy 149.718285 121.077989) - (xy 149.593857 120.91322) - (xy 149.441272 120.77412) - (xy 149.265725 120.665426) - (xy 149.163418 120.625792) - (xy 149.115987 120.58714) - (xy 149.100333 120.527991) - (xy 149.122436 120.470937) - (xy 149.167036 120.439841) - (xy 149.319857 120.387378) - (xy 149.519765 120.279192) - (xy 149.519768 120.27919) - (xy 149.699142 120.139578) - (xy 149.853095 119.97234) - (xy 149.977421 119.782044) - (xy 150.068726 119.573887) - (xy 150.068727 119.573885) - (xy 150.076148 119.544583) - (xy 150.108762 119.492814) - (xy 150.165576 119.470102) - (xy 150.224889 119.485122) - (xy 150.260368 119.527721) - (xy 150.261642 119.527087) - (xy 150.263681 119.531183) - (xy 150.263682 119.531184) - (xy 150.355715 119.716011) - (xy 150.480143 119.88078) - (xy 150.632728 120.01988) - (xy 150.808275 120.128574) - (xy 151.000806 120.203161) - (xy 151.203763 120.2411) - (xy 151.410237 120.2411) - (xy 151.613194 120.203161) - (xy 151.805725 120.128574) - (xy 151.981272 120.01988) - (xy 152.133857 119.88078) - (xy 152.258285 119.716011) - (xy 152.350318 119.531184) - (xy 152.406822 119.332592) - (xy 152.425873 119.127) - (xy 152.728127 119.127) - (xy 152.747178 119.332593) - (xy 152.760951 119.381) - (xy 152.803682 119.531184) - (xy 152.895715 119.716011) - (xy 153.020143 119.88078) - (xy 153.172728 120.01988) - (xy 153.348275 120.128574) - (xy 153.540806 120.203161) - (xy 153.743763 120.2411) - (xy 153.950237 120.2411) - (xy 154.153194 120.203161) - (xy 154.345725 120.128574) - (xy 154.521272 120.01988) - (xy 154.673857 119.88078) - (xy 154.798285 119.716011) - (xy 154.890318 119.531184) - (xy 154.946822 119.332592) - (xy 154.965873 119.127) - (xy 155.268127 119.127) - (xy 155.287178 119.332593) - (xy 155.300951 119.381) - (xy 155.343682 119.531184) - (xy 155.435715 119.716011) - (xy 155.560143 119.88078) - (xy 155.712728 120.01988) - (xy 155.888275 120.128574) - (xy 156.080806 120.203161) - (xy 156.283763 120.2411) - (xy 156.490237 120.2411) - (xy 156.693194 120.203161) - (xy 156.885725 120.128574) - (xy 157.061272 120.01988) - (xy 157.213857 119.88078) - (xy 157.338285 119.716011) - (xy 157.430318 119.531184) - (xy 157.486822 119.332592) - (xy 157.505873 119.127) - (xy 157.808127 119.127) - (xy 157.827178 119.332593) - (xy 157.840951 119.381) - (xy 157.883682 119.531184) - (xy 157.975715 119.716011) - (xy 158.100143 119.88078) - (xy 158.252728 120.01988) - (xy 158.428275 120.128574) - (xy 158.620806 120.203161) - (xy 158.823763 120.2411) - (xy 159.030237 120.2411) - (xy 159.233194 120.203161) - (xy 159.425725 120.128574) - (xy 159.601272 120.01988) - (xy 159.753857 119.88078) - (xy 159.878285 119.716011) - (xy 159.970318 119.531184) - (xy 160.026822 119.332592) - (xy 160.045873 119.127) - (xy 160.348127 119.127) - (xy 160.367178 119.332593) - (xy 160.380951 119.381) - (xy 160.423682 119.531184) - (xy 160.515715 119.716011) - (xy 160.640143 119.88078) - (xy 160.792728 120.01988) - (xy 160.968275 120.128574) - (xy 161.160806 120.203161) - (xy 161.363763 120.2411) - (xy 161.570237 120.2411) - (xy 161.773194 120.203161) - (xy 161.965725 120.128574) - (xy 162.141272 120.01988) - (xy 162.293857 119.88078) - (xy 162.418285 119.716011) - (xy 162.510318 119.531184) - (xy 162.566822 119.332592) - (xy 162.585873 119.127) - (xy 162.566822 118.921408) - (xy 162.510318 118.722816) - (xy 162.418285 118.537989) - (xy 162.293857 118.37322) - (xy 162.141272 118.23412) - (xy 161.965725 118.125426) - (xy 161.773194 118.050839) - (xy 161.773193 118.050838) - (xy 161.773191 118.050838) - (xy 161.570237 118.0129) - (xy 161.363763 118.0129) - (xy 161.160808 118.050838) - (xy 161.090031 118.078257) - (xy 160.968275 118.125426) - (xy 160.792728 118.23412) - (xy 160.640144 118.373219) - (xy 160.515716 118.537987) - (xy 160.515711 118.537996) - (xy 160.423682 118.722815) - (xy 160.367178 118.921406) - (xy 160.348127 119.127) - (xy 160.045873 119.127) - (xy 160.026822 118.921408) - (xy 159.970318 118.722816) - (xy 159.878285 118.537989) - (xy 159.753857 118.37322) - (xy 159.601272 118.23412) - (xy 159.425725 118.125426) - (xy 159.233194 118.050839) - (xy 159.233193 118.050838) - (xy 159.233191 118.050838) - (xy 159.030237 118.0129) - (xy 158.823763 118.0129) - (xy 158.620808 118.050838) - (xy 158.550031 118.078257) - (xy 158.428275 118.125426) - (xy 158.252728 118.23412) - (xy 158.100144 118.373219) - (xy 157.975716 118.537987) - (xy 157.975711 118.537996) - (xy 157.883682 118.722815) - (xy 157.827178 118.921406) - (xy 157.808127 119.127) - (xy 157.505873 119.127) - (xy 157.486822 118.921408) - (xy 157.430318 118.722816) - (xy 157.338285 118.537989) - (xy 157.213857 118.37322) - (xy 157.061272 118.23412) - (xy 156.885725 118.125426) - (xy 156.693194 118.050839) - (xy 156.693193 118.050838) - (xy 156.693191 118.050838) - (xy 156.490237 118.0129) - (xy 156.283763 118.0129) - (xy 156.080808 118.050838) - (xy 156.010031 118.078257) - (xy 155.888275 118.125426) - (xy 155.712728 118.23412) - (xy 155.560144 118.373219) - (xy 155.435716 118.537987) - (xy 155.435711 118.537996) - (xy 155.343682 118.722815) - (xy 155.287178 118.921406) - (xy 155.268127 119.127) - (xy 154.965873 119.127) - (xy 154.946822 118.921408) - (xy 154.890318 118.722816) - (xy 154.798285 118.537989) - (xy 154.673857 118.37322) - (xy 154.521272 118.23412) - (xy 154.345725 118.125426) - (xy 154.153194 118.050839) - (xy 154.153193 118.050838) - (xy 154.153191 118.050838) - (xy 153.950237 118.0129) - (xy 153.743763 118.0129) - (xy 153.540808 118.050838) - (xy 153.470031 118.078257) - (xy 153.348275 118.125426) - (xy 153.172728 118.23412) - (xy 153.020144 118.373219) - (xy 152.895716 118.537987) - (xy 152.895711 118.537996) - (xy 152.803682 118.722815) - (xy 152.747178 118.921406) - (xy 152.728127 119.127) - (xy 152.425873 119.127) - (xy 152.406822 118.921408) - (xy 152.350318 118.722816) - (xy 152.258285 118.537989) - (xy 152.133857 118.37322) - (xy 151.981272 118.23412) - (xy 151.805725 118.125426) - (xy 151.613194 118.050839) - (xy 151.613193 118.050838) - (xy 151.613191 118.050838) - (xy 151.410237 118.0129) - (xy 151.203763 118.0129) - (xy 151.000808 118.050838) - (xy 150.930031 118.078257) - (xy 150.808275 118.125426) - (xy 150.632728 118.23412) - (xy 150.480144 118.373219) - (xy 150.355716 118.537987) - (xy 150.355711 118.537996) - (xy 150.315376 118.619) - (xy 150.263683 118.722815) - (xy 150.261642 118.726913) - (xy 150.260129 118.726159) - (xy 150.225778 118.76831) - (xy 150.166629 118.783961) - (xy 150.109576 118.761855) - (xy 150.076413 118.710437) - (xy 150.076148 118.709416) - (xy 150.068727 118.680115) - (xy 150.068726 118.680112) - (xy 149.977421 118.471955) - (xy 149.853095 118.281659) - (xy 149.699142 118.114421) - (xy 149.519768 117.974809) - (xy 149.519765 117.974807) - (xy 149.319857 117.866621) - (xy 149.104858 117.792812) - (xy 149.021 117.778818) - (xy 149.021 118.684529) - (xy 148.911592 118.634565) - (xy 148.803334 118.619) - (xy 148.730666 118.619) - (xy 148.622408 118.634565) - (xy 148.513 118.684529) - (xy 148.513 117.778818) - (xy 148.512999 117.778818) - (xy 148.429141 117.792812) - (xy 148.214142 117.866621) - (xy 148.014234 117.974807) - (xy 148.014231 117.974809) - (xy 147.834857 118.114421) - (xy 147.680904 118.281659) - (xy 147.556578 118.471955) - (xy 147.465273 118.680112) - (xy 147.46527 118.680119) - (xy 147.45785 118.709419) - (xy 147.425234 118.761187) - (xy 147.36842 118.783897) - (xy 147.309107 118.768875) - (xy 147.273632 118.726278) - (xy 147.272358 118.726913) - (xy 147.270318 118.722816) - (xy 147.178285 118.537989) - (xy 147.053857 118.37322) - (xy 146.901272 118.23412) - (xy 146.725725 118.125426) - (xy 146.533194 118.050839) - (xy 146.533193 118.050838) - (xy 146.533191 118.050838) - (xy 146.330237 118.0129) - (xy 146.123763 118.0129) - (xy 145.920808 118.050838) - (xy 145.850031 118.078257) - (xy 145.728275 118.125426) - (xy 145.552728 118.23412) - (xy 145.400144 118.373219) - (xy 145.275716 118.537987) - (xy 145.275711 118.537996) - (xy 145.183682 118.722815) - (xy 145.127178 118.921406) - (xy 145.108127 119.127) - (xy 144.805873 119.127) - (xy 144.786822 118.921408) - (xy 144.730318 118.722816) - (xy 144.638285 118.537989) - (xy 144.513857 118.37322) - (xy 144.361272 118.23412) - (xy 144.185725 118.125426) - (xy 143.993194 118.050839) - (xy 143.993193 118.050838) - (xy 143.993191 118.050838) - (xy 143.790237 118.0129) - (xy 143.583763 118.0129) - (xy 143.380808 118.050838) - (xy 143.310031 118.078257) - (xy 143.188275 118.125426) - (xy 143.012728 118.23412) - (xy 142.860144 118.373219) - (xy 142.735716 118.537987) - (xy 142.735711 118.537996) - (xy 142.643682 118.722815) - (xy 142.587178 118.921406) - (xy 142.568127 119.127) - (xy 142.265873 119.127) - (xy 142.246822 118.921408) - (xy 142.190318 118.722816) - (xy 142.098285 118.537989) - (xy 141.973857 118.37322) - (xy 141.821272 118.23412) - (xy 141.645725 118.125426) - (xy 141.453194 118.050839) - (xy 141.453193 118.050838) - (xy 141.453191 118.050838) - (xy 141.250237 118.0129) - (xy 141.043763 118.0129) - (xy 140.840808 118.050838) - (xy 140.770031 118.078257) - (xy 140.648275 118.125426) - (xy 140.472728 118.23412) - (xy 140.320144 118.373219) - (xy 140.195716 118.537987) - (xy 140.195711 118.537996) - (xy 140.103682 118.722815) - (xy 140.047178 118.921406) - (xy 140.028127 119.127) - (xy 139.725873 119.127) - (xy 139.706822 118.921408) - (xy 139.650318 118.722816) - (xy 139.558285 118.537989) - (xy 139.433857 118.37322) - (xy 139.281272 118.23412) - (xy 139.105725 118.125426) - (xy 138.913194 118.050839) - (xy 138.913193 118.050838) - (xy 138.913191 118.050838) - (xy 138.710237 118.0129) - (xy 138.503763 118.0129) - (xy 138.300808 118.050838) - (xy 138.230031 118.078257) - (xy 138.108275 118.125426) - (xy 137.932728 118.23412) - (xy 137.780144 118.373219) - (xy 137.655716 118.537987) - (xy 137.655711 118.537996) - (xy 137.615376 118.619) - (xy 137.563683 118.722815) - (xy 137.561642 118.726913) - (xy 137.560129 118.726159) - (xy 137.525778 118.76831) - (xy 137.466629 118.783961) - (xy 137.409576 118.761855) - (xy 137.376413 118.710437) - (xy 137.376148 118.709416) - (xy 137.368727 118.680115) - (xy 137.368726 118.680112) - (xy 137.277421 118.471955) - (xy 137.153095 118.281659) - (xy 136.999142 118.114421) - (xy 136.819768 117.974809) - (xy 136.819765 117.974807) - (xy 136.619857 117.866621) - (xy 136.404858 117.792812) - (xy 136.321 117.778818) - (xy 136.321 118.684529) - (xy 136.211592 118.634565) - (xy 136.103334 118.619) - (xy 136.030666 118.619) - (xy 135.922408 118.634565) - (xy 135.813 118.684529) - (xy 135.813 117.778818) - (xy 135.729141 117.792812) - (xy 135.514142 117.866621) - (xy 135.314234 117.974807) - (xy 135.314231 117.974809) - (xy 135.134857 118.114421) - (xy 134.980904 118.281659) - (xy 134.856578 118.471955) - (xy 134.765273 118.680112) - (xy 134.76527 118.680119) - (xy 134.75785 118.709419) - (xy 134.725234 118.761187) - (xy 134.66842 118.783897) - (xy 134.609107 118.768875) - (xy 134.573632 118.726278) - (xy 134.572358 118.726913) - (xy 134.570318 118.722816) - (xy 134.478285 118.537989) - (xy 134.353857 118.37322) - (xy 134.201272 118.23412) - (xy 134.025725 118.125426) - (xy 133.833194 118.050839) - (xy 133.833193 118.050838) - (xy 133.833191 118.050838) - (xy 133.630237 118.0129) - (xy 133.423763 118.0129) - (xy 133.220808 118.050838) - (xy 133.150031 118.078257) - (xy 133.028275 118.125426) - (xy 132.852728 118.23412) - (xy 132.700144 118.373219) - (xy 132.575716 118.537987) - (xy 132.575711 118.537996) - (xy 132.535376 118.619) - (xy 132.483683 118.722815) - (xy 132.481642 118.726913) - (xy 132.480129 118.726159) - (xy 132.445778 118.76831) - (xy 132.386629 118.783961) - (xy 132.329576 118.761855) - (xy 132.296413 118.710437) - (xy 132.296148 118.709416) - (xy 132.288727 118.680115) - (xy 132.288726 118.680112) - (xy 132.197421 118.471955) - (xy 132.073095 118.281659) - (xy 131.919142 118.114421) - (xy 131.739768 117.974809) - (xy 131.739765 117.974807) - (xy 131.539857 117.866621) - (xy 131.324858 117.792812) - (xy 131.241 117.778818) - (xy 131.241 118.684529) - (xy 131.131592 118.634565) - (xy 131.023334 118.619) - (xy 130.950666 118.619) - (xy 130.842408 118.634565) - (xy 130.733 118.684529) - (xy 130.733 117.778818) - (xy 130.732999 117.778818) - (xy 130.649141 117.792812) - (xy 130.434142 117.866621) - (xy 130.234234 117.974807) - (xy 130.234231 117.974809) - (xy 130.054857 118.114421) - (xy 129.900904 118.281659) - (xy 129.776578 118.471955) - (xy 129.685273 118.680112) - (xy 129.685272 118.680115) - (xy 129.636426 118.873) - (xy 130.546375 118.873) - (xy 130.520155 118.913799) - (xy 130.479 119.053961) - (xy 130.479 119.200039) - (xy 130.520155 119.340201) - (xy 130.546375 119.381) - (xy 129.636426 119.381) - (xy 129.685272 119.573884) - (xy 129.685273 119.573887) - (xy 129.776578 119.782044) - (xy 129.900904 119.97234) - (xy 130.054857 120.139578) - (xy 130.234231 120.27919) - (xy 130.234234 120.279192) - (xy 130.291035 120.309932) - (xy 130.333213 120.354257) - (xy 130.341283 120.414908) - (xy 130.312161 120.468719) - (xy 130.291035 120.484068) - (xy 130.234234 120.514807) - (xy 130.234231 120.514809) - (xy 130.054857 120.654421) - (xy 129.900904 120.821659) - (xy 129.776578 121.011955) - (xy 129.685273 121.220112) - (xy 129.685272 121.220115) - (xy 129.636426 121.413) - (xy 130.546375 121.413) - (xy 130.520155 121.453799) - (xy 130.479 121.593961) - (xy 130.479 121.740039) - (xy 130.520155 121.880201) - (xy 130.546375 121.921) - (xy 129.636426 121.921) - (xy 124.249832 121.921) - (xy 124.235578 121.721706) - (xy 124.176271 121.449077) - (xy 124.078769 121.187663) - (xy 123.945056 120.942787) - (xy 123.945055 120.942786) - (xy 123.945056 120.942786) - (xy 123.777859 120.719437) - (xy 123.777857 120.719435) - (xy 123.777855 120.719432) - (xy 123.580568 120.522145) - (xy 123.580564 120.522142) - (xy 123.580562 120.52214) - (xy 123.357213 120.354943) - (xy 123.11234 120.221232) - (xy 123.112338 120.221231) - (xy 122.850926 120.12373) - (xy 122.850928 120.12373) - (xy 122.790082 120.110493) - (xy 122.578294 120.064422) - (xy 122.578291 120.064421) - (xy 122.578288 120.064421) - (xy 122.36966 120.0495) - (xy 122.369657 120.0495) - (xy 122.230343 120.0495) - (xy 122.23034 120.0495) - (xy 122.021711 120.064421) - (xy 121.749072 120.12373) - (xy 121.487661 120.221231) - (xy 121.487659 120.221232) - (xy 121.242786 120.354943) - (xy 121.019437 120.52214) - (xy 120.82214 120.719437) - (xy 120.654943 120.942786) - (xy 120.521232 121.187659) - (xy 120.521231 121.187661) - (xy 120.42373 121.449072) - (xy 120.364421 121.721711) - (xy 120.344518 122) - (xy 61.453719 122) - (xy 61.470462 121.830003) - (xy 61.470462 121.829996) - (xy 61.450663 121.628971) - (xy 61.450662 121.628966) - (xy 61.432873 121.570327) - (xy 61.392023 121.435659) - (xy 61.39202 121.435653) - (xy 61.2968 121.257508) - (xy 61.168651 121.101358) - (xy 61.168647 121.101353) - (xy 61.168641 121.101348) - (xy 61.012491 120.973199) - (xy 60.834346 120.877979) - (xy 60.834341 120.877977) - (xy 60.641033 120.819337) - (xy 60.641028 120.819336) - (xy 60.440003 120.799538) - (xy 60.439997 120.799538) - (xy 60.238971 120.819336) - (xy 60.238966 120.819337) - (xy 60.045658 120.877977) - (xy 60.045653 120.877979) - (xy 59.867508 120.973199) - (xy 59.711358 121.101348) - (xy 59.711348 121.101358) - (xy 59.583199 121.257508) - (xy 59.487979 121.435653) - (xy 59.487977 121.435658) - (xy 59.429337 121.628966) - (xy 59.429336 121.628971) - (xy 59.409538 121.829996) - (xy 59.409538 121.830003) - (xy 56.390462 121.830003) - (xy 56.390462 121.829996) - (xy 56.370663 121.628971) - (xy 56.370662 121.628966) - (xy 56.352873 121.570327) - (xy 56.312023 121.435659) - (xy 56.31202 121.435653) - (xy 56.2168 121.257508) - (xy 56.088651 121.101358) - (xy 56.088647 121.101353) - (xy 56.088641 121.101348) - (xy 55.932491 120.973199) - (xy 55.754346 120.877979) - (xy 55.754341 120.877977) - (xy 55.561033 120.819337) - (xy 55.561028 120.819336) - (xy 55.360003 120.799538) - (xy 55.359997 120.799538) - (xy 55.158971 120.819336) - (xy 55.158966 120.819337) - (xy 54.965658 120.877977) - (xy 54.965653 120.877979) - (xy 54.787508 120.973199) - (xy 54.631358 121.101348) - (xy 54.631348 121.101358) - (xy 54.503199 121.257508) - (xy 54.407979 121.435653) - (xy 54.407977 121.435658) - (xy 54.349337 121.628966) - (xy 54.349336 121.628971) - (xy 54.329538 121.829996) - (xy 54.329538 121.830003) - (xy 50.0755 121.830003) - (xy 50.0755 119.290003) - (xy 54.329538 119.290003) - (xy 54.349336 119.491028) - (xy 54.349337 119.491033) - (xy 54.407977 119.684341) - (xy 54.407979 119.684346) - (xy 54.503199 119.862491) - (xy 54.59335 119.97234) - (xy 54.631353 120.018647) - (xy 54.666296 120.047324) - (xy 54.787508 120.1468) - (xy 54.963932 120.2411) - (xy 54.965659 120.242023) - (xy 55.100327 120.282873) - (xy 55.158966 120.300662) - (xy 55.158971 120.300663) - (xy 55.359997 120.320462) - (xy 55.36 120.320462) - (xy 55.360003 120.320462) - (xy 55.561028 120.300663) - (xy 55.561033 120.300662) - (xy 55.754341 120.242023) - (xy 55.834925 120.198949) - (xy 55.932491 120.1468) - (xy 55.932492 120.146798) - (xy 55.932494 120.146798) - (xy 56.088647 120.018647) - (xy 56.216798 119.862494) - (xy 56.312023 119.684341) - (xy 56.370662 119.491033) - (xy 56.370663 119.491028) - (xy 56.390462 119.290003) - (xy 59.409538 119.290003) - (xy 59.429336 119.491028) - (xy 59.429337 119.491033) - (xy 59.487977 119.684341) - (xy 59.487979 119.684346) - (xy 59.583199 119.862491) - (xy 59.67335 119.97234) - (xy 59.711353 120.018647) - (xy 59.746296 120.047324) - (xy 59.867508 120.1468) - (xy 60.043932 120.2411) - (xy 60.045659 120.242023) - (xy 60.180327 120.282873) - (xy 60.238966 120.300662) - (xy 60.238971 120.300663) - (xy 60.439997 120.320462) - (xy 60.44 120.320462) - (xy 60.440003 120.320462) - (xy 60.641028 120.300663) - (xy 60.641033 120.300662) - (xy 60.834341 120.242023) - (xy 60.914925 120.198949) - (xy 61.012491 120.1468) - (xy 61.012492 120.146798) - (xy 61.012494 120.146798) - (xy 61.168647 120.018647) - (xy 61.296798 119.862494) - (xy 61.392023 119.684341) - (xy 61.450662 119.491033) - (xy 61.450663 119.491028) - (xy 61.470462 119.290003) - (xy 61.470462 119.289996) - (xy 61.450663 119.088971) - (xy 61.450662 119.088966) - (xy 61.432873 119.030327) - (xy 61.392023 118.895659) - (xy 61.39202 118.895653) - (xy 61.2968 118.717508) - (xy 61.168651 118.561358) - (xy 61.168647 118.561353) - (xy 61.168641 118.561348) - (xy 61.012491 118.433199) - (xy 60.834346 118.337979) - (xy 60.834341 118.337977) - (xy 60.641033 118.279337) - (xy 60.641028 118.279336) - (xy 60.440003 118.259538) - (xy 60.439997 118.259538) - (xy 60.238971 118.279336) - (xy 60.238966 118.279337) - (xy 60.045658 118.337977) - (xy 60.045653 118.337979) - (xy 59.867508 118.433199) - (xy 59.711358 118.561348) - (xy 59.711348 118.561358) - (xy 59.583199 118.717508) - (xy 59.487979 118.895653) - (xy 59.487977 118.895658) - (xy 59.429337 119.088966) - (xy 59.429336 119.088971) - (xy 59.409538 119.289996) - (xy 59.409538 119.290003) - (xy 56.390462 119.290003) - (xy 56.390462 119.289996) - (xy 56.370663 119.088971) - (xy 56.370662 119.088966) - (xy 56.352873 119.030327) - (xy 56.312023 118.895659) - (xy 56.31202 118.895653) - (xy 56.2168 118.717508) - (xy 56.088651 118.561358) - (xy 56.088647 118.561353) - (xy 56.088641 118.561348) - (xy 55.932491 118.433199) - (xy 55.754346 118.337979) - (xy 55.754341 118.337977) - (xy 55.561033 118.279337) - (xy 55.561028 118.279336) - (xy 55.360003 118.259538) - (xy 55.359997 118.259538) - (xy 55.158971 118.279336) - (xy 55.158966 118.279337) - (xy 54.965658 118.337977) - (xy 54.965653 118.337979) - (xy 54.787508 118.433199) - (xy 54.631358 118.561348) - (xy 54.631348 118.561358) - (xy 54.503199 118.717508) - (xy 54.407979 118.895653) - (xy 54.407977 118.895658) - (xy 54.349337 119.088966) - (xy 54.349336 119.088971) - (xy 54.329538 119.289996) - (xy 54.329538 119.290003) - (xy 50.0755 119.290003) - (xy 50.0755 116.750003) - (xy 54.329538 116.750003) - (xy 54.349336 116.951028) - (xy 54.349337 116.951033) - (xy 54.407977 117.144341) - (xy 54.407979 117.144346) - (xy 54.503199 117.322491) - (xy 54.631348 117.478641) - (xy 54.631353 117.478647) - (xy 54.631358 117.478651) - (xy 54.787508 117.6068) - (xy 54.965653 117.70202) - (xy 54.965659 117.702023) - (xy 55.100327 117.742873) - (xy 55.158966 117.760662) - (xy 55.158971 117.760663) - (xy 55.359997 117.780462) - (xy 55.36 117.780462) - (xy 55.360003 117.780462) - (xy 55.561028 117.760663) - (xy 55.561033 117.760662) - (xy 55.754341 117.702023) - (xy 55.834925 117.658949) - (xy 55.932491 117.6068) - (xy 55.932492 117.606798) - (xy 55.932494 117.606798) - (xy 56.088647 117.478647) - (xy 56.216798 117.322494) - (xy 56.312023 117.144341) - (xy 56.370662 116.951033) - (xy 56.370663 116.951028) - (xy 56.390462 116.750003) - (xy 59.409538 116.750003) - (xy 59.429336 116.951028) - (xy 59.429337 116.951033) - (xy 59.487977 117.144341) - (xy 59.487979 117.144346) - (xy 59.583199 117.322491) - (xy 59.711348 117.478641) - (xy 59.711353 117.478647) - (xy 59.711358 117.478651) - (xy 59.867508 117.6068) - (xy 60.045653 117.70202) - (xy 60.045659 117.702023) - (xy 60.180327 117.742873) - (xy 60.238966 117.760662) - (xy 60.238971 117.760663) - (xy 60.439997 117.780462) - (xy 60.44 117.780462) - (xy 60.440003 117.780462) - (xy 60.641028 117.760663) - (xy 60.641033 117.760662) - (xy 60.834341 117.702023) - (xy 60.914925 117.658949) - (xy 61.012491 117.6068) - (xy 61.012492 117.606798) - (xy 61.012494 117.606798) - (xy 61.168647 117.478647) - (xy 61.296798 117.322494) - (xy 61.392023 117.144341) - (xy 61.450662 116.951033) - (xy 61.450663 116.951028) - (xy 61.470462 116.750003) - (xy 61.470462 116.749996) - (xy 61.450663 116.548971) - (xy 61.450662 116.548966) - (xy 61.432873 116.490327) - (xy 61.392023 116.355659) - (xy 61.39202 116.355653) - (xy 61.2968 116.177508) - (xy 61.168651 116.021358) - (xy 61.168647 116.021353) - (xy 61.168641 116.021348) - (xy 61.012491 115.893199) - (xy 60.834346 115.797979) - (xy 60.834341 115.797977) - (xy 60.641033 115.739337) - (xy 60.641028 115.739336) - (xy 60.440003 115.719538) - (xy 60.439997 115.719538) - (xy 60.238971 115.739336) - (xy 60.238966 115.739337) - (xy 60.045658 115.797977) - (xy 60.045653 115.797979) - (xy 59.867508 115.893199) - (xy 59.711358 116.021348) - (xy 59.711348 116.021358) - (xy 59.583199 116.177508) - (xy 59.487979 116.355653) - (xy 59.487977 116.355658) - (xy 59.429337 116.548966) - (xy 59.429336 116.548971) - (xy 59.409538 116.749996) - (xy 59.409538 116.750003) - (xy 56.390462 116.750003) - (xy 56.390462 116.749996) - (xy 56.370663 116.548971) - (xy 56.370662 116.548966) - (xy 56.352873 116.490327) - (xy 56.312023 116.355659) - (xy 56.31202 116.355653) - (xy 56.2168 116.177508) - (xy 56.088651 116.021358) - (xy 56.088647 116.021353) - (xy 56.088641 116.021348) - (xy 55.932491 115.893199) - (xy 55.754346 115.797979) - (xy 55.754341 115.797977) - (xy 55.561033 115.739337) - (xy 55.561028 115.739336) - (xy 55.360003 115.719538) - (xy 55.359997 115.719538) - (xy 55.158971 115.739336) - (xy 55.158966 115.739337) - (xy 54.965658 115.797977) - (xy 54.965653 115.797979) - (xy 54.787508 115.893199) - (xy 54.631358 116.021348) - (xy 54.631348 116.021358) - (xy 54.503199 116.177508) - (xy 54.407979 116.355653) - (xy 54.407977 116.355658) - (xy 54.349337 116.548966) - (xy 54.349336 116.548971) - (xy 54.329538 116.749996) - (xy 54.329538 116.750003) - (xy 50.0755 116.750003) - (xy 50.0755 114.210003) - (xy 54.329538 114.210003) - (xy 54.349336 114.411028) - (xy 54.349337 114.411033) - (xy 54.407977 114.604341) - (xy 54.407979 114.604346) - (xy 54.503199 114.782491) - (xy 54.631348 114.938641) - (xy 54.631353 114.938647) - (xy 54.631358 114.938651) - (xy 54.787508 115.0668) - (xy 54.965653 115.16202) - (xy 54.965659 115.162023) - (xy 55.100327 115.202873) - (xy 55.158966 115.220662) - (xy 55.158971 115.220663) - (xy 55.359997 115.240462) - (xy 55.36 115.240462) - (xy 55.360003 115.240462) - (xy 55.561028 115.220663) - (xy 55.561033 115.220662) - (xy 55.754341 115.162023) - (xy 55.834925 115.118949) - (xy 55.932491 115.0668) - (xy 55.932492 115.066798) - (xy 55.932494 115.066798) - (xy 56.088647 114.938647) - (xy 56.216798 114.782494) - (xy 56.312023 114.604341) - (xy 56.370662 114.411033) - (xy 56.370663 114.411028) - (xy 56.390462 114.210003) - (xy 59.409538 114.210003) - (xy 59.429336 114.411028) - (xy 59.429337 114.411033) - (xy 59.487977 114.604341) - (xy 59.487979 114.604346) - (xy 59.583199 114.782491) - (xy 59.711348 114.938641) - (xy 59.711353 114.938647) - (xy 59.711358 114.938651) - (xy 59.867508 115.0668) - (xy 60.045653 115.16202) - (xy 60.045659 115.162023) - (xy 60.180327 115.202873) - (xy 60.238966 115.220662) - (xy 60.238971 115.220663) - (xy 60.439997 115.240462) - (xy 60.44 115.240462) - (xy 60.440003 115.240462) - (xy 60.641028 115.220663) - (xy 60.641033 115.220662) - (xy 60.834341 115.162023) - (xy 60.914925 115.118949) - (xy 61.012491 115.0668) - (xy 61.012492 115.066798) - (xy 61.012494 115.066798) - (xy 61.168647 114.938647) - (xy 61.296798 114.782494) - (xy 61.392023 114.604341) - (xy 61.450662 114.411033) - (xy 61.450663 114.411028) - (xy 61.470462 114.210003) - (xy 61.470462 114.209996) - (xy 61.450663 114.008971) - (xy 61.450662 114.008966) - (xy 61.432873 113.950327) - (xy 61.392023 113.815659) - (xy 61.39202 113.815653) - (xy 61.2968 113.637508) - (xy 61.168651 113.481358) - (xy 61.168647 113.481353) - (xy 61.168641 113.481348) - (xy 61.012491 113.353199) - (xy 60.834346 113.257979) - (xy 60.834341 113.257977) - (xy 60.641033 113.199337) - (xy 60.641028 113.199336) - (xy 60.440003 113.179538) - (xy 60.439997 113.179538) - (xy 60.238971 113.199336) - (xy 60.238966 113.199337) - (xy 60.045658 113.257977) - (xy 60.045653 113.257979) - (xy 59.867508 113.353199) - (xy 59.711358 113.481348) - (xy 59.711348 113.481358) - (xy 59.583199 113.637508) - (xy 59.487979 113.815653) - (xy 59.487977 113.815658) - (xy 59.429337 114.008966) - (xy 59.429336 114.008971) - (xy 59.409538 114.209996) - (xy 59.409538 114.210003) - (xy 56.390462 114.210003) - (xy 56.390462 114.209996) - (xy 56.370663 114.008971) - (xy 56.370662 114.008966) - (xy 56.352873 113.950327) - (xy 56.312023 113.815659) - (xy 56.31202 113.815653) - (xy 56.2168 113.637508) - (xy 56.088651 113.481358) - (xy 56.088647 113.481353) - (xy 56.088641 113.481348) - (xy 55.932491 113.353199) - (xy 55.754346 113.257979) - (xy 55.754341 113.257977) - (xy 55.561033 113.199337) - (xy 55.561028 113.199336) - (xy 55.360003 113.179538) - (xy 55.359997 113.179538) - (xy 55.158971 113.199336) - (xy 55.158966 113.199337) - (xy 54.965658 113.257977) - (xy 54.965653 113.257979) - (xy 54.787508 113.353199) - (xy 54.631358 113.481348) - (xy 54.631348 113.481358) - (xy 54.503199 113.637508) - (xy 54.407979 113.815653) - (xy 54.407977 113.815658) - (xy 54.349337 114.008966) - (xy 54.349336 114.008971) - (xy 54.329538 114.209996) - (xy 54.329538 114.210003) - (xy 50.0755 114.210003) - (xy 50.0755 111.670003) - (xy 54.329538 111.670003) - (xy 54.349336 111.871028) - (xy 54.349337 111.871033) - (xy 54.407977 112.064341) - (xy 54.407979 112.064346) - (xy 54.503199 112.242491) - (xy 54.631348 112.398641) - (xy 54.631353 112.398647) - (xy 54.631358 112.398651) - (xy 54.787508 112.5268) - (xy 54.965653 112.62202) - (xy 54.965659 112.622023) - (xy 55.100327 112.662873) - (xy 55.158966 112.680662) - (xy 55.158971 112.680663) - (xy 55.359997 112.700462) - (xy 55.36 112.700462) - (xy 55.360003 112.700462) - (xy 55.561028 112.680663) - (xy 55.561033 112.680662) - (xy 55.754341 112.622023) - (xy 55.834925 112.578949) - (xy 55.932491 112.5268) - (xy 55.932492 112.526798) - (xy 55.932494 112.526798) - (xy 56.088647 112.398647) - (xy 56.216798 112.242494) - (xy 56.312023 112.064341) - (xy 56.370662 111.871033) - (xy 56.370663 111.871028) - (xy 56.390462 111.670003) - (xy 59.409538 111.670003) - (xy 59.429336 111.871028) - (xy 59.429337 111.871033) - (xy 59.487977 112.064341) - (xy 59.487979 112.064346) - (xy 59.583199 112.242491) - (xy 59.711348 112.398641) - (xy 59.711353 112.398647) - (xy 59.711358 112.398651) - (xy 59.867508 112.5268) - (xy 60.045653 112.62202) - (xy 60.045659 112.622023) - (xy 60.180327 112.662873) - (xy 60.238966 112.680662) - (xy 60.238971 112.680663) - (xy 60.439997 112.700462) - (xy 60.44 112.700462) - (xy 60.440003 112.700462) - (xy 60.641028 112.680663) - (xy 60.641033 112.680662) - (xy 60.834341 112.622023) - (xy 60.914925 112.578949) - (xy 61.012491 112.5268) - (xy 61.012492 112.526798) - (xy 61.012494 112.526798) - (xy 61.168647 112.398647) - (xy 61.296798 112.242494) - (xy 61.392023 112.064341) - (xy 61.450662 111.871033) - (xy 61.450663 111.871028) - (xy 61.470462 111.670003) - (xy 61.470462 111.669996) - (xy 61.450663 111.468971) - (xy 61.450662 111.468966) - (xy 61.432873 111.410327) - (xy 61.392023 111.275659) - (xy 61.39202 111.275653) - (xy 61.2968 111.097508) - (xy 61.168651 110.941358) - (xy 61.168647 110.941353) - (xy 61.168641 110.941348) - (xy 61.012491 110.813199) - (xy 60.834346 110.717979) - (xy 60.834341 110.717977) - (xy 60.641033 110.659337) - (xy 60.641028 110.659336) - (xy 60.440003 110.639538) - (xy 60.439997 110.639538) - (xy 60.238971 110.659336) - (xy 60.238966 110.659337) - (xy 60.045658 110.717977) - (xy 60.045653 110.717979) - (xy 59.867508 110.813199) - (xy 59.711358 110.941348) - (xy 59.711348 110.941358) - (xy 59.583199 111.097508) - (xy 59.487979 111.275653) - (xy 59.487977 111.275658) - (xy 59.429337 111.468966) - (xy 59.429336 111.468971) - (xy 59.409538 111.669996) - (xy 59.409538 111.670003) - (xy 56.390462 111.670003) - (xy 56.390462 111.669996) - (xy 56.370663 111.468971) - (xy 56.370662 111.468966) - (xy 56.352873 111.410327) - (xy 56.312023 111.275659) - (xy 56.31202 111.275653) - (xy 56.2168 111.097508) - (xy 56.088651 110.941358) - (xy 56.088647 110.941353) - (xy 56.088641 110.941348) - (xy 55.932491 110.813199) - (xy 55.754346 110.717979) - (xy 55.754341 110.717977) - (xy 55.561033 110.659337) - (xy 55.561028 110.659336) - (xy 55.360003 110.639538) - (xy 55.359997 110.639538) - (xy 55.158971 110.659336) - (xy 55.158966 110.659337) - (xy 54.965658 110.717977) - (xy 54.965653 110.717979) - (xy 54.787508 110.813199) - (xy 54.631358 110.941348) - (xy 54.631348 110.941358) - (xy 54.503199 111.097508) - (xy 54.407979 111.275653) - (xy 54.407977 111.275658) - (xy 54.349337 111.468966) - (xy 54.349336 111.468971) - (xy 54.329538 111.669996) - (xy 54.329538 111.670003) - (xy 50.0755 111.670003) - (xy 50.0755 109.130003) - (xy 54.329538 109.130003) - (xy 54.349336 109.331028) - (xy 54.349337 109.331033) - (xy 54.407977 109.524341) - (xy 54.407979 109.524346) - (xy 54.503199 109.702491) - (xy 54.631348 109.858641) - (xy 54.631353 109.858647) - (xy 54.631358 109.858651) - (xy 54.787508 109.9868) - (xy 54.965653 110.08202) - (xy 54.965659 110.082023) - (xy 55.100327 110.122873) - (xy 55.158966 110.140662) - (xy 55.158971 110.140663) - (xy 55.359997 110.160462) - (xy 55.36 110.160462) - (xy 55.360003 110.160462) - (xy 55.561028 110.140663) - (xy 55.561033 110.140662) - (xy 55.754341 110.082023) - (xy 55.834925 110.038949) - (xy 55.932491 109.9868) - (xy 55.932492 109.986798) - (xy 55.932494 109.986798) - (xy 56.088647 109.858647) - (xy 56.216798 109.702494) - (xy 56.312023 109.524341) - (xy 56.370662 109.331033) - (xy 56.370663 109.331028) - (xy 56.390462 109.130003) - (xy 59.409538 109.130003) - (xy 59.429336 109.331028) - (xy 59.429337 109.331033) - (xy 59.487977 109.524341) - (xy 59.487979 109.524346) - (xy 59.583199 109.702491) - (xy 59.711348 109.858641) - (xy 59.711353 109.858647) - (xy 59.711358 109.858651) - (xy 59.867508 109.9868) - (xy 60.045653 110.08202) - (xy 60.045659 110.082023) - (xy 60.180327 110.122873) - (xy 60.238966 110.140662) - (xy 60.238971 110.140663) - (xy 60.439997 110.160462) - (xy 60.44 110.160462) - (xy 60.440003 110.160462) - (xy 60.641028 110.140663) - (xy 60.641033 110.140662) - (xy 60.834341 110.082023) - (xy 60.914925 110.038949) - (xy 61.012491 109.9868) - (xy 61.012492 109.986798) - (xy 61.012494 109.986798) - (xy 61.168647 109.858647) - (xy 61.296798 109.702494) - (xy 61.392023 109.524341) - (xy 61.450662 109.331033) - (xy 61.450663 109.331028) - (xy 61.470462 109.130003) - (xy 61.470462 109.129996) - (xy 61.450663 108.928971) - (xy 61.450662 108.928966) - (xy 61.432873 108.870327) - (xy 61.392023 108.735659) - (xy 61.39202 108.735653) - (xy 61.2968 108.557508) - (xy 61.168651 108.401358) - (xy 61.168647 108.401353) - (xy 61.168641 108.401348) - (xy 61.012491 108.273199) - (xy 60.834346 108.177979) - (xy 60.834341 108.177977) - (xy 60.641033 108.119337) - (xy 60.641028 108.119336) - (xy 60.440003 108.099538) - (xy 60.439997 108.099538) - (xy 60.238971 108.119336) - (xy 60.238966 108.119337) - (xy 60.045658 108.177977) - (xy 60.045653 108.177979) - (xy 59.867508 108.273199) - (xy 59.711358 108.401348) - (xy 59.711348 108.401358) - (xy 59.583199 108.557508) - (xy 59.487979 108.735653) - (xy 59.487977 108.735658) - (xy 59.429337 108.928966) - (xy 59.429336 108.928971) - (xy 59.409538 109.129996) - (xy 59.409538 109.130003) - (xy 56.390462 109.130003) - (xy 56.390462 109.129996) - (xy 56.370663 108.928971) - (xy 56.370662 108.928966) - (xy 56.352873 108.870327) - (xy 56.312023 108.735659) - (xy 56.31202 108.735653) - (xy 56.2168 108.557508) - (xy 56.088651 108.401358) - (xy 56.088647 108.401353) - (xy 56.088641 108.401348) - (xy 55.932491 108.273199) - (xy 55.754346 108.177979) - (xy 55.754341 108.177977) - (xy 55.561033 108.119337) - (xy 55.561028 108.119336) - (xy 55.360003 108.099538) - (xy 55.359997 108.099538) - (xy 55.158971 108.119336) - (xy 55.158966 108.119337) - (xy 54.965658 108.177977) - (xy 54.965653 108.177979) - (xy 54.787508 108.273199) - (xy 54.631358 108.401348) - (xy 54.631348 108.401358) - (xy 54.503199 108.557508) - (xy 54.407979 108.735653) - (xy 54.407977 108.735658) - (xy 54.349337 108.928966) - (xy 54.349336 108.928971) - (xy 54.329538 109.129996) - (xy 54.329538 109.130003) - (xy 50.0755 109.130003) - (xy 50.0755 106.590003) - (xy 54.329538 106.590003) - (xy 54.349336 106.791028) - (xy 54.349337 106.791033) - (xy 54.407977 106.984341) - (xy 54.407979 106.984346) - (xy 54.503199 107.162491) - (xy 54.631348 107.318641) - (xy 54.631353 107.318647) - (xy 54.631358 107.318651) - (xy 54.787508 107.4468) - (xy 54.965653 107.54202) - (xy 54.965659 107.542023) - (xy 55.100327 107.582873) - (xy 55.158966 107.600662) - (xy 55.158971 107.600663) - (xy 55.359997 107.620462) - (xy 55.36 107.620462) - (xy 55.360003 107.620462) - (xy 55.561028 107.600663) - (xy 55.561033 107.600662) - (xy 55.754341 107.542023) - (xy 55.834925 107.498949) - (xy 55.932491 107.4468) - (xy 55.932492 107.446798) - (xy 55.932494 107.446798) - (xy 56.088647 107.318647) - (xy 56.216798 107.162494) - (xy 56.312023 106.984341) - (xy 56.370662 106.791033) - (xy 56.370663 106.791028) - (xy 56.390462 106.590003) - (xy 59.409538 106.590003) - (xy 59.429336 106.791028) - (xy 59.429337 106.791033) - (xy 59.487977 106.984341) - (xy 59.487979 106.984346) - (xy 59.583199 107.162491) - (xy 59.711348 107.318641) - (xy 59.711353 107.318647) - (xy 59.711358 107.318651) - (xy 59.867508 107.4468) - (xy 60.045653 107.54202) - (xy 60.045659 107.542023) - (xy 60.180327 107.582873) - (xy 60.238966 107.600662) - (xy 60.238971 107.600663) - (xy 60.439997 107.620462) - (xy 60.44 107.620462) - (xy 60.440003 107.620462) - (xy 60.641028 107.600663) - (xy 60.641033 107.600662) - (xy 60.834341 107.542023) - (xy 60.914925 107.498949) - (xy 61.012491 107.4468) - (xy 61.012492 107.446798) - (xy 61.012494 107.446798) - (xy 61.168647 107.318647) - (xy 61.296798 107.162494) - (xy 61.392023 106.984341) - (xy 61.450662 106.791033) - (xy 61.450663 106.791028) - (xy 61.470462 106.590003) - (xy 61.470462 106.589996) - (xy 61.450663 106.388971) - (xy 61.450662 106.388966) - (xy 61.432873 106.330327) - (xy 61.392023 106.195659) - (xy 61.39202 106.195653) - (xy 61.2968 106.017508) - (xy 61.168651 105.861358) - (xy 61.168647 105.861353) - (xy 61.168641 105.861348) - (xy 61.012491 105.733199) - (xy 60.834346 105.637979) - (xy 60.834341 105.637977) - (xy 60.641033 105.579337) - (xy 60.641028 105.579336) - (xy 60.440003 105.559538) - (xy 60.439997 105.559538) - (xy 60.238971 105.579336) - (xy 60.238966 105.579337) - (xy 60.045658 105.637977) - (xy 60.045653 105.637979) - (xy 59.867508 105.733199) - (xy 59.711358 105.861348) - (xy 59.711348 105.861358) - (xy 59.583199 106.017508) - (xy 59.487979 106.195653) - (xy 59.487977 106.195658) - (xy 59.429337 106.388966) - (xy 59.429336 106.388971) - (xy 59.409538 106.589996) - (xy 59.409538 106.590003) - (xy 56.390462 106.590003) - (xy 56.390462 106.589996) - (xy 56.370663 106.388971) - (xy 56.370662 106.388966) - (xy 56.352873 106.330327) - (xy 56.312023 106.195659) - (xy 56.31202 106.195653) - (xy 56.2168 106.017508) - (xy 56.088651 105.861358) - (xy 56.088647 105.861353) - (xy 56.088641 105.861348) - (xy 55.932491 105.733199) - (xy 55.754346 105.637979) - (xy 55.754341 105.637977) - (xy 55.561033 105.579337) - (xy 55.561028 105.579336) - (xy 55.360003 105.559538) - (xy 55.359997 105.559538) - (xy 55.158971 105.579336) - (xy 55.158966 105.579337) - (xy 54.965658 105.637977) - (xy 54.965653 105.637979) - (xy 54.787508 105.733199) - (xy 54.631358 105.861348) - (xy 54.631348 105.861358) - (xy 54.503199 106.017508) - (xy 54.407979 106.195653) - (xy 54.407977 106.195658) - (xy 54.349337 106.388966) - (xy 54.349336 106.388971) - (xy 54.329538 106.589996) - (xy 54.329538 106.590003) - (xy 50.0755 106.590003) - (xy 50.0755 104.050003) - (xy 54.329538 104.050003) - (xy 54.349336 104.251028) - (xy 54.349337 104.251033) - (xy 54.407977 104.444341) - (xy 54.407979 104.444346) - (xy 54.503199 104.622491) - (xy 54.631348 104.778641) - (xy 54.631353 104.778647) - (xy 54.631358 104.778651) - (xy 54.787508 104.9068) - (xy 54.965653 105.00202) - (xy 54.965659 105.002023) - (xy 55.100327 105.042873) - (xy 55.158966 105.060662) - (xy 55.158971 105.060663) - (xy 55.359997 105.080462) - (xy 55.36 105.080462) - (xy 55.360003 105.080462) - (xy 55.561028 105.060663) - (xy 55.561033 105.060662) - (xy 55.754341 105.002023) - (xy 55.834925 104.958949) - (xy 55.932491 104.9068) - (xy 55.932492 104.906798) - (xy 55.932494 104.906798) - (xy 56.088647 104.778647) - (xy 56.216798 104.622494) - (xy 56.312023 104.444341) - (xy 56.370662 104.251033) - (xy 56.370663 104.251028) - (xy 56.390462 104.050003) - (xy 59.409538 104.050003) - (xy 59.429336 104.251028) - (xy 59.429337 104.251033) - (xy 59.487977 104.444341) - (xy 59.487979 104.444346) - (xy 59.583199 104.622491) - (xy 59.711348 104.778641) - (xy 59.711353 104.778647) - (xy 59.711358 104.778651) - (xy 59.867508 104.9068) - (xy 60.045653 105.00202) - (xy 60.045659 105.002023) - (xy 60.180327 105.042873) - (xy 60.238966 105.060662) - (xy 60.238971 105.060663) - (xy 60.439997 105.080462) - (xy 60.44 105.080462) - (xy 60.440003 105.080462) - (xy 60.641028 105.060663) - (xy 60.641033 105.060662) - (xy 60.834341 105.002023) - (xy 60.914925 104.958949) - (xy 61.012491 104.9068) - (xy 61.012492 104.906798) - (xy 61.012494 104.906798) - (xy 61.168647 104.778647) - (xy 61.296798 104.622494) - (xy 61.392023 104.444341) - (xy 61.450662 104.251033) - (xy 61.450663 104.251028) - (xy 61.470462 104.050003) - (xy 61.470462 104.049996) - (xy 61.450663 103.848971) - (xy 61.450662 103.848966) - (xy 61.432873 103.790327) - (xy 61.392023 103.655659) - (xy 61.39202 103.655653) - (xy 61.2968 103.477508) - (xy 61.168651 103.321358) - (xy 61.168647 103.321353) - (xy 61.168641 103.321348) - (xy 61.012491 103.193199) - (xy 60.834346 103.097979) - (xy 60.834341 103.097977) - (xy 60.641033 103.039337) - (xy 60.641028 103.039336) - (xy 60.440003 103.019538) - (xy 60.439997 103.019538) - (xy 60.238971 103.039336) - (xy 60.238966 103.039337) - (xy 60.045658 103.097977) - (xy 60.045653 103.097979) - (xy 59.867508 103.193199) - (xy 59.711358 103.321348) - (xy 59.711348 103.321358) - (xy 59.583199 103.477508) - (xy 59.487979 103.655653) - (xy 59.487977 103.655658) - (xy 59.429337 103.848966) - (xy 59.429336 103.848971) - (xy 59.409538 104.049996) - (xy 59.409538 104.050003) - (xy 56.390462 104.050003) - (xy 56.390462 104.049996) - (xy 56.370663 103.848971) - (xy 56.370662 103.848966) - (xy 56.352873 103.790327) - (xy 56.312023 103.655659) - (xy 56.31202 103.655653) - (xy 56.2168 103.477508) - (xy 56.088651 103.321358) - (xy 56.088647 103.321353) - (xy 56.088641 103.321348) - (xy 55.932491 103.193199) - (xy 55.754346 103.097979) - (xy 55.754341 103.097977) - (xy 55.561033 103.039337) - (xy 55.561028 103.039336) - (xy 55.360003 103.019538) - (xy 55.359997 103.019538) - (xy 55.158971 103.039336) - (xy 55.158966 103.039337) - (xy 54.965658 103.097977) - (xy 54.965653 103.097979) - (xy 54.787508 103.193199) - (xy 54.631358 103.321348) - (xy 54.631348 103.321358) - (xy 54.503199 103.477508) - (xy 54.407979 103.655653) - (xy 54.407977 103.655658) - (xy 54.349337 103.848966) - (xy 54.349336 103.848971) - (xy 54.329538 104.049996) - (xy 54.329538 104.050003) - (xy 50.0755 104.050003) - (xy 50.0755 101.510003) - (xy 54.329538 101.510003) - (xy 54.349336 101.711028) - (xy 54.349337 101.711033) - (xy 54.407977 101.904341) - (xy 54.407979 101.904346) - (xy 54.503199 102.082491) - (xy 54.631348 102.238641) - (xy 54.631353 102.238647) - (xy 54.631358 102.238651) - (xy 54.787508 102.3668) - (xy 54.965653 102.46202) - (xy 54.965659 102.462023) - (xy 55.100327 102.502873) - (xy 55.158966 102.520662) - (xy 55.158971 102.520663) - (xy 55.359997 102.540462) - (xy 55.36 102.540462) - (xy 55.360003 102.540462) - (xy 55.561028 102.520663) - (xy 55.561033 102.520662) - (xy 55.754341 102.462023) - (xy 55.834925 102.418949) - (xy 55.932491 102.3668) - (xy 55.932492 102.366798) - (xy 55.932494 102.366798) - (xy 56.088647 102.238647) - (xy 56.216798 102.082494) - (xy 56.312023 101.904341) - (xy 56.370662 101.711033) - (xy 56.370663 101.711028) - (xy 56.390462 101.510003) - (xy 59.409538 101.510003) - (xy 59.429336 101.711028) - (xy 59.429337 101.711033) - (xy 59.487977 101.904341) - (xy 59.487979 101.904346) - (xy 59.583199 102.082491) - (xy 59.711348 102.238641) - (xy 59.711353 102.238647) - (xy 59.711358 102.238651) - (xy 59.867508 102.3668) - (xy 60.045653 102.46202) - (xy 60.045659 102.462023) - (xy 60.180327 102.502873) - (xy 60.238966 102.520662) - (xy 60.238971 102.520663) - (xy 60.439997 102.540462) - (xy 60.44 102.540462) - (xy 60.440003 102.540462) - (xy 60.641028 102.520663) - (xy 60.641033 102.520662) - (xy 60.834341 102.462023) - (xy 60.914925 102.418949) - (xy 61.012491 102.3668) - (xy 61.012492 102.366798) - (xy 61.012494 102.366798) - (xy 61.168647 102.238647) - (xy 61.296798 102.082494) - (xy 61.392023 101.904341) - (xy 61.450662 101.711033) - (xy 61.450663 101.711028) - (xy 61.470462 101.510003) - (xy 61.470462 101.509996) - (xy 61.450663 101.308971) - (xy 61.450662 101.308966) - (xy 61.432873 101.250327) - (xy 61.392023 101.115659) - (xy 61.39202 101.115653) - (xy 61.2968 100.937508) - (xy 61.168651 100.781358) - (xy 61.168647 100.781353) - (xy 61.168641 100.781348) - (xy 61.012491 100.653199) - (xy 60.834346 100.557979) - (xy 60.834341 100.557977) - (xy 60.641033 100.499337) - (xy 60.641028 100.499336) - (xy 60.440003 100.479538) - (xy 60.439997 100.479538) - (xy 60.238971 100.499336) - (xy 60.238966 100.499337) - (xy 60.045658 100.557977) - (xy 60.045653 100.557979) - (xy 59.867508 100.653199) - (xy 59.711358 100.781348) - (xy 59.711348 100.781358) - (xy 59.583199 100.937508) - (xy 59.487979 101.115653) - (xy 59.487977 101.115658) - (xy 59.429337 101.308966) - (xy 59.429336 101.308971) - (xy 59.409538 101.509996) - (xy 59.409538 101.510003) - (xy 56.390462 101.510003) - (xy 56.390462 101.509996) - (xy 56.370663 101.308971) - (xy 56.370662 101.308966) - (xy 56.352873 101.250327) - (xy 56.312023 101.115659) - (xy 56.31202 101.115653) - (xy 56.2168 100.937508) - (xy 56.088651 100.781358) - (xy 56.088647 100.781353) - (xy 56.088641 100.781348) - (xy 55.932491 100.653199) - (xy 55.754346 100.557979) - (xy 55.754341 100.557977) - (xy 55.561033 100.499337) - (xy 55.561028 100.499336) - (xy 55.360003 100.479538) - (xy 55.359997 100.479538) - (xy 55.158971 100.499336) - (xy 55.158966 100.499337) - (xy 54.965658 100.557977) - (xy 54.965653 100.557979) - (xy 54.787508 100.653199) - (xy 54.631358 100.781348) - (xy 54.631348 100.781358) - (xy 54.503199 100.937508) - (xy 54.407979 101.115653) - (xy 54.407977 101.115658) - (xy 54.349337 101.308966) - (xy 54.349336 101.308971) - (xy 54.329538 101.509996) - (xy 54.329538 101.510003) - (xy 50.0755 101.510003) - (xy 50.0755 98.970003) - (xy 54.329538 98.970003) - (xy 54.349336 99.171028) - (xy 54.349337 99.171033) - (xy 54.407977 99.364341) - (xy 54.407979 99.364346) - (xy 54.503199 99.542491) - (xy 54.631348 99.698641) - (xy 54.631353 99.698647) - (xy 54.631358 99.698651) - (xy 54.787508 99.8268) - (xy 54.965653 99.92202) - (xy 54.965659 99.922023) - (xy 55.100327 99.962873) - (xy 55.158966 99.980662) - (xy 55.158971 99.980663) - (xy 55.359997 100.000462) - (xy 55.36 100.000462) - (xy 55.360003 100.000462) - (xy 55.561028 99.980663) - (xy 55.561033 99.980662) - (xy 55.754341 99.922023) - (xy 55.834925 99.878949) - (xy 55.932491 99.8268) - (xy 55.932492 99.826798) - (xy 55.932494 99.826798) - (xy 56.088647 99.698647) - (xy 56.216798 99.542494) - (xy 56.312023 99.364341) - (xy 56.370662 99.171033) - (xy 56.370663 99.171028) - (xy 56.390462 98.970003) - (xy 59.409538 98.970003) - (xy 59.429336 99.171028) - (xy 59.429337 99.171033) - (xy 59.487977 99.364341) - (xy 59.487979 99.364346) - (xy 59.583199 99.542491) - (xy 59.711348 99.698641) - (xy 59.711353 99.698647) - (xy 59.711358 99.698651) - (xy 59.867508 99.8268) - (xy 60.045653 99.92202) - (xy 60.045659 99.922023) - (xy 60.180327 99.962873) - (xy 60.238966 99.980662) - (xy 60.238971 99.980663) - (xy 60.439997 100.000462) - (xy 60.44 100.000462) - (xy 60.440003 100.000462) - (xy 60.641028 99.980663) - (xy 60.641033 99.980662) - (xy 60.834341 99.922023) - (xy 60.914925 99.878949) - (xy 61.012491 99.8268) - (xy 61.012492 99.826798) - (xy 61.012494 99.826798) - (xy 61.168647 99.698647) - (xy 61.296798 99.542494) - (xy 61.392023 99.364341) - (xy 61.450662 99.171033) - (xy 61.450663 99.171028) - (xy 61.470462 98.970003) - (xy 61.470462 98.969996) - (xy 61.450663 98.768971) - (xy 61.450662 98.768966) - (xy 61.432873 98.710327) - (xy 61.392023 98.575659) - (xy 61.39202 98.575653) - (xy 61.2968 98.397508) - (xy 61.168651 98.241358) - (xy 61.168647 98.241353) - (xy 61.168641 98.241348) - (xy 61.012491 98.113199) - (xy 60.834346 98.017979) - (xy 60.834341 98.017977) - (xy 60.641033 97.959337) - (xy 60.641028 97.959336) - (xy 60.440003 97.939538) - (xy 60.439997 97.939538) - (xy 60.238971 97.959336) - (xy 60.238966 97.959337) - (xy 60.045658 98.017977) - (xy 60.045653 98.017979) - (xy 59.867508 98.113199) - (xy 59.711358 98.241348) - (xy 59.711348 98.241358) - (xy 59.583199 98.397508) - (xy 59.487979 98.575653) - (xy 59.487977 98.575658) - (xy 59.429337 98.768966) - (xy 59.429336 98.768971) - (xy 59.409538 98.969996) - (xy 59.409538 98.970003) - (xy 56.390462 98.970003) - (xy 56.390462 98.969996) - (xy 56.370663 98.768971) - (xy 56.370662 98.768966) - (xy 56.352873 98.710327) - (xy 56.312023 98.575659) - (xy 56.31202 98.575653) - (xy 56.2168 98.397508) - (xy 56.088651 98.241358) - (xy 56.088647 98.241353) - (xy 56.088641 98.241348) - (xy 55.932491 98.113199) - (xy 55.754346 98.017979) - (xy 55.754341 98.017977) - (xy 55.561033 97.959337) - (xy 55.561028 97.959336) - (xy 55.360003 97.939538) - (xy 55.359997 97.939538) - (xy 55.158971 97.959336) - (xy 55.158966 97.959337) - (xy 54.965658 98.017977) - (xy 54.965653 98.017979) - (xy 54.787508 98.113199) - (xy 54.631358 98.241348) - (xy 54.631348 98.241358) - (xy 54.503199 98.397508) - (xy 54.407979 98.575653) - (xy 54.407977 98.575658) - (xy 54.349337 98.768966) - (xy 54.349336 98.768971) - (xy 54.329538 98.969996) - (xy 54.329538 98.970003) - (xy 50.0755 98.970003) - (xy 50.0755 96.430003) - (xy 54.329538 96.430003) - (xy 54.349336 96.631028) - (xy 54.349337 96.631033) - (xy 54.407977 96.824341) - (xy 54.407979 96.824346) - (xy 54.503199 97.002491) - (xy 54.631348 97.158641) - (xy 54.631353 97.158647) - (xy 54.631358 97.158651) - (xy 54.787508 97.2868) - (xy 54.965653 97.38202) - (xy 54.965659 97.382023) - (xy 55.100327 97.422873) - (xy 55.158966 97.440662) - (xy 55.158971 97.440663) - (xy 55.359997 97.460462) - (xy 55.36 97.460462) - (xy 55.360003 97.460462) - (xy 55.561028 97.440663) - (xy 55.561033 97.440662) - (xy 55.754341 97.382023) - (xy 55.834925 97.338949) - (xy 55.932491 97.2868) - (xy 55.932492 97.286798) - (xy 55.932494 97.286798) - (xy 56.088647 97.158647) - (xy 56.216798 97.002494) - (xy 56.312023 96.824341) - (xy 56.370662 96.631033) - (xy 56.370663 96.631028) - (xy 56.390462 96.430003) - (xy 59.409538 96.430003) - (xy 59.429336 96.631028) - (xy 59.429337 96.631033) - (xy 59.487977 96.824341) - (xy 59.487979 96.824346) - (xy 59.583199 97.002491) - (xy 59.711348 97.158641) - (xy 59.711353 97.158647) - (xy 59.711358 97.158651) - (xy 59.867508 97.2868) - (xy 60.045653 97.38202) - (xy 60.045659 97.382023) - (xy 60.180327 97.422873) - (xy 60.238966 97.440662) - (xy 60.238971 97.440663) - (xy 60.439997 97.460462) - (xy 60.44 97.460462) - (xy 60.440003 97.460462) - (xy 60.641028 97.440663) - (xy 60.641033 97.440662) - (xy 60.834341 97.382023) - (xy 60.914925 97.338949) - (xy 61.012491 97.2868) - (xy 61.012492 97.286798) - (xy 61.012494 97.286798) - (xy 61.168647 97.158647) - (xy 61.296798 97.002494) - (xy 61.392023 96.824341) - (xy 61.450662 96.631033) - (xy 61.450663 96.631028) - (xy 61.470462 96.430003) - (xy 61.470462 96.429996) - (xy 61.450663 96.228971) - (xy 61.450662 96.228966) - (xy 61.432873 96.170327) - (xy 61.392023 96.035659) - (xy 61.39202 96.035653) - (xy 61.2968 95.857508) - (xy 61.168651 95.701358) - (xy 61.168647 95.701353) - (xy 61.168641 95.701348) - (xy 61.012491 95.573199) - (xy 60.834346 95.477979) - (xy 60.834341 95.477977) - (xy 60.641033 95.419337) - (xy 60.641028 95.419336) - (xy 60.440003 95.399538) - (xy 60.439997 95.399538) - (xy 60.238971 95.419336) - (xy 60.238966 95.419337) - (xy 60.045658 95.477977) - (xy 60.045653 95.477979) - (xy 59.867508 95.573199) - (xy 59.711358 95.701348) - (xy 59.711348 95.701358) - (xy 59.583199 95.857508) - (xy 59.487979 96.035653) - (xy 59.487977 96.035658) - (xy 59.429337 96.228966) - (xy 59.429336 96.228971) - (xy 59.409538 96.429996) - (xy 59.409538 96.430003) - (xy 56.390462 96.430003) - (xy 56.390462 96.429996) - (xy 56.370663 96.228971) - (xy 56.370662 96.228966) - (xy 56.352873 96.170327) - (xy 56.312023 96.035659) - (xy 56.31202 96.035653) - (xy 56.2168 95.857508) - (xy 56.088651 95.701358) - (xy 56.088647 95.701353) - (xy 56.088641 95.701348) - (xy 55.932491 95.573199) - (xy 55.754346 95.477979) - (xy 55.754341 95.477977) - (xy 55.561033 95.419337) - (xy 55.561028 95.419336) - (xy 55.360003 95.399538) - (xy 55.359997 95.399538) - (xy 55.158971 95.419336) - (xy 55.158966 95.419337) - (xy 54.965658 95.477977) - (xy 54.965653 95.477979) - (xy 54.787508 95.573199) - (xy 54.631358 95.701348) - (xy 54.631348 95.701358) - (xy 54.503199 95.857508) - (xy 54.407979 96.035653) - (xy 54.407977 96.035658) - (xy 54.349337 96.228966) - (xy 54.349336 96.228971) - (xy 54.329538 96.429996) - (xy 54.329538 96.430003) - (xy 50.0755 96.430003) - (xy 50.0755 93.890003) - (xy 54.329538 93.890003) - (xy 54.349336 94.091028) - (xy 54.349337 94.091033) - (xy 54.407977 94.284341) - (xy 54.407979 94.284346) - (xy 54.503199 94.462491) - (xy 54.631348 94.618641) - (xy 54.631353 94.618647) - (xy 54.631358 94.618651) - (xy 54.787508 94.7468) - (xy 54.965653 94.84202) - (xy 54.965659 94.842023) - (xy 55.100327 94.882873) - (xy 55.158966 94.900662) - (xy 55.158971 94.900663) - (xy 55.359997 94.920462) - (xy 55.36 94.920462) - (xy 55.360003 94.920462) - (xy 55.561028 94.900663) - (xy 55.561033 94.900662) - (xy 55.754341 94.842023) - (xy 55.834925 94.798949) - (xy 55.932491 94.7468) - (xy 55.932492 94.746798) - (xy 55.932494 94.746798) - (xy 56.088647 94.618647) - (xy 56.216798 94.462494) - (xy 56.312023 94.284341) - (xy 56.370662 94.091033) - (xy 56.370663 94.091028) - (xy 56.390462 93.890003) - (xy 59.409538 93.890003) - (xy 59.429336 94.091028) - (xy 59.429337 94.091033) - (xy 59.487977 94.284341) - (xy 59.487979 94.284346) - (xy 59.583199 94.462491) - (xy 59.711348 94.618641) - (xy 59.711353 94.618647) - (xy 59.711358 94.618651) - (xy 59.867508 94.7468) - (xy 60.045653 94.84202) - (xy 60.045659 94.842023) - (xy 60.180327 94.882873) - (xy 60.238966 94.900662) - (xy 60.238971 94.900663) - (xy 60.439997 94.920462) - (xy 60.44 94.920462) - (xy 60.440003 94.920462) - (xy 60.641028 94.900663) - (xy 60.641033 94.900662) - (xy 60.834341 94.842023) - (xy 60.914925 94.798949) - (xy 61.012491 94.7468) - (xy 61.012492 94.746798) - (xy 61.012494 94.746798) - (xy 61.168647 94.618647) - (xy 61.296798 94.462494) - (xy 61.392023 94.284341) - (xy 61.450662 94.091033) - (xy 61.450663 94.091028) - (xy 61.470462 93.890003) - (xy 61.470462 93.889996) - (xy 61.450663 93.688971) - (xy 61.450662 93.688966) - (xy 61.432873 93.630327) - (xy 61.392023 93.495659) - (xy 61.39202 93.495653) - (xy 61.2968 93.317508) - (xy 61.168651 93.161358) - (xy 61.168647 93.161353) - (xy 61.168641 93.161348) - (xy 61.012491 93.033199) - (xy 60.834346 92.937979) - (xy 60.834341 92.937977) - (xy 60.641033 92.879337) - (xy 60.641028 92.879336) - (xy 60.440003 92.859538) - (xy 60.439997 92.859538) - (xy 60.238971 92.879336) - (xy 60.238966 92.879337) - (xy 60.045658 92.937977) - (xy 60.045653 92.937979) - (xy 59.867508 93.033199) - (xy 59.711358 93.161348) - (xy 59.711348 93.161358) - (xy 59.583199 93.317508) - (xy 59.487979 93.495653) - (xy 59.487977 93.495658) - (xy 59.429337 93.688966) - (xy 59.429336 93.688971) - (xy 59.409538 93.889996) - (xy 59.409538 93.890003) - (xy 56.390462 93.890003) - (xy 56.390462 93.889996) - (xy 56.370663 93.688971) - (xy 56.370662 93.688966) - (xy 56.352873 93.630327) - (xy 56.312023 93.495659) - (xy 56.31202 93.495653) - (xy 56.2168 93.317508) - (xy 56.088651 93.161358) - (xy 56.088647 93.161353) - (xy 56.088641 93.161348) - (xy 55.932491 93.033199) - (xy 55.754346 92.937979) - (xy 55.754341 92.937977) - (xy 55.561033 92.879337) - (xy 55.561028 92.879336) - (xy 55.360003 92.859538) - (xy 55.359997 92.859538) - (xy 55.158971 92.879336) - (xy 55.158966 92.879337) - (xy 54.965658 92.937977) - (xy 54.965653 92.937979) - (xy 54.787508 93.033199) - (xy 54.631358 93.161348) - (xy 54.631348 93.161358) - (xy 54.503199 93.317508) - (xy 54.407979 93.495653) - (xy 54.407977 93.495658) - (xy 54.349337 93.688966) - (xy 54.349336 93.688971) - (xy 54.329538 93.889996) - (xy 54.329538 93.890003) - (xy 50.0755 93.890003) - (xy 50.0755 91.350003) - (xy 54.329538 91.350003) - (xy 54.349336 91.551028) - (xy 54.349337 91.551033) - (xy 54.407977 91.744341) - (xy 54.407979 91.744346) - (xy 54.503199 91.922491) - (xy 54.631348 92.078641) - (xy 54.631353 92.078647) - (xy 54.631358 92.078651) - (xy 54.787508 92.2068) - (xy 54.965653 92.30202) - (xy 54.965659 92.302023) - (xy 55.100327 92.342873) - (xy 55.158966 92.360662) - (xy 55.158971 92.360663) - (xy 55.359997 92.380462) - (xy 55.36 92.380462) - (xy 55.360003 92.380462) - (xy 55.561028 92.360663) - (xy 55.561033 92.360662) - (xy 55.754341 92.302023) - (xy 55.834925 92.258949) - (xy 55.932491 92.2068) - (xy 55.932492 92.206798) - (xy 55.932494 92.206798) - (xy 56.088647 92.078647) - (xy 56.216798 91.922494) - (xy 56.312023 91.744341) - (xy 56.370662 91.551033) - (xy 56.370663 91.551028) - (xy 56.390462 91.350003) - (xy 59.409538 91.350003) - (xy 59.429336 91.551028) - (xy 59.429337 91.551033) - (xy 59.487977 91.744341) - (xy 59.487979 91.744346) - (xy 59.583199 91.922491) - (xy 59.711348 92.078641) - (xy 59.711353 92.078647) - (xy 59.711358 92.078651) - (xy 59.867508 92.2068) - (xy 60.045653 92.30202) - (xy 60.045659 92.302023) - (xy 60.180327 92.342873) - (xy 60.238966 92.360662) - (xy 60.238971 92.360663) - (xy 60.439997 92.380462) - (xy 60.44 92.380462) - (xy 60.440003 92.380462) - (xy 60.641028 92.360663) - (xy 60.641033 92.360662) - (xy 60.834341 92.302023) - (xy 60.914925 92.258949) - (xy 61.012491 92.2068) - (xy 61.012492 92.206798) - (xy 61.012494 92.206798) - (xy 61.168647 92.078647) - (xy 61.296798 91.922494) - (xy 61.392023 91.744341) - (xy 61.450662 91.551033) - (xy 61.450663 91.551028) - (xy 61.470462 91.350003) - (xy 61.470462 91.349996) - (xy 61.450663 91.148971) - (xy 61.450662 91.148966) - (xy 61.432873 91.090327) - (xy 61.392023 90.955659) - (xy 61.39202 90.955653) - (xy 61.2968 90.777508) - (xy 61.168651 90.621358) - (xy 61.168647 90.621353) - (xy 61.168641 90.621348) - (xy 61.012491 90.493199) - (xy 60.834346 90.397979) - (xy 60.834341 90.397977) - (xy 60.641033 90.339337) - (xy 60.641028 90.339336) - (xy 60.440003 90.319538) - (xy 60.439997 90.319538) - (xy 60.238971 90.339336) - (xy 60.238966 90.339337) - (xy 60.045658 90.397977) - (xy 60.045653 90.397979) - (xy 59.867508 90.493199) - (xy 59.711358 90.621348) - (xy 59.711348 90.621358) - (xy 59.583199 90.777508) - (xy 59.487979 90.955653) - (xy 59.487977 90.955658) - (xy 59.429337 91.148966) - (xy 59.429336 91.148971) - (xy 59.409538 91.349996) - (xy 59.409538 91.350003) - (xy 56.390462 91.350003) - (xy 56.390462 91.349996) - (xy 56.370663 91.148971) - (xy 56.370662 91.148966) - (xy 56.352873 91.090327) - (xy 56.312023 90.955659) - (xy 56.31202 90.955653) - (xy 56.2168 90.777508) - (xy 56.088651 90.621358) - (xy 56.088647 90.621353) - (xy 56.088641 90.621348) - (xy 55.932491 90.493199) - (xy 55.754346 90.397979) - (xy 55.754341 90.397977) - (xy 55.561033 90.339337) - (xy 55.561028 90.339336) - (xy 55.360003 90.319538) - (xy 55.359997 90.319538) - (xy 55.158971 90.339336) - (xy 55.158966 90.339337) - (xy 54.965658 90.397977) - (xy 54.965653 90.397979) - (xy 54.787508 90.493199) - (xy 54.631358 90.621348) - (xy 54.631348 90.621358) - (xy 54.503199 90.777508) - (xy 54.407979 90.955653) - (xy 54.407977 90.955658) - (xy 54.349337 91.148966) - (xy 54.349336 91.148971) - (xy 54.329538 91.349996) - (xy 54.329538 91.350003) - (xy 50.0755 91.350003) - (xy 50.0755 89.086348) - (xy 52.39205 89.086348) - (xy 52.393584 89.097018) - (xy 52.394592 89.111107) - (xy 52.394592 89.55) - (xy 52.414034 89.64774) - (xy 52.414035 89.647741) - (xy 52.414035 89.647742) - (xy 52.469397 89.730599) - (xy 52.4694 89.730602) - (xy 52.505249 89.754555) - (xy 52.55226 89.785966) - (xy 52.65 89.805408) - (xy 52.650001 89.805408) - (xy 53.221888 89.805408) - (xy 53.221889 89.805408) - (xy 53.293845 89.795062) - (xy 53.4318 89.754555) - (xy 53.497927 89.724356) - (xy 53.618881 89.646624) - (xy 53.673824 89.599016) - (xy 53.677591 89.594669) - (xy 53.729987 89.563073) - (xy 53.75241 89.5605) - (xy 53.901 89.5605) - (xy 53.959191 89.579407) - (xy 53.995155 89.628907) - (xy 54 89.6595) - (xy 54 90.1) - (xy 54.000001 90.1) - (xy 56.599999 90.1) - (xy 56.6 90.1) - (xy 56.6 80) - (xy 54 80) - (xy 54 80.000001) - (xy 54 80.3505) - (xy 53.981093 80.408691) - (xy 53.931593 80.444655) - (xy 53.901 80.4495) - (xy 53.709036 80.4495) - (xy 53.650845 80.430593) - (xy 53.644211 80.425324) - (xy 53.618881 80.403376) - (xy 53.618878 80.403373) - (xy 53.618873 80.40337) - (xy 53.497936 80.325649) - (xy 53.497924 80.325642) - (xy 53.431797 80.295443) - (xy 53.293846 80.254938) - (xy 53.293841 80.254937) - (xy 53.240081 80.247207) - (xy 53.221889 80.244592) - (xy 52.65 80.244592) - (xy 52.649999 80.244592) - (xy 52.625729 80.249419) - (xy 52.55226 80.264034) - (xy 52.552258 80.264034) - (xy 52.552258 80.264035) - (xy 52.552257 80.264035) - (xy 52.4694 80.319397) - (xy 52.469397 80.3194) - (xy 52.414035 80.402257) - (xy 52.414035 80.402258) - (xy 52.414034 80.40226) - (xy 52.405601 80.444655) - (xy 52.394592 80.499999) - (xy 52.394592 80.938891) - (xy 52.393584 80.952979) - (xy 52.39205 80.963651) - (xy 52.39205 81.036348) - (xy 52.393584 81.047021) - (xy 52.394592 81.061107) - (xy 52.394592 81.438892) - (xy 52.393584 81.452985) - (xy 52.39205 81.463651) - (xy 52.39205 81.536348) - (xy 52.393584 81.547018) - (xy 52.394592 81.561107) - (xy 52.394592 82) - (xy 52.414034 82.09774) - (xy 52.414035 82.097741) - (xy 52.414035 82.097742) - (xy 52.469397 82.180599) - (xy 52.469399 82.180601) - (xy 52.55226 82.235966) - (xy 52.65 82.255408) - (xy 52.650001 82.255408) - (xy 53.221888 82.255408) - (xy 53.221889 82.255408) - (xy 53.293845 82.245062) - (xy 53.4318 82.204555) - (xy 53.497927 82.174356) - (xy 53.618881 82.096624) - (xy 53.673824 82.049016) - (xy 53.716298 81.999998) - (xy 53.729581 81.984669) - (xy 53.781977 81.953073) - (xy 53.8044 81.9505) - (xy 53.901 81.9505) - (xy 53.959191 81.969407) - (xy 53.995155 82.018907) - (xy 54 82.0495) - (xy 54 82.8805) - (xy 53.981093 82.938691) - (xy 53.931593 82.974655) - (xy 53.901 82.9795) - (xy 53.743347 82.9795) - (xy 53.685156 82.960593) - (xy 53.676546 82.95324) - (xy 53.676496 82.953299) - (xy 53.618885 82.903379) - (xy 53.618873 82.90337) - (xy 53.497936 82.825649) - (xy 53.497924 82.825642) - (xy 53.431797 82.795443) - (xy 53.293846 82.754938) - (xy 53.293841 82.754937) - (xy 53.240081 82.747207) - (xy 53.221889 82.744592) - (xy 52.65 82.744592) - (xy 52.649999 82.744592) - (xy 52.625729 82.749419) - (xy 52.55226 82.764034) - (xy 52.552258 82.764034) - (xy 52.552258 82.764035) - (xy 52.552257 82.764035) - (xy 52.4694 82.819397) - (xy 52.469397 82.8194) - (xy 52.414035 82.902257) - (xy 52.414035 82.902258) - (xy 52.414034 82.90226) - (xy 52.404342 82.950984) - (xy 52.394592 82.999999) - (xy 52.394592 83.438891) - (xy 52.393584 83.452979) - (xy 52.39205 83.463651) - (xy 52.39205 83.536348) - (xy 52.393584 83.547021) - (xy 52.394592 83.561107) - (xy 52.394592 83.938892) - (xy 52.393584 83.952985) - (xy 52.39205 83.963651) - (xy 52.39205 84.036348) - (xy 52.393584 84.047018) - (xy 52.394592 84.061107) - (xy 52.394592 84.5) - (xy 52.414034 84.59774) - (xy 52.414035 84.597741) - (xy 52.414035 84.597742) - (xy 52.469397 84.680599) - (xy 52.469399 84.680601) - (xy 52.55226 84.735966) - (xy 52.65 84.755408) - (xy 52.650001 84.755408) - (xy 53.221888 84.755408) - (xy 53.221889 84.755408) - (xy 53.293845 84.745062) - (xy 53.4318 84.704555) - (xy 53.497927 84.674356) - (xy 53.618881 84.596624) - (xy 53.673824 84.549016) - (xy 53.703586 84.514669) - (xy 53.755982 84.483073) - (xy 53.778405 84.4805) - (xy 53.901 84.4805) - (xy 53.959191 84.499407) - (xy 53.995155 84.548907) - (xy 54 84.5795) - (xy 54 85.4205) - (xy 53.981093 85.478691) - (xy 53.931593 85.514655) - (xy 53.901 85.5195) - (xy 53.778405 85.5195) - (xy 53.720214 85.500593) - (xy 53.703586 85.485331) - (xy 53.673832 85.450993) - (xy 53.67383 85.450991) - (xy 53.673824 85.450984) - (xy 53.673814 85.450975) - (xy 53.618885 85.403379) - (xy 53.618873 85.40337) - (xy 53.497936 85.325649) - (xy 53.497924 85.325642) - (xy 53.431797 85.295443) - (xy 53.293846 85.254938) - (xy 53.293841 85.254937) - (xy 53.240081 85.247207) - (xy 53.221889 85.244592) - (xy 52.65 85.244592) - (xy 52.649999 85.244592) - (xy 52.625729 85.249419) - (xy 52.55226 85.264034) - (xy 52.552258 85.264034) - (xy 52.552258 85.264035) - (xy 52.552257 85.264035) - (xy 52.4694 85.319397) - (xy 52.469397 85.3194) - (xy 52.414035 85.402257) - (xy 52.414035 85.402258) - (xy 52.414034 85.40226) - (xy 52.399419 85.475729) - (xy 52.394592 85.499999) - (xy 52.394592 85.938891) - (xy 52.393584 85.952979) - (xy 52.39205 85.963651) - (xy 52.39205 86.036348) - (xy 52.393584 86.047021) - (xy 52.394592 86.061107) - (xy 52.394592 86.438892) - (xy 52.393584 86.452985) - (xy 52.39205 86.463651) - (xy 52.39205 86.536348) - (xy 52.393584 86.547018) - (xy 52.394592 86.561107) - (xy 52.394592 87) - (xy 52.414034 87.09774) - (xy 52.414035 87.097741) - (xy 52.414035 87.097742) - (xy 52.469397 87.180599) - (xy 52.469399 87.180601) - (xy 52.55226 87.235966) - (xy 52.65 87.255408) - (xy 52.650001 87.255408) - (xy 53.221888 87.255408) - (xy 53.221889 87.255408) - (xy 53.293845 87.245062) - (xy 53.4318 87.204555) - (xy 53.497927 87.174356) - (xy 53.618881 87.096624) - (xy 53.673824 87.049016) - (xy 53.673823 87.049016) - (xy 53.676496 87.046701) - (xy 53.67721 87.047525) - (xy 53.72786 87.021719) - (xy 53.743347 87.0205) - (xy 53.901 87.0205) - (xy 53.959191 87.039407) - (xy 53.995155 87.088907) - (xy 54 87.1195) - (xy 54 87.9605) - (xy 53.981093 88.018691) - (xy 53.931593 88.054655) - (xy 53.901 88.0595) - (xy 53.76974 88.0595) - (xy 53.711549 88.040593) - (xy 53.694921 88.025331) - (xy 53.673832 88.000993) - (xy 53.67383 88.000991) - (xy 53.673824 88.000984) - (xy 53.67269 88.000001) - (xy 53.618885 87.953379) - (xy 53.618873 87.95337) - (xy 53.497936 87.875649) - (xy 53.497924 87.875642) - (xy 53.431797 87.845443) - (xy 53.293846 87.804938) - (xy 53.293841 87.804937) - (xy 53.240081 87.797207) - (xy 53.221889 87.794592) - (xy 52.65 87.794592) - (xy 52.649999 87.794592) - (xy 52.625729 87.799419) - (xy 52.55226 87.814034) - (xy 52.552258 87.814034) - (xy 52.552258 87.814035) - (xy 52.552257 87.814035) - (xy 52.4694 87.869397) - (xy 52.469397 87.8694) - (xy 52.414035 87.952257) - (xy 52.414035 87.952258) - (xy 52.414034 87.95226) - (xy 52.412395 87.9605) - (xy 52.394592 88.049999) - (xy 52.394592 88.488891) - (xy 52.393584 88.502979) - (xy 52.39205 88.513651) - (xy 52.39205 88.586348) - (xy 52.393584 88.597021) - (xy 52.394592 88.611107) - (xy 52.394592 88.988892) - (xy 52.393584 89.002985) - (xy 52.39205 89.013651) - (xy 52.39205 89.086348) - (xy 50.0755 89.086348) - (xy 50.0755 79.9) - (xy 59.1 79.9) - (xy 59.1 90.1) - (xy 59.100001 90.1) - (xy 61.699999 90.1) - (xy 61.7 90.1) - (xy 61.7 89.6595) - (xy 61.718907 89.601309) - (xy 61.768407 89.565345) - (xy 61.799 89.5605) - (xy 62.302504 89.5605) - (xy 62.360695 89.579407) - (xy 62.36733 89.584676) - (xy 62.381119 89.596624) - (xy 62.381121 89.596625) - (xy 62.381122 89.596626) - (xy 62.381126 89.596629) - (xy 62.502063 89.67435) - (xy 62.502075 89.674357) - (xy 62.568202 89.704556) - (xy 62.635616 89.72435) - (xy 62.706155 89.745062) - (xy 62.778111 89.755408) - (xy 62.778112 89.755408) - (xy 63.349999 89.755408) - (xy 63.35 89.755408) - (xy 63.44774 89.735966) - (xy 63.530601 89.680601) - (xy 63.585966 89.59774) - (xy 63.605408 89.5) - (xy 63.605408 89.061107) - (xy 63.606416 89.047018) - (xy 63.60795 89.036348) - (xy 63.60795 88.963651) - (xy 63.606416 88.952985) - (xy 63.605408 88.938892) - (xy 63.605408 88.561107) - (xy 63.606415 88.547021) - (xy 63.60795 88.536348) - (xy 63.60795 88.463651) - (xy 63.606415 88.452979) - (xy 63.605408 88.438891) - (xy 63.605408 88.000001) - (xy 63.605408 88) - (xy 63.585966 87.90226) - (xy 63.585964 87.902257) - (xy 63.530602 87.8194) - (xy 63.530599 87.819397) - (xy 63.447742 87.764035) - (xy 63.447741 87.764034) - (xy 63.44774 87.764034) - (xy 63.35 87.744592) - (xy 62.778111 87.744592) - (xy 62.76359 87.746679) - (xy 62.706158 87.754937) - (xy 62.706153 87.754938) - (xy 62.568203 87.795443) - (xy 62.568202 87.795443) - (xy 62.502075 87.825642) - (xy 62.502063 87.825649) - (xy 62.381126 87.90337) - (xy 62.381114 87.903379) - (xy 62.326185 87.950975) - (xy 62.326167 87.950993) - (xy 62.261754 88.025331) - (xy 62.209358 88.056927) - (xy 62.186935 88.0595) - (xy 61.799 88.0595) - (xy 61.740809 88.040593) - (xy 61.704845 87.991093) - (xy 61.7 87.9605) - (xy 61.7 87.1195) - (xy 61.718907 87.061309) - (xy 61.768407 87.025345) - (xy 61.799 87.0205) - (xy 62.256653 87.0205) - (xy 62.314844 87.039407) - (xy 62.323453 87.046759) - (xy 62.323504 87.046701) - (xy 62.381114 87.09662) - (xy 62.381126 87.096629) - (xy 62.502063 87.17435) - (xy 62.502075 87.174357) - (xy 62.568202 87.204556) - (xy 62.637177 87.224808) - (xy 62.706155 87.245062) - (xy 62.778111 87.255408) - (xy 62.778112 87.255408) - (xy 63.349999 87.255408) - (xy 63.35 87.255408) - (xy 63.44774 87.235966) - (xy 63.530601 87.180601) - (xy 63.585966 87.09774) - (xy 63.605408 87) - (xy 63.605408 86.561107) - (xy 63.606416 86.547018) - (xy 63.60795 86.536348) - (xy 63.60795 86.463651) - (xy 63.606416 86.452985) - (xy 63.605408 86.438892) - (xy 63.605408 86.061107) - (xy 63.606415 86.047021) - (xy 63.60795 86.036348) - (xy 63.60795 85.963651) - (xy 63.606415 85.952979) - (xy 63.605408 85.938891) - (xy 63.605408 85.500001) - (xy 63.605408 85.5) - (xy 63.585966 85.40226) - (xy 63.534774 85.325644) - (xy 63.530602 85.3194) - (xy 63.530599 85.319397) - (xy 63.447742 85.264035) - (xy 63.447741 85.264034) - (xy 63.44774 85.264034) - (xy 63.35 85.244592) - (xy 62.778111 85.244592) - (xy 62.76359 85.246679) - (xy 62.706158 85.254937) - (xy 62.706153 85.254938) - (xy 62.568203 85.295443) - (xy 62.568202 85.295443) - (xy 62.502075 85.325642) - (xy 62.502063 85.325649) - (xy 62.381126 85.40337) - (xy 62.381114 85.403379) - (xy 62.326185 85.450975) - (xy 62.326167 85.450993) - (xy 62.296414 85.485331) - (xy 62.244018 85.516927) - (xy 62.221595 85.5195) - (xy 61.799 85.5195) - (xy 61.740809 85.500593) - (xy 61.704845 85.451093) - (xy 61.7 85.4205) - (xy 61.7 84.5795) - (xy 61.718907 84.521309) - (xy 61.768407 84.485345) - (xy 61.799 84.4805) - (xy 62.221595 84.4805) - (xy 62.279786 84.499407) - (xy 62.296414 84.514669) - (xy 62.326167 84.549006) - (xy 62.326176 84.549016) - (xy 62.326183 84.549022) - (xy 62.326185 84.549024) - (xy 62.381114 84.59662) - (xy 62.381126 84.596629) - (xy 62.502063 84.67435) - (xy 62.502075 84.674357) - (xy 62.568202 84.704556) - (xy 62.637177 84.724808) - (xy 62.706155 84.745062) - (xy 62.778111 84.755408) - (xy 62.778112 84.755408) - (xy 63.349999 84.755408) - (xy 63.35 84.755408) - (xy 63.44774 84.735966) - (xy 63.530601 84.680601) - (xy 63.585966 84.59774) - (xy 63.605408 84.5) - (xy 63.605408 84.061107) - (xy 63.606416 84.047018) - (xy 63.60795 84.036348) - (xy 63.60795 83.963651) - (xy 63.606416 83.952985) - (xy 63.605408 83.938892) - (xy 63.605408 83.561107) - (xy 63.606415 83.547021) - (xy 63.60795 83.536348) - (xy 63.60795 83.463651) - (xy 63.606415 83.452979) - (xy 63.605408 83.438891) - (xy 63.605408 83.000001) - (xy 63.605408 83) - (xy 63.585966 82.90226) - (xy 63.534774 82.825644) - (xy 63.530602 82.8194) - (xy 63.530599 82.819397) - (xy 63.447742 82.764035) - (xy 63.447741 82.764034) - (xy 63.44774 82.764034) - (xy 63.35 82.744592) - (xy 62.778111 82.744592) - (xy 62.76359 82.746679) - (xy 62.706158 82.754937) - (xy 62.706153 82.754938) - (xy 62.568203 82.795443) - (xy 62.568202 82.795443) - (xy 62.502075 82.825642) - (xy 62.502063 82.825649) - (xy 62.381126 82.90337) - (xy 62.381114 82.903379) - (xy 62.323504 82.953299) - (xy 62.322789 82.952474) - (xy 62.27214 82.978281) - (xy 62.256653 82.9795) - (xy 61.799 82.9795) - (xy 61.740809 82.960593) - (xy 61.704845 82.911093) - (xy 61.7 82.8805) - (xy 61.7 82.0395) - (xy 61.718907 81.981309) - (xy 61.768407 81.945345) - (xy 61.799 81.9405) - (xy 62.186935 81.9405) - (xy 62.245126 81.959407) - (xy 62.261754 81.974669) - (xy 62.31793 82.0395) - (xy 62.326176 82.049016) - (xy 62.326183 82.049022) - (xy 62.326185 82.049024) - (xy 62.381114 82.09662) - (xy 62.381126 82.096629) - (xy 62.502063 82.17435) - (xy 62.502075 82.174357) - (xy 62.568202 82.204556) - (xy 62.637177 82.224808) - (xy 62.706155 82.245062) - (xy 62.778111 82.255408) - (xy 62.778112 82.255408) - (xy 63.349999 82.255408) - (xy 63.35 82.255408) - (xy 63.44774 82.235966) - (xy 63.530601 82.180601) - (xy 63.585966 82.09774) - (xy 63.605408 82) - (xy 63.605408 81.561107) - (xy 63.606416 81.547018) - (xy 63.60795 81.536348) - (xy 63.60795 81.463651) - (xy 63.606416 81.452985) - (xy 63.605408 81.438892) - (xy 63.605408 81.061107) - (xy 63.606415 81.047021) - (xy 63.60795 81.036348) - (xy 63.60795 80.963651) - (xy 63.606415 80.952979) - (xy 63.605408 80.938891) - (xy 63.605408 80.500001) - (xy 63.605408 80.5) - (xy 63.585966 80.40226) - (xy 63.534774 80.325644) - (xy 63.530602 80.3194) - (xy 63.530599 80.319397) - (xy 63.447742 80.264035) - (xy 63.447741 80.264034) - (xy 63.44774 80.264034) - (xy 63.35 80.244592) - (xy 62.778111 80.244592) - (xy 62.76359 80.246679) - (xy 62.706158 80.254937) - (xy 62.706153 80.254938) - (xy 62.568203 80.295443) - (xy 62.568202 80.295443) - (xy 62.502075 80.325642) - (xy 62.502063 80.325649) - (xy 62.381126 80.40337) - (xy 62.381122 80.403373) - (xy 62.367335 80.41532) - (xy 62.310975 80.439137) - (xy 62.302504 80.4395) - (xy 61.799 80.4395) - (xy 61.740809 80.420593) - (xy 61.704845 80.371093) - (xy 61.7 80.3405) - (xy 61.7 79.900001) - (xy 61.7 79.9) - (xy 59.1 79.9) - (xy 50.0755 79.9) - (xy 50.0755 78.650003) - (xy 54.329538 78.650003) - (xy 54.349336 78.851028) - (xy 54.349337 78.851033) - (xy 54.407977 79.044341) - (xy 54.407979 79.044346) - (xy 54.503199 79.222491) - (xy 54.631348 79.378641) - (xy 54.631353 79.378647) - (xy 54.631358 79.378651) - (xy 54.787508 79.5068) - (xy 54.965653 79.60202) - (xy 54.965659 79.602023) - (xy 55.100327 79.642873) - (xy 55.158966 79.660662) - (xy 55.158971 79.660663) - (xy 55.359997 79.680462) - (xy 55.36 79.680462) - (xy 55.360003 79.680462) - (xy 55.561028 79.660663) - (xy 55.561033 79.660662) - (xy 55.754341 79.602023) - (xy 55.834925 79.558949) - (xy 55.932491 79.5068) - (xy 55.932492 79.506798) - (xy 55.932494 79.506798) - (xy 56.088647 79.378647) - (xy 56.216798 79.222494) - (xy 56.312023 79.044341) - (xy 56.370662 78.851033) - (xy 56.370663 78.851028) - (xy 56.390462 78.650003) - (xy 59.409538 78.650003) - (xy 59.429336 78.851028) - (xy 59.429337 78.851033) - (xy 59.487977 79.044341) - (xy 59.487979 79.044346) - (xy 59.583199 79.222491) - (xy 59.711348 79.378641) - (xy 59.711353 79.378647) - (xy 59.711358 79.378651) - (xy 59.867508 79.5068) - (xy 60.045653 79.60202) - (xy 60.045659 79.602023) - (xy 60.180327 79.642873) - (xy 60.238966 79.660662) - (xy 60.238971 79.660663) - (xy 60.439997 79.680462) - (xy 60.44 79.680462) - (xy 60.440003 79.680462) - (xy 60.641028 79.660663) - (xy 60.641033 79.660662) - (xy 60.834341 79.602023) - (xy 60.914925 79.558949) - (xy 61.012491 79.5068) - (xy 61.012492 79.506798) - (xy 61.012494 79.506798) - (xy 61.168647 79.378647) - (xy 61.296798 79.222494) - (xy 61.392023 79.044341) - (xy 61.450662 78.851033) - (xy 61.450663 78.851028) - (xy 61.470462 78.650003) - (xy 61.470462 78.649996) - (xy 61.450663 78.448971) - (xy 61.450662 78.448966) - (xy 61.432873 78.390327) - (xy 61.392023 78.255659) - (xy 61.39202 78.255653) - (xy 61.2968 78.077508) - (xy 61.168651 77.921358) - (xy 61.168647 77.921353) - (xy 61.168641 77.921348) - (xy 61.012491 77.793199) - (xy 60.834346 77.697979) - (xy 60.834341 77.697977) - (xy 60.641033 77.639337) - (xy 60.641028 77.639336) - (xy 60.440003 77.619538) - (xy 60.439997 77.619538) - (xy 60.238971 77.639336) - (xy 60.238966 77.639337) - (xy 60.045658 77.697977) - (xy 60.045653 77.697979) - (xy 59.867508 77.793199) - (xy 59.711358 77.921348) - (xy 59.711348 77.921358) - (xy 59.583199 78.077508) - (xy 59.487979 78.255653) - (xy 59.487977 78.255658) - (xy 59.429337 78.448966) - (xy 59.429336 78.448971) - (xy 59.409538 78.649996) - (xy 59.409538 78.650003) - (xy 56.390462 78.650003) - (xy 56.390462 78.649996) - (xy 56.370663 78.448971) - (xy 56.370662 78.448966) - (xy 56.352873 78.390327) - (xy 56.312023 78.255659) - (xy 56.31202 78.255653) - (xy 56.2168 78.077508) - (xy 56.088651 77.921358) - (xy 56.088647 77.921353) - (xy 56.088641 77.921348) - (xy 55.932491 77.793199) - (xy 55.754346 77.697979) - (xy 55.754341 77.697977) - (xy 55.561033 77.639337) - (xy 55.561028 77.639336) - (xy 55.360003 77.619538) - (xy 55.359997 77.619538) - (xy 55.158971 77.639336) - (xy 55.158966 77.639337) - (xy 54.965658 77.697977) - (xy 54.965653 77.697979) - (xy 54.787508 77.793199) - (xy 54.631358 77.921348) - (xy 54.631348 77.921358) - (xy 54.503199 78.077508) - (xy 54.407979 78.255653) - (xy 54.407977 78.255658) - (xy 54.349337 78.448966) - (xy 54.349336 78.448971) - (xy 54.329538 78.649996) - (xy 54.329538 78.650003) - (xy 50.0755 78.650003) - (xy 50.0755 77.511198) - (xy 88.798011 77.511198) - (xy 88.858593 77.553619) - (xy 88.858605 77.553625) - (xy 89.058091 77.646647) - (xy 89.05809 77.646647) - (xy 89.270723 77.703621) - (xy 89.489997 77.722805) - (xy 89.490003 77.722805) - (xy 89.709276 77.703621) - (xy 89.921906 77.646648) - (xy 90.121406 77.553618) - (xy 90.181986 77.511198) - (xy 89.489999 76.819211) - (xy 88.798011 77.511198) - (xy 50.0755 77.511198) - (xy 50.0755 76.110003) - (xy 54.329538 76.110003) - (xy 54.349336 76.311028) - (xy 54.349337 76.311033) - (xy 54.407977 76.504341) - (xy 54.407979 76.504346) - (xy 54.503199 76.682491) - (xy 54.596037 76.795614) - (xy 54.631353 76.838647) - (xy 54.631358 76.838651) - (xy 54.787508 76.9668) - (xy 54.965653 77.06202) - (xy 54.965659 77.062023) - (xy 55.100327 77.102873) - (xy 55.158966 77.120662) - (xy 55.158971 77.120663) - (xy 55.359997 77.140462) - (xy 55.36 77.140462) - (xy 55.360003 77.140462) - (xy 55.561028 77.120663) - (xy 55.561033 77.120662) - (xy 55.754341 77.062023) - (xy 55.834925 77.018949) - (xy 55.932491 76.9668) - (xy 55.932492 76.966798) - (xy 55.932494 76.966798) - (xy 56.088647 76.838647) - (xy 56.216798 76.682494) - (xy 56.259536 76.602538) - (xy 56.268949 76.584925) - (xy 56.312023 76.504341) - (xy 56.370662 76.311033) - (xy 56.370663 76.311028) - (xy 56.390462 76.110003) - (xy 59.409538 76.110003) - (xy 59.429336 76.311028) - (xy 59.429337 76.311033) - (xy 59.487977 76.504341) - (xy 59.487979 76.504346) - (xy 59.583199 76.682491) - (xy 59.676037 76.795614) - (xy 59.711353 76.838647) - (xy 59.711358 76.838651) - (xy 59.867508 76.9668) - (xy 60.045653 77.06202) - (xy 60.045659 77.062023) - (xy 60.180327 77.102873) - (xy 60.238966 77.120662) - (xy 60.238971 77.120663) - (xy 60.439997 77.140462) - (xy 60.44 77.140462) - (xy 60.440003 77.140462) - (xy 60.641028 77.120663) - (xy 60.641033 77.120662) - (xy 60.834341 77.062023) - (xy 60.914925 77.018949) - (xy 61.012491 76.9668) - (xy 61.012492 76.966798) - (xy 61.012494 76.966798) - (xy 61.168647 76.838647) - (xy 61.296798 76.682494) - (xy 61.339536 76.602538) - (xy 61.348949 76.584925) - (xy 61.392023 76.504341) - (xy 61.393339 76.500003) - (xy 79.894659 76.500003) - (xy 79.913974 76.696126) - (xy 79.913975 76.696129) - (xy 79.971187 76.88473) - (xy 79.971188 76.884732) - (xy 80.015054 76.966798) - (xy 80.06409 77.058538) - (xy 80.064092 77.05854) - (xy 80.064093 77.058542) - (xy 80.189112 77.210878) - (xy 80.189121 77.210887) - (xy 80.341457 77.335906) - (xy 80.341462 77.33591) - (xy 80.515273 77.428814) - (xy 80.703868 77.486024) - (xy 80.70387 77.486024) - (xy 80.703873 77.486025) - (xy 80.899997 77.505341) - (xy 80.9 77.505341) - (xy 80.900003 77.505341) - (xy 81.096126 77.486025) - (xy 81.096127 77.486024) - (xy 81.096132 77.486024) - (xy 81.284727 77.428814) - (xy 81.458538 77.33591) - (xy 81.610883 77.210883) - (xy 81.73591 77.058538) - (xy 81.828814 76.884727) - (xy 81.886024 76.696132) - (xy 81.887368 76.682494) - (xy 81.905341 76.500003) - (xy 81.905341 76.499996) - (xy 81.901402 76.460003) - (xy 88.227195 76.460003) - (xy 88.246378 76.679276) - (xy 88.303352 76.891909) - (xy 88.396374 77.091394) - (xy 88.396376 77.091398) - (xy 88.4388 77.151986) - (xy 89.101484 76.489302) - (xy 89.136372 76.489302) - (xy 89.165047 76.602538) - (xy 89.228936 76.700327) - (xy 89.321115 76.772072) - (xy 89.431595 76.81) - (xy 89.519005 76.81) - (xy 89.605216 76.795614) - (xy 89.707947 76.740019) - (xy 89.78706 76.654079) - (xy 89.833982 76.547108) - (xy 89.8412 76.459999) - (xy 89.849211 76.459999) - (xy 90.541198 77.151986) - (xy 90.583618 77.091406) - (xy 90.676648 76.891906) - (xy 90.733621 76.679276) - (xy 90.752805 76.460003) - (xy 90.752805 76.459996) - (xy 90.733621 76.240723) - (xy 90.676647 76.02809) - (xy 90.583625 75.828606) - (xy 90.58362 75.828596) - (xy 90.541198 75.768012) - (xy 89.849211 76.459999) - (xy 89.8412 76.459999) - (xy 89.843628 76.430698) - (xy 89.814953 76.317462) - (xy 89.751064 76.219673) - (xy 89.658885 76.147928) - (xy 89.548405 76.11) - (xy 89.460995 76.11) - (xy 89.374784 76.124386) - (xy 89.272053 76.179981) - (xy 89.19294 76.265921) - (xy 89.146018 76.372892) - (xy 89.136372 76.489302) - (xy 89.101484 76.489302) - (xy 89.130787 76.459999) - (xy 88.4388 75.768012) - (xy 88.39638 75.828595) - (xy 88.396373 75.828607) - (xy 88.303352 76.02809) - (xy 88.246378 76.240723) - (xy 88.227195 76.459996) - (xy 88.227195 76.460003) - (xy 81.901402 76.460003) - (xy 81.886025 76.303873) - (xy 81.886024 76.30387) - (xy 81.886024 76.303868) - (xy 81.828814 76.115273) - (xy 81.825993 76.109996) - (xy 81.806942 76.074353) - (xy 81.73591 75.941462) - (xy 81.643292 75.828607) - (xy 81.610887 75.789121) - (xy 81.610878 75.789112) - (xy 81.458542 75.664093) - (xy 81.45854 75.664092) - (xy 81.458538 75.66409) - (xy 81.417618 75.642218) - (xy 81.284732 75.571188) - (xy 81.28473 75.571187) - (xy 81.096129 75.513975) - (xy 81.096126 75.513974) - (xy 80.900003 75.494659) - (xy 80.899997 75.494659) - (xy 80.703873 75.513974) - (xy 80.70387 75.513975) - (xy 80.515269 75.571187) - (xy 80.515267 75.571188) - (xy 80.341467 75.664087) - (xy 80.341457 75.664093) - (xy 80.189121 75.789112) - (xy 80.189112 75.789121) - (xy 80.064093 75.941457) - (xy 80.064087 75.941467) - (xy 79.971188 76.115267) - (xy 79.971187 76.115269) - (xy 79.913975 76.30387) - (xy 79.913974 76.303873) - (xy 79.894659 76.499996) - (xy 79.894659 76.500003) - (xy 61.393339 76.500003) - (xy 61.450662 76.311033) - (xy 61.450663 76.311028) - (xy 61.470462 76.110003) - (xy 61.470462 76.109996) - (xy 61.450663 75.908971) - (xy 61.450662 75.908966) - (xy 61.426282 75.828596) - (xy 61.392023 75.715659) - (xy 61.39202 75.715653) - (xy 61.2968 75.537508) - (xy 61.191172 75.4088) - (xy 88.798012 75.4088) - (xy 89.489999 76.100787) - (xy 90.181986 75.4088) - (xy 90.121398 75.366376) - (xy 90.121394 75.366374) - (xy 89.921908 75.273352) - (xy 89.921909 75.273352) - (xy 89.709276 75.216378) - (xy 89.490003 75.197195) - (xy 89.489997 75.197195) - (xy 89.270723 75.216378) - (xy 89.05809 75.273352) - (xy 88.858607 75.366373) - (xy 88.858595 75.36638) - (xy 88.798012 75.4088) - (xy 61.191172 75.4088) - (xy 61.168651 75.381358) - (xy 61.168647 75.381353) - (xy 61.150402 75.36638) - (xy 61.012491 75.253199) - (xy 60.834346 75.157979) - (xy 60.834341 75.157977) - (xy 60.641033 75.099337) - (xy 60.641028 75.099336) - (xy 60.440003 75.079538) - (xy 60.439997 75.079538) - (xy 60.238971 75.099336) - (xy 60.238966 75.099337) - (xy 60.045658 75.157977) - (xy 60.045653 75.157979) - (xy 59.867508 75.253199) - (xy 59.711358 75.381348) - (xy 59.711348 75.381358) - (xy 59.583199 75.537508) - (xy 59.487979 75.715653) - (xy 59.487977 75.715658) - (xy 59.429337 75.908966) - (xy 59.429336 75.908971) - (xy 59.409538 76.109996) - (xy 59.409538 76.110003) - (xy 56.390462 76.110003) - (xy 56.390462 76.109996) - (xy 56.370663 75.908971) - (xy 56.370662 75.908966) - (xy 56.346282 75.828596) - (xy 56.312023 75.715659) - (xy 56.31202 75.715653) - (xy 56.2168 75.537508) - (xy 56.088651 75.381358) - (xy 56.088647 75.381353) - (xy 56.070402 75.36638) - (xy 55.932491 75.253199) - (xy 55.754346 75.157979) - (xy 55.754341 75.157977) - (xy 55.561033 75.099337) - (xy 55.561028 75.099336) - (xy 55.360003 75.079538) - (xy 55.359997 75.079538) - (xy 55.158971 75.099336) - (xy 55.158966 75.099337) - (xy 54.965658 75.157977) - (xy 54.965653 75.157979) - (xy 54.787508 75.253199) - (xy 54.631358 75.381348) - (xy 54.631348 75.381358) - (xy 54.503199 75.537508) - (xy 54.407979 75.715653) - (xy 54.407977 75.715658) - (xy 54.349337 75.908966) - (xy 54.349336 75.908971) - (xy 54.329538 76.109996) - (xy 54.329538 76.110003) - (xy 50.0755 76.110003) - (xy 50.0755 73.570003) - (xy 54.329538 73.570003) - (xy 54.349336 73.771028) - (xy 54.349337 73.771033) - (xy 54.407977 73.964341) - (xy 54.407979 73.964346) - (xy 54.503199 74.142491) - (xy 54.631348 74.298641) - (xy 54.631353 74.298647) - (xy 54.631358 74.298651) - (xy 54.787508 74.4268) - (xy 54.965653 74.52202) - (xy 54.965659 74.522023) - (xy 55.100327 74.562873) - (xy 55.158966 74.580662) - (xy 55.158971 74.580663) - (xy 55.359997 74.600462) - (xy 55.36 74.600462) - (xy 55.360003 74.600462) - (xy 55.561028 74.580663) - (xy 55.561033 74.580662) - (xy 55.754341 74.522023) - (xy 55.834925 74.478949) - (xy 55.932491 74.4268) - (xy 55.932492 74.426798) - (xy 55.932494 74.426798) - (xy 56.088647 74.298647) - (xy 56.216798 74.142494) - (xy 56.312023 73.964341) - (xy 56.370662 73.771033) - (xy 56.370663 73.771028) - (xy 56.390462 73.570003) - (xy 59.409538 73.570003) - (xy 59.429336 73.771028) - (xy 59.429337 73.771033) - (xy 59.487977 73.964341) - (xy 59.487979 73.964346) - (xy 59.583199 74.142491) - (xy 59.711348 74.298641) - (xy 59.711353 74.298647) - (xy 59.711358 74.298651) - (xy 59.867508 74.4268) - (xy 60.045653 74.52202) - (xy 60.045659 74.522023) - (xy 60.180327 74.562873) - (xy 60.238966 74.580662) - (xy 60.238971 74.580663) - (xy 60.439997 74.600462) - (xy 60.44 74.600462) - (xy 60.440003 74.600462) - (xy 60.641028 74.580663) - (xy 60.641033 74.580662) - (xy 60.834341 74.522023) - (xy 60.914925 74.478949) - (xy 61.012491 74.4268) - (xy 61.012492 74.426798) - (xy 61.012494 74.426798) - (xy 61.168647 74.298647) - (xy 61.296798 74.142494) - (xy 61.392023 73.964341) - (xy 61.450662 73.771033) - (xy 61.450663 73.771028) - (xy 61.470462 73.570003) - (xy 61.470462 73.569996) - (xy 61.450663 73.368971) - (xy 61.450662 73.368966) - (xy 61.432873 73.310327) - (xy 61.392023 73.175659) - (xy 61.39202 73.175653) - (xy 61.2968 72.997508) - (xy 61.168651 72.841358) - (xy 61.168647 72.841353) - (xy 61.168641 72.841348) - (xy 61.012491 72.713199) - (xy 60.834346 72.617979) - (xy 60.834341 72.617977) - (xy 60.641033 72.559337) - (xy 60.641028 72.559336) - (xy 60.440003 72.539538) - (xy 60.439997 72.539538) - (xy 60.238971 72.559336) - (xy 60.238966 72.559337) - (xy 60.045658 72.617977) - (xy 60.045653 72.617979) - (xy 59.867508 72.713199) - (xy 59.711358 72.841348) - (xy 59.711348 72.841358) - (xy 59.583199 72.997508) - (xy 59.487979 73.175653) - (xy 59.487977 73.175658) - (xy 59.429337 73.368966) - (xy 59.429336 73.368971) - (xy 59.409538 73.569996) - (xy 59.409538 73.570003) - (xy 56.390462 73.570003) - (xy 56.390462 73.569996) - (xy 56.370663 73.368971) - (xy 56.370662 73.368966) - (xy 56.352873 73.310327) - (xy 56.312023 73.175659) - (xy 56.31202 73.175653) - (xy 56.2168 72.997508) - (xy 56.088651 72.841358) - (xy 56.088647 72.841353) - (xy 56.088641 72.841348) - (xy 55.932491 72.713199) - (xy 55.754346 72.617979) - (xy 55.754341 72.617977) - (xy 55.561033 72.559337) - (xy 55.561028 72.559336) - (xy 55.360003 72.539538) - (xy 55.359997 72.539538) - (xy 55.158971 72.559336) - (xy 55.158966 72.559337) - (xy 54.965658 72.617977) - (xy 54.965653 72.617979) - (xy 54.787508 72.713199) - (xy 54.631358 72.841348) - (xy 54.631348 72.841358) - (xy 54.503199 72.997508) - (xy 54.407979 73.175653) - (xy 54.407977 73.175658) - (xy 54.349337 73.368966) - (xy 54.349336 73.368971) - (xy 54.329538 73.569996) - (xy 54.329538 73.570003) - (xy 50.0755 73.570003) - (xy 50.0755 71.030003) - (xy 54.329538 71.030003) - (xy 54.349336 71.231028) - (xy 54.349337 71.231033) - (xy 54.407977 71.424341) - (xy 54.407979 71.424346) - (xy 54.503199 71.602491) - (xy 54.631348 71.758641) - (xy 54.631353 71.758647) - (xy 54.631358 71.758651) - (xy 54.787508 71.8868) - (xy 54.965653 71.98202) - (xy 54.965659 71.982023) - (xy 55.100327 72.022873) - (xy 55.158966 72.040662) - (xy 55.158971 72.040663) - (xy 55.359997 72.060462) - (xy 55.36 72.060462) - (xy 55.360003 72.060462) - (xy 55.561028 72.040663) - (xy 55.561033 72.040662) - (xy 55.754341 71.982023) - (xy 55.834925 71.938949) - (xy 55.932491 71.8868) - (xy 55.932492 71.886798) - (xy 55.932494 71.886798) - (xy 56.088647 71.758647) - (xy 56.216798 71.602494) - (xy 56.312023 71.424341) - (xy 56.370662 71.231033) - (xy 56.370663 71.231028) - (xy 56.390462 71.030003) - (xy 59.409538 71.030003) - (xy 59.429336 71.231028) - (xy 59.429337 71.231033) - (xy 59.487977 71.424341) - (xy 59.487979 71.424346) - (xy 59.583199 71.602491) - (xy 59.711348 71.758641) - (xy 59.711353 71.758647) - (xy 59.711358 71.758651) - (xy 59.867508 71.8868) - (xy 60.045653 71.98202) - (xy 60.045659 71.982023) - (xy 60.180327 72.022873) - (xy 60.238966 72.040662) - (xy 60.238971 72.040663) - (xy 60.439997 72.060462) - (xy 60.44 72.060462) - (xy 60.440003 72.060462) - (xy 60.641028 72.040663) - (xy 60.641033 72.040662) - (xy 60.834341 71.982023) - (xy 60.914925 71.938949) - (xy 61.012491 71.8868) - (xy 61.012492 71.886798) - (xy 61.012494 71.886798) - (xy 61.168647 71.758647) - (xy 61.296798 71.602494) - (xy 61.392023 71.424341) - (xy 61.450662 71.231033) - (xy 61.450663 71.231028) - (xy 61.470462 71.030003) - (xy 61.470462 71.029996) - (xy 61.450663 70.828971) - (xy 61.450662 70.828966) - (xy 61.432873 70.770327) - (xy 61.392023 70.635659) - (xy 61.39202 70.635653) - (xy 61.2968 70.457508) - (xy 61.168651 70.301358) - (xy 61.168647 70.301353) - (xy 61.168641 70.301348) - (xy 61.012491 70.173199) - (xy 60.834346 70.077979) - (xy 60.834341 70.077977) - (xy 60.641033 70.019337) - (xy 60.641028 70.019336) - (xy 60.440003 69.999538) - (xy 60.439997 69.999538) - (xy 60.238971 70.019336) - (xy 60.238966 70.019337) - (xy 60.045658 70.077977) - (xy 60.045653 70.077979) - (xy 59.867508 70.173199) - (xy 59.711358 70.301348) - (xy 59.711348 70.301358) - (xy 59.583199 70.457508) - (xy 59.487979 70.635653) - (xy 59.487977 70.635658) - (xy 59.429337 70.828966) - (xy 59.429336 70.828971) - (xy 59.409538 71.029996) - (xy 59.409538 71.030003) - (xy 56.390462 71.030003) - (xy 56.390462 71.029996) - (xy 56.370663 70.828971) - (xy 56.370662 70.828966) - (xy 56.352873 70.770327) - (xy 56.312023 70.635659) - (xy 56.31202 70.635653) - (xy 56.2168 70.457508) - (xy 56.088651 70.301358) - (xy 56.088647 70.301353) - (xy 56.088641 70.301348) - (xy 55.932491 70.173199) - (xy 55.754346 70.077979) - (xy 55.754341 70.077977) - (xy 55.561033 70.019337) - (xy 55.561028 70.019336) - (xy 55.360003 69.999538) - (xy 55.359997 69.999538) - (xy 55.158971 70.019336) - (xy 55.158966 70.019337) - (xy 54.965658 70.077977) - (xy 54.965653 70.077979) - (xy 54.787508 70.173199) - (xy 54.631358 70.301348) - (xy 54.631348 70.301358) - (xy 54.503199 70.457508) - (xy 54.407979 70.635653) - (xy 54.407977 70.635658) - (xy 54.349337 70.828966) - (xy 54.349336 70.828971) - (xy 54.329538 71.029996) - (xy 54.329538 71.030003) - (xy 50.0755 71.030003) - (xy 50.0755 68.490003) - (xy 54.329538 68.490003) - (xy 54.349336 68.691028) - (xy 54.349337 68.691033) - (xy 54.407977 68.884341) - (xy 54.407979 68.884346) - (xy 54.503199 69.062491) - (xy 54.595801 69.175327) - (xy 54.631353 69.218647) - (xy 54.631358 69.218651) - (xy 54.787508 69.3468) - (xy 54.965653 69.44202) - (xy 54.965659 69.442023) - (xy 55.083782 69.477855) - (xy 55.158966 69.500662) - (xy 55.158971 69.500663) - (xy 55.359997 69.520462) - (xy 55.36 69.520462) - (xy 55.360003 69.520462) - (xy 55.561028 69.500663) - (xy 55.561033 69.500662) - (xy 55.754341 69.442023) - (xy 55.834925 69.398949) - (xy 55.932491 69.3468) - (xy 55.932492 69.346798) - (xy 55.932494 69.346798) - (xy 56.088647 69.218647) - (xy 56.216798 69.062494) - (xy 56.239833 69.0194) - (xy 56.31202 68.884346) - (xy 56.312023 68.884341) - (xy 56.370662 68.691033) - (xy 56.370663 68.691028) - (xy 56.390462 68.490003) - (xy 59.409538 68.490003) - (xy 59.429336 68.691028) - (xy 59.429337 68.691033) - (xy 59.487977 68.884341) - (xy 59.487979 68.884346) - (xy 59.583199 69.062491) - (xy 59.675801 69.175327) - (xy 59.711353 69.218647) - (xy 59.711358 69.218651) - (xy 59.867508 69.3468) - (xy 60.045653 69.44202) - (xy 60.045659 69.442023) - (xy 60.163782 69.477855) - (xy 60.238966 69.500662) - (xy 60.238971 69.500663) - (xy 60.439997 69.520462) - (xy 60.44 69.520462) - (xy 60.440003 69.520462) - (xy 60.641028 69.500663) - (xy 60.641033 69.500662) - (xy 60.834341 69.442023) - (xy 60.914925 69.398949) - (xy 61.012491 69.3468) - (xy 61.012492 69.346798) - (xy 61.012494 69.346798) - (xy 61.168647 69.218647) - (xy 61.296798 69.062494) - (xy 61.319833 69.0194) - (xy 61.39202 68.884346) - (xy 61.392023 68.884341) - (xy 61.450662 68.691033) - (xy 61.450663 68.691028) - (xy 61.470462 68.490003) - (xy 61.470462 68.489996) - (xy 61.450663 68.288971) - (xy 61.450662 68.288966) - (xy 61.432134 68.227888) - (xy 61.392023 68.095659) - (xy 61.39202 68.095653) - (xy 61.2968 67.917508) - (xy 61.168651 67.761358) - (xy 61.168647 67.761353) - (xy 61.120337 67.721706) - (xy 61.012491 67.633199) - (xy 60.834346 67.537979) - (xy 60.834341 67.537977) - (xy 60.709159 67.500003) - (xy 64.987004 67.500003) - (xy 65.006949 67.727991) - (xy 65.066187 67.949069) - (xy 65.16291 68.156495) - (xy 65.212899 68.227888) - (xy 65.901272 67.539514) - (xy 65.914835 67.625148) - (xy 65.972359 67.738045) - (xy 66.061955 67.827641) - (xy 66.174852 67.885165) - (xy 66.260481 67.898727) - (xy 65.57211 68.587099) - (xy 65.643503 68.637088) - (xy 65.850929 68.733812) - (xy 65.929528 68.754873) - (xy 65.980842 68.788197) - (xy 66.002769 68.845318) - (xy 65.986934 68.904419) - (xy 65.939384 68.942924) - (xy 65.903905 68.9495) - (xy 65.475326 68.9495) - (xy 65.475325 68.9495) - (xy 65.475315 68.949501) - (xy 65.402263 68.964033) - (xy 65.402257 68.964035) - (xy 65.3194 69.019397) - (xy 65.319397 69.0194) - (xy 65.264035 69.102257) - (xy 65.264033 69.102263) - (xy 65.249501 69.175315) - (xy 65.2495 69.175327) - (xy 65.2495 70.824672) - (xy 65.249501 70.824684) - (xy 65.264033 70.897736) - (xy 65.264035 70.897742) - (xy 65.319397 70.980599) - (xy 65.319399 70.980601) - (xy 65.40226 71.035966) - (xy 65.457808 71.047015) - (xy 65.475315 71.050498) - (xy 65.47532 71.050498) - (xy 65.475326 71.0505) - (xy 65.475327 71.0505) - (xy 67.124673 71.0505) - (xy 67.124674 71.0505) - (xy 67.19774 71.035966) - (xy 67.280601 70.980601) - (xy 67.335966 70.89774) - (xy 67.3505 70.824674) - (xy 67.3505 69.175326) - (xy 67.335966 69.10226) - (xy 67.280601 69.019399) - (xy 67.280599 69.019397) - (xy 67.197742 68.964035) - (xy 67.19774 68.964034) - (xy 67.197737 68.964033) - (xy 67.197736 68.964033) - (xy 67.124684 68.949501) - (xy 67.124674 68.9495) - (xy 66.696095 68.9495) - (xy 66.637904 68.930593) - (xy 66.60194 68.881093) - (xy 66.60194 68.819907) - (xy 66.637904 68.770407) - (xy 66.670472 68.754873) - (xy 66.74907 68.733812) - (xy 66.956498 68.637087) - (xy 66.956499 68.637087) - (xy 67.027888 68.587099) - (xy 66.339516 67.898727) - (xy 66.425148 67.885165) - (xy 66.538045 67.827641) - (xy 66.627641 67.738045) - (xy 66.685165 67.625148) - (xy 66.698727 67.539516) - (xy 67.387099 68.227888) - (xy 67.437087 68.156499) - (xy 67.437087 68.156498) - (xy 67.533812 67.949069) - (xy 67.59305 67.727991) - (xy 67.612996 67.500003) - (xy 67.612996 67.499996) - (xy 67.59305 67.272008) - (xy 67.533812 67.05093) - (xy 67.437088 66.843503) - (xy 67.387099 66.77211) - (xy 66.698727 67.460481) - (xy 66.685165 67.374852) - (xy 66.627641 67.261955) - (xy 66.538045 67.172359) - (xy 66.425148 67.114835) - (xy 66.339514 67.101272) - (xy 67.027888 66.412899) - (xy 66.956495 66.36291) - (xy 66.749069 66.266187) - (xy 66.527991 66.206949) - (xy 66.300003 66.187004) - (xy 66.299997 66.187004) - (xy 66.072008 66.206949) - (xy 65.850925 66.266188) - (xy 65.64351 66.362907) - (xy 65.643493 66.362917) - (xy 65.57211 66.412899) - (xy 66.260483 67.101272) - (xy 66.174852 67.114835) - (xy 66.061955 67.172359) - (xy 65.972359 67.261955) - (xy 65.914835 67.374852) - (xy 65.901272 67.460483) - (xy 65.212899 66.77211) - (xy 65.162917 66.843493) - (xy 65.162907 66.84351) - (xy 65.066188 67.050925) - (xy 65.006949 67.272008) - (xy 64.987004 67.499996) - (xy 64.987004 67.500003) - (xy 60.709159 67.500003) - (xy 60.641033 67.479337) - (xy 60.641028 67.479336) - (xy 60.440003 67.459538) - (xy 60.439997 67.459538) - (xy 60.238971 67.479336) - (xy 60.238966 67.479337) - (xy 60.045658 67.537977) - (xy 60.045653 67.537979) - (xy 59.867508 67.633199) - (xy 59.711358 67.761348) - (xy 59.711348 67.761358) - (xy 59.583199 67.917508) - (xy 59.487979 68.095653) - (xy 59.487977 68.095658) - (xy 59.429337 68.288966) - (xy 59.429336 68.288971) - (xy 59.409538 68.489996) - (xy 59.409538 68.490003) - (xy 56.390462 68.490003) - (xy 56.390462 68.489996) - (xy 56.370663 68.288971) - (xy 56.370662 68.288966) - (xy 56.352134 68.227888) - (xy 56.312023 68.095659) - (xy 56.31202 68.095653) - (xy 56.2168 67.917508) - (xy 56.088651 67.761358) - (xy 56.088647 67.761353) - (xy 56.040337 67.721706) - (xy 55.932491 67.633199) - (xy 55.754346 67.537979) - (xy 55.754341 67.537977) - (xy 55.561033 67.479337) - (xy 55.561028 67.479336) - (xy 55.360003 67.459538) - (xy 55.359997 67.459538) - (xy 55.158971 67.479336) - (xy 55.158966 67.479337) - (xy 54.965658 67.537977) - (xy 54.965653 67.537979) - (xy 54.787508 67.633199) - (xy 54.631358 67.761348) - (xy 54.631348 67.761358) - (xy 54.503199 67.917508) - (xy 54.407979 68.095653) - (xy 54.407977 68.095658) - (xy 54.349337 68.288966) - (xy 54.349336 68.288971) - (xy 54.329538 68.489996) - (xy 54.329538 68.490003) - (xy 50.0755 68.490003) - (xy 50.0755 65.950003) - (xy 54.329538 65.950003) - (xy 54.349336 66.151028) - (xy 54.349337 66.151033) - (xy 54.407977 66.344341) - (xy 54.407979 66.344346) - (xy 54.503199 66.522491) - (xy 54.631348 66.678641) - (xy 54.631353 66.678647) - (xy 54.631358 66.678651) - (xy 54.787508 66.8068) - (xy 54.965653 66.90202) - (xy 54.965659 66.902023) - (xy 55.100037 66.942786) - (xy 55.158966 66.960662) - (xy 55.158971 66.960663) - (xy 55.359997 66.980462) - (xy 55.36 66.980462) - (xy 55.360003 66.980462) - (xy 55.561028 66.960663) - (xy 55.561033 66.960662) - (xy 55.754341 66.902023) - (xy 55.863843 66.843493) - (xy 55.932491 66.8068) - (xy 55.932492 66.806798) - (xy 55.932494 66.806798) - (xy 56.088647 66.678647) - (xy 56.216798 66.522494) - (xy 56.216988 66.52214) - (xy 56.302094 66.362917) - (xy 56.312023 66.344341) - (xy 56.370662 66.151033) - (xy 56.370663 66.151028) - (xy 56.390462 65.950003) - (xy 59.409538 65.950003) - (xy 59.429336 66.151028) - (xy 59.429337 66.151033) - (xy 59.487977 66.344341) - (xy 59.487979 66.344346) - (xy 59.583199 66.522491) - (xy 59.711348 66.678641) - (xy 59.711353 66.678647) - (xy 59.711358 66.678651) - (xy 59.867508 66.8068) - (xy 60.045653 66.90202) - (xy 60.045659 66.902023) - (xy 60.180037 66.942786) - (xy 60.238966 66.960662) - (xy 60.238971 66.960663) - (xy 60.439997 66.980462) - (xy 60.44 66.980462) - (xy 60.440003 66.980462) - (xy 60.641028 66.960663) - (xy 60.641033 66.960662) - (xy 60.834341 66.902023) - (xy 60.943843 66.843493) - (xy 61.012491 66.8068) - (xy 61.012492 66.806798) - (xy 61.012494 66.806798) - (xy 61.168647 66.678647) - (xy 61.296798 66.522494) - (xy 61.296988 66.52214) - (xy 61.382094 66.362917) - (xy 61.392023 66.344341) - (xy 61.450662 66.151033) - (xy 61.450663 66.151028) - (xy 61.470462 65.950003) - (xy 61.470462 65.949996) - (xy 61.450663 65.748971) - (xy 61.450662 65.748966) - (xy 61.432873 65.690327) - (xy 61.392023 65.555659) - (xy 61.39202 65.555653) - (xy 61.2968 65.377508) - (xy 61.168651 65.221358) - (xy 61.168647 65.221353) - (xy 61.140965 65.198635) - (xy 61.012491 65.093199) - (xy 60.834346 64.997979) - (xy 60.834341 64.997977) - (xy 60.641033 64.939337) - (xy 60.641028 64.939336) - (xy 60.440003 64.919538) - (xy 60.439997 64.919538) - (xy 60.238971 64.939336) - (xy 60.238966 64.939337) - (xy 60.045658 64.997977) - (xy 60.045653 64.997979) - (xy 59.867508 65.093199) - (xy 59.711358 65.221348) - (xy 59.711348 65.221358) - (xy 59.583199 65.377508) - (xy 59.487979 65.555653) - (xy 59.487977 65.555658) - (xy 59.429337 65.748966) - (xy 59.429336 65.748971) - (xy 59.409538 65.949996) - (xy 59.409538 65.950003) - (xy 56.390462 65.950003) - (xy 56.390462 65.949996) - (xy 56.370663 65.748971) - (xy 56.370662 65.748966) - (xy 56.352873 65.690327) - (xy 56.312023 65.555659) - (xy 56.31202 65.555653) - (xy 56.2168 65.377508) - (xy 56.088651 65.221358) - (xy 56.088647 65.221353) - (xy 56.060965 65.198635) - (xy 55.932491 65.093199) - (xy 55.754346 64.997979) - (xy 55.754341 64.997977) - (xy 55.561033 64.939337) - (xy 55.561028 64.939336) - (xy 55.360003 64.919538) - (xy 55.359997 64.919538) - (xy 55.158971 64.939336) - (xy 55.158966 64.939337) - (xy 54.965658 64.997977) - (xy 54.965653 64.997979) - (xy 54.787508 65.093199) - (xy 54.631358 65.221348) - (xy 54.631348 65.221358) - (xy 54.503199 65.377508) - (xy 54.407979 65.555653) - (xy 54.407977 65.555658) - (xy 54.349337 65.748966) - (xy 54.349336 65.748971) - (xy 54.329538 65.949996) - (xy 54.329538 65.950003) - (xy 50.0755 65.950003) - (xy 50.0755 64.650515) - (xy 76.897 64.650515) - (xy 76.907605 64.754321) - (xy 76.963342 64.922525) - (xy 77.056364 65.073337) - (xy 77.181662 65.198635) - (xy 77.332474 65.291657) - (xy 77.500678 65.347394) - (xy 77.604484 65.358) - (xy 78.245999 65.358) - (xy 78.246 65.357999) - (xy 78.246 64.518812) - (xy 78.344674 64.559685) - (xy 78.461003 64.575) - (xy 78.538997 64.575) - (xy 78.655326 64.559685) - (xy 78.754 64.518812) - (xy 78.754 65.357999) - (xy 78.754001 65.358) - (xy 79.395516 65.358) - (xy 79.499321 65.347394) - (xy 79.667525 65.291657) - (xy 79.818337 65.198635) - (xy 79.943635 65.073337) - (xy 80.036657 64.922525) - (xy 80.092394 64.754321) - (xy 80.103 64.650515) - (xy 80.103 64.234001) - (xy 80.102999 64.234) - (xy 79.038813 64.234) - (xy 79.079685 64.135326) - (xy 79.100134 63.98) - (xy 79.079685 63.824674) - (xy 79.038813 63.726) - (xy 80.102999 63.726) - (xy 80.103 63.725999) - (xy 80.103 63.309484) - (xy 80.092394 63.205678) - (xy 80.036657 63.037474) - (xy 79.943635 62.886662) - (xy 79.818337 62.761364) - (xy 79.667525 62.668342) - (xy 79.499321 62.612605) - (xy 79.395516 62.602) - (xy 79.324416 62.602) - (xy 79.266225 62.583093) - (xy 79.230261 62.533593) - (xy 79.230261 62.472407) - (xy 79.266225 62.422907) - (xy 79.279051 62.415005) - (xy 79.333544 62.386912) - (xy 79.333548 62.386908) - (xy 79.333551 62.386907) - (xy 79.501751 62.254633) - (xy 79.641882 62.092913) - (xy 79.641884 62.09291) - (xy 79.748879 61.90759) - (xy 79.818868 61.70537) - (xy 79.835407 61.590331) - (xy 79.862402 61.535425) - (xy 79.863329 61.534483) - (xy 81.857811 59.54) - (xy 85.02195 59.54) - (xy 85.042116 59.796245) - (xy 85.102122 60.046186) - (xy 85.200485 60.283656) - (xy 85.200491 60.283668) - (xy 85.334787 60.502819) - (xy 85.334791 60.502824) - (xy 85.336252 60.504535) - (xy 85.906806 59.93398) - (xy 85.952316 60.019822) - (xy 86.072009 60.160735) - (xy 86.219195 60.272623) - (xy 86.265269 60.293939) - (xy 85.695463 60.863746) - (xy 85.697179 60.865211) - (xy 85.916331 60.999508) - (xy 85.916343 60.999514) - (xy 86.153813 61.097877) - (xy 86.153812 61.097877) - (xy 86.403754 61.157883) - (xy 86.66 61.178049) - (xy 86.916245 61.157883) - (xy 87.166186 61.097877) - (xy 87.403656 60.999514) - (xy 87.403668 60.999508) - (xy 87.622818 60.865213) - (xy 87.624535 60.863746) - (xy 87.055076 60.294287) - (xy 87.177431 60.220669) - (xy 87.311658 60.093523) - (xy 87.415413 59.940495) - (xy 87.416636 59.937425) - (xy 87.983746 60.504535) - (xy 87.985213 60.502818) - (xy 88.119508 60.283668) - (xy 88.119514 60.283656) - (xy 88.217877 60.046186) - (xy 88.277883 59.796245) - (xy 88.298049 59.54) - (xy 90.10195 59.54) - (xy 90.122116 59.796245) - (xy 90.182122 60.046186) - (xy 90.280485 60.283656) - (xy 90.280491 60.283668) - (xy 90.414787 60.502819) - (xy 90.414791 60.502824) - (xy 90.416252 60.504535) - (xy 90.986806 59.93398) - (xy 91.032316 60.019822) - (xy 91.152009 60.160735) - (xy 91.299195 60.272623) - (xy 91.345269 60.293939) - (xy 90.775463 60.863746) - (xy 90.777179 60.865211) - (xy 90.996331 60.999508) - (xy 90.996343 60.999514) - (xy 91.233813 61.097877) - (xy 91.233812 61.097877) - (xy 91.483754 61.157883) - (xy 91.74 61.178049) - (xy 91.996245 61.157883) - (xy 92.246186 61.097877) - (xy 92.483656 60.999514) - (xy 92.483668 60.999508) - (xy 92.702818 60.865213) - (xy 92.704535 60.863746) - (xy 92.135076 60.294287) - (xy 92.257431 60.220669) - (xy 92.391658 60.093523) - (xy 92.495413 59.940495) - (xy 92.496636 59.937425) - (xy 93.063746 60.504535) - (xy 93.065213 60.502818) - (xy 93.199508 60.283668) - (xy 93.199514 60.283656) - (xy 93.297877 60.046186) - (xy 93.357883 59.796245) - (xy 93.378049 59.54) - (xy 114.42195 59.54) - (xy 114.442116 59.796245) - (xy 114.502122 60.046186) - (xy 114.600485 60.283656) - (xy 114.600491 60.283668) - (xy 114.734787 60.502819) - (xy 114.734791 60.502824) - (xy 114.736252 60.504535) - (xy 115.306806 59.93398) - (xy 115.352316 60.019822) - (xy 115.472009 60.160735) - (xy 115.619195 60.272623) - (xy 115.665269 60.293939) - (xy 115.095463 60.863746) - (xy 115.097179 60.865211) - (xy 115.316331 60.999508) - (xy 115.316343 60.999514) - (xy 115.553813 61.097877) - (xy 115.553812 61.097877) - (xy 115.803754 61.157883) - (xy 116.06 61.178049) - (xy 116.316245 61.157883) - (xy 116.566186 61.097877) - (xy 116.803656 60.999514) - (xy 116.803668 60.999508) - (xy 117.022818 60.865213) - (xy 117.024535 60.863746) - (xy 116.455076 60.294287) - (xy 116.577431 60.220669) - (xy 116.711658 60.093523) - (xy 116.815413 59.940495) - (xy 116.816636 59.937425) - (xy 117.383746 60.504535) - (xy 117.385213 60.502818) - (xy 117.519508 60.283668) - (xy 117.519514 60.283656) - (xy 117.617877 60.046186) - (xy 117.677883 59.796245) - (xy 117.698049 59.54) - (xy 119.50195 59.54) - (xy 119.522116 59.796245) - (xy 119.582122 60.046186) - (xy 119.680485 60.283656) - (xy 119.680491 60.283668) - (xy 119.814787 60.502819) - (xy 119.814791 60.502824) - (xy 119.816252 60.504535) - (xy 120.386806 59.93398) - (xy 120.432316 60.019822) - (xy 120.552009 60.160735) - (xy 120.699195 60.272623) - (xy 120.745269 60.293939) - (xy 120.175463 60.863746) - (xy 120.177179 60.865211) - (xy 120.396331 60.999508) - (xy 120.396343 60.999514) - (xy 120.633813 61.097877) - (xy 120.633812 61.097877) - (xy 120.883754 61.157883) - (xy 121.14 61.178049) - (xy 121.396245 61.157883) - (xy 121.646186 61.097877) - (xy 121.883656 60.999514) - (xy 121.883668 60.999508) - (xy 122.102818 60.865213) - (xy 122.104535 60.863746) - (xy 121.535076 60.294287) - (xy 121.657431 60.220669) - (xy 121.791658 60.093523) - (xy 121.895413 59.940495) - (xy 121.896636 59.937425) - (xy 122.463746 60.504535) - (xy 122.465213 60.502818) - (xy 122.599508 60.283668) - (xy 122.599514 60.283656) - (xy 122.697877 60.046186) - (xy 122.757883 59.796245) - (xy 122.778049 59.54) - (xy 134.92195 59.54) - (xy 134.942116 59.796245) - (xy 135.002122 60.046186) - (xy 135.100485 60.283656) - (xy 135.100491 60.283668) - (xy 135.234787 60.502819) - (xy 135.234791 60.502824) - (xy 135.236252 60.504535) - (xy 135.806806 59.93398) - (xy 135.852316 60.019822) - (xy 135.972009 60.160735) - (xy 136.119195 60.272623) - (xy 136.165269 60.293939) - (xy 135.595463 60.863746) - (xy 135.597179 60.865211) - (xy 135.816331 60.999508) - (xy 135.816343 60.999514) - (xy 136.053813 61.097877) - (xy 136.053812 61.097877) - (xy 136.303754 61.157883) - (xy 136.56 61.178049) - (xy 136.816245 61.157883) - (xy 137.066186 61.097877) - (xy 137.303656 60.999514) - (xy 137.303668 60.999508) - (xy 137.522818 60.865213) - (xy 137.524535 60.863746) - (xy 136.955076 60.294287) - (xy 137.077431 60.220669) - (xy 137.211658 60.093523) - (xy 137.315413 59.940495) - (xy 137.316636 59.937425) - (xy 137.883746 60.504535) - (xy 137.885213 60.502818) - (xy 138.019508 60.283668) - (xy 138.019514 60.283656) - (xy 138.117877 60.046186) - (xy 138.177883 59.796245) - (xy 138.198049 59.54) - (xy 140.00195 59.54) - (xy 140.022116 59.796245) - (xy 140.082122 60.046186) - (xy 140.180485 60.283656) - (xy 140.180491 60.283668) - (xy 140.314787 60.502819) - (xy 140.314791 60.502824) - (xy 140.316252 60.504535) - (xy 140.886806 59.93398) - (xy 140.932316 60.019822) - (xy 141.052009 60.160735) - (xy 141.199195 60.272623) - (xy 141.245269 60.293939) - (xy 140.675463 60.863746) - (xy 140.677179 60.865211) - (xy 140.896331 60.999508) - (xy 140.896343 60.999514) - (xy 141.133813 61.097877) - (xy 141.133812 61.097877) - (xy 141.383754 61.157883) - (xy 141.64 61.178049) - (xy 141.896245 61.157883) - (xy 142.146186 61.097877) - (xy 142.383656 60.999514) - (xy 142.383668 60.999508) - (xy 142.602818 60.865213) - (xy 142.604535 60.863746) - (xy 142.035076 60.294287) - (xy 142.157431 60.220669) - (xy 142.291658 60.093523) - (xy 142.395413 59.940495) - (xy 142.396636 59.937425) - (xy 142.963746 60.504535) - (xy 142.965213 60.502818) - (xy 143.099508 60.283668) - (xy 143.099514 60.283656) - (xy 143.197877 60.046186) - (xy 143.257883 59.796245) - (xy 143.278049 59.54) - (xy 143.270179 59.44) - (xy 148.92195 59.44) - (xy 148.942116 59.696245) - (xy 149.002122 59.946186) - (xy 149.100485 60.183656) - (xy 149.100491 60.183668) - (xy 149.234787 60.402819) - (xy 149.234791 60.402824) - (xy 149.236252 60.404535) - (xy 149.806806 59.83398) - (xy 149.852316 59.919822) - (xy 149.972009 60.060735) - (xy 150.119195 60.172623) - (xy 150.165269 60.193939) - (xy 149.595463 60.763746) - (xy 149.597179 60.765211) - (xy 149.816331 60.899508) - (xy 149.816343 60.899514) - (xy 150.053813 60.997877) - (xy 150.053812 60.997877) - (xy 150.303754 61.057883) - (xy 150.56 61.078049) - (xy 150.816245 61.057883) - (xy 151.066186 60.997877) - (xy 151.303656 60.899514) - (xy 151.303668 60.899508) - (xy 151.522818 60.765213) - (xy 151.524535 60.763746) - (xy 150.955076 60.194287) - (xy 151.077431 60.120669) - (xy 151.211658 59.993523) - (xy 151.315413 59.840495) - (xy 151.316636 59.837425) - (xy 151.883746 60.404535) - (xy 151.885213 60.402818) - (xy 152.019508 60.183668) - (xy 152.019514 60.183656) - (xy 152.117877 59.946186) - (xy 152.177883 59.696245) - (xy 152.198049 59.44) - (xy 154.00195 59.44) - (xy 154.022116 59.696245) - (xy 154.082122 59.946186) - (xy 154.180485 60.183656) - (xy 154.180491 60.183668) - (xy 154.314787 60.402819) - (xy 154.314791 60.402824) - (xy 154.316252 60.404535) - (xy 154.886806 59.83398) - (xy 154.932316 59.919822) - (xy 155.052009 60.060735) - (xy 155.199195 60.172623) - (xy 155.245269 60.193939) - (xy 154.675463 60.763746) - (xy 154.677179 60.765211) - (xy 154.896331 60.899508) - (xy 154.896343 60.899514) - (xy 155.133813 60.997877) - (xy 155.133812 60.997877) - (xy 155.383754 61.057883) - (xy 155.64 61.078049) - (xy 155.896245 61.057883) - (xy 156.146186 60.997877) - (xy 156.383656 60.899514) - (xy 156.383668 60.899508) - (xy 156.602818 60.765213) - (xy 156.604535 60.763746) - (xy 156.035076 60.194287) - (xy 156.157431 60.120669) - (xy 156.291658 59.993523) - (xy 156.395413 59.840495) - (xy 156.396636 59.837425) - (xy 156.963746 60.404535) - (xy 156.965213 60.402818) - (xy 157.099508 60.183668) - (xy 157.099514 60.183656) - (xy 157.197877 59.946186) - (xy 157.257883 59.696245) - (xy 157.278049 59.44) - (xy 162.92195 59.44) - (xy 162.942116 59.696245) - (xy 163.002122 59.946186) - (xy 163.100485 60.183656) - (xy 163.100491 60.183668) - (xy 163.234787 60.402819) - (xy 163.234791 60.402824) - (xy 163.236252 60.404535) - (xy 163.806806 59.83398) - (xy 163.852316 59.919822) - (xy 163.972009 60.060735) - (xy 164.119195 60.172623) - (xy 164.165269 60.193939) - (xy 163.595463 60.763746) - (xy 163.597179 60.765211) - (xy 163.816331 60.899508) - (xy 163.816343 60.899514) - (xy 164.053813 60.997877) - (xy 164.053812 60.997877) - (xy 164.303754 61.057883) - (xy 164.56 61.078049) - (xy 164.816245 61.057883) - (xy 165.066186 60.997877) - (xy 165.303656 60.899514) - (xy 165.303668 60.899508) - (xy 165.522818 60.765213) - (xy 165.524535 60.763746) - (xy 164.955076 60.194287) - (xy 165.077431 60.120669) - (xy 165.211658 59.993523) - (xy 165.315413 59.840495) - (xy 165.316636 59.837425) - (xy 165.883746 60.404535) - (xy 165.885213 60.402818) - (xy 166.019508 60.183668) - (xy 166.019514 60.183656) - (xy 166.117877 59.946186) - (xy 166.177883 59.696245) - (xy 166.198049 59.44) - (xy 168.00195 59.44) - (xy 168.022116 59.696245) - (xy 168.082122 59.946186) - (xy 168.180485 60.183656) - (xy 168.180491 60.183668) - (xy 168.314787 60.402819) - (xy 168.314791 60.402824) - (xy 168.316252 60.404535) - (xy 168.886806 59.83398) - (xy 168.932316 59.919822) - (xy 169.052009 60.060735) - (xy 169.199195 60.172623) - (xy 169.245269 60.193939) - (xy 168.675463 60.763746) - (xy 168.677179 60.765211) - (xy 168.896331 60.899508) - (xy 168.896343 60.899514) - (xy 169.133813 60.997877) - (xy 169.133812 60.997877) - (xy 169.383754 61.057883) - (xy 169.64 61.078049) - (xy 169.896245 61.057883) - (xy 170.146186 60.997877) - (xy 170.383656 60.899514) - (xy 170.383668 60.899508) - (xy 170.602818 60.765213) - (xy 170.604535 60.763746) - (xy 170.035076 60.194287) - (xy 170.157431 60.120669) - (xy 170.291658 59.993523) - (xy 170.395413 59.840495) - (xy 170.396636 59.837425) - (xy 170.963746 60.404535) - (xy 170.965213 60.402818) - (xy 171.099508 60.183668) - (xy 171.099514 60.183656) - (xy 171.197877 59.946186) - (xy 171.257883 59.696245) - (xy 171.278049 59.44) - (xy 176.92195 59.44) - (xy 176.942116 59.696245) - (xy 177.002122 59.946186) - (xy 177.100485 60.183656) - (xy 177.100491 60.183668) - (xy 177.234787 60.402819) - (xy 177.234791 60.402824) - (xy 177.236252 60.404535) - (xy 177.806806 59.83398) - (xy 177.852316 59.919822) - (xy 177.972009 60.060735) - (xy 178.119195 60.172623) - (xy 178.165269 60.193939) - (xy 177.595463 60.763746) - (xy 177.597179 60.765211) - (xy 177.816331 60.899508) - (xy 177.816343 60.899514) - (xy 178.053813 60.997877) - (xy 178.053812 60.997877) - (xy 178.303754 61.057883) - (xy 178.56 61.078049) - (xy 178.816245 61.057883) - (xy 179.066186 60.997877) - (xy 179.303656 60.899514) - (xy 179.303668 60.899508) - (xy 179.522818 60.765213) - (xy 179.524535 60.763746) - (xy 178.955076 60.194287) - (xy 179.077431 60.120669) - (xy 179.211658 59.993523) - (xy 179.315413 59.840495) - (xy 179.316636 59.837425) - (xy 179.883746 60.404535) - (xy 179.885213 60.402818) - (xy 180.019508 60.183668) - (xy 180.019514 60.183656) - (xy 180.117877 59.946186) - (xy 180.177883 59.696245) - (xy 180.198049 59.44) - (xy 182.00195 59.44) - (xy 182.022116 59.696245) - (xy 182.082122 59.946186) - (xy 182.180485 60.183656) - (xy 182.180491 60.183668) - (xy 182.314787 60.402819) - (xy 182.314791 60.402824) - (xy 182.316252 60.404535) - (xy 182.886806 59.83398) - (xy 182.932316 59.919822) - (xy 183.052009 60.060735) - (xy 183.199195 60.172623) - (xy 183.245269 60.193939) - (xy 182.675463 60.763746) - (xy 182.677179 60.765211) - (xy 182.896331 60.899508) - (xy 182.896343 60.899514) - (xy 183.133813 60.997877) - (xy 183.133812 60.997877) - (xy 183.383754 61.057883) - (xy 183.64 61.078049) - (xy 183.896245 61.057883) - (xy 184.146186 60.997877) - (xy 184.383656 60.899514) - (xy 184.383668 60.899508) - (xy 184.602818 60.765213) - (xy 184.604535 60.763746) - (xy 184.035076 60.194287) - (xy 184.157431 60.120669) - (xy 184.291658 59.993523) - (xy 184.395413 59.840495) - (xy 184.396636 59.837425) - (xy 184.963746 60.404535) - (xy 184.965213 60.402818) - (xy 185.099508 60.183668) - (xy 185.099514 60.183656) - (xy 185.197877 59.946186) - (xy 185.257883 59.696245) - (xy 185.278049 59.44) - (xy 185.257883 59.183754) - (xy 185.197877 58.933813) - (xy 185.099514 58.696343) - (xy 185.099508 58.696331) - (xy 184.965211 58.477179) - (xy 184.963746 58.475463) - (xy 184.393192 59.046016) - (xy 184.347684 58.960178) - (xy 184.227991 58.819265) - (xy 184.080805 58.707377) - (xy 184.034727 58.686059) - (xy 184.604535 58.116252) - (xy 184.602824 58.114791) - (xy 184.602819 58.114787) - (xy 184.383668 57.980491) - (xy 184.383656 57.980485) - (xy 184.146186 57.882122) - (xy 184.146187 57.882122) - (xy 183.896245 57.822116) - (xy 183.64 57.80195) - (xy 183.383754 57.822116) - (xy 183.133813 57.882122) - (xy 182.896343 57.980485) - (xy 182.896331 57.980491) - (xy 182.677184 58.114785) - (xy 182.677176 58.114791) - (xy 182.675463 58.116252) - (xy 183.244923 58.685712) - (xy 183.122569 58.759331) - (xy 182.988342 58.886477) - (xy 182.884587 59.039505) - (xy 182.883363 59.042574) - (xy 182.316252 58.475463) - (xy 182.314791 58.477176) - (xy 182.314785 58.477184) - (xy 182.180491 58.696331) - (xy 182.180485 58.696343) - (xy 182.082122 58.933813) - (xy 182.022116 59.183754) - (xy 182.00195 59.44) - (xy 180.198049 59.44) - (xy 180.177883 59.183754) - (xy 180.117877 58.933813) - (xy 180.019514 58.696343) - (xy 180.019508 58.696331) - (xy 179.885211 58.477179) - (xy 179.883746 58.475463) - (xy 179.313192 59.046016) - (xy 179.267684 58.960178) - (xy 179.147991 58.819265) - (xy 179.000805 58.707377) - (xy 178.954727 58.686059) - (xy 179.524535 58.116252) - (xy 179.522824 58.114791) - (xy 179.522819 58.114787) - (xy 179.303668 57.980491) - (xy 179.303656 57.980485) - (xy 179.066186 57.882122) - (xy 179.066187 57.882122) - (xy 178.816245 57.822116) - (xy 178.56 57.80195) - (xy 178.303754 57.822116) - (xy 178.053813 57.882122) - (xy 177.816343 57.980485) - (xy 177.816331 57.980491) - (xy 177.597184 58.114785) - (xy 177.597176 58.114791) - (xy 177.595463 58.116252) - (xy 178.164923 58.685712) - (xy 178.042569 58.759331) - (xy 177.908342 58.886477) - (xy 177.804587 59.039505) - (xy 177.803363 59.042574) - (xy 177.236252 58.475463) - (xy 177.234791 58.477176) - (xy 177.234785 58.477184) - (xy 177.100491 58.696331) - (xy 177.100485 58.696343) - (xy 177.002122 58.933813) - (xy 176.942116 59.183754) - (xy 176.92195 59.44) - (xy 171.278049 59.44) - (xy 171.257883 59.183754) - (xy 171.197877 58.933813) - (xy 171.099514 58.696343) - (xy 171.099508 58.696331) - (xy 170.965211 58.477179) - (xy 170.963746 58.475463) - (xy 170.393192 59.046016) - (xy 170.347684 58.960178) - (xy 170.227991 58.819265) - (xy 170.080805 58.707377) - (xy 170.034727 58.686059) - (xy 170.604535 58.116252) - (xy 170.602824 58.114791) - (xy 170.602819 58.114787) - (xy 170.383668 57.980491) - (xy 170.383656 57.980485) - (xy 170.146186 57.882122) - (xy 170.146187 57.882122) - (xy 169.896245 57.822116) - (xy 169.64 57.80195) - (xy 169.383754 57.822116) - (xy 169.133813 57.882122) - (xy 168.896343 57.980485) - (xy 168.896331 57.980491) - (xy 168.677184 58.114785) - (xy 168.677176 58.114791) - (xy 168.675463 58.116252) - (xy 169.244923 58.685712) - (xy 169.122569 58.759331) - (xy 168.988342 58.886477) - (xy 168.884587 59.039505) - (xy 168.883363 59.042574) - (xy 168.316252 58.475463) - (xy 168.314791 58.477176) - (xy 168.314785 58.477184) - (xy 168.180491 58.696331) - (xy 168.180485 58.696343) - (xy 168.082122 58.933813) - (xy 168.022116 59.183754) - (xy 168.00195 59.44) - (xy 166.198049 59.44) - (xy 166.177883 59.183754) - (xy 166.117877 58.933813) - (xy 166.019514 58.696343) - (xy 166.019508 58.696331) - (xy 165.885211 58.477179) - (xy 165.883746 58.475463) - (xy 165.313192 59.046016) - (xy 165.267684 58.960178) - (xy 165.147991 58.819265) - (xy 165.000805 58.707377) - (xy 164.954727 58.686059) - (xy 165.524535 58.116252) - (xy 165.522824 58.114791) - (xy 165.522819 58.114787) - (xy 165.303668 57.980491) - (xy 165.303656 57.980485) - (xy 165.066186 57.882122) - (xy 165.066187 57.882122) - (xy 164.816245 57.822116) - (xy 164.56 57.80195) - (xy 164.303754 57.822116) - (xy 164.053813 57.882122) - (xy 163.816343 57.980485) - (xy 163.816331 57.980491) - (xy 163.597184 58.114785) - (xy 163.597176 58.114791) - (xy 163.595463 58.116252) - (xy 164.164923 58.685712) - (xy 164.042569 58.759331) - (xy 163.908342 58.886477) - (xy 163.804587 59.039505) - (xy 163.803363 59.042574) - (xy 163.236252 58.475463) - (xy 163.234791 58.477176) - (xy 163.234785 58.477184) - (xy 163.100491 58.696331) - (xy 163.100485 58.696343) - (xy 163.002122 58.933813) - (xy 162.942116 59.183754) - (xy 162.92195 59.44) - (xy 157.278049 59.44) - (xy 157.257883 59.183754) - (xy 157.197877 58.933813) - (xy 157.099514 58.696343) - (xy 157.099508 58.696331) - (xy 156.965211 58.477179) - (xy 156.963746 58.475463) - (xy 156.393192 59.046016) - (xy 156.347684 58.960178) - (xy 156.227991 58.819265) - (xy 156.080805 58.707377) - (xy 156.034727 58.686059) - (xy 156.604535 58.116252) - (xy 156.602824 58.114791) - (xy 156.602819 58.114787) - (xy 156.383668 57.980491) - (xy 156.383656 57.980485) - (xy 156.146186 57.882122) - (xy 156.146187 57.882122) - (xy 155.896245 57.822116) - (xy 155.64 57.80195) - (xy 155.383754 57.822116) - (xy 155.133813 57.882122) - (xy 154.896343 57.980485) - (xy 154.896331 57.980491) - (xy 154.677184 58.114785) - (xy 154.677176 58.114791) - (xy 154.675463 58.116252) - (xy 155.244923 58.685712) - (xy 155.122569 58.759331) - (xy 154.988342 58.886477) - (xy 154.884587 59.039505) - (xy 154.883363 59.042574) - (xy 154.316252 58.475463) - (xy 154.314791 58.477176) - (xy 154.314785 58.477184) - (xy 154.180491 58.696331) - (xy 154.180485 58.696343) - (xy 154.082122 58.933813) - (xy 154.022116 59.183754) - (xy 154.00195 59.44) - (xy 152.198049 59.44) - (xy 152.177883 59.183754) - (xy 152.117877 58.933813) - (xy 152.019514 58.696343) - (xy 152.019508 58.696331) - (xy 151.885211 58.477179) - (xy 151.883746 58.475463) - (xy 151.313192 59.046016) - (xy 151.267684 58.960178) - (xy 151.147991 58.819265) - (xy 151.000805 58.707377) - (xy 150.954727 58.686059) - (xy 151.524535 58.116252) - (xy 151.522824 58.114791) - (xy 151.522819 58.114787) - (xy 151.303668 57.980491) - (xy 151.303656 57.980485) - (xy 151.066186 57.882122) - (xy 151.066187 57.882122) - (xy 150.816245 57.822116) - (xy 150.56 57.80195) - (xy 150.303754 57.822116) - (xy 150.053813 57.882122) - (xy 149.816343 57.980485) - (xy 149.816331 57.980491) - (xy 149.597184 58.114785) - (xy 149.597176 58.114791) - (xy 149.595463 58.116252) - (xy 150.164923 58.685712) - (xy 150.042569 58.759331) - (xy 149.908342 58.886477) - (xy 149.804587 59.039505) - (xy 149.803363 59.042574) - (xy 149.236252 58.475463) - (xy 149.234791 58.477176) - (xy 149.234785 58.477184) - (xy 149.100491 58.696331) - (xy 149.100485 58.696343) - (xy 149.002122 58.933813) - (xy 148.942116 59.183754) - (xy 148.92195 59.44) - (xy 143.270179 59.44) - (xy 143.257883 59.283754) - (xy 143.197877 59.033813) - (xy 143.099514 58.796343) - (xy 143.099508 58.796331) - (xy 142.965211 58.577179) - (xy 142.963746 58.575463) - (xy 142.393192 59.146016) - (xy 142.347684 59.060178) - (xy 142.227991 58.919265) - (xy 142.080805 58.807377) - (xy 142.034727 58.786059) - (xy 142.604535 58.216252) - (xy 142.602824 58.214791) - (xy 142.602819 58.214787) - (xy 142.383668 58.080491) - (xy 142.383656 58.080485) - (xy 142.146186 57.982122) - (xy 142.146187 57.982122) - (xy 141.896245 57.922116) - (xy 141.64 57.90195) - (xy 141.383754 57.922116) - (xy 141.133813 57.982122) - (xy 140.896343 58.080485) - (xy 140.896331 58.080491) - (xy 140.677184 58.214785) - (xy 140.677176 58.214791) - (xy 140.675463 58.216252) - (xy 141.244923 58.785712) - (xy 141.122569 58.859331) - (xy 140.988342 58.986477) - (xy 140.884587 59.139505) - (xy 140.883363 59.142574) - (xy 140.316252 58.575463) - (xy 140.314791 58.577176) - (xy 140.314785 58.577184) - (xy 140.180491 58.796331) - (xy 140.180485 58.796343) - (xy 140.082122 59.033813) - (xy 140.022116 59.283754) - (xy 140.00195 59.54) - (xy 138.198049 59.54) - (xy 138.177883 59.283754) - (xy 138.117877 59.033813) - (xy 138.019514 58.796343) - (xy 138.019508 58.796331) - (xy 137.885211 58.577179) - (xy 137.883746 58.575463) - (xy 137.313192 59.146016) - (xy 137.267684 59.060178) - (xy 137.147991 58.919265) - (xy 137.000805 58.807377) - (xy 136.954727 58.786059) - (xy 137.524535 58.216252) - (xy 137.522824 58.214791) - (xy 137.522819 58.214787) - (xy 137.303668 58.080491) - (xy 137.303656 58.080485) - (xy 137.066186 57.982122) - (xy 137.066187 57.982122) - (xy 136.816245 57.922116) - (xy 136.56 57.90195) - (xy 136.303754 57.922116) - (xy 136.053813 57.982122) - (xy 135.816343 58.080485) - (xy 135.816331 58.080491) - (xy 135.597184 58.214785) - (xy 135.597176 58.214791) - (xy 135.595463 58.216252) - (xy 136.164923 58.785712) - (xy 136.042569 58.859331) - (xy 135.908342 58.986477) - (xy 135.804587 59.139505) - (xy 135.803363 59.142574) - (xy 135.236252 58.575463) - (xy 135.234791 58.577176) - (xy 135.234785 58.577184) - (xy 135.100491 58.796331) - (xy 135.100485 58.796343) - (xy 135.002122 59.033813) - (xy 134.942116 59.283754) - (xy 134.92195 59.54) - (xy 122.778049 59.54) - (xy 122.757883 59.283754) - (xy 122.697877 59.033813) - (xy 122.599514 58.796343) - (xy 122.599508 58.796331) - (xy 122.465211 58.577179) - (xy 122.463746 58.575463) - (xy 121.893192 59.146016) - (xy 121.847684 59.060178) - (xy 121.727991 58.919265) - (xy 121.580805 58.807377) - (xy 121.534727 58.786059) - (xy 122.104535 58.216252) - (xy 122.102824 58.214791) - (xy 122.102819 58.214787) - (xy 121.883668 58.080491) - (xy 121.883656 58.080485) - (xy 121.646186 57.982122) - (xy 121.646187 57.982122) - (xy 121.396245 57.922116) - (xy 121.14 57.90195) - (xy 120.883754 57.922116) - (xy 120.633813 57.982122) - (xy 120.396343 58.080485) - (xy 120.396331 58.080491) - (xy 120.177184 58.214785) - (xy 120.177176 58.214791) - (xy 120.175463 58.216252) - (xy 120.744923 58.785712) - (xy 120.622569 58.859331) - (xy 120.488342 58.986477) - (xy 120.384587 59.139505) - (xy 120.383363 59.142574) - (xy 119.816252 58.575463) - (xy 119.814791 58.577176) - (xy 119.814785 58.577184) - (xy 119.680491 58.796331) - (xy 119.680485 58.796343) - (xy 119.582122 59.033813) - (xy 119.522116 59.283754) - (xy 119.50195 59.54) - (xy 117.698049 59.54) - (xy 117.677883 59.283754) - (xy 117.617877 59.033813) - (xy 117.519514 58.796343) - (xy 117.519508 58.796331) - (xy 117.385211 58.577179) - (xy 117.383746 58.575463) - (xy 116.813192 59.146016) - (xy 116.767684 59.060178) - (xy 116.647991 58.919265) - (xy 116.500805 58.807377) - (xy 116.454727 58.786059) - (xy 117.024535 58.216252) - (xy 117.022824 58.214791) - (xy 117.022819 58.214787) - (xy 116.803668 58.080491) - (xy 116.803656 58.080485) - (xy 116.566186 57.982122) - (xy 116.566187 57.982122) - (xy 116.316245 57.922116) - (xy 116.06 57.90195) - (xy 115.803754 57.922116) - (xy 115.553813 57.982122) - (xy 115.316343 58.080485) - (xy 115.316331 58.080491) - (xy 115.097184 58.214785) - (xy 115.097176 58.214791) - (xy 115.095463 58.216252) - (xy 115.664923 58.785712) - (xy 115.542569 58.859331) - (xy 115.408342 58.986477) - (xy 115.304587 59.139505) - (xy 115.303363 59.142574) - (xy 114.736252 58.575463) - (xy 114.734791 58.577176) - (xy 114.734785 58.577184) - (xy 114.600491 58.796331) - (xy 114.600485 58.796343) - (xy 114.502122 59.033813) - (xy 114.442116 59.283754) - (xy 114.42195 59.54) - (xy 93.378049 59.54) - (xy 93.357883 59.283754) - (xy 93.297877 59.033813) - (xy 93.199514 58.796343) - (xy 93.199508 58.796331) - (xy 93.065211 58.577179) - (xy 93.063746 58.575463) - (xy 92.493192 59.146016) - (xy 92.447684 59.060178) - (xy 92.327991 58.919265) - (xy 92.180805 58.807377) - (xy 92.134727 58.786059) - (xy 92.704535 58.216252) - (xy 92.702824 58.214791) - (xy 92.702819 58.214787) - (xy 92.483668 58.080491) - (xy 92.483656 58.080485) - (xy 92.246186 57.982122) - (xy 92.246187 57.982122) - (xy 91.996245 57.922116) - (xy 91.74 57.90195) - (xy 91.483754 57.922116) - (xy 91.233813 57.982122) - (xy 90.996343 58.080485) - (xy 90.996331 58.080491) - (xy 90.777184 58.214785) - (xy 90.777176 58.214791) - (xy 90.775463 58.216252) - (xy 91.344923 58.785712) - (xy 91.222569 58.859331) - (xy 91.088342 58.986477) - (xy 90.984587 59.139505) - (xy 90.983363 59.142574) - (xy 90.416252 58.575463) - (xy 90.414791 58.577176) - (xy 90.414785 58.577184) - (xy 90.280491 58.796331) - (xy 90.280485 58.796343) - (xy 90.182122 59.033813) - (xy 90.122116 59.283754) - (xy 90.10195 59.54) - (xy 88.298049 59.54) - (xy 88.277883 59.283754) - (xy 88.217877 59.033813) - (xy 88.119514 58.796343) - (xy 88.119508 58.796331) - (xy 87.985211 58.577179) - (xy 87.983746 58.575463) - (xy 87.413192 59.146016) - (xy 87.367684 59.060178) - (xy 87.247991 58.919265) - (xy 87.100805 58.807377) - (xy 87.054727 58.786059) - (xy 87.624535 58.216252) - (xy 87.622824 58.214791) - (xy 87.622819 58.214787) - (xy 87.403668 58.080491) - (xy 87.403656 58.080485) - (xy 87.166186 57.982122) - (xy 87.166187 57.982122) - (xy 86.916245 57.922116) - (xy 86.66 57.90195) - (xy 86.403754 57.922116) - (xy 86.153813 57.982122) - (xy 85.916343 58.080485) - (xy 85.916331 58.080491) - (xy 85.697184 58.214785) - (xy 85.697176 58.214791) - (xy 85.695463 58.216252) - (xy 86.264923 58.785712) - (xy 86.142569 58.859331) - (xy 86.008342 58.986477) - (xy 85.904587 59.139505) - (xy 85.903363 59.142574) - (xy 85.336252 58.575463) - (xy 85.334791 58.577176) - (xy 85.334785 58.577184) - (xy 85.200491 58.796331) - (xy 85.200485 58.796343) - (xy 85.102122 59.033813) - (xy 85.042116 59.283754) - (xy 85.02195 59.54) - (xy 81.857811 59.54) - (xy 82.008331 59.38948) - (xy 82.024813 59.376201) - (xy 82.024918 59.376133) - (xy 82.031128 59.372143) - (xy 82.065402 59.332586) - (xy 82.067776 59.330035) - (xy 82.07922 59.318593) - (xy 82.0889 59.30566) - (xy 82.091116 59.302911) - (xy 82.109216 59.282023) - (xy 82.125377 59.263373) - (xy 82.128492 59.256549) - (xy 82.139296 59.238342) - (xy 82.139921 59.237506) - (xy 82.143796 59.232331) - (xy 82.162084 59.183295) - (xy 82.163432 59.180043) - (xy 82.185165 59.132457) - (xy 82.186233 59.125022) - (xy 82.191467 59.104515) - (xy 82.194091 59.097483) - (xy 82.197824 59.045272) - (xy 82.198199 59.041799) - (xy 82.2005 59.025799) - (xy 82.2005 59.009651) - (xy 82.200626 59.006118) - (xy 82.200765 59.00416) - (xy 82.204359 58.953927) - (xy 82.202762 58.946585) - (xy 82.2005 58.925542) - (xy 82.2005 57.000003) - (xy 87.919628 57.000003) - (xy 87.939078 57.222326) - (xy 87.939079 57.222333) - (xy 87.93908 57.222334) - (xy 87.996844 57.437913) - (xy 88.072426 57.599999) - (xy 88.091164 57.640184) - (xy 88.204433 57.80195) - (xy 88.219178 57.823007) - (xy 88.376993 57.980822) - (xy 88.376996 57.980824) - (xy 88.376997 57.980825) - (xy 88.393839 57.992618) - (xy 88.559814 58.108835) - (xy 88.762087 58.203156) - (xy 88.977666 58.26092) - (xy 88.97767 58.26092) - (xy 88.977673 58.260921) - (xy 89.199997 58.280372) - (xy 89.2 58.280372) - (xy 89.200003 58.280372) - (xy 89.422326 58.260921) - (xy 89.422327 58.26092) - (xy 89.422334 58.26092) - (xy 89.637913 58.203156) - (xy 89.840186 58.108835) - (xy 90.023007 57.980822) - (xy 90.180822 57.823007) - (xy 90.308835 57.640186) - (xy 90.403156 57.437913) - (xy 90.46092 57.222334) - (xy 90.462229 57.207379) - (xy 90.480372 57.000003) - (xy 90.480372 56.999996) - (xy 90.460921 56.777673) - (xy 90.46092 56.77767) - (xy 90.46092 56.777666) - (xy 90.403156 56.562087) - (xy 90.308835 56.359814) - (xy 90.18624 56.18473) - (xy 90.180825 56.176997) - (xy 90.180824 56.176996) - (xy 90.180822 56.176993) - (xy 90.023007 56.019178) - (xy 90.023003 56.019175) - (xy 90.023002 56.019174) - (xy 89.880664 55.919508) - (xy 89.840186 55.891165) - (xy 89.637913 55.796844) - (xy 89.422334 55.73908) - (xy 89.422333 55.739079) - (xy 89.422326 55.739078) - (xy 89.200003 55.719628) - (xy 89.199997 55.719628) - (xy 88.977673 55.739078) - (xy 88.762087 55.796844) - (xy 88.559815 55.891164) - (xy 88.376997 56.019174) - (xy 88.219174 56.176997) - (xy 88.091164 56.359815) - (xy 87.996844 56.562087) - (xy 87.939078 56.777673) - (xy 87.919628 56.999996) - (xy 87.919628 57.000003) - (xy 82.2005 57.000003) - (xy 82.2005 54.46) - (xy 85.02195 54.46) - (xy 85.042116 54.716245) - (xy 85.102122 54.966186) - (xy 85.200485 55.203656) - (xy 85.200491 55.203668) - (xy 85.334787 55.422819) - (xy 85.334791 55.422824) - (xy 85.336252 55.424535) - (xy 85.906806 54.85398) - (xy 85.952316 54.939822) - (xy 86.072009 55.080735) - (xy 86.219195 55.192623) - (xy 86.265269 55.213939) - (xy 85.695463 55.783746) - (xy 85.697179 55.785211) - (xy 85.916331 55.919508) - (xy 85.916343 55.919514) - (xy 86.153813 56.017877) - (xy 86.153812 56.017877) - (xy 86.403754 56.077883) - (xy 86.66 56.098049) - (xy 86.916245 56.077883) - (xy 87.166186 56.017877) - (xy 87.403656 55.919514) - (xy 87.403668 55.919508) - (xy 87.622818 55.785213) - (xy 87.624535 55.783746) - (xy 87.055076 55.214287) - (xy 87.177431 55.140669) - (xy 87.311658 55.013523) - (xy 87.415413 54.860495) - (xy 87.416636 54.857425) - (xy 87.983746 55.424535) - (xy 87.985213 55.422818) - (xy 88.119508 55.203668) - (xy 88.119514 55.203656) - (xy 88.217877 54.966186) - (xy 88.277883 54.716245) - (xy 88.298049 54.46) - (xy 90.10195 54.46) - (xy 90.122116 54.716245) - (xy 90.182122 54.966186) - (xy 90.280485 55.203656) - (xy 90.280491 55.203668) - (xy 90.414787 55.422819) - (xy 90.414791 55.422824) - (xy 90.416252 55.424535) - (xy 90.986806 54.85398) - (xy 91.032316 54.939822) - (xy 91.152009 55.080735) - (xy 91.299195 55.192623) - (xy 91.345269 55.213939) - (xy 90.775463 55.783746) - (xy 90.777179 55.785211) - (xy 90.996331 55.919508) - (xy 90.996343 55.919514) - (xy 91.233813 56.017877) - (xy 91.233812 56.017877) - (xy 91.483754 56.077883) - (xy 91.74 56.098049) - (xy 91.996245 56.077883) - (xy 92.246186 56.017877) - (xy 92.483656 55.919514) - (xy 92.483668 55.919508) - (xy 92.702818 55.785213) - (xy 92.704535 55.783746) - (xy 92.135076 55.214287) - (xy 92.257431 55.140669) - (xy 92.391658 55.013523) - (xy 92.495413 54.860495) - (xy 92.496636 54.857425) - (xy 93.063746 55.424535) - (xy 93.065213 55.422818) - (xy 93.199508 55.203668) - (xy 93.199514 55.203656) - (xy 93.297877 54.966186) - (xy 93.357883 54.716245) - (xy 93.378049 54.46) - (xy 93.357883 54.203754) - (xy 93.297877 53.953813) - (xy 93.199514 53.716343) - (xy 93.199508 53.716331) - (xy 93.065211 53.497179) - (xy 93.063746 53.495463) - (xy 92.493192 54.066016) - (xy 92.447684 53.980178) - (xy 92.327991 53.839265) - (xy 92.180805 53.727377) - (xy 92.134727 53.706059) - (xy 92.704535 53.136252) - (xy 92.702824 53.134791) - (xy 92.702819 53.134787) - (xy 92.483668 53.000491) - (xy 92.483656 53.000485) - (xy 92.246186 52.902122) - (xy 92.246187 52.902122) - (xy 91.996245 52.842116) - (xy 91.74 52.82195) - (xy 91.483754 52.842116) - (xy 91.233813 52.902122) - (xy 90.996343 53.000485) - (xy 90.996331 53.000491) - (xy 90.777184 53.134785) - (xy 90.777176 53.134791) - (xy 90.775463 53.136252) - (xy 91.344923 53.705712) - (xy 91.222569 53.779331) - (xy 91.088342 53.906477) - (xy 90.984587 54.059505) - (xy 90.983363 54.062574) - (xy 90.416252 53.495463) - (xy 90.414791 53.497176) - (xy 90.414785 53.497184) - (xy 90.280491 53.716331) - (xy 90.280485 53.716343) - (xy 90.182122 53.953813) - (xy 90.122116 54.203754) - (xy 90.10195 54.46) - (xy 88.298049 54.46) - (xy 88.277883 54.203754) - (xy 88.217877 53.953813) - (xy 88.119514 53.716343) - (xy 88.119508 53.716331) - (xy 87.985211 53.497179) - (xy 87.983746 53.495463) - (xy 87.413192 54.066016) - (xy 87.367684 53.980178) - (xy 87.247991 53.839265) - (xy 87.100805 53.727377) - (xy 87.054727 53.706059) - (xy 87.624535 53.136252) - (xy 87.622824 53.134791) - (xy 87.622819 53.134787) - (xy 87.403668 53.000491) - (xy 87.403656 53.000485) - (xy 87.166186 52.902122) - (xy 87.166187 52.902122) - (xy 86.916245 52.842116) - (xy 86.66 52.82195) - (xy 86.403754 52.842116) - (xy 86.153813 52.902122) - (xy 85.916343 53.000485) - (xy 85.916331 53.000491) - (xy 85.697184 53.134785) - (xy 85.697176 53.134791) - (xy 85.695463 53.136252) - (xy 86.264923 53.705712) - (xy 86.142569 53.779331) - (xy 86.008342 53.906477) - (xy 85.904587 54.059505) - (xy 85.903363 54.062574) - (xy 85.336252 53.495463) - (xy 85.334791 53.497176) - (xy 85.334785 53.497184) - (xy 85.200491 53.716331) - (xy 85.200485 53.716343) - (xy 85.102122 53.953813) - (xy 85.042116 54.203754) - (xy 85.02195 54.46) - (xy 82.2005 54.46) - (xy 82.2005 52.96832) - (xy 82.219407 52.910129) - (xy 82.22949 52.898322) - (xy 84.877811 50.25) - (xy 97.94475 50.25) - (xy 97.963669 50.393708) - (xy 97.96367 50.393709) - (xy 98.013358 50.51367) - (xy 98.019139 50.527625) - (xy 98.107379 50.642621) - (xy 98.222375 50.730861) - (xy 98.356291 50.78633) - (xy 98.494564 50.804534) - (xy 98.549789 50.830875) - (xy 98.551646 50.832683) - (xy 104.795504 57.076541) - (xy 104.823281 57.131058) - (xy 104.8245 57.146545) - (xy 104.8245 57.15146) - (xy 104.805593 57.209651) - (xy 104.804042 57.211728) - (xy 104.719139 57.322374) - (xy 104.719137 57.322378) - (xy 104.66367 57.45629) - (xy 104.663669 57.456291) - (xy 104.64475 57.599999) - (xy 104.64475 57.6) - (xy 104.663669 57.743708) - (xy 104.66367 57.743709) - (xy 104.719139 57.877625) - (xy 104.807379 57.992621) - (xy 104.922375 58.080861) - (xy 105.056291 58.13633) - (xy 105.2 58.15525) - (xy 105.343709 58.13633) - (xy 105.477625 58.080861) - (xy 105.592621 57.992621) - (xy 105.680861 57.877625) - (xy 105.73633 57.743709) - (xy 105.75525 57.6) - (xy 105.73633 57.456291) - (xy 105.680861 57.322375) - (xy 105.595957 57.211727) - (xy 105.575534 57.154052) - (xy 105.5755 57.15146) - (xy 105.5755 57.000003) - (xy 117.319628 57.000003) - (xy 117.339078 57.222326) - (xy 117.339079 57.222333) - (xy 117.33908 57.222334) - (xy 117.396844 57.437913) - (xy 117.472426 57.599999) - (xy 117.491164 57.640184) - (xy 117.604433 57.80195) - (xy 117.619178 57.823007) - (xy 117.776993 57.980822) - (xy 117.776996 57.980824) - (xy 117.776997 57.980825) - (xy 117.793839 57.992618) - (xy 117.959814 58.108835) - (xy 118.162087 58.203156) - (xy 118.377666 58.26092) - (xy 118.37767 58.26092) - (xy 118.377673 58.260921) - (xy 118.599997 58.280372) - (xy 118.6 58.280372) - (xy 118.600003 58.280372) - (xy 118.822326 58.260921) - (xy 118.822327 58.26092) - (xy 118.822334 58.26092) - (xy 119.037913 58.203156) - (xy 119.240186 58.108835) - (xy 119.423007 57.980822) - (xy 119.580822 57.823007) - (xy 119.708835 57.640186) - (xy 119.803156 57.437913) - (xy 119.86092 57.222334) - (xy 119.862229 57.207379) - (xy 119.880372 57.000003) - (xy 137.819628 57.000003) - (xy 137.839078 57.222326) - (xy 137.839079 57.222333) - (xy 137.83908 57.222334) - (xy 137.896844 57.437913) - (xy 137.972426 57.599999) - (xy 137.991164 57.640184) - (xy 138.104433 57.80195) - (xy 138.119178 57.823007) - (xy 138.276993 57.980822) - (xy 138.276996 57.980824) - (xy 138.276997 57.980825) - (xy 138.293839 57.992618) - (xy 138.459814 58.108835) - (xy 138.662087 58.203156) - (xy 138.877666 58.26092) - (xy 138.87767 58.26092) - (xy 138.877673 58.260921) - (xy 139.099997 58.280372) - (xy 139.1 58.280372) - (xy 139.100003 58.280372) - (xy 139.322326 58.260921) - (xy 139.322327 58.26092) - (xy 139.322334 58.26092) - (xy 139.537913 58.203156) - (xy 139.740186 58.108835) - (xy 139.923007 57.980822) - (xy 140.080822 57.823007) - (xy 140.208835 57.640186) - (xy 140.303156 57.437913) - (xy 140.36092 57.222334) - (xy 140.362229 57.207379) - (xy 140.380372 57.000003) - (xy 140.380372 56.999996) - (xy 140.371624 56.900003) - (xy 151.819628 56.900003) - (xy 151.839078 57.122326) - (xy 151.839079 57.122333) - (xy 151.83908 57.122334) - (xy 151.892681 57.322378) - (xy 151.896844 57.337912) - (xy 151.991164 57.540184) - (xy 152.061184 57.640184) - (xy 152.119178 57.723007) - (xy 152.276993 57.880822) - (xy 152.276996 57.880824) - (xy 152.276997 57.880825) - (xy 152.303709 57.899529) - (xy 152.459814 58.008835) - (xy 152.662087 58.103156) - (xy 152.877666 58.16092) - (xy 152.87767 58.16092) - (xy 152.877673 58.160921) - (xy 153.099997 58.180372) - (xy 153.1 58.180372) - (xy 153.100003 58.180372) - (xy 153.322326 58.160921) - (xy 153.322327 58.16092) - (xy 153.322334 58.16092) - (xy 153.537913 58.103156) - (xy 153.740186 58.008835) - (xy 153.923007 57.880822) - (xy 154.080822 57.723007) - (xy 154.208835 57.540186) - (xy 154.303156 57.337913) - (xy 154.36092 57.122334) - (xy 154.364927 57.076541) - (xy 154.380372 56.900003) - (xy 165.819628 56.900003) - (xy 165.839078 57.122326) - (xy 165.839079 57.122333) - (xy 165.83908 57.122334) - (xy 165.892681 57.322378) - (xy 165.896844 57.337912) - (xy 165.991164 57.540184) - (xy 166.061184 57.640184) - (xy 166.119178 57.723007) - (xy 166.276993 57.880822) - (xy 166.276996 57.880824) - (xy 166.276997 57.880825) - (xy 166.303709 57.899529) - (xy 166.459814 58.008835) - (xy 166.662087 58.103156) - (xy 166.877666 58.16092) - (xy 166.87767 58.16092) - (xy 166.877673 58.160921) - (xy 167.099997 58.180372) - (xy 167.1 58.180372) - (xy 167.100003 58.180372) - (xy 167.322326 58.160921) - (xy 167.322327 58.16092) - (xy 167.322334 58.16092) - (xy 167.537913 58.103156) - (xy 167.740186 58.008835) - (xy 167.923007 57.880822) - (xy 168.080822 57.723007) - (xy 168.208835 57.540186) - (xy 168.303156 57.337913) - (xy 168.36092 57.122334) - (xy 168.364927 57.076541) - (xy 168.380372 56.900003) - (xy 179.819628 56.900003) - (xy 179.839078 57.122326) - (xy 179.839079 57.122333) - (xy 179.83908 57.122334) - (xy 179.892681 57.322378) - (xy 179.896844 57.337912) - (xy 179.991164 57.540184) - (xy 180.061184 57.640184) - (xy 180.119178 57.723007) - (xy 180.276993 57.880822) - (xy 180.276996 57.880824) - (xy 180.276997 57.880825) - (xy 180.303709 57.899529) - (xy 180.459814 58.008835) - (xy 180.662087 58.103156) - (xy 180.877666 58.16092) - (xy 180.87767 58.16092) - (xy 180.877673 58.160921) - (xy 181.099997 58.180372) - (xy 181.1 58.180372) - (xy 181.100003 58.180372) - (xy 181.322326 58.160921) - (xy 181.322327 58.16092) - (xy 181.322334 58.16092) - (xy 181.537913 58.103156) - (xy 181.740186 58.008835) - (xy 181.923007 57.880822) - (xy 182.080822 57.723007) - (xy 182.208835 57.540186) - (xy 182.303156 57.337913) - (xy 182.36092 57.122334) - (xy 182.364927 57.076541) - (xy 182.380372 56.900003) - (xy 182.380372 56.899996) - (xy 182.360921 56.677673) - (xy 182.36092 56.67767) - (xy 182.36092 56.677666) - (xy 182.303156 56.462087) - (xy 182.208835 56.259814) - (xy 182.080822 56.076993) - (xy 181.923007 55.919178) - (xy 181.923003 55.919175) - (xy 181.923002 55.919174) - (xy 181.759587 55.80475) - (xy 181.740186 55.791165) - (xy 181.537913 55.696844) - (xy 181.322334 55.63908) - (xy 181.322333 55.639079) - (xy 181.322326 55.639078) - (xy 181.100003 55.619628) - (xy 181.099997 55.619628) - (xy 180.877673 55.639078) - (xy 180.662087 55.696844) - (xy 180.459815 55.791164) - (xy 180.276997 55.919174) - (xy 180.119174 56.076997) - (xy 179.991164 56.259815) - (xy 179.896844 56.462087) - (xy 179.839078 56.677673) - (xy 179.819628 56.899996) - (xy 179.819628 56.900003) - (xy 168.380372 56.900003) - (xy 168.380372 56.899996) - (xy 168.360921 56.677673) - (xy 168.36092 56.67767) - (xy 168.36092 56.677666) - (xy 168.303156 56.462087) - (xy 168.208835 56.259814) - (xy 168.080822 56.076993) - (xy 167.923007 55.919178) - (xy 167.923003 55.919175) - (xy 167.923002 55.919174) - (xy 167.759587 55.80475) - (xy 167.740186 55.791165) - (xy 167.537913 55.696844) - (xy 167.322334 55.63908) - (xy 167.322333 55.639079) - (xy 167.322326 55.639078) - (xy 167.100003 55.619628) - (xy 167.099997 55.619628) - (xy 166.877673 55.639078) - (xy 166.662087 55.696844) - (xy 166.459815 55.791164) - (xy 166.276997 55.919174) - (xy 166.119174 56.076997) - (xy 165.991164 56.259815) - (xy 165.896844 56.462087) - (xy 165.839078 56.677673) - (xy 165.819628 56.899996) - (xy 165.819628 56.900003) - (xy 154.380372 56.900003) - (xy 154.380372 56.899996) - (xy 154.360921 56.677673) - (xy 154.36092 56.67767) - (xy 154.36092 56.677666) - (xy 154.303156 56.462087) - (xy 154.208835 56.259814) - (xy 154.080822 56.076993) - (xy 153.923007 55.919178) - (xy 153.923003 55.919175) - (xy 153.923002 55.919174) - (xy 153.759587 55.80475) - (xy 153.740186 55.791165) - (xy 153.537913 55.696844) - (xy 153.322334 55.63908) - (xy 153.322333 55.639079) - (xy 153.322326 55.639078) - (xy 153.100003 55.619628) - (xy 153.099997 55.619628) - (xy 152.877673 55.639078) - (xy 152.662087 55.696844) - (xy 152.459815 55.791164) - (xy 152.276997 55.919174) - (xy 152.119174 56.076997) - (xy 151.991164 56.259815) - (xy 151.896844 56.462087) - (xy 151.839078 56.677673) - (xy 151.819628 56.899996) - (xy 151.819628 56.900003) - (xy 140.371624 56.900003) - (xy 140.360921 56.777673) - (xy 140.36092 56.77767) - (xy 140.36092 56.777666) - (xy 140.303156 56.562087) - (xy 140.208835 56.359814) - (xy 140.08624 56.18473) - (xy 140.080825 56.176997) - (xy 140.080824 56.176996) - (xy 140.080822 56.176993) - (xy 139.923007 56.019178) - (xy 139.923003 56.019175) - (xy 139.923002 56.019174) - (xy 139.780664 55.919508) - (xy 139.740186 55.891165) - (xy 139.537913 55.796844) - (xy 139.322334 55.73908) - (xy 139.322333 55.739079) - (xy 139.322326 55.739078) - (xy 139.100003 55.719628) - (xy 139.099997 55.719628) - (xy 138.877673 55.739078) - (xy 138.662087 55.796844) - (xy 138.459815 55.891164) - (xy 138.276997 56.019174) - (xy 138.119174 56.176997) - (xy 137.991164 56.359815) - (xy 137.896844 56.562087) - (xy 137.839078 56.777673) - (xy 137.819628 56.999996) - (xy 137.819628 57.000003) - (xy 119.880372 57.000003) - (xy 119.880372 56.999996) - (xy 119.860921 56.777673) - (xy 119.86092 56.77767) - (xy 119.86092 56.777666) - (xy 119.803156 56.562087) - (xy 119.708835 56.359814) - (xy 119.58624 56.18473) - (xy 119.580825 56.176997) - (xy 119.580824 56.176996) - (xy 119.580822 56.176993) - (xy 119.423007 56.019178) - (xy 119.423003 56.019175) - (xy 119.423002 56.019174) - (xy 119.280664 55.919508) - (xy 119.240186 55.891165) - (xy 119.037913 55.796844) - (xy 118.822334 55.73908) - (xy 118.822333 55.739079) - (xy 118.822326 55.739078) - (xy 118.600003 55.719628) - (xy 118.599997 55.719628) - (xy 118.377673 55.739078) - (xy 118.162087 55.796844) - (xy 117.959815 55.891164) - (xy 117.776997 56.019174) - (xy 117.619174 56.176997) - (xy 117.491164 56.359815) - (xy 117.396844 56.562087) - (xy 117.339078 56.777673) - (xy 117.319628 56.999996) - (xy 117.319628 57.000003) - (xy 105.5755 57.000003) - (xy 105.5755 56.99921) - (xy 105.577607 56.978894) - (xy 105.580367 56.965732) - (xy 105.575879 56.929733) - (xy 105.5755 56.923608) - (xy 105.5755 56.91888) - (xy 105.571658 56.895859) - (xy 105.565566 56.846993) - (xy 105.577131 56.78691) - (xy 105.621802 56.7451) - (xy 105.659726 56.735832) - (xy 105.665538 56.735591) - (xy 105.667764 56.7355) - (xy 105.991461 56.7355) - (xy 106.049652 56.754407) - (xy 106.051685 56.755925) - (xy 106.162375 56.840861) - (xy 106.296291 56.89633) - (xy 106.44 56.91525) - (xy 106.583709 56.89633) - (xy 106.717625 56.840861) - (xy 106.832621 56.752621) - (xy 106.920861 56.637625) - (xy 106.97633 56.503709) - (xy 106.99525 56.36) - (xy 106.97633 56.216291) - (xy 106.920861 56.082375) - (xy 106.832621 55.967379) - (xy 106.717625 55.879139) - (xy 106.717621 55.879137) - (xy 106.583709 55.82367) - (xy 106.583708 55.823669) - (xy 106.44 55.80475) - (xy 106.296291 55.823669) - (xy 106.29629 55.82367) - (xy 106.162378 55.879137) - (xy 106.162374 55.879139) - (xy 106.146702 55.891165) - (xy 106.051726 55.964042) - (xy 105.994053 55.984466) - (xy 105.991461 55.9845) - (xy 105.856545 55.9845) - (xy 105.798354 55.965593) - (xy 105.786541 55.955504) - (xy 104.291038 54.46) - (xy 114.42195 54.46) - (xy 114.442116 54.716245) - (xy 114.502122 54.966186) - (xy 114.600485 55.203656) - (xy 114.600491 55.203668) - (xy 114.734787 55.422819) - (xy 114.734791 55.422824) - (xy 114.736252 55.424535) - (xy 115.306806 54.85398) - (xy 115.352316 54.939822) - (xy 115.472009 55.080735) - (xy 115.619195 55.192623) - (xy 115.665269 55.213939) - (xy 115.095463 55.783746) - (xy 115.097179 55.785211) - (xy 115.316331 55.919508) - (xy 115.316343 55.919514) - (xy 115.553813 56.017877) - (xy 115.553812 56.017877) - (xy 115.803754 56.077883) - (xy 116.06 56.098049) - (xy 116.316245 56.077883) - (xy 116.566186 56.017877) - (xy 116.803656 55.919514) - (xy 116.803668 55.919508) - (xy 117.022818 55.785213) - (xy 117.024535 55.783746) - (xy 116.455076 55.214287) - (xy 116.577431 55.140669) - (xy 116.711658 55.013523) - (xy 116.815413 54.860495) - (xy 116.816636 54.857425) - (xy 117.383746 55.424535) - (xy 117.385213 55.422818) - (xy 117.519508 55.203668) - (xy 117.519514 55.203656) - (xy 117.617877 54.966186) - (xy 117.677883 54.716245) - (xy 117.698049 54.46) - (xy 119.50195 54.46) - (xy 119.522116 54.716245) - (xy 119.582122 54.966186) - (xy 119.680485 55.203656) - (xy 119.680491 55.203668) - (xy 119.814787 55.422819) - (xy 119.814791 55.422824) - (xy 119.816252 55.424535) - (xy 120.386806 54.85398) - (xy 120.432316 54.939822) - (xy 120.552009 55.080735) - (xy 120.699195 55.192623) - (xy 120.745269 55.213939) - (xy 120.175463 55.783746) - (xy 120.177179 55.785211) - (xy 120.396331 55.919508) - (xy 120.396343 55.919514) - (xy 120.633813 56.017877) - (xy 120.633812 56.017877) - (xy 120.883754 56.077883) - (xy 121.14 56.098049) - (xy 121.396245 56.077883) - (xy 121.646186 56.017877) - (xy 121.883656 55.919514) - (xy 121.883668 55.919508) - (xy 122.102818 55.785213) - (xy 122.104535 55.783746) - (xy 121.535076 55.214287) - (xy 121.657431 55.140669) - (xy 121.791658 55.013523) - (xy 121.895413 54.860495) - (xy 121.896636 54.857425) - (xy 122.463746 55.424535) - (xy 122.465213 55.422818) - (xy 122.599508 55.203668) - (xy 122.599514 55.203656) - (xy 122.697877 54.966186) - (xy 122.757883 54.716245) - (xy 122.778049 54.46) - (xy 134.92195 54.46) - (xy 134.942116 54.716245) - (xy 135.002122 54.966186) - (xy 135.100485 55.203656) - (xy 135.100491 55.203668) - (xy 135.234787 55.422819) - (xy 135.234791 55.422824) - (xy 135.236252 55.424535) - (xy 135.806806 54.85398) - (xy 135.852316 54.939822) - (xy 135.972009 55.080735) - (xy 136.119195 55.192623) - (xy 136.165269 55.213939) - (xy 135.595463 55.783746) - (xy 135.597179 55.785211) - (xy 135.816331 55.919508) - (xy 135.816343 55.919514) - (xy 136.053813 56.017877) - (xy 136.053812 56.017877) - (xy 136.303754 56.077883) - (xy 136.56 56.098049) - (xy 136.816245 56.077883) - (xy 137.066186 56.017877) - (xy 137.303656 55.919514) - (xy 137.303668 55.919508) - (xy 137.522818 55.785213) - (xy 137.524535 55.783746) - (xy 136.955076 55.214287) - (xy 137.077431 55.140669) - (xy 137.211658 55.013523) - (xy 137.315413 54.860495) - (xy 137.316636 54.857425) - (xy 137.883746 55.424535) - (xy 137.885213 55.422818) - (xy 138.019508 55.203668) - (xy 138.019514 55.203656) - (xy 138.117877 54.966186) - (xy 138.177883 54.716245) - (xy 138.198049 54.46) - (xy 140.00195 54.46) - (xy 140.022116 54.716245) - (xy 140.082122 54.966186) - (xy 140.180485 55.203656) - (xy 140.180491 55.203668) - (xy 140.314787 55.422819) - (xy 140.314791 55.422824) - (xy 140.316252 55.424535) - (xy 140.886806 54.85398) - (xy 140.932316 54.939822) - (xy 141.052009 55.080735) - (xy 141.199195 55.192623) - (xy 141.245269 55.213939) - (xy 140.675463 55.783746) - (xy 140.677179 55.785211) - (xy 140.896331 55.919508) - (xy 140.896343 55.919514) - (xy 141.133813 56.017877) - (xy 141.133812 56.017877) - (xy 141.383754 56.077883) - (xy 141.64 56.098049) - (xy 141.896245 56.077883) - (xy 142.146186 56.017877) - (xy 142.383656 55.919514) - (xy 142.383668 55.919508) - (xy 142.602818 55.785213) - (xy 142.604535 55.783746) - (xy 142.035076 55.214287) - (xy 142.157431 55.140669) - (xy 142.291658 55.013523) - (xy 142.395413 54.860495) - (xy 142.396636 54.857425) - (xy 142.963746 55.424535) - (xy 142.965213 55.422818) - (xy 143.099508 55.203668) - (xy 143.099514 55.203656) - (xy 143.197877 54.966186) - (xy 143.257883 54.716245) - (xy 143.278049 54.46) - (xy 143.270179 54.36) - (xy 148.92195 54.36) - (xy 148.942116 54.616245) - (xy 149.002122 54.866186) - (xy 149.100485 55.103656) - (xy 149.100491 55.103668) - (xy 149.234787 55.322819) - (xy 149.234791 55.322824) - (xy 149.236252 55.324535) - (xy 149.806806 54.75398) - (xy 149.852316 54.839822) - (xy 149.972009 54.980735) - (xy 150.119195 55.092623) - (xy 150.165269 55.113939) - (xy 149.595463 55.683746) - (xy 149.597179 55.685211) - (xy 149.816331 55.819508) - (xy 149.816343 55.819514) - (xy 150.053813 55.917877) - (xy 150.053812 55.917877) - (xy 150.303754 55.977883) - (xy 150.56 55.998049) - (xy 150.816245 55.977883) - (xy 151.066186 55.917877) - (xy 151.303656 55.819514) - (xy 151.303668 55.819508) - (xy 151.522818 55.685213) - (xy 151.524535 55.683746) - (xy 150.955076 55.114287) - (xy 151.077431 55.040669) - (xy 151.211658 54.913523) - (xy 151.315413 54.760495) - (xy 151.316636 54.757425) - (xy 151.883746 55.324535) - (xy 151.885213 55.322818) - (xy 152.019508 55.103668) - (xy 152.019514 55.103656) - (xy 152.117877 54.866186) - (xy 152.177883 54.616245) - (xy 152.198049 54.36) - (xy 154.00195 54.36) - (xy 154.022116 54.616245) - (xy 154.082122 54.866186) - (xy 154.180485 55.103656) - (xy 154.180491 55.103668) - (xy 154.314787 55.322819) - (xy 154.314791 55.322824) - (xy 154.316252 55.324535) - (xy 154.886806 54.75398) - (xy 154.932316 54.839822) - (xy 155.052009 54.980735) - (xy 155.199195 55.092623) - (xy 155.245269 55.113939) - (xy 154.675463 55.683746) - (xy 154.677179 55.685211) - (xy 154.896331 55.819508) - (xy 154.896343 55.819514) - (xy 155.133813 55.917877) - (xy 155.133812 55.917877) - (xy 155.383754 55.977883) - (xy 155.64 55.998049) - (xy 155.896245 55.977883) - (xy 156.146186 55.917877) - (xy 156.383656 55.819514) - (xy 156.383668 55.819508) - (xy 156.602818 55.685213) - (xy 156.604535 55.683746) - (xy 156.035076 55.114287) - (xy 156.157431 55.040669) - (xy 156.291658 54.913523) - (xy 156.395413 54.760495) - (xy 156.396636 54.757425) - (xy 156.963746 55.324535) - (xy 156.965213 55.322818) - (xy 157.099508 55.103668) - (xy 157.099514 55.103656) - (xy 157.197877 54.866186) - (xy 157.257883 54.616245) - (xy 157.278049 54.36) - (xy 162.92195 54.36) - (xy 162.942116 54.616245) - (xy 163.002122 54.866186) - (xy 163.100485 55.103656) - (xy 163.100491 55.103668) - (xy 163.234787 55.322819) - (xy 163.234791 55.322824) - (xy 163.236252 55.324535) - (xy 163.806806 54.75398) - (xy 163.852316 54.839822) - (xy 163.972009 54.980735) - (xy 164.119195 55.092623) - (xy 164.165269 55.113939) - (xy 163.595463 55.683746) - (xy 163.597179 55.685211) - (xy 163.816331 55.819508) - (xy 163.816343 55.819514) - (xy 164.053813 55.917877) - (xy 164.053812 55.917877) - (xy 164.303754 55.977883) - (xy 164.56 55.998049) - (xy 164.816245 55.977883) - (xy 165.066186 55.917877) - (xy 165.303656 55.819514) - (xy 165.303668 55.819508) - (xy 165.522818 55.685213) - (xy 165.524535 55.683746) - (xy 164.955076 55.114287) - (xy 165.077431 55.040669) - (xy 165.211658 54.913523) - (xy 165.315413 54.760495) - (xy 165.316636 54.757425) - (xy 165.883746 55.324535) - (xy 165.885213 55.322818) - (xy 166.019508 55.103668) - (xy 166.019514 55.103656) - (xy 166.117877 54.866186) - (xy 166.177883 54.616245) - (xy 166.198049 54.36) - (xy 168.00195 54.36) - (xy 168.022116 54.616245) - (xy 168.082122 54.866186) - (xy 168.180485 55.103656) - (xy 168.180491 55.103668) - (xy 168.314787 55.322819) - (xy 168.314791 55.322824) - (xy 168.316252 55.324535) - (xy 168.886806 54.75398) - (xy 168.932316 54.839822) - (xy 169.052009 54.980735) - (xy 169.199195 55.092623) - (xy 169.245269 55.113939) - (xy 168.675463 55.683746) - (xy 168.677179 55.685211) - (xy 168.896331 55.819508) - (xy 168.896343 55.819514) - (xy 169.133813 55.917877) - (xy 169.133812 55.917877) - (xy 169.383754 55.977883) - (xy 169.64 55.998049) - (xy 169.896245 55.977883) - (xy 170.146186 55.917877) - (xy 170.383656 55.819514) - (xy 170.383668 55.819508) - (xy 170.602818 55.685213) - (xy 170.604535 55.683746) - (xy 170.035076 55.114287) - (xy 170.157431 55.040669) - (xy 170.291658 54.913523) - (xy 170.395413 54.760495) - (xy 170.396636 54.757425) - (xy 170.963746 55.324535) - (xy 170.965213 55.322818) - (xy 171.099508 55.103668) - (xy 171.099514 55.103656) - (xy 171.197877 54.866186) - (xy 171.257883 54.616245) - (xy 171.278049 54.36) - (xy 176.92195 54.36) - (xy 176.942116 54.616245) - (xy 177.002122 54.866186) - (xy 177.100485 55.103656) - (xy 177.100491 55.103668) - (xy 177.234787 55.322819) - (xy 177.234791 55.322824) - (xy 177.236252 55.324535) - (xy 177.806806 54.75398) - (xy 177.852316 54.839822) - (xy 177.972009 54.980735) - (xy 178.119195 55.092623) - (xy 178.165269 55.113939) - (xy 177.595463 55.683746) - (xy 177.597179 55.685211) - (xy 177.816331 55.819508) - (xy 177.816343 55.819514) - (xy 178.053813 55.917877) - (xy 178.053812 55.917877) - (xy 178.303754 55.977883) - (xy 178.56 55.998049) - (xy 178.816245 55.977883) - (xy 179.066186 55.917877) - (xy 179.303656 55.819514) - (xy 179.303668 55.819508) - (xy 179.522818 55.685213) - (xy 179.524535 55.683746) - (xy 178.955076 55.114287) - (xy 179.077431 55.040669) - (xy 179.211658 54.913523) - (xy 179.315413 54.760495) - (xy 179.316636 54.757425) - (xy 179.883746 55.324535) - (xy 179.885213 55.322818) - (xy 180.019508 55.103668) - (xy 180.019514 55.103656) - (xy 180.117877 54.866186) - (xy 180.177883 54.616245) - (xy 180.198049 54.36) - (xy 182.00195 54.36) - (xy 182.022116 54.616245) - (xy 182.082122 54.866186) - (xy 182.180485 55.103656) - (xy 182.180491 55.103668) - (xy 182.314787 55.322819) - (xy 182.314791 55.322824) - (xy 182.316252 55.324535) - (xy 182.886806 54.75398) - (xy 182.932316 54.839822) - (xy 183.052009 54.980735) - (xy 183.199195 55.092623) - (xy 183.245269 55.113939) - (xy 182.675463 55.683746) - (xy 182.677179 55.685211) - (xy 182.896331 55.819508) - (xy 182.896343 55.819514) - (xy 183.133813 55.917877) - (xy 183.133812 55.917877) - (xy 183.383754 55.977883) - (xy 183.64 55.998049) - (xy 183.896245 55.977883) - (xy 184.146186 55.917877) - (xy 184.383656 55.819514) - (xy 184.383668 55.819508) - (xy 184.602818 55.685213) - (xy 184.604535 55.683746) - (xy 184.035076 55.114287) - (xy 184.157431 55.040669) - (xy 184.291658 54.913523) - (xy 184.395413 54.760495) - (xy 184.396636 54.757425) - (xy 184.963746 55.324535) - (xy 184.965213 55.322818) - (xy 185.099508 55.103668) - (xy 185.099514 55.103656) - (xy 185.197877 54.866186) - (xy 185.257883 54.616245) - (xy 185.278049 54.36) - (xy 185.257883 54.103754) - (xy 185.197877 53.853813) - (xy 185.099514 53.616343) - (xy 185.099508 53.616331) - (xy 184.965211 53.397179) - (xy 184.963746 53.395463) - (xy 184.393192 53.966016) - (xy 184.347684 53.880178) - (xy 184.227991 53.739265) - (xy 184.080805 53.627377) - (xy 184.034727 53.606059) - (xy 184.604535 53.036252) - (xy 184.602824 53.034791) - (xy 184.602819 53.034787) - (xy 184.383668 52.900491) - (xy 184.383656 52.900485) - (xy 184.146186 52.802122) - (xy 184.146187 52.802122) - (xy 183.896245 52.742116) - (xy 183.64 52.72195) - (xy 183.383754 52.742116) - (xy 183.133813 52.802122) - (xy 182.896343 52.900485) - (xy 182.896331 52.900491) - (xy 182.677184 53.034785) - (xy 182.677176 53.034791) - (xy 182.675463 53.036252) - (xy 183.244923 53.605712) - (xy 183.122569 53.679331) - (xy 182.988342 53.806477) - (xy 182.884587 53.959505) - (xy 182.883363 53.962574) - (xy 182.316252 53.395463) - (xy 182.314791 53.397176) - (xy 182.314785 53.397184) - (xy 182.180491 53.616331) - (xy 182.180485 53.616343) - (xy 182.082122 53.853813) - (xy 182.022116 54.103754) - (xy 182.00195 54.36) - (xy 180.198049 54.36) - (xy 180.177883 54.103754) - (xy 180.117877 53.853813) - (xy 180.019514 53.616343) - (xy 180.019508 53.616331) - (xy 179.885211 53.397179) - (xy 179.883746 53.395463) - (xy 179.313192 53.966016) - (xy 179.267684 53.880178) - (xy 179.147991 53.739265) - (xy 179.000805 53.627377) - (xy 178.954727 53.606059) - (xy 179.524535 53.036252) - (xy 179.522824 53.034791) - (xy 179.522819 53.034787) - (xy 179.303668 52.900491) - (xy 179.303656 52.900485) - (xy 179.066186 52.802122) - (xy 179.066187 52.802122) - (xy 178.816245 52.742116) - (xy 178.56 52.72195) - (xy 178.303754 52.742116) - (xy 178.053813 52.802122) - (xy 177.816343 52.900485) - (xy 177.816331 52.900491) - (xy 177.597184 53.034785) - (xy 177.597176 53.034791) - (xy 177.595463 53.036252) - (xy 178.164923 53.605712) - (xy 178.042569 53.679331) - (xy 177.908342 53.806477) - (xy 177.804587 53.959505) - (xy 177.803363 53.962574) - (xy 177.236252 53.395463) - (xy 177.234791 53.397176) - (xy 177.234785 53.397184) - (xy 177.100491 53.616331) - (xy 177.100485 53.616343) - (xy 177.002122 53.853813) - (xy 176.942116 54.103754) - (xy 176.92195 54.36) - (xy 171.278049 54.36) - (xy 171.257883 54.103754) - (xy 171.197877 53.853813) - (xy 171.099514 53.616343) - (xy 171.099508 53.616331) - (xy 170.965211 53.397179) - (xy 170.963746 53.395463) - (xy 170.393192 53.966016) - (xy 170.347684 53.880178) - (xy 170.227991 53.739265) - (xy 170.080805 53.627377) - (xy 170.034727 53.606059) - (xy 170.604535 53.036252) - (xy 170.602824 53.034791) - (xy 170.602819 53.034787) - (xy 170.383668 52.900491) - (xy 170.383656 52.900485) - (xy 170.146186 52.802122) - (xy 170.146187 52.802122) - (xy 169.896245 52.742116) - (xy 169.64 52.72195) - (xy 169.383754 52.742116) - (xy 169.133813 52.802122) - (xy 168.896343 52.900485) - (xy 168.896331 52.900491) - (xy 168.677184 53.034785) - (xy 168.677176 53.034791) - (xy 168.675463 53.036252) - (xy 169.244923 53.605712) - (xy 169.122569 53.679331) - (xy 168.988342 53.806477) - (xy 168.884587 53.959505) - (xy 168.883363 53.962574) - (xy 168.316252 53.395463) - (xy 168.314791 53.397176) - (xy 168.314785 53.397184) - (xy 168.180491 53.616331) - (xy 168.180485 53.616343) - (xy 168.082122 53.853813) - (xy 168.022116 54.103754) - (xy 168.00195 54.36) - (xy 166.198049 54.36) - (xy 166.177883 54.103754) - (xy 166.117877 53.853813) - (xy 166.019514 53.616343) - (xy 166.019508 53.616331) - (xy 165.885211 53.397179) - (xy 165.883746 53.395463) - (xy 165.313192 53.966016) - (xy 165.267684 53.880178) - (xy 165.147991 53.739265) - (xy 165.000805 53.627377) - (xy 164.954727 53.606059) - (xy 165.524535 53.036252) - (xy 165.522824 53.034791) - (xy 165.522819 53.034787) - (xy 165.303668 52.900491) - (xy 165.303656 52.900485) - (xy 165.066186 52.802122) - (xy 165.066187 52.802122) - (xy 164.816245 52.742116) - (xy 164.56 52.72195) - (xy 164.303754 52.742116) - (xy 164.053813 52.802122) - (xy 163.816343 52.900485) - (xy 163.816331 52.900491) - (xy 163.597184 53.034785) - (xy 163.597176 53.034791) - (xy 163.595463 53.036252) - (xy 164.164923 53.605712) - (xy 164.042569 53.679331) - (xy 163.908342 53.806477) - (xy 163.804587 53.959505) - (xy 163.803363 53.962574) - (xy 163.236252 53.395463) - (xy 163.234791 53.397176) - (xy 163.234785 53.397184) - (xy 163.100491 53.616331) - (xy 163.100485 53.616343) - (xy 163.002122 53.853813) - (xy 162.942116 54.103754) - (xy 162.92195 54.36) - (xy 157.278049 54.36) - (xy 157.257883 54.103754) - (xy 157.197877 53.853813) - (xy 157.099514 53.616343) - (xy 157.099508 53.616331) - (xy 156.965211 53.397179) - (xy 156.963746 53.395463) - (xy 156.393192 53.966016) - (xy 156.347684 53.880178) - (xy 156.227991 53.739265) - (xy 156.080805 53.627377) - (xy 156.034727 53.606059) - (xy 156.604535 53.036252) - (xy 156.602824 53.034791) - (xy 156.602819 53.034787) - (xy 156.383668 52.900491) - (xy 156.383656 52.900485) - (xy 156.146186 52.802122) - (xy 156.146187 52.802122) - (xy 155.896245 52.742116) - (xy 155.64 52.72195) - (xy 155.383754 52.742116) - (xy 155.133813 52.802122) - (xy 154.896343 52.900485) - (xy 154.896331 52.900491) - (xy 154.677184 53.034785) - (xy 154.677176 53.034791) - (xy 154.675463 53.036252) - (xy 155.244923 53.605712) - (xy 155.122569 53.679331) - (xy 154.988342 53.806477) - (xy 154.884587 53.959505) - (xy 154.883363 53.962574) - (xy 154.316252 53.395463) - (xy 154.314791 53.397176) - (xy 154.314785 53.397184) - (xy 154.180491 53.616331) - (xy 154.180485 53.616343) - (xy 154.082122 53.853813) - (xy 154.022116 54.103754) - (xy 154.00195 54.36) - (xy 152.198049 54.36) - (xy 152.177883 54.103754) - (xy 152.117877 53.853813) - (xy 152.019514 53.616343) - (xy 152.019508 53.616331) - (xy 151.885211 53.397179) - (xy 151.883746 53.395463) - (xy 151.313192 53.966016) - (xy 151.267684 53.880178) - (xy 151.147991 53.739265) - (xy 151.000805 53.627377) - (xy 150.954727 53.606059) - (xy 151.524535 53.036252) - (xy 151.522824 53.034791) - (xy 151.522819 53.034787) - (xy 151.303668 52.900491) - (xy 151.303656 52.900485) - (xy 151.066186 52.802122) - (xy 151.066187 52.802122) - (xy 150.816245 52.742116) - (xy 150.56 52.72195) - (xy 150.303754 52.742116) - (xy 150.053813 52.802122) - (xy 149.816343 52.900485) - (xy 149.816331 52.900491) - (xy 149.597184 53.034785) - (xy 149.597176 53.034791) - (xy 149.595463 53.036252) - (xy 150.164923 53.605712) - (xy 150.042569 53.679331) - (xy 149.908342 53.806477) - (xy 149.804587 53.959505) - (xy 149.803363 53.962574) - (xy 149.236252 53.395463) - (xy 149.234791 53.397176) - (xy 149.234785 53.397184) - (xy 149.100491 53.616331) - (xy 149.100485 53.616343) - (xy 149.002122 53.853813) - (xy 148.942116 54.103754) - (xy 148.92195 54.36) - (xy 143.270179 54.36) - (xy 143.257883 54.203754) - (xy 143.197877 53.953813) - (xy 143.099514 53.716343) - (xy 143.099508 53.716331) - (xy 142.965211 53.497179) - (xy 142.963746 53.495463) - (xy 142.393192 54.066016) - (xy 142.347684 53.980178) - (xy 142.227991 53.839265) - (xy 142.080805 53.727377) - (xy 142.034727 53.706059) - (xy 142.604535 53.136252) - (xy 142.602824 53.134791) - (xy 142.602819 53.134787) - (xy 142.383668 53.000491) - (xy 142.383656 53.000485) - (xy 142.146186 52.902122) - (xy 142.146187 52.902122) - (xy 141.896245 52.842116) - (xy 141.64 52.82195) - (xy 141.383754 52.842116) - (xy 141.133813 52.902122) - (xy 140.896343 53.000485) - (xy 140.896331 53.000491) - (xy 140.677184 53.134785) - (xy 140.677176 53.134791) - (xy 140.675463 53.136252) - (xy 141.244923 53.705712) - (xy 141.122569 53.779331) - (xy 140.988342 53.906477) - (xy 140.884587 54.059505) - (xy 140.883363 54.062574) - (xy 140.316252 53.495463) - (xy 140.314791 53.497176) - (xy 140.314785 53.497184) - (xy 140.180491 53.716331) - (xy 140.180485 53.716343) - (xy 140.082122 53.953813) - (xy 140.022116 54.203754) - (xy 140.00195 54.46) - (xy 138.198049 54.46) - (xy 138.177883 54.203754) - (xy 138.117877 53.953813) - (xy 138.019514 53.716343) - (xy 138.019508 53.716331) - (xy 137.885211 53.497179) - (xy 137.883746 53.495463) - (xy 137.313192 54.066016) - (xy 137.267684 53.980178) - (xy 137.147991 53.839265) - (xy 137.000805 53.727377) - (xy 136.954727 53.706059) - (xy 137.524535 53.136252) - (xy 137.522824 53.134791) - (xy 137.522819 53.134787) - (xy 137.303668 53.000491) - (xy 137.303656 53.000485) - (xy 137.066186 52.902122) - (xy 137.066187 52.902122) - (xy 136.816245 52.842116) - (xy 136.56 52.82195) - (xy 136.303754 52.842116) - (xy 136.053813 52.902122) - (xy 135.816343 53.000485) - (xy 135.816331 53.000491) - (xy 135.597184 53.134785) - (xy 135.597176 53.134791) - (xy 135.595463 53.136252) - (xy 136.164923 53.705712) - (xy 136.042569 53.779331) - (xy 135.908342 53.906477) - (xy 135.804587 54.059505) - (xy 135.803363 54.062574) - (xy 135.236252 53.495463) - (xy 135.234791 53.497176) - (xy 135.234785 53.497184) - (xy 135.100491 53.716331) - (xy 135.100485 53.716343) - (xy 135.002122 53.953813) - (xy 134.942116 54.203754) - (xy 134.92195 54.46) - (xy 122.778049 54.46) - (xy 122.757883 54.203754) - (xy 122.697877 53.953813) - (xy 122.599514 53.716343) - (xy 122.599508 53.716331) - (xy 122.465211 53.497179) - (xy 122.463746 53.495463) - (xy 121.893192 54.066016) - (xy 121.847684 53.980178) - (xy 121.727991 53.839265) - (xy 121.580805 53.727377) - (xy 121.534727 53.706059) - (xy 122.104535 53.136252) - (xy 122.102824 53.134791) - (xy 122.102819 53.134787) - (xy 121.883668 53.000491) - (xy 121.883656 53.000485) - (xy 121.646186 52.902122) - (xy 121.646187 52.902122) - (xy 121.396245 52.842116) - (xy 121.14 52.82195) - (xy 120.883754 52.842116) - (xy 120.633813 52.902122) - (xy 120.396343 53.000485) - (xy 120.396331 53.000491) - (xy 120.177184 53.134785) - (xy 120.177176 53.134791) - (xy 120.175463 53.136252) - (xy 120.744923 53.705712) - (xy 120.622569 53.779331) - (xy 120.488342 53.906477) - (xy 120.384587 54.059505) - (xy 120.383363 54.062574) - (xy 119.816252 53.495463) - (xy 119.814791 53.497176) - (xy 119.814785 53.497184) - (xy 119.680491 53.716331) - (xy 119.680485 53.716343) - (xy 119.582122 53.953813) - (xy 119.522116 54.203754) - (xy 119.50195 54.46) - (xy 117.698049 54.46) - (xy 117.677883 54.203754) - (xy 117.617877 53.953813) - (xy 117.519514 53.716343) - (xy 117.519508 53.716331) - (xy 117.385211 53.497179) - (xy 117.383746 53.495463) - (xy 116.813192 54.066016) - (xy 116.767684 53.980178) - (xy 116.647991 53.839265) - (xy 116.500805 53.727377) - (xy 116.454727 53.706059) - (xy 117.024535 53.136252) - (xy 117.022824 53.134791) - (xy 117.022819 53.134787) - (xy 116.803668 53.000491) - (xy 116.803656 53.000485) - (xy 116.566186 52.902122) - (xy 116.566187 52.902122) - (xy 116.316245 52.842116) - (xy 116.06 52.82195) - (xy 115.803754 52.842116) - (xy 115.553813 52.902122) - (xy 115.316343 53.000485) - (xy 115.316331 53.000491) - (xy 115.097184 53.134785) - (xy 115.097176 53.134791) - (xy 115.095463 53.136252) - (xy 115.664923 53.705712) - (xy 115.542569 53.779331) - (xy 115.408342 53.906477) - (xy 115.304587 54.059505) - (xy 115.303363 54.062574) - (xy 114.736252 53.495463) - (xy 114.734791 53.497176) - (xy 114.734785 53.497184) - (xy 114.600491 53.716331) - (xy 114.600485 53.716343) - (xy 114.502122 53.953813) - (xy 114.442116 54.203754) - (xy 114.42195 54.46) - (xy 104.291038 54.46) - (xy 103.231038 53.4) - (xy 105.94475 53.4) - (xy 105.963669 53.543708) - (xy 105.96367 53.543709) - (xy 106.005354 53.644346) - (xy 106.019139 53.677625) - (xy 106.107379 53.792621) - (xy 106.222375 53.880861) - (xy 106.356291 53.93633) - (xy 106.5 53.95525) - (xy 106.643709 53.93633) - (xy 106.777625 53.880861) - (xy 106.892621 53.792621) - (xy 106.980861 53.677625) - (xy 107.009154 53.609315) - (xy 107.030611 53.577201) - (xy 109.608335 50.999477) - (xy 109.624811 50.986202) - (xy 109.631128 50.982143) - (xy 109.665408 50.942579) - (xy 109.66777 50.940042) - (xy 109.679221 50.928593) - (xy 109.688914 50.915642) - (xy 109.69111 50.912917) - (xy 109.725377 50.873373) - (xy 109.728492 50.866549) - (xy 109.739296 50.848342) - (xy 109.739921 50.847506) - (xy 109.743796 50.842331) - (xy 109.762084 50.793295) - (xy 109.763432 50.790043) - (xy 109.767625 50.780862) - (xy 109.785165 50.742457) - (xy 109.786233 50.735022) - (xy 109.791467 50.714515) - (xy 109.794091 50.707483) - (xy 109.797824 50.655272) - (xy 109.798199 50.651799) - (xy 109.8005 50.635799) - (xy 109.8005 50.619651) - (xy 109.800626 50.616118) - (xy 109.801367 50.605758) - (xy 109.804359 50.563927) - (xy 109.802762 50.556585) - (xy 109.8005 50.535542) - (xy 109.8005 50.449902) - (xy 109.808035 50.412018) - (xy 109.83633 50.343709) - (xy 109.842085 50.3) - (xy 127.29475 50.3) - (xy 127.313669 50.443708) - (xy 127.31367 50.443709) - (xy 127.365623 50.569138) - (xy 127.369139 50.577625) - (xy 127.457379 50.692621) - (xy 127.572375 50.780861) - (xy 127.706291 50.83633) - (xy 127.844564 50.854534) - (xy 127.899789 50.880875) - (xy 127.901646 50.882683) - (xy 128.795504 51.776541) - (xy 128.823281 51.831058) - (xy 128.8245 51.846545) - (xy 128.8245 52.35146) - (xy 128.805593 52.409651) - (xy 128.804042 52.411728) - (xy 128.719139 52.522374) - (xy 128.719137 52.522378) - (xy 128.66367 52.65629) - (xy 128.663669 52.656291) - (xy 128.64475 52.799999) - (xy 128.64475 52.8) - (xy 128.663669 52.943708) - (xy 128.66367 52.943709) - (xy 128.707268 53.048967) - (xy 128.719139 53.077625) - (xy 128.807379 53.192621) - (xy 128.922375 53.280861) - (xy 129.056291 53.33633) - (xy 129.2 53.35525) - (xy 129.343709 53.33633) - (xy 129.477625 53.280861) - (xy 129.592621 53.192621) - (xy 129.680861 53.077625) - (xy 129.73633 52.943709) - (xy 129.75525 52.8) - (xy 129.753203 52.784455) - (xy 129.73633 52.656291) - (xy 129.680861 52.522375) - (xy 129.595957 52.411727) - (xy 129.575534 52.354052) - (xy 129.5755 52.35146) - (xy 129.5755 51.69921) - (xy 129.577607 51.678895) - (xy 129.579937 51.667781) - (xy 129.580367 51.665732) - (xy 129.575879 51.629733) - (xy 129.5755 51.623608) - (xy 129.5755 51.618886) - (xy 129.571657 51.595858) - (xy 129.571067 51.591123) - (xy 129.564866 51.541375) - (xy 129.564865 51.541374) - (xy 129.564865 51.541369) - (xy 129.562631 51.533868) - (xy 129.560065 51.526391) - (xy 129.560065 51.52639) - (xy 129.533941 51.478118) - (xy 129.509826 51.428789) - (xy 129.509823 51.428786) - (xy 129.505263 51.422398) - (xy 129.500421 51.416177) - (xy 129.500419 51.416174) - (xy 129.460029 51.378992) - (xy 129.131038 51.050001) - (xy 142.194751 51.050001) - (xy 142.21367 51.193709) - (xy 142.213671 51.19371) - (xy 142.260345 51.306394) - (xy 142.26914 51.327626) - (xy 142.35738 51.442622) - (xy 142.472376 51.530862) - (xy 142.606292 51.586331) - (xy 142.750001 51.605251) - (xy 142.89371 51.586331) - (xy 142.962019 51.558036) - (xy 142.999904 51.550501) - (xy 143.800747 51.550501) - (xy 143.858938 51.569408) - (xy 143.894902 51.618908) - (xy 143.894902 51.680094) - (xy 143.892211 51.687386) - (xy 143.86367 51.75629) - (xy 143.863669 51.756291) - (xy 143.84475 51.899999) - (xy 143.84475 51.9) - (xy 143.863669 52.043708) - (xy 143.86367 52.043709) - (xy 143.919139 52.177625) - (xy 144.007379 52.292621) - (xy 144.122375 52.380861) - (xy 144.256291 52.43633) - (xy 144.4 52.45525) - (xy 144.543709 52.43633) - (xy 144.612018 52.408035) - (xy 144.649903 52.4005) - (xy 147.635544 52.4005) - (xy 147.65659 52.402763) - (xy 147.65783 52.403032) - (xy 147.663927 52.404359) - (xy 147.711412 52.400962) - (xy 147.716119 52.400626) - (xy 147.719652 52.4005) - (xy 147.735799 52.4005) - (xy 147.751799 52.398199) - (xy 147.755272 52.397824) - (xy 147.807483 52.394091) - (xy 147.814515 52.391467) - (xy 147.835022 52.386233) - (xy 147.842457 52.385165) - (xy 147.890049 52.363429) - (xy 147.893295 52.362084) - (xy 147.942331 52.343796) - (xy 147.948342 52.339296) - (xy 147.966549 52.328492) - (xy 147.973373 52.325377) - (xy 148.012917 52.29111) - (xy 148.015642 52.288914) - (xy 148.028593 52.279221) - (xy 148.040042 52.26777) - (xy 148.042579 52.265408) - (xy 148.082143 52.231128) - (xy 148.086202 52.224811) - (xy 148.099477 52.208335) - (xy 155.778308 44.529506) - (xy 155.832825 44.501729) - (xy 155.848312 44.50051) - (xy 171.861726 44.50051) - (xy 171.919917 44.519417) - (xy 171.93173 44.529506) - (xy 172.770504 45.368279) - (xy 172.798281 45.422796) - (xy 172.7995 45.438283) - (xy 172.7995 48.350096) - (xy 172.791965 48.38798) - (xy 172.763669 48.456293) - (xy 172.74475 48.599999) - (xy 172.74475 48.6) - (xy 172.763669 48.743708) - (xy 172.76367 48.743709) - (xy 172.813358 48.86367) - (xy 172.819139 48.877625) - (xy 172.907379 48.992621) - (xy 173.022375 49.080861) - (xy 173.156291 49.13633) - (xy 173.3 49.15525) - (xy 173.443709 49.13633) - (xy 173.577625 49.080861) - (xy 173.692621 48.992621) - (xy 173.763692 48.9) - (xy 179.84475 48.9) - (xy 179.863669 49.043708) - (xy 179.86367 49.043709) - (xy 179.918585 49.176289) - (xy 179.919139 49.177625) - (xy 180.007379 49.292621) - (xy 180.122375 49.380861) - (xy 180.256291 49.43633) - (xy 180.399999 49.45525) - (xy 180.399999 49.455249) - (xy 180.4 49.45525) - (xy 180.543709 49.43633) - (xy 180.543709 49.436329) - (xy 180.549724 49.435538) - (xy 180.609884 49.446688) - (xy 180.63265 49.463687) - (xy 181.517316 50.348353) - (xy 181.545093 50.40287) - (xy 181.545465 50.405434) - (xy 181.55132 50.449902) - (xy 181.56344 50.541965) - (xy 181.56367 50.543708) - (xy 181.56367 50.543709) - (xy 181.610752 50.657378) - (xy 181.619139 50.677625) - (xy 181.707379 50.792621) - (xy 181.822375 50.880861) - (xy 181.956291 50.93633) - (xy 182.1 50.95525) - (xy 182.243709 50.93633) - (xy 182.377625 50.880861) - (xy 182.492621 50.792621) - (xy 182.580861 50.677625) - (xy 182.63633 50.543709) - (xy 182.65525 50.4) - (xy 182.64845 50.348353) - (xy 182.63633 50.256291) - (xy 182.580861 50.122375) - (xy 182.492621 50.007379) - (xy 182.377625 49.919139) - (xy 182.377621 49.919137) - (xy 182.243709 49.86367) - (xy 182.105435 49.845465) - (xy 182.05021 49.819124) - (xy 182.048354 49.817316) - (xy 180.914192 48.683154) - (xy 180.892732 48.651036) - (xy 180.880861 48.622375) - (xy 180.792621 48.507379) - (xy 180.677625 48.419139) - (xy 180.677621 48.419137) - (xy 180.543709 48.36367) - (xy 180.543708 48.363669) - (xy 180.4 48.34475) - (xy 180.256291 48.363669) - (xy 180.25629 48.36367) - (xy 180.122378 48.419137) - (xy 180.122374 48.419139) - (xy 180.007381 48.507377) - (xy 180.007377 48.507381) - (xy 179.919139 48.622374) - (xy 179.919137 48.622378) - (xy 179.86367 48.75629) - (xy 179.863669 48.756291) - (xy 179.84475 48.899999) - (xy 179.84475 48.9) - (xy 173.763692 48.9) - (xy 173.780861 48.877625) - (xy 173.83633 48.743709) - (xy 173.85525 48.6) - (xy 173.83633 48.456291) - (xy 173.808034 48.387978) - (xy 173.8005 48.350096) - (xy 173.8005 45.567492) - (xy 173.819407 45.509301) - (xy 173.868907 45.473337) - (xy 173.930093 45.473337) - (xy 173.940622 45.477437) - (xy 173.957543 45.485165) - (xy 173.964978 45.486233) - (xy 173.985484 45.491468) - (xy 173.992517 45.494091) - (xy 174.044729 45.497825) - (xy 174.048196 45.498198) - (xy 174.064201 45.5005) - (xy 174.080348 45.5005) - (xy 174.083881 45.500626) - (xy 174.088871 45.500982) - (xy 174.136073 45.504359) - (xy 174.14247 45.502967) - (xy 174.14341 45.502763) - (xy 174.164456 45.5005) - (xy 178.050097 45.5005) - (xy 178.087981 45.508035) - (xy 178.156291 45.53633) - (xy 178.3 45.55525) - (xy 178.443709 45.53633) - (xy 178.577625 45.480861) - (xy 178.692621 45.392621) - (xy 178.780861 45.277625) - (xy 178.83633 45.143709) - (xy 178.85525 45) - (xy 178.83633 44.856291) - (xy 178.780861 44.722375) - (xy 178.692621 44.607379) - (xy 178.577625 44.519139) - (xy 178.577621 44.519137) - (xy 178.443709 44.46367) - (xy 178.443708 44.463669) - (xy 178.3 44.44475) - (xy 178.156291 44.463669) - (xy 178.15629 44.46367) - (xy 178.087982 44.491964) - (xy 178.050097 44.4995) - (xy 174.348322 44.4995) - (xy 174.290131 44.480593) - (xy 174.278318 44.470504) - (xy 172.79948 42.991666) - (xy 172.786199 42.975183) - (xy 172.782144 42.968873) - (xy 172.782138 42.968868) - (xy 172.742598 42.934606) - (xy 172.740026 42.932211) - (xy 172.728595 42.920781) - (xy 172.728593 42.920779) - (xy 172.715636 42.91108) - (xy 172.712917 42.908888) - (xy 172.673373 42.874623) - (xy 172.666538 42.871501) - (xy 172.648348 42.860708) - (xy 172.647293 42.859918) - (xy 172.642331 42.856204) - (xy 172.642328 42.856203) - (xy 172.642327 42.856202) - (xy 172.593314 42.837921) - (xy 172.590049 42.836569) - (xy 172.542458 42.814835) - (xy 172.542454 42.814834) - (xy 172.535014 42.813764) - (xy 172.51452 42.808533) - (xy 172.507482 42.805908) - (xy 172.507483 42.805908) - (xy 172.455301 42.802176) - (xy 172.451788 42.801798) - (xy 172.4358 42.7995) - (xy 172.435799 42.7995) - (xy 172.419652 42.7995) - (xy 172.416119 42.799374) - (xy 172.38624 42.797237) - (xy 172.363927 42.795641) - (xy 172.363926 42.795641) - (xy 172.363925 42.795641) - (xy 172.35659 42.797237) - (xy 172.335544 42.7995) - (xy 155.264456 42.7995) - (xy 155.24341 42.797237) - (xy 155.236074 42.795641) - (xy 155.236073 42.795641) - (xy 155.215874 42.797085) - (xy 155.183881 42.799374) - (xy 155.180348 42.7995) - (xy 155.1642 42.7995) - (xy 155.148212 42.801798) - (xy 155.1447 42.802176) - (xy 155.092517 42.805908) - (xy 155.085471 42.808536) - (xy 155.064985 42.813764) - (xy 155.057547 42.814834) - (xy 155.057544 42.814834) - (xy 155.057543 42.814835) - (xy 155.057542 42.814835) - (xy 155.05754 42.814836) - (xy 155.009959 42.836565) - (xy 155.006695 42.837917) - (xy 154.957671 42.856202) - (xy 154.957669 42.856203) - (xy 154.951646 42.860712) - (xy 154.933463 42.8715) - (xy 154.926626 42.874622) - (xy 154.887097 42.908874) - (xy 154.884348 42.911089) - (xy 154.871407 42.920778) - (xy 154.859986 42.932199) - (xy 154.857401 42.934606) - (xy 154.817859 42.968868) - (xy 154.817856 42.968872) - (xy 154.813793 42.975194) - (xy 154.800519 42.991665) - (xy 147.271681 50.520505) - (xy 147.217164 50.548282) - (xy 147.201677 50.549501) - (xy 142.999904 50.549501) - (xy 142.962019 50.541965) - (xy 142.89371 50.513671) - (xy 142.893709 50.51367) - (xy 142.750001 50.494751) - (xy 142.606292 50.51367) - (xy 142.606291 50.513671) - (xy 142.472379 50.569138) - (xy 142.472375 50.56914) - (xy 142.357382 50.657378) - (xy 142.357378 50.657382) - (xy 142.26914 50.772375) - (xy 142.269138 50.772379) - (xy 142.213671 50.906291) - (xy 142.21367 50.906292) - (xy 142.194751 51.05) - (xy 142.194751 51.050001) - (xy 129.131038 51.050001) - (xy 128.432683 50.351645) - (xy 128.404906 50.297128) - (xy 128.404534 50.294563) - (xy 128.392084 50.2) - (xy 128.38633 50.156291) - (xy 128.330861 50.022375) - (xy 128.242621 49.907379) - (xy 128.127625 49.819139) - (xy 128.127621 49.819137) - (xy 127.993709 49.76367) - (xy 127.993708 49.763669) - (xy 127.85 49.74475) - (xy 127.706291 49.763669) - (xy 127.70629 49.76367) - (xy 127.572378 49.819137) - (xy 127.572374 49.819139) - (xy 127.457381 49.907377) - (xy 127.457377 49.907381) - (xy 127.369139 50.022374) - (xy 127.369137 50.022378) - (xy 127.31367 50.15629) - (xy 127.313669 50.156291) - (xy 127.29475 50.299999) - (xy 127.29475 50.3) - (xy 109.842085 50.3) - (xy 109.85525 50.2) - (xy 109.849495 50.156291) - (xy 109.83633 50.056291) - (xy 109.780861 49.922375) - (xy 109.692621 49.807379) - (xy 109.577625 49.719139) - (xy 109.577621 49.719137) - (xy 109.443709 49.66367) - (xy 109.443708 49.663669) - (xy 109.3 49.64475) - (xy 109.156291 49.663669) - (xy 109.15629 49.66367) - (xy 109.022378 49.719137) - (xy 109.022374 49.719139) - (xy 108.907381 49.807377) - (xy 108.907377 49.807381) - (xy 108.819139 49.922374) - (xy 108.819137 49.922378) - (xy 108.76367 50.05629) - (xy 108.763669 50.056291) - (xy 108.74475 50.199999) - (xy 108.74475 50.2) - (xy 108.763669 50.343709) - (xy 108.765349 50.349975) - (xy 108.763811 50.350387) - (xy 108.767993 50.403562) - (xy 108.741734 50.45045) - (xy 106.322799 52.869385) - (xy 106.290681 52.890845) - (xy 106.222376 52.919138) - (xy 106.107381 53.007377) - (xy 106.107377 53.007381) - (xy 106.019139 53.122374) - (xy 106.019137 53.122378) - (xy 105.96367 53.25629) - (xy 105.963669 53.256291) - (xy 105.94475 53.399999) - (xy 105.94475 53.4) - (xy 103.231038 53.4) - (xy 102.604496 52.773458) - (xy 102.576719 52.718941) - (xy 102.5755 52.703454) - (xy 102.5755 50.648539) - (xy 102.594407 50.590348) - (xy 102.595925 50.588314) - (xy 102.680861 50.477625) - (xy 102.73633 50.343709) - (xy 102.75525 50.2) - (xy 102.749495 50.156291) - (xy 102.73633 50.056291) - (xy 102.680861 49.922375) - (xy 102.592621 49.807379) - (xy 102.477625 49.719139) - (xy 102.477621 49.719137) - (xy 102.343709 49.66367) - (xy 102.343708 49.663669) - (xy 102.2 49.64475) - (xy 102.056291 49.663669) - (xy 102.05629 49.66367) - (xy 101.922378 49.719137) - (xy 101.922374 49.719139) - (xy 101.807381 49.807377) - (xy 101.807377 49.807381) - (xy 101.719139 49.922374) - (xy 101.719137 49.922378) - (xy 101.66367 50.05629) - (xy 101.663669 50.056291) - (xy 101.64475 50.199999) - (xy 101.64475 50.2) - (xy 101.663669 50.343708) - (xy 101.66367 50.343709) - (xy 101.70509 50.443709) - (xy 101.719139 50.477625) - (xy 101.804042 50.588273) - (xy 101.824466 50.645947) - (xy 101.8245 50.648539) - (xy 101.8245 52.804454) - (xy 101.805593 52.862645) - (xy 101.756093 52.898609) - (xy 101.694907 52.898609) - (xy 101.655496 52.874458) - (xy 99.082683 50.301645) - (xy 99.054906 50.247128) - (xy 99.054534 50.244563) - (xy 99.03633 50.106291) - (xy 98.980861 49.972375) - (xy 98.892621 49.857379) - (xy 98.777625 49.769139) - (xy 98.777621 49.769137) - (xy 98.643709 49.71367) - (xy 98.643708 49.713669) - (xy 98.5 49.69475) - (xy 98.356291 49.713669) - (xy 98.35629 49.71367) - (xy 98.222378 49.769137) - (xy 98.222374 49.769139) - (xy 98.107381 49.857377) - (xy 98.107377 49.857381) - (xy 98.019139 49.972374) - (xy 98.019137 49.972378) - (xy 97.96367 50.10629) - (xy 97.963669 50.106291) - (xy 97.94475 50.249999) - (xy 97.94475 50.25) - (xy 84.877811 50.25) - (xy 85.277201 49.85061) - (xy 85.309315 49.829153) - (xy 85.377625 49.80086) - (xy 85.492621 49.71262) - (xy 85.580861 49.597624) - (xy 85.63633 49.463708) - (xy 85.65525 49.319999) - (xy 85.63633 49.17629) - (xy 85.580861 49.042374) - (xy 85.492621 48.927378) - (xy 85.377625 48.839138) - (xy 85.377621 48.839136) - (xy 85.243709 48.783669) - (xy 85.243708 48.783668) - (xy 85.1 48.764749) - (xy 84.956291 48.783668) - (xy 84.95629 48.783669) - (xy 84.822378 48.839136) - (xy 84.822374 48.839138) - (xy 84.707381 48.927376) - (xy 84.707377 48.92738) - (xy 84.619138 49.042375) - (xy 84.590845 49.11068) - (xy 84.569385 49.142798) - (xy 81.391665 52.320518) - (xy 81.375194 52.333792) - (xy 81.368872 52.337855) - (xy 81.368868 52.337858) - (xy 81.334606 52.3774) - (xy 81.332199 52.379985) - (xy 81.320778 52.391406) - (xy 81.311089 52.404347) - (xy 81.308874 52.407096) - (xy 81.274622 52.446625) - (xy 81.2715 52.453462) - (xy 81.260712 52.471645) - (xy 81.256203 52.477668) - (xy 81.256202 52.47767) - (xy 81.237917 52.526694) - (xy 81.236565 52.529958) - (xy 81.214836 52.577539) - (xy 81.214834 52.577546) - (xy 81.213764 52.584984) - (xy 81.208536 52.60547) - (xy 81.205908 52.612516) - (xy 81.202176 52.664699) - (xy 81.201798 52.668211) - (xy 81.1995 52.684199) - (xy 81.1995 52.700346) - (xy 81.199374 52.703879) - (xy 81.195641 52.756072) - (xy 81.197237 52.763407) - (xy 81.1995 52.784455) - (xy 81.1995 58.741678) - (xy 81.180593 58.799869) - (xy 81.170504 58.811682) - (xy 79.480964 60.501221) - (xy 79.426447 60.528998) - (xy 79.366015 60.519427) - (xy 79.357441 60.514503) - (xy 79.316687 60.488313) - (xy 79.240779 60.439529) - (xy 79.149092 60.402824) - (xy 79.042117 60.359998) - (xy 78.831995 60.3195) - (xy 78.221622 60.3195) - (xy 78.061978 60.334744) - (xy 77.856657 60.395032) - (xy 77.666454 60.493088) - (xy 77.666448 60.493092) - (xy 77.498248 60.625366) - (xy 77.358117 60.787086) - (xy 77.251122 60.972407) - (xy 77.251119 60.972414) - (xy 77.181133 61.174625) - (xy 77.181131 61.174631) - (xy 77.150678 61.386437) - (xy 77.150678 61.386444) - (xy 77.16086 61.600189) - (xy 77.160861 61.600196) - (xy 77.211309 61.808147) - (xy 77.300198 62.002786) - (xy 77.3002 62.002789) - (xy 77.300204 62.002798) - (xy 77.424331 62.177109) - (xy 77.579202 62.324779) - (xy 77.726927 62.419716) - (xy 77.765658 62.467082) - (xy 77.76915 62.528168) - (xy 77.736071 62.57964) - (xy 77.679055 62.601839) - (xy 77.673403 62.602) - (xy 77.604484 62.602) - (xy 77.500678 62.612605) - (xy 77.332474 62.668342) - (xy 77.181662 62.761364) - (xy 77.056364 62.886662) - (xy 76.963342 63.037474) - (xy 76.907605 63.205678) - (xy 76.897 63.309484) - (xy 76.897 63.725999) - (xy 76.897001 63.726) - (xy 77.961187 63.726) - (xy 77.920315 63.824674) - (xy 77.899866 63.98) - (xy 77.920315 64.135326) - (xy 77.961187 64.234) - (xy 76.897001 64.234) - (xy 76.897 64.234001) - (xy 76.897 64.650515) - (xy 50.0755 64.650515) - (xy 50.0755 63.410003) - (xy 54.329538 63.410003) - (xy 54.349336 63.611028) - (xy 54.349337 63.611033) - (xy 54.407977 63.804341) - (xy 54.407979 63.804346) - (xy 54.503199 63.982491) - (xy 54.631348 64.138641) - (xy 54.631353 64.138647) - (xy 54.631358 64.138651) - (xy 54.787508 64.2668) - (xy 54.965653 64.36202) - (xy 54.965659 64.362023) - (xy 55.100327 64.402873) - (xy 55.158966 64.420662) - (xy 55.158971 64.420663) - (xy 55.359997 64.440462) - (xy 55.36 64.440462) - (xy 55.360003 64.440462) - (xy 55.561028 64.420663) - (xy 55.561033 64.420662) - (xy 55.754341 64.362023) - (xy 55.90767 64.280067) - (xy 55.932491 64.2668) - (xy 55.932492 64.266798) - (xy 55.932494 64.266798) - (xy 56.088647 64.138647) - (xy 56.216798 63.982494) - (xy 56.312023 63.804341) - (xy 56.370662 63.611033) - (xy 56.370663 63.611028) - (xy 56.390462 63.410003) - (xy 59.409538 63.410003) - (xy 59.429336 63.611028) - (xy 59.429337 63.611033) - (xy 59.487977 63.804341) - (xy 59.487979 63.804346) - (xy 59.583199 63.982491) - (xy 59.711348 64.138641) - (xy 59.711353 64.138647) - (xy 59.711358 64.138651) - (xy 59.867508 64.2668) - (xy 60.045653 64.36202) - (xy 60.045659 64.362023) - (xy 60.180327 64.402873) - (xy 60.238966 64.420662) - (xy 60.238971 64.420663) - (xy 60.439997 64.440462) - (xy 60.44 64.440462) - (xy 60.440003 64.440462) - (xy 60.641028 64.420663) - (xy 60.641033 64.420662) - (xy 60.834341 64.362023) - (xy 60.98767 64.280067) - (xy 61.012491 64.2668) - (xy 61.012492 64.266798) - (xy 61.012494 64.266798) - (xy 61.168647 64.138647) - (xy 61.296798 63.982494) - (xy 61.392023 63.804341) - (xy 61.450662 63.611033) - (xy 61.450663 63.611028) - (xy 61.470462 63.410003) - (xy 61.470462 63.409996) - (xy 61.450663 63.208971) - (xy 61.450662 63.208966) - (xy 61.39864 63.037474) - (xy 61.392023 63.015659) - (xy 61.39202 63.015653) - (xy 61.2968 62.837508) - (xy 61.168651 62.681358) - (xy 61.168647 62.681353) - (xy 61.06199 62.593822) - (xy 61.012491 62.553199) - (xy 60.834346 62.457979) - (xy 60.834341 62.457977) - (xy 60.641033 62.399337) - (xy 60.641028 62.399336) - (xy 60.440003 62.379538) - (xy 60.439997 62.379538) - (xy 60.238971 62.399336) - (xy 60.238966 62.399337) - (xy 60.045658 62.457977) - (xy 60.045653 62.457979) - (xy 59.867508 62.553199) - (xy 59.711358 62.681348) - (xy 59.711348 62.681358) - (xy 59.583199 62.837508) - (xy 59.487979 63.015653) - (xy 59.487977 63.015658) - (xy 59.429337 63.208966) - (xy 59.429336 63.208971) - (xy 59.409538 63.409996) - (xy 59.409538 63.410003) - (xy 56.390462 63.410003) - (xy 56.390462 63.409996) - (xy 56.370663 63.208971) - (xy 56.370662 63.208966) - (xy 56.31864 63.037474) - (xy 56.312023 63.015659) - (xy 56.31202 63.015653) - (xy 56.2168 62.837508) - (xy 56.088651 62.681358) - (xy 56.088647 62.681353) - (xy 55.98199 62.593822) - (xy 55.932491 62.553199) - (xy 55.754346 62.457979) - (xy 55.754341 62.457977) - (xy 55.561033 62.399337) - (xy 55.561028 62.399336) - (xy 55.360003 62.379538) - (xy 55.359997 62.379538) - (xy 55.158971 62.399336) - (xy 55.158966 62.399337) - (xy 54.965658 62.457977) - (xy 54.965653 62.457979) - (xy 54.787508 62.553199) - (xy 54.631358 62.681348) - (xy 54.631348 62.681358) - (xy 54.503199 62.837508) - (xy 54.407979 63.015653) - (xy 54.407977 63.015658) - (xy 54.349337 63.208966) - (xy 54.349336 63.208971) - (xy 54.329538 63.409996) - (xy 54.329538 63.410003) - (xy 50.0755 63.410003) - (xy 50.0755 60.870003) - (xy 54.329538 60.870003) - (xy 54.349336 61.071028) - (xy 54.349337 61.071033) - (xy 54.407977 61.264341) - (xy 54.407979 61.264346) - (xy 54.503199 61.442491) - (xy 54.578641 61.534417) - (xy 54.631353 61.598647) - (xy 54.666296 61.627324) - (xy 54.787508 61.7268) - (xy 54.965653 61.82202) - (xy 54.965659 61.822023) - (xy 55.100327 61.862873) - (xy 55.158966 61.880662) - (xy 55.158971 61.880663) - (xy 55.359997 61.900462) - (xy 55.36 61.900462) - (xy 55.360003 61.900462) - (xy 55.561028 61.880663) - (xy 55.561033 61.880662) - (xy 55.754341 61.822023) - (xy 55.834925 61.778949) - (xy 55.932491 61.7268) - (xy 55.932492 61.726798) - (xy 55.932494 61.726798) - (xy 56.088647 61.598647) - (xy 56.216798 61.442494) - (xy 56.246758 61.386444) - (xy 56.31202 61.264346) - (xy 56.312023 61.264341) - (xy 56.370662 61.071033) - (xy 56.370663 61.071028) - (xy 56.390462 60.870003) - (xy 59.409538 60.870003) - (xy 59.429336 61.071028) - (xy 59.429337 61.071033) - (xy 59.487977 61.264341) - (xy 59.487979 61.264346) - (xy 59.583199 61.442491) - (xy 59.658641 61.534417) - (xy 59.711353 61.598647) - (xy 59.746296 61.627324) - (xy 59.867508 61.7268) - (xy 60.045653 61.82202) - (xy 60.045659 61.822023) - (xy 60.180327 61.862873) - (xy 60.238966 61.880662) - (xy 60.238971 61.880663) - (xy 60.439997 61.900462) - (xy 60.44 61.900462) - (xy 60.440003 61.900462) - (xy 60.641028 61.880663) - (xy 60.641033 61.880662) - (xy 60.834341 61.822023) - (xy 60.914925 61.778949) - (xy 61.012491 61.7268) - (xy 61.012492 61.726798) - (xy 61.012494 61.726798) - (xy 61.168647 61.598647) - (xy 61.296798 61.442494) - (xy 61.326758 61.386444) - (xy 61.39202 61.264346) - (xy 61.392023 61.264341) - (xy 61.450662 61.071033) - (xy 61.450663 61.071028) - (xy 61.470462 60.870003) - (xy 61.470462 60.869996) - (xy 61.450663 60.668971) - (xy 61.450662 60.668966) - (xy 61.417071 60.558231) - (xy 61.392023 60.475659) - (xy 61.372711 60.439529) - (xy 61.2968 60.297508) - (xy 61.168651 60.141358) - (xy 61.168647 60.141353) - (xy 61.168641 60.141348) - (xy 61.012491 60.013199) - (xy 60.834346 59.917979) - (xy 60.834341 59.917977) - (xy 60.641033 59.859337) - (xy 60.641028 59.859336) - (xy 60.440003 59.839538) - (xy 60.439997 59.839538) - (xy 60.238971 59.859336) - (xy 60.238966 59.859337) - (xy 60.045658 59.917977) - (xy 60.045653 59.917979) - (xy 59.867508 60.013199) - (xy 59.711358 60.141348) - (xy 59.711348 60.141358) - (xy 59.583199 60.297508) - (xy 59.487979 60.475653) - (xy 59.487977 60.475658) - (xy 59.429337 60.668966) - (xy 59.429336 60.668971) - (xy 59.409538 60.869996) - (xy 59.409538 60.870003) - (xy 56.390462 60.870003) - (xy 56.390462 60.869996) - (xy 56.370663 60.668971) - (xy 56.370662 60.668966) - (xy 56.337071 60.558231) - (xy 56.312023 60.475659) - (xy 56.292711 60.439529) - (xy 56.2168 60.297508) - (xy 56.088651 60.141358) - (xy 56.088647 60.141353) - (xy 56.088641 60.141348) - (xy 55.932491 60.013199) - (xy 55.754346 59.917979) - (xy 55.754341 59.917977) - (xy 55.561033 59.859337) - (xy 55.561028 59.859336) - (xy 55.360003 59.839538) - (xy 55.359997 59.839538) - (xy 55.158971 59.859336) - (xy 55.158966 59.859337) - (xy 54.965658 59.917977) - (xy 54.965653 59.917979) - (xy 54.787508 60.013199) - (xy 54.631358 60.141348) - (xy 54.631348 60.141358) - (xy 54.503199 60.297508) - (xy 54.407979 60.475653) - (xy 54.407977 60.475658) - (xy 54.349337 60.668966) - (xy 54.349336 60.668971) - (xy 54.329538 60.869996) - (xy 54.329538 60.870003) - (xy 50.0755 60.870003) - (xy 50.0755 58.330003) - (xy 54.329538 58.330003) - (xy 54.349336 58.531028) - (xy 54.349337 58.531033) - (xy 54.407977 58.724341) - (xy 54.407979 58.724346) - (xy 54.503199 58.902491) - (xy 54.617511 59.041781) - (xy 54.631353 59.058647) - (xy 54.658332 59.080788) - (xy 54.787508 59.1868) - (xy 54.965653 59.28202) - (xy 54.965659 59.282023) - (xy 55.086195 59.318587) - (xy 55.158966 59.340662) - (xy 55.158971 59.340663) - (xy 55.359997 59.360462) - (xy 55.36 59.360462) - (xy 55.360003 59.360462) - (xy 55.561028 59.340663) - (xy 55.561033 59.340662) - (xy 55.754341 59.282023) - (xy 55.886729 59.21126) - (xy 55.932491 59.1868) - (xy 55.932492 59.186798) - (xy 55.932494 59.186798) - (xy 56.088647 59.058647) - (xy 56.216798 58.902494) - (xy 56.22536 58.886477) - (xy 56.303754 58.739811) - (xy 56.312023 58.724341) - (xy 56.370662 58.531033) - (xy 56.370663 58.531028) - (xy 56.390462 58.330003) - (xy 59.409538 58.330003) - (xy 59.429336 58.531028) - (xy 59.429337 58.531033) - (xy 59.487977 58.724341) - (xy 59.487979 58.724346) - (xy 59.583199 58.902491) - (xy 59.697511 59.041781) - (xy 59.711353 59.058647) - (xy 59.738332 59.080788) - (xy 59.867508 59.1868) - (xy 60.045653 59.28202) - (xy 60.045659 59.282023) - (xy 60.166195 59.318587) - (xy 60.238966 59.340662) - (xy 60.238971 59.340663) - (xy 60.439997 59.360462) - (xy 60.44 59.360462) - (xy 60.440003 59.360462) - (xy 60.641028 59.340663) - (xy 60.641033 59.340662) - (xy 60.834341 59.282023) - (xy 60.966729 59.21126) - (xy 61.012491 59.1868) - (xy 61.012492 59.186798) - (xy 61.012494 59.186798) - (xy 61.168647 59.058647) - (xy 61.296798 58.902494) - (xy 61.30536 58.886477) - (xy 61.326758 58.846444) - (xy 77.150678 58.846444) - (xy 77.16086 59.060189) - (xy 77.160861 59.060196) - (xy 77.211309 59.268147) - (xy 77.300198 59.462786) - (xy 77.3002 59.462789) - (xy 77.300204 59.462798) - (xy 77.424331 59.637109) - (xy 77.579202 59.784779) - (xy 77.695218 59.859338) - (xy 77.757259 59.89921) - (xy 77.759222 59.900471) - (xy 77.957883 59.980002) - (xy 78.168005 60.0205) - (xy 78.168008 60.0205) - (xy 78.778378 60.0205) - (xy 78.938021 60.005256) - (xy 79.143342 59.944968) - (xy 79.333544 59.846912) - (xy 79.333546 59.846909) - (xy 79.333551 59.846907) - (xy 79.501751 59.714633) - (xy 79.641882 59.552913) - (xy 79.641884 59.55291) - (xy 79.748879 59.36759) - (xy 79.818868 59.16537) - (xy 79.849322 58.953558) - (xy 79.83914 58.739811) - (xy 79.78869 58.531853) - (xy 79.788313 58.531028) - (xy 79.699801 58.337213) - (xy 79.699796 58.337202) - (xy 79.575669 58.162891) - (xy 79.567655 58.15525) - (xy 79.420801 58.015224) - (xy 79.420798 58.015221) - (xy 79.275924 57.922116) - (xy 79.240779 57.899529) - (xy 79.174557 57.873018) - (xy 79.042117 57.819998) - (xy 78.831995 57.7795) - (xy 78.221622 57.7795) - (xy 78.061978 57.794744) - (xy 77.856657 57.855032) - (xy 77.666454 57.953088) - (xy 77.666448 57.953092) - (xy 77.498248 58.085366) - (xy 77.358117 58.247086) - (xy 77.251122 58.432407) - (xy 77.251119 58.432414) - (xy 77.181133 58.634625) - (xy 77.181131 58.634631) - (xy 77.150678 58.846437) - (xy 77.150678 58.846444) - (xy 61.326758 58.846444) - (xy 61.383754 58.739811) - (xy 61.392023 58.724341) - (xy 61.450662 58.531033) - (xy 61.450663 58.531028) - (xy 61.470462 58.330003) - (xy 61.470462 58.329996) - (xy 61.450663 58.128971) - (xy 61.450662 58.128966) - (xy 61.432873 58.070327) - (xy 61.392023 57.935659) - (xy 61.362712 57.880822) - (xy 61.2968 57.757508) - (xy 61.168651 57.601358) - (xy 61.168647 57.601353) - (xy 61.094112 57.540184) - (xy 61.012491 57.473199) - (xy 60.834346 57.377979) - (xy 60.834341 57.377977) - (xy 60.641033 57.319337) - (xy 60.641028 57.319336) - (xy 60.440003 57.299538) - (xy 60.439997 57.299538) - (xy 60.238971 57.319336) - (xy 60.238966 57.319337) - (xy 60.045658 57.377977) - (xy 60.045653 57.377979) - (xy 59.867508 57.473199) - (xy 59.711358 57.601348) - (xy 59.711348 57.601358) - (xy 59.583199 57.757508) - (xy 59.487979 57.935653) - (xy 59.487977 57.935658) - (xy 59.429337 58.128966) - (xy 59.429336 58.128971) - (xy 59.409538 58.329996) - (xy 59.409538 58.330003) - (xy 56.390462 58.330003) - (xy 56.390462 58.329996) - (xy 56.370663 58.128971) - (xy 56.370662 58.128966) - (xy 56.352873 58.070327) - (xy 56.312023 57.935659) - (xy 56.282712 57.880822) - (xy 56.2168 57.757508) - (xy 56.088651 57.601358) - (xy 56.088647 57.601353) - (xy 56.014112 57.540184) - (xy 55.932491 57.473199) - (xy 55.754346 57.377979) - (xy 55.754341 57.377977) - (xy 55.561033 57.319337) - (xy 55.561028 57.319336) - (xy 55.360003 57.299538) - (xy 55.359997 57.299538) - (xy 55.158971 57.319336) - (xy 55.158966 57.319337) - (xy 54.965658 57.377977) - (xy 54.965653 57.377979) - (xy 54.787508 57.473199) - (xy 54.631358 57.601348) - (xy 54.631348 57.601358) - (xy 54.503199 57.757508) - (xy 54.407979 57.935653) - (xy 54.407977 57.935658) - (xy 54.349337 58.128966) - (xy 54.349336 58.128971) - (xy 54.329538 58.329996) - (xy 54.329538 58.330003) - (xy 50.0755 58.330003) - (xy 50.0755 55.790003) - (xy 54.329538 55.790003) - (xy 54.349336 55.991028) - (xy 54.349337 55.991033) - (xy 54.407977 56.184341) - (xy 54.407979 56.184346) - (xy 54.503199 56.362491) - (xy 54.631348 56.518641) - (xy 54.631353 56.518647) - (xy 54.631358 56.518651) - (xy 54.787508 56.6468) - (xy 54.957698 56.737768) - (xy 54.965659 56.742023) - (xy 55.083159 56.777666) - (xy 55.158966 56.800662) - (xy 55.158971 56.800663) - (xy 55.359997 56.820462) - (xy 55.36 56.820462) - (xy 55.360003 56.820462) - (xy 55.561028 56.800663) - (xy 55.561033 56.800662) - (xy 55.754341 56.742023) - (xy 55.874744 56.677666) - (xy 55.932491 56.6468) - (xy 55.932492 56.646798) - (xy 55.932494 56.646798) - (xy 56.088647 56.518647) - (xy 56.216798 56.362494) - (xy 56.218231 56.359814) - (xy 56.311815 56.18473) - (xy 56.312023 56.184341) - (xy 56.370662 55.991033) - (xy 56.370663 55.991028) - (xy 56.390462 55.790003) - (xy 59.409538 55.790003) - (xy 59.429336 55.991028) - (xy 59.429337 55.991033) - (xy 59.487977 56.184341) - (xy 59.487979 56.184346) - (xy 59.583199 56.362491) - (xy 59.711348 56.518641) - (xy 59.711353 56.518647) - (xy 59.711358 56.518651) - (xy 59.867508 56.6468) - (xy 60.037698 56.737768) - (xy 60.045659 56.742023) - (xy 60.163159 56.777666) - (xy 60.238966 56.800662) - (xy 60.238971 56.800663) - (xy 60.439997 56.820462) - (xy 60.44 56.820462) - (xy 60.440003 56.820462) - (xy 60.641028 56.800663) - (xy 60.641033 56.800662) - (xy 60.834341 56.742023) - (xy 60.954744 56.677666) - (xy 61.012491 56.6468) - (xy 61.012492 56.646798) - (xy 61.012494 56.646798) - (xy 61.168647 56.518647) - (xy 61.296798 56.362494) - (xy 61.298231 56.359814) - (xy 61.391815 56.18473) - (xy 61.392023 56.184341) - (xy 61.450662 55.991033) - (xy 61.450663 55.991028) - (xy 61.469477 55.800003) - (xy 77.494659 55.800003) - (xy 77.513974 55.996126) - (xy 77.513975 55.996129) - (xy 77.520572 56.017877) - (xy 77.57107 56.184346) - (xy 77.571187 56.18473) - (xy 77.571188 56.184732) - (xy 77.588057 56.216291) - (xy 77.66409 56.358538) - (xy 77.664092 56.35854) - (xy 77.664093 56.358542) - (xy 77.789112 56.510878) - (xy 77.789121 56.510887) - (xy 77.941457 56.635906) - (xy 77.941462 56.63591) - (xy 78.115273 56.728814) - (xy 78.303868 56.786024) - (xy 78.30387 56.786024) - (xy 78.303873 56.786025) - (xy 78.499997 56.805341) - (xy 78.5 56.805341) - (xy 78.500003 56.805341) - (xy 78.696126 56.786025) - (xy 78.696127 56.786024) - (xy 78.696132 56.786024) - (xy 78.884727 56.728814) - (xy 79.058538 56.63591) - (xy 79.210883 56.510883) - (xy 79.33591 56.358538) - (xy 79.428814 56.184727) - (xy 79.486024 55.996132) - (xy 79.486527 55.991033) - (xy 79.505341 55.800003) - (xy 79.505341 55.799996) - (xy 79.486025 55.603873) - (xy 79.486024 55.60387) - (xy 79.486024 55.603868) - (xy 79.428814 55.415273) - (xy 79.33591 55.241462) - (xy 79.321469 55.223866) - (xy 79.210887 55.089121) - (xy 79.210878 55.089112) - (xy 79.058542 54.964093) - (xy 79.05854 54.964092) - (xy 79.058538 54.96409) - (xy 79.000745 54.933199) - (xy 78.884732 54.871188) - (xy 78.88473 54.871187) - (xy 78.696129 54.813975) - (xy 78.696126 54.813974) - (xy 78.500003 54.794659) - (xy 78.499997 54.794659) - (xy 78.303873 54.813974) - (xy 78.30387 54.813975) - (xy 78.115269 54.871187) - (xy 78.115267 54.871188) - (xy 77.941467 54.964087) - (xy 77.941457 54.964093) - (xy 77.789121 55.089112) - (xy 77.789112 55.089121) - (xy 77.664093 55.241457) - (xy 77.664087 55.241467) - (xy 77.571188 55.415267) - (xy 77.571187 55.415269) - (xy 77.513975 55.60387) - (xy 77.513974 55.603873) - (xy 77.494659 55.799996) - (xy 77.494659 55.800003) - (xy 61.469477 55.800003) - (xy 61.470462 55.790003) - (xy 61.470462 55.789996) - (xy 61.450663 55.588971) - (xy 61.450662 55.588966) - (xy 61.400263 55.422824) - (xy 61.392023 55.395659) - (xy 61.39202 55.395653) - (xy 61.2968 55.217508) - (xy 61.168651 55.061358) - (xy 61.168647 55.061353) - (xy 61.154336 55.049608) - (xy 61.012491 54.933199) - (xy 60.834346 54.837979) - (xy 60.834341 54.837977) - (xy 60.641033 54.779337) - (xy 60.641028 54.779336) - (xy 60.440003 54.759538) - (xy 60.439997 54.759538) - (xy 60.238971 54.779336) - (xy 60.238966 54.779337) - (xy 60.045658 54.837977) - (xy 60.045653 54.837979) - (xy 59.867508 54.933199) - (xy 59.711358 55.061348) - (xy 59.711348 55.061358) - (xy 59.583199 55.217508) - (xy 59.487979 55.395653) - (xy 59.487977 55.395658) - (xy 59.429337 55.588966) - (xy 59.429336 55.588971) - (xy 59.409538 55.789996) - (xy 59.409538 55.790003) - (xy 56.390462 55.790003) - (xy 56.390462 55.789996) - (xy 56.370663 55.588971) - (xy 56.370662 55.588966) - (xy 56.320263 55.422824) - (xy 56.312023 55.395659) - (xy 56.31202 55.395653) - (xy 56.2168 55.217508) - (xy 56.088651 55.061358) - (xy 56.088647 55.061353) - (xy 56.074336 55.049608) - (xy 55.932491 54.933199) - (xy 55.754346 54.837979) - (xy 55.754341 54.837977) - (xy 55.561033 54.779337) - (xy 55.561028 54.779336) - (xy 55.360003 54.759538) - (xy 55.359997 54.759538) - (xy 55.158971 54.779336) - (xy 55.158966 54.779337) - (xy 54.965658 54.837977) - (xy 54.965653 54.837979) - (xy 54.787508 54.933199) - (xy 54.631358 55.061348) - (xy 54.631348 55.061358) - (xy 54.503199 55.217508) - (xy 54.407979 55.395653) - (xy 54.407977 55.395658) - (xy 54.349337 55.588966) - (xy 54.349336 55.588971) - (xy 54.329538 55.789996) - (xy 54.329538 55.790003) - (xy 50.0755 55.790003) - (xy 50.0755 54.543709) - (xy 57.2495 54.543709) - (xy 57.264759 54.674255) - (xy 57.264759 54.674257) - (xy 57.26476 54.674258) - (xy 57.324762 54.839116) - (xy 57.421168 54.985693) - (xy 57.42117 54.985696) - (xy 57.54878 55.10609) - (xy 57.54878 55.106091) - (xy 57.548782 55.106092) - (xy 57.700719 55.193812) - (xy 57.841062 55.235828) - (xy 57.868786 55.244129) - (xy 57.868787 55.244129) - (xy 57.86879 55.24413) - (xy 57.943852 55.248501) - (xy 58.043931 55.254331) - (xy 58.043931 55.25433) - (xy 58.043935 55.254331) - (xy 58.165795 55.232843) - (xy 58.216707 55.223866) - (xy 58.216708 55.223865) - (xy 58.216711 55.223865) - (xy 58.377804 55.154377) - (xy 58.51853 55.04961) - (xy 58.631302 54.915214) - (xy 58.71004 54.758433) - (xy 58.710041 54.758425) - (xy 58.710043 54.758423) - (xy 58.7505 54.587722) - (xy 58.7505 53.250003) - (xy 59.409538 53.250003) - (xy 59.429336 53.451028) - (xy 59.429337 53.451033) - (xy 59.487977 53.644341) - (xy 59.487979 53.644346) - (xy 59.583199 53.822491) - (xy 59.711348 53.978641) - (xy 59.711353 53.978647) - (xy 59.711358 53.978651) - (xy 59.867508 54.1068) - (xy 60.045653 54.20202) - (xy 60.045659 54.202023) - (xy 60.180327 54.242873) - (xy 60.238966 54.260662) - (xy 60.238971 54.260663) - (xy 60.439997 54.280462) - (xy 60.44 54.280462) - (xy 60.440003 54.280462) - (xy 60.641028 54.260663) - (xy 60.641033 54.260662) - (xy 60.834341 54.202023) - (xy 60.966729 54.13126) - (xy 61.012491 54.1068) - (xy 61.012492 54.106798) - (xy 61.012494 54.106798) - (xy 61.168647 53.978647) - (xy 61.296798 53.822494) - (xy 61.30536 53.806477) - (xy 61.39202 53.644346) - (xy 61.392023 53.644341) - (xy 61.450662 53.451033) - (xy 61.450663 53.451028) - (xy 61.470462 53.250003) - (xy 61.470462 53.249996) - (xy 61.450663 53.048971) - (xy 61.450662 53.048966) - (xy 61.421897 52.95414) - (xy 61.392023 52.855659) - (xy 61.374005 52.82195) - (xy 61.2968 52.677508) - (xy 61.168651 52.521358) - (xy 61.168647 52.521353) - (xy 61.115419 52.47767) - (xy 61.012491 52.393199) - (xy 60.834346 52.297979) - (xy 60.834341 52.297977) - (xy 60.641033 52.239337) - (xy 60.641028 52.239336) - (xy 60.440003 52.219538) - (xy 60.439997 52.219538) - (xy 60.238971 52.239336) - (xy 60.238966 52.239337) - (xy 60.045658 52.297977) - (xy 60.045653 52.297979) - (xy 59.867508 52.393199) - (xy 59.711358 52.521348) - (xy 59.711348 52.521358) - (xy 59.583199 52.677508) - (xy 59.487979 52.855653) - (xy 59.487977 52.855658) - (xy 59.429337 53.048966) - (xy 59.429336 53.048971) - (xy 59.409538 53.249996) - (xy 59.409538 53.250003) - (xy 58.7505 53.250003) - (xy 58.7505 50.710003) - (xy 59.409538 50.710003) - (xy 59.429336 50.911028) - (xy 59.429337 50.911033) - (xy 59.487977 51.104341) - (xy 59.487979 51.104346) - (xy 59.583199 51.282491) - (xy 59.711348 51.438641) - (xy 59.711353 51.438647) - (xy 59.724876 51.449745) - (xy 59.867508 51.5668) - (xy 60.045653 51.66202) - (xy 60.045659 51.662023) - (xy 60.168249 51.69921) - (xy 60.238966 51.720662) - (xy 60.238971 51.720663) - (xy 60.439997 51.740462) - (xy 60.44 51.740462) - (xy 60.440003 51.740462) - (xy 60.641028 51.720663) - (xy 60.641033 51.720662) - (xy 60.834341 51.662023) - (xy 60.958129 51.595857) - (xy 61.012491 51.5668) - (xy 61.012492 51.566798) - (xy 61.012494 51.566798) - (xy 61.168647 51.438647) - (xy 61.287469 51.293862) - (xy 62.2445 51.293862) - (xy 62.245116 51.306383) - (xy 62.245115 51.306382) - (xy 62.245932 51.314686) - (xy 62.248766 51.343456) - (xy 62.249686 51.34966) - (xy 62.250607 51.355867) - (xy 62.25061 51.355881) - (xy 62.259743 51.401798) - (xy 62.272127 51.442623) - (xy 62.274286 51.449738) - (xy 62.293101 51.49516) - (xy 62.313986 51.53423) - (xy 62.316711 51.539328) - (xy 62.332218 51.562535) - (xy 62.36399 51.601249) - (xy 62.39875 51.636009) - (xy 62.437464 51.667781) - (xy 62.460671 51.683288) - (xy 62.504843 51.706899) - (xy 62.550264 51.725714) - (xy 62.55027 51.725715) - (xy 62.550273 51.725717) - (xy 62.598175 51.740249) - (xy 62.598198 51.740256) - (xy 62.598202 51.740256) - (xy 62.598203 51.740257) - (xy 62.644135 51.749393) - (xy 62.644133 51.749393) - (xy 62.65034 51.750313) - (xy 62.656544 51.751234) - (xy 62.693608 51.754884) - (xy 62.706138 51.7555) - (xy 62.706143 51.7555) - (xy 73.293859 51.7555) - (xy 73.293864 51.7555) - (xy 73.306397 51.754884) - (xy 73.330499 51.752509) - (xy 73.343458 51.751233) - (xy 73.343459 51.751233) - (xy 73.355881 51.74939) - (xy 73.355879 51.749391) - (xy 73.388932 51.742815) - (xy 73.401807 51.740254) - (xy 73.449733 51.725714) - (xy 73.449735 51.725712) - (xy 73.449745 51.72571) - (xy 73.484846 51.711169) - (xy 73.495153 51.7069) - (xy 73.539328 51.683288) - (xy 73.562535 51.667781) - (xy 73.601249 51.636009) - (xy 73.636009 51.601249) - (xy 73.667781 51.562535) - (xy 73.683288 51.539328) - (xy 73.7069 51.495153) - (xy 73.713956 51.478118) - (xy 73.72571 51.449745) - (xy 73.725714 51.449732) - (xy 73.729079 51.438641) - (xy 73.740254 51.401807) - (xy 73.740613 51.4) - (xy 80.54475 51.4) - (xy 80.563669 51.543708) - (xy 80.56367 51.543709) - (xy 80.615061 51.667781) - (xy 80.619139 51.677625) - (xy 80.707379 51.792621) - (xy 80.822375 51.880861) - (xy 80.956291 51.93633) - (xy 81.1 51.95525) - (xy 81.243709 51.93633) - (xy 81.377625 51.880861) - (xy 81.492621 51.792621) - (xy 81.580861 51.677625) - (xy 81.609154 51.609315) - (xy 81.630611 51.577201) - (xy 83.277201 49.930611) - (xy 83.309315 49.909154) - (xy 83.377625 49.880861) - (xy 83.492621 49.792621) - (xy 83.580861 49.677625) - (xy 83.63633 49.543709) - (xy 83.65525 49.4) - (xy 83.65273 49.380862) - (xy 83.63633 49.256291) - (xy 83.580861 49.122375) - (xy 83.492621 49.007379) - (xy 83.377625 48.919139) - (xy 83.377621 48.919137) - (xy 83.243709 48.86367) - (xy 83.243708 48.863669) - (xy 83.1 48.84475) - (xy 82.956291 48.863669) - (xy 82.95629 48.86367) - (xy 82.822378 48.919137) - (xy 82.822374 48.919139) - (xy 82.707381 49.007377) - (xy 82.707377 49.007381) - (xy 82.619138 49.122376) - (xy 82.590845 49.190681) - (xy 82.569385 49.222799) - (xy 80.922799 50.869385) - (xy 80.890681 50.890845) - (xy 80.822376 50.919138) - (xy 80.707381 51.007377) - (xy 80.707377 51.007381) - (xy 80.619139 51.122374) - (xy 80.619137 51.122378) - (xy 80.56367 51.25629) - (xy 80.563669 51.256291) - (xy 80.54475 51.399999) - (xy 80.54475 51.4) - (xy 73.740613 51.4) - (xy 73.744792 51.378993) - (xy 73.749391 51.355879) - (xy 73.74939 51.355881) - (xy 73.751233 51.343459) - (xy 73.751233 51.343458) - (xy 73.752509 51.330499) - (xy 73.754884 51.306397) - (xy 73.7555 51.293864) - (xy 73.7555 45.44) - (xy 114.22195 45.44) - (xy 114.242116 45.696245) - (xy 114.302122 45.946186) - (xy 114.400485 46.183656) - (xy 114.400491 46.183668) - (xy 114.534787 46.402819) - (xy 114.534791 46.402824) - (xy 114.536252 46.404535) - (xy 115.106806 45.83398) - (xy 115.152316 45.919822) - (xy 115.272009 46.060735) - (xy 115.419195 46.172623) - (xy 115.465269 46.193939) - (xy 114.895463 46.763746) - (xy 114.897179 46.765211) - (xy 115.116331 46.899508) - (xy 115.116343 46.899514) - (xy 115.353813 46.997877) - (xy 115.353812 46.997877) - (xy 115.603754 47.057883) - (xy 115.86 47.078049) - (xy 116.116245 47.057883) - (xy 116.366186 46.997877) - (xy 116.603656 46.899514) - (xy 116.603668 46.899508) - (xy 116.822818 46.765213) - (xy 116.824535 46.763746) - (xy 116.255076 46.194287) - (xy 116.377431 46.120669) - (xy 116.511658 45.993523) - (xy 116.615413 45.840495) - (xy 116.616636 45.837425) - (xy 117.183746 46.404535) - (xy 117.185213 46.402818) - (xy 117.319508 46.183668) - (xy 117.319514 46.183656) - (xy 117.417877 45.946186) - (xy 117.477883 45.696245) - (xy 117.498049 45.44) - (xy 119.30195 45.44) - (xy 119.322116 45.696245) - (xy 119.382122 45.946186) - (xy 119.480485 46.183656) - (xy 119.480491 46.183668) - (xy 119.614787 46.402819) - (xy 119.614791 46.402824) - (xy 119.616252 46.404535) - (xy 120.186806 45.83398) - (xy 120.232316 45.919822) - (xy 120.352009 46.060735) - (xy 120.499195 46.172623) - (xy 120.545269 46.193939) - (xy 119.975463 46.763746) - (xy 119.977179 46.765211) - (xy 120.196331 46.899508) - (xy 120.196343 46.899514) - (xy 120.433813 46.997877) - (xy 120.433812 46.997877) - (xy 120.683754 47.057883) - (xy 120.94 47.078049) - (xy 121.196245 47.057883) - (xy 121.446186 46.997877) - (xy 121.683656 46.899514) - (xy 121.683668 46.899508) - (xy 121.902818 46.765213) - (xy 121.904535 46.763746) - (xy 121.335076 46.194287) - (xy 121.457431 46.120669) - (xy 121.591658 45.993523) - (xy 121.695413 45.840495) - (xy 121.696636 45.837425) - (xy 122.263746 46.404535) - (xy 122.265213 46.402818) - (xy 122.399508 46.183668) - (xy 122.399514 46.183656) - (xy 122.497877 45.946186) - (xy 122.557883 45.696245) - (xy 122.578049 45.44) - (xy 134.92195 45.44) - (xy 134.942116 45.696245) - (xy 135.002122 45.946186) - (xy 135.100485 46.183656) - (xy 135.100491 46.183668) - (xy 135.234787 46.402819) - (xy 135.234791 46.402824) - (xy 135.236252 46.404535) - (xy 135.806806 45.83398) - (xy 135.852316 45.919822) - (xy 135.972009 46.060735) - (xy 136.119195 46.172623) - (xy 136.165269 46.193939) - (xy 135.595463 46.763746) - (xy 135.597179 46.765211) - (xy 135.816331 46.899508) - (xy 135.816343 46.899514) - (xy 136.053813 46.997877) - (xy 136.053812 46.997877) - (xy 136.303754 47.057883) - (xy 136.56 47.078049) - (xy 136.816245 47.057883) - (xy 137.066186 46.997877) - (xy 137.303656 46.899514) - (xy 137.303668 46.899508) - (xy 137.522818 46.765213) - (xy 137.524535 46.763746) - (xy 136.955076 46.194287) - (xy 137.077431 46.120669) - (xy 137.211658 45.993523) - (xy 137.315413 45.840495) - (xy 137.316636 45.837425) - (xy 137.883746 46.404535) - (xy 137.885213 46.402818) - (xy 138.019508 46.183668) - (xy 138.019514 46.183656) - (xy 138.117877 45.946186) - (xy 138.177883 45.696245) - (xy 138.198049 45.44) - (xy 140.00195 45.44) - (xy 140.022116 45.696245) - (xy 140.082122 45.946186) - (xy 140.180485 46.183656) - (xy 140.180491 46.183668) - (xy 140.314787 46.402819) - (xy 140.314791 46.402824) - (xy 140.316252 46.404535) - (xy 140.886806 45.83398) - (xy 140.932316 45.919822) - (xy 141.052009 46.060735) - (xy 141.199195 46.172623) - (xy 141.245269 46.193939) - (xy 140.675463 46.763746) - (xy 140.677179 46.765211) - (xy 140.896331 46.899508) - (xy 140.896343 46.899514) - (xy 141.133813 46.997877) - (xy 141.133812 46.997877) - (xy 141.383754 47.057883) - (xy 141.64 47.078049) - (xy 141.896245 47.057883) - (xy 142.146186 46.997877) - (xy 142.383656 46.899514) - (xy 142.383668 46.899508) - (xy 142.602818 46.765213) - (xy 142.604535 46.763746) - (xy 142.035076 46.194287) - (xy 142.157431 46.120669) - (xy 142.291658 45.993523) - (xy 142.395413 45.840495) - (xy 142.396636 45.837425) - (xy 142.963746 46.404535) - (xy 142.965213 46.402818) - (xy 143.099508 46.183668) - (xy 143.099514 46.183656) - (xy 143.197877 45.946186) - (xy 143.257883 45.696245) - (xy 143.278049 45.44) - (xy 143.257883 45.183754) - (xy 143.197877 44.933813) - (xy 143.099514 44.696343) - (xy 143.099508 44.696331) - (xy 142.965211 44.477179) - (xy 142.963746 44.475463) - (xy 142.393192 45.046016) - (xy 142.347684 44.960178) - (xy 142.227991 44.819265) - (xy 142.080805 44.707377) - (xy 142.034727 44.686059) - (xy 142.604535 44.116252) - (xy 142.602824 44.114791) - (xy 142.602819 44.114787) - (xy 142.383668 43.980491) - (xy 142.383656 43.980485) - (xy 142.146186 43.882122) - (xy 142.146187 43.882122) - (xy 141.896245 43.822116) - (xy 141.64 43.80195) - (xy 141.383754 43.822116) - (xy 141.133813 43.882122) - (xy 140.896343 43.980485) - (xy 140.896331 43.980491) - (xy 140.677184 44.114785) - (xy 140.677176 44.114791) - (xy 140.675463 44.116252) - (xy 141.244923 44.685712) - (xy 141.122569 44.759331) - (xy 140.988342 44.886477) - (xy 140.884587 45.039505) - (xy 140.883363 45.042574) - (xy 140.316252 44.475463) - (xy 140.314791 44.477176) - (xy 140.314785 44.477184) - (xy 140.180491 44.696331) - (xy 140.180485 44.696343) - (xy 140.082122 44.933813) - (xy 140.022116 45.183754) - (xy 140.00195 45.44) - (xy 138.198049 45.44) - (xy 138.177883 45.183754) - (xy 138.117877 44.933813) - (xy 138.019514 44.696343) - (xy 138.019508 44.696331) - (xy 137.885211 44.477179) - (xy 137.883746 44.475463) - (xy 137.313192 45.046016) - (xy 137.267684 44.960178) - (xy 137.147991 44.819265) - (xy 137.000805 44.707377) - (xy 136.954727 44.686059) - (xy 137.524535 44.116252) - (xy 137.522824 44.114791) - (xy 137.522819 44.114787) - (xy 137.303668 43.980491) - (xy 137.303656 43.980485) - (xy 137.066186 43.882122) - (xy 137.066187 43.882122) - (xy 136.816245 43.822116) - (xy 136.56 43.80195) - (xy 136.303754 43.822116) - (xy 136.053813 43.882122) - (xy 135.816343 43.980485) - (xy 135.816331 43.980491) - (xy 135.597184 44.114785) - (xy 135.597176 44.114791) - (xy 135.595463 44.116252) - (xy 136.164923 44.685712) - (xy 136.042569 44.759331) - (xy 135.908342 44.886477) - (xy 135.804587 45.039505) - (xy 135.803363 45.042574) - (xy 135.236252 44.475463) - (xy 135.234791 44.477176) - (xy 135.234785 44.477184) - (xy 135.100491 44.696331) - (xy 135.100485 44.696343) - (xy 135.002122 44.933813) - (xy 134.942116 45.183754) - (xy 134.92195 45.44) - (xy 122.578049 45.44) - (xy 122.557883 45.183754) - (xy 122.497877 44.933813) - (xy 122.399514 44.696343) - (xy 122.399508 44.696331) - (xy 122.265211 44.477179) - (xy 122.263746 44.475463) - (xy 121.693192 45.046016) - (xy 121.647684 44.960178) - (xy 121.527991 44.819265) - (xy 121.380805 44.707377) - (xy 121.334727 44.686059) - (xy 121.904535 44.116252) - (xy 121.902824 44.114791) - (xy 121.902819 44.114787) - (xy 121.683668 43.980491) - (xy 121.683656 43.980485) - (xy 121.446186 43.882122) - (xy 121.446187 43.882122) - (xy 121.196245 43.822116) - (xy 120.94 43.80195) - (xy 120.683754 43.822116) - (xy 120.433813 43.882122) - (xy 120.196343 43.980485) - (xy 120.196331 43.980491) - (xy 119.977184 44.114785) - (xy 119.977176 44.114791) - (xy 119.975463 44.116252) - (xy 120.544923 44.685712) - (xy 120.422569 44.759331) - (xy 120.288342 44.886477) - (xy 120.184587 45.039505) - (xy 120.183363 45.042574) - (xy 119.616252 44.475463) - (xy 119.614791 44.477176) - (xy 119.614785 44.477184) - (xy 119.480491 44.696331) - (xy 119.480485 44.696343) - (xy 119.382122 44.933813) - (xy 119.322116 45.183754) - (xy 119.30195 45.44) - (xy 117.498049 45.44) - (xy 117.477883 45.183754) - (xy 117.417877 44.933813) - (xy 117.319514 44.696343) - (xy 117.319508 44.696331) - (xy 117.185211 44.477179) - (xy 117.183746 44.475463) - (xy 116.613192 45.046016) - (xy 116.567684 44.960178) - (xy 116.447991 44.819265) - (xy 116.300805 44.707377) - (xy 116.254727 44.686059) - (xy 116.824535 44.116252) - (xy 116.822824 44.114791) - (xy 116.822819 44.114787) - (xy 116.603668 43.980491) - (xy 116.603656 43.980485) - (xy 116.366186 43.882122) - (xy 116.366187 43.882122) - (xy 116.116245 43.822116) - (xy 115.86 43.80195) - (xy 115.603754 43.822116) - (xy 115.353813 43.882122) - (xy 115.116343 43.980485) - (xy 115.116331 43.980491) - (xy 114.897184 44.114785) - (xy 114.897176 44.114791) - (xy 114.895463 44.116252) - (xy 115.464923 44.685712) - (xy 115.342569 44.759331) - (xy 115.208342 44.886477) - (xy 115.104587 45.039505) - (xy 115.103363 45.042574) - (xy 114.536252 44.475463) - (xy 114.534791 44.477176) - (xy 114.534785 44.477184) - (xy 114.400491 44.696331) - (xy 114.400485 44.696343) - (xy 114.302122 44.933813) - (xy 114.242116 45.183754) - (xy 114.22195 45.44) - (xy 73.7555 45.44) - (xy 73.7555 41.900003) - (xy 76.894659 41.900003) - (xy 76.913974 42.096126) - (xy 76.913975 42.096129) - (xy 76.971187 42.28473) - (xy 76.971188 42.284732) - (xy 77.042218 42.417618) - (xy 77.06409 42.458538) - (xy 77.064092 42.45854) - (xy 77.064093 42.458542) - (xy 77.189112 42.610878) - (xy 77.189121 42.610887) - (xy 77.2705 42.677673) - (xy 77.341462 42.73591) - (xy 77.515273 42.828814) - (xy 77.703868 42.886024) - (xy 77.70387 42.886024) - (xy 77.703873 42.886025) - (xy 77.899997 42.905341) - (xy 77.9 42.905341) - (xy 77.900003 42.905341) - (xy 77.954202 42.900003) - (xy 117.119628 42.900003) - (xy 117.139078 43.122326) - (xy 117.139079 43.122333) - (xy 117.13908 43.122334) - (xy 117.196844 43.337913) - (xy 117.291165 43.540186) - (xy 117.419178 43.723007) - (xy 117.576993 43.880822) - (xy 117.576996 43.880824) - (xy 117.576997 43.880825) - (xy 117.617481 43.909172) - (xy 117.759814 44.008835) - (xy 117.962087 44.103156) - (xy 118.177666 44.16092) - (xy 118.17767 44.16092) - (xy 118.177673 44.160921) - (xy 118.399997 44.180372) - (xy 118.4 44.180372) - (xy 118.400003 44.180372) - (xy 118.622326 44.160921) - (xy 118.622327 44.16092) - (xy 118.622334 44.16092) - (xy 118.837913 44.103156) - (xy 119.040186 44.008835) - (xy 119.223007 43.880822) - (xy 119.380822 43.723007) - (xy 119.508835 43.540186) - (xy 119.603156 43.337913) - (xy 119.66092 43.122334) - (xy 119.672353 42.991665) - (xy 119.680372 42.900003) - (xy 137.819628 42.900003) - (xy 137.839078 43.122326) - (xy 137.839079 43.122333) - (xy 137.83908 43.122334) - (xy 137.896844 43.337913) - (xy 137.991165 43.540186) - (xy 138.119178 43.723007) - (xy 138.276993 43.880822) - (xy 138.276996 43.880824) - (xy 138.276997 43.880825) - (xy 138.317481 43.909172) - (xy 138.459814 44.008835) - (xy 138.662087 44.103156) - (xy 138.877666 44.16092) - (xy 138.87767 44.16092) - (xy 138.877673 44.160921) - (xy 139.099997 44.180372) - (xy 139.1 44.180372) - (xy 139.100003 44.180372) - (xy 139.322326 44.160921) - (xy 139.322327 44.16092) - (xy 139.322334 44.16092) - (xy 139.537913 44.103156) - (xy 139.740186 44.008835) - (xy 139.923007 43.880822) - (xy 140.080822 43.723007) - (xy 140.208835 43.540186) - (xy 140.303156 43.337913) - (xy 140.36092 43.122334) - (xy 140.372353 42.991665) - (xy 140.380372 42.900003) - (xy 140.380372 42.899996) - (xy 140.360921 42.677673) - (xy 140.36092 42.67767) - (xy 140.36092 42.677666) - (xy 140.303156 42.462087) - (xy 140.208835 42.259814) - (xy 140.080822 42.076993) - (xy 139.923007 41.919178) - (xy 139.923003 41.919175) - (xy 139.923002 41.919174) - (xy 139.780664 41.819508) - (xy 139.740186 41.791165) - (xy 139.537913 41.696844) - (xy 139.322334 41.63908) - (xy 139.322333 41.639079) - (xy 139.322326 41.639078) - (xy 139.100003 41.619628) - (xy 139.099997 41.619628) - (xy 138.877673 41.639078) - (xy 138.662087 41.696844) - (xy 138.459815 41.791164) - (xy 138.276997 41.919174) - (xy 138.119174 42.076997) - (xy 137.991164 42.259815) - (xy 137.896844 42.462087) - (xy 137.839078 42.677673) - (xy 137.819628 42.899996) - (xy 137.819628 42.900003) - (xy 119.680372 42.900003) - (xy 119.680372 42.899996) - (xy 119.660921 42.677673) - (xy 119.66092 42.67767) - (xy 119.66092 42.677666) - (xy 119.603156 42.462087) - (xy 119.508835 42.259814) - (xy 119.380822 42.076993) - (xy 119.223007 41.919178) - (xy 119.223003 41.919175) - (xy 119.223002 41.919174) - (xy 119.080664 41.819508) - (xy 119.040186 41.791165) - (xy 118.837913 41.696844) - (xy 118.622334 41.63908) - (xy 118.622333 41.639079) - (xy 118.622326 41.639078) - (xy 118.400003 41.619628) - (xy 118.399997 41.619628) - (xy 118.177673 41.639078) - (xy 117.962087 41.696844) - (xy 117.759815 41.791164) - (xy 117.576997 41.919174) - (xy 117.419174 42.076997) - (xy 117.291164 42.259815) - (xy 117.196844 42.462087) - (xy 117.139078 42.677673) - (xy 117.119628 42.899996) - (xy 117.119628 42.900003) - (xy 77.954202 42.900003) - (xy 78.096126 42.886025) - (xy 78.096127 42.886024) - (xy 78.096132 42.886024) - (xy 78.284727 42.828814) - (xy 78.458538 42.73591) - (xy 78.610883 42.610883) - (xy 78.73591 42.458538) - (xy 78.828814 42.284727) - (xy 78.886024 42.096132) - (xy 78.888594 42.070047) - (xy 78.905341 41.900003) - (xy 78.905341 41.899996) - (xy 78.886025 41.703873) - (xy 78.886024 41.70387) - (xy 78.886024 41.703868) - (xy 78.828814 41.515273) - (xy 78.73591 41.341462) - (xy 78.693698 41.290027) - (xy 78.610887 41.189121) - (xy 78.610878 41.189112) - (xy 78.458542 41.064093) - (xy 78.45854 41.064092) - (xy 78.458538 41.06409) - (xy 78.395099 41.030181) - (xy 78.284732 40.971188) - (xy 78.28473 40.971187) - (xy 78.096129 40.913975) - (xy 78.096126 40.913974) - (xy 77.900003 40.894659) - (xy 77.899997 40.894659) - (xy 77.703873 40.913974) - (xy 77.70387 40.913975) - (xy 77.515269 40.971187) - (xy 77.515267 40.971188) - (xy 77.341467 41.064087) - (xy 77.341457 41.064093) - (xy 77.189121 41.189112) - (xy 77.189112 41.189121) - (xy 77.064093 41.341457) - (xy 77.064087 41.341467) - (xy 76.971188 41.515267) - (xy 76.971187 41.515269) - (xy 76.913975 41.70387) - (xy 76.913974 41.703873) - (xy 76.894659 41.899996) - (xy 76.894659 41.900003) - (xy 73.7555 41.900003) - (xy 73.7555 41.206135) - (xy 73.754884 41.193602) - (xy 73.751798 41.162277) - (xy 73.751233 41.156541) - (xy 73.751233 41.15654) - (xy 73.74939 41.144118) - (xy 73.749391 41.14412) - (xy 73.741341 41.103656) - (xy 73.740254 41.098192) - (xy 73.725714 41.050266) - (xy 73.725712 41.05026) - (xy 73.72571 41.050253) - (xy 73.706908 41.004865) - (xy 73.7069 41.004847) - (xy 73.7069 41.004846) - (xy 73.701788 40.995283) - (xy 73.688909 40.971188) - (xy 73.683288 40.960671) - (xy 73.667781 40.937464) - (xy 73.636009 40.89875) - (xy 73.601249 40.86399) - (xy 73.562535 40.832218) - (xy 73.539328 40.816711) - (xy 73.539326 40.81671) - (xy 73.539323 40.816708) - (xy 73.49516 40.793101) - (xy 73.449738 40.774286) - (xy 73.449731 40.774284) - (xy 73.449729 40.774283) - (xy 73.401798 40.759743) - (xy 73.377192 40.754849) - (xy 73.355865 40.750607) - (xy 73.355867 40.750607) - (xy 73.34966 40.749686) - (xy 73.343456 40.748766) - (xy 73.314686 40.745932) - (xy 73.306382 40.745115) - (xy 73.293862 40.7445) - (xy 70.007 40.7445) - (xy 69.948809 40.725593) - (xy 69.912845 40.676093) - (xy 69.908 40.6455) - (xy 69.908 40.36) - (xy 114.22195 40.36) - (xy 114.242116 40.616245) - (xy 114.302122 40.866186) - (xy 114.400485 41.103656) - (xy 114.400491 41.103668) - (xy 114.534787 41.322819) - (xy 114.534791 41.322824) - (xy 114.536252 41.324535) - (xy 115.106806 40.75398) - (xy 115.152316 40.839822) - (xy 115.272009 40.980735) - (xy 115.419195 41.092623) - (xy 115.465269 41.113939) - (xy 114.895463 41.683746) - (xy 114.897179 41.685211) - (xy 115.116331 41.819508) - (xy 115.116343 41.819514) - (xy 115.353813 41.917877) - (xy 115.353812 41.917877) - (xy 115.603754 41.977883) - (xy 115.86 41.998049) - (xy 116.116245 41.977883) - (xy 116.366186 41.917877) - (xy 116.603656 41.819514) - (xy 116.603668 41.819508) - (xy 116.822818 41.685213) - (xy 116.824535 41.683746) - (xy 116.255076 41.114287) - (xy 116.377431 41.040669) - (xy 116.511658 40.913523) - (xy 116.615413 40.760495) - (xy 116.616636 40.757425) - (xy 117.183746 41.324535) - (xy 117.185213 41.322818) - (xy 117.319508 41.103668) - (xy 117.319514 41.103656) - (xy 117.417877 40.866186) - (xy 117.477883 40.616245) - (xy 117.498049 40.36) - (xy 119.30195 40.36) - (xy 119.322116 40.616245) - (xy 119.382122 40.866186) - (xy 119.480485 41.103656) - (xy 119.480491 41.103668) - (xy 119.614787 41.322819) - (xy 119.614791 41.322824) - (xy 119.616252 41.324535) - (xy 120.186806 40.75398) - (xy 120.232316 40.839822) - (xy 120.352009 40.980735) - (xy 120.499195 41.092623) - (xy 120.545269 41.113939) - (xy 119.975463 41.683746) - (xy 119.977179 41.685211) - (xy 120.196331 41.819508) - (xy 120.196343 41.819514) - (xy 120.433813 41.917877) - (xy 120.433812 41.917877) - (xy 120.683754 41.977883) - (xy 120.94 41.998049) - (xy 121.196245 41.977883) - (xy 121.446186 41.917877) - (xy 121.683656 41.819514) - (xy 121.683668 41.819508) - (xy 121.902818 41.685213) - (xy 121.904535 41.683746) - (xy 121.335076 41.114287) - (xy 121.457431 41.040669) - (xy 121.591658 40.913523) - (xy 121.695413 40.760495) - (xy 121.696636 40.757425) - (xy 122.263746 41.324535) - (xy 122.265213 41.322818) - (xy 122.399508 41.103668) - (xy 122.399514 41.103656) - (xy 122.497877 40.866186) - (xy 122.557883 40.616245) - (xy 122.578049 40.36) - (xy 134.92195 40.36) - (xy 134.942116 40.616245) - (xy 135.002122 40.866186) - (xy 135.100485 41.103656) - (xy 135.100491 41.103668) - (xy 135.234787 41.322819) - (xy 135.234791 41.322824) - (xy 135.236252 41.324535) - (xy 135.806806 40.75398) - (xy 135.852316 40.839822) - (xy 135.972009 40.980735) - (xy 136.119195 41.092623) - (xy 136.165269 41.113939) - (xy 135.595463 41.683746) - (xy 135.597179 41.685211) - (xy 135.816331 41.819508) - (xy 135.816343 41.819514) - (xy 136.053813 41.917877) - (xy 136.053812 41.917877) - (xy 136.303754 41.977883) - (xy 136.56 41.998049) - (xy 136.816245 41.977883) - (xy 137.066186 41.917877) - (xy 137.303656 41.819514) - (xy 137.303668 41.819508) - (xy 137.522818 41.685213) - (xy 137.524535 41.683746) - (xy 136.955076 41.114287) - (xy 137.077431 41.040669) - (xy 137.211658 40.913523) - (xy 137.315413 40.760495) - (xy 137.316636 40.757425) - (xy 137.883746 41.324535) - (xy 137.885213 41.322818) - (xy 138.019508 41.103668) - (xy 138.019514 41.103656) - (xy 138.117877 40.866186) - (xy 138.177883 40.616245) - (xy 138.198049 40.36) - (xy 140.00195 40.36) - (xy 140.022116 40.616245) - (xy 140.082122 40.866186) - (xy 140.180485 41.103656) - (xy 140.180491 41.103668) - (xy 140.314787 41.322819) - (xy 140.314791 41.322824) - (xy 140.316252 41.324535) - (xy 140.886806 40.75398) - (xy 140.932316 40.839822) - (xy 141.052009 40.980735) - (xy 141.199195 41.092623) - (xy 141.245269 41.113939) - (xy 140.675463 41.683746) - (xy 140.677179 41.685211) - (xy 140.896331 41.819508) - (xy 140.896343 41.819514) - (xy 141.133813 41.917877) - (xy 141.133812 41.917877) - (xy 141.383754 41.977883) - (xy 141.64 41.998049) - (xy 141.896245 41.977883) - (xy 142.146186 41.917877) - (xy 142.383656 41.819514) - (xy 142.383668 41.819508) - (xy 142.602818 41.685213) - (xy 142.604535 41.683746) - (xy 142.035076 41.114287) - (xy 142.157431 41.040669) - (xy 142.291658 40.913523) - (xy 142.395413 40.760495) - (xy 142.396636 40.757425) - (xy 142.963746 41.324535) - (xy 142.965213 41.322818) - (xy 143.099508 41.103668) - (xy 143.099514 41.103656) - (xy 143.197877 40.866186) - (xy 143.257883 40.616245) - (xy 143.263883 40.54) - (xy 204.604551 40.54) - (xy 204.624316 40.791146) - (xy 204.683127 41.036113) - (xy 204.779532 41.268856) - (xy 204.779535 41.268862) - (xy 204.911162 41.483656) - (xy 204.911168 41.483664) - (xy 205.068636 41.668036) - (xy 205.074776 41.675224) - (xy 205.074782 41.675229) - (xy 205.074785 41.675232) - (xy 205.174956 41.760786) - (xy 205.266341 41.838836) - (xy 205.266343 41.838837) - (xy 205.481137 41.970464) - (xy 205.481143 41.970467) - (xy 205.713887 42.066872) - (xy 205.713889 42.066873) - (xy 205.958852 42.125683) - (xy 206.147118 42.1405) - (xy 206.147123 42.1405) - (xy 206.272877 42.1405) - (xy 206.272882 42.1405) - (xy 206.461148 42.125683) - (xy 206.706111 42.066873) - (xy 206.938859 41.970466) - (xy 207.153659 41.838836) - (xy 207.345224 41.675224) - (xy 207.508836 41.483659) - (xy 207.640466 41.268859) - (xy 207.736873 41.036111) - (xy 207.795683 40.791148) - (xy 207.815449 40.54) - (xy 207.795683 40.288852) - (xy 207.736873 40.043889) - (xy 207.734452 40.038045) - (xy 207.640467 39.811143) - (xy 207.640464 39.811137) - (xy 207.508837 39.596343) - (xy 207.508836 39.596341) - (xy 207.435094 39.51) - (xy 207.345232 39.404785) - (xy 207.345229 39.404782) - (xy 207.345224 39.404776) - (xy 207.345217 39.40477) - (xy 207.345214 39.404767) - (xy 207.153664 39.241168) - (xy 207.153656 39.241162) - (xy 206.938862 39.109535) - (xy 206.938856 39.109532) - (xy 206.706112 39.013127) - (xy 206.706113 39.013127) - (xy 206.461146 38.954316) - (xy 206.332812 38.944216) - (xy 206.272882 38.9395) - (xy 206.147118 38.9395) - (xy 206.090775 38.943934) - (xy 205.958853 38.954316) - (xy 205.713886 39.013127) - (xy 205.481143 39.109532) - (xy 205.481137 39.109535) - (xy 205.266343 39.241162) - (xy 205.266335 39.241168) - (xy 205.074785 39.404767) - (xy 205.074767 39.404785) - (xy 204.911168 39.596335) - (xy 204.911162 39.596343) - (xy 204.779535 39.811137) - (xy 204.779532 39.811143) - (xy 204.683127 40.043886) - (xy 204.624316 40.288853) - (xy 204.604551 40.54) - (xy 143.263883 40.54) - (xy 143.278049 40.36) - (xy 143.257883 40.103754) - (xy 143.197877 39.853813) - (xy 143.099514 39.616343) - (xy 143.099508 39.616331) - (xy 142.965211 39.397179) - (xy 142.963746 39.395463) - (xy 142.393192 39.966016) - (xy 142.347684 39.880178) - (xy 142.227991 39.739265) - (xy 142.080805 39.627377) - (xy 142.034727 39.606059) - (xy 142.604535 39.036252) - (xy 142.602824 39.034791) - (xy 142.602819 39.034787) - (xy 142.383668 38.900491) - (xy 142.383656 38.900485) - (xy 142.146186 38.802122) - (xy 142.146187 38.802122) - (xy 141.896245 38.742116) - (xy 141.64 38.72195) - (xy 141.383754 38.742116) - (xy 141.133813 38.802122) - (xy 140.896343 38.900485) - (xy 140.896331 38.900491) - (xy 140.677184 39.034785) - (xy 140.677176 39.034791) - (xy 140.675463 39.036252) - (xy 141.244923 39.605712) - (xy 141.122569 39.679331) - (xy 140.988342 39.806477) - (xy 140.884587 39.959505) - (xy 140.883363 39.962574) - (xy 140.316252 39.395463) - (xy 140.314791 39.397176) - (xy 140.314785 39.397184) - (xy 140.180491 39.616331) - (xy 140.180485 39.616343) - (xy 140.082122 39.853813) - (xy 140.022116 40.103754) - (xy 140.00195 40.36) - (xy 138.198049 40.36) - (xy 138.177883 40.103754) - (xy 138.117877 39.853813) - (xy 138.019514 39.616343) - (xy 138.019508 39.616331) - (xy 137.885211 39.397179) - (xy 137.883746 39.395463) - (xy 137.313192 39.966016) - (xy 137.267684 39.880178) - (xy 137.147991 39.739265) - (xy 137.000805 39.627377) - (xy 136.954727 39.606059) - (xy 137.524535 39.036252) - (xy 137.522824 39.034791) - (xy 137.522819 39.034787) - (xy 137.303668 38.900491) - (xy 137.303656 38.900485) - (xy 137.066186 38.802122) - (xy 137.066187 38.802122) - (xy 136.816245 38.742116) - (xy 136.56 38.72195) - (xy 136.303754 38.742116) - (xy 136.053813 38.802122) - (xy 135.816343 38.900485) - (xy 135.816331 38.900491) - (xy 135.597184 39.034785) - (xy 135.597176 39.034791) - (xy 135.595463 39.036252) - (xy 136.164923 39.605712) - (xy 136.042569 39.679331) - (xy 135.908342 39.806477) - (xy 135.804587 39.959505) - (xy 135.803363 39.962574) - (xy 135.236252 39.395463) - (xy 135.234791 39.397176) - (xy 135.234785 39.397184) - (xy 135.100491 39.616331) - (xy 135.100485 39.616343) - (xy 135.002122 39.853813) - (xy 134.942116 40.103754) - (xy 134.92195 40.36) - (xy 122.578049 40.36) - (xy 122.557883 40.103754) - (xy 122.497877 39.853813) - (xy 122.399514 39.616343) - (xy 122.399508 39.616331) - (xy 122.265211 39.397179) - (xy 122.263746 39.395463) - (xy 121.693192 39.966016) - (xy 121.647684 39.880178) - (xy 121.527991 39.739265) - (xy 121.380805 39.627377) - (xy 121.334727 39.606059) - (xy 121.904535 39.036252) - (xy 121.902824 39.034791) - (xy 121.902819 39.034787) - (xy 121.683668 38.900491) - (xy 121.683656 38.900485) - (xy 121.446186 38.802122) - (xy 121.446187 38.802122) - (xy 121.196245 38.742116) - (xy 120.94 38.72195) - (xy 120.683754 38.742116) - (xy 120.433813 38.802122) - (xy 120.196343 38.900485) - (xy 120.196331 38.900491) - (xy 119.977184 39.034785) - (xy 119.977176 39.034791) - (xy 119.975463 39.036252) - (xy 120.544923 39.605712) - (xy 120.422569 39.679331) - (xy 120.288342 39.806477) - (xy 120.184587 39.959505) - (xy 120.183363 39.962574) - (xy 119.616252 39.395463) - (xy 119.614791 39.397176) - (xy 119.614785 39.397184) - (xy 119.480491 39.616331) - (xy 119.480485 39.616343) - (xy 119.382122 39.853813) - (xy 119.322116 40.103754) - (xy 119.30195 40.36) - (xy 117.498049 40.36) - (xy 117.477883 40.103754) - (xy 117.417877 39.853813) - (xy 117.319514 39.616343) - (xy 117.319508 39.616331) - (xy 117.185211 39.397179) - (xy 117.183746 39.395463) - (xy 116.613192 39.966016) - (xy 116.567684 39.880178) - (xy 116.447991 39.739265) - (xy 116.300805 39.627377) - (xy 116.254727 39.606059) - (xy 116.824535 39.036252) - (xy 116.822824 39.034791) - (xy 116.822819 39.034787) - (xy 116.603668 38.900491) - (xy 116.603656 38.900485) - (xy 116.366186 38.802122) - (xy 116.366187 38.802122) - (xy 116.116245 38.742116) - (xy 115.86 38.72195) - (xy 115.603754 38.742116) - (xy 115.353813 38.802122) - (xy 115.116343 38.900485) - (xy 115.116331 38.900491) - (xy 114.897184 39.034785) - (xy 114.897176 39.034791) - (xy 114.895463 39.036252) - (xy 115.464923 39.605712) - (xy 115.342569 39.679331) - (xy 115.208342 39.806477) - (xy 115.104587 39.959505) - (xy 115.103363 39.962574) - (xy 114.536252 39.395463) - (xy 114.534791 39.397176) - (xy 114.534785 39.397184) - (xy 114.400491 39.616331) - (xy 114.400485 39.616343) - (xy 114.302122 39.853813) - (xy 114.242116 40.103754) - (xy 114.22195 40.36) - (xy 69.908 40.36) - (xy 69.908 40.054001) - (xy 69.907999 40.054) - (xy 68.911686 40.054) - (xy 68.927641 40.038045) - (xy 68.985165 39.925148) - (xy 69.004986 39.8) - (xy 68.985165 39.674852) - (xy 68.927641 39.561955) - (xy 68.911686 39.546) - (xy 69.907999 39.546) - (xy 69.908 39.545999) - (xy 69.908 38.951412) - (xy 69.901495 38.890911) - (xy 69.901493 38.890901) - (xy 69.850447 38.754039) - (xy 69.762907 38.6371) - (xy 69.762899 38.637092) - (xy 69.64596 38.549552) - (xy 69.509098 38.498506) - (xy 69.509088 38.498504) - (xy 69.448587 38.492) - (xy 68.854001 38.492) - (xy 68.854 38.492001) - (xy 68.854 39.488314) - (xy 68.838045 39.472359) - (xy 68.725148 39.414835) - (xy 68.631481 39.4) - (xy 68.568519 39.4) - (xy 68.474852 39.414835) - (xy 68.361955 39.472359) - (xy 68.346 39.488314) - (xy 68.346 38.492001) - (xy 68.345999 38.492) - (xy 67.751413 38.492) - (xy 67.690911 38.498504) - (xy 67.690901 38.498506) - (xy 67.554039 38.549552) - (xy 67.4371 38.637092) - (xy 67.437092 38.6371) - (xy 67.349552 38.754039) - (xy 67.298506 38.890901) - (xy 67.298504 38.890911) - (xy 67.292 38.951412) - (xy 67.292 39.545999) - (xy 67.292001 39.546) - (xy 68.288314 39.546) - (xy 68.272359 39.561955) - (xy 68.214835 39.674852) - (xy 68.195014 39.8) - (xy 68.214835 39.925148) - (xy 68.272359 40.038045) - (xy 68.288314 40.054) - (xy 67.292001 40.054) - (xy 67.292 40.054001) - (xy 67.292 40.6455) - (xy 67.273093 40.703691) - (xy 67.223593 40.739655) - (xy 67.193 40.7445) - (xy 62.706138 40.7445) - (xy 62.693608 40.745116) - (xy 62.656545 40.748766) - (xy 62.650341 40.749686) - (xy 62.644134 40.750607) - (xy 62.644136 40.750607) - (xy 62.598207 40.759742) - (xy 62.598205 40.759742) - (xy 62.598203 40.759743) - (xy 62.550272 40.774282) - (xy 62.550269 40.774283) - (xy 62.550264 40.774285) - (xy 62.504854 40.793094) - (xy 62.504849 40.793096) - (xy 62.504848 40.793097) - (xy 62.504841 40.793101) - (xy 62.460669 40.816711) - (xy 62.437462 40.832219) - (xy 62.398755 40.863985) - (xy 62.363985 40.898755) - (xy 62.332219 40.937462) - (xy 62.316715 40.960664) - (xy 62.316708 40.960675) - (xy 62.293101 41.004838) - (xy 62.274286 41.05026) - (xy 62.259743 41.0982) - (xy 62.259742 41.098205) - (xy 62.252699 41.133615) - (xy 62.250607 41.144135) - (xy 62.248766 41.156543) - (xy 62.248201 41.162279) - (xy 62.245115 41.193617) - (xy 62.245116 41.193616) - (xy 62.2445 41.206137) - (xy 62.2445 42.299999) - (xy 62.2445 43.31163) - (xy 62.2445 51.293862) - (xy 61.287469 51.293862) - (xy 61.296798 51.282494) - (xy 61.310805 51.25629) - (xy 61.382382 51.122378) - (xy 61.392023 51.104341) - (xy 61.450662 50.911033) - (xy 61.450663 50.911028) - (xy 61.470462 50.710003) - (xy 61.470462 50.709996) - (xy 61.450663 50.508971) - (xy 61.450662 50.508966) - (xy 61.419256 50.405434) - (xy 61.392023 50.315659) - (xy 61.39202 50.315653) - (xy 61.2968 50.137508) - (xy 61.168651 49.981358) - (xy 61.168647 49.981353) - (xy 61.106821 49.930614) - (xy 61.012491 49.853199) - (xy 60.834346 49.757979) - (xy 60.834341 49.757977) - (xy 60.641033 49.699337) - (xy 60.641028 49.699336) - (xy 60.440003 49.679538) - (xy 60.439997 49.679538) - (xy 60.238971 49.699336) - (xy 60.238966 49.699337) - (xy 60.045658 49.757977) - (xy 60.045653 49.757979) - (xy 59.867508 49.853199) - (xy 59.711358 49.981348) - (xy 59.711348 49.981358) - (xy 59.583199 50.137508) - (xy 59.487979 50.315653) - (xy 59.487977 50.315658) - (xy 59.429337 50.508966) - (xy 59.429336 50.508971) - (xy 59.409538 50.709996) - (xy 59.409538 50.710003) - (xy 58.7505 50.710003) - (xy 58.7505 48.170003) - (xy 59.409538 48.170003) - (xy 59.429336 48.371028) - (xy 59.429337 48.371033) - (xy 59.487977 48.564341) - (xy 59.487979 48.564346) - (xy 59.583199 48.742491) - (xy 59.616993 48.783669) - (xy 59.711353 48.898647) - (xy 59.713002 48.9) - (xy 59.867508 49.0268) - (xy 60.045653 49.12202) - (xy 60.045659 49.122023) - (xy 60.180327 49.162873) - (xy 60.238966 49.180662) - (xy 60.238971 49.180663) - (xy 60.439997 49.200462) - (xy 60.44 49.200462) - (xy 60.440003 49.200462) - (xy 60.641028 49.180663) - (xy 60.641033 49.180662) - (xy 60.651058 49.177621) - (xy 60.834341 49.122023) - (xy 60.983352 49.042375) - (xy 61.012491 49.0268) - (xy 61.012492 49.026798) - (xy 61.012494 49.026798) - (xy 61.168647 48.898647) - (xy 61.296798 48.742494) - (xy 61.392023 48.564341) - (xy 61.450662 48.371033) - (xy 61.450663 48.371028) - (xy 61.470462 48.170003) - (xy 61.470462 48.169996) - (xy 61.450663 47.968971) - (xy 61.450662 47.968966) - (xy 61.432873 47.910327) - (xy 61.392023 47.775659) - (xy 61.39202 47.775653) - (xy 61.2968 47.597508) - (xy 61.168651 47.441358) - (xy 61.168647 47.441353) - (xy 61.168641 47.441348) - (xy 61.012491 47.313199) - (xy 60.834346 47.217979) - (xy 60.834341 47.217977) - (xy 60.641033 47.159337) - (xy 60.641028 47.159336) - (xy 60.440003 47.139538) - (xy 60.439997 47.139538) - (xy 60.238971 47.159336) - (xy 60.238966 47.159337) - (xy 60.045658 47.217977) - (xy 60.045653 47.217979) - (xy 59.867508 47.313199) - (xy 59.711358 47.441348) - (xy 59.711348 47.441358) - (xy 59.583199 47.597508) - (xy 59.487979 47.775653) - (xy 59.487977 47.775658) - (xy 59.429337 47.968966) - (xy 59.429336 47.968971) - (xy 59.409538 48.169996) - (xy 59.409538 48.170003) - (xy 58.7505 48.170003) - (xy 58.7505 45.630003) - (xy 59.409538 45.630003) - (xy 59.429336 45.831028) - (xy 59.429337 45.831033) - (xy 59.487977 46.024341) - (xy 59.487979 46.024346) - (xy 59.583199 46.202491) - (xy 59.594276 46.215988) - (xy 59.711353 46.358647) - (xy 59.711358 46.358651) - (xy 59.867508 46.4868) - (xy 60.045653 46.58202) - (xy 60.045659 46.582023) - (xy 60.180327 46.622873) - (xy 60.238966 46.640662) - (xy 60.238971 46.640663) - (xy 60.439997 46.660462) - (xy 60.44 46.660462) - (xy 60.440003 46.660462) - (xy 60.641028 46.640663) - (xy 60.641033 46.640662) - (xy 60.834341 46.582023) - (xy 60.914925 46.538949) - (xy 61.012491 46.4868) - (xy 61.012492 46.486798) - (xy 61.012494 46.486798) - (xy 61.168647 46.358647) - (xy 61.296798 46.202494) - (xy 61.312765 46.172623) - (xy 61.39202 46.024346) - (xy 61.392023 46.024341) - (xy 61.450662 45.831033) - (xy 61.450663 45.831028) - (xy 61.470462 45.630003) - (xy 61.470462 45.629996) - (xy 61.450663 45.428971) - (xy 61.450662 45.428966) - (xy 61.404753 45.277625) - (xy 61.392023 45.235659) - (xy 61.39202 45.235653) - (xy 61.2968 45.057508) - (xy 61.168651 44.901358) - (xy 61.168647 44.901353) - (xy 61.168641 44.901348) - (xy 61.012491 44.773199) - (xy 60.834346 44.677979) - (xy 60.834341 44.677977) - (xy 60.641033 44.619337) - (xy 60.641028 44.619336) - (xy 60.440003 44.599538) - (xy 60.439997 44.599538) - (xy 60.238971 44.619336) - (xy 60.238966 44.619337) - (xy 60.045658 44.677977) - (xy 60.045653 44.677979) - (xy 59.867508 44.773199) - (xy 59.711358 44.901348) - (xy 59.711348 44.901358) - (xy 59.583199 45.057508) - (xy 59.487979 45.235653) - (xy 59.487977 45.235658) - (xy 59.429337 45.428966) - (xy 59.429336 45.428971) - (xy 59.409538 45.629996) - (xy 59.409538 45.630003) - (xy 58.7505 45.630003) - (xy 58.7505 41.206295) - (xy 58.7505 41.206291) - (xy 58.735241 41.075745) - (xy 58.675237 40.910883) - (xy 58.57883 40.764304) - (xy 58.451219 40.643908) - (xy 58.355663 40.58874) - (xy 58.299281 40.556188) - (xy 58.257263 40.543608) - (xy 58.131213 40.50587) - (xy 58.131206 40.505869) - (xy 57.956068 40.495668) - (xy 57.783292 40.526133) - (xy 57.622197 40.595622) - (xy 57.622195 40.595623) - (xy 57.48147 40.700389) - (xy 57.481468 40.700391) - (xy 57.368699 40.834783) - (xy 57.338629 40.894659) - (xy 57.28996 40.991567) - (xy 57.289959 40.991568) - (xy 57.289959 40.99157) - (xy 57.289956 40.991576) - (xy 57.2495 41.162277) - (xy 57.2495 41.162279) - (xy 57.2495 52.412279) - (xy 57.2495 53.412279) - (xy 57.2495 54.543709) - (xy 50.0755 54.543709) - (xy 50.0755 53.250003) - (xy 54.329538 53.250003) - (xy 54.349336 53.451028) - (xy 54.349337 53.451033) - (xy 54.407977 53.644341) - (xy 54.407979 53.644346) - (xy 54.503199 53.822491) - (xy 54.631348 53.978641) - (xy 54.631353 53.978647) - (xy 54.631358 53.978651) - (xy 54.787508 54.1068) - (xy 54.965653 54.20202) - (xy 54.965659 54.202023) - (xy 55.100327 54.242873) - (xy 55.158966 54.260662) - (xy 55.158971 54.260663) - (xy 55.359997 54.280462) - (xy 55.36 54.280462) - (xy 55.360003 54.280462) - (xy 55.561028 54.260663) - (xy 55.561033 54.260662) - (xy 55.754341 54.202023) - (xy 55.886729 54.13126) - (xy 55.932491 54.1068) - (xy 55.932492 54.106798) - (xy 55.932494 54.106798) - (xy 56.088647 53.978647) - (xy 56.216798 53.822494) - (xy 56.22536 53.806477) - (xy 56.31202 53.644346) - (xy 56.312023 53.644341) - (xy 56.370662 53.451033) - (xy 56.370663 53.451028) - (xy 56.390462 53.250003) - (xy 56.390462 53.249996) - (xy 56.370663 53.048971) - (xy 56.370662 53.048966) - (xy 56.341897 52.95414) - (xy 56.312023 52.855659) - (xy 56.294005 52.82195) - (xy 56.2168 52.677508) - (xy 56.088651 52.521358) - (xy 56.088647 52.521353) - (xy 56.035419 52.47767) - (xy 55.932491 52.393199) - (xy 55.754346 52.297979) - (xy 55.754341 52.297977) - (xy 55.561033 52.239337) - (xy 55.561028 52.239336) - (xy 55.360003 52.219538) - (xy 55.359997 52.219538) - (xy 55.158971 52.239336) - (xy 55.158966 52.239337) - (xy 54.965658 52.297977) - (xy 54.965653 52.297979) - (xy 54.787508 52.393199) - (xy 54.631358 52.521348) - (xy 54.631348 52.521358) - (xy 54.503199 52.677508) - (xy 54.407979 52.855653) - (xy 54.407977 52.855658) - (xy 54.349337 53.048966) - (xy 54.349336 53.048971) - (xy 54.329538 53.249996) - (xy 54.329538 53.250003) - (xy 50.0755 53.250003) - (xy 50.0755 50.710003) - (xy 54.329538 50.710003) - (xy 54.349336 50.911028) - (xy 54.349337 50.911033) - (xy 54.407977 51.104341) - (xy 54.407979 51.104346) - (xy 54.503199 51.282491) - (xy 54.631348 51.438641) - (xy 54.631353 51.438647) - (xy 54.644876 51.449745) - (xy 54.787508 51.5668) - (xy 54.965653 51.66202) - (xy 54.965659 51.662023) - (xy 55.088249 51.69921) - (xy 55.158966 51.720662) - (xy 55.158971 51.720663) - (xy 55.359997 51.740462) - (xy 55.36 51.740462) - (xy 55.360003 51.740462) - (xy 55.561028 51.720663) - (xy 55.561033 51.720662) - (xy 55.754341 51.662023) - (xy 55.878129 51.595857) - (xy 55.932491 51.5668) - (xy 55.932492 51.566798) - (xy 55.932494 51.566798) - (xy 56.088647 51.438647) - (xy 56.216798 51.282494) - (xy 56.230805 51.25629) - (xy 56.302382 51.122378) - (xy 56.312023 51.104341) - (xy 56.370662 50.911033) - (xy 56.370663 50.911028) - (xy 56.390462 50.710003) - (xy 56.390462 50.709996) - (xy 56.370663 50.508971) - (xy 56.370662 50.508966) - (xy 56.339256 50.405434) - (xy 56.312023 50.315659) - (xy 56.31202 50.315653) - (xy 56.2168 50.137508) - (xy 56.088651 49.981358) - (xy 56.088647 49.981353) - (xy 56.026821 49.930614) - (xy 55.932491 49.853199) - (xy 55.754346 49.757979) - (xy 55.754341 49.757977) - (xy 55.561033 49.699337) - (xy 55.561028 49.699336) - (xy 55.360003 49.679538) - (xy 55.359997 49.679538) - (xy 55.158971 49.699336) - (xy 55.158966 49.699337) - (xy 54.965658 49.757977) - (xy 54.965653 49.757979) - (xy 54.787508 49.853199) - (xy 54.631358 49.981348) - (xy 54.631348 49.981358) - (xy 54.503199 50.137508) - (xy 54.407979 50.315653) - (xy 54.407977 50.315658) - (xy 54.349337 50.508966) - (xy 54.349336 50.508971) - (xy 54.329538 50.709996) - (xy 54.329538 50.710003) - (xy 50.0755 50.710003) - (xy 50.0755 48.170003) - (xy 54.329538 48.170003) - (xy 54.349336 48.371028) - (xy 54.349337 48.371033) - (xy 54.407977 48.564341) - (xy 54.407979 48.564346) - (xy 54.503199 48.742491) - (xy 54.536993 48.783669) - (xy 54.631353 48.898647) - (xy 54.633002 48.9) - (xy 54.787508 49.0268) - (xy 54.965653 49.12202) - (xy 54.965659 49.122023) - (xy 55.100327 49.162873) - (xy 55.158966 49.180662) - (xy 55.158971 49.180663) - (xy 55.359997 49.200462) - (xy 55.36 49.200462) - (xy 55.360003 49.200462) - (xy 55.561028 49.180663) - (xy 55.561033 49.180662) - (xy 55.571058 49.177621) - (xy 55.754341 49.122023) - (xy 55.903352 49.042375) - (xy 55.932491 49.0268) - (xy 55.932492 49.026798) - (xy 55.932494 49.026798) - (xy 56.088647 48.898647) - (xy 56.216798 48.742494) - (xy 56.312023 48.564341) - (xy 56.370662 48.371033) - (xy 56.370663 48.371028) - (xy 56.390462 48.170003) - (xy 56.390462 48.169996) - (xy 56.370663 47.968971) - (xy 56.370662 47.968966) - (xy 56.352873 47.910327) - (xy 56.312023 47.775659) - (xy 56.31202 47.775653) - (xy 56.2168 47.597508) - (xy 56.088651 47.441358) - (xy 56.088647 47.441353) - (xy 56.088641 47.441348) - (xy 55.932491 47.313199) - (xy 55.754346 47.217979) - (xy 55.754341 47.217977) - (xy 55.561033 47.159337) - (xy 55.561028 47.159336) - (xy 55.360003 47.139538) - (xy 55.359997 47.139538) - (xy 55.158971 47.159336) - (xy 55.158966 47.159337) - (xy 54.965658 47.217977) - (xy 54.965653 47.217979) - (xy 54.787508 47.313199) - (xy 54.631358 47.441348) - (xy 54.631348 47.441358) - (xy 54.503199 47.597508) - (xy 54.407979 47.775653) - (xy 54.407977 47.775658) - (xy 54.349337 47.968966) - (xy 54.349336 47.968971) - (xy 54.329538 48.169996) - (xy 54.329538 48.170003) - (xy 50.0755 48.170003) - (xy 50.0755 45.630003) - (xy 54.329538 45.630003) - (xy 54.349336 45.831028) - (xy 54.349337 45.831033) - (xy 54.407977 46.024341) - (xy 54.407979 46.024346) - (xy 54.503199 46.202491) - (xy 54.514276 46.215988) - (xy 54.631353 46.358647) - (xy 54.631358 46.358651) - (xy 54.787508 46.4868) - (xy 54.965653 46.58202) - (xy 54.965659 46.582023) - (xy 55.100327 46.622873) - (xy 55.158966 46.640662) - (xy 55.158971 46.640663) - (xy 55.359997 46.660462) - (xy 55.36 46.660462) - (xy 55.360003 46.660462) - (xy 55.561028 46.640663) - (xy 55.561033 46.640662) - (xy 55.754341 46.582023) - (xy 55.834925 46.538949) - (xy 55.932491 46.4868) - (xy 55.932492 46.486798) - (xy 55.932494 46.486798) - (xy 56.088647 46.358647) - (xy 56.216798 46.202494) - (xy 56.232765 46.172623) - (xy 56.31202 46.024346) - (xy 56.312023 46.024341) - (xy 56.370662 45.831033) - (xy 56.370663 45.831028) - (xy 56.390462 45.630003) - (xy 56.390462 45.629996) - (xy 56.370663 45.428971) - (xy 56.370662 45.428966) - (xy 56.324753 45.277625) - (xy 56.312023 45.235659) - (xy 56.31202 45.235653) - (xy 56.2168 45.057508) - (xy 56.088651 44.901358) - (xy 56.088647 44.901353) - (xy 56.088641 44.901348) - (xy 55.932491 44.773199) - (xy 55.754346 44.677979) - (xy 55.754341 44.677977) - (xy 55.561033 44.619337) - (xy 55.561028 44.619336) - (xy 55.360003 44.599538) - (xy 55.359997 44.599538) - (xy 55.158971 44.619336) - (xy 55.158966 44.619337) - (xy 54.965658 44.677977) - (xy 54.965653 44.677979) - (xy 54.787508 44.773199) - (xy 54.631358 44.901348) - (xy 54.631348 44.901358) - (xy 54.503199 45.057508) - (xy 54.407979 45.235653) - (xy 54.407977 45.235658) - (xy 54.349337 45.428966) - (xy 54.349336 45.428971) - (xy 54.329538 45.629996) - (xy 54.329538 45.630003) - (xy 50.0755 45.630003) - (xy 50.0755 40.485638) - (xy 51.140801 40.485638) - (xy 51.150655 40.742719) - (xy 51.199638 40.99528) - (xy 51.199639 40.995283) - (xy 51.275369 41.20614) - (xy 51.286602 41.237414) - (xy 51.349332 41.352774) - (xy 51.409504 41.463428) - (xy 51.543398 41.63908) - (xy 51.565471 41.668036) - (xy 51.750832 41.846429) - (xy 51.750834 41.846431) - (xy 51.750837 41.846433) - (xy 51.750838 41.846434) - (xy 51.927174 41.970466) - (xy 51.961271 41.994449) - (xy 51.961276 41.994452) - (xy 52.191821 42.108602) - (xy 52.191823 42.108602) - (xy 52.191826 42.108604) - (xy 52.437108 42.186228) - (xy 52.691364 42.2255) - (xy 52.691365 42.2255) - (xy 52.88423 42.2255) - (xy 52.936553 42.221482) - (xy 53.076517 42.210737) - (xy 53.07652 42.210736) - (xy 53.076522 42.210736) - (xy 53.106859 42.203636) - (xy 53.327021 42.152117) - (xy 53.565641 42.055944) - (xy 53.786783 41.924474) - (xy 53.985265 41.760787) - (xy 54.156435 41.56872) - (xy 54.296279 41.352775) - (xy 54.401521 41.118014) - (xy 54.405464 41.103668) - (xy 54.441869 40.971188) - (xy 54.469693 40.869939) - (xy 54.499198 40.614365) - (xy 54.495039 40.50587) - (xy 54.489344 40.35728) - (xy 54.440361 40.104719) - (xy 54.440361 40.104717) - (xy 54.353399 39.862588) - (xy 54.230496 39.636572) - (xy 54.074531 39.431966) - (xy 54.04627 39.404767) - (xy 53.889167 39.25357) - (xy 53.889165 39.253568) - (xy 53.678728 39.10555) - (xy 53.678723 39.105547) - (xy 53.448178 38.991397) - (xy 53.448175 38.991396) - (xy 53.202893 38.913772) - (xy 53.202887 38.913771) - (xy 53.044215 38.889263) - (xy 52.948636 38.8745) - (xy 52.755773 38.8745) - (xy 52.75577 38.8745) - (xy 52.563477 38.889263) - (xy 52.312979 38.947883) - (xy 52.074353 39.044058) - (xy 51.853216 39.175525) - (xy 51.654742 39.339206) - (xy 51.654734 39.339213) - (xy 51.537169 39.47113) - (xy 51.489182 39.524978) - (xy 51.483561 39.531285) - (xy 51.48356 39.531285) - (xy 51.34372 39.747225) - (xy 51.238478 39.981987) - (xy 51.238475 39.981995) - (xy 51.170307 40.230058) - (xy 51.140802 40.485635) - (xy 51.140801 40.485638) - (xy 50.0755 40.485638) - (xy 50.0755 35.1745) - (xy 50.094407 35.116309) - (xy 50.143907 35.080345) - (xy 50.1745 35.0755) - (xy 170.725107 35.0755) - ) - ) - ) - (zone (net 0) (net_name "") (layer "B.Cu") (tstamp 7ad2f3e7-e3ed-4daa-b93d-576d1191abf0) (hatch edge 0.508) - (connect_pads (clearance 0)) - (min_thickness 0.254) (filled_areas_thickness no) - (keepout (tracks allowed) (vias allowed) (pads allowed) (copperpour not_allowed) (footprints allowed)) - (fill (thermal_gap 0.508) (thermal_bridge_width 0.508)) - (polygon - (pts - (xy 61.7 90.1) - (xy 59.1 90.1) - (xy 59.1 79.9) - (xy 61.7 79.9) - ) - ) - ) - (zone (net 0) (net_name "") (layer "B.Cu") (tstamp d430a0a1-8dd4-491a-abc0-47345d04866b) (hatch edge 0.508) - (connect_pads (clearance 0)) - (min_thickness 0.254) (filled_areas_thickness no) - (keepout (tracks allowed) (vias allowed) (pads allowed) (copperpour not_allowed) (footprints allowed)) - (fill (thermal_gap 0.508) (thermal_bridge_width 0.508)) - (polygon - (pts - (xy 56.6 90.1) - (xy 54 90.1) - (xy 54 80) - (xy 56.6 80) - ) - ) - ) +(kicad_pcb + (version 20240108) + (generator "pcbnew") + (generator_version "8.0") + (general + (thickness 1.6) + (legacy_teardrops no) + ) + (paper "A4") + (title_block + (title "RedPitaya Lockbox") + (date "2024-06-11") + (rev "1.6.3") + (company "Atoms-Photons-Quanta, Institut für Angewandte Physik, TU Darmstadt") + (comment 1 "Tilman Preuschoff") + ) + (layers + (0 "F.Cu" signal) + (31 "B.Cu" signal) + (32 "B.Adhes" user "B.Adhesive") + (33 "F.Adhes" user "F.Adhesive") + (34 "B.Paste" user) + (35 "F.Paste" user) + (36 "B.SilkS" user "B.Silkscreen") + (37 "F.SilkS" user "F.Silkscreen") + (38 "B.Mask" user) + (39 "F.Mask" user) + (40 "Dwgs.User" user "User.Drawings") + (41 "Cmts.User" user "User.Comments") + (42 "Eco1.User" user "User.Eco1") + (43 "Eco2.User" user "User.Eco2") + (44 "Edge.Cuts" user) + (45 "Margin" user) + (46 "B.CrtYd" user "B.Courtyard") + (47 "F.CrtYd" user "F.Courtyard") + (48 "B.Fab" user) + (49 "F.Fab" user) + ) + (setup + (stackup + (layer "F.SilkS" + (type "Top Silk Screen") + (color "White") + ) + (layer "F.Paste" + (type "Top Solder Paste") + ) + (layer "F.Mask" + (type "Top Solder Mask") + (color "Blue") + (thickness 0.01) + ) + (layer "F.Cu" + (type "copper") + (thickness 0.035) + ) + (layer "dielectric 1" + (type "core") + (thickness 1.51) + (material "FR4") + (epsilon_r 4.5) + (loss_tangent 0.02) + ) + (layer "B.Cu" + (type "copper") + (thickness 0.035) + ) + (layer "B.Mask" + (type "Bottom Solder Mask") + (color "Blue") + (thickness 0.01) + ) + (layer "B.Paste" + (type "Bottom Solder Paste") + ) + (layer "B.SilkS" + (type "Bottom Silk Screen") + (color "White") + ) + (copper_finish "HAL lead-free") + (dielectric_constraints no) + ) + (pad_to_mask_clearance 0) + (allow_soldermask_bridges_in_footprints no) + (pcbplotparams + (layerselection 0x00310fc_ffffffff) + (plot_on_all_layers_selection 0x0000000_00000000) + (disableapertmacros no) + (usegerberextensions no) + (usegerberattributes no) + (usegerberadvancedattributes no) + (creategerberjobfile no) + (dashed_line_dash_ratio 12.000000) + (dashed_line_gap_ratio 3.000000) + (svgprecision 6) + (plotframeref no) + (viasonmask no) + (mode 1) + (useauxorigin no) + (hpglpennumber 1) + (hpglpenspeed 20) + (hpglpendiameter 15.000000) + (pdf_front_fp_property_popups yes) + (pdf_back_fp_property_popups yes) + (dxfpolygonmode yes) + (dxfimperialunits yes) + (dxfusepcbnewfont yes) + (psnegative no) + (psa4output no) + (plotreference yes) + (plotvalue yes) + (plotfptext yes) + (plotinvisibletext no) + (sketchpadsonfab no) + (subtractmaskfromsilk no) + (outputformat 1) + (mirror no) + (drillshape 0) + (scaleselection 1) + (outputdirectory "../gerber/") + ) + ) + (net 0 "") + (net 1 "/Supply_Ref/+15V") + (net 2 "GND") + (net 3 "/Supply_Ref/-15V") + (net 4 "/Input_Output_Module/+12V") + (net 5 "Net-(U6-EN{slash}UV)") + (net 6 "Net-(U6-TR{slash}SS)") + (net 7 "Net-(U6-INTVcc)") + (net 8 "Net-(U1-SET)") + (net 9 "Net-(U2-SET)") + (net 10 "Net-(U4A-+)") + (net 11 "Net-(U6-BST)") + (net 12 "Net-(U6-FB)") + (net 13 "Net-(U4D-+)") + (net 14 "Net-(U7B-+)") + (net 15 "Net-(U7A-+)") + (net 16 "unconnected-(J1-Pin_a3-Pada3)") + (net 17 "unconnected-(J1-Pin_a4-Pada4)") + (net 18 "Net-(U4-Pad7)") + (net 19 "/Input_Output_Module/-12V") + (net 20 "unconnected-(J1-Pin_a5-Pada5)") + (net 21 "/Supply_Ref/+5V") + (net 22 "unconnected-(J1-Pin_a6-Pada6)") + (net 23 "unconnected-(J1-Pin_a7-Pada7)") + (net 24 "Net-(R4-Pad1)") + (net 25 "unconnected-(J1-Pin_a8-Pada8)") + (net 26 "unconnected-(J1-Pin_a9-Pada9)") + (net 27 "unconnected-(J1-Pin_a10-Pada10)") + (net 28 "unconnected-(J1-Pin_a11-Pada11)") + (net 29 "unconnected-(J1-Pin_a12-Pada12)") + (net 30 "unconnected-(J1-Pin_a13-Pada13)") + (net 31 "unconnected-(J1-Pin_a14-Pada14)") + (net 32 "unconnected-(J1-Pin_a19-Pada19)") + (net 33 "unconnected-(J1-Pin_a20-Pada20)") + (net 34 "unconnected-(J1-Pin_a21-Pada21)") + (net 35 "unconnected-(J1-Pin_a22-Pada22)") + (net 36 "unconnected-(J1-Pin_a23-Pada23)") + (net 37 "unconnected-(J1-Pin_a24-Pada24)") + (net 38 "unconnected-(J1-Pin_a25-Pada25)") + (net 39 "unconnected-(J1-Pin_a26-Pada26)") + (net 40 "unconnected-(J1-Pin_a27-Pada27)") + (net 41 "unconnected-(J1-Pin_a28-Pada28)") + (net 42 "unconnected-(J1-Pin_a29-Pada29)") + (net 43 "unconnected-(U5-Pad2)") + (net 44 "unconnected-(U5-Pad5)") + (net 45 "unconnected-(J1-Pin_c3-Padc3)") + (net 46 "unconnected-(J1-Pin_c4-Padc4)") + (net 47 "unconnected-(J1-Pin_c5-Padc5)") + (net 48 "unconnected-(J1-Pin_c6-Padc6)") + (net 49 "unconnected-(J1-Pin_c7-Padc7)") + (net 50 "unconnected-(J1-Pin_c8-Padc8)") + (net 51 "Net-(C2-Pad1)") + (net 52 "unconnected-(J1-Pin_c9-Padc9)") + (net 53 "unconnected-(J1-Pin_c10-Padc10)") + (net 54 "unconnected-(J1-Pin_c11-Padc11)") + (net 55 "unconnected-(J1-Pin_c12-Padc12)") + (net 56 "unconnected-(J1-Pin_c13-Padc13)") + (net 57 "Net-(C11-Pad2)") + (net 58 "unconnected-(J1-Pin_c14-Padc14)") + (net 59 "unconnected-(J1-Pin_c19-Padc19)") + (net 60 "unconnected-(J1-Pin_c20-Padc20)") + (net 61 "unconnected-(J1-Pin_c21-Padc21)") + (net 62 "unconnected-(J1-Pin_c22-Padc22)") + (net 63 "unconnected-(J1-Pin_c23-Padc23)") + (net 64 "unconnected-(J1-Pin_c24-Padc24)") + (net 65 "unconnected-(J1-Pin_c25-Padc25)") + (net 66 "unconnected-(J1-Pin_c26-Padc26)") + (net 67 "Net-(R20-Pad1)") + (net 68 "unconnected-(J1-Pin_c27-Padc27)") + (net 69 "unconnected-(J1-Pin_c28-Padc28)") + (net 70 "unconnected-(J1-Pin_c29-Padc29)") + (net 71 "unconnected-(U5-Pad8)") + (net 72 "Net-(J3-In)") + (net 73 "Net-(J5-In)") + (net 74 "Net-(J7-In)") + (net 75 "Net-(J11-In)") + (net 76 "Net-(J12-In)") + (net 77 "Net-(J13-In)") + (net 78 "Net-(J14-In)") + (net 79 "Net-(J16-In)") + (net 80 "Net-(U4A--)") + (net 81 "Net-(U6-RT)") + (net 82 "Net-(U8B--)") + (net 83 "Net-(U4B-+)") + (net 84 "Net-(U8A-+)") + (net 85 "Net-(U4B--)") + (net 86 "Net-(U4D--)") + (net 87 "Net-(U4C-+)") + (net 88 "Net-(U7B--)") + (net 89 "Net-(U7A--)") + (net 90 "Net-(U4C--)") + (net 91 "Net-(U8B-+)") + (net 92 "Net-(U8A--)") + (net 93 "unconnected-(RP1--3.3V-Pad2)") + (net 94 "unconnected-(RP1-PS_MIO10-Pad3)") + (net 95 "unconnected-(RP1-PS_MIO11-Pad4)") + (net 96 "unconnected-(RP1-PS_MIO12-Pad5)") + (net 97 "/Input_Output_Module/SET") + (net 98 "unconnected-(RP1-PS_MIO13-Pad6)") + (net 99 "unconnected-(RP1-PS_MIO08-Pad7)") + (net 100 "unconnected-(RP1-PS_MIO09-Pad8)") + (net 101 "unconnected-(RP1-I2C0_SCL-Pad9)") + (net 102 "unconnected-(RP1-I2C0_SDA-Pad10)") + (net 103 "unconnected-(RP1-Ext_CM-Pad11)") + (net 104 "unconnected-(RP1-AI_0-Pad13)") + (net 105 "unconnected-(RP1-AI_1-Pad14)") + (net 106 "unconnected-(RP1-AI_2-Pad15)") + (net 107 "unconnected-(RP1-AI_3-Pad16)") + (net 108 "unconnected-(RP1-AO_0-Pad17)") + (net 109 "unconnected-(RP1-AO_1-Pad18)") + (net 110 "unconnected-(RP1-AO_2-Pad19)") + (net 111 "unconnected-(RP1-AO_3-Pad20)") + (net 112 "unconnected-(RP1-CLK+-Pad23)") + (net 113 "unconnected-(RP1-CLK--Pad24)") + (net 114 "unconnected-(U1-PG-Pad5)") + (net 115 "unconnected-(U2-PG-Pad4)") + (net 116 "unconnected-(U2-VIOC-Pad7)") + (net 117 "unconnected-(U3-NC-Pad1)") + (net 118 "/Input_Output_Module/+10V_ref") + (net 119 "unconnected-(U3-NC-Pad3)") + (net 120 "unconnected-(U3-Trim-Pad5)") + (net 121 "unconnected-(U3-NC-Pad7)") + (net 122 "unconnected-(U3-NC-Pad8)") + (net 123 "unconnected-(U6-SYNC-Pad1)") + (net 124 "unconnected-(U6-PG-Pad15)") + (net 125 "Net-(J1-Pin_a1)") + (net 126 "Net-(J1-Pin_a2)") + (net 127 "Net-(J1-Pin_a15)") + (net 128 "Net-(J1-Pin_a16)") + (net 129 "Net-(J1-Pin_a17)") + (net 130 "Net-(J1-Pin_a18)") + (net 131 "Net-(J1-Pin_a31)") + (net 132 "Net-(J1-Pin_a32)") + (net 133 "Net-(J1-Pin_c2)") + (net 134 "Net-(J1-Pin_c15)") + (net 135 "Net-(J1-Pin_c16)") + (net 136 "Net-(J1-Pin_c17)") + (net 137 "Net-(J1-Pin_c18)") + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70b37c") + (at 124.35 53.65 90) + (descr "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") + (tags "resistor") + (property "Reference" "R25" + (at 2 -0.2 180) + (layer "F.SilkS") + (uuid "601fb3a3-091c-4bba-97fd-874ee22049cd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1M" + (at 0 1.5 90) + (layer "F.Fab") + (uuid "9b2c92af-ff9d-4e9e-852f-a6bf4ad7b4e9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "436221e7-6a50-49f0-b4ec-0445dd675d05") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "dd097ffb-629f-478f-a0e4-409ad9c8ff4e") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "56514f90-5baf-417b-9b21-47fca3c77407") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Panasonic" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "0ec57511-3884-4ae9-8581-4a04614315cb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "ERJ-3RED1004V" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "d4457b11-0663-4b99-aecc-e3f1e2fa7d6a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b0591c0") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d8df7571-d3fa-413e-b038-fc7795887093") + ) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "eac6fb0e-9fd0-4933-9fd2-f0a1b8b8e5d3") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3e683a1f-a919-407c-8867-44813abeed0d") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ed89e958-b57d-4497-95eb-cb761bc29b00") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3767758c-18d9-4aae-b21c-1cda2c173441") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1c42f245-23a7-4759-b3ad-686f4cf7d83f") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2e349420-5c99-4c30-adc3-e93f9aee1b33") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "38c22391-c547-415a-8a2e-d599e6499f2f") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "bd35ccb4-dda0-4469-b301-51bc7170fa2b") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "62e7dd07-0823-4da3-98f0-29f5c3bc29aa") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "5c847932-e445-4467-8980-916ffc0ea64e") + (effects + (font + (size 0.4 0.4) + (thickness 0.075) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0 90) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 91 "Net-(U8B-+)") + (pintype "passive") + (uuid "b49e7866-342b-42f3-94c0-8f8475540a18") + ) + (pad "2" smd roundrect + (at 0.825 0 90) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "289084fb-9d1a-4a39-bd86-d62737e7f458") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0603_1608Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70b3be") + (at 176 51.4 -90) + (descr "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") + (tags "capacitor") + (property "Reference" "C25" + (at 3 0 90) + (layer "F.SilkS") + (uuid "072feb16-8732-4e4b-afe1-7567a4179c5f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "16p / C0G" + (at 0 1.5 90) + (layer "F.Fab") + (uuid "6ba7944b-1ae3-4cc0-8286-6207ba42aeb6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "23b46676-b9c4-4bc0-b0b8-d7243da1eb8c") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a063ed60-4ce6-44e3-9d18-4cbca840f93b") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "83f0383c-ba64-4101-84b8-8db5f9e1a6b7") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Murata Electronics" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "75c475a8-19d5-4721-b276-8b1c4ca531ad") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "GCM1885C2A160JA16D" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "7748a563-dd1a-4e2a-beb9-36d2a3b2ad60") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005f63a1aa") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start -0.14058 0.51) + (end 0.14058 0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9fd9c18b-40b8-4e4c-83c4-73fd3f23d7ba") + ) + (fp_line + (start -0.14058 -0.51) + (end 0.14058 -0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1548caea-3cf8-4359-8fdd-07577420042d") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d2076f11-d943-4569-b58f-b829915b1c8a") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a47cecce-d815-4ce9-a459-9ad57b2a4e50") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "61595a31-8714-4eec-b379-62ec46468f83") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ef082604-aac7-42dd-9bcc-3f684c2bfd3c") + ) + (fp_line + (start -0.8 0.4) + (end -0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "64fe340f-6735-44f7-b2b1-ecf3be73b6d5") + ) + (fp_line + (start 0.8 0.4) + (end -0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f139fd3c-da25-45ec-a455-7290d4e36494") + ) + (fp_line + (start -0.8 -0.4) + (end 0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3c4e8635-f303-4b00-9aa9-a413eeb32817") + ) + (fp_line + (start 0.8 -0.4) + (end 0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a617e6d0-5576-4904-bb1f-90789665b18f") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "e6d843ef-8ac5-451c-b002-c0216f0835c2") + (effects + (font + (size 0.3 0.3) + (thickness 0.075) + ) + ) + ) + (pad "1" smd roundrect + (at -0.775 0 270) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 15 "Net-(U7A-+)") + (pintype "passive") + (uuid "f9df1a18-9ab6-4b2d-b7bd-f83a707d86b6") + ) + (pad "2" smd roundrect + (at 0.775 0 270) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "de7cc5fc-8cbd-454d-b021-3d8aee791f33") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0805_2012Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70b3ee") + (at 90.2 103.8 -90) + (descr "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") + (tags "capacitor") + (property "Reference" "C5" + (at 1.6 -2.3 0) + (layer "F.SilkS") + (uuid "15d78a07-2a45-4c9f-b884-7e8c093fde0a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "4.7u" + (at 0 1.75 90) + (layer "F.Fab") + (uuid "be87d011-0522-4abf-8aa7-564e2aafaee0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "eb26ec11-ef8c-4e13-8bbe-d13f60fa074b") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4df79b3e-899a-4d40-89e5-c33cdeaed2df") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2223376f-12b3-4536-b1d7-68745d627bf1") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Wurth Electronics" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "1dd2219b-f6b9-4a11-92e7-08c21d31b300") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "885012107013" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "13b584b5-f59a-4420-93aa-bf8b46408313") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005c1bd316") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.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 "90a81548-9238-419a-b512-dc78d389fe39") + ) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1f0755e3-f188-4fed-9234-f0f01ac2b3f5") + ) + (fp_line + (start -1.7 0.98) + (end -1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "464ba924-5451-4b88-bc0c-c12e04ac0422") + ) + (fp_line + (start 1.7 0.98) + (end -1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f9c7bdbf-5246-436a-87ba-fccf2882c126") + ) + (fp_line + (start -1.7 -0.98) + (end 1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "302d1f25-8f17-4e01-95a8-03e7a4e505fb") + ) + (fp_line + (start 1.7 -0.98) + (end 1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ce3806f3-7b25-4ddf-b878-fe65a92321b5") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "dc72e09f-9028-4d03-a34c-ef7027753083") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9d5b0397-54f1-47a8-95c7-19ce3e77e73a") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ff537b64-2e01-4c5f-bfd2-ce13c4159ae9") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4993e309-f07f-48e8-8cfd-3a3f3b343033") + ) + (fp_text user "${REFERENCE}" + (at 0 -1.5 90) + (layer "F.Fab") + (uuid "e3fda9c3-a13f-4d7b-b33e-19020c7a5492") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -0.95 0 270) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 5 "Net-(U6-EN{slash}UV)") + (pintype "passive") + (uuid "4b8a36cc-20c8-424c-bf28-60af815a6e91") + ) + (pad "2" smd roundrect + (at 0.95 0 270) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "ecfc0f53-9da2-4cc9-b63e-5b9c6cf09c9a") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70b41e") + (at 99 99.6 90) + (descr "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") + (tags "resistor") + (property "Reference" "R13" + (at 2.35 0 180) + (layer "F.SilkS") + (uuid "f3a143fb-a221-49b6-aa32-bd942671405c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "243k" + (at 0 1.43 90) + (layer "F.Fab") + (uuid "77fe62f7-d6ea-4f63-a591-f8fdef26a97c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c1740f71-3011-4bb7-924a-586463c30297") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7a26f965-05df-42e9-bb91-b4894362a7d1") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6d641839-38dc-4c65-afca-e92ecfdfe95c") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Susumu" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "b45516ce-bd92-4ce4-88ff-fafa5de1003a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "RR0816P-2433-D-38D" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "8450fa87-78c2-40bd-bfc9-04ba7d85ff92") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/00000000-0000-0000-0000-00005b053798/feb1b031-377e-46b5-b6a4-4bf26f5087d1") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7553afac-701b-40d9-94b1-e307d17073b9") + ) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5dcda6fc-a79a-46c7-a160-8d7e7e20c788") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b1d2e2a4-27fc-4360-9383-e720366c7b2f") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c28f2bf5-9594-490a-bcd6-feb090968484") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "38388c85-6525-486b-853a-e376943200af") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d3f82f19-8bde-43d3-8ddb-17204d4f95d7") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "19f78215-8195-4fc0-b959-f69ce4dfda09") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "07e30632-2a78-4856-8dc3-1a59e192dbb7") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "bcd4cf64-e1f5-4812-a083-e0d2ccaeb5ee") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "37fafd46-0273-4032-9385-ed348155a763") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "6ff997f4-4c1e-4608-a740-a8171d046712") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0 90) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 12 "Net-(U6-FB)") + (pintype "passive") + (uuid "f0c0e44b-f387-4007-9f06-5577cb2e7102") + ) + (pad "2" smd roundrect + (at 0.825 0 90) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "668de0c6-0018-4139-90ac-3ffeab6c5bb9") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70b4f0") + (at 174.1 46.9 180) + (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" "U7" + (at 3 3.5 0) + (layer "F.SilkS") + (uuid "87566dad-6fbb-4d85-8c82-ab2bb02e931c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "OPA1602" + (at 0 3.5 0) + (layer "F.Fab") + (uuid "077ea3a0-520d-43e6-8fd3-4d8583b9ed77") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0d1fb39c-8cc0-4c08-a34f-e28600d7091b") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/opa1604.pdf" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "32ef6b15-c130-42f9-87c1-e5242731b683") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3849e8a1-2afb-4ebf-a67c-39d595fa8e1c") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Texas Instruments" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "e9c3213a-160d-41d0-a131-643cf027a3e6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "OPA1602AIDR" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "58d4507f-24e9-400a-ae54-058f9fc13450") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "SOIC*3.9x4.9mm*P1.27mm* DIP*W7.62mm* TO*99* OnSemi*Micro8* TSSOP*3x3mm*P0.65mm* TSSOP*4.4x3mm*P0.65mm* MSOP*3x3mm*P0.65mm* SSOP*3.9x4.9mm*P0.635mm* LFCSP*2x2mm*P0.5mm* *SIP* SOIC*5.3x6.2mm*P1.27mm*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005f57dc63") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start 0 2.56) + (end 1.95 2.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8851c4fb-d6ed-47ab-8f6a-b6a2b0bb40c4") + ) + (fp_line + (start 0 2.56) + (end -1.95 2.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "db8a4486-8c92-4300-a733-0bb54f49e421") + ) + (fp_line + (start 0 -2.56) + (end 1.95 -2.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c4797a1e-db8b-4fed-b748-ddf97c9e2517") + ) + (fp_line + (start 0 -2.56) + (end -1.95 -2.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9eecebdc-45a4-4860-84d5-ce3fec78de58") + ) + (fp_poly + (pts + (xy -2.7 -2.465) (xy -2.94 -2.795) (xy -2.46 -2.795) (xy -2.7 -2.465) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "53d16f72-135d-4e59-b246-825420c04b95") + ) + (fp_line + (start 3.7 2.7) + (end 3.7 -2.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "146e5041-0729-454b-861e-5cce74964959") + ) + (fp_line + (start 3.7 -2.7) + (end -3.7 -2.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "884e186a-4c31-48b6-9ff3-8969fe905018") + ) + (fp_line + (start -3.7 2.7) + (end 3.7 2.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "6572a1bd-fb33-4032-9959-3c2367ac0bbe") + ) + (fp_line + (start -3.7 -2.7) + (end -3.7 2.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ef5ad368-3f71-4788-9f16-6a620c4fb652") + ) + (fp_line + (start 1.95 2.45) + (end -1.95 2.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "651bb375-4cd4-45ea-8e81-4977472d95f5") + ) + (fp_line + (start 1.95 -2.45) + (end 1.95 2.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "fb981f4e-9276-423a-b450-0de4131dfbd0") + ) + (fp_line + (start -0.975 -2.45) + (end 1.95 -2.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "cd1dbf9b-a276-4a49-bd21-62a4af3da6e9") + ) + (fp_line + (start -1.95 2.45) + (end -1.95 -1.475) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2c013cb6-f260-40f0-83d9-dfad304c1b89") + ) + (fp_line + (start -1.95 -1.475) + (end -0.975 -2.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c5ae3c77-4fa9-4688-89f2-f596442b1445") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "3bd70c6a-3a4d-4f3e-9155-5b91f0059489") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -2.475 -1.905 180) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 67 "Net-(R20-Pad1)") + (pintype "output") + (uuid "6f31e481-92c9-45a8-a8a8-36b256335aae") + ) + (pad "2" smd roundrect + (at -2.475 -0.635 180) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 89 "Net-(U7A--)") + (pinfunction "-") + (pintype "input") + (uuid "750e7d11-b6e8-40a0-b23f-7ad94dd30a97") + ) + (pad "3" smd roundrect + (at -2.475 0.635 180) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 15 "Net-(U7A-+)") + (pinfunction "+") + (pintype "input") + (uuid "5b8ebf24-03ba-478d-811e-8c4b1439fb63") + ) + (pad "4" smd roundrect + (at -2.475 1.905 180) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 19 "/Input_Output_Module/-12V") + (pinfunction "V-") + (pintype "power_in") + (uuid "14a50fe9-4f64-4966-8525-0627c5f51460") + ) + (pad "5" smd roundrect + (at 2.475 1.905 180) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 14 "Net-(U7B-+)") + (pinfunction "+") + (pintype "input") + (uuid "76cfe521-417a-4e5b-a23b-867eeb070039") + ) + (pad "6" smd roundrect + (at 2.475 0.635 180) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 88 "Net-(U7B--)") + (pinfunction "-") + (pintype "input") + (uuid "d4c4b37a-8719-42c2-a6fe-94946fe824c4") + ) + (pad "7" smd roundrect + (at 2.475 -0.635 180) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 88 "Net-(U7B--)") + (pintype "output") + (uuid "e434ba00-3e48-4e5a-92fb-7c6dc1e88c95") + ) + (pad "8" smd roundrect + (at 2.475 -1.905 180) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 4 "/Input_Output_Module/+12V") + (pinfunction "V+") + (pintype "power_in") + (uuid "2f558274-ac0d-42b1-b083-ff21dd92e74c") + ) + (model "${KICAD8_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-8_3.9x4.9mm_P1.27mm.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "TestPoint:TestPoint_THTPad_D1.5mm_Drill0.7mm" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70b529") + (at 78.5 55.8) + (descr "THT pad as test Point, diameter 1.5mm, hole diameter 0.7mm") + (tags "test point THT pad") + (property "Reference" "TP5" + (at 0 -2 0) + (layer "F.SilkS") + (hide yes) + (uuid "015d474f-58d4-4d3b-a270-e2d5f55140c8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "+10V" + (at -3.5 -0.02 0) + (layer "F.SilkS") + (uuid "4578ab64-4eef-4e26-b2cb-9e570882fcde") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "TestPoint:TestPoint_THTPad_D1.5mm_Drill0.7mm" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "43680ee5-0c40-46c3-b4b1-ed2e2ef47bf0") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3dc89145-e323-44a4-8dbf-30fb1370a36a") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "18be63e2-bad7-49b4-b4a4-f2bc867d23de") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Config" "DNF" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "6ec99e5b-9095-4fbf-90f3-e2c829d24f88") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Pin* Test*") + (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005ccf668f") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.kicad_sch") + (attr exclude_from_pos_files) + (fp_circle + (center 0 0) + (end 0 0.95) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "f5940542-b857-42c7-ab05-b1a5bef98868") + ) + (fp_circle + (center 0 0) + (end 1.25 0) + (stroke + (width 0.05) + (type solid) + ) + (fill none) + (layer "F.CrtYd") + (uuid "94a199e5-0e69-4093-92e5-38f724a5263b") + ) + (fp_text user "${REFERENCE}" + (at 0 -1.65 0) + (layer "F.Fab") + (uuid "a520d55e-f6e9-4aa5-af35-7640c2f399bb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0) + (size 1.5 1.5) + (drill 0.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 118 "/Input_Output_Module/+10V_ref") + (pinfunction "1") + (pintype "passive") + (uuid "95724c2f-2573-40a5-a57a-7dcb12775224") + ) + ) + (footprint "TestPoint:TestPoint_THTPad_D1.5mm_Drill0.7mm" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70b5c5") + (at 167.6 130.2) + (descr "THT pad as test Point, diameter 1.5mm, hole diameter 0.7mm") + (tags "test point THT pad") + (property "Reference" "TP4" + (at 0 -2 0) + (layer "F.SilkS") + (hide yes) + (uuid "126e4aa7-99f4-4dea-a91f-9bb61c7737a0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "+5V" + (at 0 2 0) + (layer "F.SilkS") + (uuid "cd993a90-0a28-4565-83f5-01679923bf5f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "TestPoint:TestPoint_THTPad_D1.5mm_Drill0.7mm" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "40304546-b2e1-4174-9183-fd27eef3c0a8") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "579c06f5-2659-4600-a30d-0881e2af827b") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a0854578-20e4-4057-9e04-44dc75357b14") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Config" "DNF" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "caae405c-9c37-4e3c-96a0-e6a4fa7da7c8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Pin* Test*") + (path "/00000000-0000-0000-0000-00005b053798/4d3c1996-cb8b-450e-b4a4-dc613505151c") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.kicad_sch") + (attr exclude_from_pos_files) + (fp_circle + (center 0 0) + (end 0 0.95) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "73399c8c-8286-4ef3-abb7-da4104a8c0b8") + ) + (fp_circle + (center 0 0) + (end 1.25 0) + (stroke + (width 0.05) + (type solid) + ) + (fill none) + (layer "F.CrtYd") + (uuid "09403e62-06f1-40ce-b449-7c3c12b0c7ea") + ) + (fp_text user "${REFERENCE}" + (at 0 -1.65 0) + (layer "F.Fab") + (uuid "8bfbc72b-d849-41ae-8fec-d57aaab773ad") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0) + (size 1.5 1.5) + (drill 0.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 21 "/Supply_Ref/+5V") + (pinfunction "1") + (pintype "passive") + (uuid "2ff1235b-f691-4eb4-93d3-242b23bb3f84") + ) + ) + (footprint "Capacitor_SMD:C_0603_1608Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70b898") + (at 99.85 104.3 -90) + (descr "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") + (tags "capacitor") + (property "Reference" "C11" + (at 1.6 2.5 0) + (layer "F.SilkS") + (uuid "4a2c716a-cf38-4017-9380-4738476a7014") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100n" + (at 0 1.5 -90) + (layer "F.Fab") + (uuid "f2e505cb-3495-4332-aeb4-f500f2d37ec0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "56e5d4e9-275d-45c4-8949-1aa030923364") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "18371140-3eb9-4785-833f-da3a9a6a7fa7") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2cd851da-18be-4cd8-acde-512c9f911b76") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Kemet" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "47dde660-e19f-473a-b6e8-04060162423b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "C0603C104K5RECAUTO" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "f8612f78-4769-4778-8144-156725c19782") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/00000000-0000-0000-0000-00005b053798/58c7e967-a994-467a-b97f-e6d59b9f5c83") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.kicad_sch") + (attr smd) + (fp_line + (start -0.14058 0.51) + (end 0.14058 0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5ab8119d-4689-423b-ad47-c8fb18e3c9ee") + ) + (fp_line + (start -0.14058 -0.51) + (end 0.14058 -0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4dce9c9f-e3af-4e53-a05c-0c773764030d") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7d678ef3-cd36-4d2f-8d96-a0792f9b804c") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0b2822cf-9c44-4ebe-be7f-7a1319ce4948") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2687cb59-244a-4658-8e88-a1918efd1395") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8ae5b14d-3d0f-454d-963e-163f693c0d97") + ) + (fp_line + (start -0.8 0.4) + (end -0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9320493b-4b0f-49c0-86c7-644aef48867c") + ) + (fp_line + (start 0.8 0.4) + (end -0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c91f73d8-f55d-4139-93f9-7a35642f7630") + ) + (fp_line + (start -0.8 -0.4) + (end 0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "98fc694a-2097-43d6-bd8b-344f2341fd61") + ) + (fp_line + (start 0.8 -0.4) + (end 0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0460eedb-6a7a-4e00-9c93-490861cba641") + ) + (fp_text user "${REFERENCE}" + (at 0 0 -90) + (layer "F.Fab") + (uuid "b096e7b8-87df-4de9-84c4-30e418f440ca") + (effects + (font + (size 0.3 0.3) + (thickness 0.075) + ) + ) + ) + (pad "1" smd roundrect + (at -0.775 0 270) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 11 "Net-(U6-BST)") + (pintype "passive") + (uuid "c1ecb90a-cfb6-41fd-8865-fd793614a9fd") + ) + (pad "2" smd roundrect + (at 0.775 0 270) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 57 "Net-(C11-Pad2)") + (pintype "passive") + (uuid "cdf69722-aa12-4cda-a54c-0dff5e29433c") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Symbol:RoHS-Logo_6mm_SilkScreen" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70b8bf") + (at 183.6 129.9) + (descr "Restriction of Hazardous Substances Directive Logo") + (tags "Logo RoHS") + (property "Reference" "LOGO3" + (at 0 0 0) + (layer "F.SilkS") + (hide yes) + (uuid "f5bfd7b0-a206-4ed3-a922-880faef68dea") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Logo_RoHS" + (at 0.75 0 0) + (layer "F.Fab") + (hide yes) + (uuid "31944da6-0b6a-4eda-823c-8b87624774bf") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Symbol:RoHS-Logo_6mm_SilkScreen" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ec62cc8b-9d78-474a-8c86-df1475a478d8") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "065432db-6c2d-413b-82c3-762c5d809f3c") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0819e1ae-018d-4aa9-b34f-a84725796e43") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "b516019e-b997-42aa-8455-a6f73c871a38") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "b2a883d4-da50-4458-91de-c4c1781955d0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Sim.Enable" "0" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "d62c6dc2-641e-4b0a-90f3-cb526c4dd41a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (path "/00000000-0000-0000-0000-00005f70d043") + (sheetname "Root") + (sheetfile "RedPitaya_Lockbox.kicad_sch") + (attr exclude_from_pos_files exclude_from_bom allow_missing_courtyard) + (fp_poly + (pts + (xy 1.42875 -0.612321) (xy 3.673928 -0.612321) (xy 3.673928 -2.880179) (xy 4.853214 -2.880179) (xy 4.853214 2.880179) + (xy 3.673928 2.880179) (xy 3.673928 0.36243) (xy 2.557008 0.368313) (xy 1.440089 0.374196) (xy 1.434227 1.627187) + (xy 1.428365 2.880179) (xy 0.249464 2.880179) (xy 0.249464 -2.880179) (xy 1.42875 -2.880179) (xy 1.42875 -0.612321) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "d3ef42a3-239b-49ef-9e77-1303df06891a") + ) + (fp_poly + (pts + (xy -2.766786 -1.369861) (xy -2.615368 -1.368819) (xy -2.498683 -1.365855) (xy -2.406119 -1.35994) + (xy -2.327062 -1.350049) (xy -2.250896 -1.335153) (xy -2.167008 -1.314228) (xy -2.153023 -1.310484) + (xy -1.862869 -1.20975) (xy -1.595309 -1.071021) (xy -1.353326 -0.896787) (xy -1.139905 -0.689533) + (xy -0.958029 -0.451747) (xy -0.815064 -0.195322) (xy -0.731969 0.008601) (xy -0.673332 0.217963) + (xy -0.636252 0.445596) (xy -0.619143 0.671394) (xy -0.622054 1.005223) (xy -0.661734 1.313691) + (xy -0.739026 1.599125) (xy -0.854774 1.863849) (xy -1.009819 2.110189) (xy -1.205004 2.340472) + (xy -1.234956 2.370937) (xy -1.456295 2.5665) (xy -1.690889 2.721647) (xy -1.946531 2.840986) (xy -2.135724 2.903854) + (xy -2.253995 2.929662) (xy -2.403738 2.950474) (xy -2.571249 2.965339) (xy -2.742822 2.97331) (xy -2.904753 2.973438) + (xy -3.032462 2.965912) (xy -3.269147 2.926899) (xy -3.513177 2.858784) (xy -3.752483 2.766426) + (xy -3.974996 2.654685) (xy -4.168647 2.528419) (xy -4.220137 2.487747) (xy -4.413802 2.297838) + (xy -4.578561 2.075038) (xy -4.712694 1.822762) (xy -4.814481 1.544424) (xy -4.882203 1.24344) (xy -4.89611 1.145268) + (xy -4.918669 0.801926) (xy -4.918221 0.79375) (xy -3.769799 0.79375) (xy -3.756071 1.063973) (xy -3.712314 1.30124) + (xy -3.637779 1.507234) (xy -3.531718 1.683638) (xy -3.393384 1.832135) (xy -3.265689 1.927695) + (xy -3.159493 1.989022) (xy -3.059603 2.028883) (xy -2.951801 2.050725) (xy -2.821871 2.057998) + (xy -2.732768 2.056954) (xy -2.616089 2.05172) (xy -2.529679 2.041662) (xy -2.458495 2.023986) (xy -2.387495 1.995903) + (xy -2.376305 1.990793) (xy -2.242011 1.910974) (xy -2.110281 1.801219) (xy -1.996385 1.675136) + (xy -1.953045 1.613617) (xy -1.876705 1.461827) (xy -1.817553 1.278326) (xy -1.777588 1.074143) + (xy -1.758812 0.860304) (xy -1.763223 0.647838) (xy -1.768312 0.595092) (xy -1.80533 0.365291) (xy -1.861592 0.171242) + (xy -1.939812 0.006456) (xy -2.042709 -0.135554) (xy -2.099103 -0.195045) (xy -2.259903 -0.322754) + (xy -2.436653 -0.41135) (xy -2.623394 -0.460836) (xy -2.814166 -0.471212) (xy -3.003009 -0.44248) + (xy -3.183965 -0.374642) (xy -3.351073 -0.2677) (xy -3.432435 -0.194718) (xy -3.556616 -0.047009) + (xy -3.650672 0.118858) (xy -3.716363 0.308039) (xy -3.75545 0.525694) (xy -3.769694 0.77698) (xy -3.769799 0.79375) + (xy -4.918221 0.79375) (xy -4.900706 0.474671) (xy -4.842751 0.165131) (xy -4.745329 -0.125067) + (xy -4.608969 -0.394296) (xy -4.434197 -0.640927) (xy -4.255358 -0.832033) (xy -4.038311 -1.00736) + (xy -3.790274 -1.15411) (xy -3.518293 -1.268405) (xy -3.388479 -1.30863) (xy -3.301869 -1.331632) + (xy -3.227258 -1.348137) (xy -3.154117 -1.359185) (xy -3.071918 -1.365811) (xy -2.970132 -1.369053) + (xy -2.838229 -1.369947) (xy -2.766786 -1.369861) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "0bfb5d33-6daa-4179-9c1c-f9e0a56aa213") + ) + (fp_poly + (pts + (xy -8.861652 -2.872954) (xy -8.505405 -2.870235) (xy -8.187134 -2.86702) (xy -7.907855 -2.86333) + (xy -7.668584 -2.859186) (xy -7.470337 -2.854609) (xy -7.314129 -2.84962) (xy -7.200976 -2.84424) + (xy -7.131893 -2.838489) (xy -7.121072 -2.836901) (xy -6.91057 -2.795776) (xy -6.736407 -2.750064) + (xy -6.589567 -2.695637) (xy -6.461035 -2.628368) (xy -6.341796 -2.544132) (xy -6.222832 -2.4388) + (xy -6.197601 -2.414167) (xy -6.102109 -2.315495) (xy -6.031593 -2.230617) (xy -5.97545 -2.145193) + (xy -5.923081 -2.044883) (xy -5.920266 -2.038998) (xy -5.85113 -1.883256) (xy -5.802871 -1.744381) + (xy -5.772223 -1.607352) (xy -5.755921 -1.457144) (xy -5.7507 -1.278735) (xy -5.750662 -1.258661) + (xy -5.76256 -1.004707) (xy -5.800139 -0.782572) (xy -5.866225 -0.584896) (xy -5.963644 -0.404321) + (xy -6.095221 -0.233487) (xy -6.177789 -0.146348) (xy -6.288577 -0.043442) (xy -6.399505 0.042462) + (xy -6.518579 0.115341) (xy -6.653806 0.17917) (xy -6.81319 0.237928) (xy -7.004739 0.29559) (xy -7.140572 0.331866) + (xy -7.216769 0.351518) (xy -7.049858 0.464581) (xy -6.880055 0.595003) (xy -6.705 0.757436) (xy -6.535086 0.941314) + (xy -6.380705 1.136076) (xy -6.357854 1.167946) (xy -6.318862 1.225149) (xy -6.262238 1.310945) + (xy -6.190977 1.420589) (xy -6.108073 1.549336) (xy -6.016522 1.692441) (xy -5.919316 1.845156) + (xy -5.819452 2.002738) (xy -5.719923 2.16044) (xy -5.623725 2.313517) (xy -5.533851 2.457224) (xy -5.453297 2.586814) + (xy -5.385057 2.697542) (xy -5.332125 2.784663) (xy -5.297497 2.843431) (xy -5.284166 2.869101) + (xy -5.284108 2.869531) (xy -5.305875 2.872164) (xy -5.36753 2.87456) (xy -5.463605 2.876635) (xy -5.588631 2.878308) + (xy -5.73714 2.879494) (xy -5.903662 2.88011) (xy -5.983188 2.880179) (xy -6.682268 2.880179) (xy -7.261583 2.012723) + (xy -7.386485 1.826423) (xy -7.509316 1.644574) (xy -7.626628 1.472186) (xy -7.734972 1.314272) + (xy -7.830901 1.17584) (xy -7.910965 1.061902) (xy -7.971718 0.977469) (xy -7.999559 0.940342) (xy -8.119728 0.797055) + (xy -8.236606 0.686516) (xy -8.35857 0.604885) (xy -8.493996 0.548317) (xy -8.651261 0.512969) (xy -8.838742 0.495) + (xy -8.979396 0.490833) (xy -9.264197 0.487589) (xy -9.275937 2.880179) (xy -10.454822 2.880179) + (xy -10.454822 -1.882321) (xy -9.275536 -1.882321) (xy -9.275536 -0.453571) (xy -8.566831 -0.453758) + (xy -8.380818 -0.454547) (xy -8.199682 -0.456691) (xy -8.031074 -0.459994) (xy -7.882647 -0.464264) + (xy -7.762052 -0.469309) (xy -7.676939 -0.474934) (xy -7.659973 -0.476648) (xy -7.48138 -0.504984) + (xy -7.339586 -0.546299) (xy -7.22714 -0.603623) (xy -7.136588 -0.679983) (xy -7.123031 -0.694853) + (xy -7.030162 -0.832364) (xy -6.974813 -0.992368) (xy -6.95608 -1.177548) (xy -6.956109 -1.190625) + (xy -6.97545 -1.375932) (xy -7.030341 -1.53308) (xy -7.120889 -1.662215) (xy -7.247199 -1.763482) + (xy -7.409381 -1.837026) (xy -7.439209 -1.846392) (xy -7.47781 -1.855941) (xy -7.526016 -1.863695) + (xy -7.588547 -1.869828) (xy -7.670123 -1.874513) (xy -7.775465 -1.877923) (xy -7.909292 -1.880232) + (xy -8.076324 -1.881612) (xy -8.281282 -1.882237) (xy -8.417867 -1.882321) (xy -9.275536 -1.882321) + (xy -10.454822 -1.882321) (xy -10.454822 -2.883424) (xy -8.861652 -2.872954) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "4814b72e-34dc-4e1b-be69-481fabc3bf0b") + ) + (fp_poly + (pts + (xy 8.486632 -2.955013) (xy 8.715956 -2.927503) (xy 8.925995 -2.883063) (xy 9.124833 -2.820289) + (xy 9.320557 -2.737774) (xy 9.363706 -2.716977) (xy 9.597308 -2.578687) (xy 9.797374 -2.410047) + (xy 9.964331 -2.210564) (xy 10.098605 -1.979746) (xy 10.185327 -1.764637) (xy 10.221998 -1.636645) + (xy 10.250695 -1.501404) (xy 10.265667 -1.38933) (xy 10.279241 -1.213304) (xy 10.21395 -1.212074) + (xy 10.172922 -1.210933) (xy 10.093991 -1.208414) (xy 9.984579 -1.204768) (xy 9.852112 -1.200242) + (xy 9.704014 -1.195086) (xy 9.627053 -1.192372) (xy 9.105446 -1.173899) (xy 9.064182 -1.334266) + (xy 8.994587 -1.527005) (xy 8.893741 -1.688021) (xy 8.76287 -1.815954) (xy 8.603204 -1.909441) (xy 8.515803 -1.941959) + (xy 8.410822 -1.965005) (xy 8.274864 -1.980945) (xy 8.121807 -1.989404) (xy 7.965529 -1.990006) + (xy 7.819909 -1.982374) (xy 7.698824 -1.966134) (xy 7.690025 -1.964327) (xy 7.513834 -1.913657) + (xy 7.360331 -1.843139) (xy 7.236255 -1.75682) (xy 7.148346 -1.658748) (xy 7.130386 -1.628314) (xy 7.107454 -1.551975) + (xy 7.099531 -1.452542) (xy 7.10669 -1.349744) (xy 7.129004 -1.263315) (xy 7.129032 -1.263248) (xy 7.164967 -1.203893) + (xy 7.220362 -1.138673) (xy 7.247407 -1.112884) (xy 7.306873 -1.065768) (xy 7.376214 -1.021711) + (xy 7.459893 -0.979099) (xy 7.562377 -0.936318) (xy 7.68813 -0.891752) (xy 7.841618 -0.843787) (xy 8.027305 -0.790808) + (xy 8.249657 -0.731201) (xy 8.436428 -0.682897) (xy 8.750274 -0.598703) (xy 9.023178 -0.516417) + (xy 9.259378 -0.433902) (xy 9.463107 -0.349023) (xy 9.638601 -0.259643) (xy 9.790096 -0.163625) + (xy 9.921828 -0.058833) (xy 10.038031 0.056868) (xy 10.133647 0.173166) (xy 10.242507 0.345468) + (xy 10.33252 0.542798) (xy 10.395397 0.746074) (xy 10.407405 0.803585) (xy 10.425052 0.945109) (xy 10.432548 1.110686) + (xy 10.430263 1.284673) (xy 10.418569 1.451429) (xy 10.397839 1.595314) (xy 10.3875 1.641401) (xy 10.323079 1.832721) + (xy 10.22911 2.030214) (xy 10.114633 2.216207) (xy 10.048303 2.304613) (xy 9.873069 2.485408) (xy 9.662131 2.640166) + (xy 9.417594 2.767908) (xy 9.141561 2.867654) (xy 8.836136 2.938424) (xy 8.622637 2.968445) (xy 8.446432 2.982327) + (xy 8.250022 2.989306) (xy 8.047612 2.989504) (xy 7.853409 2.983046) (xy 7.681616 2.970055) (xy 7.597321 2.959498) + (xy 7.287341 2.89874) (xy 7.012881 2.814451) (xy 6.769461 2.704486) (xy 6.552604 2.566698) (xy 6.357829 2.398942) + (xy 6.29804 2.337078) (xy 6.151579 2.151526) (xy 6.021569 1.932745) (xy 5.912629 1.691292) (xy 5.829375 1.437725) + (xy 5.776423 1.182601) (xy 5.769406 1.128259) (xy 5.762091 1.055101) (xy 5.763756 1.016161) (xy 5.777626 1.000666) + (xy 5.806928 0.997842) (xy 5.808454 0.99784) (xy 5.846837 0.995702) (xy 5.922629 0.989746) (xy 6.028103 0.980644) + (xy 6.155533 0.969066) (xy 6.297193 0.955683) (xy 6.327321 0.952775) (xy 6.501296 0.935879) (xy 6.635424 0.923213) + (xy 6.73503 0.914932) (xy 6.805442 0.91119) (xy 6.851985 0.912139) (xy 6.879986 0.917934) (xy 6.894771 0.928728) + (xy 6.901666 0.944676) (xy 6.905997 0.965932) (xy 6.906738 0.969509) (xy 6.937902 1.084752) (xy 6.983833 1.217631) + (xy 7.037496 1.350014) (xy 7.091854 1.463769) (xy 7.113243 1.501702) (xy 7.236881 1.663918) (xy 7.392416 1.794475) + (xy 7.578787 1.892873) (xy 7.794931 1.958616) (xy 8.039789 1.991205) (xy 8.164285 1.994927) (xy 8.417181 1.980309) + (xy 8.637328 1.935989) (xy 8.826849 1.861266) (xy 8.987868 1.75544) (xy 9.044309 1.704697) (xy 9.156896 1.569232) + (xy 9.230659 1.424532) (xy 9.265015 1.276086) (xy 9.259382 1.12938) (xy 9.213178 0.989904) (xy 9.132789 0.870925) + (xy 9.082217 0.819365) (xy 9.023219 0.772122) (xy 8.951629 0.727619) (xy 8.863284 0.68428) (xy 8.754019 0.640527) + (xy 8.619669 0.594785) (xy 8.456069 0.545477) (xy 8.259056 0.491026) (xy 8.024465 0.429856) (xy 7.853667 0.386699) + (xy 7.501473 0.289589) (xy 7.192105 0.185409) (xy 6.926115 0.074386) (xy 6.704059 -0.043255) (xy 6.558187 -0.142157) + (xy 6.369578 -0.314291) (xy 6.215784 -0.511615) (xy 6.097833 -0.729054) (xy 6.016757 -0.961535) + (xy 5.973584 -1.203983) (xy 5.969346 -1.451323) (xy 6.005073 -1.698482) (xy 6.081794 -1.940384) + (xy 6.16007 -2.103201) (xy 6.284884 -2.286923) (xy 6.445529 -2.458497) (xy 6.632659 -2.609836) (xy 6.83693 -2.732855) + (xy 6.944721 -2.782095) (xy 7.111354 -2.844381) (xy 7.271902 -2.891318) (xy 7.437851 -2.92502) (xy 7.620689 -2.9476) + (xy 7.831903 -2.961174) (xy 7.937791 -2.964866) (xy 8.229939 -2.966999) (xy 8.486632 -2.955013) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "fa9f479c-8f45-4eb7-a21b-87dee492886f") + ) + ) + (footprint "Connector_Coaxial:SMA_Amphenol_132134_Vertical" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70b916") + (at 181.1 56.9) + (descr "https://www.amphenolrf.com/downloads/dl/file/id/2187/product/2843/132134_customer_drawing.pdf") + (tags "SMA THT Female Jack Vertical ExtendedLegs") + (property "Reference" "J13" + (at 0 -5 0) + (layer "F.SilkS") + (hide yes) + (uuid "0d5bbb13-6739-4760-b512-890346898b3c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Curr_Out (Out2)" + (at 0 5 0) + (layer "F.SilkS") + (uuid "cb32cd20-428d-4def-97f0-18e59f91f1fc") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Connector_Coaxial:SMA_Amphenol_132134_Vertical" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "fc3cdcce-4c2e-4cab-bdd7-cfe8b9812c95") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "efea444f-30c7-4f66-92ff-4741281221d9") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bea28bde-fa46-4b50-962d-cd24ca952902") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Config" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "755f9edf-e5d2-47f3-bb7b-4094e2a331e2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "MFN" "Amphenol" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "633d771c-53c8-44c5-b55d-8c2da313589b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "901-144-8RFX" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "43c300a3-48ac-41c6-b162-6feafea59c4c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "*BNC* *SMA* *SMB* *SMC* *Cinch* *LEMO* *UMRF* *MCX* *U.FL*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005f57dbbe") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr through_hole) + (fp_line + (start -3.68 -1.8) + (end -3.68 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b3a8a3c5-f9b7-496b-b550-683785e06fbe") + ) + (fp_line + (start -1.8 -3.68) + (end 1.8 -3.68) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ed872e43-7a4a-422d-bcf0-fd52d4eeba3b") + ) + (fp_line + (start -1.8 3.68) + (end 1.8 3.68) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8260953f-68b0-43ca-a64e-0aaeb03af3ec") + ) + (fp_line + (start 3.68 -1.8) + (end 3.68 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b0a7a86c-c474-4919-996a-edb043c7c20c") + ) + (fp_line + (start -4.17 -4.17) + (end -4.17 4.17) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4d150958-ceca-4adc-a7f8-fad8f2f1223e") + ) + (fp_line + (start -4.17 -4.17) + (end 4.17 -4.17) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "14fcfec3-3d64-445a-9a14-d04cde699ce3") + ) + (fp_line + (start 4.17 4.17) + (end -4.17 4.17) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2a525071-e491-4011-b5fd-e87dc547221c") + ) + (fp_line + (start 4.17 4.17) + (end 4.17 -4.17) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "6f397d27-183a-4f95-9f5a-b0df4254da0d") + ) + (fp_line + (start -3.5 -3.5) + (end -3.5 3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ff0eab0a-fc64-4ea2-8c8e-8453929b1c98") + ) + (fp_line + (start -3.5 -3.5) + (end 3.5 -3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a55edc20-c92b-40b7-bc01-6bdc40792aa9") + ) + (fp_line + (start -3.5 3.5) + (end 3.5 3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5f0432f4-b1c7-4f30-ae7b-adb19312358b") + ) + (fp_line + (start 3.5 -3.5) + (end 3.5 3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "fcac0d74-18ac-45be-80cd-af1d193d91ea") + ) + (fp_circle + (center 0 0) + (end 3.175 0) + (stroke + (width 0.1) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "d1d2de40-cf02-430d-821e-7919a5f4e641") + ) + (fp_text user "${REFERENCE}" + (at 0 -5 0) + (layer "F.Fab") + (uuid "63a772a2-00c0-493c-96b0-32b8b3dac68d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0) + (size 2.05 2.05) + (drill 1.5) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 77 "Net-(J13-In)") + (pinfunction "In") + (pintype "passive") + (uuid "1f8fb6d0-c7eb-468f-a311-c9f5e65a8047") + ) + (pad "2" thru_hole circle + (at -2.54 -2.54) + (size 2.25 2.25) + (drill 1.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Ext") + (pintype "passive") + (uuid "92d64fae-a760-47f9-a70b-fd6df53c5868") + ) + (pad "2" thru_hole circle + (at -2.54 2.54) + (size 2.25 2.25) + (drill 1.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Ext") + (pintype "passive") + (uuid "a4effd61-0b75-43b4-a6de-c90b62f127cd") + ) + (pad "2" thru_hole circle + (at 2.54 -2.54) + (size 2.25 2.25) + (drill 1.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Ext") + (pintype "passive") + (uuid "988e2038-8797-4494-b0de-e5f061215d24") + ) + (pad "2" thru_hole circle + (at 2.54 2.54) + (size 2.25 2.25) + (drill 1.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Ext") + (pintype "passive") + (uuid "5469b9d5-28e2-4693-9e4a-eebd426a4067") + ) + (model "${KICAD8_3DMODEL_DIR}/Connector_Coaxial.3dshapes/SMA_Amphenol_132134_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70b952") + (at 77.6 52.9 180) + (descr "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") + (tags "resistor") + (property "Reference" "R2" + (at -2.75 -0.05 180) + (layer "F.SilkS") + (uuid "340312e9-2ab4-4832-b7ed-a927c5b29b5d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "121k" + (at 0 1.5 180) + (layer "F.Fab") + (uuid "ed683c90-3247-4c44-b2da-9bd919908f37") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "37abcc81-861a-4367-9cd5-3e926f79a7fe") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0264dc5c-d3c3-4a4b-8622-d8c2451fd328") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9da9c3f3-3972-46a3-b69d-d20aa4c877ae") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Susumu" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "267d79e7-6f3f-47ad-bf39-380cb43460e8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "RR0816P-1213-D-09D" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "cfd311c5-87a6-455b-9bb3-75248ee45521") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005ccf58a1") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "65774479-19a2-40b6-831c-357325b5caf4") + ) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "584e0016-3b40-4a0f-80eb-0b0cbce44b76") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "07885afd-8c86-410b-a8c3-7647f02c6332") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3d96b17d-9b3b-407b-8b6e-05e9fb75f6ba") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e34a53f7-b081-447b-b8bf-45eb9ec19978") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d069a626-16aa-42d1-85b9-1ae4a77d2ca6") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c210f1d9-e29e-4f03-a943-8850770c6596") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "da540500-5e3d-4533-9f32-958380da1661") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "94edd23d-546e-477b-af0d-00cb71f86144") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "42905492-5fdc-4f41-9f36-1ef9846b7ff4") + ) + (fp_text user "${REFERENCE}" + (at 0 0 180) + (layer "F.Fab") + (uuid "692168e9-bb3d-4d44-b506-0103952dc576") + (effects + (font + (size 0.4 0.4) + (thickness 0.075) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0 180) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "24878a7c-ba51-4f91-89ab-aaa9bf559d47") + ) + (pad "2" smd roundrect + (at 0.825 0 180) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 9 "Net-(U2-SET)") + (pintype "passive") + (uuid "e3a74cff-9273-4fd9-a733-9738a61206aa") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70b982") + (at 94.2 45.2) + (descr "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") + (tags "resistor") + (property "Reference" "R10" + (at 0 -1.45 0) + (layer "F.SilkS") + (uuid "0b565b4e-9a41-4b27-bd80-d49b17da1e69") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10k" + (at 0 1.5 0) + (layer "F.Fab") + (uuid "25de3bac-184f-459b-86cc-7e9ef4cdb75c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "61da448c-f4c4-4a78-83b9-cc0ad20e12c8") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9dd19ae1-f288-49a9-88fa-7fea7f969ade") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0b43827e-ab74-4bd3-a2de-c17178f53e89") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Susumu" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "3a84c43d-0322-4379-b28b-ec3cbd41fd98") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "RR0816P-103-D" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "e892bbaf-df08-4ab7-879b-b0320ccb4d54") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005ccf959d") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2b0844ff-8ac6-41e1-9d98-5f7135a59520") + ) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "134a78b0-e258-4558-8492-5341badbfe49") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e5286c95-c4c7-4861-802b-ff9caf2a2c28") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ae349222-087f-4491-b703-711d9c40abad") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c448f34b-5cad-451d-b779-7cc5a6e1e0a1") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3836c476-bc3f-484b-ab6c-48a11d7954d0") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "fed1fd12-3c9a-4b71-b391-02263d3fc8e6") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "16790c70-3430-498f-b051-48ac28322155") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5f122f63-bd6e-4333-bd26-514e127c36be") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1f6bdd36-6e2d-443e-957a-4f277694f14f") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "52546714-988b-415a-8287-a6a411eab02b") + (effects + (font + (size 0.4 0.4) + (thickness 0.075) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 97 "/Input_Output_Module/SET") + (pintype "passive") + (uuid "33988dc0-5a67-4345-82e8-c3d6104c3c13") + ) + (pad "2" smd roundrect + (at 0.825 0) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 13 "Net-(U4D-+)") + (pintype "passive") + (uuid "47488931-79e6-44a5-bd0d-cf4df9c8071b") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Connector_Coaxial:SMA_Amphenol_132134_Vertical" + (locked yes) + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70b9c7") + (at 89.2 57) + (descr "https://www.amphenolrf.com/downloads/dl/file/id/2187/product/2843/132134_customer_drawing.pdf") + (tags "SMA THT Female Jack Vertical ExtendedLegs") + (property "Reference" "J3" + (at 0 -5 0) + (layer "F.SilkS") + (hide yes) + (uuid "255b0354-cb92-4037-a464-8ee913f3f806") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Piezo_In (Out1)" + (at 0 5 0) + (layer "F.SilkS") + (uuid "ef023d39-7f7d-431e-8b99-3eb17e1083bc") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Connector_Coaxial:SMA_Amphenol_132134_Vertical" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e00bda78-cea8-46fe-b1e7-5c55f046544e") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d503db69-b164-459a-9af2-47b55d97b80a") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "401b136d-cfd1-4648-9dd2-af9d4c1d809f") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Config" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "9624a4dc-17d9-4680-bcb1-a1bbe94ab41f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "MFN" "Amphenol" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "04ff7d70-3bca-4963-95eb-817e1885c8ba") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "901-144-8RFX" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "fe9440eb-cb45-4849-a66f-6176f539efd2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "*BNC* *SMA* *SMB* *SMC* *Cinch* *LEMO* *UMRF* *MCX* *U.FL*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b057966") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr through_hole) + (fp_line + (start -3.68 -1.8) + (end -3.68 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5f0fda74-cb27-4b9d-bd70-2b56a547cb94") + ) + (fp_line + (start -1.8 -3.68) + (end 1.8 -3.68) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "50de5b5d-52a1-4ce4-af20-0a658bd4b3be") + ) + (fp_line + (start -1.8 3.68) + (end 1.8 3.68) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f0e8f2c7-35a0-42cc-b37b-860d287afda0") + ) + (fp_line + (start 3.68 -1.8) + (end 3.68 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "80787b36-7b5c-42ba-9693-7a147a82bc28") + ) + (fp_line + (start -4.17 -4.17) + (end -4.17 4.17) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "53f1ed64-b895-4954-ab9f-848067491101") + ) + (fp_line + (start -4.17 -4.17) + (end 4.17 -4.17) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "06af63a9-3d02-407c-a4fb-fcd86fd6e05b") + ) + (fp_line + (start 4.17 4.17) + (end -4.17 4.17) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "29b21822-b669-4556-ae33-2092bdeb96d0") + ) + (fp_line + (start 4.17 4.17) + (end 4.17 -4.17) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9ec85ea0-abc5-4ead-909b-7bd9a5658c91") + ) + (fp_line + (start -3.5 -3.5) + (end -3.5 3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c1a04c6f-0de9-44a5-b94e-0c077276c78d") + ) + (fp_line + (start -3.5 -3.5) + (end 3.5 -3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a418aed7-bb97-4fb4-8917-b084cc1ebc80") + ) + (fp_line + (start -3.5 3.5) + (end 3.5 3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "22ce2ec6-1b8a-410f-8170-a1b8279db592") + ) + (fp_line + (start 3.5 -3.5) + (end 3.5 3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d4b60c33-0fad-401b-9520-f30c1dddc530") + ) + (fp_circle + (center 0 0) + (end 3.175 0) + (stroke + (width 0.1) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "68b5cb7c-c7f5-4163-a806-1b28e0fc1e9d") + ) + (fp_text user "${REFERENCE}" + (at 0 -5 0) + (layer "F.Fab") + (uuid "b1191e61-87e4-4b0e-bc8f-2c149e11203c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0) + (size 2.05 2.05) + (drill 1.5) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 72 "Net-(J3-In)") + (pinfunction "In") + (pintype "passive") + (uuid "7f0e24e3-54da-4a09-b2ca-ba557ff21e75") + ) + (pad "2" thru_hole circle + (at -2.54 -2.54) + (size 2.25 2.25) + (drill 1.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Ext") + (pintype "passive") + (uuid "79c6bd9b-e421-4108-b0b3-b8363be555c9") + ) + (pad "2" thru_hole circle + (at -2.54 2.54) + (size 2.25 2.25) + (drill 1.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Ext") + (pintype "passive") + (uuid "a8177f47-ff4b-418b-a9b7-96df9a6feaba") + ) + (pad "2" thru_hole circle + (at 2.54 -2.54) + (size 2.25 2.25) + (drill 1.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Ext") + (pintype "passive") + (uuid "f72bd9fa-095d-4c18-9644-659fda1a1b7d") + ) + (pad "2" thru_hole circle + (at 2.54 2.54) + (size 2.25 2.25) + (drill 1.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Ext") + (pintype "passive") + (uuid "de2ebfc2-3680-41e6-9847-f6e673f52a92") + ) + (model "${KICAD8_3DMODEL_DIR}/Connector_Coaxial.3dshapes/SMA_Amphenol_132134_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_1206_3216Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70ba03") + (at 72.5 67.1) + (descr "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") + (tags "capacitor") + (property "Reference" "C21" + (at -0.1 2.1 180) + (layer "F.SilkS") + (uuid "5a2496b0-8ea4-4a89-9f55-fd309dbd8b09") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100n" + (at 0 2 180) + (layer "F.Fab") + (uuid "295b3481-821c-494f-b83d-6411f5f0dacb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_1206_3216Metric" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d79056f6-2507-406c-9097-6e3cb868eab5") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0e73bbc6-5501-4a40-8315-5897f8a4c777") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "399e8a11-32db-4fbb-99df-5ca0e48f2cbc") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "KEMET" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "5451b6b5-a5c8-4a1f-81a3-8e6ee63a98be") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "C1206C104K3GEC7210" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "035dec44-cbb4-4079-ada0-f3c4546a40a5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005c1a9da5") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.kicad_sch") + (attr smd) + (fp_line + (start -0.711252 -0.91) + (end 0.711252 -0.91) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b1ad4cfa-1f61-4619-8938-209ec1817ac7") + ) + (fp_line + (start -0.711252 0.91) + (end 0.711252 0.91) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8c7add0d-282e-40e2-a696-182f10d5eaa2") + ) + (fp_line + (start -2.3 -1.15) + (end 2.3 -1.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b0377a44-b6c5-41e7-873f-4cf72ea1057c") + ) + (fp_line + (start -2.3 1.15) + (end -2.3 -1.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4311acef-146d-4437-bf95-34997b4a5cc8") + ) + (fp_line + (start 2.3 -1.15) + (end 2.3 1.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0592bb94-5e46-4dd9-a991-48787c39aa9a") + ) + (fp_line + (start 2.3 1.15) + (end -2.3 1.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "55ae73ee-6a59-488c-9782-2847b2dbf893") + ) + (fp_line + (start -1.6 -0.8) + (end 1.6 -0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1ffddc86-74bc-49fe-9868-b529e5dbb92e") + ) + (fp_line + (start -1.6 0.8) + (end -1.6 -0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d5dc9ab5-f678-42bf-bbae-92f15812520c") + ) + (fp_line + (start 1.6 -0.8) + (end 1.6 0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "cfe12588-d4bb-492b-af55-915adf11814c") + ) + (fp_line + (start 1.6 0.8) + (end -1.6 0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c86df756-f577-4d4e-94b3-6288737fbb4c") + ) + (fp_text user "${REFERENCE}" + (at 0 -1.75 180) + (layer "F.Fab") + (uuid "ca6633e7-c7fc-4fba-981d-1cd4295cf292") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -1.475 0) + (size 1.15 1.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.217391) + (net 4 "/Input_Output_Module/+12V") + (pintype "passive") + (uuid "b6fbebfa-a67a-4298-abbf-1fb9ca4c0b91") + ) + (pad "2" smd roundrect + (at 1.475 0) + (size 1.15 1.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.217391) + (net 2 "GND") + (pintype "passive") + (uuid "df674ee4-579c-48eb-a334-694ff654f949") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "MountingHole:MountingHole_2.7mm_M2.5" + (locked yes) + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70ba2a") + (at 206.2 129.45) + (descr "Mounting Hole 2.7mm, no annular, M2.5") + (tags "mounting hole 2.7mm no annular m2.5") + (property "Reference" "H2" + (at 0 -3.7 0) + (layer "F.SilkS") + (hide yes) + (uuid "aaa25045-d92d-44bf-98fb-03eedccc251f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "MountingHole" + (at 0 3.7 0) + (layer "F.Fab") + (uuid "f52feb2f-4b34-4ba9-9cb9-9af8e31c732e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "MountingHole:MountingHole_2.7mm_M2.5" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "26675621-2608-4a6e-9e9f-3db34f29719a") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c2fc6b6b-e0e4-4333-a2ce-39620dca2f1d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3da0979d-7d2d-4812-8ff3-6132baff4611") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Config" "DNF" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "88ad4d9a-439f-48d8-9296-b92e43979491") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "MountingHole*") + (path "/00000000-0000-0000-0000-00005f6d8e2d") + (sheetname "Root") + (sheetfile "RedPitaya_Lockbox.kicad_sch") + (attr exclude_from_pos_files exclude_from_bom) + (fp_circle + (center 0 0) + (end 2.7 0) + (stroke + (width 0.15) + (type solid) + ) + (fill none) + (layer "Cmts.User") + (uuid "417db9be-4e82-4a81-b1ca-3e93664bdc7e") + ) + (fp_circle + (center 0 0) + (end 2.95 0) + (stroke + (width 0.05) + (type solid) + ) + (fill none) + (layer "F.CrtYd") + (uuid "fdcda424-2ed4-458f-8dc1-63cd99018627") + ) + (fp_text user "${REFERENCE}" + (at 0.3 0 0) + (layer "F.Fab") + (uuid "6d2b7682-3132-4527-969b-5901ad36ac50") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "" np_thru_hole circle + (at 0 0) + (size 2.7 2.7) + (drill 2.7) + (layers "*.Cu" "*.Mask") + (uuid "a926e28b-574e-4a73-ad59-bd20ab84ef12") + ) + ) + (footprint "MountingHole:MountingHole_2.7mm_M2.5" + (locked yes) + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70ba3f") + (at 206.21 40.54) + (descr "Mounting Hole 2.7mm, no annular, M2.5") + (tags "mounting hole 2.7mm no annular m2.5") + (property "Reference" "H1" + (at 0 -3.7 0) + (layer "F.SilkS") + (hide yes) + (uuid "081b2a3d-e81e-4fba-8af6-fa56ef997842") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "MountingHole" + (at 0 3.7 0) + (layer "F.Fab") + (uuid "4a15e734-2f8d-480e-858b-e04429b0c291") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "MountingHole:MountingHole_2.7mm_M2.5" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e8910bd8-723f-4f76-b46f-b5148c5a85d9") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "97c4a095-2af6-4167-9b02-420d19113656") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "58a29361-1f94-443a-946a-7a455b31eabd") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Config" "DNF" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "356d7ccf-f94b-447b-8ce5-95ee0caee501") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "MountingHole*") + (path "/00000000-0000-0000-0000-00005f6d8b6d") + (sheetname "Root") + (sheetfile "RedPitaya_Lockbox.kicad_sch") + (attr exclude_from_pos_files exclude_from_bom) + (fp_circle + (center 0 0) + (end 2.7 0) + (stroke + (width 0.15) + (type solid) + ) + (fill none) + (layer "Cmts.User") + (uuid "cf2dfe67-80c6-4db4-bf01-92b4c05fd617") + ) + (fp_circle + (center 0 0) + (end 2.95 0) + (stroke + (width 0.05) + (type solid) + ) + (fill none) + (layer "F.CrtYd") + (uuid "c4175512-6e69-4aab-891c-5f53a7a2a0b7") + ) + (fp_text user "${REFERENCE}" + (at 0.3 0 0) + (layer "F.Fab") + (uuid "449b7dc8-3c3d-48f8-bda2-ddb40932ab54") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "" np_thru_hole circle + (at 0 0) + (size 2.7 2.7) + (drill 2.7) + (layers "*.Cu" "*.Mask") + (uuid "b673e559-7a77-43df-bf7a-7096120cf33c") + ) + ) + (footprint "Capacitor_SMD:C_1206_3216Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70ba5d") + (at 92.8 66.1 -90) + (descr "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") + (tags "capacitor") + (property "Reference" "C10" + (at 0 -2.4 90) + (layer "F.SilkS") + (uuid "9628dec0-4f08-4876-bf48-3a1dd93dd251") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "16n (C0G)" + (at 0 2 -90) + (layer "F.Fab") + (uuid "85dc62e0-bafd-4716-9d0c-bbc73053da3b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_1206_3216Metric" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bb442b9b-1f9d-4a51-92f5-d9ae270dce4f") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9e915843-6e1d-4fc7-9146-29d414c46a1b") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2f0ff777-d9dc-471f-a300-ac163b3668d9") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Murata Electronics" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "5f5a458f-4eed-49a7-9be8-2c1389458886") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "GRM3195C1H163JA01D" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "90033d58-119d-4a3d-b60b-577f4a5f0631") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b6d8fe5") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start -0.711252 0.91) + (end 0.711252 0.91) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c72ffdd6-5812-4ade-b779-0a69b98262e2") + ) + (fp_line + (start -0.711252 -0.91) + (end 0.711252 -0.91) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6e90b24c-8f3f-469a-b7ee-1e54963755c1") + ) + (fp_line + (start -2.3 1.15) + (end -2.3 -1.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9a89aef0-1862-4480-b495-edfcbfb6f339") + ) + (fp_line + (start 2.3 1.15) + (end -2.3 1.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4d8d15e0-53f0-47d9-bb6f-9b7574ca7a33") + ) + (fp_line + (start -2.3 -1.15) + (end 2.3 -1.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e6b16142-0822-4941-84aa-d623417a2cf0") + ) + (fp_line + (start 2.3 -1.15) + (end 2.3 1.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "33c0e58c-38f9-4134-8464-d7b27f7d5300") + ) + (fp_line + (start -1.6 0.8) + (end -1.6 -0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "15604700-c9a5-414d-8d3e-0e0a31e8a954") + ) + (fp_line + (start 1.6 0.8) + (end -1.6 0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "eeb25168-0279-4b20-a5da-bf54ee49b84d") + ) + (fp_line + (start -1.6 -0.8) + (end 1.6 -0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "457a82a4-3c24-41af-ba73-659e07fd4658") + ) + (fp_line + (start 1.6 -0.8) + (end 1.6 0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c369fd55-fea0-4451-bf22-777038798f83") + ) + (fp_text user "${REFERENCE}" + (at 0 -1.75 -90) + (layer "F.Fab") + (uuid "36fa4f5f-b691-4e4b-ad16-73cbbb45d5ab") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -1.475 0 270) + (size 1.15 1.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.217391) + (net 10 "Net-(U4A-+)") + (pintype "passive") + (uuid "cbe4e0b6-5719-4316-9344-ef37d7c032fd") + ) + (pad "2" smd roundrect + (at 1.475 0 270) + (size 1.15 1.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.217391) + (net 2 "GND") + (pintype "passive") + (uuid "c7873290-758b-46b1-b9a3-02f941d2c8ba") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "custom:RedPitaya_125-14" + (locked yes) + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70bac0") + (at 146.1 93.6) + (descr "RedPitaya Mounting ") + (property "Reference" "RP1" + (at 21.971 26.797 -90) + (layer "F.SilkS") + (uuid "b0990f28-59f6-4c7f-af9a-2aa7edb47208") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "RedPitaya_125-14" + (at 0.0262 -0.0137 0) + (layer "F.SilkS") + (uuid "a3793146-d0b1-4b42-bb23-c3554a97f232") + (effects + (font + (size 2 2) + (thickness 0.3) + ) + ) + ) + (property "Footprint" "custom:RedPitaya_125-14" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4d28b2fd-f5ac-4390-8832-f1f169a42408") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6ddcaea1-e98f-472d-9a04-de321e0d5035") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ba0f91dd-2013-4489-bee5-994ca3f88f27") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Connector" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "ee01b94f-a57d-41e9-a22c-f5b073c27041") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "MFN" "Samtec" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "c5b6bf51-97dd-4eab-886d-1703b8e0ae4b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "ESQ-113-44-T-D" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "afb00b70-eccf-4fef-9872-c39ff97ce681") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (path "/00000000-0000-0000-0000-00005b08c1e4") + (sheetname "Root") + (sheetfile "RedPitaya_Lockbox.kicad_sch") + (attr through_hole) + (fp_line + (start -31.4 -29) + (end 63.6 -29) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "143ec2be-565c-44ae-94a8-bc9c4d0722a9") + ) + (fp_line + (start -31.4 31.8) + (end -31.4 -29) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "bf9cccd9-fffa-4eb6-af32-9238e39a1ee8") + ) + (fp_line + (start -16.655 29.255) + (end -16.655 24.305) + (stroke + (width 0.2) + (type solid) + ) + (layer "F.SilkS") + (uuid "9f1fd276-0d59-4977-8fc6-a410918a230e") + ) + (fp_line + (start 16.875 24.305) + (end -16.655 24.305) + (stroke + (width 0.2) + (type solid) + ) + (layer "F.SilkS") + (uuid "2d24f639-126e-4697-9263-63ad667b1fdd") + ) + (fp_line + (start 16.875 24.305) + (end 16.875 29.255) + (stroke + (width 0.2) + (type solid) + ) + (layer "F.SilkS") + (uuid "45d5a0ab-6c06-41a4-8bd7-dae5becf698a") + ) + (fp_line + (start 16.875 29.255) + (end -16.655 29.255) + (stroke + (width 0.2) + (type solid) + ) + (layer "F.SilkS") + (uuid "74d2e550-37d2-4c10-9752-914a302db020") + ) + (fp_line + (start 63.6 -29) + (end 63.6 31.8) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "ade834fb-87c7-49e5-bed6-e97a4f9cdad2") + ) + (fp_line + (start 63.6 31.8) + (end -31.4 31.8) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "88a6f3ec-682f-4d58-ba97-102112b7b640") + ) + (fp_circle + (center -23.8 -25.61) + (end -21.22 -23.71) + (stroke + (width 0.15) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "38c9c1fd-2b91-47fb-8475-e89dbd9363c8") + ) + (fp_circle + (center -23.8 28.4) + (end -21.34 30.45) + (stroke + (width 0.15) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "970ecc02-d50e-4105-91ab-f840927aa88a") + ) + (fp_circle + (center 17.525 28.05) + (end 17.625 28.05) + (stroke + (width 0.2) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "bef93fd7-e41d-4fe0-b641-8b3f13c536cc") + ) + (fp_circle + (center 60.2 -25.59) + (end 62.54 -23.4) + (stroke + (width 0.15) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "f9afc962-44b9-47b4-a0b1-6980b1ae4b70") + ) + (fp_circle + (center 60.2 28.4) + (end 61.54 31.31) + (stroke + (width 0.15) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "4011a7f2-c871-44ec-b884-11ce641fe52c") + ) + (fp_line + (start -16.905 24.055) + (end 17.125 24.055) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "529921c1-7d39-4145-a71d-c7c1d10b091d") + ) + (fp_line + (start -16.905 29.505) + (end -16.905 24.055) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1760a013-05d4-4676-bcdd-74d94f815eaa") + ) + (fp_line + (start 17.125 24.055) + (end 17.125 29.505) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2911c968-6b18-4b7e-88a0-3cc4c2ebb018") + ) + (fp_line + (start 17.125 29.505) + (end -16.905 29.505) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b8fa7ae3-b6ce-4058-814f-13dcaa564917") + ) + (fp_line + (start -16.655 24.305) + (end 16.875 24.305) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c37ae45a-9c6a-4704-972a-e51c37ec5675") + ) + (fp_line + (start -16.655 24.305) + (end 16.875 24.305) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f9d47f6c-53d7-4dac-891f-c2f12af79998") + ) + (fp_line + (start -16.655 29.255) + (end -16.655 24.305) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "832785e6-7515-4d34-ae30-fc34aa83f8c4") + ) + (fp_line + (start -16.655 29.255) + (end -16.655 24.305) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f7291cd9-a6d3-41b1-bc80-b27c3beb471d") + ) + (fp_line + (start 16.875 24.305) + (end 16.875 29.255) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6a0a838a-7d0c-4ea3-b230-e2677ab1904b") + ) + (fp_line + (start 16.875 24.305) + (end 16.875 29.255) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6b7a89f3-cca1-4761-9bd7-97d285e0dac0") + ) + (fp_line + (start 16.875 29.255) + (end -16.655 29.255) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8d7c0cc5-2cdc-48f1-8cc5-463ce9d9c4b6") + ) + (fp_circle + (center 17.525 28.05) + (end 17.625 28.05) + (stroke + (width 0.2) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "b228884a-f7b1-42d9-971a-1064daf7bd32") + ) + (fp_text user "E2" + (at -15.3 22.2 0) + (layer "F.SilkS") + (uuid "9420b529-4a93-4f47-bc54-e89b6c0015d7") + (effects + (font + (size 2 2) + (thickness 0.3) + ) + ) + ) + (fp_text user "RedPitaya MountingHole" + (at -23.3 32.7 0) + (layer "F.Fab") + (uuid "0ee31ad7-0423-42ad-ac5b-488aacd04a0c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (fp_text user "RedPitaya MountingHole" + (at -23.6 -30.1 0) + (layer "F.Fab") + (uuid "7a8914f2-65b8-4e7f-ac79-5a751689eedd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (fp_text user "SAMTEC_ESQ-113-44-T-D" + (at -4.32 31.12 0) + (layer "F.Fab") + (uuid "8b7b758d-15b7-4fe3-8a12-454fb8d2714a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (fp_text user "RedPitaya MountingHole" + (at 60.4 32.8 0) + (layer "F.Fab") + (uuid "907a4dec-3dd7-4eba-99e3-a4c4acc763ec") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (fp_text user "${REFERENCE}" + (at 0.127 26.797 -90) + (layer "F.Fab") + (uuid "92f9a7fe-12b9-455c-b3cb-646f2e8901ef") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (fp_text user "RedPitaya MountingHole" + (at 60.4 -29.9 0) + (layer "F.Fab") + (uuid "cf57f9c1-722a-4aa2-bfee-d000a96caf6c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "" np_thru_hole circle + (at -23.8 -25.6) + (size 3.4 3.4) + (drill 3.4) + (layers "*.Cu" "*.Mask") + (uuid "60a06ae0-343f-4d0e-a7c5-806fa50f807b") + ) + (pad "" np_thru_hole circle + (at -23.8 28.4) + (size 3.4 3.4) + (drill 3.4) + (layers "*.Cu" "*.Mask") + (uuid "a09494eb-5af1-4bee-96ab-488ad12ec7e0") + ) + (pad "" np_thru_hole circle + (at 60.2 -25.6) + (size 3.4 3.4) + (drill 3.4) + (layers "*.Cu" "*.Mask") + (uuid "e1636ea8-3697-4038-9f62-c6c0219dbbfd") + ) + (pad "" np_thru_hole circle + (at 60.2 28.4) + (size 3.4 3.4) + (drill 3.4) + (layers "*.Cu" "*.Mask") + (uuid "edd98424-451b-49fc-b80f-3ed0d543685b") + ) + (pad "1" thru_hole rect + (at 15.367 28.067 270) + (size 1.7272 1.7272) + (drill 1.016) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 21 "/Supply_Ref/+5V") + (pinfunction "+5V") + (pintype "input") + (uuid "e0524af4-7939-4eda-85e7-c626cadbec48") + ) + (pad "2" thru_hole oval + (at 15.367 25.527 270) + (size 1.7272 1.7272) + (drill 1.016) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 93 "unconnected-(RP1--3.3V-Pad2)") + (pinfunction "-3.3V") + (pintype "passive+no_connect") + (uuid "eaecc777-5c1e-4cb6-b88b-764f263658ac") + ) + (pad "3" thru_hole oval + (at 12.827 28.067 270) + (size 1.7272 1.7272) + (drill 1.016) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 94 "unconnected-(RP1-PS_MIO10-Pad3)") + (pinfunction "PS_MIO10") + (pintype "passive+no_connect") + (uuid "9974b00f-2704-47f4-845e-ba7dd17bce09") + ) + (pad "4" thru_hole oval + (at 12.827 25.527 270) + (size 1.7272 1.7272) + (drill 1.016) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 95 "unconnected-(RP1-PS_MIO11-Pad4)") + (pinfunction "PS_MIO11") + (pintype "passive+no_connect") + (uuid "dc559eb7-0e37-4573-b818-f2b4cda7343b") + ) + (pad "5" thru_hole oval + (at 10.287 28.067 270) + (size 1.7272 1.7272) + (drill 1.016) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 96 "unconnected-(RP1-PS_MIO12-Pad5)") + (pinfunction "PS_MIO12") + (pintype "passive+no_connect") + (uuid "b9722ff9-d598-4da0-a5bf-e3c6eda99ce7") + ) + (pad "6" thru_hole oval + (at 10.287 25.527 270) + (size 1.7272 1.7272) + (drill 1.016) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 98 "unconnected-(RP1-PS_MIO13-Pad6)") + (pinfunction "PS_MIO13") + (pintype "passive+no_connect") + (uuid "ea565ef3-059a-49c8-8020-231ccc2ef8f9") + ) + (pad "7" thru_hole oval + (at 7.747 28.067 270) + (size 1.7272 1.7272) + (drill 1.016) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 99 "unconnected-(RP1-PS_MIO08-Pad7)") + (pinfunction "PS_MIO08") + (pintype "passive+no_connect") + (uuid "7e15bcbc-e52b-4446-800a-419be5dca749") + ) + (pad "8" thru_hole oval + (at 7.747 25.527 270) + (size 1.7272 1.7272) + (drill 1.016) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 100 "unconnected-(RP1-PS_MIO09-Pad8)") + (pinfunction "PS_MIO09") + (pintype "passive+no_connect") + (uuid "8cf480a5-a480-4596-bac5-68d394856a6a") + ) + (pad "9" thru_hole oval + (at 5.207 28.067 270) + (size 1.7272 1.7272) + (drill 1.016) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 101 "unconnected-(RP1-I2C0_SCL-Pad9)") + (pinfunction "I2C0_SCL") + (pintype "passive+no_connect") + (uuid "fe0008ec-3414-4676-869d-1baba29bce93") + ) + (pad "10" thru_hole oval + (at 5.207 25.527 270) + (size 1.7272 1.7272) + (drill 1.016) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 102 "unconnected-(RP1-I2C0_SDA-Pad10)") + (pinfunction "I2C0_SDA") + (pintype "passive+no_connect") + (uuid "34c78580-5b61-4569-a42c-8c2f01278c15") + ) + (pad "11" thru_hole oval + (at 2.667 28.067 270) + (size 1.7272 1.7272) + (drill 1.016) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 103 "unconnected-(RP1-Ext_CM-Pad11)") + (pinfunction "Ext_CM") + (pintype "passive+no_connect") + (uuid "d2d9f612-2a39-46df-bd79-93d169d42da4") + ) + (pad "12" thru_hole oval + (at 2.667 25.527 270) + (size 1.7272 1.7272) + (drill 1.016) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "1be46a48-7a96-493f-8760-42caa91b7958") + ) + (pad "13" thru_hole oval + (at 0.127 28.067 270) + (size 1.7272 1.7272) + (drill 1.016) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 104 "unconnected-(RP1-AI_0-Pad13)") + (pinfunction "AI_0") + (pintype "passive+no_connect") + (uuid "d8d8f5df-15b7-4668-88ca-88504fd18f96") + ) + (pad "14" thru_hole oval + (at 0.127 25.527 270) + (size 1.7272 1.7272) + (drill 1.016) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 105 "unconnected-(RP1-AI_1-Pad14)") + (pinfunction "AI_1") + (pintype "passive+no_connect") + (uuid "3ce35441-4854-43ef-b296-f6ceb792d716") + ) + (pad "15" thru_hole oval + (at -2.413 28.067 270) + (size 1.7272 1.7272) + (drill 1.016) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 106 "unconnected-(RP1-AI_2-Pad15)") + (pinfunction "AI_2") + (pintype "passive+no_connect") + (uuid "9eef6f26-2862-425a-9fb5-79a78d40f599") + ) + (pad "16" thru_hole oval + (at -2.413 25.527 270) + (size 1.7272 1.7272) + (drill 1.016) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 107 "unconnected-(RP1-AI_3-Pad16)") + (pinfunction "AI_3") + (pintype "passive+no_connect") + (uuid "1d869912-557f-4518-9d7c-f78d332890d9") + ) + (pad "17" thru_hole oval + (at -4.953 28.067 270) + (size 1.7272 1.7272) + (drill 1.016) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 108 "unconnected-(RP1-AO_0-Pad17)") + (pinfunction "AO_0") + (pintype "passive+no_connect") + (uuid "add2e878-3086-49ec-9d41-bf2b3adecdbe") + ) + (pad "18" thru_hole oval + (at -4.953 25.527 270) + (size 1.7272 1.7272) + (drill 1.016) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 109 "unconnected-(RP1-AO_1-Pad18)") + (pinfunction "AO_1") + (pintype "passive+no_connect") + (uuid "6ed0607c-48b7-4cae-8abe-2391bd49dc51") + ) + (pad "19" thru_hole oval + (at -7.493 28.067 270) + (size 1.7272 1.7272) + (drill 1.016) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 110 "unconnected-(RP1-AO_2-Pad19)") + (pinfunction "AO_2") + (pintype "passive+no_connect") + (uuid "ee9392b8-d281-447d-b4f2-fcb2f82c81a3") + ) + (pad "20" thru_hole oval + (at -7.493 25.527 270) + (size 1.7272 1.7272) + (drill 1.016) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 111 "unconnected-(RP1-AO_3-Pad20)") + (pinfunction "AO_3") + (pintype "passive+no_connect") + (uuid "3d04a594-c3a5-4667-a528-3ca78c305de4") + ) + (pad "21" thru_hole oval + (at -10.033 28.067 270) + (size 1.7272 1.7272) + (drill 1.016) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "daf849b3-e095-4e66-9651-b7a5273a96f7") + ) + (pad "22" thru_hole oval + (at -10.033 25.527 270) + (size 1.7272 1.7272) + (drill 1.016) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "52f1d2cb-1f19-4fdf-a68c-7235dfe1c204") + ) + (pad "23" thru_hole oval + (at -12.573 28.067 270) + (size 1.7272 1.7272) + (drill 1.016) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 112 "unconnected-(RP1-CLK+-Pad23)") + (pinfunction "CLK+") + (pintype "passive+no_connect") + (uuid "52e28be8-195b-4153-bf9f-e8f6a12e2921") + ) + (pad "24" thru_hole oval + (at -12.573 25.527 270) + (size 1.7272 1.7272) + (drill 1.016) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 113 "unconnected-(RP1-CLK--Pad24)") + (pinfunction "CLK-") + (pintype "passive+no_connect") + (uuid "66ecd267-6a93-4915-8bce-8741554a21c6") + ) + (pad "25" thru_hole oval + (at -15.113 28.067 270) + (size 1.7272 1.7272) + (drill 1.016) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "37d75f5d-c58b-4274-91dd-721012f7edae") + ) + (pad "26" thru_hole oval + (at -15.113 25.527 270) + (size 1.7272 1.7272) + (drill 1.016) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "06dafb89-ab7b-47c1-b1a8-7254a7116372") + ) + (model "${KIPRJMOD}/3D_models/ESQ-113-44-T-D.step" + (offset + (xyz 0.1 -26.7 10.4) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz -90 0 0) + ) + ) + ) + (footprint "Inductor_SMD:L_Coilcraft_MSS1278T-XXX" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70bb5c") + (at 101.3 113.4 -90) + (descr "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") + (tags "Inductor mss") + (property "Reference" "L3" + (at 0 -7 -90) + (layer "F.SilkS") + (uuid "613084ef-d3c8-4cd0-8f67-2723eec6130d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "4.7u" + (at 0 7 -90) + (layer "F.Fab") + (uuid "1524b4d4-f080-4468-91dc-a489725c40d2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Inductor_SMD:L_Coilcraft_MSS1278T-XXX" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8e6981ce-aaae-4281-ae33-5bf97228fef9") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0cf34607-6239-4dcc-b583-85600d2cb7b6") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7b3b0c0f-bac8-4917-9c9a-374e654a2fe3") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Coilcraft" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "09af9e1a-c89a-4837-8624-365a447a9844") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "MSS1278T-472MLD" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "76406f57-606e-45b4-a9ff-b5bcc6a2d506") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Choke_* *Coil* Inductor_* L_*") + (path "/00000000-0000-0000-0000-00005b053798/8257e3a6-385d-4475-8f58-b9b5b2fc8f2a") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.kicad_sch") + (attr smd) + (fp_line + (start -6.26 6.26) + (end 6.26 6.26) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "57362806-ab36-4a1a-89c8-177ac34e89e1") + ) + (fp_line + (start -6.26 6.26) + (end -6.26 3.01) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "afec7200-77c5-4265-863b-1929a93253c2") + ) + (fp_line + (start 6.26 6.26) + (end 6.26 3.01) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0732531e-d703-4286-9bcb-5254d67f70eb") + ) + (fp_line + (start -6.26 -6.26) + (end -6.26 -3.01) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9863b847-9fdd-456a-9c7c-13a127c6396c") + ) + (fp_line + (start -6.26 -6.26) + (end -4.61 -6.26) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "dbfbd72b-278f-43c9-aee0-3ca76d4aa4a7") + ) + (fp_line + (start -3.89 -6.26) + (end 6.26 -6.26) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b7c0f798-47d2-4dca-8a4c-f623f7547fd4") + ) + (fp_line + (start 6.26 -6.26) + (end 6.26 -3.01) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9aa39c09-746b-412a-8dbf-d44e22e32695") + ) + (fp_poly + (pts + (xy -4.25 -6.26) (xy -4.49 -6.59) (xy -4.01 -6.59) (xy -4.25 -6.26) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "183c0b4d-f7ba-4c8e-b9d1-656d7736c6d6") + ) + (fp_line + (start -6.5 6.25) + (end 6.5 6.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4977e139-dc91-4e3c-adb3-b17dd4dd3ebb") + ) + (fp_line + (start 6.5 6.25) + (end 6.5 -6.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0dbe582c-c927-4a33-962b-e9911f33fdef") + ) + (fp_line + (start -6.5 -6.25) + (end -6.5 6.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "403cc6ce-c950-40b5-ba80-974a122bd474") + ) + (fp_line + (start 6.5 -6.25) + (end -6.5 -6.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f3271fa0-e9f7-47e5-8386-0c1afdd56de4") + ) + (fp_line + (start -6 6) + (end -6 -5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4439bb49-e583-4f2c-b98f-1b523436ac30") + ) + (fp_line + (start 6 6) + (end -6 6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c0f32a80-e6c1-4c91-af3c-135267a85208") + ) + (fp_line + (start -4.25 4.8) + (end -4.25 -4.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8d1fda59-f179-4b21-9cf1-29bf73ac751c") + ) + (fp_line + (start -6 -5) + (end -5 -6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "aea0630e-2d01-4cc6-b68c-9ee1e7b44479") + ) + (fp_line + (start -5 -6) + (end 6 -6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3778cd92-11d1-4127-83aa-01c7aa0e4622") + ) + (fp_line + (start 6 -6) + (end 6 6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3265171c-2722-4733-bc50-010bb9bb6ed1") + ) + (fp_text user "${REFERENCE}" + (at 0 0 -90) + (layer "F.Fab") + (uuid "7aa0665a-4950-4fbd-884e-3a8ff713659e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -4.25 0 270) + (size 4 5.5) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 57 "Net-(C11-Pad2)") + (pintype "passive") + (uuid "ad833ff8-0c11-4bbd-9989-a10b5f17191e") + ) + (pad "2" smd roundrect + (at 4.25 0 270) + (size 4 5.5) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 21 "/Supply_Ref/+5V") + (pintype "passive") + (uuid "351ee8cc-9f53-4a76-8046-71ae71ce7f31") + ) + (model "${KICAD8_3DMODEL_DIR}/Inductor_SMD.3dshapes/L_Coilcraft_MSS1278T-XXX.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Package_SO:MSOP-12-1EP_3x4mm_P0.65mm_EP1.65x2.85mm" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70bbaa") + (at 69.59 74.92) + (descr "MSOP, 12 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3652fe.pdf#page=24), generated with kicad-footprint-generator ipc_gullwing_generator.py") + (tags "MSOP SO") + (property "Reference" "U1" + (at 0 -3.05 0) + (layer "F.SilkS") + (uuid "f2b2824d-3f3f-4374-9adc-c27bdafefea1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "LT3045EMSE" + (at 0 3.05 0) + (layer "F.Fab") + (uuid "93e0cfdd-6061-4a8c-9c83-2955f0e7fa7e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Package_SO:MSOP-12-1EP_3x4mm_P0.65mm_EP1.65x2.85mm" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "87bc50bc-d3b5-405d-bb91-08c8e991c66c") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "https://www.analog.com/media/en/technical-documentation/data-sheets/3045fa.pdf" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "43f28869-e814-499f-bdef-506619ce2e8d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "01dc4d3c-daf0-47f2-aa08-ae9a21d6f61b") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Linear Technology" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "dbc4d4a6-6f0f-48df-89ee-2aed16daaee4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "LT3045EMSE#PBF" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "8d6b0ea8-dd90-4b4b-95c8-a9ca7f4ae83f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "MSOP*1EP*3x4mm*P0.65mm*") + (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005cd407e5") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.kicad_sch") + (attr smd) + (fp_line + (start 0 -2.11) + (end -1.5 -2.11) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "72eff393-3414-477a-8e07-94990fbeaf3a") + ) + (fp_line + (start 0 -2.11) + (end 1.5 -2.11) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "958b2f44-d726-4cfa-b2c9-7976f24b29d4") + ) + (fp_line + (start 0 2.11) + (end -1.5 2.11) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "bb3024f9-da6f-470f-aaac-21b39275038b") + ) + (fp_line + (start 0 2.11) + (end 1.5 2.11) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cbe6af0d-6f31-47c3-ab81-fe3da3a26d89") + ) + (fp_poly + (pts + (xy -2.1875 -2.085) (xy -2.4275 -2.415) (xy -1.9475 -2.415) (xy -2.1875 -2.085) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "87e49610-7439-4a50-992e-15253da7db26") + ) + (fp_line + (start -3.12 -2.25) + (end -3.12 2.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "38b32902-8f3d-47af-8979-371951a2c934") + ) + (fp_line + (start -3.12 2.25) + (end 3.12 2.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f2675262-004d-4a53-925c-ec7da1bfc6b3") + ) + (fp_line + (start 3.12 -2.25) + (end -3.12 -2.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ba3bc228-3705-4325-ac75-8b76440e23a0") + ) + (fp_line + (start 3.12 2.25) + (end 3.12 -2.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "65be7a22-d870-4bc9-828a-251567cbac89") + ) + (fp_line + (start -1.5 -1.25) + (end -0.75 -2) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4d775fff-5c34-43ef-af8b-2e6863f9aae0") + ) + (fp_line + (start -1.5 2) + (end -1.5 -1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a3435b8f-582c-4842-ab74-2230846c1b51") + ) + (fp_line + (start -0.75 -2) + (end 1.5 -2) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7d6383b0-038c-4a7c-bac1-01f0f0d93b59") + ) + (fp_line + (start 1.5 -2) + (end 1.5 2) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "dfe39fce-1f2a-4b86-a159-f8133d60ddce") + ) + (fp_line + (start 1.5 2) + (end -1.5 2) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "fae9842b-f38a-4aeb-8c2d-54b14f4b938c") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "e4804560-7932-4cdf-99bb-b3af587c2bb8") + (effects + (font + (size 0.6 0.6) + (thickness 0.15) + ) + ) + ) + (pad "" smd roundrect + (at -0.41 -0.71) + (size 0.67 1.15) + (layers "F.Paste") + (roundrect_rratio 0.25) + (uuid "017550b1-db16-4356-bea7-7b4c82d8fe9a") + ) + (pad "" smd roundrect + (at -0.41 0.71) + (size 0.67 1.15) + (layers "F.Paste") + (roundrect_rratio 0.25) + (uuid "13d6bbfa-48b0-4e12-ba00-4c654a5457c3") + ) + (pad "" smd roundrect + (at 0.41 -0.71) + (size 0.67 1.15) + (layers "F.Paste") + (roundrect_rratio 0.25) + (uuid "74e374f3-789d-45d5-8252-3bf21a877821") + ) + (pad "" smd roundrect + (at 0.41 0.71) + (size 0.67 1.15) + (layers "F.Paste") + (roundrect_rratio 0.25) + (uuid "e4c277d7-6018-47a0-b59d-fc66158e11f5") + ) + (pad "1" smd roundrect + (at -2.15 -1.625) + (size 1.45 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 1 "/Supply_Ref/+15V") + (pinfunction "IN") + (pintype "power_in") + (uuid "4d3da597-32d4-4733-9583-4785d212dbd3") + ) + (pad "2" smd roundrect + (at -2.15 -0.975) + (size 1.45 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 1 "/Supply_Ref/+15V") + (pinfunction "IN") + (pintype "passive") + (uuid "c972fbb2-0b77-4481-a9ed-84d0ae09390c") + ) + (pad "3" smd roundrect + (at -2.15 -0.325) + (size 1.45 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 1 "/Supply_Ref/+15V") + (pinfunction "IN") + (pintype "passive") + (uuid "eec7ff6e-d7d0-497b-b54e-96e23df15ec3") + ) + (pad "4" smd roundrect + (at -2.15 0.325) + (size 1.45 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 1 "/Supply_Ref/+15V") + (pinfunction "EN/UV") + (pintype "input") + (uuid "8eae719e-1bb4-4c6e-82bf-a2904d966f8a") + ) + (pad "5" smd roundrect + (at -2.15 0.975) + (size 1.45 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 114 "unconnected-(U1-PG-Pad5)") + (pinfunction "PG") + (pintype "open_collector+no_connect") + (uuid "b28cf13d-ace0-4a67-8b3f-18045ef1d394") + ) + (pad "6" smd roundrect + (at -2.15 1.625) + (size 1.45 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pinfunction "ILIM") + (pintype "passive") + (uuid "c80daf87-b3dc-4c74-9ead-7315180aaf55") + ) + (pad "7" smd roundrect + (at 2.15 1.625) + (size 1.45 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 1 "/Supply_Ref/+15V") + (pinfunction "PGFB") + (pintype "input") + (uuid "aba4acec-d92f-4403-bc7c-3d89cc1a41ae") + ) + (pad "8" smd roundrect + (at 2.15 0.975) + (size 1.45 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 8 "Net-(U1-SET)") + (pinfunction "SET") + (pintype "passive") + (uuid "a296c03d-e05e-434e-a387-c287750e963d") + ) + (pad "9" smd roundrect + (at 2.15 0.325) + (size 1.45 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pinfunction "GND") + (pintype "power_in") + (uuid "7bc5b9eb-54ca-4d17-95ee-d2a8a2d9525e") + ) + (pad "10" smd roundrect + (at 2.15 -0.325) + (size 1.45 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 4 "/Input_Output_Module/+12V") + (pinfunction "OUTS") + (pintype "input") + (uuid "49492a70-5894-4632-b00e-c49b1c1f2746") + ) + (pad "11" smd roundrect + (at 2.15 -0.975) + (size 1.45 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 4 "/Input_Output_Module/+12V") + (pinfunction "OUT") + (pintype "power_out") + (uuid "7e2acf8b-8132-469a-a1b3-f7de2e01b5a8") + ) + (pad "12" smd roundrect + (at 2.15 -1.625) + (size 1.45 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 4 "/Input_Output_Module/+12V") + (pinfunction "OUT") + (pintype "passive") + (uuid "c432c2f7-080f-42ca-a0ec-4174c8460f25") + ) + (pad "13" smd rect + (at 0 0) + (size 1.65 2.85) + (property pad_prop_heatsink) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "GND") + (pintype "passive") + (zone_connect 2) + (uuid "7f2174b1-b7a0-4021-b692-4f4cb169b8f7") + ) + (model "${KICAD8_3DMODEL_DIR}/Package_SO.3dshapes/MSOP-12-1EP_3x4mm_P0.65mm_EP1.65x2.85mm.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_1206_3216Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70bbfe") + (at 75.4 78.5) + (descr "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") + (tags "capacitor") + (property "Reference" "C8" + (at 0 1.9 0) + (layer "F.SilkS") + (uuid "4dd1d465-042f-4af4-869f-72f3909e0ed8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100n" + (at 0 2 0) + (layer "F.Fab") + (uuid "be65f4e1-2fc7-4665-b756-350ebfdb33c9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_1206_3216Metric" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8a605583-5dbd-46d5-8ac0-efef1db9fc99") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "48dc46f8-b6af-4d49-83f1-b58e5a41b015") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9125fd7a-01f5-4d7d-8aa8-e541d9338942") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "KEMET" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "5140e151-3566-4501-a25b-6a2355c18e7f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "C1206C104K3GEC7210" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "897e02d8-269d-4347-900a-072497928d89") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005c1a9735") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.kicad_sch") + (attr smd) + (fp_line + (start -0.711252 -0.91) + (end 0.711252 -0.91) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f6fd6f17-4485-41cf-8036-f5e00a6ca262") + ) + (fp_line + (start -0.711252 0.91) + (end 0.711252 0.91) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c88c9aea-0f8d-4900-b0a9-8dc98c3e7a6a") + ) + (fp_line + (start -2.3 -1.15) + (end 2.3 -1.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7ca04cb5-d6db-4d9b-925b-c72a7e258611") + ) + (fp_line + (start -2.3 1.15) + (end -2.3 -1.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "6d836923-5de1-4b85-b6cf-7a3b1f268742") + ) + (fp_line + (start 2.3 -1.15) + (end 2.3 1.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f66b7604-e2d6-4fdc-bbc4-33ccd9f25170") + ) + (fp_line + (start 2.3 1.15) + (end -2.3 1.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "79b45223-e758-42ad-a1e7-1fa3564ded7a") + ) + (fp_line + (start -1.6 -0.8) + (end 1.6 -0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6f6399bb-68cc-4b5d-9b86-9664b24d07c0") + ) + (fp_line + (start -1.6 0.8) + (end -1.6 -0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f3d6cb88-87db-48ec-b93c-7e229a06c011") + ) + (fp_line + (start 1.6 -0.8) + (end 1.6 0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3e062768-02d3-443c-93a2-dd900bcd7a7a") + ) + (fp_line + (start 1.6 0.8) + (end -1.6 0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0770932b-419e-408a-aec1-ebf7d7044fa4") + ) + (fp_text user "${REFERENCE}" + (at 0 1.9 0) + (layer "F.Fab") + (uuid "2a234aef-dca0-4c05-a039-ba2e144eec4c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -1.475 0) + (size 1.15 1.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.217391) + (net 8 "Net-(U1-SET)") + (pintype "passive") + (uuid "815ac517-aea0-417a-a086-3a6945f9e06c") + ) + (pad "2" smd roundrect + (at 1.475 0) + (size 1.15 1.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.217391) + (net 2 "GND") + (pintype "passive") + (uuid "667fd037-5012-4d53-9787-2a99a1eae7ef") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "TestPoint:TestPoint_THTPad_D1.5mm_Drill0.7mm" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70bc25") + (at 80.9 76.5) + (descr "THT pad as test Point, diameter 1.5mm, hole diameter 0.7mm") + (tags "test point THT pad") + (property "Reference" "TP1" + (at 0 -2 0) + (layer "F.SilkS") + (hide yes) + (uuid "d8afc8c7-36d6-4341-8cd5-19286eb122e7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "+12V" + (at 0 2 0) + (layer "F.SilkS") + (uuid "1e5a1542-1f86-43bf-a0dd-76c0b9015170") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "TestPoint:TestPoint_THTPad_D1.5mm_Drill0.7mm" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bb6326cf-fbf3-4c02-87ab-c207b7fe458a") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "000bd3e2-3f40-49ae-b079-b4fcd31d8238") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "007edcc4-2a57-40ca-a0da-545bcca6513a") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Config" "DNF" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "abbe4704-00d9-4443-b4a0-5745a2a962f5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Pin* Test*") + (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005c228744") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.kicad_sch") + (attr exclude_from_pos_files) + (fp_circle + (center 0 0) + (end 0 0.95) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "b22531a2-b33a-47e7-8676-9906b4d3b86d") + ) + (fp_circle + (center 0 0) + (end 1.25 0) + (stroke + (width 0.05) + (type solid) + ) + (fill none) + (layer "F.CrtYd") + (uuid "32cebeb7-8dc9-41bf-8051-7975923f8b74") + ) + (fp_text user "${REFERENCE}" + (at 0 -1.65 0) + (layer "F.Fab") + (uuid "5985f69f-3fec-4bb8-9777-e0ed231d8869") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0) + (size 1.5 1.5) + (drill 0.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 4 "/Input_Output_Module/+12V") + (pinfunction "1") + (pintype "passive") + (uuid "6aa2a7b3-3a14-447c-bdd3-504ed7dfd3c3") + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70bcd3") + (at 128.6 56.65 180) + (descr "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") + (tags "resistor") + (property "Reference" "R27" + (at 0.1 -1.6 0) + (layer "F.SilkS") + (uuid "34aa70ea-2459-4c15-8cfc-4845606430f8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "0" + (at 0 1.5 180) + (layer "F.Fab") + (uuid "9255f4bc-3185-4fb9-9391-42aab2a179ae") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2d6afa40-3f28-4ab6-8280-2474e226f877") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a85feb9d-0587-4363-9cdb-348fa1d5a6c4") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "61b4ce33-d456-4229-ad12-d2eb5cf99000") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Vishay" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "3b8afd1e-008a-4971-a25f-561baf3027d9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "CRCW06030000Z0EB" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "8d2f0a2c-1d41-4eca-9ff6-95c5498b8b90") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b0591c6") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cc61b836-e00d-47e7-8f37-3da8d9149947") + ) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8c0de1c6-f65a-4103-89eb-0b768c5c062b") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "6a43ee19-d887-4940-b386-3c8552597378") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "df18a09b-9c87-43dc-a789-bf2dcf1381c6") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1872d300-1e72-4470-bbf6-4ce35c466dd7") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c0067c78-4336-45f9-a162-e0ecbf9e9793") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5bbeb933-5ea8-4f1a-95d6-de22915e7ffb") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b84c4c6e-7f5d-4a23-bf6c-1f24e03a34d2") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "06faa02b-6771-4630-8aae-739a79a166cb") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "30b96c2e-b2ec-4de3-836d-7fe3ea260d66") + ) + (fp_text user "${REFERENCE}" + (at 0 0 180) + (layer "F.Fab") + (uuid "422aa8ee-e650-420c-af7c-8613d9ef4b9a") + (effects + (font + (size 0.4 0.4) + (thickness 0.075) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0 180) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 84 "Net-(U8A-+)") + (pintype "passive") + (uuid "c21af06d-aecf-49f6-8e75-298eb28cc4b9") + ) + (pad "2" smd roundrect + (at 0.825 0 180) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 82 "Net-(U8B--)") + (pintype "passive") + (uuid "d736e025-3264-4377-a374-a20e53461b93") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0603_1608Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70bd03") + (at 111.35 56.6 180) + (descr "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") + (tags "capacitor") + (property "Reference" "C18" + (at -2.25 0.5 90) + (layer "F.SilkS") + (uuid "8484dfe2-0291-404c-a9cd-f6b116649dfe") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100n" + (at 0 1.5 0) + (layer "F.Fab") + (uuid "1f18cdea-b66b-4289-9417-3e918c004d95") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d7839e71-76aa-4e9c-9059-4ef81c15a307") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d4290e68-c72a-44c7-a49b-f343b0b38683") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "897d12ff-d1b1-4ccd-a647-9ad5539fea7b") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Kemet" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "c156adbd-0df1-47ea-8ca2-dada7c41e1a9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "C0603C104K5RECAUTO" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "fe58af59-dc25-458f-864a-55649f17c1cb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005c1ae145") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start -0.14058 0.51) + (end 0.14058 0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ff98c17b-8b9d-4925-a0e4-4e1767b39149") + ) + (fp_line + (start -0.14058 -0.51) + (end 0.14058 -0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0f3228c2-c7b7-4f45-8c1a-fe4ff33fdd8e") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c0e9a03a-353d-4c40-a809-65191c75404f") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "69c2ee24-07b4-47e4-91cb-3a00b520f0c8") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0db893fe-cfd2-4a11-b0d9-8a0f7d7e4a16") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "971d3ae4-e20d-4ccc-ae67-13f33266fa80") + ) + (fp_line + (start 0.8 0.4) + (end -0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c793f80f-8c2a-4e18-abcb-a2b151ce821d") + ) + (fp_line + (start 0.8 -0.4) + (end 0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c70f8441-9ed9-4d23-ba4c-a19caacc3d9b") + ) + (fp_line + (start -0.8 0.4) + (end -0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0a2281a0-ce32-4c78-b2f2-dae199bdc467") + ) + (fp_line + (start -0.8 -0.4) + (end 0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "660807c9-f542-457b-8f52-90b505578e83") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "69787705-0bce-4849-8e77-f5d4402a7fa1") + (effects + (font + (size 0.3 0.3) + (thickness 0.075) + ) + ) + ) + (pad "1" smd roundrect + (at -0.775 0 180) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "b162a057-3548-4176-8c19-929863c7d646") + ) + (pad "2" smd roundrect + (at 0.775 0 180) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 4 "/Input_Output_Module/+12V") + (pintype "passive") + (uuid "121d9a18-6975-4153-80d8-b4621b126502") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_1210_3225Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70bde4") + (at 92.4 108.8 90) + (descr "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") + (tags "capacitor") + (property "Reference" "C20" + (at -3 -0.1 180) + (layer "F.SilkS") + (uuid "5d1d7fef-2afb-4281-8b0f-48f4d3ebd5a9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "47u" + (at 0 2.5 90) + (layer "F.Fab") + (uuid "bb01af02-5166-4d99-af4e-61c02fb03c89") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "355b38f4-c878-4702-8218-4b44ed691ea0") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8c7774c6-4fa1-4305-9ef6-adca43252348") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "cf4205e1-8277-43a3-b73a-0c8abc37da0a") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Taiyo Yuden" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "5d97fd57-fdc2-4335-bdf5-0fd2e6cbf11f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "EMK325BJ476MM-P" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "2dbed285-7ffd-4e14-9277-750efdc8b65c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/00000000-0000-0000-0000-00005b053798/10ba1241-7331-48ca-8d86-4837e8c4adf9") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.kicad_sch") + (attr smd) + (fp_line + (start -0.711252 -1.36) + (end 0.711252 -1.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "65c36fde-ca3b-4414-86b9-cb4d2d5b707d") + ) + (fp_line + (start -0.711252 1.36) + (end 0.711252 1.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b72dac74-878d-4a6d-8cfa-9ebaa3f8d618") + ) + (fp_line + (start 2.3 -1.6) + (end 2.3 1.6) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c2a6e5ed-1ec2-4f62-a4e0-0a7e80e26639") + ) + (fp_line + (start -2.3 -1.6) + (end 2.3 -1.6) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1973f87a-b077-42a1-88f4-e3467166aaac") + ) + (fp_line + (start 2.3 1.6) + (end -2.3 1.6) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "5f7279f9-493c-41f3-84aa-d308a8b91522") + ) + (fp_line + (start -2.3 1.6) + (end -2.3 -1.6) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c2e58238-1c76-4ebb-8a46-f5e628cefbc5") + ) + (fp_line + (start 1.6 -1.25) + (end 1.6 1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "68dab254-6759-4f13-a23c-af49ee840b05") + ) + (fp_line + (start -1.6 -1.25) + (end 1.6 -1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "90a84d8e-7e0d-40d0-96a4-75ab787c5d3b") + ) + (fp_line + (start 1.6 1.25) + (end -1.6 1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4f51f3e3-58bf-455f-b9ee-354c26ab6698") + ) + (fp_line + (start -1.6 1.25) + (end -1.6 -1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "25b72948-e003-41c9-bd9f-86b2b7058d91") + ) + (fp_text user "${REFERENCE}" + (at 0 -2.25 90) + (layer "F.Fab") + (uuid "ff3a6513-8f0e-47e0-9880-78e8c64c84fb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -1.475 0 90) + (size 1.15 2.7) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.217391) + (net 21 "/Supply_Ref/+5V") + (pintype "passive") + (uuid "1e26a4f6-e2c8-459b-b219-3fdd276b272a") + ) + (pad "2" smd roundrect + (at 1.475 0 90) + (size 1.15 2.7) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.217391) + (net 2 "GND") + (pintype "passive") + (uuid "34a89847-4293-416c-aae3-45ecda541a35") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1210_3225Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "TestPoint:TestPoint_THTPad_D1.5mm_Drill0.7mm" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70be0e") + (at 77.9 41.9) + (descr "THT pad as test Point, diameter 1.5mm, hole diameter 0.7mm") + (tags "test point THT pad") + (property "Reference" "TP2" + (at 0 -2 0) + (layer "F.SilkS") + (hide yes) + (uuid "e14a1f85-d2b9-4542-b35c-3f1f61eb7513") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "-12V" + (at -0.01 -2.08 0) + (layer "F.SilkS") + (uuid "fd4275ec-0487-457a-a4e4-e9e3428946a6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "TestPoint:TestPoint_THTPad_D1.5mm_Drill0.7mm" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "94d46c69-a151-4c2a-97b5-3535cb4b28f1") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e8e05499-e328-44f7-9aa6-071a59856ca2") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "42c6e072-85df-47ca-8f2a-c1669ca7561d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Config" "DNF" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "57c1eb24-be31-4dd5-888c-554a2649c039") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Pin* Test*") + (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005c22864c") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.kicad_sch") + (attr exclude_from_pos_files) + (fp_circle + (center 0 0) + (end 0 0.95) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "59fb9971-8a34-4bf3-b817-df59228b3372") + ) + (fp_circle + (center 0 0) + (end 1.25 0) + (stroke + (width 0.05) + (type solid) + ) + (fill none) + (layer "F.CrtYd") + (uuid "6e3047d6-e767-498e-a764-a227f91e28c7") + ) + (fp_text user "${REFERENCE}" + (at 0 -1.65 0) + (layer "F.Fab") + (uuid "fe712a9a-9cc2-483e-af0b-f4eb4e2186b6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0) + (size 1.5 1.5) + (drill 0.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 19 "/Input_Output_Module/-12V") + (pinfunction "1") + (pintype "passive") + (uuid "e3f9eb38-169b-40e0-b1a1-83be17b2e6ab") + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70be32") + (at 104.4 58.3) + (descr "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") + (tags "resistor") + (property "Reference" "R12" + (at 0.7 1.6 0) + (layer "F.SilkS") + (uuid "062b69c4-cf4c-4b19-b313-06c61f4eee14") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1k" + (at 0 1.5 0) + (layer "F.Fab") + (uuid "145a53df-fd57-4af8-a812-82ea162f0bd8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "dfe9a969-ced0-494e-9108-f6cbcd336ea9") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e65830c3-c2a8-42a0-ac3d-53c8cf96df74") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "093036cd-9c6c-462e-b67a-b588ec11cf3f") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Susumu" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "78772d60-6d1d-4901-b0f8-21e0c0f0b491") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "RR0816P-102-D" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "376641c1-05a7-4287-91bd-6633b7b6b7c0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b057a35") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "bb7271df-b200-4931-98e7-562ce30093b0") + ) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "44770f39-b78b-4843-aca7-5a1d9a7314f7") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a1236eb4-9765-472f-9f4c-9b2d49b0a781") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "92acf8d6-9522-4508-8092-c716532c6573") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1edf6eb0-cff9-4130-a8aa-79d6b579dbc0") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "51832ce4-bc0b-4d81-9a95-87e1de41f765") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c286b7b8-65f7-46cd-9588-0dd2af864049") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b8e7efcb-ad21-4f2d-b99b-a07bfa21b70a") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "fe357869-3ffe-401f-9541-93be14b24980") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9266fab8-a83d-41a4-9413-ac7008a9f980") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "e3672fed-b3b9-458e-9746-8ffd361b2075") + (effects + (font + (size 0.4 0.4) + (thickness 0.075) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 85 "Net-(U4B--)") + (pintype "passive") + (uuid "7277b432-6bb6-4576-bb29-6accd6bf8aa4") + ) + (pad "2" smd roundrect + (at 0.825 0) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 86 "Net-(U4D--)") + (pintype "passive") + (uuid "1912b281-30d7-4000-937f-29fd2d73f810") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70be71") + (at 100.9 51.4 90) + (descr "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") + (tags "SOIC SO") + (property "Reference" "U4" + (at 0 -5.375 90) + (layer "F.SilkS") + (uuid "00e8f454-8450-4bc2-b72a-760b57793ad0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "OPA1604" + (at 0 5.375 90) + (layer "F.Fab") + (uuid "b69fff8e-368e-4f29-875f-1f63bb07b8f6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Package_SO:SOIC-14_3.9x8.7mm_P1.27mm" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1f4588ef-409d-420d-9927-85175740e267") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/opa1604.pdf" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "40837b45-0de0-42ef-b677-62696bc96605") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a263c1fe-7984-4e28-a3e0-ca2947f52373") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Texas Instruments" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "653ed748-6029-42ad-9081-f22d099c9376") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "OPA1604AIDR" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "23261646-72d7-46c5-9d71-a7dbfad4ea2f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "SOIC*3.9x8.7mm*P1.27mm* DIP*W7.62mm* TSSOP*4.4x5mm*P0.65mm* SSOP*5.3x6.2mm*P0.65mm* MSOP*3x3mm*P0.5mm*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b0591f9") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start 0 -4.435) + (end 1.95 -4.435) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c3877c31-b132-44b7-8040-36f8b579bb5e") + ) + (fp_line + (start 0 -4.435) + (end -1.95 -4.435) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "02b7b4fe-9674-4a18-9381-227d0dce9e2e") + ) + (fp_line + (start 0 4.435) + (end 1.95 4.435) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c9789a6d-f6a6-4cca-903b-ba651ebfc579") + ) + (fp_line + (start 0 4.435) + (end -1.95 4.435) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a86f78a7-952b-47b1-89bc-fad8c33e2f4c") + ) + (fp_poly + (pts + (xy -2.7 -4.37) (xy -2.94 -4.7) (xy -2.46 -4.7) (xy -2.7 -4.37) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "9d739b00-0377-4be5-a591-65a567b5e02f") + ) + (fp_line + (start 3.7 -4.58) + (end -3.7 -4.58) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a69539e1-4c3d-4715-95a6-ff6de8af7f10") + ) + (fp_line + (start -3.7 -4.58) + (end -3.7 4.58) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e58d16dd-1330-4ac8-b435-958e3d5356ce") + ) + (fp_line + (start 3.7 4.58) + (end 3.7 -4.58) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "bdc25d6d-5bba-4f24-8e77-ebe98a921d9d") + ) + (fp_line + (start -3.7 4.58) + (end 3.7 4.58) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "28c33e02-3313-43f9-9252-a601257b0143") + ) + (fp_line + (start 1.95 -4.325) + (end 1.95 4.325) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7d7b8edc-81a2-44f1-8c37-b6a892e1a168") + ) + (fp_line + (start -0.975 -4.325) + (end 1.95 -4.325) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0c580999-c9b0-44e2-b7a7-6349b6a181de") + ) + (fp_line + (start -1.95 -3.35) + (end -0.975 -4.325) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "da9aa614-baad-4af2-8454-a4eb751fcd87") + ) + (fp_line + (start 1.95 4.325) + (end -1.95 4.325) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5fc83fbb-03cd-49c7-84c7-b08593ce098e") + ) + (fp_line + (start -1.95 4.325) + (end -1.95 -3.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "421c19d6-9097-4240-afa2-e375ff29b956") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "227e85db-193e-44b2-b0de-a95991b624fb") + (effects + (font + (size 0.9 0.9) + (thickness 0.135) + ) + ) + ) + (pad "1" smd roundrect + (at -2.475 -3.81 90) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 24 "Net-(R4-Pad1)") + (pintype "output") + (uuid "bc61867a-945f-47cb-9eec-749127e1db8a") + ) + (pad "2" smd roundrect + (at -2.475 -2.54 90) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 80 "Net-(U4A--)") + (pinfunction "-") + (pintype "input") + (uuid "87d5166e-6da8-446b-a8f5-5d2824782516") + ) + (pad "3" smd roundrect + (at -2.475 -1.27 90) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 10 "Net-(U4A-+)") + (pinfunction "+") + (pintype "input") + (uuid "10a0dd90-b041-414f-82b1-63e31bf2dceb") + ) + (pad "4" smd roundrect + (at -2.475 0 90) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 4 "/Input_Output_Module/+12V") + (pinfunction "V+") + (pintype "power_in") + (uuid "d4947da8-6600-4569-91a5-34428ecb51b6") + ) + (pad "5" smd roundrect + (at -2.475 1.27 90) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 83 "Net-(U4B-+)") + (pinfunction "+") + (pintype "input") + (uuid "e7876486-4004-43e4-b4a2-e58d3170c7e4") + ) + (pad "6" smd roundrect + (at -2.475 2.54 90) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 85 "Net-(U4B--)") + (pinfunction "-") + (pintype "input") + (uuid "62622afd-619e-40a2-b7be-052ed113810c") + ) + (pad "7" smd roundrect + (at -2.475 3.81 90) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 18 "Net-(U4-Pad7)") + (pintype "output") + (uuid "9ab1e858-5c90-4e5a-a720-8547d567532e") + ) + (pad "8" smd roundrect + (at 2.475 3.81 90) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 90 "Net-(U4C--)") + (pintype "output") + (uuid "667eb796-c2aa-40f3-91c1-c1413a67bc90") + ) + (pad "9" smd roundrect + (at 2.475 2.54 90) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 90 "Net-(U4C--)") + (pinfunction "-") + (pintype "input") + (uuid "098fbafd-17d6-437c-9340-54f3f5440e71") + ) + (pad "10" smd roundrect + (at 2.475 1.27 90) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 87 "Net-(U4C-+)") + (pinfunction "+") + (pintype "input") + (uuid "7c08e6e7-8f1b-49ce-a9d6-46c73d181792") + ) + (pad "11" smd roundrect + (at 2.475 0 90) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 19 "/Input_Output_Module/-12V") + (pinfunction "V-") + (pintype "power_in") + (uuid "a51fde6d-2a91-40a1-89a0-adf9d55d8ec2") + ) + (pad "12" smd roundrect + (at 2.475 -1.27 90) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 13 "Net-(U4D-+)") + (pinfunction "+") + (pintype "input") + (uuid "58e3eeeb-4f83-4aff-a407-398d512f6807") + ) + (pad "13" smd roundrect + (at 2.475 -2.54 90) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 86 "Net-(U4D--)") + (pinfunction "-") + (pintype "input") + (uuid "4008a55a-68df-4a56-8c83-f913dd83778a") + ) + (pad "14" smd roundrect + (at 2.475 -3.81 90) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 86 "Net-(U4D--)") + (pintype "output") + (uuid "c91b32d6-17c5-4dd9-a676-f0dd9ead2d0e") + ) + (model "${KICAD8_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-14_3.9x8.7mm_P1.27mm.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0603_1608Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70bebf") + (at 126.6 46.1 -90) + (descr "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") + (tags "capacitor") + (property "Reference" "C22" + (at 0 1.3 -90) + (layer "F.SilkS") + (uuid "4644caf2-e1e1-4021-ab76-58729cdd3db4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100n" + (at 0 1.5 -90) + (layer "F.Fab") + (uuid "3346287f-b07d-4d5a-b66b-05880c07fcca") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e08e7306-7591-4807-95c7-dba52bec8422") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "738be5e8-287f-4e83-80a6-9509758399d1") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4093bf4c-8b95-45d8-acec-2521e43f3d8b") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Kemet" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "9694f8d6-9a98-4e5a-9ce8-c629ac250b95") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "C0603C104K5RECAUTO" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "7f9e3e30-fdac-4271-a116-3005ae54f628") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005c1ae57d") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start -0.14058 0.51) + (end 0.14058 0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "22a87da6-e7a7-4b20-8f50-a468793ede82") + ) + (fp_line + (start -0.14058 -0.51) + (end 0.14058 -0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cd060005-cc7f-4491-a5ad-73f73f055d45") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "023ae3f4-2956-4eb1-8578-0d70cab06852") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a217570f-9709-4dd8-ab21-db41f7c2111d") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f72246c8-9c0f-49bb-b275-de5fe573ea77") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "88ae29c1-faee-4810-899d-798b259c671e") + ) + (fp_line + (start -0.8 0.4) + (end -0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "832fe6f9-aa90-4b80-8ee1-0382d4228534") + ) + (fp_line + (start 0.8 0.4) + (end -0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d8d35de3-2799-4c30-bcd6-b91e20e96d1b") + ) + (fp_line + (start -0.8 -0.4) + (end 0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0fb7f7da-719f-401d-b40a-c5e0bbe0b5b9") + ) + (fp_line + (start 0.8 -0.4) + (end 0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8a3b49df-f578-46db-8ddf-5a5bfc907c68") + ) + (fp_text user "${REFERENCE}" + (at 0 0 -90) + (layer "F.Fab") + (uuid "fa141b42-1d59-4315-bb55-8d3aa25fe361") + (effects + (font + (size 0.3 0.3) + (thickness 0.075) + ) + ) + ) + (pad "1" smd roundrect + (at -0.775 0 270) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "dddba34a-ee67-4950-8c7d-de0827c56a45") + ) + (pad "2" smd roundrect + (at 0.775 0 270) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 19 "/Input_Output_Module/-12V") + (pintype "passive") + (uuid "818d616d-8e74-428c-bf1e-0fc88e140cf6") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0603_1608Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70bf55") + (at 111.8 46 -90) + (descr "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") + (tags "capacitor") + (property "Reference" "C19" + (at -0.6 -1.5 90) + (layer "F.SilkS") + (uuid "4b4630ee-2fec-4ad7-a649-d45925b827fa") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100n" + (at 0 1.5 90) + (layer "F.Fab") + (uuid "fdfc0f5f-93c9-4145-ad47-712633eb331a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e45fc635-6fbe-4987-996c-4ed3ec31114f") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "db16cc10-6c5a-41e1-bc50-7c1964739a16") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "85dc6b3f-222d-48b8-bb2c-65d4d5bdda9c") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Kemet" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "369f9ba8-3da5-4256-b301-30252ee96df5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "C0603C104K5RECAUTO" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "0ef78674-f7b0-44dc-9550-69b26d50e5c4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005c1ade01") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start -0.14058 0.51) + (end 0.14058 0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5abcb05f-8435-485e-a54f-77202251bdff") + ) + (fp_line + (start -0.14058 -0.51) + (end 0.14058 -0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e70f0910-26a8-4327-8c54-baee612cad7c") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8a48b384-236e-43fc-9300-2f7009a55b18") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "aca70750-15ae-44cf-bf64-b67e73c0b1fa") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2f6378e3-5f9f-4546-8766-03762b50f255") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "eb495dd7-b5a4-4fef-a0ef-eeb43a0920ca") + ) + (fp_line + (start -0.8 0.4) + (end -0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f1428183-e3ae-4fc0-9842-e206edcf66a7") + ) + (fp_line + (start 0.8 0.4) + (end -0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e9ad9be5-be6c-40d1-b636-aa363d3c0670") + ) + (fp_line + (start -0.8 -0.4) + (end 0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e4ffae13-bfe5-48b0-a10a-4df55a900e8b") + ) + (fp_line + (start 0.8 -0.4) + (end 0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6c70ab3e-d9c4-4112-a5d3-4df5c8f54777") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "7ffe0160-58db-4b9f-9174-e030ae041d9f") + (effects + (font + (size 0.3 0.3) + (thickness 0.075) + ) + ) + ) + (pad "1" smd roundrect + (at -0.775 0 270) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "ab7d0bd1-0d9b-4276-8110-59578af30017") + ) + (pad "2" smd roundrect + (at 0.775 0 270) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 19 "/Input_Output_Module/-12V") + (pintype "passive") + (uuid "98afedef-3660-4ce9-bf75-2461734ae820") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0805_2012Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70bf85") + (at 80.3 93.1) + (descr "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") + (tags "capacitor") + (property "Reference" "C2" + (at 0 -1.5 0) + (layer "F.SilkS") + (uuid "f9a305ba-d8e9-431d-82e7-865c05839415") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "4.7u" + (at 0 1.75 0) + (layer "F.Fab") + (uuid "1e6b39b4-894b-46ed-902c-4e71f2447762") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "74f61690-b9e0-4a78-b992-3e7d459aed37") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "abeee315-baad-4fd1-8f3d-13f56e350263") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4141090b-7219-485c-a41f-9833fdb7b0bd") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Wurth Electronics" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "c0419aab-4ea7-4530-9954-c0e09d056bcd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "885012107013" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "edbdc904-9bd5-4808-b9dc-d951d63867aa") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005c1bd28c") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.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 "075fb9b6-b6a7-4802-b002-ded842e241f7") + ) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b837ba68-58c3-4aa4-a0b0-4eb639234093") + ) + (fp_line + (start -1.7 -0.98) + (end 1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "645e03f0-0f59-4b9c-b33d-0bf595b836f2") + ) + (fp_line + (start -1.7 0.98) + (end -1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1390347e-f32d-48b9-af07-7fc546664e5b") + ) + (fp_line + (start 1.7 -0.98) + (end 1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e31d5b60-a6e3-4f73-984a-b11568fb9664") + ) + (fp_line + (start 1.7 0.98) + (end -1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ac3fd8e6-f1ab-4a6d-851b-c540257bf716") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1bcc6fea-ee4d-498b-a484-022ea1cd1aaf") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "51fddc55-a447-4898-8310-f9213e686fc6") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4f51d0ce-0ca2-49cd-bcdc-7d7f58285132") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f15dd826-db14-4995-90c0-57123321879e") + ) + (fp_text user "${REFERENCE}" + (at 0 -1.5 0) + (layer "F.Fab") + (uuid "e899eb95-e23c-4b6f-a927-9e29dd887f83") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -0.95 0) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 51 "Net-(C2-Pad1)") + (pintype "passive") + (uuid "d5d2a769-5338-44de-8c99-471ab972b486") + ) + (pad "2" smd roundrect + (at 0.95 0) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "04d3fd10-71b4-4da1-83e3-7319dc3e700a") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70bfbe") + (at 128.5 51.5 -90) + (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" "U8" + (at 0 -3.5 -90) + (layer "F.SilkS") + (uuid "c4f49ce1-8c73-487a-9da7-02d0ad852220") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "OPA1602" + (at 0 3.5 -90) + (layer "F.Fab") + (uuid "faa83849-30f1-4119-b912-a5e2e3ba3f6e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a2f5b62f-3815-496f-9a56-7817a5e6745f") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/opa1604.pdf" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4230b627-7ee3-48d6-b803-d374bcc716ba") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c32e7010-46cf-4a1b-9965-44091cb5a4dd") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Texas Instruments" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "c40cc8bb-d02b-4dde-88b6-f5fb7b34d9c5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "OPA1602AIDR" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "6d2f5fca-8d48-4b05-b378-b3ee977e66cc") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "SOIC*3.9x4.9mm*P1.27mm* DIP*W7.62mm* TO*99* OnSemi*Micro8* TSSOP*3x3mm*P0.65mm* TSSOP*4.4x3mm*P0.65mm* MSOP*3x3mm*P0.65mm* SSOP*3.9x4.9mm*P0.635mm* LFCSP*2x2mm*P0.5mm* *SIP* SOIC*5.3x6.2mm*P1.27mm*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b4016af") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start 0 2.56) + (end -1.95 2.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8bee4b3d-94df-407c-94ae-fa8155fcd157") + ) + (fp_line + (start 0 2.56) + (end 1.95 2.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "db6e5d4a-9feb-447a-9e96-2907017f5781") + ) + (fp_line + (start 0 -2.56) + (end -1.95 -2.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "422a186d-6e78-46d3-b0bd-de79f5081d73") + ) + (fp_line + (start 0 -2.56) + (end 1.95 -2.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7a7155b1-b8d6-4158-9a70-92e07c0f5aaa") + ) + (fp_poly + (pts + (xy -2.7 -2.465) (xy -2.94 -2.795) (xy -2.46 -2.795) (xy -2.7 -2.465) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "79ba1279-b844-4fd7-8b02-4faa1562937a") + ) + (fp_line + (start -3.7 2.7) + (end 3.7 2.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "db706e3b-ce61-49cd-8c66-ee2d1f58b547") + ) + (fp_line + (start 3.7 2.7) + (end 3.7 -2.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "fc5d3e57-3f2e-48e9-8f3c-a1c078d882d8") + ) + (fp_line + (start -3.7 -2.7) + (end -3.7 2.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "99e0b7ee-c2eb-4bb3-86c1-15c73e2f149a") + ) + (fp_line + (start 3.7 -2.7) + (end -3.7 -2.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1bf9068d-7649-4abe-8f2b-76cb1f4c174e") + ) + (fp_line + (start -1.95 2.45) + (end -1.95 -1.475) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "362df583-96f3-419a-b785-b0e9c9f5b774") + ) + (fp_line + (start 1.95 2.45) + (end -1.95 2.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e34d7d27-afd5-4db9-a452-0052aea23e13") + ) + (fp_line + (start -1.95 -1.475) + (end -0.975 -2.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ff88096d-5965-4e09-9feb-7effdba3c31a") + ) + (fp_line + (start -0.975 -2.45) + (end 1.95 -2.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8bf796e8-a2bb-4334-b7c6-8f48969a6d27") + ) + (fp_line + (start 1.95 -2.45) + (end 1.95 2.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3f707808-794c-44aa-801f-620d5b1ae1df") + ) + (fp_text user "${REFERENCE}" + (at 0 0 -90) + (layer "F.Fab") + (uuid "b3e1b371-207d-4146-8517-f295a991ef8b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -2.475 -1.905 270) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 92 "Net-(U8A--)") + (pintype "output") + (uuid "3ef58744-294f-4799-aa19-29ca13a32942") + ) + (pad "2" smd roundrect + (at -2.475 -0.635 270) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 92 "Net-(U8A--)") + (pinfunction "-") + (pintype "input") + (uuid "d024765d-01c1-4131-8e10-e3242836cf79") + ) + (pad "3" smd roundrect + (at -2.475 0.635 270) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 84 "Net-(U8A-+)") + (pinfunction "+") + (pintype "input") + (uuid "fb871827-4be9-4dcc-8d11-482c9d613ea5") + ) + (pad "4" smd roundrect + (at -2.475 1.905 270) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 19 "/Input_Output_Module/-12V") + (pinfunction "V-") + (pintype "power_in") + (uuid "e07c8a98-037c-4da7-b913-62d73a49ed43") + ) + (pad "5" smd roundrect + (at 2.475 1.905 270) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 91 "Net-(U8B-+)") + (pinfunction "+") + (pintype "input") + (uuid "7ce55db4-d98b-4906-8b87-5acb8f7f95a0") + ) + (pad "6" smd roundrect + (at 2.475 0.635 270) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 82 "Net-(U8B--)") + (pinfunction "-") + (pintype "input") + (uuid "4f638ac7-0753-45f5-ba74-8334fd392067") + ) + (pad "7" smd roundrect + (at 2.475 -0.635 270) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 84 "Net-(U8A-+)") + (pintype "output") + (uuid "613c2cf6-ab36-4389-be22-660c057ac442") + ) + (pad "8" smd roundrect + (at 2.475 -1.905 270) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 4 "/Input_Output_Module/+12V") + (pinfunction "V+") + (pintype "power_in") + (uuid "9b7dccf1-e44f-47e3-9d82-a04d557eeac8") + ) + (model "${KICAD8_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-8_3.9x4.9mm_P1.27mm.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0603_1608Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70c000") + (at 132.1 55 90) + (descr "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") + (tags "capacitor") + (property "Reference" "C23" + (at -0.1 1.4 90) + (layer "F.SilkS") + (uuid "e8216b90-71d6-41fd-b38c-f75a4ac1f7a9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100n" + (at 0 1.5 90) + (layer "F.Fab") + (uuid "7f4a82d0-72eb-47e0-b32c-dc9164749303") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "417cfc09-b68b-454b-92d2-c47162316c27") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b17edd05-ebee-4c25-93d2-56b5563147f1") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "45790e80-9eb4-4438-8797-3f785820e155") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Kemet" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "3db9ad95-1ebe-48dd-9709-8a4f8cd675e7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "C0603C104K5RECAUTO" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "96b2a2ed-7a7b-42b7-a4d5-76c5e27dd7ef") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005c1aecc1") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start -0.14058 -0.51) + (end 0.14058 -0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "01939950-f6c6-437d-8448-03b91dc37314") + ) + (fp_line + (start -0.14058 0.51) + (end 0.14058 0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4038cbd8-7014-42cc-91fe-c0f0d88c7039") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "05626799-d0bb-4bd6-8bf3-ca3f3c7be6a5") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9b8f309e-d4a5-4201-bb41-2b32c33101cc") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "727895bc-84eb-4a05-9c7c-81c0099e9bb6") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "bc208b75-76c3-49dd-aa76-c15285a414af") + ) + (fp_line + (start 0.8 -0.4) + (end 0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9082c9a0-86ad-48ac-974c-e680d83500a6") + ) + (fp_line + (start -0.8 -0.4) + (end 0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "53a8082b-3074-46a2-9d30-7820db26adab") + ) + (fp_line + (start 0.8 0.4) + (end -0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "43426487-937b-464e-9697-d7f1f5dcb7ae") + ) + (fp_line + (start -0.8 0.4) + (end -0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "75006c5e-c6e6-4f0e-9176-9928a7a0bbdd") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "e165770a-d083-468c-8c97-a5d13aa8bacd") + (effects + (font + (size 0.3 0.3) + (thickness 0.075) + ) + ) + ) + (pad "1" smd roundrect + (at -0.775 0 90) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "daee2bcc-35cf-4afb-b06a-0682773becc5") + ) + (pad "2" smd roundrect + (at 0.775 0 90) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 4 "/Input_Output_Module/+12V") + (pintype "passive") + (uuid "de92e58f-e1c9-44d2-a93f-8093fb8f2dc2") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70c033") + (at 89.8 64.5 180) + (descr "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") + (tags "resistor") + (property "Reference" "R6" + (at 0 -1.45 180) + (layer "F.SilkS") + (uuid "140ba3d7-5fc6-49df-964c-5e328f37ae21") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1k" + (at 0 1.5 180) + (layer "F.Fab") + (uuid "41fd1bad-41a4-4ab6-9565-5648ca6df251") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "09c7fbfc-4ed5-4fbb-86cf-45e04f6834df") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "934c9131-04f3-445d-bac8-191b25082aec") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "625063d4-238e-4ab8-9cbf-09e57fd9f509") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Susumu" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "dd1ee9e4-bfee-4f6f-b30f-e5c444d94b03") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "RR0816P-102-D" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "1e49d430-4411-4aa2-be9d-4841ac257c07") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005ccfabd0") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "94abbe9b-c1df-4a64-8f59-9ac458c3c7af") + ) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a1c85f22-d710-45b0-a125-58ab3b2f8860") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "6d30eabf-a773-41f2-93d3-84121c84c8a8") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "6df88b56-86a7-401b-9410-0831f48f2702") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "cfb2ad00-71a1-4619-9843-c34a6489c776") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "67b587bc-3204-4022-83f8-d1c208ca2b2d") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c4799902-fa70-42b7-9831-15c1500bed42") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "66429f4a-475e-4cd2-bb6d-73a034cc09d8") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c10dda82-978c-48fe-8c33-4caf61c42f1f") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "93d7abd7-f410-4edd-b834-e81cc74a3831") + ) + (fp_text user "${REFERENCE}" + (at 0 0 180) + (layer "F.Fab") + (uuid "f47e926b-6702-41ab-87f2-0537cb93fbe2") + (effects + (font + (size 0.4 0.4) + (thickness 0.075) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0 180) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 10 "Net-(U4A-+)") + (pintype "passive") + (uuid "eda88140-7269-4f0e-8667-2b5820815751") + ) + (pad "2" smd roundrect + (at 0.825 0 180) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 72 "Net-(J3-In)") + (pintype "passive") + (uuid "5bb66b43-b77e-498f-b491-d295c0fab0d8") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70c0f9") + (at 104.41 56.36 180) + (descr "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") + (tags "resistor") + (property "Reference" "R14" + (at -3.19 0.06 180) + (layer "F.SilkS") + (uuid "64445863-2546-427e-83f3-709fa0115720") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "2k" + (at 0 1.5 0) + (layer "F.Fab") + (uuid "c73a15bc-3c5c-4d85-849b-fcb62803d9f5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "270a8298-17b4-4a42-93e6-02e78fbc4a33") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3fa9ffe1-ddfa-42ef-8107-f6e9f59dd1a6") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "efe61a46-655f-43f6-a930-c1810f45fc1f") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Susumu" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "64e1cf2b-fddd-46e7-8a79-af9f6b05a800") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "RR0816P-202-D" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "e8da3af4-4e91-418d-bf28-62e30e02f045") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b057a18") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a70baf77-cd67-41b7-b7e9-5e49bc87bcfb") + ) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5a5b5935-ba4a-4223-93d4-f923c26bba6b") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "35bc3e51-b067-48ee-8c01-a6dc589ef422") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9399071d-67ff-42b5-a7dd-828ba5157642") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e6faf6f2-853f-4141-a97f-844a6574a557") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7e0022ed-14ee-4012-a323-868cf61390e2") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "66ace587-e004-4d63-905e-e267cbd66449") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3e44c991-782e-4b88-bebf-51b8cbff726a") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e47712f6-0a6b-4572-89e7-11b4e66a1497") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b481068e-3c37-42e7-a994-f7cf7a2c873c") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "91ad1a42-6a58-47fa-92bf-d0289eef4f23") + (effects + (font + (size 0.4 0.4) + (thickness 0.075) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0 180) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 87 "Net-(U4C-+)") + (pintype "passive") + (uuid "834717bf-21b0-4574-a519-e040d2892376") + ) + (pad "2" smd roundrect + (at 0.825 0 180) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 85 "Net-(U4B--)") + (pintype "passive") + (uuid "b6315ce0-d45c-414f-9f3d-0004705c3e23") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_1210_3225Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70c129") + (at 104.8 45.2 -90) + (descr "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") + (tags "resistor") + (property "Reference" "R18" + (at 0 -2.25 -90) + (layer "F.SilkS") + (uuid "fef8810a-85c0-4988-8da9-026379fa147f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "49.9" + (at 0 2.4 -90) + (layer "F.Fab") + (uuid "ad0e2a36-80b4-4bbc-8987-5d9c75b8864f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_1210_3225Metric" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a71f416d-1d0f-4a32-bbac-7ec0dd2c78b0") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3d9ce99f-62ad-44d8-afec-2d43b970b4ae") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "cfc9ff81-5a09-4313-af63-028a0d50df6b") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Yageo" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "bbe03d19-8439-4595-84e7-4f96f0feaf5d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "RC1210FR-0749R9L" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "d885763b-0547-4199-be0f-5a9b8496f0ca") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b0579a2") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start -0.723737 1.355) + (end 0.723737 1.355) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6eb5d27f-b5b0-47e2-91a1-62915f966494") + ) + (fp_line + (start -0.723737 -1.355) + (end 0.723737 -1.355) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c7af4af1-a65f-4955-bf74-08383f6c74c7") + ) + (fp_line + (start -2.28 1.58) + (end -2.28 -1.58) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ca538c39-64d7-4a96-ab3c-1ad46fb4ec50") + ) + (fp_line + (start 2.28 1.58) + (end -2.28 1.58) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "af7bec08-b07b-4bdd-b207-c16e0fb25af1") + ) + (fp_line + (start -2.28 -1.58) + (end 2.28 -1.58) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e9a7c60a-bd2f-407d-91c8-23914a9dc1e1") + ) + (fp_line + (start 2.28 -1.58) + (end 2.28 1.58) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "bb5bffef-ce92-4d1d-ba95-66e5114ce6dd") + ) + (fp_line + (start -1.6 1.245) + (end -1.6 -1.245) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d0d65852-74e1-44b2-9051-907301b9bc8a") + ) + (fp_line + (start 1.6 1.245) + (end -1.6 1.245) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "dc31926d-5443-4dd2-9fee-03100bad58db") + ) + (fp_line + (start -1.6 -1.245) + (end 1.6 -1.245) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6bf211bf-7bd7-45c9-8fbc-e76d4a70b545") + ) + (fp_line + (start 1.6 -1.245) + (end 1.6 1.245) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "cb6d452c-8b4c-4a02-8e00-387853576e67") + ) + (fp_text user "${REFERENCE}" + (at 0 0 -90) + (layer "F.Fab") + (uuid "16727da0-7df1-4527-8a84-cc1a51a7fad6") + (effects + (font + (size 0.7 0.7) + (thickness 0.105) + ) + ) + ) + (pad "1" smd roundrect + (at -1.4625 0 270) + (size 1.125 2.65) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.222222) + (net 74 "Net-(J7-In)") + (pintype "passive") + (uuid "324356e6-d62f-4aec-a90a-a816d8f24cc0") + ) + (pad "2" smd roundrect + (at 1.4625 0 270) + (size 1.125 2.65) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.222222) + (net 90 "Net-(U4C--)") + (pintype "passive") + (uuid "32a826aa-a05e-43ed-873f-c6930ee5dadf") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1210_3225Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Inductor_SMD:L_Coilcraft_MSS1278T-XXX" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70c15f") + (at 79.8 102.8) + (descr "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") + (tags "Inductor mss") + (property "Reference" "L2" + (at 0 -7 0) + (layer "F.SilkS") + (uuid "84a4dbb7-886e-4a26-a8e5-c4be197e6ccf") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "4.7u" + (at 0 7 0) + (layer "F.Fab") + (uuid "0e5e936c-6243-4d0e-a64e-415a0de32c86") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Inductor_SMD:L_Coilcraft_MSS1278T-XXX" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3654e345-0f14-454a-b0aa-2acc5bf0640a") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "408add67-0866-464d-a5ba-7591b40f0342") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "32695987-20bb-484d-ad7e-eacd1172ab9e") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Coilcraft" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "65936d1e-67f3-46ab-b12e-91f576ea739f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "MSS1278T-472MLD" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "2060bbfc-33b3-48f3-834c-5ff610801979") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Choke_* *Coil* Inductor_* L_*") + (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005b0affc6") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.kicad_sch") + (attr smd) + (fp_line + (start -6.26 -6.26) + (end -6.26 -3.01) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a3873768-30ad-4f24-bcd2-4d09820165ca") + ) + (fp_line + (start -6.26 -6.26) + (end -4.61 -6.26) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5dad8fbd-b7a3-4854-a853-df534eab11d1") + ) + (fp_line + (start -6.26 6.26) + (end -6.26 3.01) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7becaabe-991e-4e93-8fad-ebb2a36933f9") + ) + (fp_line + (start -6.26 6.26) + (end 6.26 6.26) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9ea7a125-20e6-4055-aa29-4e6466bdab0c") + ) + (fp_line + (start -3.89 -6.26) + (end 6.26 -6.26) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "86eeeaa8-a1c5-4afc-88d3-3743989ab970") + ) + (fp_line + (start 6.26 -6.26) + (end 6.26 -3.01) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "39b74897-47ed-4b09-a462-e7f5693866ed") + ) + (fp_line + (start 6.26 6.26) + (end 6.26 3.01) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "01a6be44-a60b-451d-ae19-d34cb14855c1") + ) + (fp_poly + (pts + (xy -4.25 -6.26) (xy -4.49 -6.59) (xy -4.01 -6.59) (xy -4.25 -6.26) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "6334a455-e4d2-4879-8c8b-b9cb010d7f75") + ) + (fp_line + (start -6.5 -6.25) + (end -6.5 6.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "399a47f7-89e7-4915-9283-fb1d71f3c6ea") + ) + (fp_line + (start -6.5 6.25) + (end 6.5 6.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d4306102-3c6c-4cbf-adeb-801aac566bf6") + ) + (fp_line + (start 6.5 -6.25) + (end -6.5 -6.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8e62be48-43a4-416d-bcc2-c062533731b4") + ) + (fp_line + (start 6.5 6.25) + (end 6.5 -6.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "01045df4-7ef2-4d72-beb1-bc0f36dfa93a") + ) + (fp_line + (start -6 -5) + (end -5 -6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "fe28f4e8-177e-41a2-9815-1d29e346ab2f") + ) + (fp_line + (start -6 6) + (end -6 -5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "21ba777e-959a-4f89-81ad-57fdda426583") + ) + (fp_line + (start -5 -6) + (end 6 -6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9300eacd-0f49-472d-bd98-4e0c09eebbcb") + ) + (fp_line + (start -4.25 4.8) + (end -4.25 -4.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d7e898f9-d14a-46e2-b12e-1ba231cd6f2f") + ) + (fp_line + (start 6 -6) + (end 6 6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "be406c01-92f2-4f8a-9f64-026d4b3adba4") + ) + (fp_line + (start 6 6) + (end -6 6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "55a02243-4bbe-48e4-b76d-88069f9e19e6") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "1b65a3db-10d2-4186-8ca4-aa953ea13f7d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -4.25 0) + (size 4 5.5) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 51 "Net-(C2-Pad1)") + (pintype "passive") + (uuid "d12c9caf-e27f-4767-b4a5-86e025aec2aa") + ) + (pad "2" smd roundrect + (at 4.25 0) + (size 4 5.5) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 5 "Net-(U6-EN{slash}UV)") + (pintype "passive") + (uuid "4802b54d-77b0-4c13-bac6-42950afa3ba1") + ) + (model "${KICAD8_3DMODEL_DIR}/Inductor_SMD.3dshapes/L_Coilcraft_MSS1278T-XXX.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0603_1608Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70c19b") + (at 89.1 99.6) + (descr "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") + (tags "capacitor") + (property "Reference" "C6" + (at 0 -1.43 0) + (layer "F.SilkS") + (uuid "be02c184-252f-48aa-8c06-6cf849e64134") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10n" + (at 0 1.43 0) + (layer "F.Fab") + (uuid "f8d1dabc-c31d-4eff-80c3-f7474fc67d27") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9ed6056d-49ed-45a5-80e5-62807a30b503") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "64a6ad3a-2489-4e3f-bfc4-fe8578e52533") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b278de7d-2c8f-4c5e-9791-6b60c29b2f54") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Murata Electronics" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "e464d7f0-f13b-4586-b734-cb94a61c87e2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "GRM1885C1H103JA01D" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "a62b10c2-cace-4aa2-a8b8-695cf52a2f47") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/00000000-0000-0000-0000-00005b053798/1f70e0f0-ae09-4a93-bc0d-3593e5e22b62") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.kicad_sch") + (attr smd) + (fp_line + (start -0.14058 -0.51) + (end 0.14058 -0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2443b2a4-d987-4245-8c67-fe0944a7d54d") + ) + (fp_line + (start -0.14058 0.51) + (end 0.14058 0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f2439f28-726d-433b-a4bd-17b0fe800574") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "084223c2-7df2-4e0b-868c-d2b8008b8c4e") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "38dde407-6de2-48c2-a13b-ede110151cd5") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "57c5ef8b-86cf-4ec2-bfff-aeaee152dce9") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "fb42202c-75d1-44f0-a991-6a4cfb846aff") + ) + (fp_line + (start -0.8 -0.4) + (end 0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "963e2802-a8b8-4e25-b543-e8f6bdf67562") + ) + (fp_line + (start -0.8 0.4) + (end -0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1fb1b015-8b66-4fee-9a1b-f8140c0b7c59") + ) + (fp_line + (start 0.8 -0.4) + (end 0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ecad16a5-7adf-4f97-acab-9371aa16d5ea") + ) + (fp_line + (start 0.8 0.4) + (end -0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a699c776-e855-475d-8d71-d146d3b88e17") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "00f2afee-8502-4894-8818-014f0bfe8f2c") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.775 0) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "5c59ed56-67b1-4472-a8ad-4f021c549be4") + ) + (pad "2" smd roundrect + (at 0.775 0) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 6 "Net-(U6-TR{slash}SS)") + (pintype "passive") + (uuid "a7171b20-c385-4244-b39f-77d38bbabe11") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Connector_Coaxial:SMA_Amphenol_132134_Vertical" + (locked yes) + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70c1e6") + (at 153.1 56.9) + (descr "https://www.amphenolrf.com/downloads/dl/file/id/2187/product/2843/132134_customer_drawing.pdf") + (tags "SMA THT Female Jack Vertical ExtendedLegs") + (property "Reference" "J16" + (at 0 -5 0) + (layer "F.SilkS") + (hide yes) + (uuid "c0dbab38-cb37-43c3-97ad-a51cfc7edbdd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Error_Mon" + (at 0 5 0) + (layer "F.SilkS") + (uuid "1d461abf-68ad-4428-bc7c-004a1bdec3b3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Connector_Coaxial:SMA_Amphenol_132134_Vertical" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "00c4b18e-6019-46e6-883a-c443badcd85c") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "600e6192-c3dc-4384-840a-99156096753c") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9705e2dc-6d6d-4efd-b65a-bffe951d5613") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Config" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "cbac43e6-b4f0-4191-9822-cfd471acda0e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "MFN" "Amphenol" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "4672cbfb-7672-47f4-ae79-7de9258e1cf5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "901-144-8RFX" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "c8e07a8a-2978-46a9-b785-0b35ed834241") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "*BNC* *SMA* *SMB* *SMC* *Cinch* *LEMO* *UMRF* *MCX* *U.FL*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b0591ff") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr through_hole) + (fp_line + (start -3.68 -1.8) + (end -3.68 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cf0afc39-05a7-438b-ad4a-17815b7e3b89") + ) + (fp_line + (start -1.8 -3.68) + (end 1.8 -3.68) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f073bfe2-4013-403e-a947-636c5125c214") + ) + (fp_line + (start -1.8 3.68) + (end 1.8 3.68) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ded6ffe8-0384-469a-b6b5-8615e5356ede") + ) + (fp_line + (start 3.68 -1.8) + (end 3.68 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9170cbae-65d9-4b0e-a119-7b2d0dde4de3") + ) + (fp_line + (start -4.17 -4.17) + (end -4.17 4.17) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9257882d-61bf-440a-8dde-6ff449c5232b") + ) + (fp_line + (start -4.17 -4.17) + (end 4.17 -4.17) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9c6e8878-5443-43d3-beea-2588c6a5701d") + ) + (fp_line + (start 4.17 4.17) + (end -4.17 4.17) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d9b1d503-d877-43ac-871a-9013393a02a6") + ) + (fp_line + (start 4.17 4.17) + (end 4.17 -4.17) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2095af67-0583-4633-812e-73cfdeb873dc") + ) + (fp_line + (start -3.5 -3.5) + (end -3.5 3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e2ad1b0e-d02e-4034-b8ac-cc0b009ea6e4") + ) + (fp_line + (start -3.5 -3.5) + (end 3.5 -3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b73b0d78-8f68-4010-b5ca-91888cf2bdc6") + ) + (fp_line + (start -3.5 3.5) + (end 3.5 3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "128a2aab-c027-426a-968b-fe2895baef23") + ) + (fp_line + (start 3.5 -3.5) + (end 3.5 3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "797b8903-4095-43ee-b24c-7b7ef183b525") + ) + (fp_circle + (center 0 0) + (end 3.175 0) + (stroke + (width 0.1) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "3a46271b-e602-4ec2-976a-55ad34157ee8") + ) + (fp_text user "${REFERENCE}" + (at 0 -5 0) + (layer "F.Fab") + (uuid "bded3691-64cf-41d7-bc7a-418889765b59") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0) + (size 2.05 2.05) + (drill 1.5) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 79 "Net-(J16-In)") + (pinfunction "In") + (pintype "passive") + (uuid "ba755e3e-5bd7-4c94-98b5-77c28b177ae4") + ) + (pad "2" thru_hole circle + (at -2.54 -2.54) + (size 2.25 2.25) + (drill 1.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Ext") + (pintype "passive") + (uuid "35d98327-89d3-473f-8b89-7e449b04a5cd") + ) + (pad "2" thru_hole circle + (at -2.54 2.54) + (size 2.25 2.25) + (drill 1.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Ext") + (pintype "passive") + (uuid "7d3c79b1-52f8-4345-a9bf-24f4d546f388") + ) + (pad "2" thru_hole circle + (at 2.54 -2.54) + (size 2.25 2.25) + (drill 1.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Ext") + (pintype "passive") + (uuid "0d316e8f-3a26-40cb-97de-fc06a7bb5510") + ) + (pad "2" thru_hole circle + (at 2.54 2.54) + (size 2.25 2.25) + (drill 1.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Ext") + (pintype "passive") + (uuid "94148bb4-959c-4b2c-99db-62981a1246fe") + ) + (model "${KICAD8_3DMODEL_DIR}/Connector_Coaxial.3dshapes/SMA_Amphenol_132134_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Connector_DIN:DIN41612_C_2x32_Male_Horizontal_THT" + (locked yes) + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70c30a") + (at 55.36 124.37 90) + (descr "DIN41612 connector, type C, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf") + (tags "DIN 41612 IEC 60603 C") + (property "Reference" "J1" + (at -8.93 -2.76 180) + (layer "F.SilkS") + (uuid "7fa564fc-0f86-4878-b892-d4945b7fe64d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "C64AC" + (at 39.37 7.62 90) + (layer "F.Fab") + (uuid "3dd89e93-2fc1-4025-bcaa-b87a1ffc3c2f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Connector_DIN:DIN41612_C_2x32_Male_Horizontal_THT" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "922e7c45-d8b1-4901-919c-5965e09c22e6") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "91ddfdb9-8c85-42fe-b36b-06cf5c6aea04") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2ce264ae-cdf1-436a-a9aa-2811ce7ccc21") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Config" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "9d8e9d75-9c15-4d31-b226-babc85e96ee4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "MFN" "Harting" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "7442a851-0739-46ab-819b-611e5ae9205d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "09031646921" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "70575efa-76d3-4e01-85de-3d20ec4c712c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "DIN41612*2x*") + (path "/00000000-0000-0000-0000-00005b08a8e7") + (sheetname "Root") + (sheetfile "RedPitaya_Lockbox.kicad_sch") + (attr through_hole) + (fp_line + (start 86.63 -4.74) + (end 86.63 0.26) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3437b59d-c488-4342-96d0-c2c664c6d77f") + ) + (fp_line + (start -7.89 -4.74) + (end -7.89 0.26) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c88f749c-8aaf-43da-9ae9-f161c2b20707") + ) + (fp_line + (start 79.61 -0.74) + (end 81.11 -0.74) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a9067b06-2304-487c-aeec-9237fb11d402") + ) + (fp_line + (start 77.07 -0.74) + (end 77.871 -0.74) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d1c969ca-2854-434d-b875-cf5c5c7b0494") + ) + (fp_line + (start 74.53 -0.74) + (end 75.331 -0.74) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "281dcfe5-e96f-429a-895a-217918d040d5") + ) + (fp_line + (start 71.99 -0.74) + (end 72.791 -0.74) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9acc3998-aaa2-4635-bb3b-911af08ea3c9") + ) + (fp_line + (start 69.45 -0.74) + (end 70.251 -0.74) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "713a6213-d083-4a70-aae0-46ba7a81e3be") + ) + (fp_line + (start 66.91 -0.74) + (end 67.711 -0.74) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "469e1fbd-3a21-4482-9328-5856c0ea805f") + ) + (fp_line + (start 64.37 -0.74) + (end 65.171 -0.74) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f284de57-deb0-4a47-a62d-e5be3c40f9f8") + ) + (fp_line + (start 61.83 -0.74) + (end 62.631 -0.74) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a2b8830b-03a1-4149-b523-341be88eb5cd") + ) + (fp_line + (start 59.29 -0.74) + (end 60.091 -0.74) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "90f25619-e76a-42f4-9e74-047c69e1b3fa") + ) + (fp_line + (start 56.75 -0.74) + (end 57.551 -0.74) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f67de276-8e41-4c62-ae14-9f70d54a6956") + ) + (fp_line + (start 54.21 -0.74) + (end 55.011 -0.74) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "bcbb8ecd-4da9-4b67-8590-690303f480da") + ) + (fp_line + (start 51.67 -0.74) + (end 52.471 -0.74) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6d4f8dcf-9277-4114-88d1-fb476e1dcd05") + ) + (fp_line + (start 49.13 -0.74) + (end 49.931 -0.74) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ecdb2e5d-516a-40a5-b758-ed5bdfbe1d13") + ) + (fp_line + (start 46.59 -0.74) + (end 47.391 -0.74) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "38602b8e-9513-4650-a195-d9d7d4dec1a0") + ) + (fp_line + (start 44.05 -0.74) + (end 44.851 -0.74) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a42b1d11-d217-4c6d-a471-e42b83149485") + ) + (fp_line + (start 41.51 -0.74) + (end 42.311 -0.74) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b57e67d9-0bce-450e-acf1-f76384ef7985") + ) + (fp_line + (start 38.97 -0.74) + (end 39.771 -0.74) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6dd25c40-aadc-4176-9f95-3e811fef4044") + ) + (fp_line + (start 36.43 -0.74) + (end 37.231 -0.74) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "371e534e-ba05-49da-9e9f-2bb70e259eed") + ) + (fp_line + (start 33.89 -0.74) + (end 34.691 -0.74) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f9b6ba58-edd7-43bf-aa8b-f630552fc49c") + ) + (fp_line + (start 31.35 -0.74) + (end 32.151 -0.74) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "90eecf21-136a-4901-800d-0a99d3c9c319") + ) + (fp_line + (start 28.81 -0.74) + (end 29.611 -0.74) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "144f875e-d527-4931-b4a4-04a627f7db3c") + ) + (fp_line + (start 26.27 -0.74) + (end 27.071 -0.74) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7d300b19-257b-416d-b980-385f23e38462") + ) + (fp_line + (start 23.73 -0.74) + (end 24.531 -0.74) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "725af3e9-e41c-4ac6-8f7c-2c2d043df2e5") + ) + (fp_line + (start 21.19 -0.74) + (end 21.991 -0.74) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1600e9e7-2710-4129-bdb0-add49c792d88") + ) + (fp_line + (start 18.65 -0.74) + (end 19.451 -0.74) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "87eab5ea-c727-426f-8030-402947607a8f") + ) + (fp_line + (start 16.11 -0.74) + (end 16.911 -0.74) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1e22f3ea-345e-488d-8001-2a2c55f5a41a") + ) + (fp_line + (start 13.57 -0.74) + (end 14.371 -0.74) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c8aedeaa-5c77-4210-9863-ccdd68ca1c5d") + ) + (fp_line + (start 11.03 -0.74) + (end 11.831 -0.74) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0c91c3c5-bf9b-47c2-b6aa-e0b039e45d5e") + ) + (fp_line + (start 8.49 -0.74) + (end 9.291 -0.74) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "dc4fa7e4-f246-4b55-b18b-c4e4be38dab1") + ) + (fp_line + (start 5.95 -0.74) + (end 6.751 -0.74) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f86f8fd5-daf4-4179-8641-6d16e8ab238b") + ) + (fp_line + (start 3.41 -0.74) + (end 4.211 -0.74) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "af150f13-0f6e-49c0-8956-e4eb4902775f") + ) + (fp_line + (start 1.095 -0.74) + (end 1.671 -0.74) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "21ec07cd-cffe-43e9-b177-c694136ebda2") + ) + (fp_line + (start -2.371 -0.74) + (end -1.095 -0.74) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ce2ab24a-81b0-49da-ae6a-72afcdf7c5fa") + ) + (fp_line + (start -1.695 -0.3) + (end -1.695 0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "757df37a-274b-44b0-b8fa-a75e49afd770") + ) + (fp_line + (start -1.095 0) + (end -1.695 -0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4c4c8748-da83-4219-ba91-112d406811ba") + ) + (fp_line + (start 86.63 0.26) + (end 81.11 0.26) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "86cd3511-d883-431b-abbb-036f6466d9e5") + ) + (fp_line + (start 81.11 0.26) + (end 81.11 -0.74) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6cb559a7-e4b6-45ba-b3f3-209381c3289c") + ) + (fp_line + (start -2.37 0.26) + (end -2.37 -0.74) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "599f2a3d-2035-462d-a394-d8012687f315") + ) + (fp_line + (start -7.89 0.26) + (end -2.37 0.26) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4a8bd85d-0f9e-488e-9be9-6649939c82b1") + ) + (fp_line + (start -1.695 0.3) + (end -1.095 0) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d7a49d78-ea9d-4a9b-a72f-7bbeab16ec44") + ) + (fp_line + (start -7.63 -5.3) + (end 86.37 -5.3) + (stroke + (width 0.08) + (type solid) + ) + (layer "Dwgs.User") + (uuid "7a97b02a-7be4-4c2a-8719-70028d8a01c4") + ) + (fp_line + (start 39.17 -5.9) + (end 39.37 -5.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "Cmts.User") + (uuid "f87cf7ab-cb02-4596-a696-3d35ecb55b77") + ) + (fp_line + (start 39.37 -5.4) + (end 39.37 -6.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "Cmts.User") + (uuid "31dbc30a-0c52-4840-8fb2-3f5d13b42cea") + ) + (fp_line + (start 39.37 -5.4) + (end 39.57 -5.9) + (stroke + (width 0.1) + (type solid) + ) + (layer "Cmts.User") + (uuid "659a46b8-b3ae-488c-b408-a9dc25bb320f") + ) + (fp_line + (start 86.87 -13.23) + (end -8.13 -13.23) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a138cfda-c0cc-4325-b2a5-d160b20b2b4c") + ) + (fp_line + (start -8.13 -13.23) + (end -8.13 0.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3c0e1cc5-53eb-476b-9429-c1390c4b5a1e") + ) + (fp_line + (start 86.87 0.5) + (end 86.87 -13.23) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d629f02d-ad60-407b-81d8-31fd5b7e5880") + ) + (fp_line + (start 80.02 0.5) + (end 86.87 0.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "26033207-6f69-4bc7-b49f-61451240d009") + ) + (fp_line + (start -1.27 0.5) + (end -1.27 6.36) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "06b29348-635d-4ae8-be03-1e393fef2ca0") + ) + (fp_line + (start -8.13 0.5) + (end -1.27 0.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "be0e927d-a478-4308-8f52-a2679a6ee928") + ) + (fp_line + (start 80.02 6.36) + (end 80.02 0.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "be235de5-387e-4dad-a6fb-fd15f90f04a5") + ) + (fp_line + (start -1.27 6.36) + (end 80.02 6.36) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f8a9fe1b-dd8b-46cf-81cb-d89b5f02504e") + ) + (fp_line + (start 83.12 -12.74) + (end -4.38 -12.74) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "470c4c02-5e8f-4aa2-af88-50455a37a5fa") + ) + (fp_line + (start -4.38 -12.74) + (end -4.38 -6.74) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0b55c372-2e6a-47e6-858b-0433618969c6") + ) + (fp_line + (start 86.37 -6.74) + (end 83.12 -6.74) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7e467861-95e5-48f2-aee8-8e9ca5d181d7") + ) + (fp_line + (start 83.12 -6.74) + (end 83.12 -12.74) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6631e3f1-905e-4302-a98a-c63dd6fc772c") + ) + (fp_line + (start -4.38 -6.74) + (end -7.63 -6.74) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2b7b5458-3a4a-43c1-bb1d-a0d64a0566a6") + ) + (fp_line + (start -7.63 -6.74) + (end -7.63 0) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1bdd87a0-3049-47c4-89f0-99e5bdb0d00b") + ) + (fp_line + (start 0.5 -1.9) + (end 0 -1.2) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "fdecf329-fb6a-4f43-b0ab-aeb59d908796") + ) + (fp_line + (start -0.5 -1.9) + (end 0.5 -1.9) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "319feaa3-7d83-4c63-891b-b432c484132f") + ) + (fp_line + (start 0 -1.2) + (end -0.5 -1.9) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "99294e8a-0fe2-4b55-a399-8910233552e4") + ) + (fp_line + (start 81.37 -1) + (end 81.37 0) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3db6ff78-fb7a-4cfe-a98b-ddeea7e9823b") + ) + (fp_line + (start -2.63 -1) + (end 81.37 -1) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "bd9a316f-9799-4716-ae7e-9ab456add5c0") + ) + (fp_line + (start 86.37 0) + (end 86.37 -6.74) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "04d70c55-7313-4726-acf8-df65430300ba") + ) + (fp_line + (start 81.37 0) + (end 86.37 0) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8a61a090-6d1a-4470-97bf-19774e3ae66c") + ) + (fp_line + (start -2.63 0) + (end -2.63 -1) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "fd65046d-412f-484c-aeb3-163e208144ff") + ) + (fp_line + (start -7.63 0) + (end -2.63 0) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7c321c00-4c50-404c-9c0d-edc31d674c47") + ) + (fp_text user "Board edge" + (at 39.37 -7.3 90) + (layer "Cmts.User") + (uuid "cac4d777-7c26-42bb-9c50-6c9b171f5c16") + (effects + (font + (size 0.7 0.7) + (thickness 0.1) + ) + ) + ) + (fp_text user "${REFERENCE}" + (at 39.37 -2.54 90) + (layer "F.Fab") + (uuid "3b8a8e8e-9a94-4193-9597-151abd6e71ac") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "" np_thru_hole circle + (at -5.08 -2.54 90) + (size 2.85 2.85) + (drill 2.85) + (layers "*.Cu" "*.Mask") + (uuid "b7246335-2b7c-4163-ad07-378c007c6e40") + ) + (pad "" np_thru_hole circle + (at 83.82 -2.54 90) + (size 2.85 2.85) + (drill 2.85) + (layers "*.Cu" "*.Mask") + (uuid "f8e1059c-83d2-4f21-815a-8ab3f0615bca") + ) + (pad "a1" thru_hole roundrect + (at 0 0 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (roundrect_rratio 0.16129) + (net 125 "Net-(J1-Pin_a1)") + (pinfunction "Pin_a1") + (pintype "passive") + (uuid "5b05882c-1217-4b72-a684-1763365011a9") + ) + (pad "a2" thru_hole circle + (at 2.54 0 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 126 "Net-(J1-Pin_a2)") + (pinfunction "Pin_a2") + (pintype "passive") + (uuid "d8fe7367-391e-4858-a3bd-95eaca29d191") + ) + (pad "a3" thru_hole circle + (at 5.08 0 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 16 "unconnected-(J1-Pin_a3-Pada3)") + (pinfunction "Pin_a3") + (pintype "passive+no_connect") + (uuid "7b5da716-b243-407b-8358-e98cd2f02f0d") + ) + (pad "a4" thru_hole circle + (at 7.62 0 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 17 "unconnected-(J1-Pin_a4-Pada4)") + (pinfunction "Pin_a4") + (pintype "passive+no_connect") + (uuid "8341fb64-8b78-4b8e-8cb6-368fec528925") + ) + (pad "a5" thru_hole circle + (at 10.16 0 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 20 "unconnected-(J1-Pin_a5-Pada5)") + (pinfunction "Pin_a5") + (pintype "passive+no_connect") + (uuid "ccb69a20-19f7-453c-9b86-2bc3e61f395c") + ) + (pad "a6" thru_hole circle + (at 12.7 0 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 22 "unconnected-(J1-Pin_a6-Pada6)") + (pinfunction "Pin_a6") + (pintype "passive+no_connect") + (uuid "707aa9c5-381f-4120-b6a2-16ed71b9ad97") + ) + (pad "a7" thru_hole circle + (at 15.24 0 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 23 "unconnected-(J1-Pin_a7-Pada7)") + (pinfunction "Pin_a7") + (pintype "passive+no_connect") + (uuid "774244e5-bff1-486b-80e1-cbeb0cdb139e") + ) + (pad "a8" thru_hole circle + (at 17.78 0 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 25 "unconnected-(J1-Pin_a8-Pada8)") + (pinfunction "Pin_a8") + (pintype "passive+no_connect") + (uuid "f87d680d-9099-420f-9b68-5585eabe504d") + ) + (pad "a9" thru_hole circle + (at 20.32 0 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 26 "unconnected-(J1-Pin_a9-Pada9)") + (pinfunction "Pin_a9") + (pintype "passive+no_connect") + (uuid "402d99bd-09f9-479e-889c-376687e2ef30") + ) + (pad "a10" thru_hole circle + (at 22.86 0 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 27 "unconnected-(J1-Pin_a10-Pada10)") + (pinfunction "Pin_a10") + (pintype "passive+no_connect") + (uuid "9ca5afe4-652f-4380-b28f-eab0d3babf6e") + ) + (pad "a11" thru_hole circle + (at 25.4 0 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 28 "unconnected-(J1-Pin_a11-Pada11)") + (pinfunction "Pin_a11") + (pintype "passive+no_connect") + (uuid "6f5aaabe-4da7-4948-9320-dbece313aab6") + ) + (pad "a12" thru_hole circle + (at 27.94 0 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 29 "unconnected-(J1-Pin_a12-Pada12)") + (pinfunction "Pin_a12") + (pintype "passive+no_connect") + (uuid "d9a6eef1-45a9-485b-bd12-10d62dbb6899") + ) + (pad "a13" thru_hole circle + (at 30.48 0 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 30 "unconnected-(J1-Pin_a13-Pada13)") + (pinfunction "Pin_a13") + (pintype "passive+no_connect") + (uuid "f84f4bb9-773e-41d6-9dfb-a5f0c371e963") + ) + (pad "a14" thru_hole circle + (at 33.02 0 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 31 "unconnected-(J1-Pin_a14-Pada14)") + (pinfunction "Pin_a14") + (pintype "passive+no_connect") + (uuid "3caff1b0-d75d-4fc6-9362-9e1deb0f1701") + ) + (pad "a15" thru_hole circle + (at 35.56 0 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 127 "Net-(J1-Pin_a15)") + (pinfunction "Pin_a15") + (pintype "passive") + (uuid "ee454d60-b896-4a6e-b7ef-b96b1ae5236f") + ) + (pad "a16" thru_hole circle + (at 38.1 0 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 128 "Net-(J1-Pin_a16)") + (pinfunction "Pin_a16") + (pintype "passive") + (uuid "e8d2a859-0890-410d-b7f0-5b9327d985a2") + ) + (pad "a17" thru_hole circle + (at 40.64 0 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 129 "Net-(J1-Pin_a17)") + (pinfunction "Pin_a17") + (pintype "passive") + (uuid "55e29228-e5b0-489b-984a-9fbef0b49c32") + ) + (pad "a18" thru_hole circle + (at 43.18 0 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 130 "Net-(J1-Pin_a18)") + (pinfunction "Pin_a18") + (pintype "passive") + (uuid "6bb16889-efca-47ff-bac1-c33e371c5524") + ) + (pad "a19" thru_hole circle + (at 45.72 0 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 32 "unconnected-(J1-Pin_a19-Pada19)") + (pinfunction "Pin_a19") + (pintype "passive+no_connect") + (uuid "775a3fb5-ddac-42d6-b132-b4c9c67c2d28") + ) + (pad "a20" thru_hole circle + (at 48.26 0 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 33 "unconnected-(J1-Pin_a20-Pada20)") + (pinfunction "Pin_a20") + (pintype "passive+no_connect") + (uuid "fcb2f5fb-2e18-4747-a0f1-529bf523d9d5") + ) + (pad "a21" thru_hole circle + (at 50.8 0 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 34 "unconnected-(J1-Pin_a21-Pada21)") + (pinfunction "Pin_a21") + (pintype "passive+no_connect") + (uuid "32c17827-1344-4a89-b371-99d404ab648c") + ) + (pad "a22" thru_hole circle + (at 53.34 0 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 35 "unconnected-(J1-Pin_a22-Pada22)") + (pinfunction "Pin_a22") + (pintype "passive+no_connect") + (uuid "bc49e29c-3158-415d-9780-97843a271324") + ) + (pad "a23" thru_hole circle + (at 55.88 0 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 36 "unconnected-(J1-Pin_a23-Pada23)") + (pinfunction "Pin_a23") + (pintype "passive+no_connect") + (uuid "e64f4197-2780-4daa-8870-32cd3c51ad5f") + ) + (pad "a24" thru_hole circle + (at 58.42 0 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 37 "unconnected-(J1-Pin_a24-Pada24)") + (pinfunction "Pin_a24") + (pintype "passive+no_connect") + (uuid "1baa36a1-1505-406f-bb4f-5488bdcf3464") + ) + (pad "a25" thru_hole circle + (at 60.96 0 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 38 "unconnected-(J1-Pin_a25-Pada25)") + (pinfunction "Pin_a25") + (pintype "passive+no_connect") + (uuid "9be6f71c-33b6-4d2f-8aa1-1ca09a5a6b70") + ) + (pad "a26" thru_hole circle + (at 63.5 0 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 39 "unconnected-(J1-Pin_a26-Pada26)") + (pinfunction "Pin_a26") + (pintype "passive+no_connect") + (uuid "6755f40d-c0bf-4809-9f5f-8328f8572724") + ) + (pad "a27" thru_hole circle + (at 66.04 0 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 40 "unconnected-(J1-Pin_a27-Pada27)") + (pinfunction "Pin_a27") + (pintype "passive+no_connect") + (uuid "80e4b46a-9478-4655-bac0-2b9cdbb402da") + ) + (pad "a28" thru_hole circle + (at 68.58 0 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 41 "unconnected-(J1-Pin_a28-Pada28)") + (pinfunction "Pin_a28") + (pintype "passive+no_connect") + (uuid "d154073b-6e25-4764-b871-b490a097ca8e") + ) + (pad "a29" thru_hole circle + (at 71.12 0 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 42 "unconnected-(J1-Pin_a29-Pada29)") + (pinfunction "Pin_a29") + (pintype "passive+no_connect") + (uuid "a3a647d5-6ce1-4aee-8a64-337a89e40479") + ) + (pad "a30" thru_hole circle + (at 73.66 0 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 3 "/Supply_Ref/-15V") + (pinfunction "Pin_a30") + (pintype "passive") + (uuid "8c0fb1a9-f12f-4242-b132-fc5b8217fa2f") + ) + (pad "a31" thru_hole circle + (at 76.2 0 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 131 "Net-(J1-Pin_a31)") + (pinfunction "Pin_a31") + (pintype "passive") + (uuid "c6ab7fd8-d019-4912-bd45-844bb7c5a546") + ) + (pad "a32" thru_hole circle + (at 78.74 0 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 132 "Net-(J1-Pin_a32)") + (pinfunction "Pin_a32") + (pintype "passive") + (uuid "b9a769c6-a7f9-4660-bca8-65e8e85b8fac") + ) + (pad "c1" thru_hole circle + (at 0 5.08 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 125 "Net-(J1-Pin_a1)") + (pinfunction "Pin_c1") + (pintype "passive") + (uuid "b63cbdae-9e72-4273-a518-a24ae610b810") + ) + (pad "c2" thru_hole circle + (at 2.54 5.08 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 133 "Net-(J1-Pin_c2)") + (pinfunction "Pin_c2") + (pintype "passive") + (uuid "4b6dba1b-7a34-420c-bbcb-484c1093f534") + ) + (pad "c3" thru_hole circle + (at 5.08 5.08 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 45 "unconnected-(J1-Pin_c3-Padc3)") + (pinfunction "Pin_c3") + (pintype "passive+no_connect") + (uuid "c1a7ee48-af19-4d31-9a38-98353e8de41e") + ) + (pad "c4" thru_hole circle + (at 7.62 5.08 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 46 "unconnected-(J1-Pin_c4-Padc4)") + (pinfunction "Pin_c4") + (pintype "passive+no_connect") + (uuid "720e6013-96e4-409c-9ccb-d04534d9e449") + ) + (pad "c5" thru_hole circle + (at 10.16 5.08 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 47 "unconnected-(J1-Pin_c5-Padc5)") + (pinfunction "Pin_c5") + (pintype "passive+no_connect") + (uuid "b3f2f08c-9c3a-4c07-a25b-afa9728bc6c6") + ) + (pad "c6" thru_hole circle + (at 12.7 5.08 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 48 "unconnected-(J1-Pin_c6-Padc6)") + (pinfunction "Pin_c6") + (pintype "passive+no_connect") + (uuid "5152569a-838d-4898-a32c-22e4f1fd67b8") + ) + (pad "c7" thru_hole circle + (at 15.24 5.08 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 49 "unconnected-(J1-Pin_c7-Padc7)") + (pinfunction "Pin_c7") + (pintype "passive+no_connect") + (uuid "01af2192-bba9-47af-94b7-9359fba1c1ee") + ) + (pad "c8" thru_hole circle + (at 17.78 5.08 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 50 "unconnected-(J1-Pin_c8-Padc8)") + (pinfunction "Pin_c8") + (pintype "passive+no_connect") + (uuid "0a40f7a8-7a56-4e63-93e1-58681762825b") + ) + (pad "c9" thru_hole circle + (at 20.32 5.08 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 52 "unconnected-(J1-Pin_c9-Padc9)") + (pinfunction "Pin_c9") + (pintype "passive+no_connect") + (uuid "1eee8e3a-c149-4399-b403-fe8bbaf7aed1") + ) + (pad "c10" thru_hole circle + (at 22.86 5.08 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 53 "unconnected-(J1-Pin_c10-Padc10)") + (pinfunction "Pin_c10") + (pintype "passive+no_connect") + (uuid "a335fe5b-ff45-4e4d-8f06-c728d3f73004") + ) + (pad "c11" thru_hole circle + (at 25.4 5.08 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 54 "unconnected-(J1-Pin_c11-Padc11)") + (pinfunction "Pin_c11") + (pintype "passive+no_connect") + (uuid "4bab7781-b3dd-4f13-93ad-98ae912fe72f") + ) + (pad "c12" thru_hole circle + (at 27.94 5.08 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 55 "unconnected-(J1-Pin_c12-Padc12)") + (pinfunction "Pin_c12") + (pintype "passive+no_connect") + (uuid "7ceec0c1-a588-4a13-90dc-d948261eff3d") + ) + (pad "c13" thru_hole circle + (at 30.48 5.08 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 56 "unconnected-(J1-Pin_c13-Padc13)") + (pinfunction "Pin_c13") + (pintype "passive+no_connect") + (uuid "52ceafe5-8e07-486a-9d1e-dff04aec9001") + ) + (pad "c14" thru_hole circle + (at 33.02 5.08 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 58 "unconnected-(J1-Pin_c14-Padc14)") + (pinfunction "Pin_c14") + (pintype "passive+no_connect") + (uuid "cd261d86-d68b-47b8-8f00-401b9faec29e") + ) + (pad "c15" thru_hole circle + (at 35.56 5.08 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 134 "Net-(J1-Pin_c15)") + (pinfunction "Pin_c15") + (pintype "passive") + (uuid "ad71e111-ce9b-442e-81fa-b65bccae2e9c") + ) + (pad "c16" thru_hole circle + (at 38.1 5.08 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 135 "Net-(J1-Pin_c16)") + (pinfunction "Pin_c16") + (pintype "passive") + (uuid "b4b2ac8f-d27f-48cb-bad9-ec90e0a3b6ed") + ) + (pad "c17" thru_hole circle + (at 40.64 5.08 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 136 "Net-(J1-Pin_c17)") + (pinfunction "Pin_c17") + (pintype "passive") + (uuid "66e4d6ce-1180-4732-b3fe-c16879534bfe") + ) + (pad "c18" thru_hole circle + (at 43.18 5.08 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 137 "Net-(J1-Pin_c18)") + (pinfunction "Pin_c18") + (pintype "passive") + (uuid "38f32e1a-8c68-4f61-9895-6b30ee7e5f96") + ) + (pad "c19" thru_hole circle + (at 45.72 5.08 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 59 "unconnected-(J1-Pin_c19-Padc19)") + (pinfunction "Pin_c19") + (pintype "passive+no_connect") + (uuid "2ddceba0-fafa-416e-b543-74f6c213ca48") + ) + (pad "c20" thru_hole circle + (at 48.26 5.08 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 60 "unconnected-(J1-Pin_c20-Padc20)") + (pinfunction "Pin_c20") + (pintype "passive+no_connect") + (uuid "c40fddf6-52fe-480e-a1c5-0500fa9c980f") + ) + (pad "c21" thru_hole circle + (at 50.8 5.08 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 61 "unconnected-(J1-Pin_c21-Padc21)") + (pinfunction "Pin_c21") + (pintype "passive+no_connect") + (uuid "8d0e1308-8dda-4b58-8ac9-7c4f6ad2bf75") + ) + (pad "c22" thru_hole circle + (at 53.34 5.08 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 62 "unconnected-(J1-Pin_c22-Padc22)") + (pinfunction "Pin_c22") + (pintype "passive+no_connect") + (uuid "0fac4a93-968a-4501-b61b-0158990adec9") + ) + (pad "c23" thru_hole circle + (at 55.88 5.08 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 63 "unconnected-(J1-Pin_c23-Padc23)") + (pinfunction "Pin_c23") + (pintype "passive+no_connect") + (uuid "598591e1-6146-4c8c-b90f-05b71f2da1aa") + ) + (pad "c24" thru_hole circle + (at 58.42 5.08 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 64 "unconnected-(J1-Pin_c24-Padc24)") + (pinfunction "Pin_c24") + (pintype "passive+no_connect") + (uuid "a40a22b2-1177-41ed-8cd2-74d7b1139d14") + ) + (pad "c25" thru_hole circle + (at 60.96 5.08 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 65 "unconnected-(J1-Pin_c25-Padc25)") + (pinfunction "Pin_c25") + (pintype "passive+no_connect") + (uuid "c016268c-98f2-4dda-bc6f-aa5252e36d0c") + ) + (pad "c26" thru_hole circle + (at 63.5 5.08 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 66 "unconnected-(J1-Pin_c26-Padc26)") + (pinfunction "Pin_c26") + (pintype "passive+no_connect") + (uuid "64734434-4edf-4938-9b9b-7ca24ccd43e9") + ) + (pad "c27" thru_hole circle + (at 66.04 5.08 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 68 "unconnected-(J1-Pin_c27-Padc27)") + (pinfunction "Pin_c27") + (pintype "passive+no_connect") + (uuid "bcf1ab00-e619-4de9-9fc7-3a30fb7945cd") + ) + (pad "c28" thru_hole circle + (at 68.58 5.08 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 69 "unconnected-(J1-Pin_c28-Padc28)") + (pinfunction "Pin_c28") + (pintype "passive+no_connect") + (uuid "29b21267-3610-4469-bc91-b343f8934d2f") + ) + (pad "c29" thru_hole circle + (at 71.12 5.08 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 70 "unconnected-(J1-Pin_c29-Padc29)") + (pinfunction "Pin_c29") + (pintype "passive+no_connect") + (uuid "6664e9f7-aa95-44f1-9a37-6564c4d3c6a7") + ) + (pad "c30" thru_hole circle + (at 73.66 5.08 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 3 "/Supply_Ref/-15V") + (pinfunction "Pin_c30") + (pintype "passive") + (uuid "f3a0204b-ec7e-4629-9152-947c3c6c2b93") + ) + (pad "c31" thru_hole circle + (at 76.2 5.08 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 131 "Net-(J1-Pin_a31)") + (pinfunction "Pin_c31") + (pintype "passive") + (uuid "b3fa7b2c-7f68-48ea-84e4-d96a00767559") + ) + (pad "c32" thru_hole circle + (at 78.74 5.08 90) + (size 1.55 1.55) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 132 "Net-(J1-Pin_a32)") + (pinfunction "Pin_c32") + (pintype "passive") + (uuid "19b6d9d6-8e7b-400b-8c0c-67780269ccf4") + ) + (model "${KICAD8_3DMODEL_DIR}/Connector_DIN.3dshapes/DIN41612_C_2x32_Male_Horizontal_THT.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Package_SO:MSOP-12-1EP_3x4mm_P0.65mm_EP1.65x2.85mm" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70c3d8") + (at 70.8975 48.31125) + (descr "MSOP, 12 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3652fe.pdf#page=24), generated with kicad-footprint-generator ipc_gullwing_generator.py") + (tags "MSOP SO") + (property "Reference" "U2" + (at 0 -3.05 0) + (layer "F.SilkS") + (uuid "d021a7cb-a632-4b16-bf82-2f7ac1d4b2cd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "LT3094EMSE" + (at 0 3.05 0) + (layer "F.Fab") + (uuid "dc1dacdf-5960-418a-93e5-8ab1fcc0b332") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Package_SO:MSOP-12-1EP_3x4mm_P0.65mm_EP1.65x2.85mm" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3915d12b-9513-4f84-9455-c50ee62299f4") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "https://www.analog.com/media/en/technical-documentation/data-sheets/LT3094.pdf" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f653c7ff-9d52-4609-80c8-aa6896dff806") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "30b244a6-611e-4ca2-876f-b9a89b1acd8b") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Analog Devices" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "c6c071b6-b661-42ae-9d18-08b1e6bf0e71") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "LT3094EMSE#PBF" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "f1fa6203-b692-4e3e-8732-12941cc9c367") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "MSOP*1EP*3x4mm*P0.65mm*") + (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005cd42b69") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.kicad_sch") + (attr smd) + (fp_line + (start 0 -2.11) + (end -1.5 -2.11) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ce481de0-f652-4899-8dae-60290c72f4b9") + ) + (fp_line + (start 0 -2.11) + (end 1.5 -2.11) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9f316d1c-30b4-4b0f-b2f6-5581ac5ccb12") + ) + (fp_line + (start 0 2.11) + (end -1.5 2.11) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b2d42f70-9fb9-4bf1-acc6-2eb5a338f523") + ) + (fp_line + (start 0 2.11) + (end 1.5 2.11) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "29817ec8-ff76-4991-95ac-49b55f7272ec") + ) + (fp_poly + (pts + (xy -2.1875 -2.085) (xy -2.4275 -2.415) (xy -1.9475 -2.415) (xy -2.1875 -2.085) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "dd43b3df-e8db-41a9-8d7f-c694b2e134c4") + ) + (fp_line + (start -3.12 -2.25) + (end -3.12 2.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f60a8e64-4e9b-48ab-b5eb-d1cc7a232e09") + ) + (fp_line + (start -3.12 2.25) + (end 3.12 2.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "5219fe36-3c32-4dfa-976a-b32346a32bdf") + ) + (fp_line + (start 3.12 -2.25) + (end -3.12 -2.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f0cac7c5-06f1-4fa9-87f7-a891adfa611b") + ) + (fp_line + (start 3.12 2.25) + (end 3.12 -2.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f63f1abd-1614-4e06-a0b0-47828a2fd02a") + ) + (fp_line + (start -1.5 -1.25) + (end -0.75 -2) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9750746c-5eae-411a-9c33-9837b589e881") + ) + (fp_line + (start -1.5 2) + (end -1.5 -1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d8c658ac-6748-4418-b9c8-726f406a9c8f") + ) + (fp_line + (start -0.75 -2) + (end 1.5 -2) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "09937c7d-cab1-4889-a342-97526f7b0816") + ) + (fp_line + (start 1.5 -2) + (end 1.5 2) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "71bc0b27-8e8b-4a98-bea8-117465f9184a") + ) + (fp_line + (start 1.5 2) + (end -1.5 2) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "69482d14-3207-43cb-8fed-f84fc1f94d6c") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "5bb88ab3-af7e-4c14-9245-5058afb44379") + (effects + (font + (size 0.6 0.6) + (thickness 0.15) + ) + ) + ) + (pad "" smd roundrect + (at -0.41 -0.71) + (size 0.67 1.15) + (layers "F.Paste") + (roundrect_rratio 0.25) + (uuid "fd609506-c2a0-44b7-9d37-41e793bd0009") + ) + (pad "" smd roundrect + (at -0.41 0.71) + (size 0.67 1.15) + (layers "F.Paste") + (roundrect_rratio 0.25) + (uuid "61e5f9b4-cc25-448b-b583-d10ed6141985") + ) + (pad "" smd roundrect + (at 0.41 -0.71) + (size 0.67 1.15) + (layers "F.Paste") + (roundrect_rratio 0.25) + (uuid "7e6c1dfe-4a28-4a25-9bf9-6bdb2dcb9dde") + ) + (pad "" smd roundrect + (at 0.41 0.71) + (size 0.67 1.15) + (layers "F.Paste") + (roundrect_rratio 0.25) + (uuid "ab9c4530-4f26-458e-af32-f67ee597f2c3") + ) + (pad "1" smd roundrect + (at -2.15 -1.625) + (size 1.45 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 3 "/Supply_Ref/-15V") + (pinfunction "IN") + (pintype "power_in") + (uuid "dc8b759a-7e02-4ffa-9e9c-d1d9a1acec38") + ) + (pad "2" smd roundrect + (at -2.15 -0.975) + (size 1.45 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 3 "/Supply_Ref/-15V") + (pinfunction "IN") + (pintype "passive") + (uuid "83db4ddf-1058-4cb6-ae0b-b4a9dbbb7d32") + ) + (pad "3" smd roundrect + (at -2.15 -0.325) + (size 1.45 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 3 "/Supply_Ref/-15V") + (pinfunction "EN/UV") + (pintype "input") + (uuid "24f95146-260f-4b93-ac0e-3f120e0b4844") + ) + (pad "4" smd roundrect + (at -2.15 0.325) + (size 1.45 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 115 "unconnected-(U2-PG-Pad4)") + (pinfunction "PG") + (pintype "open_collector+no_connect") + (uuid "9131bc90-42df-43e7-ac30-a3b1ca4cb9d3") + ) + (pad "5" smd roundrect + (at -2.15 0.975) + (size 1.45 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 3 "/Supply_Ref/-15V") + (pinfunction "PGFB") + (pintype "input") + (uuid "b275631f-97c3-4b27-85f8-69dbb3bc0dc2") + ) + (pad "6" smd roundrect + (at -2.15 1.625) + (size 1.45 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pinfunction "ILIM") + (pintype "passive") + (uuid "ab2c14c7-295d-4fa7-921f-74af1dfa925b") + ) + (pad "7" smd roundrect + (at 2.15 1.625) + (size 1.45 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 116 "unconnected-(U2-VIOC-Pad7)") + (pinfunction "VIOC") + (pintype "passive+no_connect") + (uuid "b66f4794-b60c-4312-ba87-56386e9c3ff1") + ) + (pad "8" smd roundrect + (at 2.15 0.975) + (size 1.45 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 9 "Net-(U2-SET)") + (pinfunction "SET") + (pintype "passive") + (uuid "43c57b47-0f01-48d0-8d0d-647d8aa63762") + ) + (pad "9" smd roundrect + (at 2.15 0.325) + (size 1.45 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pinfunction "GND") + (pintype "power_in") + (uuid "6db1120d-5d8f-4945-a409-c0b97e4d0740") + ) + (pad "10" smd roundrect + (at 2.15 -0.325) + (size 1.45 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 19 "/Input_Output_Module/-12V") + (pinfunction "OUTS") + (pintype "input") + (uuid "bb995440-f150-4d94-935f-f45c6b7a80ed") + ) + (pad "11" smd roundrect + (at 2.15 -0.975) + (size 1.45 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 19 "/Input_Output_Module/-12V") + (pinfunction "OUT") + (pintype "power_out") + (uuid "27339640-d44c-4a09-a97f-ce2e46e78368") + ) + (pad "12" smd roundrect + (at 2.15 -1.625) + (size 1.45 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 19 "/Input_Output_Module/-12V") + (pinfunction "OUT") + (pintype "passive") + (uuid "adedd1f5-7e72-4840-b39a-4c2e0f098ffc") + ) + (pad "13" smd rect + (at 0 0) + (size 1.65 2.85) + (property pad_prop_heatsink) + (layers "F.Cu" "F.Mask") + (net 3 "/Supply_Ref/-15V") + (pinfunction "IN") + (pintype "passive") + (zone_connect 2) + (uuid "6fa736b7-542f-4efc-91af-b18848103319") + ) + (model "${KICAD8_3DMODEL_DIR}/Package_SO.3dshapes/MSOP-12-1EP_3x4mm_P0.65mm_EP1.65x2.85mm.wrl" + (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" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70c435") + (at 69.4 61.2 90) + (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" "U3" + (at 0 -3.5 90) + (layer "F.SilkS") + (uuid "9bba0c33-c489-4d03-b6c0-ae93cd0cb5a3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "LT1236-10" + (at 0 3.5 90) + (layer "F.Fab") + (uuid "a2558fbb-3397-47c2-983c-938ab2a6e3b0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "808a11a5-85a0-42c3-a4b4-6a64f6dd1c33") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "31a50b56-e0bb-4d32-836e-ae480c003b2c") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "64486f39-2189-4a96-87fc-835527e37ce9") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Alternative" "LT1236CIS8-10#PBF" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "e3fb8594-9019-456b-8ee5-f2891e0f44cb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "MFN" "Analog Devices" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "9ad6a0e6-6eb2-4b81-b961-7e82c62abe15") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "LT1236ACS8-10#PBF" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "9230cf8d-9c08-4b9b-9fdb-aa8806d0e292") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005cd3a02b") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.kicad_sch") + (attr smd) + (fp_line + (start 0 -2.56) + (end 1.95 -2.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e03752c6-e25c-4497-bd9a-3de62ef5ed82") + ) + (fp_line + (start 0 -2.56) + (end -1.95 -2.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b1e0fcf3-776a-46ba-bb12-6917dda10242") + ) + (fp_line + (start 0 2.56) + (end 1.95 2.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5f3e183f-6faf-4ced-99dd-bc12d0e37fa6") + ) + (fp_line + (start 0 2.56) + (end -1.95 2.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5e12da57-219f-43f0-8dec-a2860cc1d12f") + ) + (fp_poly + (pts + (xy -2.7 -2.465) (xy -2.94 -2.795) (xy -2.46 -2.795) (xy -2.7 -2.465) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "25d10106-46d8-40ed-bfe2-5bbc18c495d3") + ) + (fp_line + (start 3.7 -2.7) + (end -3.7 -2.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2fed68ca-37e9-4484-8be2-bf8385b4786b") + ) + (fp_line + (start -3.7 -2.7) + (end -3.7 2.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d4b7fdf7-c5a8-49d7-af53-e4cd59d71c4b") + ) + (fp_line + (start 3.7 2.7) + (end 3.7 -2.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "71b9098e-7a9a-43bd-ad96-833d12b6e9e7") + ) + (fp_line + (start -3.7 2.7) + (end 3.7 2.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "db231c5e-1cac-4fa9-bb75-46166f87ab1f") + ) + (fp_line + (start 1.95 -2.45) + (end 1.95 2.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "bffa7e57-8775-4f5a-bdae-98898632793d") + ) + (fp_line + (start -0.975 -2.45) + (end 1.95 -2.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5b08ded1-076c-4f77-a0eb-c7721c634754") + ) + (fp_line + (start -1.95 -1.475) + (end -0.975 -2.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2ff9d041-02ae-44b8-b347-c827d821930e") + ) + (fp_line + (start 1.95 2.45) + (end -1.95 2.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6bdce8ab-aed9-4997-aec5-2cc77f7fa340") + ) + (fp_line + (start -1.95 2.45) + (end -1.95 -1.475) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "04a14572-180b-4b09-b9b0-140388c2bf22") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "e27952d2-ca0a-497f-aa80-451ae51c8a0b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -2.475 -1.905 90) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 117 "unconnected-(U3-NC-Pad1)") + (pinfunction "NC") + (pintype "no_connect") + (uuid "e1c59dfd-3a97-4902-bc33-ed2da416b8f5") + ) + (pad "2" smd roundrect + (at -2.475 -0.635 90) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 4 "/Input_Output_Module/+12V") + (pinfunction "Vin") + (pintype "power_in") + (uuid "a7b17def-2f8e-4bd7-85f9-9f08b2246e01") + ) + (pad "3" smd roundrect + (at -2.475 0.635 90) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 119 "unconnected-(U3-NC-Pad3)") + (pinfunction "NC") + (pintype "no_connect") + (uuid "c30c662a-a228-4703-bda2-0110a98c2f86") + ) + (pad "4" smd roundrect + (at -2.475 1.905 90) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pinfunction "GND") + (pintype "power_in") + (uuid "81157c03-a6aa-4ce5-bb55-0254a500dc6f") + ) + (pad "5" smd roundrect + (at 2.475 1.905 90) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 120 "unconnected-(U3-Trim-Pad5)") + (pinfunction "Trim") + (pintype "input+no_connect") + (uuid "a8edbc4f-a669-4a4a-a75f-567ea8d8c539") + ) + (pad "6" smd roundrect + (at 2.475 0.635 90) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 118 "/Input_Output_Module/+10V_ref") + (pinfunction "Vout") + (pintype "power_out") + (uuid "df7bad01-b1b4-4c4f-9a19-34c4d2db4e9b") + ) + (pad "7" smd roundrect + (at 2.475 -0.635 90) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 121 "unconnected-(U3-NC-Pad7)") + (pinfunction "NC") + (pintype "no_connect") + (uuid "916803e1-bd43-4296-b2bf-d4e4f66e8ef2") + ) + (pad "8" smd roundrect + (at 2.475 -1.905 90) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 122 "unconnected-(U3-NC-Pad8)") + (pinfunction "NC") + (pintype "no_connect") + (uuid "31eede9f-d6ce-4fe6-8a56-e53a65681941") + ) + (model "${KICAD8_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-8_3.9x4.9mm_P1.27mm.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_1210_3225Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70c477") + (at 145.6 55.4 90) + (descr "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") + (tags "resistor") + (property "Reference" "R29" + (at 0 2.5 -90) + (layer "F.SilkS") + (uuid "75ef5463-690e-434e-a9b9-38976333ded6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "49.9" + (at 0 2.4 -90) + (layer "F.Fab") + (uuid "79d89169-a713-44bd-8f4c-db38622e6eb0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_1210_3225Metric" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d9aa76d5-e346-4f27-ba7f-c8cae6f4ce58") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c820cf10-9bf3-4f70-95be-50e58992fc4e") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0c0ada94-2adb-4b72-bd7e-4ce09ad4de23") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Yageo" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "1d89a1df-08e2-4ba0-be3b-8f2746e91db7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "RC1210FR-0749R9L" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "7eb3dedd-e011-4188-bac7-465ea0a37105") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b059205") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start -0.723737 -1.355) + (end 0.723737 -1.355) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "02f0bd16-231a-483e-8b86-f62774335c71") + ) + (fp_line + (start -0.723737 1.355) + (end 0.723737 1.355) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e8afbb54-e234-4166-8a0b-83d129fe10be") + ) + (fp_line + (start 2.28 -1.58) + (end 2.28 1.58) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "76d97df4-7389-4b50-8858-127b34a4b02e") + ) + (fp_line + (start -2.28 -1.58) + (end 2.28 -1.58) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "5181737f-ead4-40b7-b206-a4a3737afc92") + ) + (fp_line + (start 2.28 1.58) + (end -2.28 1.58) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c1023fd3-7ff1-4513-a6ea-e4ab19383577") + ) + (fp_line + (start -2.28 1.58) + (end -2.28 -1.58) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "098f911b-5e53-41ce-a0f9-7ae019f407e3") + ) + (fp_line + (start 1.6 -1.245) + (end 1.6 1.245) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8054b8ad-5ad3-4606-b4a4-52aa71c65b07") + ) + (fp_line + (start -1.6 -1.245) + (end 1.6 -1.245) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f4f5289a-2985-4bc4-812b-e3ef0bf7c998") + ) + (fp_line + (start 1.6 1.245) + (end -1.6 1.245) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4c3e26f6-1aed-4005-86a1-6d5a2ae3f11c") + ) + (fp_line + (start -1.6 1.245) + (end -1.6 -1.245) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "27214931-4314-4a1c-9127-76c42e2fb59d") + ) + (fp_text user "${REFERENCE}" + (at 0 0 -90) + (layer "F.Fab") + (uuid "eabee83c-e8be-41e9-91b3-3e8b3e140b75") + (effects + (font + (size 0.7 0.7) + (thickness 0.105) + ) + ) + ) + (pad "1" smd roundrect + (at -1.4625 0 90) + (size 1.125 2.65) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.222222) + (net 79 "Net-(J16-In)") + (pintype "passive") + (uuid "37ed0bc6-ab34-403a-8899-91b7712edba2") + ) + (pad "2" smd roundrect + (at 1.4625 0 90) + (size 1.125 2.65) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.222222) + (net 92 "Net-(U8A--)") + (pintype "passive") + (uuid "f1b88217-5993-4129-aec8-6ff4e16529fb") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1210_3225Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70c4a7") + (at 124.35 57.15 -90) + (descr "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") + (tags "resistor") + (property "Reference" "R23" + (at 3 0 90) + (layer "F.SilkS") + (uuid "87834a47-abf2-4760-a66b-b8e8a8f75469") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "0" + (at 0 1.5 90) + (layer "F.Fab") + (uuid "61d41ace-0590-40b8-901b-b44876707fe1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "70877d1f-7221-4bd9-8e14-b30019faa08b") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "127aeab3-2657-4d1d-8363-0a8af3a9e9d4") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bd2fa14f-aab0-4551-8343-5b2da5357084") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Vishay" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "4cf4e605-4ce4-4e8e-ad1f-60ed7b277fa6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "CRCW06030000Z0EB" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "9cba8599-6da6-49a3-88a8-866e8905e719") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b0591b4") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f4127811-09af-45a9-acfd-a83a5aff1304") + ) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "096dd94e-7a78-4da0-962f-69b5d1812249") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "46066f29-1a43-42fd-b437-57260e530420") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "df7c47b0-872b-43df-99b6-388c9a2c1441") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a38c7cb4-c011-4816-a3fa-5adc77791f05") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4c513185-4821-47f1-a19a-93dc986d5ce2") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "46165d46-dc73-46a0-9d83-d629b0542ed8") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4c029772-c872-4be4-83c7-7bdc8ef8dc7f") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8c740097-5275-45d2-8dc9-ddc83ee4b198") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "398b9495-67b3-467f-894f-afa31259a2e2") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "d6b2f493-68c9-4f54-a0c4-98d9a615d4f5") + (effects + (font + (size 0.4 0.4) + (thickness 0.075) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0 270) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 91 "Net-(U8B-+)") + (pintype "passive") + (uuid "b9bb13e7-4153-4148-b624-2b52df64e392") + ) + (pad "2" smd roundrect + (at 0.825 0 270) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 76 "Net-(J12-In)") + (pintype "passive") + (uuid "b5c18fc1-cae3-47b5-a129-a1ff49cf315d") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70c53a") + (at 102.2 62.7 90) + (descr "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") + (tags "resistor") + (property "Reference" "R8" + (at 0 1.5 90) + (layer "F.SilkS") + (uuid "c7eddee3-a895-47f2-b264-10efbc431588") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "2k" + (at 0 1.5 90) + (layer "F.Fab") + (uuid "c80d2dbf-0dc4-4bec-abc4-1fe835e14221") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "af3ad6d5-6fed-4ee4-91f2-04d7d7ce3f5d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d1c9f92d-6bcc-46b2-8023-a8245e828dae") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "45e0c4c5-acd7-4210-b8bf-ea7d491ccffe") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Susumu" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "28d01944-cd2b-45e3-9eed-b00893678740") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "RR0816P-202-D" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "07aaabe4-6d3b-42aa-b36f-2ea5ba01fef0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005e14075d") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "167f36eb-de23-4046-a766-7507d218ad87") + ) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "508947d1-618e-401f-acb6-c49e5b2d6f53") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "363aa1b5-4eca-4187-9122-e721f757f235") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3205f4cb-0f3a-4259-a05d-54df77866bda") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e8c8011e-c3c8-4893-9791-5b7b7507c778") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "28b97ce8-78c3-4198-be22-315c9aae2992") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "eade6cd7-0b1f-4aea-8c64-b250ce0cbb5f") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "68e7e3bf-4e35-4ff6-92b2-826fdba57afc") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "57394306-015e-457a-86e8-1026ac1df400") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "087cfc4e-0e16-4028-b1de-b1f9c3835c58") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "f9f8ac2e-ec64-4739-8151-5efd79aef9fb") + (effects + (font + (size 0.4 0.4) + (thickness 0.075) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0 90) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "fdca0e8d-a9bb-4342-9fe1-689719884b5a") + ) + (pad "2" smd roundrect + (at 0.825 0 90) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 83 "Net-(U4B-+)") + (pintype "passive") + (uuid "4e7558ba-5277-4994-8977-ce5c3f9e5d7a") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_1210_3225Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70c5ee") + (at 65.35 49.35 90) + (descr "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") + (tags "capacitor") + (property "Reference" "C4" + (at -2.25 2.65 180) + (layer "F.SilkS") + (uuid "b26a0354-8fd2-4523-b2a0-4ae42dcac28e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10u" + (at -1.22 2.34 90) + (layer "F.Fab") + (uuid "0138b70d-4654-412c-b884-f1b9a0640792") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "678a1fdd-5c62-4b58-94ce-cecee2c1c2f1") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5440bac0-e8b0-46f2-bcdd-b4f9c78f8d6d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "29edc798-0f40-4c4a-9918-0978f5652cb0") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Taiyo Yuden" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "15dcff71-e20e-4abf-8943-f931432950ba") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "GMK325BJ106MN-T" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "7e5c2d1a-a96a-4363-9165-1663b06578fe") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005b054b90") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.kicad_sch") + (attr smd) + (fp_line + (start -0.711252 -1.36) + (end 0.711252 -1.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7950cc48-c108-4a7e-8d1f-747fe5067a01") + ) + (fp_line + (start -0.711252 1.36) + (end 0.711252 1.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "407fe120-47c1-4eb1-aaef-5573d8b08529") + ) + (fp_line + (start 2.3 -1.6) + (end 2.3 1.6) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "de6f103e-eefa-47a8-b129-6e45fefacc01") + ) + (fp_line + (start -2.3 -1.6) + (end 2.3 -1.6) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d09446b4-dba7-48d2-8660-409760368735") + ) + (fp_line + (start 2.3 1.6) + (end -2.3 1.6) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a7601a93-c444-45d4-88ae-b50c8f19ab7b") + ) + (fp_line + (start -2.3 1.6) + (end -2.3 -1.6) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "49c92fc8-b66a-416d-94bc-6887251faaba") + ) + (fp_line + (start 1.6 -1.25) + (end 1.6 1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "20616131-e17d-491b-b6bc-bb9b37625315") + ) + (fp_line + (start -1.6 -1.25) + (end 1.6 -1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8dfabf64-3018-4b31-84a4-d13b2c1a2cdc") + ) + (fp_line + (start 1.6 1.25) + (end -1.6 1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "fbd40395-6828-48ec-b463-bc2c55f270c0") + ) + (fp_line + (start -1.6 1.25) + (end -1.6 -1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "86f97c19-0002-4186-8cbb-f218c495a37c") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "3242b57e-fef2-4a95-939b-b43e4b70dec9") + (effects + (font + (size 0.7 0.7) + (thickness 0.105) + ) + ) + ) + (pad "1" smd roundrect + (at -1.475 0 90) + (size 1.15 2.7) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.217391) + (net 2 "GND") + (pintype "passive") + (uuid "e04c28b7-be0e-43a9-9d2d-e00dbf8e4f59") + ) + (pad "2" smd roundrect + (at 1.475 0 90) + (size 1.15 2.7) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.217391) + (net 3 "/Supply_Ref/-15V") + (pintype "passive") + (uuid "06c3b235-f358-4d24-aa9a-3cecd7e834e9") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1210_3225Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_1210_3225Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70c61e") + (at 64.1 75.9 -90) + (descr "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") + (tags "capacitor") + (property "Reference" "C3" + (at 4 0.05 0) + (layer "F.SilkS") + (uuid "ccd3f054-6d79-4673-b980-55dc7b33be92") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10u" + (at 0 2.4 -90) + (layer "F.Fab") + (uuid "a0c3955c-af63-4a1c-be1c-7fd9f78749be") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f13dde08-cbd3-4a07-b48a-e2e8a3586b66") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "364cd7c6-3be4-4bbd-aafa-5e2737330885") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "aaea9d31-9829-45c8-b35e-1ff16273f979") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Taiyo Yuden" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "de09c424-b055-45a8-88c0-3716a1c1b040") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "GMK325BJ106MN-T" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "97433920-9838-48bc-a7d4-b38cad2d3c49") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005c1bb058") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.kicad_sch") + (attr smd) + (fp_line + (start -0.711252 1.36) + (end 0.711252 1.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d2992a9e-e2dc-479b-ac71-59cb13d11a1f") + ) + (fp_line + (start -0.711252 -1.36) + (end 0.711252 -1.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7c96983a-9055-4d8f-9068-7e402b840d2a") + ) + (fp_line + (start -2.3 1.6) + (end -2.3 -1.6) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "5faf9741-df98-4218-8b9e-20bcfc5865eb") + ) + (fp_line + (start 2.3 1.6) + (end -2.3 1.6) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "727e27ce-bdd4-4f3a-a48a-a60a84ed0ab7") + ) + (fp_line + (start -2.3 -1.6) + (end 2.3 -1.6) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "33d0d7f0-62b6-46e2-b03c-16269660542f") + ) + (fp_line + (start 2.3 -1.6) + (end 2.3 1.6) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "6833ebfd-e785-463a-9341-f6b9ac06baa5") + ) + (fp_line + (start -1.6 1.25) + (end -1.6 -1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0941e7b5-796c-44f7-aa25-2f27cf70216e") + ) + (fp_line + (start 1.6 1.25) + (end -1.6 1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b8ab0eca-799f-43b6-81b0-7f9d96966ed7") + ) + (fp_line + (start -1.6 -1.25) + (end 1.6 -1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b138979d-d086-4024-a0e0-9be1f8e0c82b") + ) + (fp_line + (start 1.6 -1.25) + (end 1.6 1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8a84c51a-8ba2-446b-a2c1-2df9c835752f") + ) + (fp_text user "${REFERENCE}" + (at 0 0 -90) + (layer "F.Fab") + (uuid "507738ee-1170-40c7-90e0-48c536c2c899") + (effects + (font + (size 0.7 0.7) + (thickness 0.105) + ) + ) + ) + (pad "1" smd roundrect + (at -1.475 0 270) + (size 1.15 2.7) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.217391) + (net 1 "/Supply_Ref/+15V") + (pintype "passive") + (uuid "ff06f87d-5d0b-46f0-bdd3-92e63918b5c6") + ) + (pad "2" smd roundrect + (at 1.475 0 270) + (size 1.15 2.7) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.217391) + (net 2 "GND") + (pintype "passive") + (uuid "47c7e6ff-a771-4c14-bb12-8561c827dd0e") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1210_3225Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_1210_3225Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70c64e") + (at 75.45 71.9 90) + (descr "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") + (tags "capacitor") + (property "Reference" "C12" + (at 0 2.65 90) + (layer "F.SilkS") + (uuid "29644676-e581-4774-bc04-9abf0e86f106") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10u" + (at 0 2.4 90) + (layer "F.Fab") + (uuid "578cc972-f3ac-420e-8473-418ef12ded4e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "deb78cc0-465c-45df-96c7-b641b4fda3ac") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e8d278b5-2073-42b9-9e45-0c008bfb5b31") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "45ed8d7b-2959-4065-b543-a9c134cdb579") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Taiyo Yuden" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "db8eb5e4-fc94-40a9-b6c7-734f4b492796") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "GMK325BJ106MN-T" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "48eb41dd-e954-48c4-8342-3b32a74c9852") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005c1bb114") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.kicad_sch") + (attr smd) + (fp_line + (start -0.711252 -1.36) + (end 0.711252 -1.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "fb80389d-f5e7-4e25-bb99-daa3e9e40e7d") + ) + (fp_line + (start -0.711252 1.36) + (end 0.711252 1.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cb4d073f-cf9c-4a67-9c71-a4e6f42d2948") + ) + (fp_line + (start 2.3 -1.6) + (end 2.3 1.6) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "39f7a674-4c6c-4e2c-9b9a-70d98c668d60") + ) + (fp_line + (start -2.3 -1.6) + (end 2.3 -1.6) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "24f7820a-0d5b-4c4c-a092-fba6dffbfbb9") + ) + (fp_line + (start 2.3 1.6) + (end -2.3 1.6) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "182b03b4-53a8-4095-be40-3ef6cd1cbb3b") + ) + (fp_line + (start -2.3 1.6) + (end -2.3 -1.6) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b9ac019b-e224-4bd8-902f-560411e883b3") + ) + (fp_line + (start 1.6 -1.25) + (end 1.6 1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4cd02aa9-d447-445f-990e-625eda60cb79") + ) + (fp_line + (start -1.6 -1.25) + (end 1.6 -1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e7dc9969-761c-4f88-aaa2-a6fd364d8028") + ) + (fp_line + (start 1.6 1.25) + (end -1.6 1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "fc949ed5-9cf9-4c13-a94d-8173a2c3798c") + ) + (fp_line + (start -1.6 1.25) + (end -1.6 -1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6e0c14ac-2f29-4729-8f27-acd52485006e") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "670cb9e3-b2da-45bf-81fe-d30616b40a48") + (effects + (font + (size 0.7 0.7) + (thickness 0.105) + ) + ) + ) + (pad "1" smd roundrect + (at -1.475 0 90) + (size 1.15 2.7) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.217391) + (net 4 "/Input_Output_Module/+12V") + (pintype "passive") + (uuid "6f79b178-ed9f-457c-a173-a616bd8ddc20") + ) + (pad "2" smd roundrect + (at 1.475 0 90) + (size 1.15 2.7) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.217391) + (net 2 "GND") + (pintype "passive") + (uuid "eadb3f80-2b6f-427a-bae6-f8b9a0ad9726") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1210_3225Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70c681") + (at 74.5 75.9) + (descr "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") + (tags "resistor") + (property "Reference" "R1" + (at 2.2 0.05 0) + (layer "F.SilkS") + (uuid "f05dc5f6-f146-4dba-ae42-fc9debfb9124") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "121k" + (at 0 1.5 0) + (layer "F.Fab") + (uuid "46807f4c-fef1-4f1e-b7ad-fefb5ad8b1c9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e92b43ea-fa0c-4571-b623-c9fca966617c") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bc669f65-663b-4ec4-8315-80af3a2d6d00") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0749bad6-a6bd-4256-932e-927b58c9f50d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Susumu" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "85cacf5b-3352-4582-ba3f-a01b983ccf41") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "RR0816P-1213-D-09D" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "eba33dcb-5e6d-433a-8eb5-66c59970b542") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005b054c38") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9ec9d3f4-081a-43c4-94fb-22b308cec389") + ) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "427890cf-0522-4767-8c11-789e5d4c6c6f") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2a4a0c4a-5a64-4283-b427-bd57695ba4d1") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1b07a798-1f58-4c6f-a4c7-a2e3d850db90") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b271e8f8-277f-4389-82c3-457422d6e083") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "6b25c5e8-e2f7-4958-821d-1867a6ab8632") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "210ba584-2697-407c-8c9b-a1021fbf5c49") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b238d036-dea0-4669-a469-d448de27f9e1") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9d7bc462-ba3e-42f8-9606-dec8a6c7dde7") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6e48f597-5576-4652-990f-c86a7e81dac9") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "75ccb127-4e24-4dfe-a3dc-cc98d647585f") + (effects + (font + (size 0.4 0.4) + (thickness 0.075) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 8 "Net-(U1-SET)") + (pintype "passive") + (uuid "ebfa493c-40a5-4afc-b055-6cd37cc66dbd") + ) + (pad "2" smd roundrect + (at 0.825 0) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "c35cf3ae-58f2-4fa9-95bd-fa9066cff1fd") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70c705") + (at 101.25 59.8 180) + (descr "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") + (tags "resistor") + (property "Reference" "R9" + (at 2.65 -0.1 180) + (layer "F.SilkS") + (uuid "86c89496-abec-48b2-8c29-4bd8a910df42") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1k" + (at 0 1.5 180) + (layer "F.Fab") + (uuid "beb7ca18-8768-451c-8c64-dd1893b25c82") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f3fab3a0-6054-4061-9439-0ee8670cf673") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "812aa5fb-24d9-4e03-a85d-810a08970eab") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7e81bd25-944f-4b8b-87f2-9928f0880f62") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Susumu" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "ee637dda-21f5-4119-a43d-d17925206104") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "RR0816P-102-D" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "b8cc5df2-8b97-416e-94f2-b2a8d69d6429") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b057a11") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9a614ebe-8a1b-4553-a80c-a92d311e1dbf") + ) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "51ee13be-f296-446f-b7b3-f7731285440d") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2a0fff9f-87f4-41de-84a1-7c211456ee06") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "6746ae09-02aa-41bf-aeb5-9697e67e53d1") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "bb955242-0e4f-4ac1-9f64-870edadf573a") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c594386e-b230-4f51-bc97-61ce78c5f91c") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8314eea4-7b79-458a-8b86-fd11e2fac7ff") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7b1cda63-7283-44ce-bbd2-fb672e29e683") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ec95a9ed-1014-4eb5-b773-2d965aaa7eba") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e4bbfdab-9670-453f-9c40-cb6141b5a1d1") + ) + (fp_text user "${REFERENCE}" + (at 0 0 180) + (layer "F.Fab") + (uuid "cd9658b6-5ca4-4d8c-be39-e405a3843b58") + (effects + (font + (size 0.4 0.4) + (thickness 0.075) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0 180) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 83 "Net-(U4B-+)") + (pintype "passive") + (uuid "8a69ceb9-3b04-4c7d-bcc3-3141b6489ae9") + ) + (pad "2" smd roundrect + (at 0.825 0 180) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 24 "Net-(R4-Pad1)") + (pintype "passive") + (uuid "8220a718-5ab5-49f3-8c06-3033f36bd6d2") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0603_1608Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70c738") + (at 100.9 45.9 -90) + (descr "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") + (tags "capacitor") + (property "Reference" "C15" + (at -3 0.05 -90) + (layer "F.SilkS") + (uuid "fd6b1679-8fa4-437b-962b-e0f94b752d00") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100n" + (at 0 1.5 -90) + (layer "F.Fab") + (uuid "bfe2ed4f-f078-4397-a6aa-2f131ddc7ed5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a8d3a19d-0865-4b0c-bce7-82cabbe94cd1") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "15450138-16f2-4fee-804a-a18e2fda5da1") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "02772b81-dcc2-4fa6-a54f-31a0264c9876") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Kemet" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "9d9cbce3-ec9a-49a8-bc11-c036ec153ce7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "C0603C104K5RECAUTO" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "0db140f3-34d3-4153-bf42-59c266357488") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b057a08") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start -0.14058 0.51) + (end 0.14058 0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "44a92605-c662-4f56-8873-8f3370ef03aa") + ) + (fp_line + (start -0.14058 -0.51) + (end 0.14058 -0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "db478a17-a6a3-4b14-83f6-060110901496") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7948763e-14a3-486b-b452-57983529620a") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d8975568-6190-44e3-91cc-e64014b5f166") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "95f571d2-afbc-461b-b506-a84fa4057515") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2c609684-51be-4d74-af82-36da99871f20") + ) + (fp_line + (start -0.8 0.4) + (end -0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "cab760f0-424c-4210-b840-6c4ab084f99b") + ) + (fp_line + (start 0.8 0.4) + (end -0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0d0bcd8d-85fc-46e7-95d8-2b5ee06e324a") + ) + (fp_line + (start -0.8 -0.4) + (end 0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f41ec505-b135-44c6-819a-05ba86a30018") + ) + (fp_line + (start 0.8 -0.4) + (end 0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4382dd3e-e4b4-4dd3-b4ff-404bbfa92b67") + ) + (fp_text user "${REFERENCE}" + (at 0 0 -90) + (layer "F.Fab") + (uuid "ce690281-ef26-4c09-a2e4-ce2902b10bdd") + (effects + (font + (size 0.3 0.3) + (thickness 0.075) + ) + ) + ) + (pad "1" smd roundrect + (at -0.775 0 270) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "12e61dbd-c4fd-456b-9ae4-d7ca7405f4c0") + ) + (pad "2" smd roundrect + (at 0.775 0 270) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 19 "/Input_Output_Module/-12V") + (pintype "passive") + (uuid "85df972c-a8c3-4728-b1ec-5884f5ce7699") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_Tantalum_SMD:CP_EIA-3528-21_Kemet-B" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70c76a") + (at 98.06 43.665 90) + (descr "Tantalum Capacitor SMD Kemet-B (3528-21 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator") + (tags "capacitor tantalum") + (property "Reference" "C17" + (at 3.665 0.04 180) + (layer "F.SilkS") + (uuid "5b9a550e-0a63-4a7b-991b-15dfde9c94f7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10u" + (at 0 3.15 90) + (layer "F.Fab") + (uuid "c27619a1-051e-4ab6-ab7e-9a04fab36aa7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3528-21_Kemet-B" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0aa631f1-4178-4a63-9747-96a6642f1d5c") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ed56757b-4ad7-45f7-8ccd-9f5bcba7f81e") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2f44e872-235f-4941-aacc-168216b70705") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "AVX" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "b56ae907-4ac3-4334-ba7d-4047c2e33443") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "TCJB106M025R0150" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "1ba59130-e81a-4e87-9bbc-40450377490a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "CP_*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005ccf9c5e") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start 1.75 -1.51) + (end -2.46 -1.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "28bd8d5f-3ddf-4e0f-a3de-da9cae2b6337") + ) + (fp_line + (start -2.46 -1.51) + (end -2.46 1.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "743bb293-36e8-474e-b907-d292b8994b54") + ) + (fp_line + (start -2.46 1.51) + (end 1.75 1.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "923d758a-2fc1-412a-94f1-0d4551867b11") + ) + (fp_line + (start 2.45 -1.65) + (end 2.45 1.65) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0eb977aa-1877-457d-a6f0-cd8665bac6cf") + ) + (fp_line + (start -2.45 -1.65) + (end 2.45 -1.65) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "bd812fa6-4c7a-4a32-91b9-b11ea9ddbca4") + ) + (fp_line + (start 2.45 1.65) + (end -2.45 1.65) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b79778fe-6dab-4e62-8a69-f5f76e3dd765") + ) + (fp_line + (start -2.45 1.65) + (end -2.45 -1.65) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a71a7ec1-3e23-436a-93c6-fef9ed0356bf") + ) + (fp_line + (start 1.75 -1.4) + (end -1.05 -1.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "404b688a-7e21-48b9-bbff-4f0b672b5bac") + ) + (fp_line + (start -1.05 -1.4) + (end -1.75 -0.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "422e2960-83af-478f-92b1-9b4fd7e4b5c9") + ) + (fp_line + (start -1.75 -0.7) + (end -1.75 1.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5f7a5df7-01e7-4554-afd4-1ae6d142ed02") + ) + (fp_line + (start 1.75 1.4) + (end 1.75 -1.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d0f05ccb-4283-4b9c-914c-82484e633348") + ) + (fp_line + (start -1.75 1.4) + (end 1.75 1.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "028a510f-dcd9-4501-83ef-fcf29c7ea695") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "9f421abe-00e9-4ed8-a721-35445273fe2d") + (effects + (font + (size 0.8 0.8) + (thickness 0.12) + ) + ) + ) + (pad "1" smd roundrect + (at -1.5375 0 90) + (size 1.325 2.35) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.188679) + (net 13 "Net-(U4D-+)") + (pintype "passive") + (uuid "e6a0e55c-d592-4eb5-9c56-e2fef72efdd0") + ) + (pad "2" smd roundrect + (at 1.5375 0 90) + (size 1.325 2.35) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.188679) + (net 2 "GND") + (pintype "passive") + (uuid "69ca55f6-17d2-4cdf-b4b3-0aa143b288a0") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-3528-21_Kemet-B.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Package_SO:MSOP-16-1EP_3x4.039mm_P0.5mm_EP1.651x2.845mm" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70c7b4") + (at 95 102.3) + (descr "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") + (tags "MSOP SO") + (property "Reference" "U6" + (at 0 -3.35 0) + (layer "F.SilkS") + (uuid "ae871a21-76c0-4b32-ada4-f5d9f86d5712") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "LT8610" + (at 0 3.5 0) + (layer "F.Fab") + (uuid "c344160a-bbf0-42ea-a7cb-2b2142edc975") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Package_SO:MSOP-16-1EP_3x4.039mm_P0.5mm_EP1.651x2.845mm" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b4eee617-fa04-42ec-8c02-eb9928e1e04e") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "https://www.analog.com/media/en/technical-documentation/data-sheets/lt8610.pdf" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "db81841b-7046-445f-9aad-1654c1a67ee3") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "42V, 2.5A Synchronous Step-Down Regulator with 2.5uA Quiescent Current, MSOP-16" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c6ac759e-7584-4a90-beb0-eb85459bd4d9") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "2a2cf4ce-212d-47cc-82e9-3865c11f7459") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "abc290ed-3cdf-41aa-a394-d47fbcdb3fcc") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "MSOP*16*1EP*3x4.039mm*P0.5mm*") + (path "/00000000-0000-0000-0000-00005b053798/d41d33f0-e1ab-4717-aff0-da5188d9c96a") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.kicad_sch") + (attr smd) + (fp_line + (start 0 -2.16) + (end -1.5 -2.16) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7857cc58-046e-405e-b958-880a1ca662a1") + ) + (fp_line + (start 0 -2.16) + (end 1.5 -2.16) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "eab421ed-f50c-41a7-9874-b85735a1cdf3") + ) + (fp_line + (start 0 2.16) + (end -1.5 2.16) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b0830645-f724-4aea-92ba-c4c4e838dd6e") + ) + (fp_line + (start 0 2.16) + (end 1.5 2.16) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "bb139307-1cfc-48a5-a04e-563923140e8d") + ) + (fp_poly + (pts + (xy -3.135 -1.75) (xy -3.465 -1.99) (xy -3.465 -1.51) (xy -3.135 -1.75) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "64c8d771-15f8-4404-973f-5cfc09639c20") + ) + (fp_line + (start -3.12 -2.27) + (end -3.12 2.27) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8fab957e-529f-4715-8353-00deedafd7d0") + ) + (fp_line + (start -3.12 2.27) + (end 3.12 2.27) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9b710d38-7d54-4054-9f07-9bffa6fb86a1") + ) + (fp_line + (start 3.12 -2.27) + (end -3.12 -2.27) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7ff6f7bb-d60f-41bc-8e52-74479b48f01d") + ) + (fp_line + (start 3.12 2.27) + (end 3.12 -2.27) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "41243cd0-868d-4b38-ac51-c071a1b3dd14") + ) + (fp_line + (start -1.5 -1.2695) + (end -0.75 -2.0195) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c88a2655-e176-46be-879d-c36b6e6e5451") + ) + (fp_line + (start -1.5 2.0195) + (end -1.5 -1.2695) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7c786db5-4af1-40bc-8d9f-ee58051c8a4b") + ) + (fp_line + (start -0.75 -2.0195) + (end 1.5 -2.0195) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8b653110-1487-402d-9176-d17ca087ddfe") + ) + (fp_line + (start 1.5 -2.0195) + (end 1.5 2.0195) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "19f51914-c7e8-4d4a-8624-e88fbeea63d8") + ) + (fp_line + (start 1.5 2.0195) + (end -1.5 2.0195) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a574fcbb-8e37-4548-8db1-225b5b7d1d38") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "741f9fb6-34a6-4b76-b0b2-7b2f8e7e0d19") + (effects + (font + (size 0.6 0.6) + (thickness 0.15) + ) + ) + ) + (pad "" smd roundrect + (at -0.415 -0.71) + (size 0.69 1.19) + (layers "F.Paste") + (roundrect_rratio 0.25) + (uuid "434a5c29-fe12-4d89-913a-1d6fc0417969") + ) + (pad "" smd roundrect + (at -0.415 0.71) + (size 0.69 1.19) + (layers "F.Paste") + (roundrect_rratio 0.25) + (uuid "4c7c48b7-f12b-4e68-b8cc-7ac93bebbe26") + ) + (pad "" smd roundrect + (at 0.415 -0.71) + (size 0.69 1.19) + (layers "F.Paste") + (roundrect_rratio 0.25) + (uuid "eec6faf4-4643-41e6-a670-4528ee4581fc") + ) + (pad "" smd roundrect + (at 0.415 0.71) + (size 0.69 1.19) + (layers "F.Paste") + (roundrect_rratio 0.25) + (uuid "392b0093-5233-4cc7-92e2-89954fdbdcef") + ) + (pad "1" smd roundrect + (at -2.15 -1.75) + (size 1.45 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 123 "unconnected-(U6-SYNC-Pad1)") + (pinfunction "SYNC") + (pintype "input+no_connect") + (uuid "a0eb6944-2c47-4da1-acfd-79053c32c006") + ) + (pad "2" smd roundrect + (at -2.15 -1.25) + (size 1.45 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 6 "Net-(U6-TR{slash}SS)") + (pinfunction "TR/SS") + (pintype "input") + (uuid "eb42f088-7318-45ea-8d5b-cd8462677eed") + ) + (pad "3" smd roundrect + (at -2.15 -0.75) + (size 1.45 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 81 "Net-(U6-RT)") + (pinfunction "RT") + (pintype "passive") + (uuid "f2291661-96cc-402b-9b4d-c1c316d41c5a") + ) + (pad "4" smd roundrect + (at -2.15 -0.25) + (size 1.45 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 5 "Net-(U6-EN{slash}UV)") + (pinfunction "EN/UV") + (pintype "input") + (uuid "e2f352ff-2daf-4710-b4cb-a7adff6a0e6b") + ) + (pad "5" smd roundrect + (at -2.15 0.25) + (size 1.45 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 5 "Net-(U6-EN{slash}UV)") + (pinfunction "VIN") + (pintype "power_in") + (uuid "97bde761-3205-41d4-bb0c-e36dd78f34e4") + ) + (pad "6" smd roundrect + (at -2.15 0.75) + (size 1.45 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 5 "Net-(U6-EN{slash}UV)") + (pinfunction "VIN") + (pintype "passive") + (uuid "3826b23b-bfe9-4dda-bbeb-7916d5788838") + ) + (pad "7" smd roundrect + (at -2.15 1.25) + (size 1.45 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pinfunction "GND") + (pintype "power_in") + (uuid "9499fc0f-c897-4691-8280-deed1729a6ff") + ) + (pad "8" smd roundrect + (at -2.15 1.75) + (size 1.45 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "84ad05d1-51bb-4acc-b02b-50742c34934e") + ) + (pad "9" smd roundrect + (at 2.15 1.75) + (size 1.45 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 57 "Net-(C11-Pad2)") + (pinfunction "SW") + (pintype "output") + (uuid "39ae4b30-4a1b-4bf5-913e-4635cabe5e1e") + ) + (pad "10" smd roundrect + (at 2.15 1.25) + (size 1.45 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 57 "Net-(C11-Pad2)") + (pinfunction "SW") + (pintype "passive") + (uuid "0583b118-910c-4e7f-a22e-d4433a7dfe4f") + ) + (pad "11" smd roundrect + (at 2.15 0.75) + (size 1.45 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 57 "Net-(C11-Pad2)") + (pinfunction "SW") + (pintype "passive") + (uuid "a627ac6c-20d1-4581-92e1-535ac04727fd") + ) + (pad "12" smd roundrect + (at 2.15 0.25) + (size 1.45 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 11 "Net-(U6-BST)") + (pinfunction "BST") + (pintype "input") + (uuid "97b89dbd-bca4-42dc-a308-2666a3aa1293") + ) + (pad "13" smd roundrect + (at 2.15 -0.25) + (size 1.45 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 7 "Net-(U6-INTVcc)") + (pinfunction "INTVcc") + (pintype "passive") + (uuid "fd1e4044-6fb6-4947-9d01-d6f64723d882") + ) + (pad "14" smd roundrect + (at 2.15 -0.75) + (size 1.45 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 21 "/Supply_Ref/+5V") + (pinfunction "BIAS") + (pintype "input") + (uuid "9824e28e-a2c1-47a1-b4dd-c5fffa2533b1") + ) + (pad "15" smd roundrect + (at 2.15 -1.25) + (size 1.45 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 124 "unconnected-(U6-PG-Pad15)") + (pinfunction "PG") + (pintype "open_collector+no_connect") + (uuid "1d891bb1-1593-4619-bda3-bf408cb4a2fc") + ) + (pad "16" smd roundrect + (at 2.15 -1.75) + (size 1.45 0.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 12 "Net-(U6-FB)") + (pinfunction "FB") + (pintype "input") + (uuid "7bad13ec-af40-4bf8-8bc9-8dca11bddd80") + ) + (pad "17" smd rect + (at 0 0) + (size 1.651 2.845) + (property pad_prop_heatsink) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "GND") + (pintype "passive") + (zone_connect 2) + (uuid "f76ce4fc-80b5-4fca-bcdb-55ad5ff4f220") + ) + (model "${KICAD8_3DMODEL_DIR}/Package_SO.3dshapes/MSOP-16-1EP_3x4.039mm_P0.5mm_EP1.651x2.845mm.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_1210_3225Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70c810") + (at 76.6 46.09 -90) + (descr "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") + (tags "capacitor") + (property "Reference" "C13" + (at 0 -2.91 -90) + (layer "F.SilkS") + (uuid "cda7717e-e795-48fe-969d-1c4ae761a3b3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10u" + (at 0 2.4 -90) + (layer "F.Fab") + (uuid "67bcca62-41f7-484d-a2d2-28fcada4158d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5d30607b-2a2d-4958-81a8-28d7784def71") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7a70689c-0f43-4179-95bb-929f22b6941c") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "732a1d53-036b-4718-ab31-88abc119d75b") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Taiyo Yuden" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "24c8a104-de46-4d4d-b7ff-cc70d5c002a3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "GMK325BJ106MN-T" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "e35438c0-dab0-4387-b34f-30088d45ef61") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005c1bb1d1") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.kicad_sch") + (attr smd) + (fp_line + (start -0.711252 1.36) + (end 0.711252 1.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "98232e52-668c-41e8-bd23-0b8809b06304") + ) + (fp_line + (start -0.711252 -1.36) + (end 0.711252 -1.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d9c99c2d-fb1f-4cf9-b2a7-381c59e28739") + ) + (fp_line + (start -2.3 1.6) + (end -2.3 -1.6) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1ca9bffd-1244-4e69-8191-7e714b769b60") + ) + (fp_line + (start 2.3 1.6) + (end -2.3 1.6) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c4ac8cd0-bbdf-4311-a8c5-d4b97b2f7309") + ) + (fp_line + (start -2.3 -1.6) + (end 2.3 -1.6) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "88c6e950-311b-4f7c-8dcd-079b41882313") + ) + (fp_line + (start 2.3 -1.6) + (end 2.3 1.6) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "cbb426de-991f-4548-904b-4420503c3203") + ) + (fp_line + (start -1.6 1.25) + (end -1.6 -1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "53f394e2-6c2a-42a0-b111-3d3a7500a89b") + ) + (fp_line + (start 1.6 1.25) + (end -1.6 1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e8de3e63-e551-4a53-99ec-19f49f58a823") + ) + (fp_line + (start -1.6 -1.25) + (end 1.6 -1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1503fb76-421c-448e-820a-94e53c562abf") + ) + (fp_line + (start 1.6 -1.25) + (end 1.6 1.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "16d851eb-e0fa-407d-90e8-09d06d81d0ef") + ) + (fp_text user "${REFERENCE}" + (at 0 0 -90) + (layer "F.Fab") + (uuid "b7ffc6b1-440f-454f-86c2-8f0d7a86a2fa") + (effects + (font + (size 0.7 0.7) + (thickness 0.105) + ) + ) + ) + (pad "1" smd roundrect + (at -1.475 0 270) + (size 1.15 2.7) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.217391) + (net 2 "GND") + (pintype "passive") + (uuid "7b759353-45a5-4d18-bcb5-62f7cc48b0c5") + ) + (pad "2" smd roundrect + (at 1.475 0 270) + (size 1.15 2.7) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.217391) + (net 19 "/Input_Output_Module/-12V") + (pintype "passive") + (uuid "461aad2f-f77c-4572-842b-7617fa399e9b") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1210_3225Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Connector_Coaxial:SMA_Amphenol_132134_Vertical" + (locked yes) + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70c846") + (at 118.4 42.9) + (descr "https://www.amphenolrf.com/downloads/dl/file/id/2187/product/2843/132134_customer_drawing.pdf") + (tags "SMA THT Female Jack Vertical ExtendedLegs") + (property "Reference" "J7" + (at 0 -5 0) + (layer "F.SilkS") + (hide yes) + (uuid "85139a46-f508-47bf-83ee-4f3fd480b1ab") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Piezo_Monitor" + (at 0 5 0) + (layer "F.SilkS") + (uuid "9deebb41-332b-418a-89b6-3e8d550d542a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Connector_Coaxial:SMA_Amphenol_132134_Vertical" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "46e97bf7-ac71-464e-969d-41520a7ae40e") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0d9c4259-b0ad-440c-bdd1-af11c07dec4d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3207768a-3b5b-4cdf-b15e-6abefbd3e3d9") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Config" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "dc7a5240-0299-4883-9420-a0a228f98247") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "MFN" "Amphenol" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "2b0a3685-f80d-4116-b8b0-b2127e8654cd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "901-144-8RFX" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "038cdc20-0479-4825-a17b-9bdfd28b9a73") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "*BNC* *SMA* *SMB* *SMC* *Cinch* *LEMO* *UMRF* *MCX* *U.FL*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b0579a9") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr through_hole) + (fp_line + (start -3.68 -1.8) + (end -3.68 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c53bbd75-e5e9-49e6-a1f4-e283a46264bd") + ) + (fp_line + (start -1.8 -3.68) + (end 1.8 -3.68) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "12ef966a-8644-4f7c-809c-a18afc4e01c2") + ) + (fp_line + (start -1.8 3.68) + (end 1.8 3.68) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2c97fccf-c66a-4a45-9f21-e0ae31e694c3") + ) + (fp_line + (start 3.68 -1.8) + (end 3.68 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "756d9eb0-2971-4311-9468-80fb500b2583") + ) + (fp_line + (start -4.17 -4.17) + (end -4.17 4.17) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1d2bf182-789a-4a2a-a97e-faef16e31399") + ) + (fp_line + (start -4.17 -4.17) + (end 4.17 -4.17) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "cdca083d-c8a7-4505-9ca0-01dc279e710d") + ) + (fp_line + (start 4.17 4.17) + (end -4.17 4.17) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e9476724-e64e-49f3-876c-0341eb4a5a7a") + ) + (fp_line + (start 4.17 4.17) + (end 4.17 -4.17) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c29984d3-8e5d-4f33-bd4f-94bd4d6d83ff") + ) + (fp_line + (start -3.5 -3.5) + (end -3.5 3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6e33d58e-06e3-46a5-82ec-896b336abc3c") + ) + (fp_line + (start -3.5 -3.5) + (end 3.5 -3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d22d6084-1c20-4783-b559-0376116c354a") + ) + (fp_line + (start -3.5 3.5) + (end 3.5 3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e8e81f72-1fde-4bce-9f16-f5471284b069") + ) + (fp_line + (start 3.5 -3.5) + (end 3.5 3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "20eb1b22-cfb7-42eb-b3a5-dbe498120006") + ) + (fp_circle + (center 0 0) + (end 3.175 0) + (stroke + (width 0.1) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "75446d62-c293-4b6b-99b5-0113cd2a0c83") + ) + (fp_text user "${REFERENCE}" + (at 0 -5 0) + (layer "F.Fab") + (uuid "b2ad5487-9090-44b6-8723-d00f14db013a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0) + (size 2.05 2.05) + (drill 1.5) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 74 "Net-(J7-In)") + (pinfunction "In") + (pintype "passive") + (uuid "17650aea-6c06-4f5e-9b11-b408436181d8") + ) + (pad "2" thru_hole circle + (at -2.54 -2.54) + (size 2.25 2.25) + (drill 1.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Ext") + (pintype "passive") + (uuid "ed442c06-31ad-4650-8e86-ea397027e946") + ) + (pad "2" thru_hole circle + (at -2.54 2.54) + (size 2.25 2.25) + (drill 1.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Ext") + (pintype "passive") + (uuid "d29a1708-ff03-48b5-87e5-6878a155bb27") + ) + (pad "2" thru_hole circle + (at 2.54 -2.54) + (size 2.25 2.25) + (drill 1.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Ext") + (pintype "passive") + (uuid "6fbce0c5-0cfe-4a02-9082-e7aad64082b5") + ) + (pad "2" thru_hole circle + (at 2.54 2.54) + (size 2.25 2.25) + (drill 1.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Ext") + (pintype "passive") + (uuid "94cb69fb-d267-4bb9-9343-a4aa1d816953") + ) + (model "${KICAD8_3DMODEL_DIR}/Connector_Coaxial.3dshapes/SMA_Amphenol_132134_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_1210_3225Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70c882") + (at 131.5 42.8 180) + (descr "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") + (tags "resistor") + (property "Reference" "R11" + (at 0 -2.35 180) + (layer "F.SilkS") + (uuid "c79e1c94-28a1-415c-9e2f-644f9e327d80") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "49.9" + (at 0 2.4 180) + (layer "F.Fab") + (uuid "b9b37849-4939-4282-ba83-94939598f74f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_1210_3225Metric" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8ee6466a-5ba0-4f1f-8dd0-ed07cf2ea286") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bdae27ff-aa9e-4569-9524-81424240ed93") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7004c4f7-d3b5-42c6-938b-c8e42672053d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Yageo" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "57b374ba-06a3-4916-a921-969b3e9f3e4d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "RC1210FR-0749R9L" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "eee7767b-eec2-4f0c-8d07-3e51944c6402") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005c1a6223") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start -0.723737 1.355) + (end 0.723737 1.355) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b6ab31c3-7f83-490d-9d5a-1a3873a06ad4") + ) + (fp_line + (start -0.723737 -1.355) + (end 0.723737 -1.355) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "89baca3b-ea00-4f80-8069-5a7454c3bbb2") + ) + (fp_line + (start 2.28 1.58) + (end -2.28 1.58) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "5fcbcdc7-5723-4ef6-95fc-760f6a40fea4") + ) + (fp_line + (start 2.28 -1.58) + (end 2.28 1.58) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a681afbb-0a18-4597-b40b-10e908a60a6f") + ) + (fp_line + (start -2.28 1.58) + (end -2.28 -1.58) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1f0bc3d7-236d-475c-be3f-97591d5846ce") + ) + (fp_line + (start -2.28 -1.58) + (end 2.28 -1.58) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a8570d4a-845e-418e-9338-6bffc5d21d92") + ) + (fp_line + (start 1.6 1.245) + (end -1.6 1.245) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "64a95a4d-0873-481c-bf7d-307f315f910e") + ) + (fp_line + (start 1.6 -1.245) + (end 1.6 1.245) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "830a361d-d8fa-4726-bf63-d51119909f0c") + ) + (fp_line + (start -1.6 1.245) + (end -1.6 -1.245) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9eed63a1-0707-488c-b436-b3bcfe87d208") + ) + (fp_line + (start -1.6 -1.245) + (end 1.6 -1.245) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ff86c1ba-4b4d-4da8-af0f-b6849f0050a9") + ) + (fp_text user "${REFERENCE}" + (at 0 0 180) + (layer "F.Fab") + (uuid "2f66c80f-0dd2-46d5-921c-6efa9f62d50a") + (effects + (font + (size 0.7 0.7) + (thickness 0.105) + ) + ) + ) + (pad "1" smd roundrect + (at -1.4625 0 180) + (size 1.125 2.65) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.222222) + (net 78 "Net-(J14-In)") + (pintype "passive") + (uuid "65244ab4-b836-4f3b-8f21-376ae046ca11") + ) + (pad "2" smd roundrect + (at 1.4625 0 180) + (size 1.125 2.65) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.222222) + (net 84 "Net-(U8A-+)") + (pintype "passive") + (uuid "5f154489-5a0b-4172-8bef-20a0eb357eda") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1210_3225Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_1210_3225Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70c8b2") + (at 109.7 59.9 180) + (descr "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") + (tags "resistor") + (property "Reference" "R16" + (at 0 -2.25 180) + (layer "F.SilkS") + (uuid "55f78495-0830-42f9-9979-1bfdcdb35a3a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "4.7" + (at 0 2.4 180) + (layer "F.Fab") + (uuid "1e3ec9f0-c98a-49c0-a295-17f6c74dc954") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_1210_3225Metric" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "cfcab36d-270d-47e1-95e4-1ec675d87724") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "eff7375e-95d3-46a2-9c00-6804e316ff40") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f2d9d217-a162-4e64-b164-c0cbf28e06c4") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Panasonic" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "64ddf4b8-c714-4b44-9ef5-133800a7bf0c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "ERJ-14YJ4R7U" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "0609850a-5109-45f1-b0ab-5c53e77d9679") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b057987") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start -0.723737 1.355) + (end 0.723737 1.355) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f1a1cd45-772a-4279-b619-177df4bb3185") + ) + (fp_line + (start -0.723737 -1.355) + (end 0.723737 -1.355) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b4d50656-86fb-417e-9bbc-a7d651a3cb88") + ) + (fp_line + (start 2.28 1.58) + (end -2.28 1.58) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ac03ad7e-a27d-48c7-b113-fb55157d6a08") + ) + (fp_line + (start 2.28 -1.58) + (end 2.28 1.58) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "67ce2e89-5c51-46c1-acb9-bc06dca6c893") + ) + (fp_line + (start -2.28 1.58) + (end -2.28 -1.58) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9eef20ff-b912-4cc9-82cd-255ad57e159f") + ) + (fp_line + (start -2.28 -1.58) + (end 2.28 -1.58) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "113554b9-6bc4-483a-a04e-1ed4d4170055") + ) + (fp_line + (start 1.6 1.245) + (end -1.6 1.245) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6ddc3307-7d54-4269-9407-b5408709145b") + ) + (fp_line + (start 1.6 -1.245) + (end 1.6 1.245) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6a05b5c0-323e-4f46-ac91-e071cfc52bd7") + ) + (fp_line + (start -1.6 1.245) + (end -1.6 -1.245) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "332d112b-cd48-46e5-8e76-b7e0c407abe0") + ) + (fp_line + (start -1.6 -1.245) + (end 1.6 -1.245) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5ca93b5e-71cd-46bb-91b1-31dfb2653744") + ) + (fp_text user "${REFERENCE}" + (at 0 0 180) + (layer "F.Fab") + (uuid "3de9e8d5-3238-431d-aed0-afd4a53bd16b") + (effects + (font + (size 0.7 0.7) + (thickness 0.105) + ) + ) + ) + (pad "1" smd roundrect + (at -1.4625 0 180) + (size 1.125 2.65) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.222222) + (net 73 "Net-(J5-In)") + (pintype "passive") + (uuid "241acafc-e1b3-4088-8a41-d4e5bb8b7ab8") + ) + (pad "2" smd roundrect + (at 1.4625 0 180) + (size 1.125 2.65) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.222222) + (net 87 "Net-(U4C-+)") + (pintype "passive") + (uuid "228d6fd5-b3c7-42f3-8e7e-e6f86b2e751c") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1210_3225Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_1210_3225Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70c8e2") + (at 186.1 50.4 180) + (descr "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") + (tags "resistor") + (property "Reference" "R26" + (at 0 2.5 0) + (layer "F.SilkS") + (uuid "ac58ed5c-8af5-40cd-9b6e-3c4257e9e6df") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "49.9" + (at 0 2.4 0) + (layer "F.Fab") + (uuid "36421d1c-eefe-4de1-8346-2c87852284a7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_1210_3225Metric" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e0a5a425-796c-4527-a101-696995b5350d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b4e6f47b-8bee-45c3-8c8d-b0e4ec4b9b4d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3ac45149-b644-4a1f-9d12-c34fb3b82974") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Yageo" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "c93f29cb-2d5f-4c03-933b-76542d2a22c1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "RC1210FR-0749R9L" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "e37d3a4b-1f06-4ebb-8816-b3f8b2fdc7af") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005f57dbca") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start -0.723737 1.355) + (end 0.723737 1.355) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c975770b-e948-43f0-84a3-7147bbe359cf") + ) + (fp_line + (start -0.723737 -1.355) + (end 0.723737 -1.355) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "131aab01-913b-4331-8dad-c13207b77007") + ) + (fp_line + (start 2.28 1.58) + (end -2.28 1.58) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "957a2d3c-b9e2-4c13-a039-73fd82a65b5c") + ) + (fp_line + (start 2.28 -1.58) + (end 2.28 1.58) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "66fc5878-ae29-49d2-9ace-b9c47b12a521") + ) + (fp_line + (start -2.28 1.58) + (end -2.28 -1.58) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "6a75ead5-33cc-44f2-a4c3-7feda19d3329") + ) + (fp_line + (start -2.28 -1.58) + (end 2.28 -1.58) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f83a5289-3593-4917-b50b-244b644cae52") + ) + (fp_line + (start 1.6 1.245) + (end -1.6 1.245) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c45db8a1-8368-4c16-a697-4f7e9dcd93ac") + ) + (fp_line + (start 1.6 -1.245) + (end 1.6 1.245) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "da4b4896-e430-4ef1-9e10-cd9a6eacd24d") + ) + (fp_line + (start -1.6 1.245) + (end -1.6 -1.245) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6cc63517-e29c-44aa-81dc-3c2a894e3ff3") + ) + (fp_line + (start -1.6 -1.245) + (end 1.6 -1.245) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "76e256af-08bf-4f32-ba7f-6a5b33620ead") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "51bf34d5-ec36-442c-9660-5dc0f4cec078") + (effects + (font + (size 0.7 0.7) + (thickness 0.105) + ) + ) + ) + (pad "1" smd roundrect + (at -1.4625 0 180) + (size 1.125 2.65) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.222222) + (net 77 "Net-(J13-In)") + (pintype "passive") + (uuid "f3ea9e5e-b4d3-454e-8daf-643269a2700b") + ) + (pad "2" smd roundrect + (at 1.4625 0 180) + (size 1.125 2.65) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.222222) + (net 67 "Net-(R20-Pad1)") + (pintype "passive") + (uuid "cb9562f7-15d9-473d-8a73-e50a6e4d985c") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1210_3225Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0603_1608Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70c912") + (at 169.1 49.9 90) + (descr "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") + (tags "capacitor") + (property "Reference" "C27" + (at 0 -1.5 90) + (layer "F.SilkS") + (uuid "267f958a-9e93-471e-82c8-31b352cf1d81") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100n" + (at 0 1.5 90) + (layer "F.Fab") + (uuid "b762dc06-bd48-4bf4-8e7e-4813a08ebe7b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9d1cda87-31bf-4924-bb33-cc16e9f020dd") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "de33e619-c906-4f23-bb27-48f9b8578c44") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "edffce0b-9b50-47cc-80fc-5b5bc6476ba6") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Kemet" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "9e4f4ef9-1f61-4022-a621-83e1fcb691b5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "C0603C104K5RECAUTO" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "ecbaec3e-85eb-4012-9f6f-2c298746404c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005f57dc38") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start -0.14058 -0.51) + (end 0.14058 -0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "df49f458-274f-4330-b35f-2d72a5471a78") + ) + (fp_line + (start -0.14058 0.51) + (end 0.14058 0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b5bf56a9-69c3-461f-beb3-2177e405997d") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "fed11fc8-5931-4231-90d8-db3ff8dfd58b") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9ef48b08-71da-4706-9f39-bc7fc4ef64c5") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9d9f9251-44f6-4e7f-9b8b-eeca70803772") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2fb748a8-04f1-4638-ba0c-8c7641fe9c32") + ) + (fp_line + (start 0.8 -0.4) + (end 0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "368c8cd7-2bac-4e40-a725-1a30f3fd5525") + ) + (fp_line + (start -0.8 -0.4) + (end 0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4bfceb34-22c4-491c-b256-9f0dac10aca7") + ) + (fp_line + (start 0.8 0.4) + (end -0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "03018bc1-5762-4ad6-b8b2-c56c4f64d299") + ) + (fp_line + (start -0.8 0.4) + (end -0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4997f2df-8ad0-4258-970a-4dfe09331432") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "bc195a63-6d42-4b37-a7e4-5aec94f8c2f2") + (effects + (font + (size 0.3 0.3) + (thickness 0.075) + ) + ) + ) + (pad "1" smd roundrect + (at -0.775 0 90) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "3843616b-c034-463e-b342-6adda4cef67a") + ) + (pad "2" smd roundrect + (at 0.775 0 90) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 4 "/Input_Output_Module/+12V") + (pintype "passive") + (uuid "b6ead488-9e36-4e0d-97dc-88b7cb5590b0") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0805_2012Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70c981") + (at 102.6 102.9) + (descr "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") + (tags "capacitor") + (property "Reference" "C7" + (at 0 1.8 0) + (layer "F.SilkS") + (uuid "57ee93dc-b01c-4924-8cce-6baee69e6bb9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1u" + (at 0 1.75 0) + (layer "F.Fab") + (uuid "7703a327-a3c3-412e-84f1-7866b0dc29a9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "158f0065-7840-4b3e-93a5-52e1c57b0bec") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "dec9f435-31b8-4572-bc76-b5ee6e2cfea2") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "50051a32-4ecc-4c24-a35f-f22e2fd4c5d2") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Taiyo Yuden" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "b115589c-54e5-4534-b591-4339c4de84a4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "UMK212B7105KG-T" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "cb7edb05-0162-40c0-9be8-6640df89a8bd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/00000000-0000-0000-0000-00005b053798/781f0c7c-fcbe-4423-869a-34df8976d2d0") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.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 "a266f5de-493e-4017-9158-10e51ea0e6d0") + ) + (fp_line + (start -0.261252 0.735) + (end 0.261252 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e8c0a0b0-272d-4be4-a0fa-cead03f052e3") + ) + (fp_line + (start -1.7 -0.98) + (end 1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c846aec9-facc-46a8-a4ef-c6e55a7e1577") + ) + (fp_line + (start -1.7 0.98) + (end -1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c5924146-b941-4e44-80ee-aa741c50b973") + ) + (fp_line + (start 1.7 -0.98) + (end 1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "6925804a-00c8-4463-8110-2d62a2304093") + ) + (fp_line + (start 1.7 0.98) + (end -1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "35afc5f2-5217-4892-a975-83d26d0c771e") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "14f70c03-f04e-4741-b0f7-3923e69a67f7") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0caffc64-4102-47d7-ac01-8bced0e6ab49") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "23ad568e-e7e3-41dd-9e2a-bfbe33ee6d4e") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c2a47293-c908-4eca-9923-825f8b012300") + ) + (fp_text user "${REFERENCE}" + (at 0 -1.5 0) + (layer "F.Fab") + (uuid "db5efa91-8b56-4577-92c8-b8a8554a6637") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -0.95 0) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 7 "Net-(U6-INTVcc)") + (pintype "passive") + (uuid "3590e979-43fd-424a-97c5-3b4cb30faff2") + ) + (pad "2" smd roundrect + (at 0.95 0) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "ee07800b-9c2d-4f2e-b3fc-7cb2cc02e33f") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70ca1a") + (at 109.9 51.4 -90) + (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.5 90) + (layer "F.SilkS") + (uuid "7a2e60aa-ce7a-4bb0-9f93-bc099f01689e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "BUF634" + (at 0 3.5 90) + (layer "F.Fab") + (uuid "4c29ef9e-d340-4d32-b214-3fbbb0658f90") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "036f6483-ff84-49c1-9097-768599bdb64a") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "89c5a867-b494-47eb-b9f3-3c9773af3d0e") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3934a80d-c480-44d0-96db-8bf8ca9e0870") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Field4" "1" + (at 0 0 180) + (layer "F.Fab") + (hide yes) + (uuid "4172eed0-d637-4888-b4f8-851f96193f5d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "MFN" "Texas Instruments" + (at 0 0 180) + (layer "F.Fab") + (hide yes) + (uuid "628d1137-9882-4a97-8d65-bcd6df2cf2db") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "BUF634AIDR" + (at 0 0 180) + (layer "F.Fab") + (hide yes) + (uuid "e8a3fffc-e45f-425c-ad9a-ac06b0b77165") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b05797a") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start 0 2.56) + (end -1.95 2.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "665f6de7-0fa3-4f87-9d7d-ee2d38a97094") + ) + (fp_line + (start 0 2.56) + (end 1.95 2.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "eb060ddc-b360-4abd-aeef-9e9622afe50a") + ) + (fp_line + (start 0 -2.56) + (end -1.95 -2.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "71d55038-7f92-4cf5-8306-5ad9c585e3f7") + ) + (fp_line + (start 0 -2.56) + (end 1.95 -2.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6cba23fc-0e24-4763-b2e9-ae78bbedc817") + ) + (fp_poly + (pts + (xy -2.7 -2.465) (xy -2.94 -2.795) (xy -2.46 -2.795) (xy -2.7 -2.465) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "93ecd2a8-85d0-499c-b7d0-238bd002448a") + ) + (fp_line + (start -3.7 2.7) + (end 3.7 2.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a05f0160-7a4d-40ce-88bc-347e7bb1769c") + ) + (fp_line + (start 3.7 2.7) + (end 3.7 -2.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "00f96e2f-42a4-49cb-b57b-6f6a3fb8f747") + ) + (fp_line + (start -3.7 -2.7) + (end -3.7 2.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c6506289-f6f0-4542-a1e8-2dee40e36e91") + ) + (fp_line + (start 3.7 -2.7) + (end -3.7 -2.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2865fee2-5cf8-4e09-9e1c-b348fdf88df8") + ) + (fp_line + (start -1.95 2.45) + (end -1.95 -1.475) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5fc5a5c0-dada-417b-895e-7103e53d8e9b") + ) + (fp_line + (start 1.95 2.45) + (end -1.95 2.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f3021aac-d4a2-4475-ba33-9f0d420b1f99") + ) + (fp_line + (start -1.95 -1.475) + (end -0.975 -2.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4384d9bf-db8b-4dfb-b74c-71ac22cc29e9") + ) + (fp_line + (start -0.975 -2.45) + (end 1.95 -2.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d96b738a-f03e-4e76-9cb1-1e1bc7c4e67d") + ) + (fp_line + (start 1.95 -2.45) + (end 1.95 2.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a2298064-feef-428f-bc98-cab14c86b921") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "05a1b8ad-9515-4cc1-8887-9a8c33561cf6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -2.475 -1.905 270) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 19 "/Input_Output_Module/-12V") + (pinfunction "BW") + (pintype "passive") + (uuid "ee042e1c-ba8b-4759-b40a-7e4c5bc9ba2a") + ) + (pad "2" smd roundrect + (at -2.475 -0.635 270) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 43 "unconnected-(U5-Pad2)") + (pintype "no_connect") + (uuid "0d68d957-ffce-498b-923b-6bdf9bc76437") + ) + (pad "3" smd roundrect + (at -2.475 0.635 270) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 18 "Net-(U4-Pad7)") + (pintype "input") + (uuid "45f69edc-90f4-4efb-9dcd-a90069b462b0") + ) + (pad "4" smd roundrect + (at -2.475 1.905 270) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 19 "/Input_Output_Module/-12V") + (pinfunction "V-") + (pintype "power_in") + (uuid "c6af67de-4f9a-42a3-8205-58be4c40c835") + ) + (pad "5" smd roundrect + (at 2.475 1.905 270) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 44 "unconnected-(U5-Pad5)") + (pintype "no_connect") + (uuid "85fbedc1-7b96-4523-bd98-94a39bdd1997") + ) + (pad "6" smd roundrect + (at 2.475 0.635 270) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 87 "Net-(U4C-+)") + (pintype "output") + (uuid "328d3094-9ca9-45ad-88cf-d790b56efdc9") + ) + (pad "7" smd roundrect + (at 2.475 -0.635 270) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 4 "/Input_Output_Module/+12V") + (pinfunction "V+") + (pintype "power_in") + (uuid "7cdfe20d-d89f-4591-96b5-1f13123cdc0d") + ) + (pad "8" smd roundrect + (at 2.475 -1.905 270) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 71 "unconnected-(U5-Pad8)") + (pintype "no_connect") + (uuid "b370c965-3be7-4087-9349-3547d455b302") + ) + (model "${KICAD8_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-8_3.9x4.9mm_P1.27mm.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0603_1608Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70ca5c") + (at 180.1 44.9 180) + (descr "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") + (tags "capacitor") + (property "Reference" "C26" + (at -0.75 1.5 180) + (layer "F.SilkS") + (uuid "a1f07308-2fd4-4955-ae6a-be20c1ae3ef5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100n" + (at 0 1.5 0) + (layer "F.Fab") + (uuid "a7ecd031-d101-416c-ade3-c872a269a473") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "95a1a4d3-3ec6-4065-9b5e-3989197abdb1") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "80538722-c898-4f51-aa6d-f5842dc7e8d3") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d3df2abd-8be3-490b-a995-141137e7fa27") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Kemet" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "616ca21f-8a88-4163-81df-70bfac251ac6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "C0603C104K5RECAUTO" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "840e0022-20bc-42d0-8904-ba15af27439e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005f57dc2c") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start -0.14058 0.51) + (end 0.14058 0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "61bf100a-ceb4-4242-8f27-42708245ad5b") + ) + (fp_line + (start -0.14058 -0.51) + (end 0.14058 -0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "fca1b214-53b0-4c7b-9b0b-0c23e1dbafc8") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "20a40858-5812-4a7e-b90c-3493a32f3bce") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a954c625-b985-4692-8b24-9c5905c4dc02") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "cd5d4ee9-ae43-4d65-953b-5b8c5f0c4ecf") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "abc031d2-553c-4f8e-9b3e-07130fee1465") + ) + (fp_line + (start 0.8 0.4) + (end -0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9a8d44cb-30ce-4c37-9a8f-d49ee3d3e1fb") + ) + (fp_line + (start 0.8 -0.4) + (end 0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "918fd8ae-e150-4403-b267-7ab853af98ed") + ) + (fp_line + (start -0.8 0.4) + (end -0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b4ad4aeb-1817-4e5a-82ee-7bc97c774b6d") + ) + (fp_line + (start -0.8 -0.4) + (end 0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "47b309d5-5b67-4706-ba4f-8c9cd2dd7643") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "1a396df9-d688-42df-adef-8bc1aca701a1") + (effects + (font + (size 0.3 0.3) + (thickness 0.075) + ) + ) + ) + (pad "1" smd roundrect + (at -0.775 0 180) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "aac7f797-d9a9-4307-8f67-3b5de4d5c844") + ) + (pad "2" smd roundrect + (at 0.775 0 180) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 19 "/Input_Output_Module/-12V") + (pintype "passive") + (uuid "29e1c2a3-ad2f-4e77-806c-e9bdc252b694") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70cbdc") + (at 89.1 101.2 180) + (descr "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") + (tags "resistor") + (property "Reference" "R5" + (at 1.2 -1.5 0) + (layer "F.SilkS") + (uuid "eed68b44-27f2-4ab5-9fea-b0cf1ae21f2f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "52.3k" + (at 0 1.5 180) + (layer "F.Fab") + (uuid "51ff9601-47ec-42b8-b38e-a9ed08bad38f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c801039f-5131-4f84-bbf5-90c4a8c56892") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7cec318d-f44b-4815-b2f6-a9ca95b7bf8a") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "21b601a0-9cbb-46bb-975c-169aa4a5547a") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Susumu" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "1a5e04d6-c485-46ad-a09d-6a29c922b073") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "RR0816P-5232-D-70C" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "16fb5fce-569e-4a02-a7a4-305d23f69382") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/00000000-0000-0000-0000-00005b053798/bf78b1ac-f0d2-47ee-a7a9-9f0c39779c1c") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "292db6b3-550f-459c-9290-617eb1e236ec") + ) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "83380fd5-aa63-4cd2-8153-261ee14adf00") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "bf987108-a7a1-40a3-9c35-fe2b3f369520") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "98f4a6dd-4d98-4aa1-b098-f1f97e869aff") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c372a43d-3edd-48bb-aaff-9e4499976d16") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ddae5df4-d240-411a-b0b0-7e0fe55440f9") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "80d0a778-4d7e-48e3-8404-211b63ec88c4") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "67e00d29-a345-44cf-adcf-aa4044eea113") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "95541077-8b77-4649-beb1-5e5214dff224") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5f777f3f-8600-4508-b590-3c4b842a55ce") + ) + (fp_text user "${REFERENCE}" + (at 0 0 180) + (layer "F.Fab") + (uuid "531b5ec3-f63f-454c-a58d-70f74acbfb47") + (effects + (font + (size 0.4 0.4) + (thickness 0.075) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0 180) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 81 "Net-(U6-RT)") + (pintype "passive") + (uuid "a4c05ebd-4cab-4aaf-9aa4-60a7c5c9b8ac") + ) + (pad "2" smd roundrect + (at 0.825 0 180) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "b705c9a6-e47f-473d-9452-6f2a3aacb82d") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Connector_Coaxial:SMA_Amphenol_132134_Vertical" + (locked yes) + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70cc12") + (at 139.1 42.9) + (descr "https://www.amphenolrf.com/downloads/dl/file/id/2187/product/2843/132134_customer_drawing.pdf") + (tags "SMA THT Female Jack Vertical ExtendedLegs") + (property "Reference" "J14" + (at 0 -5 0) + (layer "F.SilkS") + (hide yes) + (uuid "62f09f83-245f-4e82-ba74-1eb87e361b7a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Error_Out (In1)" + (at 0 5 0) + (layer "F.SilkS") + (uuid "d5abb1b4-a99f-4b52-9273-b72a3b632264") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Connector_Coaxial:SMA_Amphenol_132134_Vertical" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "200b7bb1-fac9-457a-a232-0ee093559a78") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "adcea95a-f159-4c2e-bc3d-28aaa084d5e8") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "42298b28-4030-471e-89d7-8432c1f8e6eb") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Config" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "bbe6fa3b-be77-4939-a9b6-9c4da619f5f6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "MFN" "Amphenol" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "76f10aeb-1134-47ab-bdb9-7961a28b5348") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "901-144-8RFX" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "89951d0c-af19-4d7c-a65b-af9123a303dc") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "*BNC* *SMA* *SMB* *SMC* *Cinch* *LEMO* *UMRF* *MCX* *U.FL*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b0591a2") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr through_hole) + (fp_line + (start -3.68 -1.8) + (end -3.68 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0ec65b68-a59b-4a53-b48b-5abaed741125") + ) + (fp_line + (start -1.8 -3.68) + (end 1.8 -3.68) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "97ffa9c5-5940-441e-945b-0959520ce21d") + ) + (fp_line + (start -1.8 3.68) + (end 1.8 3.68) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a996c1a7-3a8f-4e30-9d84-96451a6ad9b0") + ) + (fp_line + (start 3.68 -1.8) + (end 3.68 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "18d23312-1654-435f-a60c-372dec87d98c") + ) + (fp_line + (start -4.17 -4.17) + (end -4.17 4.17) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4329eb02-1d2c-4d09-8f7b-bf7c06a62a88") + ) + (fp_line + (start -4.17 -4.17) + (end 4.17 -4.17) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8fbb331c-46e7-4673-8d87-10c9d8713256") + ) + (fp_line + (start 4.17 4.17) + (end -4.17 4.17) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8a409210-eb2e-47ce-a29f-e7c8ec847801") + ) + (fp_line + (start 4.17 4.17) + (end 4.17 -4.17) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3276dca4-7cdb-4d28-8599-81d6fb16052d") + ) + (fp_line + (start -3.5 -3.5) + (end -3.5 3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "533bf51b-89be-4a74-aeaa-e18c0ed5bb05") + ) + (fp_line + (start -3.5 -3.5) + (end 3.5 -3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "abe8c3da-91ec-487a-99e4-823a1ede3906") + ) + (fp_line + (start -3.5 3.5) + (end 3.5 3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "782fc16b-64f0-4dff-afe1-137538a06172") + ) + (fp_line + (start 3.5 -3.5) + (end 3.5 3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "68fdf8b7-0dec-4c4e-a76e-413b65e75dd3") + ) + (fp_circle + (center 0 0) + (end 3.175 0) + (stroke + (width 0.1) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "7b4026c0-0efa-4464-aafd-a73a7bd148fd") + ) + (fp_text user "${REFERENCE}" + (at 0 -5 0) + (layer "F.Fab") + (uuid "305176cb-d8e7-40a3-8a2d-123447036f47") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0) + (size 2.05 2.05) + (drill 1.5) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 78 "Net-(J14-In)") + (pinfunction "In") + (pintype "passive") + (uuid "0fd2a438-645f-40b3-8959-60a4cc00bea8") + ) + (pad "2" thru_hole circle + (at -2.54 -2.54) + (size 2.25 2.25) + (drill 1.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Ext") + (pintype "passive") + (uuid "48af9991-112d-45cd-9437-14d1cd190627") + ) + (pad "2" thru_hole circle + (at -2.54 2.54) + (size 2.25 2.25) + (drill 1.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Ext") + (pintype "passive") + (uuid "66097938-8e03-49c3-a9df-80a32788da7d") + ) + (pad "2" thru_hole circle + (at 2.54 -2.54) + (size 2.25 2.25) + (drill 1.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Ext") + (pintype "passive") + (uuid "80db17df-c575-4b02-b6f2-88b2f0c62f62") + ) + (pad "2" thru_hole circle + (at 2.54 2.54) + (size 2.25 2.25) + (drill 1.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Ext") + (pintype "passive") + (uuid "fdb85399-e1e9-421f-b304-b2c0f3f1bfa2") + ) + (model "${KICAD8_3DMODEL_DIR}/Connector_Coaxial.3dshapes/SMA_Amphenol_132134_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Connector_Coaxial:SMA_Amphenol_132134_Vertical" + (locked yes) + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70cc54") + (at 167.1 56.9) + (descr "https://www.amphenolrf.com/downloads/dl/file/id/2187/product/2843/132134_customer_drawing.pdf") + (tags "SMA THT Female Jack Vertical ExtendedLegs") + (property "Reference" "J11" + (at 0 -5 0) + (layer "F.SilkS") + (hide yes) + (uuid "5f043228-746b-4116-bad2-7b8f7cfb5094") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Curr_In (Out2)" + (at 0 5 0) + (layer "F.SilkS") + (uuid "d0522b30-38b2-4387-816b-7ac65e0bb50d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Connector_Coaxial:SMA_Amphenol_132134_Vertical" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a8028150-e754-4150-ba68-f124f4cf916f") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "34c65264-d171-41be-a8f9-973007f3edaa") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8aeccbb6-8e55-4a33-b59b-de00d701138c") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Config" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "f502c404-480c-4c39-8de7-923c2a7887d9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "MFN" "Amphenol" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "3774e160-46b4-41b1-bd74-cd1ab1c338d5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "901-144-8RFX" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "27647403-fb4c-49bf-a4e2-4ee57236a6d3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "*BNC* *SMA* *SMB* *SMC* *Cinch* *LEMO* *UMRF* *MCX* *U.FL*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005f57db71") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr through_hole) + (fp_line + (start -3.68 -1.8) + (end -3.68 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9d7ffe9c-f027-413b-9c32-04a98bca98af") + ) + (fp_line + (start -1.8 -3.68) + (end 1.8 -3.68) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3404a3cc-6601-4186-ba54-35839e53912d") + ) + (fp_line + (start -1.8 3.68) + (end 1.8 3.68) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "de193c89-02fe-47c7-af4c-047207599a6e") + ) + (fp_line + (start 3.68 -1.8) + (end 3.68 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "460399e3-ebfd-4d08-b170-d321ebda5dff") + ) + (fp_line + (start -4.17 -4.17) + (end -4.17 4.17) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "22280e84-8638-490d-aa08-3eb7171a4b46") + ) + (fp_line + (start -4.17 -4.17) + (end 4.17 -4.17) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e06fd13b-e49c-4b8f-b1fd-65e5cab03e07") + ) + (fp_line + (start 4.17 4.17) + (end -4.17 4.17) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "940396e3-1284-484e-a9a0-91b0d468bf6f") + ) + (fp_line + (start 4.17 4.17) + (end 4.17 -4.17) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a37ce44b-4144-418b-8904-141392eb801a") + ) + (fp_line + (start -3.5 -3.5) + (end -3.5 3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "dfa26200-a1e2-4e7d-86be-9eeef04a6dd2") + ) + (fp_line + (start -3.5 -3.5) + (end 3.5 -3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "348f4edc-947b-4f3b-a5ad-7e79010059df") + ) + (fp_line + (start -3.5 3.5) + (end 3.5 3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3cf9dc21-b43f-4bc5-96be-24adce4f9528") + ) + (fp_line + (start 3.5 -3.5) + (end 3.5 3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9d839713-acd7-4bb7-9ece-1c95f479a5ef") + ) + (fp_circle + (center 0 0) + (end 3.175 0) + (stroke + (width 0.1) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "19e91839-b57c-48b5-8879-f82842549591") + ) + (fp_text user "${REFERENCE}" + (at 0 -5 0) + (layer "F.Fab") + (uuid "c4142cfc-56df-4535-a8bc-1af9c2190958") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0) + (size 2.05 2.05) + (drill 1.5) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 75 "Net-(J11-In)") + (pinfunction "In") + (pintype "passive") + (uuid "0a687e8b-4ba5-4011-baa2-9d55c6cbf696") + ) + (pad "2" thru_hole circle + (at -2.54 -2.54) + (size 2.25 2.25) + (drill 1.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Ext") + (pintype "passive") + (uuid "b893af74-78f3-4b5c-8f4f-4c6e7e87e2bf") + ) + (pad "2" thru_hole circle + (at -2.54 2.54) + (size 2.25 2.25) + (drill 1.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Ext") + (pintype "passive") + (uuid "2e9a59cf-a4ca-4ae7-b093-aa4d208134c2") + ) + (pad "2" thru_hole circle + (at 2.54 -2.54) + (size 2.25 2.25) + (drill 1.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Ext") + (pintype "passive") + (uuid "a9ad944d-157f-49b2-b2d7-19be727cf4f4") + ) + (pad "2" thru_hole circle + (at 2.54 2.54) + (size 2.25 2.25) + (drill 1.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Ext") + (pintype "passive") + (uuid "331a73ac-68a0-44a8-bbef-ceafd8eb335d") + ) + (model "${KICAD8_3DMODEL_DIR}/Connector_Coaxial.3dshapes/SMA_Amphenol_132134_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70cc90") + (at 97.85 56.26) + (descr "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") + (tags "resistor") + (property "Reference" "R4" + (at -2.66 -0.075 0) + (layer "F.SilkS") + (uuid "245f85c2-ee25-4271-944b-927aa32be6c2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1k" + (at 0 1.5 0) + (layer "F.Fab") + (uuid "e5324ace-bc02-4921-945e-96706ea44d99") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2792e005-812c-4dd6-9796-eb783301be24") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bdc3f028-9a02-4b12-ac6f-31987b5626fb") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bbf85510-b14f-421f-8b09-ed5ab3802ca2") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Susumu" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "4c694875-4d83-4b39-aa7c-0ae57dfbd412") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "RR0816P-102-D" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "fb3d4baf-a3a0-4bc7-96ca-44b539a9b375") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005ccfcd96") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "47c6374f-51ed-459d-a2cc-51425ae488af") + ) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "922a5009-c63b-46e0-910e-36140a804b15") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "690e3dd2-f244-469e-adce-6156d3ac1cf2") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "6e811984-1e5c-4b94-8b36-dd5e1479129b") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "67c29c31-b3fc-470b-829a-f931d9e29a4c") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "880bc351-223e-4d65-b1fb-95bf59eadf16") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "dd353f9e-66f5-4d52-8b68-cb2972a870f7") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "48097985-51d8-4af7-be3c-7340ba24ed23") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "bf76ea18-e5a5-440a-9cd2-439fad8b7fb6") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8adfa32d-8dce-4290-9c0c-7d89ffc8f30d") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "0c4003d4-7275-469f-932a-66359c0a2aa1") + (effects + (font + (size 0.4 0.4) + (thickness 0.075) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 24 "Net-(R4-Pad1)") + (pintype "passive") + (uuid "b835c146-fff6-4eff-8f1d-4aeb77c42b97") + ) + (pad "2" smd roundrect + (at 0.825 0) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 80 "Net-(U4A--)") + (pintype "passive") + (uuid "3f7104da-41f7-4918-9b13-cdd5a9502747") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70ccc0") + (at 97.85 57.9) + (descr "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") + (tags "resistor") + (property "Reference" "R3" + (at -2.73 0.02 0) + (layer "F.SilkS") + (uuid "feb1e131-7696-4f25-94c3-e793c8402902") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "249" + (at 0 1.5 0) + (layer "F.Fab") + (uuid "1910feba-b2f1-4de4-8fc8-f4e279d3d64b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c916e415-4e3f-4229-afb6-5c5229fba007") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "95229b1d-066d-47cd-87be-d02cf50452c9") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "fc51e913-a279-4101-a3c0-2751dd30282c") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Vishay" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "5e2f9244-4ffd-48e3-b73b-a767acf41a0f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "RCS0603249RFKEA" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "65fecb3b-fc4f-45e8-a1a0-79a22743e476") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005ccfce48") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b1bbc1ec-2d1f-463e-bccb-f507c87e4377") + ) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "56285ca4-0f61-411a-b800-a0964ae9c0ad") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b504725c-ee84-40b0-9a48-4794970fc114") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "18615f02-cff9-467e-b629-f43c975ad6fc") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "79fa6cf8-cac6-4694-b7f6-17988d51d3d9") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "803b824f-4469-4dc4-a493-3c961f50c32b") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ca37c31a-bc34-4ac8-a1b7-4d7107927410") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1dfc5203-d324-46e0-bd54-e93e179ef846") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3250ea3a-54e8-4ec2-bbe9-7b3ab6c9da37") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "400b5073-43f1-4b82-8f4c-169f2a74cd9e") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "7889cc80-0c2f-4966-aba6-b58e84d2fed0") + (effects + (font + (size 0.4 0.4) + (thickness 0.075) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "e01f2300-bc52-4832-b315-f45969607d2f") + ) + (pad "2" smd roundrect + (at 0.825 0) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 80 "Net-(U4A--)") + (pintype "passive") + (uuid "72e5e112-1a1c-49f7-aee6-5f7d68747f59") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70cdc2") + (at 126.1 57.15 90) + (descr "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") + (tags "resistor") + (property "Reference" "R7" + (at -2.6 0 -90) + (layer "F.SilkS") + (uuid "f166b9ac-3e9d-441d-8083-f816f57baff4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "DNF" + (at 0 1.5 90) + (layer "F.Fab") + (uuid "eb0b6047-9a63-44a3-81f7-35c1ef28144f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a9f7973a-1603-40d2-959d-2306cc3e6330") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a083ad70-c814-4076-9917-5b284a4348a9") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7d171a7d-9c51-40d5-afc7-f7c0533b8e4d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Config" "DNF" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "6eefe5cf-c426-4851-9e7b-6aa8da82568a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b3fa4a8") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "deb359e2-b925-416c-9a37-91b8b2b735aa") + ) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ccaa7559-af74-4143-8398-4040bacde42f") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f4ca0889-a014-410d-9843-9ab8251b71fe") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e5e16778-844c-461c-9c7b-8e8b1872fe30") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b331f3fd-4303-4139-b4ab-21f0a0b9a218") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2af74f13-248f-4aff-b950-9c41b2c11d3b") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "83e999aa-0826-4bf0-87ac-c9bcbf1e6ec6") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "66059b19-4a59-4ebb-b04c-ae511f353916") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6019dd9f-c9d8-4fa4-b57d-97389d07f5e9") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "371c8a4a-c550-436c-a126-b0fed9a14bf2") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "22ab22ee-401c-4588-af7a-4066e5af5717") + (effects + (font + (size 0.4 0.4) + (thickness 0.075) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0 90) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "760853a9-f763-46be-ae03-0988193c17ea") + ) + (pad "2" smd roundrect + (at 0.825 0 90) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 82 "Net-(U8B--)") + (pintype "passive") + (uuid "13ed2b35-7130-4b50-9ccb-85d81808c6a4") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Connector_Coaxial:SMA_Amphenol_132134_Vertical" + (locked yes) + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70cdfb") + (at 118.6 57) + (descr "https://www.amphenolrf.com/downloads/dl/file/id/2187/product/2843/132134_customer_drawing.pdf") + (tags "SMA THT Female Jack Vertical ExtendedLegs") + (property "Reference" "J5" + (at 0 -5 0) + (layer "F.SilkS") + (hide yes) + (uuid "d0854efd-ccd9-4493-8098-1c848e12d7f2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Piezo_Out" + (at 0 5 0) + (layer "F.SilkS") + (uuid "905c9acf-0180-48ff-be2d-d6f02d93d662") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Connector_Coaxial:SMA_Amphenol_132134_Vertical" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4b5fbeb3-638e-45f4-be6f-c0ea55a7d98c") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b72f15e2-bf1f-481b-8bab-818aebc1ff08") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2e3c0c33-6287-476a-8381-1245f3b0d9bb") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Config" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "73e8ea36-8ce2-4334-9295-7c7650ee33c7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "MFN" "Amphenol" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "6d76c0ba-fce2-4271-ba37-9bd9ccec6a57") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "901-144-8RFX" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "d1b4825b-ed08-4ba9-a27a-912f47f689e0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "*BNC* *SMA* *SMB* *SMC* *Cinch* *LEMO* *UMRF* *MCX* *U.FL*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b05798e") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr through_hole) + (fp_line + (start -3.68 -1.8) + (end -3.68 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c9436bf3-89b1-4680-8688-b652606d0ea8") + ) + (fp_line + (start -1.8 -3.68) + (end 1.8 -3.68) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "23aa7171-2fc2-40a1-b2ab-1a7423af5cb3") + ) + (fp_line + (start -1.8 3.68) + (end 1.8 3.68) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a5154aa7-1df5-4017-8063-c8edec51a7a1") + ) + (fp_line + (start 3.68 -1.8) + (end 3.68 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d962d5aa-1ffb-4393-a70b-c518f72f7bb7") + ) + (fp_line + (start -4.17 -4.17) + (end -4.17 4.17) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1dcc33b0-8b74-4d6a-b7a7-c43091a77745") + ) + (fp_line + (start -4.17 -4.17) + (end 4.17 -4.17) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "95838f33-228b-4fcb-8cc0-37bc89d4524c") + ) + (fp_line + (start 4.17 4.17) + (end -4.17 4.17) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2c60b427-75c3-460a-85a3-331eeaab72a0") + ) + (fp_line + (start 4.17 4.17) + (end 4.17 -4.17) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e4130e97-2220-4e01-a266-28f4b827e33c") + ) + (fp_line + (start -3.5 -3.5) + (end -3.5 3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f1720603-a47e-4161-9f51-360e5d56a186") + ) + (fp_line + (start -3.5 -3.5) + (end 3.5 -3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "75b26f65-879e-4f23-9a4b-9787e830483d") + ) + (fp_line + (start -3.5 3.5) + (end 3.5 3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "167b6003-41bb-4c8a-bbe3-55ca861920b8") + ) + (fp_line + (start 3.5 -3.5) + (end 3.5 3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "fa5126ed-32fc-469d-8217-8d5c8abc1d87") + ) + (fp_circle + (center 0 0) + (end 3.175 0) + (stroke + (width 0.1) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "f0cf6c8d-3c1b-40e9-993d-c6ce475713e4") + ) + (fp_text user "${REFERENCE}" + (at 0 -5 0) + (layer "F.Fab") + (uuid "51252b83-67ee-4347-adfe-bfc9e244a7fc") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0) + (size 2.05 2.05) + (drill 1.5) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 73 "Net-(J5-In)") + (pinfunction "In") + (pintype "passive") + (uuid "7d63d288-794d-45ac-86ed-591724c584fa") + ) + (pad "2" thru_hole circle + (at -2.54 -2.54) + (size 2.25 2.25) + (drill 1.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Ext") + (pintype "passive") + (uuid "2af898d6-7503-4456-bcf8-7d67105bcb15") + ) + (pad "2" thru_hole circle + (at -2.54 2.54) + (size 2.25 2.25) + (drill 1.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Ext") + (pintype "passive") + (uuid "954bd691-b8c0-42c1-b6ac-238c526890b5") + ) + (pad "2" thru_hole circle + (at 2.54 -2.54) + (size 2.25 2.25) + (drill 1.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Ext") + (pintype "passive") + (uuid "11e2b864-758f-4f02-8cd3-cff0e34cf9d5") + ) + (pad "2" thru_hole circle + (at 2.54 2.54) + (size 2.25 2.25) + (drill 1.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Ext") + (pintype "passive") + (uuid "4537a68d-40e3-478b-81c4-d93cb3fe57c4") + ) + (model "${KICAD8_3DMODEL_DIR}/Connector_Coaxial.3dshapes/SMA_Amphenol_132134_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Connector_Coaxial:SMA_Amphenol_132134_Vertical" + (locked yes) + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70ce3d") + (at 139.1 57) + (descr "https://www.amphenolrf.com/downloads/dl/file/id/2187/product/2843/132134_customer_drawing.pdf") + (tags "SMA THT Female Jack Vertical ExtendedLegs") + (property "Reference" "J12" + (at 0 -5 0) + (layer "F.SilkS") + (hide yes) + (uuid "a20eb811-d2f7-49ea-865b-d1d743d1ab19") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Error_In" + (at 0 5 0) + (layer "F.SilkS") + (uuid "2f61f4a4-ca0f-404e-b102-36ceb54f780b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Connector_Coaxial:SMA_Amphenol_132134_Vertical" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b4b58111-364f-46cb-9d41-55d3551d904a") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bb40146c-b2f6-4c9c-8c67-7b7c48a63cf6") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "31bc0ea1-9dc5-4655-bc0d-455c27289f9f") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Config" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "cceccaaf-5aa8-459e-803c-f58b9e3e9449") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "MFN" "Amphenol" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "d569d988-08ee-4670-9bf1-b9a804cb610d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "901-144-8RFX" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "85c2c515-6ca1-4687-8a81-c8dd2c945eb2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "*BNC* *SMA* *SMB* *SMC* *Cinch* *LEMO* *UMRF* *MCX* *U.FL*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b0591ae") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr through_hole) + (fp_line + (start -3.68 -1.8) + (end -3.68 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1c235644-8797-4e2d-b338-1f1c1cc31592") + ) + (fp_line + (start -1.8 -3.68) + (end 1.8 -3.68) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b213948e-9201-4282-b69e-150bcf295fce") + ) + (fp_line + (start -1.8 3.68) + (end 1.8 3.68) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "52fb6b9d-1c69-4419-b815-d095d128a27f") + ) + (fp_line + (start 3.68 -1.8) + (end 3.68 1.8) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "356917e9-a753-44d9-a318-0bd84bd4b2a1") + ) + (fp_line + (start -4.17 -4.17) + (end -4.17 4.17) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8904a452-1805-45ea-9a9a-1753e8fd8b7f") + ) + (fp_line + (start -4.17 -4.17) + (end 4.17 -4.17) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4dab1e03-842a-4417-a62d-54e085c06d4b") + ) + (fp_line + (start 4.17 4.17) + (end -4.17 4.17) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a103e16c-a88e-4239-84a8-c969323f6155") + ) + (fp_line + (start 4.17 4.17) + (end 4.17 -4.17) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "6000f0bc-1b0a-48ec-9df7-770e88d69798") + ) + (fp_line + (start -3.5 -3.5) + (end -3.5 3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "153d1dc7-769e-45a1-883b-b9b0d3572f2e") + ) + (fp_line + (start -3.5 -3.5) + (end 3.5 -3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c8c2541f-ee3c-4eeb-85f1-f67a8ed641ee") + ) + (fp_line + (start -3.5 3.5) + (end 3.5 3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0ef9df97-4160-4c1c-b28a-4d12942a4fd1") + ) + (fp_line + (start 3.5 -3.5) + (end 3.5 3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b1423e60-d5e4-47d6-b457-1e04c9632e13") + ) + (fp_circle + (center 0 0) + (end 3.175 0) + (stroke + (width 0.1) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "a204a82b-b1e8-4a25-8353-e838a388e41e") + ) + (fp_text user "${REFERENCE}" + (at 0 -5 0) + (layer "F.Fab") + (uuid "a020d3a5-7be6-4a71-b73f-fe999d29d9f4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0) + (size 2.05 2.05) + (drill 1.5) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 76 "Net-(J12-In)") + (pinfunction "In") + (pintype "passive") + (uuid "657ed9aa-616f-4b6b-9e5f-2db80a53358f") + ) + (pad "2" thru_hole circle + (at -2.54 -2.54) + (size 2.25 2.25) + (drill 1.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Ext") + (pintype "passive") + (uuid "8de59d30-8762-4b66-88c7-a6843d949b99") + ) + (pad "2" thru_hole circle + (at -2.54 2.54) + (size 2.25 2.25) + (drill 1.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Ext") + (pintype "passive") + (uuid "93bd70f5-abcd-4270-ae35-51c1252aef78") + ) + (pad "2" thru_hole circle + (at 2.54 -2.54) + (size 2.25 2.25) + (drill 1.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Ext") + (pintype "passive") + (uuid "50eeaab8-c683-4694-8e0b-aa58940d1a38") + ) + (pad "2" thru_hole circle + (at 2.54 2.54) + (size 2.25 2.25) + (drill 1.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "Ext") + (pintype "passive") + (uuid "f00507e4-8db0-4b45-930d-40e309faae16") + ) + (model "${KICAD8_3DMODEL_DIR}/Connector_Coaxial.3dshapes/SMA_Amphenol_132134_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Inductor_SMD:L_0805_2012Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70ce79") + (at 76.7 93.1) + (descr "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") + (tags "inductor") + (property "Reference" "FB1" + (at 0 -2.1 0) + (layer "F.SilkS") + (uuid "e5f77ccd-76c0-4ce6-956a-7e173df17394") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "TDK MPZ2012S221A" + (at 0 2.1 0) + (layer "F.Fab") + (uuid "d12a1f7b-fd43-42ac-b711-913b20349de7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Inductor_SMD:L_0805_2012Metric" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d4ea97f9-92f6-4e4f-b12f-49985b6a3f6b") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8d8b1d1e-8da5-46f7-b347-1e95e283b012") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e682ac2b-e401-4f18-b470-8ca3f8925bda") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "TDK" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "e806f9c9-7169-4f8c-8eb4-2f233879dc70") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "MPZ2012S221AT000" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "379fdfaf-aba5-48dc-961e-a3222d420b0b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Inductor_* L_* *Ferrite*") + (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005b0b0023") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.kicad_sch") + (attr smd) + (fp_line + (start -0.399622 -0.56) + (end 0.399622 -0.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ffeb0eac-908c-41fe-b4fc-63d46286a94b") + ) + (fp_line + (start -0.399622 0.56) + (end 0.399622 0.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "826c7ff3-abb5-4ea6-a9ff-609f3ad07d2c") + ) + (fp_line + (start -1.75 -0.85) + (end 1.75 -0.85) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f6ccbf62-deeb-4bf1-b5ce-af9c12f5f473") + ) + (fp_line + (start -1.75 0.85) + (end -1.75 -0.85) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "76f595f3-fab7-44e7-bdff-666484de6fbe") + ) + (fp_line + (start 1.75 -0.85) + (end 1.75 0.85) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8147c3f5-0efb-49e7-969f-62a128035e0b") + ) + (fp_line + (start 1.75 0.85) + (end -1.75 0.85) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "01822621-c093-4ca9-bebd-c943fefa6c06") + ) + (fp_line + (start -1 -0.45) + (end 1 -0.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "02bb98bd-9301-4033-a144-00836c9d7b61") + ) + (fp_line + (start -1 0.45) + (end -1 -0.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "77c3d1ed-2fb6-4fc5-bbd3-fab12073a5c6") + ) + (fp_line + (start 1 -0.45) + (end 1 0.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "34891d5b-0454-451b-91eb-4184d731ecac") + ) + (fp_line + (start 1 0.45) + (end -1 0.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d9756fe3-b9fd-4c8b-ab58-e27291df916d") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "e16ec0d1-3844-4d33-bf22-3dcfab5bceb7") + (effects + (font + (size 0.5 0.5) + (thickness 0.075) + ) + ) + ) + (pad "1" smd roundrect + (at -1.0625 0) + (size 0.875 1.2) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 1 "/Supply_Ref/+15V") + (pintype "passive") + (uuid "5c03a6af-34db-47ba-8562-29cc77f88317") + ) + (pad "2" smd roundrect + (at 1.0625 0) + (size 0.875 1.2) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 51 "Net-(C2-Pad1)") + (pintype "passive") + (uuid "1d990ee1-cacd-4595-a980-c4e94ac55f7f") + ) + (model "${KICAD8_3DMODEL_DIR}/Inductor_SMD.3dshapes/L_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "TestPoint:TestPoint_THTPad_D1.5mm_Drill0.7mm" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70cea0") + (at 89.49 76.46) + (descr "THT pad as test Point, diameter 1.5mm, hole diameter 0.7mm") + (tags "test point THT pad") + (property "Reference" "TP3" + (at 0 -2 0) + (layer "F.SilkS") + (hide yes) + (uuid "8a56e8e3-786e-40f4-aa50-dcb45848af59") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "TestPoint" + (at 0 2 0) + (layer "F.SilkS") + (uuid "c63877ac-d67a-4a69-8437-21898d2c23aa") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "TestPoint:TestPoint_THTPad_D1.5mm_Drill0.7mm" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2dd8cb4e-cd5e-4b46-8a94-68109a208274") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e2e811f6-3c55-42ba-bded-7fa6c7d62fdf") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ae5fee3a-7533-44b9-b175-bff75f18c10b") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Config" "DNF" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "75ad90c4-5a7b-457c-b314-d4d596ce05de") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "MFN" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "290a04a4-13a5-4b02-9e99-af7adea18da5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "9a240482-8e45-47e6-b9d0-f15e16ce86f8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Pin* Test*") + (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005c229a96") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.kicad_sch") + (attr exclude_from_pos_files) + (fp_circle + (center 0 0) + (end 0 0.95) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "91643d4b-4c3d-4357-be1b-2576785f9c5a") + ) + (fp_circle + (center 0 0) + (end 1.25 0) + (stroke + (width 0.05) + (type solid) + ) + (fill none) + (layer "F.CrtYd") + (uuid "c1afa4c4-3c75-4774-b726-8d009dcdab4b") + ) + (fp_text user "${REFERENCE}" + (at 0 -1.65 0) + (layer "F.Fab") + (uuid "6fe6cfdc-f6a4-4d97-895b-7355073d0441") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole circle + (at 0 0) + (size 1.5 1.5) + (drill 0.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pinfunction "1") + (pintype "passive") + (uuid "6ee306b9-3071-4332-b14f-034188f40cc2") + ) + ) + (footprint "custom:Laird_Technologies_BMI-S-107_44.37x44.37mm" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70cf00") + (at 88.7 107.9) + (descr "Laird Technologies BMI-S-107 Shielding Cabinet One Piece SMD 44.37x44.37mm") + (tags "Shielding Cabinet") + (property "Reference" "J9" + (at 0 -23.59 0) + (layer "F.SilkS") + (uuid "1fa44520-662e-4851-b2d7-296ac04a376b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "RF_Shield_One_Piece" + (at 0 23.59 0) + (layer "F.Fab") + (uuid "b51b7a3a-7a6f-40fc-addb-ac44454c1441") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "custom:Laird_Technologies_BMI-S-107_44.37x44.37mm" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0a7c1a03-20af-4eae-b1fc-acdee1bf7256") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4195aeb3-e7fa-4cba-a28f-b86757b26ffa") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c3b3b4c9-c48c-4376-b9bb-ac14e9cda8be") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Config" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "7d64d622-b48c-49d1-8ca3-2cb4dcac2503") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "MFN" "Wurth Electronics" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "fcf04be7-e25a-448e-ba2d-46034e6c121b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "36907406S" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "963f6b63-f3df-4411-bdeb-351676083881") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005b0d8bf4") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.kicad_sch") + (attr smd) + (fp_line + (start -22.335 -18.85) + (end -22.335 -17.25) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "3a3817a8-c948-4f43-92fc-0ed131fc8dbd") + ) + (fp_line + (start -22.335 -12.85) + (end -22.335 -11.25) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "9cb08388-dd5f-4f5d-b812-781bfb427bd5") + ) + (fp_line + (start -22.335 -6.85) + (end -22.335 -5.25) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "e4566576-1a50-4894-a557-8c1c6c8b8db5") + ) + (fp_line + (start -22.335 -0.85) + (end -22.335 0.85) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "55aa486d-20fa-46a2-9672-da16bca9d6f1") + ) + (fp_line + (start -22.335 5.25) + (end -22.335 6.85) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "7eb0b977-5c36-4e53-9e8d-44cd71f33614") + ) + (fp_line + (start -22.335 11.25) + (end -22.335 12.85) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "b8a12b14-4eb1-47e8-8db9-0c6b31cde5fb") + ) + (fp_line + (start -22.335 17.25) + (end -22.335 18.85) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "2bca8a12-6357-4326-8c1c-f7a23affb022") + ) + (fp_line + (start -18.85 -22.335) + (end -17.25 -22.335) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "0516d70d-5b61-485a-8894-c3c378e2acd0") + ) + (fp_line + (start -18.85 22.335) + (end -17.25 22.335) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "5e00a06b-9494-4d58-a1eb-040ae293bf9a") + ) + (fp_line + (start -12.85 -22.335) + (end -11.25 -22.335) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "82ba9b4b-f42a-4d40-af7a-eb66aaa041fc") + ) + (fp_line + (start -12.85 22.335) + (end -11.25 22.335) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "184e1133-3536-47f5-b371-880ea0bdaa6e") + ) + (fp_line + (start -6.85 -22.335) + (end -5.25 -22.335) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "b9b7e7d4-1ddf-4a73-9152-ea3a2fcb1921") + ) + (fp_line + (start -6.85 22.335) + (end -5.25 22.335) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "de38397d-fdc1-484f-8b94-f34f32d109ff") + ) + (fp_line + (start -0.85 -22.335) + (end 0.85 -22.335) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "43a8f3cb-5080-4db0-a189-8c3774125139") + ) + (fp_line + (start -0.85 22.335) + (end 0.85 22.335) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "3f072b79-e214-460f-918b-3bf92ff54ceb") + ) + (fp_line + (start 5.25 -22.335) + (end 6.85 -22.335) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "4ad2c48c-4cc4-4283-9dbf-73c292a67d0e") + ) + (fp_line + (start 5.25 22.335) + (end 6.85 22.335) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "caf41256-f405-4873-b1e1-35e07e7ee716") + ) + (fp_line + (start 11.25 -22.335) + (end 12.85 -22.335) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "8c0bf7c7-b407-4809-b7ea-50a1a970ea32") + ) + (fp_line + (start 11.25 22.335) + (end 12.85 22.335) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "b42923f3-dfc8-4cfa-9acf-60b215cd0ba8") + ) + (fp_line + (start 17.25 -22.335) + (end 18.85 -22.335) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "b683c06a-cabc-4387-9ac6-a711b288ca8d") + ) + (fp_line + (start 17.25 22.335) + (end 18.85 22.335) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "6be48439-089a-457d-8cfa-ccc96bf40710") + ) + (fp_line + (start 22.335 -18.85) + (end 22.335 -17.25) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "9f300a28-90c0-42d0-9340-e7f1acde7856") + ) + (fp_line + (start 22.335 -12.85) + (end 22.335 -11.25) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "93cc25aa-213e-4f1d-9c71-30d891c48e14") + ) + (fp_line + (start 22.335 -6.85) + (end 22.335 -5.25) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "74acf6cb-db42-4730-8043-c3b4665d6862") + ) + (fp_line + (start 22.335 -0.85) + (end 22.335 0.85) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "a9d7c73a-b3d0-461f-b3b7-203eeb1570d1") + ) + (fp_line + (start 22.335 5.25) + (end 22.335 6.85) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "854cd124-abbe-4d78-9b04-48e1a86538f7") + ) + (fp_line + (start 22.335 11.25) + (end 22.335 12.85) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "b334c749-0bd3-484a-864d-a781ba0f624c") + ) + (fp_line + (start 22.335 17.25) + (end 22.335 18.85) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "c0e145f9-a9b4-4eff-900f-ed706c1a3204") + ) + (fp_line + (start -22.85 -22.85) + (end -22.85 22.85) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "38b8a9d3-a976-491e-a327-7f44be41bee7") + ) + (fp_line + (start -22.85 22.85) + (end 22.85 22.85) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ccbb6a81-c9c2-494f-b658-7a371084af5c") + ) + (fp_line + (start -21.4 -21.4) + (end 21.4 -21.4) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1c97f6c1-32ae-48ed-b62e-a489b11a3303") + ) + (fp_line + (start -21.4 21.4) + (end -21.4 -21.4) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f8d6a3de-bc52-4740-b9fe-7ca455fafeb6") + ) + (fp_line + (start 21.4 -21.4) + (end 21.4 21.4) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "be86f246-01b2-476f-8b5d-9184b3ed3419") + ) + (fp_line + (start 21.4 21.4) + (end -21.4 21.4) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "63f359d7-270b-43e6-b43c-e415dc82a25f") + ) + (fp_line + (start 22.85 -22.85) + (end -22.85 -22.85) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b0e7a8b5-1de3-4816-8de6-29e86b8744ea") + ) + (fp_line + (start 22.85 22.85) + (end 22.85 -22.85) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2d9cc77a-0fde-44a8-a435-543937fdda6b") + ) + (fp_line + (start -22.185 -22.185) + (end -22.185 22.185) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.Fab") + (uuid "278fcfa4-8920-4012-a2ec-6aee4956f413") + ) + (fp_line + (start -22.185 22.185) + (end 22.185 22.185) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.Fab") + (uuid "d70f1b84-91ab-418d-baf9-c3b2d5cb1470") + ) + (fp_line + (start 22.185 -22.185) + (end -22.185 -22.185) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.Fab") + (uuid "bae3cfeb-216e-4772-afac-33ea72b7b7e3") + ) + (fp_line + (start 22.185 22.185) + (end 22.185 -22.185) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.Fab") + (uuid "2e1741e5-a725-40aa-96ae-32440810f7b8") + ) + (pad "1" smd rect + (at -22.09 -22.09) + (size 1 1) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "Shield") + (pintype "passive") + (uuid "5d58b7e0-82a9-4823-9741-d1c4895c0af0") + ) + (pad "1" smd rect + (at -22.09 -20.37) + (size 1 2.44) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "Shield") + (pintype "passive") + (uuid "f8ca641c-75e1-4c06-afc4-46c83f66b735") + ) + (pad "1" smd rect + (at -22.09 -15.05) + (size 1 3.8) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "Shield") + (pintype "passive") + (uuid "6bb70a13-eee5-4e87-be5d-dd7a06233692") + ) + (pad "1" smd rect + (at -22.09 -9.05) + (size 1 3.8) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "Shield") + (pintype "passive") + (uuid "fee89ae9-2d19-4ad7-9d59-c1cd3c30f7ba") + ) + (pad "1" smd rect + (at -22.09 -3.05) + (size 1 3.8) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "Shield") + (pintype "passive") + (uuid "9d789b8e-b5f7-4fc7-8088-490d292361fe") + ) + (pad "1" smd rect + (at -22.09 3.05) + (size 1 3.8) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "Shield") + (pintype "passive") + (uuid "d7ef62ed-855a-4b26-a634-c0735c9cb3de") + ) + (pad "1" smd rect + (at -22.09 9.05) + (size 1 3.8) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "Shield") + (pintype "passive") + (uuid "079b443e-df36-4133-90f0-e264da5171b4") + ) + (pad "1" smd rect + (at -22.09 15.05) + (size 1 3.8) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "Shield") + (pintype "passive") + (uuid "76cd80f4-4a85-42cc-879b-a73eebf6338a") + ) + (pad "1" smd rect + (at -22.09 20.37) + (size 1 2.44) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "Shield") + (pintype "passive") + (uuid "98e07899-7ae4-43e8-8e68-1c2b4ff09a54") + ) + (pad "1" smd rect + (at -22.09 22.09) + (size 1 1) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "Shield") + (pintype "passive") + (uuid "2720d685-1afa-4f08-a76d-fbec06bb7b74") + ) + (pad "1" smd rect + (at -20.37 -22.09) + (size 2.44 1) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "Shield") + (pintype "passive") + (uuid "a342adb5-c811-4755-8401-e8eddf48402e") + ) + (pad "1" smd rect + (at -20.37 22.09) + (size 2.44 1) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "Shield") + (pintype "passive") + (uuid "3f702e20-5f20-4347-8ed4-764f81581042") + ) + (pad "1" smd rect + (at -15.05 -22.09) + (size 3.8 1) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "Shield") + (pintype "passive") + (uuid "525112e0-31a3-433d-ac03-44833f8216ba") + ) + (pad "1" smd rect + (at -15.05 22.09) + (size 3.8 1) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "Shield") + (pintype "passive") + (uuid "3f21826a-78d4-4763-9fd3-01b279bc052c") + ) + (pad "1" smd rect + (at -9.05 -22.09) + (size 3.8 1) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "Shield") + (pintype "passive") + (uuid "a58dcd10-6b84-4fde-a3f2-65fcccb80600") + ) + (pad "1" smd rect + (at -9.05 22.09) + (size 3.8 1) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "Shield") + (pintype "passive") + (uuid "d121f734-371f-4b0e-a484-fbb96cdefaf8") + ) + (pad "1" smd rect + (at -3.05 -22.09) + (size 3.8 1) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "Shield") + (pintype "passive") + (uuid "5c6b6771-79f3-4662-8a68-4815324ee7df") + ) + (pad "1" smd rect + (at -3.05 22.09) + (size 3.8 1) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "Shield") + (pintype "passive") + (uuid "c319af58-d3cc-4697-95e7-d8631a8c97cb") + ) + (pad "1" smd rect + (at 3.05 -22.09) + (size 3.8 1) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "Shield") + (pintype "passive") + (uuid "a871f660-eea0-462c-a9a3-cd402e1911d8") + ) + (pad "1" smd rect + (at 3.05 22.09) + (size 3.8 1) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "Shield") + (pintype "passive") + (uuid "3558c690-df2f-4ff0-bf47-0675361a35a9") + ) + (pad "1" smd rect + (at 9.05 -22.09) + (size 3.8 1) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "Shield") + (pintype "passive") + (uuid "c17e2af5-a31c-456b-a4d1-76bac3ad4476") + ) + (pad "1" smd rect + (at 9.05 22.09) + (size 3.8 1) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "Shield") + (pintype "passive") + (uuid "4d924d5c-9dce-4dc2-9552-5443a43bb4e5") + ) + (pad "1" smd rect + (at 15.05 -22.09) + (size 3.8 1) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "Shield") + (pintype "passive") + (uuid "25c40d00-32ce-494d-859a-a8c21688d76e") + ) + (pad "1" smd rect + (at 15.05 22.09) + (size 3.8 1) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "Shield") + (pintype "passive") + (uuid "137afd24-5bf5-4c5b-bc58-06cf13b6d9a4") + ) + (pad "1" smd rect + (at 20.37 -22.09) + (size 2.44 1) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "Shield") + (pintype "passive") + (uuid "aa7e7e2b-5c35-483e-a9fd-0dd29222d666") + ) + (pad "1" smd rect + (at 20.37 22.09) + (size 2.44 1) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "Shield") + (pintype "passive") + (uuid "5278c9b3-ec61-4d2c-bd33-95613d9c088a") + ) + (pad "1" smd rect + (at 22.09 -22.09) + (size 1 1) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "Shield") + (pintype "passive") + (uuid "c9840f31-0bbf-456e-b868-26b04df49b6f") + ) + (pad "1" smd rect + (at 22.09 -20.37) + (size 1 2.44) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "Shield") + (pintype "passive") + (uuid "0fc5c3d2-60ff-49be-99b9-d52ed7704c30") + ) + (pad "1" smd rect + (at 22.09 -15.05) + (size 1 3.8) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "Shield") + (pintype "passive") + (uuid "104bdda6-8af2-4384-85ba-aa72f01da026") + ) + (pad "1" smd rect + (at 22.09 -9.05) + (size 1 3.8) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "Shield") + (pintype "passive") + (uuid "11a71262-7a42-4f2c-94c3-04c2a723fd0e") + ) + (pad "1" smd rect + (at 22.09 -3.05) + (size 1 3.8) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "Shield") + (pintype "passive") + (uuid "4839d03d-4fc3-4db4-bc12-c6aead689b97") + ) + (pad "1" smd rect + (at 22.09 3.05) + (size 1 3.8) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "Shield") + (pintype "passive") + (uuid "05bd9a20-5174-4571-88c7-e0febbbcfcb5") + ) + (pad "1" smd rect + (at 22.09 9.05) + (size 1 3.8) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "Shield") + (pintype "passive") + (uuid "3ec85306-fe1c-49a4-ab05-053bb12259f3") + ) + (pad "1" smd rect + (at 22.09 15.05) + (size 1 3.8) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "Shield") + (pintype "passive") + (uuid "1d3596e6-53c4-4c10-bb24-d42a8563b254") + ) + (pad "1" smd rect + (at 22.09 20.37) + (size 1 2.44) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "Shield") + (pintype "passive") + (uuid "fdbf4af1-2523-457b-88a9-341386ba25c8") + ) + (pad "1" smd rect + (at 22.09 22.09) + (size 1 1) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "Shield") + (pintype "passive") + (uuid "9031dcf8-14db-43f0-9541-df60e69fa29b") + ) + ) + (footprint "custom:APQ-Logo" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70cfab") + (at 114.9 127.4) + (property "Reference" "LOGO1" + (at 0 0.5 0) + (layer "F.SilkS") + (hide yes) + (uuid "35d2ed48-678f-4511-9dc8-ceb74669834e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Logo_APQ" + (at 0 4.58 0) + (layer "F.Fab") + (uuid "bb000f5b-fc0d-45b5-b420-8e345ea6b3fb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "custom:APQ-Logo" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3e6fe3ac-a80e-417b-a232-c23af4aa1883") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "095b2f55-c40e-4746-b4e9-b3debf1bf39c") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1015452c-1658-46ca-aa8f-6c14aa13fdd8") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "9c7173fa-aed1-4a10-89cb-139decf84295") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "91b27769-ed3a-4571-b388-1c555d866276") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Sim.Enable" "0" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "4185ce4c-9714-4cdc-b59c-a41efe0a37aa") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (path "/00000000-0000-0000-0000-00005f6d3841") + (sheetname "Root") + (sheetfile "RedPitaya_Lockbox.kicad_sch") + (attr exclude_from_pos_files exclude_from_bom) + (fp_circle + (center 0.25 0.5) + (end 0.504 0.5) + (stroke + (width 1) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "997071f9-94aa-4e08-9318-e2226da24aae") + ) + (fp_circle + (center 0.25 2.5) + (end 0.504 2.5) + (stroke + (width 1) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "a8712bee-5ea2-4387-8412-0b989125798a") + ) + (fp_circle + (center 0.25 4.5) + (end 0.504 4.5) + (stroke + (width 1) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "441dd6a1-a7f9-49e3-a9e8-3ec28534208c") + ) + (fp_circle + (center 2.25 0.5) + (end 2.504 0.5) + (stroke + (width 1) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "fc4f697a-8a01-45b8-a62f-8a21af34fc61") + ) + (fp_circle + (center 2.25 2.5) + (end 2.504 2.5) + (stroke + (width 1) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "09e5f2fb-7525-4f67-bebf-33e8dfbba8c0") + ) + (fp_circle + (center 2.25 4.5) + (end 2.504 4.5) + (stroke + (width 1) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "d545093a-e7e0-4f48-9d60-3bcef8c2968c") + ) + (fp_circle + (center 4.25 0.5) + (end 4.504 0.5) + (stroke + (width 1) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "b63d4891-d7e6-4f5f-b5b7-976a424209ff") + ) + (fp_circle + (center 4.25 2.5) + (end 4.504 2.5) + (stroke + (width 1) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "a31bc7bb-8acf-4340-8b72-ae7473e11fa0") + ) + (fp_circle + (center 4.25 4.5) + (end 4.504 4.5) + (stroke + (width 1) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "214f93e1-375a-4f89-88b6-112a1ea1b242") + ) + (fp_text user "APQ" + (at 11.91 2.66 0) + (layer "F.SilkS") + (uuid "8d0cb66f-aa21-495a-a142-c42e9681c490") + (effects + (font + (size 4.4 4.4) + (thickness 0.6) + ) + ) + ) + ) + (footprint "Connector_Molex:Molex_KK-254_AE-6410-03A_1x03_P2.54mm_Vertical" + (locked yes) + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70cfd5") + (at 78.5 63.98 90) + (descr "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") + (tags "connector Molex KK-254 vertical") + (property "Reference" "RV1" + (at 2.54 -4.12 90) + (layer "F.SilkS") + (uuid "7887c005-5f0f-4509-a087-9255be73013f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10k" + (at 2.54 4.08 90) + (layer "F.Fab") + (uuid "7269b132-b578-4907-ba05-3afa3d365f8b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Connector_Molex:Molex_KK-254_AE-6410-03A_1x03_P2.54mm_Vertical" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "518f884b-b37b-4663-a7f1-3f6e286f2cc2") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "620f6d24-2fa7-4906-a6f5-d0d80f8ed396") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ac133452-f636-4e4e-9fdc-d905a93f639f") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Config" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "a85c955d-c535-4654-a0df-3cca8ea2da6f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "MFN" "Molex" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "32654666-3519-483c-9e12-0bf805a0970c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "22-23-2031" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "5c3a808e-5430-4e16-b9e4-9f508a37d3a0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Potentiometer*") + (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005d6da79f") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.kicad_sch") + (attr through_hole) + (fp_line + (start 6.46 -3.03) + (end -1.38 -3.03) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8d9f04b2-4d86-4e78-9709-095db1382baf") + ) + (fp_line + (start 4.28 -3.03) + (end 4.28 -2.43) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "999b7c5f-afe1-41b3-9d1a-2b2de1ebcb4d") + ) + (fp_line + (start 1.74 -3.03) + (end 1.74 -2.43) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "127884a1-8579-4d6f-aa29-b90bd1ed7ebe") + ) + (fp_line + (start -0.8 -3.03) + (end -0.8 -2.43) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "65324bfa-3ce4-4ead-a732-21b6f70e8039") + ) + (fp_line + (start -1.38 -3.03) + (end -1.38 2.99) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "178662d8-4573-4aa1-b72e-d6c424feb40e") + ) + (fp_line + (start 5.88 -2.43) + (end 5.88 -3.03) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9439d976-18a7-4d3f-b6f7-f00312f44297") + ) + (fp_line + (start 4.28 -2.43) + (end 5.88 -2.43) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a90737f7-01a9-4a33-9edb-a4fb1a2ade00") + ) + (fp_line + (start 3.34 -2.43) + (end 3.34 -3.03) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e7156e0c-6a49-4300-b5e1-678ba7f2430a") + ) + (fp_line + (start 1.74 -2.43) + (end 3.34 -2.43) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "35a61da1-1f1e-4242-a9e0-dfe4f6fa993e") + ) + (fp_line + (start 0.8 -2.43) + (end 0.8 -3.03) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b80cb23a-b340-4716-9c81-c1607e3178ab") + ) + (fp_line + (start -0.8 -2.43) + (end 0.8 -2.43) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "90f53cdd-c0de-4608-a5bd-9c6bbaff8890") + ) + (fp_line + (start -1.67 -2) + (end -1.67 2) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3f9e10bc-715c-495d-8ca2-954e24b39ae5") + ) + (fp_line + (start 4.83 1.46) + (end 5.08 1.99) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "28b1de58-cb92-410e-9e09-5172404e0564") + ) + (fp_line + (start 0.25 1.46) + (end 4.83 1.46) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c06d3fe7-4875-4b77-b323-b5ca6c8b719a") + ) + (fp_line + (start 5.08 1.99) + (end 5.08 2.99) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b006c93a-1701-4381-a0b2-f3cf970cc343") + ) + (fp_line + (start 0 1.99) + (end 0.25 1.46) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9400dbff-51b2-4bad-a86d-d1b285024b06") + ) + (fp_line + (start 0 1.99) + (end 5.08 1.99) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8a378d31-c123-4915-8bb9-863a351381de") + ) + (fp_line + (start 6.46 2.99) + (end 6.46 -3.03) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1bd05ef3-af81-497a-b99e-88981c435875") + ) + (fp_line + (start 4.83 2.99) + (end 4.83 1.99) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "60906886-b4c4-4e45-afbc-f2dffcc25233") + ) + (fp_line + (start 0.25 2.99) + (end 0.25 1.99) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7932c5f6-ce73-4b9c-a1c1-f6d4e649fd15") + ) + (fp_line + (start 0 2.99) + (end 0 1.99) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b9455e47-660a-4d9b-b868-a592098e0135") + ) + (fp_line + (start -1.38 2.99) + (end 6.46 2.99) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4a14fd5c-d0c7-42b3-b91c-c5684a44ac08") + ) + (fp_line + (start 6.85 -3.42) + (end -1.77 -3.42) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "bcb4a940-2e8c-4948-acac-e48c102ed06e") + ) + (fp_line + (start -1.77 -3.42) + (end -1.77 3.38) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c95b797f-1961-4971-a97e-a779dbaa4811") + ) + (fp_line + (start 6.85 3.38) + (end 6.85 -3.42) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "29f02760-1760-439d-9b9f-b7ff49eb7efd") + ) + (fp_line + (start -1.77 3.38) + (end 6.85 3.38) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "230796b4-90cd-467d-be07-1c2bb7f2bc3a") + ) + (fp_line + (start 6.35 -2.92) + (end -1.27 -2.92) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c064b977-6d46-4b1d-87d8-cdac40ed7bcf") + ) + (fp_line + (start -1.27 -2.92) + (end -1.27 2.88) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9c5c51e1-bb02-4ac9-bc24-f389f8941f83") + ) + (fp_line + (start -1.27 -0.5) + (end -0.562893 0) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ce0c5b97-9c4b-494b-8dad-af622216f785") + ) + (fp_line + (start -0.562893 0) + (end -1.27 0.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ad6774a6-ee86-41b6-b326-1f7eb3be2d04") + ) + (fp_line + (start 6.35 2.88) + (end 6.35 -2.92) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "23a5df91-e215-4da2-92b6-5f5503218953") + ) + (fp_line + (start -1.27 2.88) + (end 6.35 2.88) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "94625338-ad58-4445-9d65-33464262e588") + ) + (fp_text user "${REFERENCE}" + (at 2.54 -2.22 90) + (layer "F.Fab") + (uuid "23b30e52-db37-4797-8e45-46acfcc6354a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole roundrect + (at 0 0 90) + (size 1.74 2.19) + (drill 1.19) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (roundrect_rratio 0.143678) + (net 2 "GND") + (pinfunction "1") + (pintype "passive") + (uuid "56d334c9-ef41-427f-bda6-d7c035b938e3") + ) + (pad "2" thru_hole oval + (at 2.54 0 90) + (size 1.74 2.19) + (drill 1.19) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 97 "/Input_Output_Module/SET") + (pinfunction "2") + (pintype "passive") + (uuid "1fb523d1-2c4b-4c96-9b40-256e0cf9807f") + ) + (pad "3" thru_hole oval + (at 5.08 0 90) + (size 1.74 2.19) + (drill 1.19) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 118 "/Input_Output_Module/+10V_ref") + (pinfunction "3") + (pintype "passive") + (uuid "c0b7cc59-7d50-4881-9bb1-4b2d5ac93e29") + ) + (model "${KICAD8_3DMODEL_DIR}/Connector_Molex.3dshapes/Molex_KK-254_AE-6410-03A_1x03_P2.54mm_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70d0a4") + (at 101.5 98.9 180) + (descr "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") + (tags "resistor") + (property "Reference" "R15" + (at -3.2 0 180) + (layer "F.SilkS") + (uuid "79e6629a-7f98-47fa-a94c-4a35bd076620") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1M" + (at 0 1.5 180) + (layer "F.Fab") + (uuid "d74ad23e-63b1-4221-983a-2677e25d8e08") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4373f1d3-2a78-4a76-9b0b-283f61b65909") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2d50a100-4c9b-4382-a61b-f84cab242d18") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c34868c2-8e43-429a-a459-beda89cf7584") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Panasonic" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "4e110cd2-2469-4e59-8c9f-7e48e09dfc8b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "ERJ-3RED1004V" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "b6b06277-8917-47e8-aaba-c62b190dcfc8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/00000000-0000-0000-0000-00005b053798/175f2b90-3b83-4e62-bee5-efbaa5985a1e") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ddfec471-4d2a-489b-96a0-da82567f7ad4") + ) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b74591a8-390a-4c8b-9dc5-cfe97c7da09b") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ab1632bd-24fe-4e50-be86-acc5d71a4bb7") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8d52331a-248b-4d9b-9649-70681c89381b") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7a24d519-6901-4386-94a7-848812473239") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "00faf6a8-92a8-477d-bfab-385fcd3f26df") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e7bc7c9d-0f64-4008-bb7d-d82f69ad3763") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "cd9b7304-d83d-4984-8916-275bdd9f27a7") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8bdcdf1e-9488-46b4-84cb-5c262d094fbb") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e960d29f-8671-40bd-acca-705afca1c2a5") + ) + (fp_text user "${REFERENCE}" + (at 0 0 180) + (layer "F.Fab") + (uuid "2b534a34-0b01-4c36-ac41-6d41e77734ef") + (effects + (font + (size 0.4 0.4) + (thickness 0.075) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0 180) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 21 "/Supply_Ref/+5V") + (pintype "passive") + (uuid "ebe41efa-801d-481e-a97c-3f732ff56c6f") + ) + (pad "2" smd roundrect + (at 0.825 0 180) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 12 "Net-(U6-FB)") + (pintype "passive") + (uuid "061f858f-5ab8-4093-b70d-c5d2e5f61532") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_1206_3216Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70d0d4") + (at 77.6 50.9 180) + (descr "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") + (tags "capacitor") + (property "Reference" "C9" + (at -3.23 0.02 180) + (layer "F.SilkS") + (uuid "cb63814a-9e02-4750-941d-2bab0fdb3933") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100n" + (at 0 2 180) + (layer "F.Fab") + (uuid "c9312051-92dc-4234-9d8e-0c48347708c5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_1206_3216Metric" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f5b3645d-a0d5-4a14-a891-da93be641b85") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "10eec4da-4788-4107-ad8a-ec6730c273f4") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a53b3f95-bc1a-4cc7-98af-603bdac98d8c") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "KEMET" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "2ca148bd-00a6-4fd7-ab4f-c9599f25625f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "C1206C104K3GEC7210" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "7b11c716-0d43-4e19-a4d4-534e20e0e7e0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005b054c4b") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.kicad_sch") + (attr smd) + (fp_line + (start -0.711252 0.91) + (end 0.711252 0.91) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a07bede1-cdc4-452d-b795-8e03855a8f14") + ) + (fp_line + (start -0.711252 -0.91) + (end 0.711252 -0.91) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d09ac5fb-67fe-4016-8ad7-b5e25f5b9427") + ) + (fp_line + (start 2.3 1.15) + (end -2.3 1.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4778cfd8-4e37-4e9a-bf8e-33f253c67904") + ) + (fp_line + (start 2.3 -1.15) + (end 2.3 1.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "01ccfd02-13d9-4e35-a520-63b05a8f76f6") + ) + (fp_line + (start -2.3 1.15) + (end -2.3 -1.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "bc12e778-4325-4984-9b3e-9e331f54326f") + ) + (fp_line + (start -2.3 -1.15) + (end 2.3 -1.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "721d304c-21c3-4b5f-b2aa-742f833372b0") + ) + (fp_line + (start 1.6 0.8) + (end -1.6 0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d984af0d-cff6-4660-b58b-40ffe1ddeba1") + ) + (fp_line + (start 1.6 -0.8) + (end 1.6 0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8469b2ab-63a2-443f-ad05-767997fea1f9") + ) + (fp_line + (start -1.6 0.8) + (end -1.6 -0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "52d1ee65-1a99-4dbd-8cee-79212b533ac5") + ) + (fp_line + (start -1.6 -0.8) + (end 1.6 -0.8) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3495f644-f3b2-45a6-8a49-afb0c0b002e7") + ) + (fp_text user "${REFERENCE}" + (at 0 -1.75 180) + (layer "F.Fab") + (uuid "f89194c2-c4e3-466c-a571-a65bfb02de43") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -1.475 0 180) + (size 1.15 1.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.217391) + (net 2 "GND") + (pintype "passive") + (uuid "ad553675-0d40-4b60-a800-1dd1563afb94") + ) + (pad "2" smd roundrect + (at 1.475 0 180) + (size 1.15 1.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.217391) + (net 9 "Net-(U2-SET)") + (pintype "passive") + (uuid "a5a638f7-9fcf-40b0-813a-27ec21d4e921") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0805_2012Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70d107") + (at 73.8 94.1 -90) + (descr "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") + (tags "capacitor") + (property "Reference" "C1" + (at -0.1 1.8 -90) + (layer "F.SilkS") + (uuid "1f357df5-fa15-4928-a0b2-06605e23f8e9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "4.7u" + (at 0 1.75 -90) + (layer "F.Fab") + (uuid "9df33ace-eb83-4673-a18c-d7e0ca7b0ba2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e33e5ca1-7e23-4649-b850-42ee936248d8") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7e5717d7-c7b3-4936-91ed-6d34d4a3a93c") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5d2085be-0851-424b-bf1e-a0fe4b4e458b") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Wurth Electronics" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "1e65d724-d756-4423-81fc-94a2d2505d1d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "885012107013" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "99ea90e3-55ea-48bb-abf4-41fcb3e6d0cf") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-00005b0ae6a5") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.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 "c8e731fa-d9ee-4c9a-a688-6129400e4cd0") + ) + (fp_line + (start -0.261252 -0.735) + (end 0.261252 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d1a5589b-f902-4b83-8d2e-04885ff21128") + ) + (fp_line + (start -1.7 0.98) + (end -1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "6e17bc1f-3564-4657-a190-18f0cd1cafd3") + ) + (fp_line + (start 1.7 0.98) + (end -1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7bea838f-5434-48af-8df0-832fb7a8f402") + ) + (fp_line + (start -1.7 -0.98) + (end 1.7 -0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c0fe5dfa-58d2-47e3-ad55-3d2e0beca241") + ) + (fp_line + (start 1.7 -0.98) + (end 1.7 0.98) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d61d4c94-dab0-41ac-8e1f-f5dafe47303e") + ) + (fp_line + (start -1 0.625) + (end -1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "392071cb-9689-4145-94db-f67386eced00") + ) + (fp_line + (start 1 0.625) + (end -1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f6d56921-fb15-4fae-ad2f-872c6e6ff820") + ) + (fp_line + (start -1 -0.625) + (end 1 -0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "93a10210-ed30-438b-b2c5-e91b598b5315") + ) + (fp_line + (start 1 -0.625) + (end 1 0.625) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7d91a894-5982-4ed4-a735-19f49711430b") + ) + (fp_text user "${REFERENCE}" + (at 0 -1.5 -90) + (layer "F.Fab") + (uuid "65f6cd03-fa1d-49e3-90dd-da85b3889284") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -0.95 0 270) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 1 "/Supply_Ref/+15V") + (pintype "passive") + (uuid "c237b36e-0e63-492b-b669-1396ec87193d") + ) + (pad "2" smd roundrect + (at 0.95 0 270) + (size 1 1.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "2fb64f05-51b5-4718-b20d-9cbad5847d76") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0603_1608Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70d137") + (at 100.9 57.15 90) + (descr "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") + (tags "capacitor") + (property "Reference" "C14" + (at -0.1 1.4 -90) + (layer "F.SilkS") + (uuid "9b4f0549-3010-4034-850c-d44169062e34") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100n" + (at 0 1.5 90) + (layer "F.Fab") + (uuid "a9306e6e-6055-4bef-bde7-fdc8ef547b8b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a8c4a45b-eac0-40b1-818f-b41cf2cf1b76") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7a67e28c-0c31-4192-b433-2af06b3787fe") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "78ab90df-9e76-4522-a9ef-add4393ae0ed") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Kemet" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "a1c71de2-4ac4-4f44-934d-2a7fdf036bdf") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "C0603C104K5RECAUTO" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "6da9ffb7-2622-412f-b43a-6105a4c583eb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005b057937") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start -0.14058 -0.51) + (end 0.14058 -0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "75958371-85b3-42b0-a311-2d001ed49d23") + ) + (fp_line + (start -0.14058 0.51) + (end 0.14058 0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "918cc319-9ab3-4ec8-8384-f9d1a6741f4c") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c79c0a90-6472-445e-b69e-943d21c30c4d") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d302705d-4627-4557-b3bf-d05e32a2bb69") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f2054992-929f-45bd-b00f-758605d80ccd") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "19a4ee91-ef89-4563-8414-904947b4e761") + ) + (fp_line + (start 0.8 -0.4) + (end 0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "55ae7aa8-febb-4482-b3ae-fd728ad12157") + ) + (fp_line + (start -0.8 -0.4) + (end 0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "20c9f93f-5d5b-4074-867a-d430287d7df6") + ) + (fp_line + (start 0.8 0.4) + (end -0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "606b4e8c-c101-40d8-9532-5354ecbc6bef") + ) + (fp_line + (start -0.8 0.4) + (end -0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8e0321ae-ef61-457a-9ad9-7d17a6193feb") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "c650bddf-3bdf-46f4-bb6c-de5bae0804dd") + (effects + (font + (size 0.3 0.3) + (thickness 0.075) + ) + ) + ) + (pad "1" smd roundrect + (at -0.775 0 90) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "c187a902-3a71-43fc-8c11-9769615b8623") + ) + (pad "2" smd roundrect + (at 0.775 0 90) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 4 "/Input_Output_Module/+12V") + (pintype "passive") + (uuid "b8fec1a3-8786-4721-ae72-d40486b75e71") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0603_1608Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005f70d167") + (at 101.5 100.4 180) + (descr "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") + (tags "capacitor") + (property "Reference" "C16" + (at -3.2 0 180) + (layer "F.SilkS") + (uuid "24fbddc6-ea28-4c4d-8380-0acdbdfc1e20") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10p" + (at 0 1.5 180) + (layer "F.Fab") + (uuid "93de89b6-d0e2-437a-95f5-318a9465f0f8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8eb21edf-c48a-4bb5-a85d-ae2cfe639707") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5695f938-708a-431e-8f61-0af244a3381b") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "fffdf0ee-4c22-401e-a16a-518bfc15f62b") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Wurth Electronics" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "935bfc2c-92c8-42b0-adf8-af60bc122988") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "885012006051" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "26931f14-2719-4640-9b4d-bdd34f2d1c0f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/00000000-0000-0000-0000-00005b053798/efa57d14-9e75-4419-aa78-afdad4527733") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.kicad_sch") + (attr smd) + (fp_line + (start -0.14058 0.51) + (end 0.14058 0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5a7ad17d-3e91-459c-a377-d1b737c5e561") + ) + (fp_line + (start -0.14058 -0.51) + (end 0.14058 -0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8d0df9ac-d81e-4c15-8acf-c4a44fad9733") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9862ce05-94ab-4729-94a1-f4f1ad81567e") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ed81df9f-aa2e-48ed-bba8-d7ba0819ce5e") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a3a19aef-34bd-421c-b353-fb2a8111c33f") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b507e2a3-e22d-4aa9-9dac-5d983612444f") + ) + (fp_line + (start 0.8 0.4) + (end -0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "994cfe72-4125-46f0-8758-5090fe724faf") + ) + (fp_line + (start 0.8 -0.4) + (end 0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2e1ae5fa-e7f9-4987-88fe-7073989dc836") + ) + (fp_line + (start -0.8 0.4) + (end -0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9d312fa2-ea00-4125-9e4a-30b65223e31f") + ) + (fp_line + (start -0.8 -0.4) + (end 0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5b9b2b4e-7aea-44a5-b26e-c7fb8be18d55") + ) + (fp_text user "${REFERENCE}" + (at 0 0 180) + (layer "F.Fab") + (uuid "04d1161c-fa66-440a-bf3c-55e6d39e769e") + (effects + (font + (size 0.3 0.3) + (thickness 0.075) + ) + ) + ) + (pad "1" smd roundrect + (at -0.775 0 180) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 21 "/Supply_Ref/+5V") + (pintype "passive") + (uuid "b0c64f5f-e0ef-4ca1-98e5-207ac6f55afd") + ) + (pad "2" smd roundrect + (at 0.775 0 180) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 12 "Net-(U6-FB)") + (pintype "passive") + (uuid "d9333b41-2bfd-47cd-8ac1-36b4d3df86d8") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005faeb17a") + (at 159.75 58.75 -90) + (descr "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") + (tags "resistor") + (property "Reference" "R28" + (at 0 -1.43 90) + (layer "F.SilkS") + (uuid "8711ce36-814e-45ef-bf4b-d9d703401df6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1M" + (at 0 1.43 90) + (layer "F.Fab") + (uuid "f5df381e-e56c-4844-943b-c3bfbf52bbe5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7855ac31-188c-4473-a690-9f90b330ac31") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "99b49c13-db9d-40dd-abec-baf6aa5ae4d5") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3b09bca9-843f-4e10-995d-8b66d8b706c0") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Panasonic" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "9f225d49-dca0-4645-9ecf-863aa632a563") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "ERJ-3RED1004V" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "5968590c-cfeb-4d05-a1fb-fff5b32eed90") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005faf2109") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ecd42afd-4324-4155-b0ce-1f1cb163d91b") + ) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "be28a79b-b3b8-4045-862a-73e497e7f659") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "52a4e523-f291-4664-89de-3959ebb84038") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "154f0c44-b604-4622-899c-05864c9641b3") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c180de7c-db99-48c5-909f-515151b29ca9") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0c0b7344-c810-4bdc-a2e3-1979127062cf") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "115daae6-d055-4393-9502-76e0cf3d7216") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "18add517-b4dc-448b-9679-3e1b7b0de77d") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "cf850efa-9cec-41f6-8fe7-567d5c48f8a0") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "16001391-08ac-4960-9286-3fbc61384c45") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "63c8d14e-f29b-4b7a-9f33-01791462aff9") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0 270) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 75 "Net-(J11-In)") + (pintype "passive") + (uuid "c7ea569d-681d-482b-bd54-8ebef213bc89") + ) + (pad "2" smd roundrect + (at 0.825 0 270) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "43f0d82f-e4aa-4bad-add8-815219c3db85") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00005faeb4bf") + (at 86.5 65.2125 -90) + (descr "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") + (tags "resistor") + (property "Reference" "R30" + (at 0.0375 1.5 90) + (layer "F.SilkS") + (uuid "476554ce-508c-44fa-ac6e-73d0f3b7b9ee") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1M" + (at 0 1.43 90) + (layer "F.Fab") + (uuid "1ec8d4f0-1834-4301-8b77-fbccbb44515c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "941f97b0-ec87-4314-bf84-a2c74b58a910") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "37174129-eec7-4544-b9ba-a1198e55cee9") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0944943d-304c-4f2c-b8f8-a5ede713c40e") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Panasonic" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "4acc9013-64c7-4cf1-a446-997e2ac89e1b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "ERJ-3RED1004V" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "3ed83fa8-7172-4fdd-ba21-796f37b5e89e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/00000000-0000-0000-0000-00005b057307/00000000-0000-0000-0000-00005fb11c66") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9f7a37f9-812e-4e38-a8fc-127d3648dd18") + ) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1c6f769e-d040-49e4-8d93-83b4b6cd5010") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2beb5f21-3a0f-4985-9686-0efa454a4777") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8ff2faaa-b5c8-489c-94c9-54da6170d318") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "fa7c931f-d96e-474b-8d47-cd64bff83c12") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b8928029-6510-463c-9dc8-a64e788cf4b0") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "79593cd7-56bd-4b12-980a-00ce2e493e3f") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "febb04d0-f1f1-4fe3-993b-4c43372a46a2") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a5419387-9b76-423e-a029-184708f53b10") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "cd2bafc9-4d15-457a-8e25-d766b5147a94") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "55fd74f4-fce0-4609-b352-96d778a2bd3c") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0 270) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 72 "Net-(J3-In)") + (pintype "passive") + (uuid "c72f4595-468e-420e-b5c8-a1b1b767dea2") + ) + (pad "2" smd roundrect + (at 0.825 0 270) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "1b278328-f67c-4c63-92bd-cb18dd030c29") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00006154be8c") + (at 57.3 128.8 -90) + (descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, open") + (tags "solder jumper open") + (property "Reference" "JP1" + (at 3.2 0.1 90) + (layer "F.SilkS") + (uuid "7522e2ca-3afd-4106-a716-3768716f0544") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "GND" + (at 0 1.9 90) + (layer "F.Fab") + (uuid "0f3a9728-5671-4940-a7ba-a95a9a45f213") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "497e34e2-6112-44d1-a4ad-386d5c37ed5f") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5271263e-332e-4df8-afe0-21846ced089c") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ccffe06e-5fa7-4315-8305-5204e4c65c54") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Config" "DNF" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "61b0791a-8b2c-49f2-98d4-45efcdc6a45f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "SolderJumper*Open*") + (path "/00000000-0000-0000-0000-00006156e035") + (sheetname "Root") + (sheetfile "RedPitaya_Lockbox.kicad_sch") + (zone_connect 1) + (attr exclude_from_pos_files exclude_from_bom) + (fp_line + (start 0.7 1) + (end -0.7 1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "69c0347a-c766-49d1-a34c-3080bd15a691") + ) + (fp_line + (start -1.4 0.3) + (end -1.4 -0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b281d530-c64f-451a-bfca-e61daffc0372") + ) + (fp_line + (start 1.4 -0.3) + (end 1.4 0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "717ca2cc-d77c-4298-928d-bb3b943e2d8c") + ) + (fp_line + (start -0.7 -1) + (end 0.7 -1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "df72841c-97a8-40a7-a9c0-c57307213237") + ) + (fp_arc + (start -0.7 1) + (mid -1.194975 0.794975) + (end -1.4 0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "11c4db3c-d2f6-4527-97b5-d233f277a334") + ) + (fp_arc + (start 1.4 0.3) + (mid 1.194975 0.794975) + (end 0.7 1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e67f36b1-09ba-442a-9d27-de10d1c242de") + ) + (fp_arc + (start -1.4 -0.3) + (mid -1.194975 -0.794975) + (end -0.7 -1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3d9b0f4e-797f-43e3-b1d1-5056dd879e36") + ) + (fp_arc + (start 0.7 -1) + (mid 1.194975 -0.794975) + (end 1.4 -0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cda2d938-fbf4-4bc0-bf61-55bdcb712ce7") + ) + (fp_line + (start 1.65 1.25) + (end -1.65 1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7afdc900-03bb-40ae-baee-72155feb4a5b") + ) + (fp_line + (start 1.65 1.25) + (end 1.65 -1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "79e4e961-e584-4dc6-bd9d-2cfb28e79bfc") + ) + (fp_line + (start -1.65 -1.25) + (end -1.65 1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "815f6332-9152-439e-9544-2492199cafb1") + ) + (fp_line + (start -1.65 -1.25) + (end 1.65 -1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d79e9021-ecd4-4602-8e7c-b246c30ebbde") + ) + (pad "1" smd custom + (at -0.65 0 270) + (size 1 0.5) + (layers "F.Cu" "F.Mask") + (net 125 "Net-(J1-Pin_a1)") + (pinfunction "A") + (pintype "passive") + (zone_connect 2) + (thermal_bridge_angle 45) + (options + (clearance outline) + (anchor rect) + ) + (primitives + (gr_circle + (center 0 0.25) + (end 0.5 0.25) + (width 0) + (fill yes) + ) + (gr_circle + (center 0 -0.25) + (end 0.5 -0.25) + (width 0) + (fill yes) + ) + (gr_poly + (pts + (xy 0.5 0.75) (xy 0 0.75) (xy 0 -0.75) (xy 0.5 -0.75) + ) + (width 0) + (fill yes) + ) + ) + (uuid "6e95a05e-cf3b-4937-a979-ff8f329c3da0") + ) + (pad "2" smd custom + (at 0.65 0 270) + (size 1 0.5) + (layers "F.Cu" "F.Mask") + (net 2 "GND") + (pinfunction "B") + (pintype "passive") + (zone_connect 2) + (thermal_bridge_angle 45) + (options + (clearance outline) + (anchor rect) + ) + (primitives + (gr_circle + (center 0 0.25) + (end 0.5 0.25) + (width 0) + (fill yes) + ) + (gr_circle + (center 0 -0.25) + (end 0.5 -0.25) + (width 0) + (fill yes) + ) + (gr_poly + (pts + (xy 0 0.75) (xy -0.5 0.75) (xy -0.5 -0.75) (xy 0 -0.75) + ) + (width 0) + (fill yes) + ) + ) + (uuid "0a5c41ef-5620-4757-8e16-6abff1a63775") + ) + ) + (footprint "Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00006154be9e") + (at 58 39.5 -90) + (descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, open") + (tags "solder jumper open") + (property "Reference" "JP2" + (at -2.4 0 180) + (layer "F.SilkS") + (uuid "9561cd89-3a58-47b5-9289-b2bbbb07faf0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "+15V" + (at 0 1.9 90) + (layer "F.Fab") + (uuid "06beee8a-e952-4d75-9894-3236bd51d101") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a7118efd-e8bc-4e72-9b6c-dbbb4a98d81d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "44c6adc1-f462-4f1f-9998-47198df1bea5") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f6206d43-7c5a-423a-95cb-2bc70c4f590f") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Config" "DNF" + (at 0 0 180) + (layer "F.Fab") + (hide yes) + (uuid "50cd7a51-69a7-4699-97c0-fcc703936fe1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "SolderJumper*Open*") + (path "/00000000-0000-0000-0000-0000615d2f6d") + (sheetname "Root") + (sheetfile "RedPitaya_Lockbox.kicad_sch") + (zone_connect 1) + (attr exclude_from_pos_files exclude_from_bom) + (fp_line + (start 0.7 1) + (end -0.7 1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9118277b-8ae5-4da5-bf48-cf6b529cd160") + ) + (fp_line + (start -1.4 0.3) + (end -1.4 -0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "65503de5-75c2-452f-b657-9dbcd5040ef9") + ) + (fp_line + (start 1.4 -0.3) + (end 1.4 0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "17fc8985-5981-4072-9486-f79435a0e72f") + ) + (fp_line + (start -0.7 -1) + (end 0.7 -1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ee8391b8-7357-46db-8b15-49a2c9c94fc7") + ) + (fp_arc + (start -0.7 1) + (mid -1.194975 0.794975) + (end -1.4 0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d652e5f4-48fd-41e2-b247-aee51cbbd861") + ) + (fp_arc + (start 1.4 0.3) + (mid 1.194975 0.794975) + (end 0.7 1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b5582709-bfe3-496a-bf6e-b6f6548d92b5") + ) + (fp_arc + (start -1.4 -0.3) + (mid -1.194975 -0.794975) + (end -0.7 -1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d3b3a975-6c94-451b-8d80-ef16b3983d66") + ) + (fp_arc + (start 0.7 -1) + (mid 1.194975 -0.794975) + (end 1.4 -0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "431a98f2-159a-4b84-b525-f027eabfd56a") + ) + (fp_line + (start 1.65 1.25) + (end -1.65 1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e56fed63-eb32-4945-9e13-c60421ce06fe") + ) + (fp_line + (start 1.65 1.25) + (end 1.65 -1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "496dea36-b1c9-467a-a8d8-4a8bb3c7700e") + ) + (fp_line + (start -1.65 -1.25) + (end -1.65 1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "361cc4cd-0668-48a6-8703-a478ccc5abb8") + ) + (fp_line + (start -1.65 -1.25) + (end 1.65 -1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "dd643340-8362-49ca-b7d3-2b698d191542") + ) + (pad "1" smd custom + (at -0.65 0 270) + (size 1 0.5) + (layers "F.Cu" "F.Mask") + (net 131 "Net-(J1-Pin_a31)") + (pinfunction "A") + (pintype "passive") + (zone_connect 2) + (thermal_bridge_angle 45) + (options + (clearance outline) + (anchor rect) + ) + (primitives + (gr_circle + (center 0 0.25) + (end 0.5 0.25) + (width 0) + (fill yes) + ) + (gr_circle + (center 0 -0.25) + (end 0.5 -0.25) + (width 0) + (fill yes) + ) + (gr_poly + (pts + (xy 0.5 0.75) (xy 0 0.75) (xy 0 -0.75) (xy 0.5 -0.75) + ) + (width 0) + (fill yes) + ) + ) + (uuid "6cb401ed-01f5-4db1-963c-fe546f5104df") + ) + (pad "2" smd custom + (at 0.65 0 270) + (size 1 0.5) + (layers "F.Cu" "F.Mask") + (net 1 "/Supply_Ref/+15V") + (pinfunction "B") + (pintype "passive") + (zone_connect 2) + (thermal_bridge_angle 45) + (options + (clearance outline) + (anchor rect) + ) + (primitives + (gr_circle + (center 0 0.25) + (end 0.5 0.25) + (width 0) + (fill yes) + ) + (gr_circle + (center 0 -0.25) + (end 0.5 -0.25) + (width 0) + (fill yes) + ) + (gr_poly + (pts + (xy 0 0.75) (xy -0.5 0.75) (xy -0.5 -0.75) (xy 0 -0.75) + ) + (width 0) + (fill yes) + ) + ) + (uuid "bb599e6c-9a1a-4a79-8410-6d9a4ce79744") + ) + ) + (footprint "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00006154beb1") + (at 60 128.8 -90) + (descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip") + (tags "net tie solder jumper bridged") + (property "Reference" "JP3" + (at 0 -1.8 -90) + (layer "F.SilkS") + (uuid "ace75b81-17d1-4f2a-9f9d-348aa6b8da27") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "+15V" + (at 0 1.9 -90) + (layer "F.Fab") + (uuid "c6ea24bd-a959-401b-bdb9-304799982946") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f98b9018-8a34-44f4-b69e-d1eba07361f1") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "de8bb32d-6fd1-442d-92e4-39e76abd37a3") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "634edd1e-2e70-4486-a3e7-ddcd39ea7111") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Config" "DNF" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "bbd8808b-efe6-477e-b003-54a95446f50a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "MFN" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "ffe329fb-9f07-42fe-8959-47eb6f5d3374") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "ef4fa2d1-3a08-4c0f-afd7-b915b4b3f171") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "SolderJumper*Bridged*") + (path "/00000000-0000-0000-0000-0000615158e2") + (sheetname "Root") + (sheetfile "RedPitaya_Lockbox.kicad_sch") + (zone_connect 1) + (attr exclude_from_pos_files exclude_from_bom) + (net_tie_pad_groups "1, 2") + (fp_poly + (pts + (xy 0.25 -0.3) (xy -0.25 -0.3) (xy -0.25 0.3) (xy 0.25 0.3) + ) + (stroke + (width 0) + (type solid) + ) + (fill solid) + (layer "F.Cu") + (uuid "4c5de21a-aac3-4dd2-a435-e6c8efa00eef") + ) + (fp_line + (start 0.7 1) + (end -0.7 1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "103613a0-bc25-42cd-825e-b514096131e2") + ) + (fp_line + (start -1.4 0.3) + (end -1.4 -0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1a0c8dfe-a20b-4210-ba45-84d6773c2a62") + ) + (fp_line + (start 1.4 -0.3) + (end 1.4 0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "73c2ffee-ddeb-45c6-a846-717a7dd7cad8") + ) + (fp_line + (start -0.7 -1) + (end 0.7 -1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "28c37773-5f2a-438d-bf13-edca54042986") + ) + (fp_arc + (start -0.7 1) + (mid -1.194975 0.794975) + (end -1.4 0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5e396fe3-e778-4d0b-acee-47e2fb91395f") + ) + (fp_arc + (start 1.4 0.3) + (mid 1.194975 0.794975) + (end 0.7 1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "78920439-ef0b-43d4-9f9f-309899e0fdd9") + ) + (fp_arc + (start -1.4 -0.3) + (mid -1.194975 -0.794975) + (end -0.7 -1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "01f69323-556c-4ff1-8fd1-ead24a9f29b1") + ) + (fp_arc + (start 0.7 -1) + (mid 1.194975 -0.794975) + (end 1.4 -0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "227fc5e1-85d4-423d-9824-ead2d9c24b04") + ) + (fp_line + (start 1.65 1.25) + (end -1.65 1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "58e03c25-ec35-4521-8efb-8f4ebd1807e0") + ) + (fp_line + (start 1.65 1.25) + (end 1.65 -1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "95c2bac3-80aa-4540-aa29-55e5d94382b4") + ) + (fp_line + (start -1.65 -1.25) + (end -1.65 1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "bb71e999-f74a-4578-a18e-7f6f677219f8") + ) + (fp_line + (start -1.65 -1.25) + (end 1.65 -1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b451cef6-d7c7-48e0-ae7e-0d9f53153909") + ) + (pad "1" smd custom + (at -0.65 0 270) + (size 1 0.5) + (layers "F.Cu" "F.Mask") + (net 125 "Net-(J1-Pin_a1)") + (pinfunction "A") + (pintype "passive") + (zone_connect 2) + (thermal_bridge_angle 45) + (options + (clearance outline) + (anchor rect) + ) + (primitives + (gr_circle + (center 0 0.25) + (end 0.5 0.25) + (width 0) + (fill yes) + ) + (gr_circle + (center 0 -0.25) + (end 0.5 -0.25) + (width 0) + (fill yes) + ) + (gr_poly + (pts + (xy 0.5 0.75) (xy 0 0.75) (xy 0 -0.75) (xy 0.5 -0.75) + ) + (width 0) + (fill yes) + ) + ) + (uuid "790e7397-a26f-486e-a2cb-f9260e33d605") + ) + (pad "2" smd custom + (at 0.65 0 270) + (size 1 0.5) + (layers "F.Cu" "F.Mask") + (net 1 "/Supply_Ref/+15V") + (pinfunction "B") + (pintype "passive") + (zone_connect 2) + (thermal_bridge_angle 45) + (options + (clearance outline) + (anchor rect) + ) + (primitives + (gr_circle + (center 0 0.25) + (end 0.5 0.25) + (width 0) + (fill yes) + ) + (gr_circle + (center 0 -0.25) + (end 0.5 -0.25) + (width 0) + (fill yes) + ) + (gr_poly + (pts + (xy 0 0.75) (xy -0.5 0.75) (xy -0.5 -0.75) (xy 0 -0.75) + ) + (width 0) + (fill yes) + ) + ) + (uuid "900772f4-9343-4fbb-9dcc-a7296f82004c") + ) + ) + (footprint "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00006154bec4") + (at 64.1 119.3) + (descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip") + (tags "net tie solder jumper bridged") + (property "Reference" "JP4" + (at 0 -2.1 0) + (layer "F.SilkS") + (uuid "6eeb1b95-1986-40f6-87c8-05687fa15048") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "+15V" + (at 0 1.9 0) + (layer "F.Fab") + (uuid "74a8968a-81da-4f34-8d88-c76701daa1c3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "fffb94b1-9a01-4ee4-856c-22b1c53f0a8d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "dbb54593-d030-4186-a52a-44750d212ae1") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b764e0ed-f837-4902-b5e9-4c49ab773f9b") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Config" "DNF" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "cc0f2e26-590c-4841-bad8-8fc008576f07") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "MFN" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "fc291307-b91f-426c-a227-178f38278c75") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "89143d4d-b88c-47f5-a771-dea2704990b4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "SolderJumper*Bridged*") + (path "/00000000-0000-0000-0000-00006152fdf0") + (sheetname "Root") + (sheetfile "RedPitaya_Lockbox.kicad_sch") + (zone_connect 1) + (attr exclude_from_pos_files exclude_from_bom) + (net_tie_pad_groups "1, 2") + (fp_poly + (pts + (xy 0.25 -0.3) (xy -0.25 -0.3) (xy -0.25 0.3) (xy 0.25 0.3) + ) + (stroke + (width 0) + (type solid) + ) + (fill solid) + (layer "F.Cu") + (uuid "e95f8ec7-e6fe-4dc9-b288-0565ed7eb54a") + ) + (fp_line + (start -1.4 0.3) + (end -1.4 -0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b1dcbf86-b20d-4778-bccb-734dc7e38b95") + ) + (fp_line + (start -0.7 -1) + (end 0.7 -1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4d1597d8-8544-4411-9a6c-496e548556e8") + ) + (fp_line + (start 0.7 1) + (end -0.7 1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "59777612-16ad-4967-bb1c-339c77108354") + ) + (fp_line + (start 1.4 -0.3) + (end 1.4 0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0fc63207-6e0c-4f7b-bbf9-d189af92f92e") + ) + (fp_arc + (start -1.4 -0.3) + (mid -1.194975 -0.794975) + (end -0.7 -1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "dbb06e94-74fc-4fc4-962b-3988c48353c5") + ) + (fp_arc + (start -0.7 1) + (mid -1.194975 0.794975) + (end -1.4 0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "00f3203b-56a6-4eea-9a26-f35739c86f78") + ) + (fp_arc + (start 0.7 -1) + (mid 1.194975 -0.794975) + (end 1.4 -0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "aa3d443b-2114-498c-afb2-7e6c3f05697f") + ) + (fp_arc + (start 1.4 0.3) + (mid 1.194975 0.794975) + (end 0.7 1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "fbea1271-b0c3-4d4e-bf82-dafc5a69b703") + ) + (fp_line + (start -1.65 -1.25) + (end -1.65 1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d5e839d8-78c3-42fe-b022-c8741720f612") + ) + (fp_line + (start -1.65 -1.25) + (end 1.65 -1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "fd40ba6e-9fc9-4ba9-ba61-594ca47db550") + ) + (fp_line + (start 1.65 1.25) + (end -1.65 1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "48593537-6265-4608-af8e-b395bd3b84c7") + ) + (fp_line + (start 1.65 1.25) + (end 1.65 -1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8f855777-979d-49fa-a65a-59ab9cb3eb1b") + ) + (pad "1" smd custom + (at -0.65 0) + (size 1 0.5) + (layers "F.Cu" "F.Mask") + (net 126 "Net-(J1-Pin_a2)") + (pinfunction "A") + (pintype "passive") + (zone_connect 2) + (thermal_bridge_angle 45) + (options + (clearance outline) + (anchor rect) + ) + (primitives + (gr_circle + (center 0 0.25) + (end 0.5 0.25) + (width 0) + (fill yes) + ) + (gr_circle + (center 0 -0.25) + (end 0.5 -0.25) + (width 0) + (fill yes) + ) + (gr_poly + (pts + (xy 0.5 0.75) (xy 0 0.75) (xy 0 -0.75) (xy 0.5 -0.75) + ) + (width 0) + (fill yes) + ) + ) + (uuid "9007a749-c7d5-4e9b-9a85-95d1481228e6") + ) + (pad "2" smd custom + (at 0.65 0) + (size 1 0.5) + (layers "F.Cu" "F.Mask") + (net 1 "/Supply_Ref/+15V") + (pinfunction "B") + (pintype "passive") + (zone_connect 2) + (thermal_bridge_angle 45) + (options + (clearance outline) + (anchor rect) + ) + (primitives + (gr_circle + (center 0 0.25) + (end 0.5 0.25) + (width 0) + (fill yes) + ) + (gr_circle + (center 0 -0.25) + (end 0.5 -0.25) + (width 0) + (fill yes) + ) + (gr_poly + (pts + (xy 0 0.75) (xy -0.5 0.75) (xy -0.5 -0.75) (xy 0 -0.75) + ) + (width 0) + (fill yes) + ) + ) + (uuid "c819f1ac-03e3-402a-930d-0bc7c9e42ca4") + ) + ) + (footprint "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00006154bed7") + (at 64.1 122.4) + (descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip") + (tags "net tie solder jumper bridged") + (property "Reference" "JP5" + (at 0 2.2 0) + (layer "F.SilkS") + (uuid "40dbae2e-f109-43ba-bb9e-ef1b25be532b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "+15V" + (at 0 1.9 0) + (layer "F.Fab") + (uuid "5eda82a8-104d-4df1-9db8-237d241653fb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "65d21199-bb96-4347-8b2e-b8d9637e41a7") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a152fa45-bb50-4c3e-bb03-59343bf05a03") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "739b1da0-04a3-4200-a636-63ddcec71b16") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Config" "DNF" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "b2144e12-f69d-4a9e-bcc8-38fd7e5fdf95") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "MFN" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "14f1cbc8-cc34-4d98-aa36-f358080d16a0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "9de97405-b2c4-45a0-b43b-8fac244ee37e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "SolderJumper*Bridged*") + (path "/00000000-0000-0000-0000-00006152eb89") + (sheetname "Root") + (sheetfile "RedPitaya_Lockbox.kicad_sch") + (zone_connect 1) + (attr exclude_from_pos_files exclude_from_bom) + (net_tie_pad_groups "1, 2") + (fp_poly + (pts + (xy 0.25 -0.3) (xy -0.25 -0.3) (xy -0.25 0.3) (xy 0.25 0.3) + ) + (stroke + (width 0) + (type solid) + ) + (fill solid) + (layer "F.Cu") + (uuid "502a308b-246d-4008-b1f4-6dd3afc04175") + ) + (fp_line + (start -1.4 0.3) + (end -1.4 -0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c4ec51b3-1034-4b82-a2f6-71ca9ec2628e") + ) + (fp_line + (start -0.7 -1) + (end 0.7 -1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4914604c-293d-4f16-adc0-86d03e57d4f1") + ) + (fp_line + (start 0.7 1) + (end -0.7 1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f70b73e7-3d62-4055-bfca-338bc07f25ee") + ) + (fp_line + (start 1.4 -0.3) + (end 1.4 0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2cc40390-0b84-44ed-9028-66d359f776ee") + ) + (fp_arc + (start -1.4 -0.3) + (mid -1.194975 -0.794975) + (end -0.7 -1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6fa6d2af-7b39-48cf-85cf-09b4562379f3") + ) + (fp_arc + (start -0.7 1) + (mid -1.194975 0.794975) + (end -1.4 0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d7c4e075-5050-487e-b16a-f133610665bf") + ) + (fp_arc + (start 0.7 -1) + (mid 1.194975 -0.794975) + (end 1.4 -0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "aa9a8ac3-5fbd-46a2-9940-b5d18498e7d4") + ) + (fp_arc + (start 1.4 0.3) + (mid 1.194975 0.794975) + (end 0.7 1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "fa87a6ec-3d79-46fe-b208-88fe2b354041") + ) + (fp_line + (start -1.65 -1.25) + (end -1.65 1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "841aff5c-0d91-42f3-a930-790e1a73df69") + ) + (fp_line + (start -1.65 -1.25) + (end 1.65 -1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "5225eaca-ac1e-42a3-a532-94b918c9b34c") + ) + (fp_line + (start 1.65 1.25) + (end -1.65 1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b01bcb14-5627-47c5-8e99-5ff89dd38422") + ) + (fp_line + (start 1.65 1.25) + (end 1.65 -1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "5dc132c7-530c-4ffd-84c1-93f7353da7cb") + ) + (pad "1" smd custom + (at -0.65 0) + (size 1 0.5) + (layers "F.Cu" "F.Mask") + (net 133 "Net-(J1-Pin_c2)") + (pinfunction "A") + (pintype "passive") + (zone_connect 2) + (thermal_bridge_angle 45) + (options + (clearance outline) + (anchor rect) + ) + (primitives + (gr_circle + (center 0 0.25) + (end 0.5 0.25) + (width 0) + (fill yes) + ) + (gr_circle + (center 0 -0.25) + (end 0.5 -0.25) + (width 0) + (fill yes) + ) + (gr_poly + (pts + (xy 0.5 0.75) (xy 0 0.75) (xy 0 -0.75) (xy 0.5 -0.75) + ) + (width 0) + (fill yes) + ) + ) + (uuid "0ffa7564-0b3e-460e-bab1-b3b9a8811f64") + ) + (pad "2" smd custom + (at 0.65 0) + (size 1 0.5) + (layers "F.Cu" "F.Mask") + (net 1 "/Supply_Ref/+15V") + (pinfunction "B") + (pintype "passive") + (zone_connect 2) + (thermal_bridge_angle 45) + (options + (clearance outline) + (anchor rect) + ) + (primitives + (gr_circle + (center 0 0.25) + (end 0.5 0.25) + (width 0) + (fill yes) + ) + (gr_circle + (center 0 -0.25) + (end 0.5 -0.25) + (width 0) + (fill yes) + ) + (gr_poly + (pts + (xy 0 0.75) (xy -0.5 0.75) (xy -0.5 -0.75) (xy 0 -0.75) + ) + (width 0) + (fill yes) + ) + ) + (uuid "dafa8716-a702-48cf-a4a8-d2acadbd2e0c") + ) + ) + (footprint "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00006154bf82") + (at 62.25 39.25) + (descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip") + (tags "net tie solder jumper bridged") + (property "Reference" "JP14" + (at 0 -2.05 0) + (layer "F.SilkS") + (uuid "bdb8d0d9-881c-47eb-a4dd-b0f7ae0dfcb7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "-15V" + (at 0 1.9 0) + (layer "F.Fab") + (uuid "9003bed5-bf0a-4d1c-9bc4-aac775cd4c02") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c9b66fb0-2fed-46b9-91b3-6c18e6be4e6e") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d458372b-4771-46b2-be63-e8fa2f51202a") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3cb330ef-5049-40e4-b3f3-04144dbe7cc3") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Config" "DNF" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "123487c5-5eed-40b5-b6b2-c7911ad5818c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "MFN" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "1418ba99-7184-46b3-aff1-9cccbad943f0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "a3bd7492-10e8-4f37-b6ee-65ce58515d4a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "SolderJumper*Bridged*") + (path "/00000000-0000-0000-0000-0000615805b0") + (sheetname "Root") + (sheetfile "RedPitaya_Lockbox.kicad_sch") + (zone_connect 1) + (attr exclude_from_pos_files exclude_from_bom) + (net_tie_pad_groups "1, 2") + (fp_poly + (pts + (xy 0.25 -0.3) (xy -0.25 -0.3) (xy -0.25 0.3) (xy 0.25 0.3) + ) + (stroke + (width 0) + (type solid) + ) + (fill solid) + (layer "F.Cu") + (uuid "e2aa1496-af49-4db6-89fd-d879a896d6b9") + ) + (fp_line + (start -1.4 0.3) + (end -1.4 -0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5bd4696b-4133-456a-905d-3f3fa3b128ee") + ) + (fp_line + (start -0.7 -1) + (end 0.7 -1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b2795282-45a3-466f-b24e-303ed59c22cf") + ) + (fp_line + (start 0.7 1) + (end -0.7 1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f921d3ec-dc4e-441d-96f5-a959c9c0ab98") + ) + (fp_line + (start 1.4 -0.3) + (end 1.4 0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f0d9bc4e-01a8-4a3b-98a7-37ac18fd76a6") + ) + (fp_arc + (start -1.4 -0.3) + (mid -1.194975 -0.794975) + (end -0.7 -1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5113dfe3-0c49-4439-b022-e784f94677c7") + ) + (fp_arc + (start -0.7 1) + (mid -1.194975 0.794975) + (end -1.4 0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "100d15ca-6b4d-418b-9bd1-4ef6ef28f818") + ) + (fp_arc + (start 0.7 -1) + (mid 1.194975 -0.794975) + (end 1.4 -0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8ae941d4-2790-4417-9937-40e730aca20b") + ) + (fp_arc + (start 1.4 0.3) + (mid 1.194975 0.794975) + (end 0.7 1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f4929bda-6cf9-4bc8-8c62-7d266da6de68") + ) + (fp_line + (start -1.65 -1.25) + (end -1.65 1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e441d3aa-8c98-4b79-b94b-1e9e2c07190f") + ) + (fp_line + (start -1.65 -1.25) + (end 1.65 -1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "26bea662-8f7e-42d5-9bb5-c0b8d3bf8ea3") + ) + (fp_line + (start 1.65 1.25) + (end -1.65 1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0079032d-c2dd-4f7d-a667-6355e72f7f69") + ) + (fp_line + (start 1.65 1.25) + (end 1.65 -1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1517696c-0f0d-4ac5-bad2-f2602a4eb1e7") + ) + (pad "1" smd custom + (at -0.65 0) + (size 1 0.5) + (layers "F.Cu" "F.Mask") + (net 131 "Net-(J1-Pin_a31)") + (pinfunction "A") + (pintype "passive") + (zone_connect 2) + (thermal_bridge_angle 45) + (options + (clearance outline) + (anchor rect) + ) + (primitives + (gr_circle + (center 0 0.25) + (end 0.5 0.25) + (width 0) + (fill yes) + ) + (gr_circle + (center 0 -0.25) + (end 0.5 -0.25) + (width 0) + (fill yes) + ) + (gr_poly + (pts + (xy 0.5 0.75) (xy 0 0.75) (xy 0 -0.75) (xy 0.5 -0.75) + ) + (width 0) + (fill yes) + ) + ) + (uuid "567f3f4e-f2c3-4f37-9006-22b1e5275c6f") + ) + (pad "2" smd custom + (at 0.65 0) + (size 1 0.5) + (layers "F.Cu" "F.Mask") + (net 3 "/Supply_Ref/-15V") + (pinfunction "B") + (pintype "passive") + (zone_connect 2) + (thermal_bridge_angle 45) + (options + (clearance outline) + (anchor rect) + ) + (primitives + (gr_circle + (center 0 0.25) + (end 0.5 0.25) + (width 0) + (fill yes) + ) + (gr_circle + (center 0 -0.25) + (end 0.5 -0.25) + (width 0) + (fill yes) + ) + (gr_poly + (pts + (xy 0 0.75) (xy -0.5 0.75) (xy -0.5 -0.75) (xy 0 -0.75) + ) + (width 0) + (fill yes) + ) + ) + (uuid "bffc9956-5f80-461e-9402-430079eeb534") + ) + ) + (footprint "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00006154bf95") + (at 62.25 41.75) + (descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip") + (tags "net tie solder jumper bridged") + (property "Reference" "JP15" + (at -0.05 2.05 0) + (layer "F.SilkS") + (uuid "03dee23a-4926-42c7-ad15-8ca51040fa33") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "-15V" + (at 0 1.9 0) + (layer "F.Fab") + (uuid "2c6eddca-304f-4beb-8578-5288e717b3a4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ebbc66dc-3507-4cef-9a4d-746fa67a3262") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "25a3b5c1-1d9a-4cf5-8dc2-af4fa630df18") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0f0e7c98-cb99-4247-9d08-649e65130e1a") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Config" "DNF" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "7572eb76-f6ff-446f-9f6b-4a86336d910a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "MFN" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "c95ae067-46fe-4f63-8b98-685cde203f67") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "d1f9f967-9a33-4379-be6f-946152569f9b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "SolderJumper*Bridged*") + (path "/00000000-0000-0000-0000-000061580ef2") + (sheetname "Root") + (sheetfile "RedPitaya_Lockbox.kicad_sch") + (zone_connect 1) + (attr exclude_from_pos_files exclude_from_bom) + (net_tie_pad_groups "1, 2") + (fp_poly + (pts + (xy 0.25 -0.3) (xy -0.25 -0.3) (xy -0.25 0.3) (xy 0.25 0.3) + ) + (stroke + (width 0) + (type solid) + ) + (fill solid) + (layer "F.Cu") + (uuid "73ba2e5f-12b1-454a-930b-aee499628048") + ) + (fp_line + (start -1.4 0.3) + (end -1.4 -0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "257c6cbf-6fe5-4178-8e4c-c1b3ef607ea9") + ) + (fp_line + (start -0.7 -1) + (end 0.7 -1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0b32a3aa-6d6e-4aeb-8c49-796b2f339251") + ) + (fp_line + (start 0.7 1) + (end -0.7 1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "08caba07-7027-4f35-a7a4-8593af2350ce") + ) + (fp_line + (start 1.4 -0.3) + (end 1.4 0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "63a39d5c-0f9c-46eb-8d43-023937013861") + ) + (fp_arc + (start -1.4 -0.3) + (mid -1.194975 -0.794975) + (end -0.7 -1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ddfecf38-d35f-47d5-933e-fce7d8dd3b5c") + ) + (fp_arc + (start -0.7 1) + (mid -1.194975 0.794975) + (end -1.4 0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5f736d22-4f43-4be6-87d3-d32859adcbf6") + ) + (fp_arc + (start 0.7 -1) + (mid 1.194975 -0.794975) + (end 1.4 -0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5dff2255-463c-445f-99d3-cc1428ac7382") + ) + (fp_arc + (start 1.4 0.3) + (mid 1.194975 0.794975) + (end 0.7 1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "eec6a4c7-177f-4b88-881d-605769bb2b76") + ) + (fp_line + (start -1.65 -1.25) + (end -1.65 1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "11551079-4705-470f-a8b4-5e0c5c920067") + ) + (fp_line + (start -1.65 -1.25) + (end 1.65 -1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "60509299-5430-48b9-bf5b-251d391d72f2") + ) + (fp_line + (start 1.65 1.25) + (end -1.65 1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1ec25c23-11ac-4435-b183-0f6a4709fc2a") + ) + (fp_line + (start 1.65 1.25) + (end 1.65 -1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4f3c78d3-bc33-42c7-9c5f-fdb5ce04ad06") + ) + (pad "1" smd custom + (at -0.65 0) + (size 1 0.5) + (layers "F.Cu" "F.Mask") + (net 132 "Net-(J1-Pin_a32)") + (pinfunction "A") + (pintype "passive") + (zone_connect 2) + (thermal_bridge_angle 45) + (options + (clearance outline) + (anchor rect) + ) + (primitives + (gr_circle + (center 0 0.25) + (end 0.5 0.25) + (width 0) + (fill yes) + ) + (gr_circle + (center 0 -0.25) + (end 0.5 -0.25) + (width 0) + (fill yes) + ) + (gr_poly + (pts + (xy 0.5 0.75) (xy 0 0.75) (xy 0 -0.75) (xy 0.5 -0.75) + ) + (width 0) + (fill yes) + ) + ) + (uuid "919c8e7b-f77e-4507-a3e5-37c5af37c317") + ) + (pad "2" smd custom + (at 0.65 0) + (size 1 0.5) + (layers "F.Cu" "F.Mask") + (net 3 "/Supply_Ref/-15V") + (pinfunction "B") + (pintype "passive") + (zone_connect 2) + (thermal_bridge_angle 45) + (options + (clearance outline) + (anchor rect) + ) + (primitives + (gr_circle + (center 0 0.25) + (end 0.5 0.25) + (width 0) + (fill yes) + ) + (gr_circle + (center 0 -0.25) + (end 0.5 -0.25) + (width 0) + (fill yes) + ) + (gr_poly + (pts + (xy 0 0.75) (xy -0.5 0.75) (xy -0.5 -0.75) (xy 0 -0.75) + ) + (width 0) + (fill yes) + ) + ) + (uuid "037ab516-4bc0-4e41-8552-750889c334f7") + ) + ) + (footprint "Diode_SMD:D_SOD-323" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-00006166ec76") + (at 80.4545 71.8566 90) + (descr "SOD-323") + (tags "SOD-323") + (property "Reference" "D1" + (at -0.0254 1.905 90) + (layer "F.SilkS") + (uuid "4286b6de-9487-40dd-bb96-3504be38b84d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "BAT54" + (at 0.1 1.9 90) + (layer "F.Fab") + (uuid "e33fc809-6e4d-4f88-9684-d17989709d66") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Diode_SMD:D_SOD-323" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "06165e32-f549-42c1-b316-6ec5e86f5baa") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a4ce6077-f014-41ed-b652-a9e98963a39b") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8912ffba-3b52-4623-9b92-ebf8c862c583") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Panjit" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "af7f7e05-70c4-40d6-818e-e96e8152c8f3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "BAT54WS_R1_00001" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "0321315f-0a1c-487c-8470-ce9a9ba08862") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") + (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-000061675730") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.kicad_sch") + (attr smd) + (fp_line + (start -1.61 -0.85) + (end 1.05 -0.85) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f23dcc0d-9785-483b-afec-7fd8e5244ddb") + ) + (fp_line + (start -1.61 -0.85) + (end -1.61 0.85) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8a0d7e6f-4569-401d-9840-c91a213d64c6") + ) + (fp_line + (start -1.61 0.85) + (end 1.05 0.85) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6614a1ee-3a42-43ff-bedd-25a7c63ac307") + ) + (fp_line + (start 1.6 -0.95) + (end 1.6 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7fe41290-8c19-404c-9dcc-a265604bcce1") + ) + (fp_line + (start -1.6 -0.95) + (end 1.6 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9f6b7a50-a93d-4e0b-80bc-95df7c598650") + ) + (fp_line + (start -1.6 -0.95) + (end -1.6 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a205d328-49dc-4a29-951f-fca91c0c5330") + ) + (fp_line + (start -1.6 0.95) + (end 1.6 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "eec315dd-edaf-43eb-aa4f-385d47c792a6") + ) + (fp_line + (start 0.9 -0.7) + (end 0.9 0.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "dc1ffbe7-edd2-49d1-9d97-29b035cb5d18") + ) + (fp_line + (start -0.9 -0.7) + (end 0.9 -0.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0fc5cbc7-b97f-49b5-81a8-3ec173db276e") + ) + (fp_line + (start 0.2 -0.35) + (end 0.2 0.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2be1b1e2-4baf-401c-b6dd-6e74da88330e") + ) + (fp_line + (start -0.3 -0.35) + (end -0.3 0.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7f2cbbad-49e6-4475-8e4d-0d0b045a2b09") + ) + (fp_line + (start 0.2 0) + (end 0.45 0) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "bf17c595-b611-49d3-bf42-c0b55e6ab4f6") + ) + (fp_line + (start -0.3 0) + (end 0.2 -0.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e6086462-7ccc-4e12-bf0f-01f49f0ce01c") + ) + (fp_line + (start -0.3 0) + (end -0.5 0) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "afbffd5e-d8e4-432e-862d-2555ee221837") + ) + (fp_line + (start 0.2 0.35) + (end -0.3 0) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4cef32d2-38c5-4769-8cb2-6ad7ac5cdf3b") + ) + (fp_line + (start 0.9 0.7) + (end -0.9 0.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "90d34581-2c58-4bc0-be3c-a2cad4cee78d") + ) + (fp_line + (start -0.9 0.7) + (end -0.9 -0.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "77f6ab37-3558-43f9-be0e-812590537003") + ) + (fp_text user "${REFERENCE}" + (at 0 -1.85 90) + (layer "F.Fab") + (uuid "500eae33-c055-4e88-b409-b674eea2983c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -1.05 0 90) + (size 0.6 0.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 4 "/Input_Output_Module/+12V") + (pinfunction "K") + (pintype "passive") + (uuid "c989b5b6-22b2-4400-8309-1cdd17f833f9") + ) + (pad "2" smd roundrect + (at 1.05 0 90) + (size 0.6 0.45) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pinfunction "A") + (pintype "passive") + (uuid "ed0e5eda-eaa6-43e5-8172-f4104c0c18d6") + ) + (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_THT:CP_Radial_D6.3mm_P2.50mm" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-000061e581eb") + (at 66.3 70 90) + (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=6.3mm, Electrolytic Capacitor") + (tags "CP Radial series Radial pin pitch 2.50mm diameter 6.3mm Electrolytic Capacitor") + (property "Reference" "C28" + (at 5.4 -2.5 180) + (layer "F.SilkS") + (uuid "d760597a-d025-4ebd-85e1-96657c300b4a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100u" + (at 1.25 4.4 90) + (layer "F.Fab") + (uuid "636f29bd-d388-4acc-8e06-c2003f66e0a6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_THT:CP_Radial_D6.3mm_P2.50mm" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6e685e75-84fa-44a8-851d-0dd7e3698c1e") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c755c0f9-c364-4220-81c1-c908c6a39239") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "554bf890-0c5e-4bfe-a8b7-7501580eee2e") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Nichicon" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "dbcb9f99-f45e-4fb0-89f7-a7debea0cc4a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "UHV1V101MED" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "96175ae8-1f16-4d58-b3d1-915cec732270") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "CP_*") + (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-000061e832ac") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.kicad_sch") + (attr through_hole) + (fp_line + (start 1.33 -3.23) + (end 1.33 3.23) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1c1ecc99-f67b-4c72-ac39-ae78d855e0e2") + ) + (fp_line + (start 1.29 -3.23) + (end 1.29 3.23) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "377e304d-9659-432c-adcc-f2d6094aea29") + ) + (fp_line + (start 1.25 -3.23) + (end 1.25 3.23) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d90c451e-0f94-46f2-bcd5-2e781a399fe9") + ) + (fp_line + (start 1.37 -3.228) + (end 1.37 3.228) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "57a19a1f-3586-47aa-8fad-1eaf757d52cf") + ) + (fp_line + (start 1.41 -3.227) + (end 1.41 3.227) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "91f6c79d-e53e-4232-be16-63f054d75267") + ) + (fp_line + (start 1.45 -3.224) + (end 1.45 3.224) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "011673e0-8a20-4302-a6e6-b43b151649c5") + ) + (fp_line + (start 1.49 -3.222) + (end 1.49 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a93e68af-db04-4a7e-acd6-dd73b9b354e0") + ) + (fp_line + (start 1.53 -3.218) + (end 1.53 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c20d9d8a-3611-4e08-ab18-568479f0ec29") + ) + (fp_line + (start 1.57 -3.215) + (end 1.57 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ef850d64-7aae-49c4-8073-ea3e8ca09876") + ) + (fp_line + (start 1.61 -3.211) + (end 1.61 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "797927b1-723a-40e7-80ad-fca16e88cdb1") + ) + (fp_line + (start 1.65 -3.206) + (end 1.65 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f74e4c05-62f5-4485-9d6e-d6932f3f887e") + ) + (fp_line + (start 1.69 -3.201) + (end 1.69 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "35784b68-83f5-410c-a90a-e44cf1d5b10d") + ) + (fp_line + (start 1.73 -3.195) + (end 1.73 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ac385f90-7378-4152-8be0-339e85539fc2") + ) + (fp_line + (start 1.77 -3.189) + (end 1.77 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "041f4325-fd9d-4446-a5d5-7b131b4dfd8c") + ) + (fp_line + (start 1.81 -3.182) + (end 1.81 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "66827251-09c9-4f10-9b32-716af2706f6b") + ) + (fp_line + (start 1.85 -3.175) + (end 1.85 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "67432478-c37c-459e-be5c-cd8fef5b8a38") + ) + (fp_line + (start 1.89 -3.167) + (end 1.89 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a42b11e2-f120-4e22-abbe-71f1b99d1224") + ) + (fp_line + (start 1.93 -3.159) + (end 1.93 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e3006b29-0b07-4495-b013-bcdbda1814fa") + ) + (fp_line + (start 1.971 -3.15) + (end 1.971 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2e4e072a-a411-474f-b3c2-4726074840be") + ) + (fp_line + (start 2.011 -3.141) + (end 2.011 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7834db3a-d201-4924-96eb-b69f47fb7dc2") + ) + (fp_line + (start 2.051 -3.131) + (end 2.051 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8df0b18b-7aa9-48ad-a74f-c69c63195869") + ) + (fp_line + (start 2.091 -3.121) + (end 2.091 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f56cc1fe-1787-4df9-b564-1b4ab2a7a4eb") + ) + (fp_line + (start 2.131 -3.11) + (end 2.131 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e41f20d7-477e-4905-befb-6fdde76b2166") + ) + (fp_line + (start 2.171 -3.098) + (end 2.171 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d65bded5-a507-418d-b69a-37a7bc8813ab") + ) + (fp_line + (start 2.211 -3.086) + (end 2.211 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a04bfeab-92c4-4234-9211-65f7e4f307de") + ) + (fp_line + (start 2.251 -3.074) + (end 2.251 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8f70ecd4-5cd2-4359-b45d-b814b924896a") + ) + (fp_line + (start 2.291 -3.061) + (end 2.291 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "72b5845f-8165-4764-8cc2-ce813677d72b") + ) + (fp_line + (start 2.331 -3.047) + (end 2.331 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e685db65-5281-4f5b-9181-a4c9a112baee") + ) + (fp_line + (start 2.371 -3.033) + (end 2.371 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "664d6b2b-610d-4525-891e-b7ae0a7be8d4") + ) + (fp_line + (start 2.411 -3.018) + (end 2.411 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6fd9045e-56fe-4de7-8808-0ca47e7f9b51") + ) + (fp_line + (start 2.451 -3.002) + (end 2.451 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "81ab9a45-8e37-4c04-9979-7b1749d8dff4") + ) + (fp_line + (start 2.491 -2.986) + (end 2.491 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6f1cd42c-845c-46db-b69f-d2c4b36c7b42") + ) + (fp_line + (start 2.531 -2.97) + (end 2.531 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "209852a6-896d-4ad2-b8d5-85c43119b57c") + ) + (fp_line + (start 2.571 -2.952) + (end 2.571 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "74800d41-58eb-4b90-aa2d-7c38bebb353d") + ) + (fp_line + (start 2.611 -2.934) + (end 2.611 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4798e912-227c-4de0-87ef-c48dc8615191") + ) + (fp_line + (start 2.651 -2.916) + (end 2.651 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ee78da62-b46c-44eb-b802-b13bed0a2fa9") + ) + (fp_line + (start 2.691 -2.896) + (end 2.691 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c9e6af34-66bf-4adf-aff4-e5522e68acc9") + ) + (fp_line + (start 2.731 -2.876) + (end 2.731 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c0468373-bce7-414b-8e42-90c09a20b59c") + ) + (fp_line + (start 2.771 -2.856) + (end 2.771 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "15108473-2258-4c05-ba1c-6655c70bb4db") + ) + (fp_line + (start 2.811 -2.834) + (end 2.811 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3e7398bc-a84c-49d2-aae0-7a771e056422") + ) + (fp_line + (start 2.851 -2.812) + (end 2.851 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3ee38b6e-e4a5-463b-8346-2bec12b5daa9") + ) + (fp_line + (start 2.891 -2.79) + (end 2.891 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4e85b3fe-8df5-433a-b721-6437f630efd1") + ) + (fp_line + (start 2.931 -2.766) + (end 2.931 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e35b4b03-6548-4e99-a62a-d4ed45d03206") + ) + (fp_line + (start 2.971 -2.742) + (end 2.971 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f7cc1093-58c8-4b73-b3ca-8ed7e46079b7") + ) + (fp_line + (start 3.011 -2.716) + (end 3.011 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "bc78f4b4-989a-4b2b-93a8-b09aad8d01d0") + ) + (fp_line + (start 3.051 -2.69) + (end 3.051 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0e33d18a-0407-48e3-8679-cfe1f98b9163") + ) + (fp_line + (start 3.091 -2.664) + (end 3.091 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5fd4889d-e85c-4a50-8c13-9fb31d1e2c1c") + ) + (fp_line + (start 3.131 -2.636) + (end 3.131 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2113993e-95f2-4e41-82e4-eedfa62ad2aa") + ) + (fp_line + (start 3.171 -2.607) + (end 3.171 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b21e1d39-c051-4e67-b813-935bde8f9d31") + ) + (fp_line + (start 3.211 -2.578) + (end 3.211 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ea9d8030-2d34-4514-816c-c1ac0cadaed5") + ) + (fp_line + (start 3.251 -2.548) + (end 3.251 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7efb9b85-496a-4c98-b36b-e7d4af20a24c") + ) + (fp_line + (start 3.291 -2.516) + (end 3.291 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3fa11eff-9ad7-4615-ba5b-9c06578df2b3") + ) + (fp_line + (start 3.331 -2.484) + (end 3.331 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cae8d8f3-4102-4743-9e64-17793644ae7d") + ) + (fp_line + (start 3.371 -2.45) + (end 3.371 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ea13ab17-5703-48ff-a0c0-2ecea34b7e38") + ) + (fp_line + (start 3.411 -2.416) + (end 3.411 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b1107f0a-10e3-41a4-a720-ce7b4d1bface") + ) + (fp_line + (start 3.451 -2.38) + (end 3.451 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0c0d4b9b-cd75-46e1-870f-2b599b395822") + ) + (fp_line + (start 3.491 -2.343) + (end 3.491 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a38f42a6-e625-4850-84b8-e4a03fabdb5b") + ) + (fp_line + (start 3.531 -2.305) + (end 3.531 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1d4acf64-ecb0-4ebd-a986-466cbc67ba04") + ) + (fp_line + (start 3.571 -2.265) + (end 3.571 2.265) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c33ab3c3-b713-40c0-b114-579245e2fe26") + ) + (fp_line + (start 3.611 -2.224) + (end 3.611 2.224) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "19cb14c1-3498-4723-a163-55918109e2b0") + ) + (fp_line + (start 3.651 -2.182) + (end 3.651 2.182) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a7b6f5f2-5e66-4e76-9716-50eb176c1687") + ) + (fp_line + (start -1.935241 -2.154) + (end -1.935241 -1.524) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5e313412-0230-400d-82c2-dfe8a90ead5b") + ) + (fp_line + (start 3.691 -2.137) + (end 3.691 2.137) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "fe7d7804-2753-40a1-8f79-f1b65aa06c4b") + ) + (fp_line + (start 3.731 -2.092) + (end 3.731 2.092) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2056f040-ae84-4f2e-8ec1-3d5a51424848") + ) + (fp_line + (start 3.771 -2.044) + (end 3.771 2.044) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "937f7e34-8a6a-467c-b915-737192422231") + ) + (fp_line + (start 3.811 -1.995) + (end 3.811 1.995) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "98dde89c-4015-4c28-9bf3-dafc587d7699") + ) + (fp_line + (start 3.851 -1.944) + (end 3.851 1.944) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d680c5c9-070f-414a-a29e-d7a0e44e7221") + ) + (fp_line + (start 3.891 -1.89) + (end 3.891 1.89) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9cd82814-3af7-4b34-afce-c74325bccb7a") + ) + (fp_line + (start -2.250241 -1.839) + (end -1.620241 -1.839) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "aeae574f-649e-43f3-9f82-77ca7db7927b") + ) + (fp_line + (start 3.931 -1.834) + (end 3.931 1.834) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "40678ef4-5163-4891-bba9-ca4d37a228d2") + ) + (fp_line + (start 3.971 -1.776) + (end 3.971 1.776) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ebe3753c-47f9-40b6-8893-e91341bef9e1") + ) + (fp_line + (start 4.011 -1.714) + (end 4.011 1.714) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7d5ba95c-b21d-414d-bfe4-0951b333b2d7") + ) + (fp_line + (start 4.051 -1.65) + (end 4.051 1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "daf131c3-d18e-4856-9e79-67bd289d2825") + ) + (fp_line + (start 4.091 -1.581) + (end 4.091 1.581) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ac12f905-814b-441f-b30e-601e50f6c0aa") + ) + (fp_line + (start 4.131 -1.509) + (end 4.131 1.509) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cd1bab51-7e11-491a-b81f-c67ea8c4f15c") + ) + (fp_line + (start 4.171 -1.432) + (end 4.171 1.432) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d92d1092-e59e-43fa-b96b-1fc7eb9d4b11") + ) + (fp_line + (start 4.211 -1.35) + (end 4.211 1.35) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "31013304-d81c-4d9e-b0b8-c72c277f5178") + ) + (fp_line + (start 4.251 -1.262) + (end 4.251 1.262) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "351e9f51-7408-44ca-a592-820b9a311680") + ) + (fp_line + (start 4.291 -1.165) + (end 4.291 1.165) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3528c8bd-abc0-4be7-9376-5befe09fc04f") + ) + (fp_line + (start 4.331 -1.059) + (end 4.331 1.059) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6acf6263-7fbb-4438-85ac-7daf7d450ca1") + ) + (fp_line + (start 4.371 -0.94) + (end 4.371 0.94) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "dd80e5df-23f3-4925-9d61-35fa51b11fc6") + ) + (fp_line + (start 4.411 -0.802) + (end 4.411 0.802) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7210d61f-b211-4596-aaf4-b3bbbff6df88") + ) + (fp_line + (start 4.451 -0.633) + (end 4.451 0.633) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5f0eb509-5483-4478-8310-5dbb0a9920f8") + ) + (fp_line + (start 4.491 -0.402) + (end 4.491 0.402) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "fa65be34-2604-4c38-93a9-ccc2233878d0") + ) + (fp_line + (start 3.531 1.04) + (end 3.531 2.305) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a9104cbb-517c-4f8c-897b-fce7d934a753") + ) + (fp_line + (start 3.491 1.04) + (end 3.491 2.343) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4e6b31f2-1df3-4bc2-91a5-524b61555107") + ) + (fp_line + (start 3.451 1.04) + (end 3.451 2.38) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "197c457e-4d13-41fb-b1d4-0eff06c4d859") + ) + (fp_line + (start 3.411 1.04) + (end 3.411 2.416) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1813ba69-7668-41cb-ba79-395a01b024d2") + ) + (fp_line + (start 3.371 1.04) + (end 3.371 2.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0e27dd9d-c8d9-4e41-b60e-597a076b9a06") + ) + (fp_line + (start 3.331 1.04) + (end 3.331 2.484) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "05123f15-3490-40ff-be75-00f793eda7bb") + ) + (fp_line + (start 3.291 1.04) + (end 3.291 2.516) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0ff8237c-5169-4efd-ba68-ce045a9120c6") + ) + (fp_line + (start 3.251 1.04) + (end 3.251 2.548) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0ffeb3a4-ca72-487a-954d-1be8497312e6") + ) + (fp_line + (start 3.211 1.04) + (end 3.211 2.578) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e5e44bcd-f3c4-4e40-acc0-2eb7855c80c2") + ) + (fp_line + (start 3.171 1.04) + (end 3.171 2.607) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1d5d56b3-d87f-49fd-ae82-dede2a8a34aa") + ) + (fp_line + (start 3.131 1.04) + (end 3.131 2.636) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6769f593-3cc1-4d61-86d4-09adceacac1a") + ) + (fp_line + (start 3.091 1.04) + (end 3.091 2.664) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2627b508-fc1d-45d4-a7c2-7c240f83eaa5") + ) + (fp_line + (start 3.051 1.04) + (end 3.051 2.69) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1e0edf89-6a86-4a0b-8c7d-4847da82534d") + ) + (fp_line + (start 3.011 1.04) + (end 3.011 2.716) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7c180188-04a2-4e24-9ef9-3ede6ed49273") + ) + (fp_line + (start 2.971 1.04) + (end 2.971 2.742) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "26e3f129-d384-4361-92bf-d98f2e6354a5") + ) + (fp_line + (start 2.931 1.04) + (end 2.931 2.766) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "abc2bc5a-6c47-47fc-9f34-60936594ba57") + ) + (fp_line + (start 2.891 1.04) + (end 2.891 2.79) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9173d2c5-ab2e-4b8a-b66d-20b5226fcc2e") + ) + (fp_line + (start 2.851 1.04) + (end 2.851 2.812) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7c6d4c44-07c3-4506-b7ec-b71ef16273af") + ) + (fp_line + (start 2.811 1.04) + (end 2.811 2.834) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "597a638a-7a03-4b66-855d-9c8c0a072653") + ) + (fp_line + (start 2.771 1.04) + (end 2.771 2.856) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2c31c848-5c04-4cea-8c3b-ae11c9368a4d") + ) + (fp_line + (start 2.731 1.04) + (end 2.731 2.876) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a79da4d9-1d7a-497f-aea2-ae05d49087a9") + ) + (fp_line + (start 2.691 1.04) + (end 2.691 2.896) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "733d1a4c-f976-4d3b-83e2-115543beca10") + ) + (fp_line + (start 2.651 1.04) + (end 2.651 2.916) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f117b39a-a850-4b3c-87d1-b6a01c21598a") + ) + (fp_line + (start 2.611 1.04) + (end 2.611 2.934) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "868fec18-6fdf-4e0d-bf33-611a05e29591") + ) + (fp_line + (start 2.571 1.04) + (end 2.571 2.952) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "63519b5d-b0ac-4138-91f6-7c2a1585b9dc") + ) + (fp_line + (start 2.531 1.04) + (end 2.531 2.97) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "65c19270-d100-47ef-ad0a-8cbbfc5e347d") + ) + (fp_line + (start 2.491 1.04) + (end 2.491 2.986) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b0afe550-59c7-49b6-b920-77c623ca52de") + ) + (fp_line + (start 2.451 1.04) + (end 2.451 3.002) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "502f782f-0607-4ff4-9a35-66b58563bab8") + ) + (fp_line + (start 2.411 1.04) + (end 2.411 3.018) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f33127de-2064-44cf-bae5-a74c59e5772e") + ) + (fp_line + (start 2.371 1.04) + (end 2.371 3.033) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "07dc1e87-4d7a-4942-8db0-075649341a30") + ) + (fp_line + (start 2.331 1.04) + (end 2.331 3.047) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "64c3360d-f635-4633-a737-5323edb79dcc") + ) + (fp_line + (start 2.291 1.04) + (end 2.291 3.061) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ca13e6ec-6bb4-4d1d-965c-d54645a2a0d4") + ) + (fp_line + (start 2.251 1.04) + (end 2.251 3.074) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "10c244df-de7f-48eb-aa0a-e8573f701a59") + ) + (fp_line + (start 2.211 1.04) + (end 2.211 3.086) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1aab1375-44d2-4f42-ba6f-9e580c926c71") + ) + (fp_line + (start 2.171 1.04) + (end 2.171 3.098) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "53f0af01-544f-4ef6-8a18-85b175548038") + ) + (fp_line + (start 2.131 1.04) + (end 2.131 3.11) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4e3e2493-aa32-4990-84b2-288d255aadf8") + ) + (fp_line + (start 2.091 1.04) + (end 2.091 3.121) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d99f2ec8-ac42-4625-aee8-6cad6ea23db3") + ) + (fp_line + (start 2.051 1.04) + (end 2.051 3.131) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "dcac2240-2731-4860-a4e4-4e108165b518") + ) + (fp_line + (start 2.011 1.04) + (end 2.011 3.141) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "45f07f39-dda9-4ef5-becc-9b670ad01d27") + ) + (fp_line + (start 1.971 1.04) + (end 1.971 3.15) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d47cdb03-c585-44a4-beb5-d7bb665bd0cc") + ) + (fp_line + (start 1.93 1.04) + (end 1.93 3.159) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "de876319-44a9-43fa-86e8-dc0dac97f63b") + ) + (fp_line + (start 1.89 1.04) + (end 1.89 3.167) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4026e80b-4b28-4868-b9ec-74f1215a068b") + ) + (fp_line + (start 1.85 1.04) + (end 1.85 3.175) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f4ee6e55-9dc5-4f0f-9079-318e8f4c3921") + ) + (fp_line + (start 1.81 1.04) + (end 1.81 3.182) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "913bb5b3-9a65-4f8f-8f41-dbf20966457a") + ) + (fp_line + (start 1.77 1.04) + (end 1.77 3.189) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1bc95e5c-385d-4a10-bf68-77b3b0632ef3") + ) + (fp_line + (start 1.73 1.04) + (end 1.73 3.195) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1e2a92c0-d082-4ac2-bfd0-68389ff50f28") + ) + (fp_line + (start 1.69 1.04) + (end 1.69 3.201) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b3c91933-324b-455d-816e-e43ea869f893") + ) + (fp_line + (start 1.65 1.04) + (end 1.65 3.206) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "35d99dc7-6135-4c58-8e15-f165463318a8") + ) + (fp_line + (start 1.61 1.04) + (end 1.61 3.211) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f2089e6d-50ce-438e-a8d0-187466ec654d") + ) + (fp_line + (start 1.57 1.04) + (end 1.57 3.215) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "54533522-dc6f-4869-9b30-86ed6a15f320") + ) + (fp_line + (start 1.53 1.04) + (end 1.53 3.218) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a62ea0ca-603b-4afe-a26a-4f4290a2aa85") + ) + (fp_line + (start 1.49 1.04) + (end 1.49 3.222) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "fdd21ef6-84e8-4739-88b1-d7194e09048b") + ) + (fp_circle + (center 1.25 0) + (end 4.52 0) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "49fd372b-c7fb-4b4e-a6fa-98c243156eca") + ) + (fp_circle + (center 1.25 0) + (end 4.65 0) + (stroke + (width 0.05) + (type solid) + ) + (fill none) + (layer "F.CrtYd") + (uuid "6900e71a-44d9-453d-8b50-52fbfadc8f15") + ) + (fp_line + (start -1.128972 -1.6885) + (end -1.128972 -1.0585) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b743968d-d8d3-4df1-a6d0-e05ac1497cc7") + ) + (fp_line + (start -1.443972 -1.3735) + (end -0.813972 -1.3735) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "32357899-2cfc-481f-9688-e4bf190ff4f4") + ) + (fp_circle + (center 1.25 0) + (end 4.4 0) + (stroke + (width 0.1) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "78ab658e-98c2-44bf-87a1-4933d7cb55c2") + ) + (fp_text user "${REFERENCE}" + (at 1.25 0 90) + (layer "F.Fab") + (uuid "71376f76-19a8-492e-a92f-ca310487276c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole rect + (at 0 0 90) + (size 1.6 1.6) + (drill 0.8) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "/Supply_Ref/+15V") + (pintype "passive") + (uuid "4f57a1eb-23d5-4ee2-a870-c5447c2f554f") + ) + (pad "2" thru_hole circle + (at 2.5 0 90) + (size 1.6 1.6) + (drill 0.8) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pintype "passive") + (uuid "e6d30946-0570-438e-92e9-1d028556e117") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D6.3mm_P2.50mm.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_THT:CP_Radial_D6.3mm_P2.50mm" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-000061e5827f") + (at 68.6 39.8 -90) + (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=6.3mm, Electrolytic Capacitor") + (tags "CP Radial series Radial pin pitch 2.50mm diameter 6.3mm Electrolytic Capacitor") + (property "Reference" "C29" + (at 1.25 -4.4 90) + (layer "F.SilkS") + (uuid "820dcaaa-178a-417f-906a-93e1ea753ad7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100u" + (at 1.25 4.4 90) + (layer "F.Fab") + (uuid "f48ed45f-e80c-4745-95bf-aa0c58cc87c4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_THT:CP_Radial_D6.3mm_P2.50mm" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "794b55e7-6098-4dac-bfee-9ac8c2472384") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "19fc055c-ba19-42dd-9440-07d78985e956") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "04990bc9-839b-4d2a-a97b-f87bfea8aecb") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Nichicon" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "ebbc26ae-b664-441f-8b21-964793be257e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "UHV1V101MED" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "c51d9481-10f2-4f97-87b8-eed2192d0855") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "CP_*") + (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-000061e83ad8") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.kicad_sch") + (attr through_hole) + (fp_line + (start 1.49 1.04) + (end 1.49 3.222) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0b3ed2be-7e7d-4734-abdc-1efc881708c5") + ) + (fp_line + (start 1.53 1.04) + (end 1.53 3.218) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7e3f8c5e-9c89-4911-bbff-31b477fb9ff7") + ) + (fp_line + (start 1.57 1.04) + (end 1.57 3.215) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a2ef3c09-6754-40f4-85b9-096b29be70e3") + ) + (fp_line + (start 1.61 1.04) + (end 1.61 3.211) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "70489d5c-ec58-4767-afbd-ef766690de81") + ) + (fp_line + (start 1.65 1.04) + (end 1.65 3.206) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4f64291c-9126-47cb-92b1-ed394c1b3848") + ) + (fp_line + (start 1.69 1.04) + (end 1.69 3.201) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a70a996a-30fa-4487-be1f-45dc08a7e197") + ) + (fp_line + (start 1.73 1.04) + (end 1.73 3.195) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4b9d49e2-eaa3-458f-845a-1851911be630") + ) + (fp_line + (start 1.77 1.04) + (end 1.77 3.189) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b7b2313b-a000-420a-89b1-3c5b812ac744") + ) + (fp_line + (start 1.81 1.04) + (end 1.81 3.182) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ef8aceb8-d1ac-426b-94ea-cfd04c3cb30a") + ) + (fp_line + (start 1.85 1.04) + (end 1.85 3.175) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4ec024ad-44e1-499a-8cc2-d6816c83a095") + ) + (fp_line + (start 1.89 1.04) + (end 1.89 3.167) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4a007301-c20f-44d6-8de0-c6bac115d251") + ) + (fp_line + (start 1.93 1.04) + (end 1.93 3.159) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "16928e5d-9a8b-462d-b1ab-70ee00f1fc1a") + ) + (fp_line + (start 1.971 1.04) + (end 1.971 3.15) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d265e5af-f544-4f24-9764-c11242abb1de") + ) + (fp_line + (start 2.011 1.04) + (end 2.011 3.141) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "856748f0-cc12-4cf8-bcf0-234d6912b18d") + ) + (fp_line + (start 2.051 1.04) + (end 2.051 3.131) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b913528b-3fdc-4b42-8c2a-b21fe95a0b2f") + ) + (fp_line + (start 2.091 1.04) + (end 2.091 3.121) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "acd4f395-436e-42b6-b14e-027cd0eea92c") + ) + (fp_line + (start 2.131 1.04) + (end 2.131 3.11) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "81335918-7500-4107-8601-541961c214d8") + ) + (fp_line + (start 2.171 1.04) + (end 2.171 3.098) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "41554b38-e8b5-4727-ae91-4c125b25974b") + ) + (fp_line + (start 2.211 1.04) + (end 2.211 3.086) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "06ee92fd-3424-447a-9ae6-20b72e183420") + ) + (fp_line + (start 2.251 1.04) + (end 2.251 3.074) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "50fa98f5-f03c-4b99-a46e-dbdf4a3e01fc") + ) + (fp_line + (start 2.291 1.04) + (end 2.291 3.061) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8f8f586c-3166-40ea-9bad-bea5a12ac70d") + ) + (fp_line + (start 2.331 1.04) + (end 2.331 3.047) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "46b61d11-c9e4-4c20-aef2-4bae31ec8204") + ) + (fp_line + (start 2.371 1.04) + (end 2.371 3.033) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d8c6cfa9-84fa-49c1-bef7-ec74f28dce55") + ) + (fp_line + (start 2.411 1.04) + (end 2.411 3.018) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "fab7e7a0-ff9e-49fb-be8c-3e32df50205d") + ) + (fp_line + (start 2.451 1.04) + (end 2.451 3.002) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8a91028a-edaf-4142-a357-a884c66830b4") + ) + (fp_line + (start 2.491 1.04) + (end 2.491 2.986) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f80dd8ac-cb81-4d7f-bc4b-0f53de311640") + ) + (fp_line + (start 2.531 1.04) + (end 2.531 2.97) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5c371f00-7978-4796-b5d9-282e854dcb41") + ) + (fp_line + (start 2.571 1.04) + (end 2.571 2.952) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5a1a142d-9d57-45b5-8dec-9de4fc50fd49") + ) + (fp_line + (start 2.611 1.04) + (end 2.611 2.934) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2d916a06-2b47-4b71-8dcf-8c6a173d481b") + ) + (fp_line + (start 2.651 1.04) + (end 2.651 2.916) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "dd3d2c69-50f1-4754-96f7-24917b3c05c3") + ) + (fp_line + (start 2.691 1.04) + (end 2.691 2.896) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "efaf2825-f67b-4db4-be69-65360b76826a") + ) + (fp_line + (start 2.731 1.04) + (end 2.731 2.876) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "54381b37-e612-4c37-ae93-cbf9f0f31e42") + ) + (fp_line + (start 2.771 1.04) + (end 2.771 2.856) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0182a12e-18e8-4a3b-982d-422f0f90d387") + ) + (fp_line + (start 2.811 1.04) + (end 2.811 2.834) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "58daad4f-8035-4a09-b072-fcd46fc756e8") + ) + (fp_line + (start 2.851 1.04) + (end 2.851 2.812) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "85f12878-0e7d-4184-9dcb-eab552c9261e") + ) + (fp_line + (start 2.891 1.04) + (end 2.891 2.79) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "257fddd7-13ec-42ba-826b-cdc3391ebf09") + ) + (fp_line + (start 2.931 1.04) + (end 2.931 2.766) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cc5d8826-970a-4247-b182-8c29bcc15ec0") + ) + (fp_line + (start 2.971 1.04) + (end 2.971 2.742) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b2533cea-3da0-4262-b0f1-e62d8b90c602") + ) + (fp_line + (start 3.011 1.04) + (end 3.011 2.716) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1443507d-478c-4f2a-b0e9-5e26e333e653") + ) + (fp_line + (start 3.051 1.04) + (end 3.051 2.69) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "aaaf62f6-bd8f-4aa8-909f-e58112a58ddd") + ) + (fp_line + (start 3.091 1.04) + (end 3.091 2.664) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "417fcf3c-78d9-49d0-b6ee-1b3df637e6c4") + ) + (fp_line + (start 3.131 1.04) + (end 3.131 2.636) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "16631d26-84fe-4e2c-a9b1-a26bee1fafdc") + ) + (fp_line + (start 3.171 1.04) + (end 3.171 2.607) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "169e1b8d-4d8f-4662-84e2-2a4ea8727457") + ) + (fp_line + (start 3.211 1.04) + (end 3.211 2.578) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "07cde352-8d6c-4bb0-81ea-9cc8bf8c94e9") + ) + (fp_line + (start 3.251 1.04) + (end 3.251 2.548) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "080fffac-e56f-48cf-b04c-305e33f0067a") + ) + (fp_line + (start 3.291 1.04) + (end 3.291 2.516) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "92a53ff2-01be-4394-a9f1-2c9601fcb96c") + ) + (fp_line + (start 3.331 1.04) + (end 3.331 2.484) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7a82c4d1-7e14-4077-b6db-4f1b155a171c") + ) + (fp_line + (start 3.371 1.04) + (end 3.371 2.45) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5544989d-b28f-4ba8-8ee7-39f4540b9a76") + ) + (fp_line + (start 3.411 1.04) + (end 3.411 2.416) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9252353a-ff71-4a44-a3d9-3344dcbab781") + ) + (fp_line + (start 3.451 1.04) + (end 3.451 2.38) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9b33b731-6582-4e60-9816-bb4fc3b6fd1d") + ) + (fp_line + (start 3.491 1.04) + (end 3.491 2.343) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d54061fa-7425-4953-bab5-b24df720edc6") + ) + (fp_line + (start 3.531 1.04) + (end 3.531 2.305) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f0dfdf4a-1ff6-4b93-a88d-0a1c216f6e8f") + ) + (fp_line + (start 4.491 -0.402) + (end 4.491 0.402) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f9878000-840c-48c5-bc91-151269a06dec") + ) + (fp_line + (start 4.451 -0.633) + (end 4.451 0.633) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "259c7f1d-873c-4b34-a6a1-e0494ba317af") + ) + (fp_line + (start 4.411 -0.802) + (end 4.411 0.802) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f4039d4b-a915-42c5-9fda-60455c67effe") + ) + (fp_line + (start 4.371 -0.94) + (end 4.371 0.94) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d73faf91-1340-404f-9518-e26c04f9cd69") + ) + (fp_line + (start 4.331 -1.059) + (end 4.331 1.059) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9ddbfaae-daab-4480-a542-682a2617daab") + ) + (fp_line + (start 4.291 -1.165) + (end 4.291 1.165) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f88cd202-bf09-475b-b24e-34d73c6dd1c8") + ) + (fp_line + (start 4.251 -1.262) + (end 4.251 1.262) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "239d879c-7c03-41c6-8565-df67ec293cfc") + ) + (fp_line + (start 4.211 -1.35) + (end 4.211 1.35) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "402b12c9-19f5-4668-b768-58977697a9a7") + ) + (fp_line + (start 4.171 -1.432) + (end 4.171 1.432) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cabd9d67-f0c9-4c5e-8162-8264d00e6ef0") + ) + (fp_line + (start 4.131 -1.509) + (end 4.131 1.509) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "84760c91-4c07-45e9-bf27-6c1a9f3c79a0") + ) + (fp_line + (start 4.091 -1.581) + (end 4.091 1.581) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "38c984cd-a441-4fee-923f-e9a1aafdbe7f") + ) + (fp_line + (start 4.051 -1.65) + (end 4.051 1.65) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0f067a38-f14d-443b-ad86-2e2b71d4315b") + ) + (fp_line + (start 4.011 -1.714) + (end 4.011 1.714) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "424669f2-724e-4027-917e-f6a9f6553b0e") + ) + (fp_line + (start 3.971 -1.776) + (end 3.971 1.776) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "01ae1d5c-8ca9-4ec3-9182-b5e98905b12d") + ) + (fp_line + (start 3.931 -1.834) + (end 3.931 1.834) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "67e28049-7d3e-4ae4-9497-8dc16666e22e") + ) + (fp_line + (start -2.250241 -1.839) + (end -1.620241 -1.839) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cb619313-9120-4e3a-9671-4fa2f8cffffc") + ) + (fp_line + (start 3.891 -1.89) + (end 3.891 1.89) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7410e924-f721-4c05-bc94-66d726bee859") + ) + (fp_line + (start 3.851 -1.944) + (end 3.851 1.944) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "21980a1d-b30e-462a-ae07-874e77850f1e") + ) + (fp_line + (start 3.811 -1.995) + (end 3.811 1.995) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0108337a-2abf-47c0-9f34-dabd008aa244") + ) + (fp_line + (start 3.771 -2.044) + (end 3.771 2.044) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8d54e927-5498-493a-952e-eaa18e0a92a0") + ) + (fp_line + (start 3.731 -2.092) + (end 3.731 2.092) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "536362f9-7094-4196-852f-0b05d92cf406") + ) + (fp_line + (start 3.691 -2.137) + (end 3.691 2.137) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f0b6d159-0157-4626-a963-8d88ed1de4fb") + ) + (fp_line + (start -1.935241 -2.154) + (end -1.935241 -1.524) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "dc66dbf7-5ab1-405b-ad10-f050f97b3edb") + ) + (fp_line + (start 3.651 -2.182) + (end 3.651 2.182) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f90a487f-b78d-42db-b47e-4fa2cd2f6b10") + ) + (fp_line + (start 3.611 -2.224) + (end 3.611 2.224) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d35ea6cd-a5f1-4d95-8478-43c26b889c8c") + ) + (fp_line + (start 3.571 -2.265) + (end 3.571 2.265) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9139f036-ca1e-4a23-9cc8-090f955968af") + ) + (fp_line + (start 3.531 -2.305) + (end 3.531 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "92fface4-c527-4b0d-b725-8cdaaee9fc31") + ) + (fp_line + (start 3.491 -2.343) + (end 3.491 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7afb92e7-f3e5-4082-bc68-d564e9658507") + ) + (fp_line + (start 3.451 -2.38) + (end 3.451 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a7012381-ff93-46f6-b253-c5223a28f3a0") + ) + (fp_line + (start 3.411 -2.416) + (end 3.411 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b03087a3-cfbd-4520-a8a9-4e223bb9cf20") + ) + (fp_line + (start 3.371 -2.45) + (end 3.371 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "148c22dd-8e0d-4b71-868e-a1a74cba6824") + ) + (fp_line + (start 3.331 -2.484) + (end 3.331 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d64a6d1e-fb0e-48ed-98e0-ffff0910ea54") + ) + (fp_line + (start 3.291 -2.516) + (end 3.291 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "aa218f0f-e017-4366-9577-33f96dc0fc2a") + ) + (fp_line + (start 3.251 -2.548) + (end 3.251 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "de4a719a-e007-47c9-865c-72237f2016e6") + ) + (fp_line + (start 3.211 -2.578) + (end 3.211 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "dfd810fd-fbd3-4b05-8daa-266a55e6b639") + ) + (fp_line + (start 3.171 -2.607) + (end 3.171 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f88d41ac-9028-4884-a922-fa3369909999") + ) + (fp_line + (start 3.131 -2.636) + (end 3.131 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ee0cf966-ef7f-4287-85f0-e2d4f2b92964") + ) + (fp_line + (start 3.091 -2.664) + (end 3.091 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b0d3c44d-b028-4fd9-ab8e-99571e42e082") + ) + (fp_line + (start 3.051 -2.69) + (end 3.051 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9b430e96-33c6-4ec7-8586-0fea4c08ea7f") + ) + (fp_line + (start 3.011 -2.716) + (end 3.011 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7b6cfa76-3fca-456e-b53b-d8d02491b878") + ) + (fp_line + (start 2.971 -2.742) + (end 2.971 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0274c5bc-1284-4627-8967-b0778f3ecb72") + ) + (fp_line + (start 2.931 -2.766) + (end 2.931 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "16308a97-8a41-4bc7-a9df-b4a1736bbfd3") + ) + (fp_line + (start 2.891 -2.79) + (end 2.891 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "fc2435a6-bda8-46a8-910c-f36c1c43f94f") + ) + (fp_line + (start 2.851 -2.812) + (end 2.851 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ac9740ed-d001-4013-b869-2423539de3c4") + ) + (fp_line + (start 2.811 -2.834) + (end 2.811 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6c2cd2b2-38e4-47bf-b810-9507f86518fa") + ) + (fp_line + (start 2.771 -2.856) + (end 2.771 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "becbe5cb-979a-4bf6-99cc-a59736559a27") + ) + (fp_line + (start 2.731 -2.876) + (end 2.731 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d356c4c0-3528-4223-b7e2-5df8783d4410") + ) + (fp_line + (start 2.691 -2.896) + (end 2.691 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "20922aa2-2ee1-4f8d-92d3-444312e78db1") + ) + (fp_line + (start 2.651 -2.916) + (end 2.651 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3b06104e-5c76-4fbc-aabb-44a604d58b37") + ) + (fp_line + (start 2.611 -2.934) + (end 2.611 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d41e0d4e-52da-4b48-a25f-1fdf1ae37159") + ) + (fp_line + (start 2.571 -2.952) + (end 2.571 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "88a848b4-7b24-4867-80b3-de4393e00e69") + ) + (fp_line + (start 2.531 -2.97) + (end 2.531 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c63da76f-936e-455e-be68-cd129a3cddee") + ) + (fp_line + (start 2.491 -2.986) + (end 2.491 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "bd85cabb-6924-4f8f-8a01-908089de2218") + ) + (fp_line + (start 2.451 -3.002) + (end 2.451 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ac9d9272-472f-40d1-844a-8b957c6b27ee") + ) + (fp_line + (start 2.411 -3.018) + (end 2.411 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a613e8df-5e42-41ef-ae33-9e4998f46fb1") + ) + (fp_line + (start 2.371 -3.033) + (end 2.371 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "fee187a4-951a-45e7-a26b-0c79075f9497") + ) + (fp_line + (start 2.331 -3.047) + (end 2.331 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ee26da4e-dc37-4e0c-ba4f-e48b13f895ff") + ) + (fp_line + (start 2.291 -3.061) + (end 2.291 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "17e41aab-83e7-4f1c-b2f8-2260dc655c8d") + ) + (fp_line + (start 2.251 -3.074) + (end 2.251 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9b9aad73-9b27-480d-b5ad-5a02c79504d8") + ) + (fp_line + (start 2.211 -3.086) + (end 2.211 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8d4e8379-9198-4d6b-acca-47f26bdbdc3b") + ) + (fp_line + (start 2.171 -3.098) + (end 2.171 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ba68a1a5-f19f-4847-a79d-3cdd1385be78") + ) + (fp_line + (start 2.131 -3.11) + (end 2.131 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "bb9258e4-458b-410c-9b10-d2800a15605b") + ) + (fp_line + (start 2.091 -3.121) + (end 2.091 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "afbdaf9b-3d91-4cd4-9371-5ae4f6143204") + ) + (fp_line + (start 2.051 -3.131) + (end 2.051 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "95a67db3-8a77-48a4-8239-ff472bbc9a56") + ) + (fp_line + (start 2.011 -3.141) + (end 2.011 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "bf63aeb9-af68-452b-a71e-82d2d1dc8e0b") + ) + (fp_line + (start 1.971 -3.15) + (end 1.971 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4ce64347-d142-43dd-a7c0-2a3c1a79d957") + ) + (fp_line + (start 1.93 -3.159) + (end 1.93 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "aa4f5a0b-d2e3-4cc4-b588-29a31e70df78") + ) + (fp_line + (start 1.89 -3.167) + (end 1.89 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ec43c635-b79d-4c31-b744-1a9403719834") + ) + (fp_line + (start 1.85 -3.175) + (end 1.85 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "55e2d790-ae1d-436b-9d6b-7839afb284c7") + ) + (fp_line + (start 1.81 -3.182) + (end 1.81 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4dd162c4-b986-4939-a340-5d8609d81043") + ) + (fp_line + (start 1.77 -3.189) + (end 1.77 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "fc3e1fdb-d664-43d6-8bc6-b37f279f2fba") + ) + (fp_line + (start 1.73 -3.195) + (end 1.73 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6faf575e-2d29-4a91-a8cc-a865d9f86b99") + ) + (fp_line + (start 1.69 -3.201) + (end 1.69 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ab8b93d4-f476-47ae-8919-43850d2035c4") + ) + (fp_line + (start 1.65 -3.206) + (end 1.65 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0aa3509a-7049-43b1-9b27-d53d39010cc4") + ) + (fp_line + (start 1.61 -3.211) + (end 1.61 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8cdf8166-3a63-4bf9-9cfa-d98f79e89a08") + ) + (fp_line + (start 1.57 -3.215) + (end 1.57 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "15f57814-511f-47f1-9117-547463d562c8") + ) + (fp_line + (start 1.53 -3.218) + (end 1.53 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ec814fa5-234c-4a55-8302-48cb42271bea") + ) + (fp_line + (start 1.49 -3.222) + (end 1.49 -1.04) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cc41ece7-d529-4715-af8e-24039afc59d6") + ) + (fp_line + (start 1.45 -3.224) + (end 1.45 3.224) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cd7da61f-5725-41d8-813e-d55fb2864b3d") + ) + (fp_line + (start 1.41 -3.227) + (end 1.41 3.227) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6d2360a3-2dfd-4db8-ac0b-addde9bd6413") + ) + (fp_line + (start 1.37 -3.228) + (end 1.37 3.228) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c56fb2ee-d0d2-49f5-b237-76704e7d2494") + ) + (fp_line + (start 1.25 -3.23) + (end 1.25 3.23) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c2f84643-e89a-4608-9b18-e17e30bfd99a") + ) + (fp_line + (start 1.29 -3.23) + (end 1.29 3.23) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6167c546-f722-4493-a725-98ce077f7acf") + ) + (fp_line + (start 1.33 -3.23) + (end 1.33 3.23) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "facfa66f-cea4-4c73-87df-a5329a11ad11") + ) + (fp_circle + (center 1.25 0) + (end 4.52 0) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "F.SilkS") + (uuid "6b73463b-0002-487d-8c2c-562568cfb21a") + ) + (fp_circle + (center 1.25 0) + (end 4.65 0) + (stroke + (width 0.05) + (type solid) + ) + (fill none) + (layer "F.CrtYd") + (uuid "4f68566f-69ae-48ff-86e6-ef506615d2e6") + ) + (fp_line + (start -1.443972 -1.3735) + (end -0.813972 -1.3735) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c89c636e-f213-422e-9203-fe75551855c8") + ) + (fp_line + (start -1.128972 -1.6885) + (end -1.128972 -1.0585) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2c41a43b-e61b-4807-9a7e-b172e58e3f72") + ) + (fp_circle + (center 1.25 0) + (end 4.4 0) + (stroke + (width 0.1) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "236c5c88-4d3f-4f22-92b5-d771295424a1") + ) + (fp_text user "${REFERENCE}" + (at 1.25 0 90) + (layer "F.Fab") + (uuid "75aec168-915a-4583-9f24-64618982eb34") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole rect + (at 0 0 270) + (size 1.6 1.6) + (drill 0.8) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "GND") + (pintype "passive") + (uuid "d06bdee5-da8c-4f5d-9e0b-ad6629fa1fe3") + ) + (pad "2" thru_hole circle + (at 2.5 0 270) + (size 1.6 1.6) + (drill 0.8) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 3 "/Supply_Ref/-15V") + (pintype "passive") + (uuid "87cc505a-39a1-4753-95fc-625b207c7581") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D6.3mm_P2.50mm.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Diode_SMD:D_SMB" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-000061e58297") + (at 72 120.2) + (descr "Diode SMB (DO-214AA)") + (tags "Diode SMB (DO-214AA)") + (property "Reference" "D2" + (at 0 -3 0) + (layer "F.SilkS") + (uuid "ed69650e-04c9-452c-a647-9456c8248067") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "SMBJ40CA" + (at 0 3.1 0) + (layer "F.Fab") + (uuid "2bb3e938-a33f-4bf2-af60-7e4530dc7637") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Diode_SMD:D_SMB" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6ac94543-34d0-4b3c-b9ec-d73d9ea85e59") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "58b6896f-793c-4944-90aa-d69ba989a87a") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3b880e12-0ef8-4f91-a7e4-88fd8eb95a47") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Bourns" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "fe276e28-b9b1-4dfc-8fbd-676f0cd035a1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "SMBJ40CA-QH" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "c8cf060d-ca01-4236-aa8c-6a6de4ed3bad") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") + (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-000061e66d74") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.kicad_sch") + (attr smd) + (fp_line + (start -3.66 -2.15) + (end -3.66 2.15) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "09ca7f10-1d88-4d90-a0a6-6b9fffd83081") + ) + (fp_line + (start -3.66 -2.15) + (end 2.15 -2.15) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "99de571d-715e-4ad1-92f1-60c79ee2c9f7") + ) + (fp_line + (start -3.66 2.15) + (end 2.15 2.15) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "763afe77-6bf2-4e7d-8e91-96f42d17a20e") + ) + (fp_line + (start -3.65 -2.25) + (end 3.65 -2.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "77cbbc2a-e1a0-4188-a186-233289eaf4a8") + ) + (fp_line + (start -3.65 2.25) + (end -3.65 -2.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "6f946548-518e-4031-ab52-53ed42d799b0") + ) + (fp_line + (start 3.65 -2.25) + (end 3.65 2.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "cdd7089a-bb4d-4a98-8211-e214aa6a89e1") + ) + (fp_line + (start 3.65 2.25) + (end -3.65 2.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "bc433b18-2742-436e-9d81-e64c109e09e7") + ) + (fp_line + (start -2.3 2) + (end -2.3 -2) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "eaaf956f-9c7a-4d14-bacc-538ac81a5a20") + ) + (fp_line + (start -0.64944 -0.79908) + (end -0.64944 0.80112) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b1521a54-5fe4-410e-9afb-2831e296830d") + ) + (fp_line + (start -0.64944 0.00102) + (end -1.55114 0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5436fdc0-a07f-4450-a961-bb8aa8e5eaad") + ) + (fp_line + (start -0.64944 0.00102) + (end 0.50118 -0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6b7901a8-ec4b-4440-acc2-42ecdb8cdf2d") + ) + (fp_line + (start -0.64944 0.00102) + (end 0.50118 0.75032) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "73e14169-542b-42c9-acdd-3ed890d5416b") + ) + (fp_line + (start 0.50118 0.00102) + (end 1.4994 0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "cf8e2fa4-66a4-4d5c-9165-38cb22aba4b3") + ) + (fp_line + (start 0.50118 0.75032) + (end 0.50118 -0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "deb06b43-d4cf-444d-a212-ae955a66e8bb") + ) + (fp_line + (start 2.3 -2) + (end -2.3 -2) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "59009fba-ae94-47b6-8180-35b3c45df42d") + ) + (fp_line + (start 2.3 -2) + (end 2.3 2) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a0aae6fb-9a58-428d-88d2-88e1f876f075") + ) + (fp_line + (start 2.3 2) + (end -2.3 2) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "597f5556-5890-4b58-8357-4ec70d88688b") + ) + (fp_text user "${REFERENCE}" + (at 0 -3 0) + (layer "F.Fab") + (uuid "1371710d-260f-4384-af6d-68033c795ece") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -2.15 0) + (size 2.5 2.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.1086956522) + (net 1 "/Supply_Ref/+15V") + (pinfunction "A1") + (pintype "passive") + (uuid "822da8ad-cbe8-4345-ac97-35b18c321e04") + ) + (pad "2" smd roundrect + (at 2.15 0) + (size 2.5 2.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.1086956522) + (net 2 "GND") + (pinfunction "A2") + (pintype "passive") + (uuid "a9672df8-6def-40f0-b707-b78aed0e64eb") + ) + (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMB.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Diode_SMD:D_SMB" + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-000061e582af") + (at 66.3 54.8 180) + (descr "Diode SMB (DO-214AA)") + (tags "Diode SMB (DO-214AA)") + (property "Reference" "D3" + (at -4.5 -0.1 90) + (layer "F.SilkS") + (uuid "8166f895-a627-4df5-879d-6587da52def0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "SMBJ40CA" + (at 0 3.1 0) + (layer "F.Fab") + (uuid "5f5c4184-1cbb-4162-8d5d-8aeac05f807b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Diode_SMD:D_SMB" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bd66aad9-cc4c-4ccd-b333-ce9e006ce5bb") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "476e5be9-18c5-42a9-a7cb-4195fac62cd6") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "15cbe9a1-f5d6-43f1-979a-49f9eb625cc2") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Bourns" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "ae00b752-1d30-4081-b53e-4d7729d33b19") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "SMBJ40CA-QH" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "81a61bb7-e09a-4a56-8106-d1f60ea4ce21") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") + (path "/00000000-0000-0000-0000-00005b053798/00000000-0000-0000-0000-000061e67517") + (sheetname "Supply_Ref") + (sheetfile "Supply_Ref.kicad_sch") + (attr smd) + (fp_line + (start -3.66 2.15) + (end 2.15 2.15) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e72f6067-e395-4e8d-bfcb-f3b154408a10") + ) + (fp_line + (start -3.66 -2.15) + (end 2.15 -2.15) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6f4ffa9c-858e-4407-8250-da87336a83e5") + ) + (fp_line + (start -3.66 -2.15) + (end -3.66 2.15) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2ed18258-c3c9-4139-8c96-a865bf3f1ed0") + ) + (fp_line + (start 3.65 2.25) + (end -3.65 2.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "5e4c23bf-0c55-420b-90d2-99a83dc25285") + ) + (fp_line + (start 3.65 -2.25) + (end 3.65 2.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d15313f1-6ae7-4f66-821a-9d3a53f57416") + ) + (fp_line + (start -3.65 2.25) + (end -3.65 -2.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "dbcaac08-489a-4fb8-857e-849398be652d") + ) + (fp_line + (start -3.65 -2.25) + (end 3.65 -2.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "53247039-c433-4e20-9739-1798df8feaea") + ) + (fp_line + (start 2.3 2) + (end -2.3 2) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d5e97cee-72cb-4e3d-8810-13f7e748f439") + ) + (fp_line + (start 2.3 -2) + (end 2.3 2) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "79cc792f-3dd6-4654-9142-e5cd55708f7c") + ) + (fp_line + (start 2.3 -2) + (end -2.3 -2) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "32c0ec6a-ffda-4e1b-b1b5-e83635945003") + ) + (fp_line + (start 0.50118 0.75032) + (end 0.50118 -0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2aee985b-f7b7-441b-985e-74ef32420b40") + ) + (fp_line + (start 0.50118 0.00102) + (end 1.4994 0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "138e0d4b-f9ec-4557-b83f-4cc2d156329e") + ) + (fp_line + (start -0.64944 0.00102) + (end 0.50118 0.75032) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4ef56f71-6f74-4834-a521-f5e3b20e0b2f") + ) + (fp_line + (start -0.64944 0.00102) + (end 0.50118 -0.79908) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3f310dd8-d786-4326-a90e-5ed9a88b7ca9") + ) + (fp_line + (start -0.64944 0.00102) + (end -1.55114 0.00102) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5ec2b50d-39a0-43e3-bb0b-94d6e96d13cc") + ) + (fp_line + (start -0.64944 -0.79908) + (end -0.64944 0.80112) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8bf93bc4-e6bf-49d8-96fd-b49dcbac3099") + ) + (fp_line + (start -2.3 2) + (end -2.3 -2) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e81ee801-6878-47d5-9b8a-3f5d47ce27a4") + ) + (fp_text user "${REFERENCE}" + (at 0 -3 0) + (layer "F.Fab") + (uuid "a8d225b6-e5b0-443f-acdd-bb15e6a06037") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -2.15 0 180) + (size 2.5 2.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.1086956522) + (net 2 "GND") + (pinfunction "A1") + (pintype "passive") + (uuid "a6e4ac39-b4fe-4a5c-b27b-3c83913e768b") + ) + (pad "2" smd roundrect + (at 2.15 0 180) + (size 2.5 2.3) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.1086956522) + (net 3 "/Supply_Ref/-15V") + (pinfunction "A2") + (pintype "passive") + (uuid "39f1560d-466f-4dd1-82fc-68805e36bd30") + ) + (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SMB.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "03b21780-41fc-412f-9634-726d758979eb") + (at 174.2 43.1) + (descr "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") + (tags "resistor") + (property "Reference" "R17" + (at 0 -1.5 0) + (layer "F.SilkS") + (uuid "d77058a5-9519-472f-a27e-0f333531e198") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1k" + (at 0 1.43 0) + (layer "F.Fab") + (uuid "de9a7fb8-26c9-4c6e-aaac-a6509734d51b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "633bdb03-6b06-4d57-a216-636be36e68ca") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "54cdbf43-e4cf-405e-bd1e-ceec5a4e035b") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5f6fb0c6-39d7-41b4-8d0d-70ee88ccaf72") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Susumu" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "d9eb32f4-7f75-451d-b8fd-3cc1847e5692") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "RR0816P-102-D" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "21e8b2ec-2e60-4801-bccb-a5c70cfaac5f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/00000000-0000-0000-0000-00005b057307/85928547-ef90-41f4-89e0-2c16d7077ebc") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "aabf4983-2016-474b-8000-5265823042a8") + ) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "96198f50-9642-42cc-81d7-389237c9f980") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c8fcf1c0-2281-4fe5-b241-2d2266f3759e") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b1c55f35-3014-403b-b681-744169b9a1a1") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9976bead-f913-4c91-8ed0-04f024348f2e") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "be299c0c-4cdf-4c0c-bafe-45da469000be") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ba838033-53d1-4be6-8418-7437b410b98d") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "03c4bd3a-f21c-4030-9fc3-8dd88eafb238") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "582d0932-156e-4837-9bab-e0844b10a7d4") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6857eaab-df5a-41ad-b24c-3092b41434d4") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "9fe30dce-19a2-4cf5-a9f2-e596edd6bd44") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 88 "Net-(U7B--)") + (pintype "passive") + (uuid "ccb8455d-126c-4c10-bf06-3443a4e92959") + ) + (pad "2" smd roundrect + (at 0.825 0) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 89 "Net-(U7A--)") + (pintype "passive") + (uuid "410e791f-de1a-4382-9286-c76ff0efa658") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "1b3cc04c-8f88-4e39-b15d-e0c4efafc2d5") + (at 161.6 39.3 90) + (descr "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") + (tags "resistor") + (property "Reference" "R32" + (at 0 -1.43 90) + (layer "F.SilkS") + (uuid "f14097be-4e98-4236-b784-4f4fda462c83") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "91k" + (at 0 1.43 90) + (layer "F.Fab") + (uuid "b94f8ca2-deea-4d83-9992-178ed4eb9094") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b0893d30-dab3-48a5-b119-7ee954a2c2ae") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "419f70bc-4e47-4b56-be37-47a18c7eb882") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f851c3a5-3cd8-485e-9616-4d9dbd440c96") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Config" "" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "efc64954-c279-4fd5-a2bc-69f42759277a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "MFN" "Susumu" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "40383093-d6ad-425e-af80-d43e866ac961") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "RR0816P-913-D" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "aca2eceb-c0e5-46f8-86b9-8c239b7f5d9f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/00000000-0000-0000-0000-00005b057307/691945d5-7544-4393-8de4-ef9a08567d22") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2c273d46-6fa5-4a3d-bedd-580527fe49f5") + ) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2f4a8daa-e23f-46e1-9411-e1be1c43240e") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "6a4188e9-c2df-4ca9-8b85-b6c1a7311746") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "db22b563-b3e1-450c-b249-1684636ce054") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "45c3bbb7-a0f4-4500-b375-2491e35621a1") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "66d9aefa-902c-4fb9-b034-439ee7895014") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "76f11931-3714-4b7c-a0b0-b8a2779f33df") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f2ae953d-07e3-4ccf-b5da-d9780a7c0355") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "88989965-691e-4ecf-a986-fa6bb997671f") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d49fa5f6-0691-4eb3-82f7-d95f769b406b") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "75d544d4-ea4a-4c29-a09f-3a5b66d04470") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0 90) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 14 "Net-(U7B-+)") + (pintype "passive") + (uuid "4bce1e3e-8dd7-4529-aecc-c7d8d446b9af") + ) + (pad "2" smd roundrect + (at 0.825 0 90) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 118 "/Input_Output_Module/+10V_ref") + (pintype "passive") + (uuid "73596585-38ad-493f-a09d-dd0e3d0bb94d") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "40d949b9-e0e4-4df7-8565-5117f67c5ae6") + (at 179.2 48.1 90) + (descr "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") + (tags "resistor") + (property "Reference" "R20" + (at 0 1.6 90) + (layer "F.SilkS") + (uuid "6dcc5339-a6f5-4b2a-9856-3a7f9328ddb4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1k" + (at 0 1.43 90) + (layer "F.Fab") + (uuid "d9806d26-0082-4a19-a9b1-60461063438b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f475b16e-0a0c-4dbb-a8d3-5037f67e3f30") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4991c07c-2706-4072-b0ef-89988ad548c2") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "84274900-ee6e-49c8-b30b-80311a40d8c3") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Susumu" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "581f1335-baf7-4a75-8297-24a4d37c0f34") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "RR0816P-102-D" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "b09f69e1-153b-48d6-ba85-fb91b48733ce") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/00000000-0000-0000-0000-00005b057307/34ea8110-746e-472c-a415-537e7776ba7d") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c160a88a-2709-46d8-9cc5-d0bdfeee839a") + ) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cffc8e9c-4a9b-409f-9aef-306a205e120d") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "61f862e7-cd91-4792-b925-2d0472dbe75e") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c497108c-8e32-4c37-a774-3d884c1299f9") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d0f3d973-c800-4697-b5f0-d7a8c300d8f7") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "34f61ae9-bc2b-4d6b-bd5a-f609b2f2520d") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "16068d7f-95d1-4816-ae4b-b2767b620305") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ff6e3136-e766-43a1-ab03-50b49a02522b") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "73a25915-7a90-4c31-a189-8fa45ef69ca0") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c28290e4-85b8-44f9-a02c-63299d9bf231") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "c28c4094-0afa-4dfb-bec8-cbe30bd9348c") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0 90) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 67 "Net-(R20-Pad1)") + (pintype "passive") + (uuid "b57b722c-8d78-432d-b400-ef30620fd0e0") + ) + (pad "2" smd roundrect + (at 0.825 0 90) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 89 "Net-(U7A--)") + (pintype "passive") + (uuid "1dbf16e7-28a9-4d93-9a20-ea9404194f61") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_Tantalum_SMD:CP_EIA-3528-21_Kemet-B" + (layer "F.Cu") + (uuid "7684b0c8-a3c0-4a5f-badc-1e8985b77239") + (at 168.7 39.2) + (descr "Tantalum Capacitor SMD Kemet-B (3528-21 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator") + (tags "capacitor tantalum") + (property "Reference" "C24" + (at 0 -2.35 0) + (layer "F.SilkS") + (uuid "b274f432-d4ea-492b-9b1b-72d28f91e595") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10u" + (at 0 2.35 0) + (layer "F.Fab") + (uuid "d93eea66-0d06-4bf8-9777-ee4f4af6a9e5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_Tantalum_SMD:CP_EIA-3528-21_Kemet-B" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b8e119fa-b64f-4a88-9e40-cd3546f0e069") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6c55d1a8-6d6a-4d76-8651-77f3e31b8c2e") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "28dfbdaf-0271-4a2d-a12a-9defc1e851a8") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "AVX" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "82d1f5b5-2d78-4743-b275-80c7b3685c5e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "TCJB106M025R0150" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "d953be43-1267-45ec-9da6-787d784d9f31") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "CP_*") + (path "/00000000-0000-0000-0000-00005b057307/ba32c028-f96b-40c5-96bd-2c6f5cb0e71f") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start -2.46 -1.51) + (end -2.46 1.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "45f034cb-f827-4d72-817c-5ef7e0f5491c") + ) + (fp_line + (start -2.46 1.51) + (end 1.75 1.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d29c47a8-1620-4faa-be39-61e1948b4d26") + ) + (fp_line + (start 1.75 -1.51) + (end -2.46 -1.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "34f483b0-536a-4f74-98da-75ff9b480ae8") + ) + (fp_line + (start -2.45 -1.65) + (end 2.45 -1.65) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "baf54f3f-c9e8-4994-a2ee-3f855b546ed5") + ) + (fp_line + (start -2.45 1.65) + (end -2.45 -1.65) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a7c0ac82-8b8a-4d09-9987-a0013c9045aa") + ) + (fp_line + (start 2.45 -1.65) + (end 2.45 1.65) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7231a573-757e-4d9a-a04d-608345e87334") + ) + (fp_line + (start 2.45 1.65) + (end -2.45 1.65) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "eb6cdea1-7b9f-4adf-a232-c9f462426fff") + ) + (fp_line + (start -1.75 -0.7) + (end -1.75 1.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f493dafe-ab30-439f-b900-7896dfa1cb62") + ) + (fp_line + (start -1.75 1.4) + (end 1.75 1.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6a41d076-688f-4b3c-87d7-079233de3536") + ) + (fp_line + (start -1.05 -1.4) + (end -1.75 -0.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4a05c5a4-6382-4d47-aeb5-eb84adc561a9") + ) + (fp_line + (start 1.75 -1.4) + (end -1.05 -1.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "bc720081-c95c-4d6b-92cb-e9918b416a68") + ) + (fp_line + (start 1.75 1.4) + (end 1.75 -1.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "98c52397-0856-46fc-ad7b-e8c52baf9e7c") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "c8082de3-059b-4b3d-b85f-6add2bd81a84") + (effects + (font + (size 0.88 0.88) + (thickness 0.13) + ) + ) + ) + (pad "1" smd roundrect + (at -1.5375 0) + (size 1.325 2.35) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.188679) + (net 14 "Net-(U7B-+)") + (pintype "passive") + (uuid "57225b1a-7e49-459e-9b83-b771b3938fe0") + ) + (pad "2" smd roundrect + (at 1.5375 0) + (size 1.325 2.35) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.188679) + (net 2 "GND") + (pintype "passive") + (uuid "a00c603c-553f-47b1-b80a-ba9c10ab1ef4") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-3528-21_Kemet-B.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "da45010f-ef64-4740-82f1-fee030820c70") + (at 164.7 39.3 90) + (descr "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") + (tags "resistor") + (property "Reference" "R31" + (at 0 -1.43 90) + (layer "F.SilkS") + (uuid "3ef9c845-d2b0-456d-af21-40a95f03fba4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10k" + (at 0 1.43 90) + (layer "F.Fab") + (uuid "a3d6a464-f44e-4f99-9ed1-f8526e0b9103") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "cf3a15bf-9d1d-4bd5-be64-930c60bcaf6d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7dc77667-7c3d-4864-8cb2-c4a495822710") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5eb00e70-95e7-4bf7-8b1a-dcb7e01a5df5") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Susumu" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "08af85a0-81f5-4c4a-b04a-91d0c40745c8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "RR0816P-103-D" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "bb25062d-910d-483e-b711-7126de29fc7f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/00000000-0000-0000-0000-00005b057307/c5e86fd8-41d3-4087-97b4-5d16719c9207") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "fdfd0b04-8210-4db8-a35b-c6a057abe416") + ) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "04a4f4aa-bf1a-4198-aa59-417615d3328b") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "56f424b5-901a-4ace-9dd4-7c20c6d76b17") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "85560477-0853-4187-9395-0332a36b4b91") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "618d620f-b380-4e6e-b21a-6a359c081518") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ad92dd25-7d14-45fd-aa02-427ac2474c82") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "73a4618b-e93e-40b9-98f2-06902681ad78") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "266378a0-6ebb-4e49-b73c-ba297f0235e6") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "337ded5f-b946-4297-96d2-ac5ed3bfc2bd") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8f978ac3-3e77-4d7d-893c-bada097a3520") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "06cdfe58-e702-40e0-a5e3-7e1deec22b2d") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0 90) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "ed1701c4-a42c-4e2f-8069-03c2325c8316") + ) + (pad "2" smd roundrect + (at 0.825 0 90) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 14 "Net-(U7B-+)") + (pintype "passive") + (uuid "56529cad-1c34-4b63-9866-e5007c569893") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "e21396fb-d38d-4523-9a75-52acb1f5f431") + (at 172.4 51.4 -90) + (descr "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") + (tags "resistor") + (property "Reference" "R19" + (at 3 0 90) + (layer "F.SilkS") + (uuid "de73afb3-9f1e-4898-be4c-9e12be886ba3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1k" + (at 0 1.43 90) + (layer "F.Fab") + (uuid "e8af86fa-9e49-4885-b5d3-e71bf6e908e9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "53e58802-4c7a-4216-8b2e-1ae434508dcc") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "fb5b07cc-c7d6-426c-abcb-864b29c87162") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "65345047-0d47-4bc0-bdd0-eaa61b3ed261") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Susumu" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "d4c20e7d-7f43-4efd-befe-aa494003a462") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "RR0816P-102-D" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "5a954354-4df1-4ab4-a917-41f8e49d151a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/00000000-0000-0000-0000-00005b057307/e3056e1e-b81f-451c-85a7-a9781a32dd24") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2e1755a7-4544-4b45-8013-90f5a605ab98") + ) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "40a81d80-8d6e-4b9a-8aab-24643944e922") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ba2c9c55-7ba6-450d-b93a-cb70a6a44b55") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1ac33749-2a6e-40dc-8377-f6a8a344055b") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9262b89f-89a6-4a7f-a9d8-0b76ee7e33ae") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d24aeb47-4770-403d-836b-77110d3939fa") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c3053462-38bd-4f2a-ad2b-5449e933ed03") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f19a6fe4-f27b-4e38-97a3-cfff6bacbded") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "93f6084c-72ee-4627-874b-d6be0d254e55") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f4d693b1-05f1-4266-9888-54cfa680422b") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "b736c19a-6df1-41f7-bf2c-f95194cb9c75") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0 270) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 15 "Net-(U7A-+)") + (pintype "passive") + (uuid "139f7ae5-3813-4487-8bc5-d8320811e995") + ) + (pad "2" smd roundrect + (at 0.825 0 270) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 75 "Net-(J11-In)") + (pintype "passive") + (uuid "8e0f7e5f-3431-4d16-a581-d6ffb96367e5") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "f255db96-29d0-4680-8627-2238d36b7cb1") + (at 174.2 51.4 -90) + (descr "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") + (tags "resistor") + (property "Reference" "R33" + (at 3.1 0 90) + (layer "F.SilkS") + (uuid "b40faabb-4799-4575-9a6a-0edfa1dd2713") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1k" + (at 0 1.43 90) + (layer "F.Fab") + (uuid "07ca7c16-90b2-4d06-8adb-68ed805d2874") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "069d6a22-1c15-48b1-bd53-af118dda268a") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0b122e93-a928-4a94-a8e6-2e1e469d6ae1") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "58dc7c0a-6492-496a-9e9a-baa3e15d7000") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MFN" "Susumu" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "4082c495-ab0c-4ec9-9d5b-e1bf0966b4c2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PN" "RR0816P-102-D" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "8b9ff4ce-9473-486c-becc-b3c79f94a508") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/00000000-0000-0000-0000-00005b057307/1b8505fd-6bd4-453d-9c3a-68f9976fea56") + (sheetname "Input_Output_Module") + (sheetfile "Input_Output_Module.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "18b9e7c4-5c08-4363-bd3d-31611fb9f5a5") + ) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "feff31ed-4f47-45cd-9873-000a05277621") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "48e9f85b-3e32-4ac8-ba98-aa3abe5bf429") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4c8c5240-df6f-4692-98e3-4a89caaf2f1e") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "fbb43f60-c47a-4167-9026-4bde39165692") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "bd87c819-3b40-4670-ad07-e1562093beeb") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3cb073bd-8850-4bc7-bde9-3840c6fb98ae") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c356eabc-be52-4726-8468-c87e9e22e094") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "dbdb8e4a-cbba-43a5-b8fc-63f417713337") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9aabc42e-2c8b-4471-a200-7ba7fa303ae5") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "b7e64266-5129-4cab-ad77-5b55bc89226e") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0 270) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 15 "Net-(U7A-+)") + (pintype "passive") + (uuid "2a647243-7e71-4958-8864-5ae354af1b28") + ) + (pad "2" smd roundrect + (at 0.825 0 270) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "GND") + (pintype "passive") + (uuid "162e5e12-b6f3-4481-a715-91afeb007531") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Symbol:OSHW-Logo_5.7x6mm_SilkScreen" + (locked yes) + (layer "B.Cu") + (uuid "00000000-0000-0000-0000-00005f70c947") + (at 206.17 110.9 -90) + (descr "Open Source Hardware Logo") + (tags "Logo OSHW") + (property "Reference" "LOGO2" + (at 0 0 90) + (layer "B.SilkS") + (hide yes) + (uuid "1111b537-6fa5-4424-8115-039735518c48") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "Logo_Open_Hardware_Small" + (at 0.75 0 90) + (layer "B.Fab") + (hide yes) + (uuid "a8e14041-0ad7-4dcf-b208-da90d33779c9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "Symbol:OSHW-Logo_5.7x6mm_SilkScreen" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "523d4d55-2e87-49eb-92b4-a0cc39af7bfb") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b9317696-1fba-440e-9955-7dc956ce55e9") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3a4594f4-3ad8-4930-85d0-9fbc86cc2ad3") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Sim.Enable" "0" + (at 0 0 180) + (layer "B.Fab") + (hide yes) + (uuid "c1f4e198-4b0c-44cd-b94f-45483e52776e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "MFN" "" + (at 0 0 -90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "4df58303-712a-4e96-8c69-e987a6f96488") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "PN" "" + (at 0 0 -90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "58353507-0bba-4578-854b-91b0296b5978") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (path "/00000000-0000-0000-0000-00005f6d62f6") + (sheetname "Root") + (sheetfile "RedPitaya_Lockbox.kicad_sch") + (attr exclude_from_pos_files exclude_from_bom) + (fp_poly + (pts + (xy 1.79946 -1.45803) (xy 1.842711 -1.471245) (xy 1.870558 -1.487941) (xy 1.879629 -1.501145) (xy 1.877132 -1.516797) + (xy 1.860931 -1.541385) (xy 1.847232 -1.5588) (xy 1.818992 -1.590283) (xy 1.797775 -1.603529) (xy 1.779688 -1.602664) + (xy 1.726035 -1.58901) (xy 1.68663 -1.58963) (xy 1.654632 -1.605104) (xy 1.64389 -1.614161) (xy 1.609505 -1.646027) + (xy 1.609505 -2.062179) (xy 1.471188 -2.062179) (xy 1.471188 -1.458614) (xy 1.540347 -1.458614) + (xy 1.581869 -1.460256) (xy 1.603291 -1.466087) (xy 1.609502 -1.477461) (xy 1.609505 -1.477798) + (xy 1.612439 -1.489713) (xy 1.625704 -1.488159) (xy 1.644084 -1.479563) (xy 1.682046 -1.463568) + (xy 1.712872 -1.453945) (xy 1.752536 -1.451478) (xy 1.79946 -1.45803) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill solid) + (layer "B.SilkS") + (uuid "330fc15f-e03b-410c-8402-a48a82417393") + ) + (fp_poly + (pts + (xy 1.635255 -2.401486) (xy 1.683595 -2.411015) (xy 1.711114 -2.425125) (xy 1.740064 -2.448568) + (xy 1.698876 -2.500571) (xy 1.673482 -2.532064) (xy 1.656238 -2.547428) (xy 1.639102 -2.549776) + (xy 1.614027 -2.542217) (xy 1.602257 -2.537941) (xy 1.55427 -2.531631) (xy 1.510324 -2.545156) (xy 1.47806 -2.57571) + (xy 1.472819 -2.585452) (xy 1.467112 -2.611258) (xy 1.462706 -2.658817) (xy 1.459811 -2.724758) + (xy 1.458631 -2.80571) (xy 1.458614 -2.817226) (xy 1.458614 -3.017822) (xy 1.320297 -3.017822) (xy 1.320297 -2.401683) + (xy 1.389456 -2.401683) (xy 1.429333 -2.402725) (xy 1.450107 -2.407358) (xy 1.457789 -2.417849) + (xy 1.458614 -2.427745) (xy 1.458614 -2.453806) (xy 1.491745 -2.427745) (xy 1.529735 -2.409965) + (xy 1.58077 -2.401174) (xy 1.635255 -2.401486) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill solid) + (layer "B.SilkS") + (uuid "046a840f-f194-48d6-bc59-c2cbf1c3a3f7") + ) + (fp_poly + (pts + (xy -0.993356 -2.40302) (xy -0.974539 -2.40866) (xy -0.968473 -2.421053) (xy -0.968218 -2.426647) + (xy -0.967129 -2.44223) (xy -0.959632 -2.444676) (xy -0.939381 -2.433993) (xy -0.927351 -2.426694) + (xy -0.8894 -2.411063) (xy -0.844072 -2.403334) (xy -0.796544 -2.40274) (xy -0.751995 -2.408513) + (xy -0.715602 -2.419884) (xy -0.692543 -2.436088) (xy -0.687996 -2.456355) (xy -0.690291 -2.461843) + (xy -0.70702 -2.484626) (xy -0.732963 -2.512647) (xy -0.737655 -2.517177) (xy -0.762383 -2.538005) + (xy -0.783718 -2.544735) (xy -0.813555 -2.540038) (xy -0.825508 -2.536917) (xy -0.862705 -2.529421) + (xy -0.888859 -2.532792) (xy -0.910946 -2.544681) (xy -0.931178 -2.560635) (xy -0.946079 -2.5807) + (xy -0.956434 -2.608702) (xy -0.963029 -2.648467) (xy -0.966649 -2.703823) (xy -0.968078 -2.778594) + (xy -0.968218 -2.82374) (xy -0.968218 -3.017822) (xy -1.09396 -3.017822) (xy -1.09396 -2.401683) + (xy -1.031089 -2.401683) (xy -0.993356 -2.40302) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill solid) + (layer "B.SilkS") + (uuid "1a9cb1dc-856c-4e95-8f3c-22e865021f0d") + ) + (fp_poly + (pts + (xy 0.993367 -1.654342) (xy 0.994555 -1.746563) (xy 0.998897 -1.81661) (xy 1.007558 -1.867381) (xy 1.021704 -1.901772) + (xy 1.0425 -1.922679) (xy 1.07111 -1.933) (xy 1.106535 -1.935636) (xy 1.143636 -1.932682) (xy 1.171818 -1.921889) + (xy 1.192243 -1.90036) (xy 1.206079 -1.865199) (xy 1.214491 -1.81351) (xy 1.218643 -1.742394) (xy 1.219703 -1.654342) + (xy 1.219703 -1.458614) (xy 1.35802 -1.458614) (xy 1.35802 -2.062179) (xy 1.288862 -2.062179) (xy 1.24717 -2.060489) + (xy 1.225701 -2.054556) (xy 1.219703 -2.043293) (xy 1.216091 -2.033261) (xy 1.201714 -2.035383) + (xy 1.172736 -2.04958) (xy 1.106319 -2.07148) (xy 1.035875 -2.069928) (xy 0.968377 -2.046147) (xy 0.936233 -2.027362) + (xy 0.911715 -2.007022) (xy 0.893804 -1.981573) (xy 0.881479 -1.947458) (xy 0.873723 -1.901121) + (xy 0.869516 -1.839007) (xy 0.86784 -1.757561) (xy 0.867624 -1.694578) (xy 0.867624 -1.458614) (xy 0.993367 -1.458614) + (xy 0.993367 -1.654342) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill solid) + (layer "B.SilkS") + (uuid "dfb5a92a-319f-489c-8fb9-e3d0165ab710") + ) + (fp_poly + (pts + (xy -0.754012 -1.469002) (xy -0.722717 -1.48395) (xy -0.692409 -1.505541) (xy -0.669318 -1.530391) + (xy -0.6525 -1.562087) (xy -0.641006 -1.604214) (xy -0.633891 -1.660358) (xy -0.630207 -1.734106) + (xy -0.629008 -1.829044) (xy -0.628989 -1.838985) (xy -0.628713 -2.062179) (xy -0.76703 -2.062179) + (xy -0.76703 -1.856418) (xy -0.767128 -1.780189) (xy -0.767809 -1.724939) (xy -0.769651 -1.686501) + (xy -0.773233 -1.660706) (xy -0.779132 -1.643384) (xy -0.787927 -1.630368) (xy -0.80018 -1.617507) + (xy -0.843047 -1.589873) (xy -0.889843 -1.584745) (xy -0.934424 -1.602217) (xy -0.949928 -1.615221) + (xy -0.96131 -1.627447) (xy -0.969481 -1.64054) (xy -0.974974 -1.658615) (xy -0.97832 -1.685787) + (xy -0.980051 -1.72617) (xy -0.980697 -1.783879) (xy -0.980792 -1.854132) (xy -0.980792 -2.062179) + (xy -1.119109 -2.062179) (xy -1.119109 -1.458614) (xy -1.04995 -1.458614) (xy -1.008428 -1.460256) + (xy -0.987006 -1.466087) (xy -0.980795 -1.477461) (xy -0.980792 -1.477798) (xy -0.97791 -1.488938) + (xy -0.965199 -1.487674) (xy -0.939926 -1.475434) (xy -0.882605 -1.457424) (xy -0.817037 -1.455421) + (xy -0.754012 -1.469002) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill solid) + (layer "B.SilkS") + (uuid "cdd017c3-f9ec-4b6b-9334-f6bf2cef71ad") + ) + (fp_poly + (pts + (xy 2.217226 -1.46388) (xy 2.29008 -1.49483) (xy 2.313027 -1.509895) (xy 2.342354 -1.533048) (xy 2.360764 -1.551253) + (xy 2.363961 -1.557183) (xy 2.354935 -1.57034) (xy 2.331837 -1.592667) (xy 2.313344 -1.60825) (xy 2.262728 -1.648926) + (xy 2.22276 -1.615295) (xy 2.191874 -1.593584) (xy 2.161759 -1.58609) (xy 2.127292 -1.58792) (xy 2.072561 -1.601528) + (xy 2.034886 -1.629772) (xy 2.011991 -1.675433) (xy 2.001597 -1.741289) (xy 2.001595 -1.741331) + (xy 2.002494 -1.814939) (xy 2.016463 -1.868946) (xy 2.044328 -1.905716) (xy 2.063325 -1.918168) + (xy 2.113776 -1.933673) (xy 2.167663 -1.933683) (xy 2.214546 -1.918638) (xy 2.225644 -1.911287) + (xy 2.253476 -1.892511) (xy 2.275236 -1.889434) (xy 2.298704 -1.903409) (xy 2.324649 -1.92851) (xy 2.365716 -1.97088) + (xy 2.320121 -2.008464) (xy 2.249674 -2.050882) (xy 2.170233 -2.071785) (xy 2.087215 -2.070272) + (xy 2.032694 -2.056411) (xy 1.96897 -2.022135) (xy 1.918005 -1.968212) (xy 1.894851 -1.930149) (xy 1.876099 -1.875536) + (xy 1.866715 -1.806369) (xy 1.866643 -1.731407) (xy 1.875824 -1.659409) (xy 1.894199 -1.599137) + (xy 1.897093 -1.592958) (xy 1.939952 -1.532351) (xy 1.997979 -1.488224) (xy 2.066591 -1.461493) + (xy 2.141201 -1.453073) (xy 2.217226 -1.46388) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill solid) + (layer "B.SilkS") + (uuid "ec8074ba-06fe-4718-9ec5-0fd097cdbd8e") + ) + (fp_poly + (pts + (xy 0.610762 -1.466055) (xy 0.674363 -1.500692) (xy 0.724123 -1.555372) (xy 0.747568 -1.599842) + (xy 0.757634 -1.639121) (xy 0.764156 -1.695116) (xy 0.766951 -1.759621) (xy 0.765836 -1.824429) + (xy 0.760626 -1.881334) (xy 0.754541 -1.911727) (xy 0.734014 -1.953306) (xy 0.698463 -1.997468) + (xy 0.655619 -2.036087) (xy 0.613211 -2.061034) (xy 0.612177 -2.06143) (xy 0.559553 -2.072331) (xy 0.497188 -2.072601) + (xy 0.437924 -2.062676) (xy 0.41504 -2.054722) (xy 0.356102 -2.0213) (xy 0.31389 -1.977511) (xy 0.286156 -1.919538) + (xy 0.270651 -1.843565) (xy 0.267143 -1.803771) (xy 0.26759 -1.753766) (xy 0.402376 -1.753766) (xy 0.406917 -1.826732) + (xy 0.419986 -1.882334) (xy 0.440756 -1.917861) (xy 0.455552 -1.92802) (xy 0.493464 -1.935104) (xy 0.538527 -1.933007) + (xy 0.577487 -1.922812) (xy 0.587704 -1.917204) (xy 0.614659 -1.884538) (xy 0.632451 -1.834545) + (xy 0.640024 -1.773705) (xy 0.636325 -1.708497) (xy 0.628057 -1.669253) (xy 0.60432 -1.623805) (xy 0.566849 -1.595396) + (xy 0.52172 -1.585573) (xy 0.475011 -1.595887) (xy 0.439132 -1.621112) (xy 0.420277 -1.641925) (xy 0.409272 -1.662439) + (xy 0.404026 -1.690203) (xy 0.402449 -1.732762) (xy 0.402376 -1.753766) (xy 0.26759 -1.753766) (xy 0.268094 -1.69758) + (xy 0.285388 -1.610501) (xy 0.319029 -1.54253) (xy 0.369018 -1.493664) (xy 0.435356 -1.463899) (xy 0.449601 -1.460448) + (xy 0.53521 -1.452345) (xy 0.610762 -1.466055) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill solid) + (layer "B.SilkS") + (uuid "ccb80b34-2598-4c36-9abc-8bb0d5c314a0") + ) + (fp_poly + (pts + (xy 0.281524 -2.404237) (xy 0.331255 -2.407971) (xy 0.461291 -2.797773) (xy 0.481678 -2.728614) + (xy 0.493946 -2.685874) (xy 0.510085 -2.628115) (xy 0.527512 -2.564625) (xy 0.536726 -2.53057) (xy 0.571388 -2.401683) + (xy 0.714391 -2.401683) (xy 0.671646 -2.536857) (xy 0.650596 -2.603342) (xy 0.625167 -2.683539) + (xy 0.59861 -2.767193) (xy 0.574902 -2.841782) (xy 0.520902 -3.011535) (xy 0.462598 -3.015328) (xy 0.404295 -3.019122) + (xy 0.372679 -2.914734) (xy 0.353182 -2.849889) (xy 0.331904 -2.7784) (xy 0.313308 -2.715263) (xy 0.312574 -2.71275) + (xy 0.298684 -2.669969) (xy 0.286429 -2.640779) (xy 0.277846 -2.629741) (xy 0.276082 -2.631018) + (xy 0.269891 -2.64813) (xy 0.258128 -2.684787) (xy 0.242225 -2.736378) (xy 0.223614 -2.798294) (xy 0.213543 -2.832352) + (xy 0.159007 -3.017822) (xy 0.043264 -3.017822) (xy -0.049263 -2.725471) (xy -0.075256 -2.643462) + (xy -0.098934 -2.568987) (xy -0.11918 -2.505544) (xy -0.134874 -2.456632) (xy -0.144898 -2.425749) + (xy -0.147945 -2.416726) (xy -0.145533 -2.407487) (xy -0.126592 -2.403441) (xy -0.087177 -2.403846) + (xy -0.081007 -2.404152) (xy -0.007914 -2.407971) (xy 0.039957 -2.58401) (xy 0.057553 -2.648211) + (xy 0.073277 -2.704649) (xy 0.085746 -2.748422) (xy 0.093574 -2.77463) (xy 0.09502 -2.778903) (xy 0.101014 -2.77399) + (xy 0.113101 -2.748532) (xy 0.129893 -2.705997) (xy 0.150003 -2.64985) (xy 0.167003 -2.59913) (xy 0.231794 -2.400504) + (xy 0.281524 -2.404237) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill solid) + (layer "B.SilkS") + (uuid "3551440b-f11b-426c-89bc-43c59a0eb920") + ) + (fp_poly + (pts + (xy -2.538261 -1.465148) (xy -2.472479 -1.494231) (xy -2.42254 -1.542793) (xy -2.388374 -1.610908) + (xy -2.369907 -1.698651) (xy -2.368583 -1.712351) (xy -2.367546 -1.808939) (xy -2.380993 -1.893602) + (xy -2.408108 -1.962221) (xy -2.422627 -1.984294) (xy -2.473201 -2.031011) (xy -2.537609 -2.061268) + (xy -2.609666 -2.073824) (xy -2.683185 -2.067439) (xy -2.739072 -2.047772) (xy -2.787132 -2.014629) + (xy -2.826412 -1.971175) (xy -2.827092 -1.970158) (xy -2.843044 -1.943338) (xy -2.85341 -1.916368) + (xy -2.859688 -1.882332) (xy -2.863373 -1.83431) (xy -2.864997 -1.794931) (xy -2.865672 -1.759219) + (xy -2.739955 -1.759219) (xy -2.738726 -1.79477) (xy -2.734266 -1.842094) (xy -2.726397 -1.872465) + (xy -2.712207 -1.894072) (xy -2.698917 -1.906694) (xy -2.651802 -1.933122) (xy -2.602505 -1.936653) + (xy -2.556593 -1.917639) (xy -2.533638 -1.896331) (xy -2.517096 -1.874859) (xy -2.507421 -1.854313) + (xy -2.503174 -1.827574) (xy -2.50292 -1.787523) (xy -2.504228 -1.750638) (xy -2.507043 -1.697947) + (xy -2.511505 -1.663772) (xy -2.519548 -1.64148) (xy -2.533103 -1.624442) (xy -2.543845 -1.614703) + (xy -2.588777 -1.589123) (xy -2.637249 -1.587847) (xy -2.677894 -1.602999) (xy -2.712567 -1.634642) + (xy -2.733224 -1.68662) (xy -2.739955 -1.759219) (xy -2.865672 -1.759219) (xy -2.866479 -1.716621) + (xy -2.863948 -1.658056) (xy -2.856362 -1.614007) (xy -2.842681 -1.579248) (xy -2.821865 -1.548551) + (xy -2.814147 -1.539436) (xy -2.765889 -1.494021) (xy -2.714128 -1.467493) (xy -2.650828 -1.456379) + (xy -2.619961 -1.455471) (xy -2.538261 -1.465148) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill solid) + (layer "B.SilkS") + (uuid "d9a9fdf8-b52c-41ca-86ca-610d136f451a") + ) + (fp_poly + (pts + (xy -0.201188 -3.017822) (xy -0.270346 -3.017822) (xy -0.310488 -3.016645) (xy -0.331394 -3.011772) + (xy -0.338922 -3.001186) (xy -0.339505 -2.994029) (xy -0.340774 -2.979676) (xy -0.348779 -2.976923) + (xy -0.369815 -2.985771) (xy -0.386173 -2.994029) (xy -0.448977 -3.013597) (xy -0.517248 -3.014729) + (xy -0.572752 -3.000135) (xy -0.624438 -2.964877) (xy -0.663838 -2.912835) (xy -0.685413 -2.85145) + (xy -0.685962 -2.848018) (xy -0.689167 -2.810571) (xy -0.690761 -2.756813) (xy -0.690633 -2.716155) + (xy -0.553279 -2.716155) (xy -0.550097 -2.770194) (xy -0.542859 -2.814735) (xy -0.53306 -2.839888) + (xy -0.495989 -2.87426) (xy -0.451974 -2.886582) (xy -0.406584 -2.876618) (xy -0.367797 -2.846895) + (xy -0.353108 -2.826905) (xy -0.344519 -2.80305) (xy -0.340496 -2.76823) (xy -0.339505 -2.71593) + (xy -0.341278 -2.664139) (xy -0.345963 -2.618634) (xy -0.352603 -2.588181) (xy -0.35371 -2.585452) + (xy -0.380491 -2.553) (xy -0.419579 -2.535183) (xy -0.463315 -2.532306) (xy -0.504038 -2.544674) + (xy -0.534087 -2.572593) (xy -0.537204 -2.578148) (xy -0.546961 -2.612022) (xy -0.552277 -2.660728) + (xy -0.553279 -2.716155) (xy -0.690633 -2.716155) (xy -0.690568 -2.69554) (xy -0.689664 -2.662563) + (xy -0.683514 -2.580981) (xy -0.670733 -2.51973) (xy -0.649471 -2.474449) (xy -0.617878 -2.440779) + (xy -0.587207 -2.421014) (xy -0.544354 -2.40712) (xy -0.491056 -2.402354) (xy -0.43648 -2.406236) + (xy -0.389792 -2.418282) (xy -0.365124 -2.432693) (xy -0.339505 -2.455878) (xy -0.339505 -2.162773) + (xy -0.201188 -2.162773) (xy -0.201188 -3.017822) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill solid) + (layer "B.SilkS") + (uuid "f1969c13-27e2-4cd5-ac04-41079957a14c") + ) + (fp_poly + (pts + (xy 2.677898 -1.456457) (xy 2.710096 -1.464279) (xy 2.771825 -1.492921) (xy 2.82461 -1.536667) (xy 2.861141 -1.589117) + (xy 2.86616 -1.600893) (xy 2.873045 -1.63174) (xy 2.877864 -1.677371) (xy 2.879505 -1.723492) (xy 2.879505 -1.810693) + (xy 2.697178 -1.810693) (xy 2.621979 -1.810978) (xy 2.569003 -1.812704) (xy 2.535325 -1.817181) + (xy 2.51802 -1.82572) (xy 2.514163 -1.83963) (xy 2.520829 -1.860222) (xy 2.53277 -1.884315) (xy 2.56608 -1.924525) + (xy 2.612368 -1.944558) (xy 2.668944 -1.943905) (xy 2.733031 -1.922101) (xy 2.788417 -1.895193) + (xy 2.834375 -1.931532) (xy 2.880333 -1.967872) (xy 2.837096 -2.007819) (xy 2.779374 -2.045563) + (xy 2.708386 -2.06832) (xy 2.632029 -2.074688) (xy 2.558199 -2.063268) (xy 2.546287 -2.059393) (xy 2.481399 -2.025506) + (xy 2.43313 -1.974986) (xy 2.400465 -1.906325) (xy 2.382385 -1.818014) (xy 2.382175 -1.816121) (xy 2.380556 -1.719878) + (xy 2.3871 -1.685542) (xy 2.514852 -1.685542) (xy 2.526584 -1.690822) (xy 2.558438 -1.694867) (xy 2.605397 -1.697176) + (xy 2.635154 -1.697525) (xy 2.690648 -1.697306) (xy 2.725346 -1.695916) (xy 2.743601 -1.692251) + (xy 2.749766 -1.68521) (xy 2.748195 -1.67369) (xy 2.746878 -1.669233) (xy 2.724382 -1.627355) (xy 2.689003 -1.593604) + (xy 2.65778 -1.578773) (xy 2.616301 -1.579668) (xy 2.574269 -1.598164) (xy 2.539012 -1.628786) (xy 2.517854 -1.666062) + (xy 2.514852 -1.685542) (xy 2.3871 -1.685542) (xy 2.39669 -1.635229) (xy 2.428698 -1.564191) (xy 2.474701 -1.508779) + (xy 2.532821 -1.471009) (xy 2.60118 -1.452896) (xy 2.677898 -1.456457) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill solid) + (layer "B.SilkS") + (uuid "2ad0f10e-0949-49d6-8278-c477c226efb7") + ) + (fp_poly + (pts + (xy 0.014017 -1.456452) (xy 0.061634 -1.465482) (xy 0.111034 -1.48437) (xy 0.116312 -1.486777) (xy 0.153774 -1.506476) + (xy 0.179717 -1.524781) (xy 0.188103 -1.536508) (xy 0.180117 -1.555632) (xy 0.16072 -1.58385) (xy 0.15211 -1.594384) + (xy 0.116628 -1.635847) (xy 0.070885 -1.608858) (xy 0.02735 -1.590878) (xy -0.02295 -1.581267) (xy -0.071188 -1.58066) + (xy -0.108533 -1.589691) (xy -0.117495 -1.595327) (xy -0.134563 -1.621171) (xy -0.136637 -1.650941) + (xy -0.123866 -1.674197) (xy -0.116312 -1.678708) (xy -0.093675 -1.684309) (xy -0.053885 -1.690892) + (xy -0.004834 -1.697183) (xy 0.004215 -1.69817) (xy 0.082996 -1.711798) (xy 0.140136 -1.734946) + (xy 0.17803 -1.769752) (xy 0.199079 -1.818354) (xy 0.205635 -1.877718) (xy 0.196577 -1.945198) (xy 0.167164 -1.998188) + (xy 0.117278 -2.036783) (xy 0.0468 -2.061081) (xy -0.031435 -2.070667) (xy -0.095234 -2.070552) + (xy -0.146984 -2.061845) (xy -0.182327 -2.049825) (xy -0.226983 -2.02888) (xy -0.268253 -2.004574) + (xy -0.282921 -1.993876) (xy -0.320643 -1.963084) (xy -0.275148 -1.917049) (xy -0.229653 -1.871013) + (xy -0.177928 -1.905243) (xy -0.126048 -1.930952) (xy -0.070649 -1.944399) (xy -0.017395 -1.945818) + (xy 0.028049 -1.935443) (xy 0.060016 -1.913507) (xy 0.070338 -1.894998) (xy 0.068789 -1.865314) + (xy 0.04314 -1.842615) (xy -0.00654 -1.82694) (xy -0.060969 -1.819695) (xy -0.144736 -1.805873) + (xy -0.206967 -1.779796) (xy -0.248493 -1.740699) (xy -0.270147 -1.68782) (xy -0.273147 -1.625126) + (xy -0.258329 -1.559642) (xy -0.224546 -1.510144) (xy -0.171495 -1.476408) (xy -0.098874 -1.458207) + (xy -0.045072 -1.454639) (xy 0.014017 -1.456452) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill solid) + (layer "B.SilkS") + (uuid "8d4cb7a0-e5bd-4bc5-a8db-42accecff97f") + ) + (fp_poly + (pts + (xy 2.032581 -2.40497) (xy 2.092685 -2.420597) (xy 2.143021 -2.452848) (xy 2.167393 -2.47694) (xy 2.207345 -2.533895) + (xy 2.230242 -2.599965) (xy 2.238108 -2.681182) (xy 2.238148 -2.687748) (xy 2.238218 -2.753763) + (xy 1.858264 -2.753763) (xy 1.866363 -2.788342) (xy 1.880987 -2.819659) (xy 1.906581 -2.852291) + (xy 1.911935 -2.8575) (xy 1.957943 -2.885694) (xy 2.01041 -2.890475) (xy 2.070803 -2.871926) (xy 2.08104 -2.866931) + (xy 2.112439 -2.851745) (xy 2.13347 -2.843094) (xy 2.137139 -2.842293) (xy 2.149948 -2.850063) (xy 2.174378 -2.869072) + (xy 2.186779 -2.87946) (xy 2.212476 -2.903321) (xy 2.220915 -2.919077) (xy 2.215058 -2.933571) (xy 2.211928 -2.937534) + (xy 2.190725 -2.954879) (xy 2.155738 -2.975959) (xy 2.131337 -2.988265) (xy 2.062072 -3.009946) + (xy 1.985388 -3.016971) (xy 1.912765 -3.008647) (xy 1.892426 -3.002686) (xy 1.829476 -2.968952) + (xy 1.782815 -2.917045) (xy 1.752173 -2.846459) (xy 1.737282 -2.756692) (xy 1.735647 -2.709753) + (xy 1.740421 -2.641413) (xy 1.86099 -2.641413) (xy 1.872652 -2.646465) (xy 1.903998 -2.650429) (xy 1.949571 -2.652768) + (xy 1.980446 -2.653169) (xy 2.035981 -2.652783) (xy 2.071033 -2.650975) (xy 2.090262 -2.646773) + (xy 2.09833 -2.639203) (xy 2.099901 -2.628218) (xy 2.089121 -2.594381) (xy 2.06198 -2.56094) (xy 2.026277 -2.535272) + (xy 1.99056 -2.524772) (xy 1.942048 -2.534086) (xy 1.900053 -2.561013) (xy 1.870936 -2.599827) (xy 1.86099 -2.641413) + (xy 1.740421 -2.641413) (xy 1.742599 -2.610236) (xy 1.764055 -2.530949) (xy 1.80047 -2.471263) (xy 1.852297 -2.430549) + (xy 1.91999 -2.408179) (xy 1.956662 -2.403871) (xy 2.032581 -2.40497) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill solid) + (layer "B.SilkS") + (uuid "4518d746-a6b2-444b-b494-3d206fe6a7ef") + ) + (fp_poly + (pts + (xy -1.356699 -1.472614) (xy -1.344168 -1.478514) (xy -1.300799 -1.510283) (xy -1.25979 -1.556646) + (xy -1.229168 -1.607696) (xy -1.220459 -1.631166) (xy -1.212512 -1.673091) (xy -1.207774 -1.723757) + (xy -1.207199 -1.744679) (xy -1.207129 -1.810693) (xy -1.587083 -1.810693) (xy -1.578983 -1.845273) + (xy -1.559104 -1.88617) (xy -1.524347 -1.921514) (xy -1.482998 -1.944282) (xy -1.456649 -1.94901) + (xy -1.420916 -1.943273) (xy -1.378282 -1.928882) (xy -1.363799 -1.922262) (xy -1.31024 -1.895513) + (xy -1.264533 -1.930376) (xy -1.238158 -1.953955) (xy -1.224124 -1.973417) (xy -1.223414 -1.979129) + (xy -1.235951 -1.992973) (xy -1.263428 -2.014012) (xy -1.288366 -2.030425) (xy -1.355664 -2.05993) + (xy -1.43111 -2.073284) (xy -1.505888 -2.069812) (xy -1.565495 -2.051663) (xy -1.626941 -2.012784) + (xy -1.670608 -1.961595) (xy -1.697926 -1.895367) (xy -1.710322 -1.811371) (xy -1.711421 -1.772936) + (xy -1.707022 -1.684861) (xy -1.706482 -1.682299) (xy -1.580582 -1.682299) (xy -1.577115 -1.690558) + (xy -1.562863 -1.695113) (xy -1.53347 -1.697065) (xy -1.484575 -1.697517) (xy -1.465748 -1.697525) + (xy -1.408467 -1.696843) (xy -1.372141 -1.694364) (xy -1.352604 -1.689443) (xy -1.34569 -1.681434) + (xy -1.345445 -1.678862) (xy -1.353336 -1.658423) (xy -1.373085 -1.629789) (xy -1.381575 -1.619763) + (xy -1.413094 -1.591408) (xy -1.445949 -1.580259) (xy -1.463651 -1.579327) (xy -1.511539 -1.590981) + (xy -1.551699 -1.622285) (xy -1.577173 -1.667752) (xy -1.577625 -1.669233) (xy -1.580582 -1.682299) + (xy -1.706482 -1.682299) (xy -1.692392 -1.61551) (xy -1.666038 -1.560025) (xy -1.633807 -1.520639) + (xy -1.574217 -1.477931) (xy -1.504168 -1.455109) (xy -1.429661 -1.453046) (xy -1.356699 -1.472614) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill solid) + (layer "B.SilkS") + (uuid "c602da50-ad14-4d29-8321-81734ff8ed33") + ) + (fp_poly + (pts + (xy 1.038411 -2.405417) (xy 1.091411 -2.41829) (xy 1.106731 -2.42511) (xy 1.136428 -2.442974) (xy 1.15922 -2.463093) + (xy 1.176083 -2.488962) (xy 1.187998 -2.524073) (xy 1.195942 -2.57192) (xy 1.200894 -2.635996) (xy 1.203831 -2.719794) + (xy 1.204947 -2.775768) (xy 1.209052 -3.017822) (xy 1.138932 -3.017822) (xy 1.096393 -3.016038) + (xy 1.074476 -3.009942) (xy 1.068812 -2.999706) (xy 1.065821 -2.988637) (xy 1.052451 -2.990754) + (xy 1.034233 -2.999629) (xy 0.988624 -3.013233) (xy 0.930007 -3.016899) (xy 0.868354 -3.010903) + (xy 0.813638 -2.995521) (xy 0.80873 -2.993386) (xy 0.758723 -2.958255) (xy 0.725756 -2.909419) (xy 0.710587 -2.852333) + (xy 0.711746 -2.831824) (xy 0.835508 -2.831824) (xy 0.846413 -2.859425) (xy 0.878745 -2.879204) + (xy 0.93091 -2.889819) (xy 0.958787 -2.891228) (xy 1.005247 -2.88762) (xy 1.036129 -2.873597) (xy 1.043664 -2.866931) + (xy 1.064076 -2.830666) (xy 1.068812 -2.797773) (xy 1.068812 -2.753763) (xy 1.007513 -2.753763) + (xy 0.936256 -2.757395) (xy 0.886276 -2.768818) (xy 0.854696 -2.788824) (xy 0.847626 -2.797743) + (xy 0.835508 -2.831824) (xy 0.711746 -2.831824) (xy 0.713971 -2.792456) (xy 0.736663 -2.735244) + (xy 0.767624 -2.69658) (xy 0.786376 -2.679864) (xy 0.804733 -2.668878) (xy 0.828619 -2.66218) (xy 0.863957 -2.658326) + (xy 0.916669 -2.655873) (xy 0.937577 -2.655168) (xy 1.068812 -2.650879) (xy 1.06862 -2.611158) (xy 1.063537 -2.569405) + (xy 1.045162 -2.544158) (xy 1.008039 -2.52803) (xy 1.007043 -2.527742) (xy 0.95441 -2.5214) (xy 0.902906 -2.529684) + (xy 0.86463 -2.549827) (xy 0.849272 -2.559773) (xy 0.83273 -2.558397) (xy 0.807275 -2.543987) (xy 0.792328 -2.533817) + (xy 0.763091 -2.512088) (xy 0.74498 -2.4958) (xy 0.742074 -2.491137) (xy 0.75404 -2.467005) (xy 0.789396 -2.438185) + (xy 0.804753 -2.428461) (xy 0.848901 -2.411714) (xy 0.908398 -2.402227) (xy 0.974487 -2.400095) + (xy 1.038411 -2.405417) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill solid) + (layer "B.SilkS") + (uuid "803f086d-d57c-4f5d-bb7a-4cafe91a9ad1") + ) + (fp_poly + (pts + (xy -1.38421 -2.406555) (xy -1.325055 -2.422339) (xy -1.280023 -2.450948) (xy -1.248246 -2.488419) + (xy -1.238366 -2.504411) (xy -1.231073 -2.521163) (xy -1.225974 -2.542592) (xy -1.222679 -2.572616) + (xy -1.220797 -2.615154) (xy -1.219937 -2.674122) (xy -1.219707 -2.75344) (xy -1.219703 -2.774484) + (xy -1.219703 -3.017822) (xy -1.280059 -3.017822) (xy -1.318557 -3.015126) (xy -1.347023 -3.008295) + (xy -1.354155 -3.004083) (xy -1.373652 -2.996813) (xy -1.393566 -3.004083) (xy -1.426353 -3.01316) + (xy -1.473978 -3.016813) (xy -1.526764 -3.015228) (xy -1.575036 -3.008589) (xy -1.603218 -3.000072) + (xy -1.657753 -2.965063) (xy -1.691835 -2.916479) (xy -1.707157 -2.851882) (xy -1.707299 -2.850223) + (xy -1.705955 -2.821566) (xy -1.584356 -2.821566) (xy -1.573726 -2.854161) (xy -1.55641 -2.872505) + (xy -1.521652 -2.886379) (xy -1.475773 -2.891917) (xy -1.428988 -2.889191) (xy -1.391514 -2.878274) + (xy -1.381015 -2.871269) (xy -1.362668 -2.838904) (xy -1.35802 -2.802111) (xy -1.35802 -2.753763) + (xy -1.427582 -2.753763) (xy -1.493667 -2.75885) (xy -1.543764 -2.773263) (xy -1.574929 -2.795729) + (xy -1.584356 -2.821566) (xy -1.705955 -2.821566) (xy -1.703987 -2.779647) (xy -1.68071 -2.723845) + (xy -1.636948 -2.681647) (xy -1.630899 -2.677808) (xy -1.604907 -2.665309) (xy -1.572735 -2.65774) + (xy -1.52776 -2.654061) (xy -1.474331 -2.653216) (xy -1.35802 -2.653169) (xy -1.35802 -2.604411) + (xy -1.362953 -2.566581) (xy -1.375543 -2.541236) (xy -1.377017 -2.539887) (xy -1.405034 -2.5288) + (xy -1.447326 -2.524503) (xy -1.494064 -2.526615) (xy -1.535418 -2.534756) (xy -1.559957 -2.546965) + (xy -1.573253 -2.556746) (xy -1.587294 -2.558613) (xy -1.606671 -2.5506) (xy -1.635976 -2.530739) + (xy -1.679803 -2.497063) (xy -1.683825 -2.493909) (xy -1.681764 -2.482236) (xy -1.664568 -2.462822) + (xy -1.638433 -2.441248) (xy -1.609552 -2.423096) (xy -1.600478 -2.418809) (xy -1.56738 -2.410256) + (xy -1.51888 -2.404155) (xy -1.464695 -2.401708) (xy -1.462161 -2.401703) (xy -1.38421 -2.406555) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill solid) + (layer "B.SilkS") + (uuid "2f132e0c-9498-4f79-9264-9ba5fb018aa5") + ) + (fp_poly + (pts + (xy -1.908759 -1.469184) (xy -1.882247 -1.482282) (xy -1.849553 -1.505106) (xy -1.825725 -1.529996) + (xy -1.809406 -1.561249) (xy -1.79924 -1.603166) (xy -1.793872 -1.660044) (xy -1.791944 -1.736184) + (xy -1.791831 -1.768917) (xy -1.792161 -1.840656) (xy -1.793527 -1.891927) (xy -1.7965 -1.927404) + (xy -1.801649 -1.951763) (xy -1.809543 -1.96968) (xy -1.817757 -1.981902) (xy -1.870187 -2.033905) + (xy -1.93193 -2.065184) (xy -1.998536 -2.074592) (xy -2.065558 -2.06098) (xy -2.086792 -2.051354) + (xy -2.137624 -2.024859) (xy -2.137624 -2.440052) (xy -2.100525 -2.420868) (xy -2.051643 -2.406025) + (xy -1.991561 -2.402222) (xy -1.931564 -2.409243) (xy -1.886256 -2.425013) (xy -1.848675 -2.455047) + (xy -1.816564 -2.498024) (xy -1.81415 -2.502436) (xy -1.803967 -2.523221) (xy -1.79653 -2.54417) + (xy -1.791411 -2.569548) (xy -1.788181 -2.603618) (xy -1.786413 -2.650641) (xy -1.785677 -2.714882) + (xy -1.785544 -2.787176) (xy -1.785544 -3.017822) (xy -1.923861 -3.017822) (xy -1.923861 -2.592533) + (xy -1.962549 -2.559979) (xy -2.002738 -2.53394) (xy -2.040797 -2.529205) (xy -2.079066 -2.541389) + (xy -2.099462 -2.55332) (xy -2.114642 -2.570313) (xy -2.125438 -2.595995) (xy -2.132683 -2.633991) + (xy -2.137208 -2.687926) (xy -2.139844 -2.761425) (xy -2.140772 -2.810347) (xy -2.143911 -3.011535) + (xy -2.209926 -3.015336) (xy -2.27594 -3.019136) (xy -2.27594 -1.77065) (xy -2.137624 -1.77065) + (xy -2.134097 -1.840254) (xy -2.122215 -1.888569) (xy -2.10002 -1.918631) (xy -2.065559 -1.933471) + (xy -2.030742 -1.936436) (xy -1.991329 -1.933028) (xy -1.965171 -1.919617) (xy -1.948814 -1.901896) + (xy -1.935937 -1.882835) (xy -1.928272 -1.861601) (xy -1.924861 -1.831849) (xy -1.924749 -1.787236) + (xy -1.925897 -1.74988) (xy -1.928532 -1.693604) (xy -1.932456 -1.656658) (xy -1.939063 -1.633223) + (xy -1.949749 -1.61748) (xy -1.959833 -1.60838) (xy -2.00197 -1.588537) (xy -2.05184 -1.585332) + (xy -2.080476 -1.592168) (xy -2.108828 -1.616464) (xy -2.127609 -1.663728) (xy -2.136712 -1.733624) + (xy -2.137624 -1.77065) (xy -2.27594 -1.77065) (xy -2.27594 -1.458614) (xy -2.206782 -1.458614) + (xy -2.16526 -1.460256) (xy -2.143838 -1.466087) (xy -2.137626 -1.477461) (xy -2.137624 -1.477798) + (xy -2.134742 -1.488938) (xy -2.12203 -1.487673) (xy -2.096757 -1.475433) (xy -2.037869 -1.456707) + (xy -1.971615 -1.454739) (xy -1.908759 -1.469184) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill solid) + (layer "B.SilkS") + (uuid "135818ab-910e-4279-b6a5-9583b40d23d7") + ) + (fp_poly + (pts + (xy 0.376964 2.709982) (xy 0.433812 2.40843) (xy 0.853338 2.235488) (xy 1.104984 2.406605) (xy 1.175458 2.45425) + (xy 1.239163 2.49679) (xy 1.293126 2.532285) (xy 1.334373 2.55879) (xy 1.359934 2.574364) (xy 1.366895 2.577722) + (xy 1.379435 2.569086) (xy 1.406231 2.545208) (xy 1.44428 2.509141) (xy 1.490579 2.463933) (xy 1.542123 2.412636) + (xy 1.595909 2.358299) (xy 1.648935 2.303972) (xy 1.698195 2.252705) (xy 1.740687 2.207549) (xy 1.773407 2.171554) + (xy 1.793351 2.14777) (xy 1.798119 2.13981) (xy 1.791257 2.125135) (xy 1.77202 2.092986) (xy 1.74243 2.046508) + (xy 1.70451 1.988844) (xy 1.660282 1.92314) (xy 1.634654 1.885664) (xy 1.587941 1.817232) (xy 1.546432 1.75548) + (xy 1.51214 1.703481) (xy 1.48708 1.664308) (xy 1.473264 1.641035) (xy 1.471188 1.636145) (xy 1.475895 1.622245) + (xy 1.488723 1.58985) (xy 1.507738 1.543515) (xy 1.531003 1.487794) (xy 1.556584 1.427242) (xy 1.582545 1.366414) + (xy 1.60695 1.309864) (xy 1.627863 1.262148) (xy 1.643349 1.227819) (xy 1.651472 1.211432) (xy 1.651952 1.210788) + (xy 1.664707 1.207659) (xy 1.698677 1.200679) (xy 1.75034 1.190533) (xy 1.816176 1.177908) (xy 1.892664 1.163491) + (xy 1.93729 1.155177) (xy 2.019021 1.139616) (xy 2.092843 1.124808) (xy 2.155021 1.111564) (xy 2.201822 1.100695) + (xy 2.229509 1.093011) (xy 2.235074 1.090573) (xy 2.240526 1.07407) (xy 2.244924 1.0368) (xy 2.248272 0.98312) + (xy 2.250574 0.917388) (xy 2.251832 0.843963) (xy 2.252048 0.767204) (xy 2.251227 0.691468) (xy 2.249371 0.621114) + (xy 2.246482 0.5605) (xy 2.242565 0.513984) (xy 2.237622 0.485925) (xy 2.234657 0.480084) (xy 2.216934 0.473083) + (xy 2.179381 0.463073) (xy 2.126964 0.451231) (xy 2.064652 0.438733) (xy 2.0429 0.43469) (xy 1.938024 0.41548) + (xy 1.85518 0.400009) (xy 1.79163 0.387663) (xy 1.744637 0.377827) (xy 1.711463 0.369886) (xy 1.689371 0.363224) + (xy 1.675624 0.357227) (xy 1.667484 0.351281) (xy 1.666345 0.350106) (xy 1.654977 0.331174) (xy 1.637635 0.294331) + (xy 1.61605 0.244087) (xy 1.591954 0.184954) (xy 1.567079 0.121444) (xy 1.543157 0.058068) (xy 1.521919 -0.000662) + (xy 1.505097 -0.050235) (xy 1.494422 -0.086139) (xy 1.491627 -0.103862) (xy 1.49186 -0.104483) (xy 1.501331 -0.11897) + (xy 1.522818 -0.150844) (xy 1.554063 -0.196789) (xy 1.592807 -0.253485) (xy 1.636793 -0.317617) + (xy 1.649319 -0.335842) (xy 1.693984 -0.401914) (xy 1.733288 -0.4622) (xy 1.765088 -0.513235) (xy 1.787245 -0.55156) + (xy 1.797617 -0.573711) (xy 1.798119 -0.576432) (xy 1.789405 -0.590736) (xy 1.765325 -0.619072) + (xy 1.728976 -0.658396) (xy 1.683453 -0.705661) (xy 1.631852 -0.757823) (xy 1.577267 -0.811835) + (xy 1.522794 -0.864653) (xy 1.471529 -0.913231) (xy 1.426567 -0.954523) (xy 1.391004 -0.985485) + (xy 1.367935 -1.00307) (xy 1.361554 -1.005941) (xy 1.346699 -0.999178) (xy 1.316286 -0.980939) (xy 1.275268 -0.954297) + (xy 1.243709 -0.932852) (xy 1.186525 -0.893503) (xy 1.118806 -0.847171) (xy 1.05088 -0.800913) (xy 1.014361 -0.776155) + (xy 0.890752 -0.692547) (xy 0.786991 -0.74865) (xy 0.73972 -0.773228) (xy 0.699523 -0.792331) (xy 0.672326 -0.803227) + (xy 0.665402 -0.804743) (xy 0.657077 -0.793549) (xy 0.640654 -0.761917) (xy 0.617357 -0.712765) + (xy 0.588414 -0.64901) (xy 0.55505 -0.573571) (xy 0.518491 -0.489364) (xy 0.479964 -0.399308) (xy 0.440694 -0.306321) + (xy 0.401908 -0.21332) (xy 0.36483 -0.123223) (xy 0.330689 -0.038948) (xy 0.300708 0.036587) (xy 0.276116 0.100466) + (xy 0.258136 0.149769) (xy 0.247997 0.181579) (xy 0.246366 0.192504) (xy 0.259291 0.206439) (xy 0.287589 0.22906) + (xy 0.325346 0.255667) (xy 0.328515 0.257772) (xy 0.4261 0.335886) (xy 0.504786 0.427018) (xy 0.563891 0.528255) + (xy 0.602732 0.636682) (xy 0.620628 0.749386) (xy 0.616897 0.863452) (xy 0.590857 0.975966) (xy 0.541825 1.084015) + (xy 0.5274 1.107655) (xy 0.452369 1.203113) (xy 0.36373 1.279768) (xy 0.264549 1.33722) (xy 0.157895 1.375071) + (xy 0.046836 1.392922) (xy -0.065561 1.390375) (xy -0.176227 1.36703) (xy -0.282094 1.32249) (xy -0.380095 1.256355) + (xy -0.41041 1.229513) (xy -0.487562 1.145488) (xy -0.543782 1.057034) (xy -0.582347 0.957885) (xy -0.603826 0.859697) + (xy -0.609128 0.749303) (xy -0.591448 0.63836) (xy -0.552581 0.530619) (xy -0.494323 0.429831) (xy -0.418469 0.339744) + (xy -0.326817 0.264108) (xy -0.314772 0.256136) (xy -0.276611 0.230026) (xy -0.247601 0.207405) + (xy -0.233732 0.192961) (xy -0.233531 0.192504) (xy -0.236508 0.176879) (xy -0.248311 0.141418) + (xy -0.267714 0.089038) (xy -0.293488 0.022655) (xy -0.324409 -0.054814) (xy -0.359249 -0.14045) + (xy -0.396783 -0.231337) (xy -0.435783 -0.324559) (xy -0.475023 -0.417197) (xy -0.513276 -0.506335) + (xy -0.549317 -0.589055) (xy -0.581917 -0.662441) (xy -0.609852 -0.723575) (xy -0.631895 -0.769541) + (xy -0.646818 -0.797421) (xy -0.652828 -0.804743) (xy -0.671191 -0.799041) (xy -0.705552 -0.783749) + (xy -0.749984 -0.761599) (xy -0.774417 -0.74865) (xy -0.878178 -0.692547) (xy -1.001787 -0.776155) + (xy -1.064886 -0.818987) (xy -1.13397 -0.866122) (xy -1.198707 -0.910503) (xy -1.231134 -0.932852) + (xy -1.276741 -0.963477) (xy -1.31536 -0.987747) (xy -1.341952 -1.002587) (xy -1.35059 -1.005724) + (xy -1.363161 -0.997261) (xy -1.390984 -0.973636) (xy -1.431361 -0.937302) (xy -1.481595 -0.890711) + (xy -1.538988 -0.836317) (xy -1.575286 -0.801392) (xy -1.63879 -0.738996) (xy -1.693673 -0.683188) + (xy -1.737714 -0.636354) (xy -1.768695 -0.600882) (xy -1.784398 -0.579161) (xy -1.785905 -0.574752) + (xy -1.778914 -0.557985) (xy -1.759594 -0.524082) (xy -1.730091 -0.476476) (xy -1.692545 -0.418599) + (xy -1.6491 -0.353884) (xy -1.636745 -0.335842) (xy -1.591727 -0.270267) (xy -1.55134 -0.211228) + (xy -1.51784 -0.162042) (xy -1.493486 -0.126028) (xy -1.480536 -0.106502) (xy -1.479285 -0.104483) + (xy -1.481156 -0.088922) (xy -1.491087 -0.054709) (xy -1.507347 -0.006355) (xy -1.528205 0.051629) + (xy -1.551927 0.11473) (xy -1.576784 0.178437) (xy -1.601042 0.238239) (xy -1.622971 0.289624) (xy -1.640838 0.328081) + (xy -1.652913 0.349098) (xy -1.653771 0.350106) (xy -1.661154 0.356112) (xy -1.673625 0.362052) + (xy -1.69392 0.36854) (xy -1.724778 0.376191) (xy -1.768934 0.38562) (xy -1.829126 0.397441) (xy -1.908093 0.412271) + (xy -2.00857 0.430723) (xy -2.030325 0.43469) (xy -2.094802 0.447147) (xy -2.151011 0.459334) (xy -2.193987 0.470074) + (xy -2.21876 0.478191) (xy -2.222082 0.480084) (xy -2.227556 0.496862) (xy -2.232006 0.534355) (xy -2.235428 0.588206) + (xy -2.237819 0.654056) (xy -2.239177 0.727547) (xy -2.239499 0.80432) (xy -2.238781 0.880017) (xy -2.237021 0.95028) + (xy -2.234216 1.01075) (xy -2.230362 1.05707) (xy -2.225457 1.084881) (xy -2.2225 1.090573) (xy -2.206037 1.096314) + (xy -2.168551 1.105655) (xy -2.113775 1.117785) (xy -2.045445 1.131893) (xy -1.967294 1.14717) (xy -1.924716 1.155177) + (xy -1.843929 1.170279) (xy -1.771887 1.18396) (xy -1.712111 1.195533) (xy -1.668121 1.204313) (xy -1.643439 1.209613) + (xy -1.639377 1.210788) (xy -1.632511 1.224035) (xy -1.617998 1.255943) (xy -1.597771 1.301953) + (xy -1.573766 1.357508) (xy -1.547918 1.418047) (xy -1.52216 1.479014) (xy -1.498427 1.535849) (xy -1.478654 1.583994) + (xy -1.464776 1.61889) (xy -1.458726 1.635979) (xy -1.458614 1.636726) (xy -1.465472 1.650207) (xy -1.484698 1.68123) + (xy -1.514272 1.726711) (xy -1.552173 1.783568) (xy -1.59638 1.848717) (xy -1.622079 1.886138) (xy -1.668907 1.954753) + (xy -1.710499 2.017048) (xy -1.744825 2.069871) (xy -1.769857 2.110073) (xy -1.783565 2.1345) (xy -1.785544 2.139976) + (xy -1.777034 2.152722) (xy -1.753507 2.179937) (xy -1.717968 2.218572) (xy -1.673423 2.265577) + (xy -1.622877 2.317905) (xy -1.569336 2.372505) (xy -1.515805 2.42633) (xy -1.465289 2.47633) (xy -1.420794 2.519457) + (xy -1.385325 2.552661) (xy -1.361887 2.572894) (xy -1.354046 2.577722) (xy -1.34128 2.570933) (xy -1.310744 2.551858) + (xy -1.26541 2.522439) (xy -1.208244 2.484619) (xy -1.142216 2.440339) (xy -1.09241 2.406605) (xy -0.840764 2.235488) + (xy -0.631001 2.321959) (xy -0.421237 2.40843) (xy -0.364389 2.709982) (xy -0.30754 3.011534) (xy 0.320115 3.011534) + (xy 0.376964 2.709982) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill solid) + (layer "B.SilkS") + (uuid "ced53d1c-b062-48c9-b0d2-60e378cfaba5") + ) + ) + (footprint "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (layer "B.Cu") + (uuid "00000000-0000-0000-0000-00006154beea") + (at 52.5 88.8 180) + (descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip") + (tags "net tie solder jumper bridged") + (property "Reference" "JP6" + (at 0 -3.95 0) + (layer "B.SilkS") + (uuid "38a1531b-3106-42fe-a956-77d5c6128aa8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "GND" + (at 0 -1.9 0) + (layer "B.Fab") + (uuid "0e2ae8a8-d8fe-4eb9-9aa6-ab2e96ce84cf") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "94089558-b085-4d6d-aed7-8c05c95c0c15") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9ab4afe8-2ffb-43d3-b2fc-5f466c6d1c1b") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "93e98925-b564-4cef-9ead-c644964dd332") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Config" "DNF" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "63598695-d907-4363-bbd6-828702b82a6b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "MFN" "" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "015abaee-3764-4e5c-b483-e234e7218cf5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "PN" "" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "29ad7770-de4c-4a7e-b2bb-c26ef757be4c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property ki_fp_filters "SolderJumper*Bridged*") + (path "/00000000-0000-0000-0000-0000614b49d3") + (sheetname "Root") + (sheetfile "RedPitaya_Lockbox.kicad_sch") + (zone_connect 1) + (attr exclude_from_pos_files exclude_from_bom) + (net_tie_pad_groups "1, 2") + (fp_poly + (pts + (xy 0.25 0.3) (xy -0.25 0.3) (xy -0.25 -0.3) (xy 0.25 -0.3) + ) + (stroke + (width 0) + (type solid) + ) + (fill solid) + (layer "B.Cu") + (uuid "85fe63ef-b20b-42f0-81a0-126b412bd455") + ) + (fp_line + (start 1.4 -0.3) + (end 1.4 0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "e5384d87-b34e-4d31-9db7-5576c005ed37") + ) + (fp_line + (start 0.7 1) + (end -0.7 1) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "a5567fa6-122f-463b-994f-eb91ced47f8c") + ) + (fp_line + (start -0.7 -1) + (end 0.7 -1) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "1a03b52c-92eb-468b-952f-87a1f7aa37b6") + ) + (fp_line + (start -1.4 0.3) + (end -1.4 -0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "3ccafd69-d488-4c53-bad3-dd11c875a19c") + ) + (fp_arc + (start 1.4 0.3) + (mid 1.194975 0.794975) + (end 0.7 1) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "4e4b7c59-703e-442c-88c1-116ab7bb60cb") + ) + (fp_arc + (start 0.7 -1) + (mid 1.194975 -0.794975) + (end 1.4 -0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "ad3c1007-b469-40b2-89fc-ec7e6586422a") + ) + (fp_arc + (start -0.7 1) + (mid -1.194975 0.794975) + (end -1.4 0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "b51a937e-51f5-48b1-9f07-1b96024076f4") + ) + (fp_arc + (start -1.4 -0.3) + (mid -1.194975 -0.794975) + (end -0.7 -1) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "f2e2fe19-0bb3-4630-bb92-712a8e1c0dd1") + ) + (fp_line + (start 1.65 1.25) + (end 1.65 -1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "13a72744-fb4b-46c3-bcd5-9c4dfbc26d33") + ) + (fp_line + (start 1.65 1.25) + (end -1.65 1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "978f62ae-dee4-4a74-8f73-3a1feaca98b2") + ) + (fp_line + (start -1.65 -1.25) + (end 1.65 -1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "7f8f0537-3d42-45b7-91c6-5147e771d927") + ) + (fp_line + (start -1.65 -1.25) + (end -1.65 1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "a7a95f45-83de-435e-b202-e1b7f433aef8") + ) + (pad "1" smd custom + (at -0.65 0 180) + (size 1 0.5) + (layers "B.Cu" "B.Mask") + (net 127 "Net-(J1-Pin_a15)") + (pinfunction "A") + (pintype "passive") + (zone_connect 2) + (thermal_bridge_angle 45) + (options + (clearance outline) + (anchor rect) + ) + (primitives + (gr_circle + (center 0 -0.25) + (end 0.5 -0.25) + (width 0) + (fill yes) + ) + (gr_circle + (center 0 0.25) + (end 0.5 0.25) + (width 0) + (fill yes) + ) + (gr_poly + (pts + (xy 0.5 -0.75) (xy 0 -0.75) (xy 0 0.75) (xy 0.5 0.75) + ) + (width 0) + (fill yes) + ) + ) + (uuid "30840c2c-616d-4c8a-9530-1fdfe0c28bf0") + ) + (pad "2" smd custom + (at 0.65 0 180) + (size 1 0.5) + (layers "B.Cu" "B.Mask") + (net 2 "GND") + (pinfunction "B") + (pintype "passive") + (zone_connect 2) + (thermal_bridge_angle 45) + (options + (clearance outline) + (anchor rect) + ) + (primitives + (gr_circle + (center 0 -0.25) + (end 0.5 -0.25) + (width 0) + (fill yes) + ) + (gr_circle + (center 0 0.25) + (end 0.5 0.25) + (width 0) + (fill yes) + ) + (gr_poly + (pts + (xy 0 -0.75) (xy -0.5 -0.75) (xy -0.5 0.75) (xy 0 0.75) + ) + (width 0) + (fill yes) + ) + ) + (uuid "51bd9e42-87c7-4765-89a6-a765d14bd3fb") + ) + ) + (footprint "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (layer "B.Cu") + (uuid "00000000-0000-0000-0000-00006154befd") + (at 63.5 88.75) + (descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip") + (tags "net tie solder jumper bridged") + (property "Reference" "JP7" + (at 3.75 0 180) + (layer "B.SilkS") + (uuid "60df341c-c22e-4f38-a43c-48bdde5c8bf1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "GND" + (at 0 -1.9 180) + (layer "B.Fab") + (uuid "9fcaaf03-827f-4c13-ba7b-d0a8e69fe7b6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ae4cf506-1ac0-43de-9b4e-28f5bd5750d2") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0979d6b4-4314-4ccc-9f51-f826f8d60d95") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a11652ee-0377-407d-be48-03ca3a141ecc") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Config" "DNF" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "da1a0e96-b086-4165-8473-b37fa1f2d826") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "MFN" "" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "213217df-54f2-4196-9573-f60d9b56ca7e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "PN" "" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "90dc7aab-c20f-4f39-8ac8-8b41f2186692") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property ki_fp_filters "SolderJumper*Bridged*") + (path "/00000000-0000-0000-0000-0000614ba6fe") + (sheetname "Root") + (sheetfile "RedPitaya_Lockbox.kicad_sch") + (zone_connect 1) + (attr exclude_from_pos_files exclude_from_bom) + (net_tie_pad_groups "1, 2") + (fp_poly + (pts + (xy 0.25 0.3) (xy -0.25 0.3) (xy -0.25 -0.3) (xy 0.25 -0.3) + ) + (stroke + (width 0) + (type solid) + ) + (fill solid) + (layer "B.Cu") + (uuid "c2db18bf-461f-46b4-9a92-80b2f3926988") + ) + (fp_line + (start -1.4 0.3) + (end -1.4 -0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "b4f6cd26-8d79-4c96-a340-11d2462f7dac") + ) + (fp_line + (start -0.7 -1) + (end 0.7 -1) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "d85f64ff-2862-4a60-b4e7-9d397cf632b6") + ) + (fp_line + (start 0.7 1) + (end -0.7 1) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "7758c65c-e3c3-4bf6-8041-6c66736b0b1e") + ) + (fp_line + (start 1.4 -0.3) + (end 1.4 0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "cec48aa4-e1ab-4b91-96e3-5fdf7c3828e6") + ) + (fp_arc + (start -1.4 -0.3) + (mid -1.194975 -0.794975) + (end -0.7 -1) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "b8f9a5b4-de33-4991-819e-e1d337d12819") + ) + (fp_arc + (start -0.7 1) + (mid -1.194975 0.794975) + (end -1.4 0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "bc655b2a-2fb8-41fc-8785-9c7aa6fade3a") + ) + (fp_arc + (start 0.7 -1) + (mid 1.194975 -0.794975) + (end 1.4 -0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "53b7bca8-3a75-4216-af1d-a60ab538c5b0") + ) + (fp_arc + (start 1.4 0.3) + (mid 1.194975 0.794975) + (end 0.7 1) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "9ef2f6d8-612a-4966-8676-b51d72909c08") + ) + (fp_line + (start -1.65 -1.25) + (end -1.65 1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "d8c72cd0-8fba-4c47-b5a4-885ec571a158") + ) + (fp_line + (start -1.65 -1.25) + (end 1.65 -1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "eb3270c0-4233-4964-b8a8-5b4081859327") + ) + (fp_line + (start 1.65 1.25) + (end -1.65 1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "04899c39-ddec-433c-86ca-8269656a918e") + ) + (fp_line + (start 1.65 1.25) + (end 1.65 -1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "4118767d-77bd-4c1c-93e6-f998b5b61fa4") + ) + (pad "1" smd custom + (at -0.65 0) + (size 1 0.5) + (layers "B.Cu" "B.Mask") + (net 134 "Net-(J1-Pin_c15)") + (pinfunction "A") + (pintype "passive") + (zone_connect 2) + (thermal_bridge_angle 45) + (options + (clearance outline) + (anchor rect) + ) + (primitives + (gr_circle + (center 0 -0.25) + (end 0.5 -0.25) + (width 0) + (fill yes) + ) + (gr_circle + (center 0 0.25) + (end 0.5 0.25) + (width 0) + (fill yes) + ) + (gr_poly + (pts + (xy 0.5 -0.75) (xy 0 -0.75) (xy 0 0.75) (xy 0.5 0.75) + ) + (width 0) + (fill yes) + ) + ) + (uuid "5ab050de-bf1f-4d88-b5ae-fdbf40c078d2") + ) + (pad "2" smd custom + (at 0.65 0) + (size 1 0.5) + (layers "B.Cu" "B.Mask") + (net 2 "GND") + (pinfunction "B") + (pintype "passive") + (zone_connect 2) + (thermal_bridge_angle 45) + (options + (clearance outline) + (anchor rect) + ) + (primitives + (gr_circle + (center 0 -0.25) + (end 0.5 -0.25) + (width 0) + (fill yes) + ) + (gr_circle + (center 0 0.25) + (end 0.5 0.25) + (width 0) + (fill yes) + ) + (gr_poly + (pts + (xy 0 -0.75) (xy -0.5 -0.75) (xy -0.5 0.75) (xy 0 0.75) + ) + (width 0) + (fill yes) + ) + ) + (uuid "9244be5b-9ef6-4929-954b-dfee5d031803") + ) + ) + (footprint "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (layer "B.Cu") + (uuid "00000000-0000-0000-0000-00006154bf10") + (at 52.5 86.25 180) + (descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip") + (tags "net tie solder jumper bridged") + (property "Reference" "JP8" + (at 0 -4.75 0) + (layer "B.SilkS") + (uuid "8ba73bd6-7bf3-44b9-9339-fa2d8f84d827") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "GND" + (at 0 -1.9 0) + (layer "B.Fab") + (uuid "2551a783-5664-4605-a947-754e62cb0dec") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b6b675bf-91fa-4ce9-b97d-86a1ae7573c1") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ec927c61-2196-425f-814c-f0cc0b647ff9") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ae8cd5ac-5a36-4ec4-9517-910b27f63777") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Config" "DNF" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "7fac68eb-ffdc-4b74-b479-5a0eb3b7c9c5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "MFN" "" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "a9cc122a-8334-4cec-bda5-7e71f0dfba5b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "PN" "" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "d61d8a7d-4e64-4e9e-ada2-d1875af809fa") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property ki_fp_filters "SolderJumper*Bridged*") + (path "/00000000-0000-0000-0000-0000614bacb5") + (sheetname "Root") + (sheetfile "RedPitaya_Lockbox.kicad_sch") + (zone_connect 1) + (attr exclude_from_pos_files exclude_from_bom) + (net_tie_pad_groups "1, 2") + (fp_poly + (pts + (xy 0.25 0.3) (xy -0.25 0.3) (xy -0.25 -0.3) (xy 0.25 -0.3) + ) + (stroke + (width 0) + (type solid) + ) + (fill solid) + (layer "B.Cu") + (uuid "e87ceab5-7618-41c3-a7ca-27b8eb850f97") + ) + (fp_line + (start 1.4 -0.3) + (end 1.4 0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "2c290d16-96aa-4337-9611-4394bc71cfa7") + ) + (fp_line + (start 0.7 1) + (end -0.7 1) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "ea0e7e1e-76e8-4c80-80e6-8d180e787188") + ) + (fp_line + (start -0.7 -1) + (end 0.7 -1) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "eed53515-1812-4603-b8af-69e9f5ece69b") + ) + (fp_line + (start -1.4 0.3) + (end -1.4 -0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "d9a50856-7f5a-46e0-a531-7e5dfdf5a139") + ) + (fp_arc + (start 1.4 0.3) + (mid 1.194975 0.794975) + (end 0.7 1) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "a84275df-4588-476e-8a95-28540f0aa36a") + ) + (fp_arc + (start 0.7 -1) + (mid 1.194975 -0.794975) + (end 1.4 -0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "12794d41-3424-4b18-a65a-c04713ea9ffd") + ) + (fp_arc + (start -0.7 1) + (mid -1.194975 0.794975) + (end -1.4 0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "e0094302-6589-438a-80f0-3213248b47d2") + ) + (fp_arc + (start -1.4 -0.3) + (mid -1.194975 -0.794975) + (end -0.7 -1) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "e8a46d20-3d0f-4daa-9deb-1c0de04aa893") + ) + (fp_line + (start 1.65 1.25) + (end 1.65 -1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "306ef82e-f560-4ae9-b29a-058aa178d701") + ) + (fp_line + (start 1.65 1.25) + (end -1.65 1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "38d54982-a428-4140-85f3-d4886c7bee0c") + ) + (fp_line + (start -1.65 -1.25) + (end 1.65 -1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "f5dee883-7d35-48a3-bdfe-ae436a8efbc2") + ) + (fp_line + (start -1.65 -1.25) + (end -1.65 1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "6761764b-9443-4058-bee2-319cc07cef11") + ) + (pad "1" smd custom + (at -0.65 0 180) + (size 1 0.5) + (layers "B.Cu" "B.Mask") + (net 128 "Net-(J1-Pin_a16)") + (pinfunction "A") + (pintype "passive") + (zone_connect 2) + (thermal_bridge_angle 45) + (options + (clearance outline) + (anchor rect) + ) + (primitives + (gr_circle + (center 0 -0.25) + (end 0.5 -0.25) + (width 0) + (fill yes) + ) + (gr_circle + (center 0 0.25) + (end 0.5 0.25) + (width 0) + (fill yes) + ) + (gr_poly + (pts + (xy 0.5 -0.75) (xy 0 -0.75) (xy 0 0.75) (xy 0.5 0.75) + ) + (width 0) + (fill yes) + ) + ) + (uuid "304e7565-1387-481f-9595-6134c3048a53") + ) + (pad "2" smd custom + (at 0.65 0 180) + (size 1 0.5) + (layers "B.Cu" "B.Mask") + (net 2 "GND") + (pinfunction "B") + (pintype "passive") + (zone_connect 2) + (thermal_bridge_angle 45) + (options + (clearance outline) + (anchor rect) + ) + (primitives + (gr_circle + (center 0 -0.25) + (end 0.5 -0.25) + (width 0) + (fill yes) + ) + (gr_circle + (center 0 0.25) + (end 0.5 0.25) + (width 0) + (fill yes) + ) + (gr_poly + (pts + (xy 0 -0.75) (xy -0.5 -0.75) (xy -0.5 0.75) (xy 0 0.75) + ) + (width 0) + (fill yes) + ) + ) + (uuid "6dfc9fcc-f7f0-4e18-8bdc-a537991a0250") + ) + ) + (footprint "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (layer "B.Cu") + (uuid "00000000-0000-0000-0000-00006154bf23") + (at 63.5 86.25) + (descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip") + (tags "net tie solder jumper bridged") + (property "Reference" "JP9" + (at 3.75 0 180) + (layer "B.SilkS") + (uuid "339bf996-104a-43d4-a58e-cae54a368db2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "GND" + (at 0 -1.9 180) + (layer "B.Fab") + (uuid "491e1e49-b44e-455b-b510-f0bfaa943d70") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9c89c82e-fdca-46fe-9c1c-b91d66bc236c") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ea515e16-b474-4e8c-a7c1-a8d012341c2d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ee32b2b6-06bf-475c-bfbb-2aab644fa429") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Config" "DNF" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "2987587f-8483-4f3b-8a55-4224ab010065") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "MFN" "" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "1f30ffb5-4a68-4da3-8837-fc46187b292d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "PN" "" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "55e0247d-0245-44c3-be19-92dd0d24100e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property ki_fp_filters "SolderJumper*Bridged*") + (path "/00000000-0000-0000-0000-0000614bb04c") + (sheetname "Root") + (sheetfile "RedPitaya_Lockbox.kicad_sch") + (zone_connect 1) + (attr exclude_from_pos_files exclude_from_bom) + (net_tie_pad_groups "1, 2") + (fp_poly + (pts + (xy 0.25 0.3) (xy -0.25 0.3) (xy -0.25 -0.3) (xy 0.25 -0.3) + ) + (stroke + (width 0) + (type solid) + ) + (fill solid) + (layer "B.Cu") + (uuid "4dc66b2c-df77-4075-a921-33358c4c5681") + ) + (fp_line + (start -1.4 0.3) + (end -1.4 -0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "e45af433-c69c-4691-a703-b2d64f69ef56") + ) + (fp_line + (start -0.7 -1) + (end 0.7 -1) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "59268797-1f9a-4883-aed3-a36268349a75") + ) + (fp_line + (start 0.7 1) + (end -0.7 1) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "dad6496f-c2db-47c6-b4c1-5aa73620f5d9") + ) + (fp_line + (start 1.4 -0.3) + (end 1.4 0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "6523fb63-dc3e-4084-a45a-8a663d90e48f") + ) + (fp_arc + (start -1.4 -0.3) + (mid -1.194975 -0.794975) + (end -0.7 -1) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "3658d164-10bb-4950-b867-1bc1933f87cc") + ) + (fp_arc + (start -0.7 1) + (mid -1.194975 0.794975) + (end -1.4 0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "19d363d0-4066-42cd-9031-5991dc76c937") + ) + (fp_arc + (start 0.7 -1) + (mid 1.194975 -0.794975) + (end 1.4 -0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "3ac975d8-da45-4f85-bace-bc478dd6c0f2") + ) + (fp_arc + (start 1.4 0.3) + (mid 1.194975 0.794975) + (end 0.7 1) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "c7d3d9d8-2c00-4321-9c78-a96dce797c65") + ) + (fp_line + (start -1.65 -1.25) + (end -1.65 1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "761f77ca-4a94-4c3f-aff3-91b09502d00b") + ) + (fp_line + (start -1.65 -1.25) + (end 1.65 -1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "2aadd3c8-6ac8-46f1-94f9-54bea564161a") + ) + (fp_line + (start 1.65 1.25) + (end -1.65 1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "20836c6a-06a1-40d7-9493-37cb6259de12") + ) + (fp_line + (start 1.65 1.25) + (end 1.65 -1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "7956f659-c32f-497e-95fa-ba9c086ba805") + ) + (pad "1" smd custom + (at -0.65 0) + (size 1 0.5) + (layers "B.Cu" "B.Mask") + (net 135 "Net-(J1-Pin_c16)") + (pinfunction "A") + (pintype "passive") + (zone_connect 2) + (thermal_bridge_angle 45) + (options + (clearance outline) + (anchor rect) + ) + (primitives + (gr_circle + (center 0 -0.25) + (end 0.5 -0.25) + (width 0) + (fill yes) + ) + (gr_circle + (center 0 0.25) + (end 0.5 0.25) + (width 0) + (fill yes) + ) + (gr_poly + (pts + (xy 0.5 -0.75) (xy 0 -0.75) (xy 0 0.75) (xy 0.5 0.75) + ) + (width 0) + (fill yes) + ) + ) + (uuid "875aad4a-be06-42b4-b52b-3258da1dc9c6") + ) + (pad "2" smd custom + (at 0.65 0) + (size 1 0.5) + (layers "B.Cu" "B.Mask") + (net 2 "GND") + (pinfunction "B") + (pintype "passive") + (zone_connect 2) + (thermal_bridge_angle 45) + (options + (clearance outline) + (anchor rect) + ) + (primitives + (gr_circle + (center 0 -0.25) + (end 0.5 -0.25) + (width 0) + (fill yes) + ) + (gr_circle + (center 0 0.25) + (end 0.5 0.25) + (width 0) + (fill yes) + ) + (gr_poly + (pts + (xy 0 -0.75) (xy -0.5 -0.75) (xy -0.5 0.75) (xy 0 0.75) + ) + (width 0) + (fill yes) + ) + ) + (uuid "be00e039-3520-4c05-9008-7bad47a609c1") + ) + ) + (footprint "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (layer "B.Cu") + (uuid "00000000-0000-0000-0000-00006154bf36") + (at 52.5 83.75 180) + (descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip") + (tags "net tie solder jumper bridged") + (property "Reference" "JP10" + (at 0 5.75 0) + (layer "B.SilkS") + (uuid "c4b994d0-ec66-4dd1-a12b-ac7c5ae36906") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "GND" + (at 0 -1.9 0) + (layer "B.Fab") + (uuid "1cae077e-478c-49e5-a25f-205102d2d31c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5ab63725-7549-4bbd-b982-4e0ed13ed7c0") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a05a80bf-453c-4a9d-8967-a948c8f2c0ce") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "521d73ff-1142-4eef-a1b6-8ebdd1d73263") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Config" "DNF" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "9043f928-df83-436e-b8ed-4771dee6f446") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "MFN" "" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "4c0da3b4-ea1a-4028-bafa-91f1586a4e96") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "PN" "" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "21edf4a5-a185-4587-bbeb-a5a7d2a41082") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property ki_fp_filters "SolderJumper*Bridged*") + (path "/00000000-0000-0000-0000-0000614baac4") + (sheetname "Root") + (sheetfile "RedPitaya_Lockbox.kicad_sch") + (zone_connect 1) + (attr exclude_from_pos_files exclude_from_bom) + (net_tie_pad_groups "1, 2") + (fp_poly + (pts + (xy 0.25 0.3) (xy -0.25 0.3) (xy -0.25 -0.3) (xy 0.25 -0.3) + ) + (stroke + (width 0) + (type solid) + ) + (fill solid) + (layer "B.Cu") + (uuid "80880558-3758-46c2-b0b0-2979054315aa") + ) + (fp_line + (start 1.4 -0.3) + (end 1.4 0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "68c96442-4a6a-489c-a9c4-2459ea2020dc") + ) + (fp_line + (start 0.7 1) + (end -0.7 1) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "333634b6-6462-459f-906f-a4158e87cd12") + ) + (fp_line + (start -0.7 -1) + (end 0.7 -1) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "0e83d9eb-162b-4eb6-a4ea-97b22db4c5fd") + ) + (fp_line + (start -1.4 0.3) + (end -1.4 -0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "ad56f9cd-b86f-4a04-ac22-796d4efeec86") + ) + (fp_arc + (start 1.4 0.3) + (mid 1.194975 0.794975) + (end 0.7 1) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "6817776b-624a-4e90-aa2c-bcaa77d6a3cf") + ) + (fp_arc + (start 0.7 -1) + (mid 1.194975 -0.794975) + (end 1.4 -0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "8e80bb9a-36ad-42ff-89c4-c6e5bc45ae64") + ) + (fp_arc + (start -0.7 1) + (mid -1.194975 0.794975) + (end -1.4 0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "10ea9df3-20c5-4ef8-ac97-98c7497b223c") + ) + (fp_arc + (start -1.4 -0.3) + (mid -1.194975 -0.794975) + (end -0.7 -1) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "acabe942-0dc6-43e3-91e7-0e65d9c0cc81") + ) + (fp_line + (start 1.65 1.25) + (end 1.65 -1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "fd02d6af-0e1b-4d5e-ac3a-2e83bc88af3f") + ) + (fp_line + (start 1.65 1.25) + (end -1.65 1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "a7a4872f-2009-4ce3-bccb-9ed1ba3f6e82") + ) + (fp_line + (start -1.65 -1.25) + (end 1.65 -1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "56ef7746-c26d-4c7b-8355-6dc948f318a8") + ) + (fp_line + (start -1.65 -1.25) + (end -1.65 1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "75e4b25e-07ab-46a0-9850-d2b488d3b2fd") + ) + (pad "1" smd custom + (at -0.65 0 180) + (size 1 0.5) + (layers "B.Cu" "B.Mask") + (net 129 "Net-(J1-Pin_a17)") + (pinfunction "A") + (pintype "passive") + (zone_connect 2) + (thermal_bridge_angle 45) + (options + (clearance outline) + (anchor rect) + ) + (primitives + (gr_circle + (center 0 -0.25) + (end 0.5 -0.25) + (width 0) + (fill yes) + ) + (gr_circle + (center 0 0.25) + (end 0.5 0.25) + (width 0) + (fill yes) + ) + (gr_poly + (pts + (xy 0.5 -0.75) (xy 0 -0.75) (xy 0 0.75) (xy 0.5 0.75) + ) + (width 0) + (fill yes) + ) + ) + (uuid "b3bd07e0-9c03-4d2f-80e7-cdc780477e90") + ) + (pad "2" smd custom + (at 0.65 0 180) + (size 1 0.5) + (layers "B.Cu" "B.Mask") + (net 2 "GND") + (pinfunction "B") + (pintype "passive") + (zone_connect 2) + (thermal_bridge_angle 45) + (options + (clearance outline) + (anchor rect) + ) + (primitives + (gr_circle + (center 0 -0.25) + (end 0.5 -0.25) + (width 0) + (fill yes) + ) + (gr_circle + (center 0 0.25) + (end 0.5 0.25) + (width 0) + (fill yes) + ) + (gr_poly + (pts + (xy 0 -0.75) (xy -0.5 -0.75) (xy -0.5 0.75) (xy 0 0.75) + ) + (width 0) + (fill yes) + ) + ) + (uuid "0b065463-e104-4a0d-a90f-5b45712282af") + ) + ) + (footprint "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (layer "B.Cu") + (uuid "00000000-0000-0000-0000-00006154bf49") + (at 63.5 83.75) + (descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip") + (tags "net tie solder jumper bridged") + (property "Reference" "JP11" + (at 3.7 0 180) + (layer "B.SilkS") + (uuid "e4731063-efcb-4769-9d64-e64f14539b51") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "GND" + (at 0 -1.9 180) + (layer "B.Fab") + (uuid "75f28850-d3e1-450f-a2ff-dbe008408819") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "41402aa8-d81a-44fe-9982-e5231cc32d04") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "22add209-808f-44ad-885f-9f7d3f6c8a9e") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d6ae1b7f-5672-41b7-a881-224e097f4f4f") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Config" "DNF" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "e1dadb18-24e7-4d2b-9332-ec91b51bc4ff") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "MFN" "" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "4d57dfb5-8db1-47d6-9bdb-70c4f7eb9ea3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "PN" "" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "cb84b54f-2b63-43d5-8296-7da2257dc1f0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property ki_fp_filters "SolderJumper*Bridged*") + (path "/00000000-0000-0000-0000-0000614ba937") + (sheetname "Root") + (sheetfile "RedPitaya_Lockbox.kicad_sch") + (zone_connect 1) + (attr exclude_from_pos_files exclude_from_bom) + (net_tie_pad_groups "1, 2") + (fp_poly + (pts + (xy 0.25 0.3) (xy -0.25 0.3) (xy -0.25 -0.3) (xy 0.25 -0.3) + ) + (stroke + (width 0) + (type solid) + ) + (fill solid) + (layer "B.Cu") + (uuid "46f0629c-4453-488a-ba12-3fe008650823") + ) + (fp_line + (start -1.4 0.3) + (end -1.4 -0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "d4ffcdfa-f523-4568-81c6-00e45bfb2d08") + ) + (fp_line + (start -0.7 -1) + (end 0.7 -1) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "5eeb7cc9-851b-436e-8022-a94d80d5a16c") + ) + (fp_line + (start 0.7 1) + (end -0.7 1) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "e0e0251b-af89-4d8e-9ad8-a22d38a10930") + ) + (fp_line + (start 1.4 -0.3) + (end 1.4 0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "4464fec9-4740-4505-8eb9-fb58a5e7e5cf") + ) + (fp_arc + (start -1.4 -0.3) + (mid -1.194975 -0.794975) + (end -0.7 -1) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "80118680-43a3-4b42-b41c-3d3ba455fa53") + ) + (fp_arc + (start -0.7 1) + (mid -1.194975 0.794975) + (end -1.4 0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "2984c6fd-1878-4501-8510-a8a79d8f63d6") + ) + (fp_arc + (start 0.7 -1) + (mid 1.194975 -0.794975) + (end 1.4 -0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "daa7585b-0629-4b0b-8b2d-2ad521cbfb8b") + ) + (fp_arc + (start 1.4 0.3) + (mid 1.194975 0.794975) + (end 0.7 1) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "31e0c17c-01cd-4f4d-a033-31aa8d703a72") + ) + (fp_line + (start -1.65 -1.25) + (end -1.65 1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "9ef2662b-ded5-4b8f-8ac9-57f252c656d5") + ) + (fp_line + (start -1.65 -1.25) + (end 1.65 -1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "73ead61b-fc0c-4670-8467-9eacbbbed974") + ) + (fp_line + (start 1.65 1.25) + (end -1.65 1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "4de09970-194a-4340-b17e-0a856231de2b") + ) + (fp_line + (start 1.65 1.25) + (end 1.65 -1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "92793572-e057-4d81-bcd8-7a5e96d5b249") + ) + (pad "1" smd custom + (at -0.65 0) + (size 1 0.5) + (layers "B.Cu" "B.Mask") + (net 136 "Net-(J1-Pin_c17)") + (pinfunction "A") + (pintype "passive") + (zone_connect 2) + (thermal_bridge_angle 45) + (options + (clearance outline) + (anchor rect) + ) + (primitives + (gr_circle + (center 0 -0.25) + (end 0.5 -0.25) + (width 0) + (fill yes) + ) + (gr_circle + (center 0 0.25) + (end 0.5 0.25) + (width 0) + (fill yes) + ) + (gr_poly + (pts + (xy 0.5 -0.75) (xy 0 -0.75) (xy 0 0.75) (xy 0.5 0.75) + ) + (width 0) + (fill yes) + ) + ) + (uuid "e6fd295c-3da2-40dc-a2c9-6b09a0767945") + ) + (pad "2" smd custom + (at 0.65 0) + (size 1 0.5) + (layers "B.Cu" "B.Mask") + (net 2 "GND") + (pinfunction "B") + (pintype "passive") + (zone_connect 2) + (thermal_bridge_angle 45) + (options + (clearance outline) + (anchor rect) + ) + (primitives + (gr_circle + (center 0 -0.25) + (end 0.5 -0.25) + (width 0) + (fill yes) + ) + (gr_circle + (center 0 0.25) + (end 0.5 0.25) + (width 0) + (fill yes) + ) + (gr_poly + (pts + (xy 0 -0.75) (xy -0.5 -0.75) (xy -0.5 0.75) (xy 0 0.75) + ) + (width 0) + (fill yes) + ) + ) + (uuid "dd5076f9-89d7-435a-b904-03de31f069af") + ) + ) + (footprint "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (layer "B.Cu") + (uuid "00000000-0000-0000-0000-00006154bf6f") + (at 63.5 81.25) + (descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip") + (tags "net tie solder jumper bridged") + (property "Reference" "JP13" + (at 3.7 0 180) + (layer "B.SilkS") + (uuid "d116fb78-ba5e-4ab1-9db1-b372b7f14dd5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "GND" + (at 0 -1.9 180) + (layer "B.Fab") + (uuid "35c2688b-2853-4a04-bd46-bd34c94cc5f0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "238e2479-4464-4474-aaa1-1da1a082f16d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2f5c4dd2-e4f1-42f6-aea8-f70c4d8f1efc") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "049e336f-dc47-469e-aec1-c59b71a434dc") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Config" "DNF" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "432cf3be-c4cc-4a5f-8843-8e230cd95f20") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "MFN" "" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "dfbef397-5db8-4a49-8475-9f6b5e746e23") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "PN" "" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "e2ccc4b9-4e55-46ac-82ef-d584d48fd36d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property ki_fp_filters "SolderJumper*Bridged*") + (path "/00000000-0000-0000-0000-0000614ba1f4") + (sheetname "Root") + (sheetfile "RedPitaya_Lockbox.kicad_sch") + (zone_connect 1) + (attr exclude_from_pos_files exclude_from_bom) + (net_tie_pad_groups "1, 2") + (fp_poly + (pts + (xy 0.25 0.3) (xy -0.25 0.3) (xy -0.25 -0.3) (xy 0.25 -0.3) + ) + (stroke + (width 0) + (type solid) + ) + (fill solid) + (layer "B.Cu") + (uuid "bab339a6-4198-4e1d-a36b-433282e9cf9d") + ) + (fp_line + (start -1.4 0.3) + (end -1.4 -0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "d8165b62-8bad-4c09-b449-081edf01fc95") + ) + (fp_line + (start -0.7 -1) + (end 0.7 -1) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "ded0d98b-5593-4720-8d67-c1b3930506e9") + ) + (fp_line + (start 0.7 1) + (end -0.7 1) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "ac5cabd5-0f80-464b-a2d7-f85a3539c0b2") + ) + (fp_line + (start 1.4 -0.3) + (end 1.4 0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "9d7dc5c1-c66e-4db5-86a6-da314a5276d5") + ) + (fp_arc + (start -1.4 -0.3) + (mid -1.194975 -0.794975) + (end -0.7 -1) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "93bda16d-80ef-4311-9fe9-1940c9ef152e") + ) + (fp_arc + (start -0.7 1) + (mid -1.194975 0.794975) + (end -1.4 0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "ba522028-db5d-4981-893d-4e9098bf0fdd") + ) + (fp_arc + (start 0.7 -1) + (mid 1.194975 -0.794975) + (end 1.4 -0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "3443a9bc-7c56-4525-b281-349e133f6c19") + ) + (fp_arc + (start 1.4 0.3) + (mid 1.194975 0.794975) + (end 0.7 1) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "b111352f-719c-40d6-9eab-4c08dbb9cfc4") + ) + (fp_line + (start -1.65 -1.25) + (end -1.65 1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "ef258767-0f7e-4145-a195-380f6bc94a2e") + ) + (fp_line + (start -1.65 -1.25) + (end 1.65 -1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "f0a983cd-0cfc-4db0-909f-4ecba88664aa") + ) + (fp_line + (start 1.65 1.25) + (end -1.65 1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "8a66de8e-6c7c-4015-9b44-b6898193113f") + ) + (fp_line + (start 1.65 1.25) + (end 1.65 -1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "9ec7b053-9eba-48ab-8a52-235c106ccdb7") + ) + (pad "1" smd custom + (at -0.65 0) + (size 1 0.5) + (layers "B.Cu" "B.Mask") + (net 137 "Net-(J1-Pin_c18)") + (pinfunction "A") + (pintype "passive") + (zone_connect 2) + (thermal_bridge_angle 45) + (options + (clearance outline) + (anchor rect) + ) + (primitives + (gr_circle + (center 0 -0.25) + (end 0.5 -0.25) + (width 0) + (fill yes) + ) + (gr_circle + (center 0 0.25) + (end 0.5 0.25) + (width 0) + (fill yes) + ) + (gr_poly + (pts + (xy 0.5 -0.75) (xy 0 -0.75) (xy 0 0.75) (xy 0.5 0.75) + ) + (width 0) + (fill yes) + ) + ) + (uuid "c1353a05-ee75-4db2-8ecb-5fad8b570d65") + ) + (pad "2" smd custom + (at 0.65 0) + (size 1 0.5) + (layers "B.Cu" "B.Mask") + (net 2 "GND") + (pinfunction "B") + (pintype "passive") + (zone_connect 2) + (thermal_bridge_angle 45) + (options + (clearance outline) + (anchor rect) + ) + (primitives + (gr_circle + (center 0 -0.25) + (end 0.5 -0.25) + (width 0) + (fill yes) + ) + (gr_circle + (center 0 0.25) + (end 0.5 0.25) + (width 0) + (fill yes) + ) + (gr_poly + (pts + (xy 0 -0.75) (xy -0.5 -0.75) (xy -0.5 0.75) (xy 0 0.75) + ) + (width 0) + (fill yes) + ) + ) + (uuid "402371fe-9f37-45a7-a4ec-3a9f00b62e8a") + ) + ) + (footprint "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (layer "B.Cu") + (uuid "fc4d6792-244a-439a-9c0a-3b9ef97b70c8") + (at 52.5 81.25 180) + (descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip") + (tags "net tie solder jumper bridged") + (property "Reference" "JP12" + (at 0 1.8 0) + (layer "B.SilkS") + (uuid "101703b0-6bae-455d-bf50-186949df6a2a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "GND" + (at 0 -1.9 0) + (layer "B.Fab") + (uuid "b0250621-ad68-4c35-88e5-07620cd08abd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8d1ed9d3-4907-4d6d-aa8a-c62493c5773f") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6c152e6e-3db7-4364-9cd0-f9062c475039") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "cc9ec9f5-74e7-4fde-8ece-1cb5a96e10e0") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Config" "DNF" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "c2c2d146-9fa6-4441-9834-b54a66d44769") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "MFN" "" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "39f9781c-63e1-4cb4-b4bf-766fd1088fc5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "PN" "" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "8302cfc1-d5dd-49b1-b98b-7c2d41c6ddca") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property ki_fp_filters "SolderJumper*Bridged*") + (path "/00000000-0000-0000-0000-0000614ba49d") + (sheetname "Root") + (sheetfile "RedPitaya_Lockbox.kicad_sch") + (zone_connect 1) + (attr exclude_from_pos_files exclude_from_bom) + (net_tie_pad_groups "1, 2") + (fp_poly + (pts + (xy 0.25 0.3) (xy -0.25 0.3) (xy -0.25 -0.3) (xy 0.25 -0.3) + ) + (stroke + (width 0) + (type solid) + ) + (fill solid) + (layer "B.Cu") + (uuid "71986a69-ff9a-4ef1-97e7-18f36d03a9d1") + ) + (fp_line + (start 1.4 -0.3) + (end 1.4 0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "665e3435-48cb-4a3e-a4b1-f8a37ced72f8") + ) + (fp_line + (start 0.7 1) + (end -0.7 1) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "a864e411-a877-47b3-bf3b-43e46a523f86") + ) + (fp_line + (start -0.7 -1) + (end 0.7 -1) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "48ef4d99-d7c6-4148-85cf-ab0f69257a22") + ) + (fp_line + (start -1.4 0.3) + (end -1.4 -0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "b2c95900-f7dd-4c30-893f-b0d70ec03ecb") + ) + (fp_arc + (start 1.4 0.3) + (mid 1.194975 0.794975) + (end 0.7 1) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "916f7d64-9e5a-41a9-b54f-8e640f55e954") + ) + (fp_arc + (start 0.7 -1) + (mid 1.194975 -0.794975) + (end 1.4 -0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "8c5b266c-7251-4743-a916-b771f39bf779") + ) + (fp_arc + (start -0.7 1) + (mid -1.194975 0.794975) + (end -1.4 0.3) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "1f65bc16-12a4-4833-a82c-cb4fd1957f87") + ) + (fp_arc + (start -1.4 -0.3) + (mid -1.194975 -0.794975) + (end -0.7 -1) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "7862bcb6-c710-4d38-8d0f-7992524c7626") + ) + (fp_line + (start 1.65 1.25) + (end 1.65 -1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "6375fe59-31aa-49c3-80aa-61b57616fa2c") + ) + (fp_line + (start 1.65 1.25) + (end -1.65 1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "d78159ea-7cdf-430f-89a7-89e5547feec5") + ) + (fp_line + (start -1.65 -1.25) + (end 1.65 -1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "50375950-2860-4a04-a65f-50bb7a22452e") + ) + (fp_line + (start -1.65 -1.25) + (end -1.65 1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "4564231f-164f-4688-8082-f285b9819cbe") + ) + (pad "1" smd custom + (at -0.65 0 180) + (size 1 0.5) + (layers "B.Cu" "B.Mask") + (net 130 "Net-(J1-Pin_a18)") + (pinfunction "A") + (pintype "passive") + (zone_connect 2) + (thermal_bridge_angle 45) + (options + (clearance outline) + (anchor rect) + ) + (primitives + (gr_circle + (center 0 -0.25) + (end 0.5 -0.25) + (width 0) + (fill yes) + ) + (gr_circle + (center 0 0.25) + (end 0.5 0.25) + (width 0) + (fill yes) + ) + (gr_poly + (pts + (xy 0.5 -0.75) (xy 0 -0.75) (xy 0 0.75) (xy 0.5 0.75) + ) + (width 0) + (fill yes) + ) + ) + (uuid "6ebded44-235e-4fe4-a615-cd20a7d9160a") + ) + (pad "2" smd custom + (at 0.65 0 180) + (size 1 0.5) + (layers "B.Cu" "B.Mask") + (net 2 "GND") + (pinfunction "B") + (pintype "passive") + (zone_connect 2) + (thermal_bridge_angle 45) + (options + (clearance outline) + (anchor rect) + ) + (primitives + (gr_circle + (center 0 -0.25) + (end 0.5 -0.25) + (width 0) + (fill yes) + ) + (gr_circle + (center 0 0.25) + (end 0.5 0.25) + (width 0) + (fill yes) + ) + (gr_poly + (pts + (xy 0 -0.75) (xy -0.5 -0.75) (xy -0.5 0.75) (xy 0 0.75) + ) + (width 0) + (fill yes) + ) + ) + (uuid "4eb974f1-b735-498e-9c7b-4ce78ae09194") + ) + ) + (gr_line + (start 209.6 63.9) + (end 189.6 63.9) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "00000000-0000-0000-0000-00005f70c501") + ) + (gr_line + (start 189.6 63.9) + (end 189.6 35.4) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "00000000-0000-0000-0000-00005f70c504") + ) + (gr_line + (start 189.6 35.4) + (end 209.6 35.4) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "00000000-0000-0000-0000-00005f70c507") + ) + (gr_line + (start 209.6 35.4) + (end 209.6 63.9) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "00000000-0000-0000-0000-00005f70c50a") + ) + (gr_line + (start 210 35) + (end 50 35) + (stroke + (width 0.15) + (type solid) + ) + (layer "Edge.Cuts") + (uuid "00000000-0000-0000-0000-00005f70c4e0") + ) + (gr_line + (start 210 35) + (end 210 135) + (stroke + (width 0.15) + (type solid) + ) + (layer "Edge.Cuts") + (uuid "00000000-0000-0000-0000-00005f70c4e3") + ) + (gr_line + (start 210 135) + (end 50 135) + (stroke + (width 0.15) + (type solid) + ) + (layer "Edge.Cuts") + (uuid "00000000-0000-0000-0000-00005f70c4e6") + ) + (gr_line + (start 50 135) + (end 50 35) + (stroke + (width 0.15) + (type solid) + ) + (layer "Edge.Cuts") + (uuid "00000000-0000-0000-0000-00005f70c4e9") + ) + (gr_text "Design by: Tilman Preuschoff" + (at 206.81 90.27 90) + (layer "B.SilkS") + (uuid "00000000-0000-0000-0000-00005f70c4f8") + (effects + (font + (size 1.5 1.5) + (thickness 0.3) + ) + (justify mirror) + ) + ) + (gr_text "Power supply options:\nAPQ (default): JP1,JP2 open; JP3-JP15 closed\nToptica/LQO: JP1,JP2 closed; JP3-JP15 open" + (at 66.2 91.3 90) + (layer "B.SilkS") + (uuid "00000000-0000-0000-0000-00006154c980") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify left mirror) + ) + ) + (gr_text "RedPitaya Lockbox\n2023-11 Rev. 1.6.3" + (at 134.6 129.9 0) + (layer "F.SilkS") + (uuid "00000000-0000-0000-0000-00005f70c4ef") + (effects + (font + (size 2 2) + (thickness 0.35) + ) + (justify left) + ) + ) + (gr_text "V-" + (at 65.6 45.9 0) + (layer "F.SilkS") + (uuid "00000000-0000-0000-0000-00005f70c519") + (effects + (font + (size 1.5 1.5) + (thickness 0.25) + ) + ) + ) + (gr_text "V+" + (at 64.4 127.3 0) + (layer "F.SilkS") + (uuid "00000000-0000-0000-0000-00005f70c525") + (effects + (font + (size 1.5 1.5) + (thickness 0.25) + ) + ) + ) + (gr_text "GND" + (at 63.6 85.9 90) + (layer "F.SilkS") + (uuid "00000000-0000-0000-0000-00005f70c528") + (effects + (font + (size 1.5 1.5) + (thickness 0.25) + ) + ) + ) + (gr_text "CaseSrew MountingHole" + (at 52.8828 132.461 0) + (layer "F.Fab") + (uuid "00f08a0b-82b9-45e5-8519-9f3c6377cd02") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (gr_text "Manufacturing instructions:\n- Material FR-4\n- Finished thickness: 1.57 mm ± 0.13 mm\n- Surface finish: HASL lead-free\n- PCBs are to be RoHS compliant\n- Do not edit artwork, e.g. to add logos\n or order numbers\n- Clean to meet IPC J-STD-001E, Class 2\n or better after assembly\n\nFor assembled PCBs, use the \nfollowing TARIC code for shipping:\n90304000" + (at 225 50 0) + (layer "F.Fab") + (uuid "03273d97-5274-435d-8d30-f6cf1379d2ec") + (effects + (font + (size 1.5 1.5) + (thickness 0.3) + ) + (justify left) + ) + ) + (gr_text "CaseSrew MountingHole" + (at 53.0479 37.9095 0) + (layer "F.Fab") + (uuid "c7d84f6e-a707-4ffd-8ab8-e4d824111c03") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (dimension + (type aligned) + (layer "Dwgs.User") + (uuid "00000000-0000-0000-0000-00005f70c4f3") + (pts + (xy 210 35) (xy 50 35) + ) + (height 2.5) + (gr_text "160.0000 mm" + (at 130 30.7 0) + (layer "Dwgs.User") + (uuid "00000000-0000-0000-0000-00005f70c4f3") + (effects + (font + (size 1.5 1.5) + (thickness 0.3) + ) + ) + ) + (format + (prefix "") + (suffix "") + (units 2) + (units_format 1) + (precision 4) + ) + (style + (thickness 0.3) + (arrow_length 1.27) + (text_position_mode 0) + (extension_height 0.58642) + (extension_offset 0) keep_text_aligned) + ) + (dimension + (type aligned) + (layer "Dwgs.User") + (uuid "00000000-0000-0000-0000-00005f70c4fc") + (pts + (xy 210 135) (xy 210 35) + ) + (height 5) + (gr_text "100.0000 mm" + (at 213.2 85 90) + (layer "Dwgs.User") + (uuid "00000000-0000-0000-0000-00005f70c4fc") + (effects + (font + (size 1.5 1.5) + (thickness 0.3) + ) + ) + ) + (format + (prefix "") + (suffix "") + (units 2) + (units_format 1) + (precision 4) + ) + (style + (thickness 0.3) + (arrow_length 1.27) + (text_position_mode 0) + (extension_height 0.58642) + (extension_offset 0) keep_text_aligned) + ) + (segment + (start 58 42.5) + (end 58 43.75) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "00000000-0000-0000-0000-00006154eecb") + ) + (segment + (start 58 41.25) + (end 58 42.5) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "00000000-0000-0000-0000-00006154eecd") + ) + (segment + (start 66.920002 126.3) + (end 69.85 123.370002) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "0b9dfbfe-1e19-4396-b6a1-78bceb1cec64") + ) + (segment + (start 67.44 74.595) + (end 66.305 74.595) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "1214da2f-202f-4aba-925e-67384a880b73") + ) + (segment + (start 58.155001 72.344999) + (end 64.044999 72.344999) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "14c9c5e0-cf46-42b2-82a4-1fc9dad67ea0") + ) + (segment + (start 61.25 67.25) + (end 64 70) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "1d23c79a-356b-440d-9928-a8b6c266b834") + ) + (segment + (start 63.804999 74.795001) + (end 64.1 74.5) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "1efab745-4ea2-4503-bd05-3123a3de84ef") + ) + (segment + (start 65.409999 95.310001) + (end 65.2 95.52) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "201da9bb-18a8-4628-9f72-99fe7bd0fa03") + ) + (segment + (start 71.695 77.505) + (end 71.5 77.7) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "2138f960-30ef-4963-92a6-e5d06f389b0a") + ) + (segment + (start 65.2 126.3) + (end 66.920002 126.3) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "25b9b6d4-722b-4fc2-8315-c355f287841f") + ) + (segment + (start 67.44 75.245) + (end 66.255 75.245) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "2787e483-5c73-4cd6-b879-fae53ba125f2") + ) + (segment + (start 64.1 72.4) + (end 64.1 74.5) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "2ed795d4-9928-4760-a0b0-796f1d7302ac") + ) + (segment + (start 58 52.5) + (end 58 55.1) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "32062560-499b-44dc-9b07-a0809ef2ea64") + ) + (segment + (start 69.1 101.8) + (end 70.4 103.1) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "33b067b5-f5f2-47ca-b6f5-0655e1c3b542") + ) + (segment + (start 69.85 120.2) + (end 65.6 120.2) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "375c7386-b2fa-41e4-9578-da51d4d7b33c") + ) + (segment + (start 66.3 74.6) + (end 66 74.6) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "377a14b2-2bd6-49e3-82b1-7abd6141afe4") + ) + (segment + (start 58 40.15) + (end 58 41.25) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "39ea8622-ff03-464a-b272-99edd2919443") + ) + (segment + (start 65.2 119.8) + (end 65.2 114) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "43d6a7dc-ede7-42a0-80b8-3bc25a5c4a75") + ) + (segment + (start 58 69.75) + (end 63.75 69.75) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "48573f01-35ca-4940-a0fb-37a7195d04a8") + ) + (segment + (start 58 69.75) + (end 58 72.5) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "4e5c0499-4917-48e7-9f4d-c201cc63ee81") + ) + (segment + (start 63.75 69.75) + (end 64 70) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "542c0bc2-7279-4d6b-bfea-489836939f96") + ) + (segment + (start 66.26 71.94) + (end 67.44 71.94) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "549acdbd-cd17-4eae-93f4-9209e642adc2") + ) + (segment + (start 65.6 120.2) + (end 65.2 119.8) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "551a9c77-351f-46d5-a216-b0289f2b7181") + ) + (segment + (start 58 74.75) + (end 58.045001 74.795001) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "5677ce6f-2f2b-441c-afdd-2baebbd3014e") + ) + (segment + (start 69.85 116.630002) + (end 69.85 120.2) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "570e06c8-e282-47ad-a16f-1c101653bcd2") + ) + (segment + (start 69.85 123.370002) + (end 69.85 120.2) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "59f2b60e-2b27-46d5-ad73-640286523b3d") + ) + (segment + (start 58 72.5) + (end 58.155001 72.344999) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "64fe4ef0-94d6-4168-93a5-da4cb1d6b68d") + ) + (segment + (start 65.2 89.319998) + (end 65.2 95.100002) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "69dbf79a-0755-4698-b4ab-edc5c3bf8438") + ) + (segment + (start 67.219998 114) + (end 69.85 116.630002) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "6ae5519f-a82c-423d-89f5-15a3d808e9b8") + ) + (segment + (start 65.409999 102.109999) + (end 65.719998 101.8) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "6e72ccaa-c091-4330-a23e-92e3f7e9d19d") + ) + (segment + (start 64 70) + (end 64.1 70.1) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "709590f4-b237-4a3b-993d-ad7f0777012b") + ) + (segment + (start 66 74.99) + (end 66 74.6) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "76f53cfe-a474-4d06-a4ee-4118e1446cad") + ) + (segment + (start 65.999998 95.9) + (end 68.9 95.9) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "7b4ce615-f0d5-4b1f-9b49-d02fdef0cf8b") + ) + (segment + (start 70.6375 89.8) + (end 66.1 89.8) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "7c78ac6e-4741-4718-9f69-92b018410c98") + ) + (segment + (start 65.2 114) + (end 65.2 102.319998) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "7d590ff0-32de-4f01-bf4c-caa51c97e2a2") + ) + (segment + (start 65.409999 89.109999) + (end 65.2 88.9) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "8b014bea-020e-4c32-8a2e-afb44e577967") + ) + (segment + (start 66 72.2) + (end 66.26 71.94) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "8e826973-d3e6-464e-9abd-8779fff78ab9") + ) + (segment + (start 66 73.9) + (end 66 72.2) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "966ae757-124f-4812-ab1f-2068389d5a22") + ) + (segment + (start 65.2 126.9) + (end 65.2 126.3) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "9b52db44-d7de-4fdd-bf98-b91b7e70bfef") + ) + (segment + (start 66.045 73.945) + (end 66 73.9) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "a62eebac-7cd4-4d87-9d67-7d9e4541ef27") + ) + (segment + (start 65.2 88.9) + (end 65.2 81.7) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "a9881c4d-1698-40b0-8ef8-bcb44452f73f") + ) + (segment + (start 67.44 73.945) + (end 66.045 73.945) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "ab237cac-d232-4700-9f12-db45cc70040c") + ) + (segment + (start 58 54.5) + (end 58 55.1) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "abc99c1d-371a-46da-9c0e-ac8fa4c77b83") + ) + (segment + (start 65.2 102.319998) + (end 65.409999 102.109999) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "ad2404c6-4ebc-4c59-b4a0-c769f8c853bf") + ) + (segment + (start 64.044999 72.344999) + (end 64.1 72.4) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "ade271db-05bf-4376-8f80-56d1f37eb279") + ) + (segment + (start 65.2 95.100002) + (end 65.409999 95.310001) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "ae6b057a-8520-4469-8c04-e1544917a44f") + ) + (segment + (start 65.2 95.52) + (end 65.2 102.319998) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "b1c9b65b-80b5-4113-9a9c-1b6fb2c1c939") + ) + (segment + (start 65.2 81.7) + (end 67.1 79.8) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "b413ae81-6cdf-4dbb-8fe0-87b77f1bd3d0") + ) + (segment + (start 65.409999 89.109999) + (end 65.2 89.319998) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "b8c3b962-07e0-448f-b262-3034538a3e93") + ) + (segment + (start 64.1 70.1) + (end 64.1 72.4) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "bbbe638a-e56f-4270-af80-e1e96cce71e8") + ) + (segment + (start 66.305 74.595) + (end 66.3 74.6) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "c5c43eae-8a34-43c6-832a-dc49bf5c56de") + ) + (segment + (start 60 129.45) + (end 62.65 129.45) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "c657675e-8deb-40bb-80e5-5beec789b8d6") + ) + (segment + (start 65.2 114) + (end 67.219998 114) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "c74fc314-66d8-4de7-ba0f-a8d825b92c4d") + ) + (segment + (start 65.719998 101.8) + (end 69.1 101.8) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "cc28128d-dda5-4a0d-848a-18ff95d24656") + ) + (segment + (start 58 67.25) + (end 61.25 67.25) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "ccda9c76-c57b-44a6-8d1b-073f6f0dc746") + ) + (segment + (start 66 74.6) + (end 66 73.9) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "ce929668-cd7e-4f28-a8b4-132607aa94dc") + ) + (segment + (start 69.2 77.7) + (end 67.1 79.8) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "df13ab82-8ece-41c7-9c9d-be8ec03b21c5") + ) + (segment + (start 65.409999 95.310001) + (end 65.999998 95.9) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "dfec3e8d-8c25-49f6-a37d-8d2d914dbfd2") + ) + (segment + (start 58 67.25) + (end 58 69.75) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "e13e1f10-5db0-4724-9b61-b42e7e4e1d4a") + ) + (segment + (start 58.045001 74.795001) + (end 63.804999 74.795001) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "e2546db5-a1db-4f9e-8034-a00a080f8427") + ) + (segment + (start 58 55.1) + (end 58 67.25) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "ea6e2566-2683-41e4-8014-dff521dc4537") + ) + (segment + (start 67.44 71.94) + (end 67.44 73.295) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "ee8c7a3b-1896-41b4-9450-5834bc1af06d") + ) + (segment + (start 62.65 129.45) + (end 65.2 126.9) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "f6e556b2-bac9-4e15-9a71-952ab3e508d1") + ) + (segment + (start 65.2 126.3) + (end 65.2 119.8) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "f782812e-41f5-4fb0-b703-4162c93716f8") + ) + (segment + (start 71.5 77.7) + (end 69.2 77.7) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "fad7036b-9191-4ff4-954d-14b31d22be7b") + ) + (segment + (start 71.695 76.545) + (end 71.695 77.505) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "fd1953ec-65e6-420d-ab5c-9d7fa82aab97") + ) + (segment + (start 58 72.5) + (end 58 74.4) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "fe601422-18d3-4f37-bb00-5caa5362248b") + ) + (segment + (start 66.1 89.8) + (end 65.409999 89.109999) + (width 1) + (layer "F.Cu") + (net 1) + (uuid "ff11fd62-fa45-44b4-8ae9-a5104aab9f02") + ) + (segment + (start 66.255 75.245) + (end 66 74.99) + (width 0.25) + (layer "F.Cu") + (net 1) + (uuid "ff863c04-3a15-420e-9bda-1991f8da8948") + ) + (via + (at 58 53.5) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 1) + (uuid "983c6f9b-ab5a-42af-bd5a-759d76f91388") + ) + (via + (at 58 43.75) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 1) + (uuid "a9a939f5-10d0-414e-b2e4-40fdea93f675") + ) + (via + (at 58 54.5) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 1) + (uuid "b9fd7874-550d-4b45-bf4e-6567fdb916af") + ) + (via + (at 58 41.25) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 1) + (uuid "edf14a6b-0d70-4db0-9e28-784d655ee5be") + ) + (via + (at 58 52.5) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 1) + (uuid "f0786ee3-a048-405f-8056-d584552fedf1") + ) + (via + (at 58 42.5) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 1) + (uuid "f0eaad98-d205-41c4-a0e6-ff5881df4ae0") + ) + (segment + (start 58 53.5) + (end 58 54.5) + (width 1) + (layer "B.Cu") + (net 1) + (uuid "00000000-0000-0000-0000-00006154ef99") + ) + (segment + (start 58 52.5) + (end 58 53.5) + (width 1) + (layer "B.Cu") + (net 1) + (uuid "00000000-0000-0000-0000-00006154ef9b") + ) + (segment + (start 58 41.25) + (end 58 52.5) + (width 1) + (layer "B.Cu") + (net 1) + (uuid "40b56ce4-b09f-4e90-85cf-ab6bc76787eb") + ) + (segment + (start 85.6 116.9) + (end 85.6 118.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b2b0") + ) + (segment + (start 89.6 116.9) + (end 87.6 116.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b2bc") + ) + (segment + (start 87.6 114.9) + (end 89.6 114.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b2c8") + ) + (segment + (start 83.6 114.9) + (end 85.6 114.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b2d4") + ) + (segment + (start 79.6 114.9) + (end 81.6 114.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b2e0") + ) + (segment + (start 75.6 114.9) + (end 77.6 114.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b2ec") + ) + (segment + (start 71.6 114.9) + (end 73.6 114.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b2f8") + ) + (segment + (start 69.6 112.9) + (end 69.6 114.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b304") + ) + (segment + (start 73.6 112.9) + (end 71.6 112.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b310") + ) + (segment + (start 77.6 112.9) + (end 75.6 112.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b31c") + ) + (segment + (start 81.6 112.9) + (end 79.6 112.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b328") + ) + (segment + (start 85.6 112.9) + (end 83.6 112.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b334") + ) + (segment + (start 107.6 97.4) + (end 108.6 97.4) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b445") + ) + (segment + (start 105.6 97.4) + (end 106.6 97.4) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b451") + ) + (segment + (start 103.6 97.4) + (end 104.6 97.4) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b45d") + ) + (segment + (start 101.6 97.4) + (end 102.6 97.4) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b469") + ) + (segment + (start 99.6 97.4) + (end 100.6 97.4) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b475") + ) + (segment + (start 97.6 97.4) + (end 98.6 97.4) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b481") + ) + (segment + (start 87.6 126.9) + (end 89.6 126.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b487") + ) + (segment + (start 85.6 124.9) + (end 85.6 126.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b493") + ) + (segment + (start 89.6 124.9) + (end 87.6 124.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b49f") + ) + (segment + (start 87.6 122.9) + (end 89.6 122.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b4ab") + ) + (segment + (start 85.6 120.9) + (end 85.6 122.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b4b7") + ) + (segment + (start 89.6 120.9) + (end 87.6 120.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b4c3") + ) + (segment + (start 87.6 118.9) + (end 89.6 118.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b4cf") + ) + (segment + (start 96.6 99.4) + (end 95.6 99.4) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b53e") + ) + (segment + (start 81.3 93.2) + (end 82.6 93.2) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b54d") + ) + (segment + (start 101.14 63.46) + (end 101.1 63.5) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b559") + ) + (segment + (start 102.21 63.46) + (end 101.14 63.46) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b55c") + ) + (segment + (start 95.64 42.14) + (end 95.6 42.1) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b562") + ) + (segment + (start 98.06 42.14) + (end 95.64 42.14) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b565") + ) + (segment + (start 110.65 45.25) + (end 110.6 45.3) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b56b") + ) + (segment + (start 111.8 45.25) + (end 110.65 45.25) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b56e") + ) + (segment + (start 126.6 44.2) + (end 126.6 45.35) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b574") + ) + (segment + (start 64.2 77.35) + (end 64.2 78.7) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b57a") + ) + (segment + (start 92.05 104.8) + (end 90.2 104.8) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b5bc") + ) + (segment + (start 69.6 106.9) + (end 69.6 108.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b607") + ) + (segment + (start 103.6 99.9) + (end 103.6 100.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b652") + ) + (segment + (start 105.6 99.9) + (end 104.6 99.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b65e") + ) + (segment + (start 107.6 99.9) + (end 106.6 99.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b66a") + ) + (segment + (start 107.6 100.9) + (end 108.6 100.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b676") + ) + (segment + (start 105.6 100.9) + (end 106.6 100.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b682") + ) + (segment + (start 104.6 101.9) + (end 104.6 100.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b68e") + ) + (segment + (start 94.4 106.2) + (end 94.4 107.5) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b6d0") + ) + (segment + (start 94.4 108.8) + (end 94.3 108.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b6e8") + ) + (segment + (start 94.3 108.9) + (end 92.5 108.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b6eb") + ) + (segment + (start 106.6 101.9) + (end 105.6 101.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b745") + ) + (segment + (start 108.6 101.9) + (end 107.6 101.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b751") + ) + (segment + (start 107.6 102.9) + (end 108.6 102.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b75d") + ) + (segment + (start 105.6 102.9) + (end 106.6 102.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b769") + ) + (segment + (start 89.6 98.4) + (end 87.6 98.4) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b79f") + ) + (segment + (start 89.6 98.4) + (end 88.6 98.4) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b7a8") + ) + (segment + (start 94.6 98.4) + (end 93.6 98.4) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b7b1") + ) + (segment + (start 96.6 98.4) + (end 95.6 98.4) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b7bd") + ) + (segment + (start 97.6 97.4) + (end 97.6 98.4) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b7c9") + ) + (segment + (start 79.61 129.99) + (end 79.65 129.99) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b9a3") + ) + (segment + (start 79.6 130) + (end 79.61 129.99) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b9a9") + ) + (segment + (start 89.6 112.9) + (end 87.6 112.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70bc37") + ) + (segment + (start 87.6 110.9) + (end 89.6 110.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70bc43") + ) + (segment + (start 83.6 110.9) + (end 85.6 110.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70bc4f") + ) + (segment + (start 79.6 110.9) + (end 81.6 110.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70bc5b") + ) + (segment + (start 75.6 110.9) + (end 77.6 110.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70bc67") + ) + (segment + (start 71.6 110.9) + (end 73.6 110.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70bc73") + ) + (segment + (start 69.6 108.9) + (end 69.6 110.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70bc7f") + ) + (segment + (start 104.6 96.4) + (end 105.6 96.4) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c05a") + ) + (segment + (start 102.6 96.4) + (end 103.6 96.4) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c066") + ) + (segment + (start 100.6 96.4) + (end 101.6 96.4) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c072") + ) + (segment + (start 98.6 96.4) + (end 99.6 96.4) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c07e") + ) + (segment + (start 96.6 96.4) + (end 97.6 96.4) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c08a") + ) + (segment + (start 94.6 96.4) + (end 95.6 96.4) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c096") + ) + (segment + (start 92.6 96.4) + (end 93.6 96.4) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c0a2") + ) + (segment + (start 90.6 96.4) + (end 91.6 96.4) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c0ae") + ) + (segment + (start 88.6 96.4) + (end 89.6 96.4) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c0ba") + ) + (segment + (start 65.3 50.8) + (end 65.3 52.1) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c1c2") + ) + (segment + (start 76.6 44.69) + (end 76.6 45.9) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c288") + ) + (segment + (start 71.695 75.245) + (end 70.03375 75.245) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c28b") + ) + (segment + (start 70.03375 75.245) + (end 70.0025 75.27625) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c291") + ) + (segment + (start 126.1 57.9375) + (end 126.8625 57.9375) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c297") + ) + (segment + (start 126.8625 57.9375) + (end 127 57.8) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c29a") + ) + (segment + (start 121.14 54.46) + (end 121.19 54.46) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c2a0") + ) + (segment + (start 121.19 54.46) + (end 122.7875 52.8625) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c2a3") + ) + (segment + (start 122.7875 52.8625) + (end 124.35 52.8625) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c2a6") + ) + (segment + (start 112.1375 56.6) + (end 112.1375 56.0375) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c2a9") + ) + (segment + (start 112.1375 56.0375) + (end 111.7 55.6) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c2ac") + ) + (segment + (start 100.9 45.1125) + (end 101.3125 45.1125) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c2b2") + ) + (segment + (start 95.7 104.7) + (end 95.7 106.2) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c5d9") + ) + (segment + (start 95.6 97.4) + (end 96.6 97.4) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70ca83") + ) + (segment + (start 93.6 97.4) + (end 94.6 97.4) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70ca8f") + ) + (segment + (start 91.6 97.4) + (end 92.6 97.4) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70ca9b") + ) + (segment + (start 89.6 97.4) + (end 90.6 97.4) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70caa7") + ) + (segment + (start 87.6 97.4) + (end 88.6 97.4) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cab3") + ) + (segment + (start 91.6 98.4) + (end 90.6 98.4) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cae6") + ) + (segment + (start 92.6 99.4) + (end 91.6 99.4) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70caf2") + ) + (segment + (start 94.6 99.4) + (end 93.6 99.4) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cafe") + ) + (segment + (start 91.75 130.05) + (end 91.75 129.99) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cb76") + ) + (segment + (start 91.7 130.1) + (end 91.75 130.05) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cb7c") + ) + (segment + (start 101.3125 45.1125) + (end 101.85 45.65) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd11") + ) + (segment + (start 100.9 57.9375) + (end 100.3875 57.9375) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd17") + ) + (segment + (start 100.3875 57.9375) + (end 99.85 57.4) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd1a") + ) + (segment + (start 99 98.8125) + (end 98.3125 98.8125) + (width 0.2) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd20") + ) + (segment + (start 98.3125 98.8125) + (end 98.3 98.8) + (width 0.2) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd26") + ) + (segment + (start 79 50.9) + (end 79 50.6) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd3b") + ) + (segment + (start 79 50.6) + (end 78.1 49.7) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd3e") + ) + (segment + (start 78.4 52.9) + (end 79 52.3) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd44") + ) + (segment + (start 79 52.3) + (end 79 50.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd47") + ) + (segment + (start 78.3875 52.9) + (end 78.4 52.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd4a") + ) + (segment + (start 76.8 78.5) + (end 76.8 77.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd4d") + ) + (segment + (start 76.8 77.9) + (end 75.8 76.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd50") + ) + (segment + (start 75.25 75.9) + (end 75.25 76.35) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd53") + ) + (segment + (start 75.25 76.35) + (end 75.8 76.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd56") + ) + (segment + (start 92.8 67.5) + (end 92.1 67.5) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd5c") + ) + (segment + (start 92.1 67.5) + (end 91.3 66.7) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd5f") + ) + (segment + (start 97.0625 57.9) + (end 97.0625 58.7625) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd65") + ) + (segment + (start 97.0625 58.7625) + (end 97.1 58.8) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd68") + ) + (segment + (start 170.2 50.4) + (end 169.95 50.65) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd71") + ) + (segment + (start 169.95 50.65) + (end 169.1 50.65) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd74") + ) + (segment + (start 180.85 45.9) + (end 180.85 44.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd7a") + ) + (segment + (start 132.1 55.75) + (end 131.15 55.75) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd7d") + ) + (segment + (start 131.15 55.75) + (end 131.1 55.8) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd80") + ) + (segment + (start 92.8 104.05) + (end 92.8 104.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd86") + ) + (segment + (start 92.8 103.55) + (end 91.45 103.55) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd89") + ) + (segment + (start 92.8 104.05) + (end 91.55 104.05) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd8c") + ) + (segment + (start 73.0025 48.63625) + (end 74.16125 48.63625) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd8f") + ) + (segment + (start 74.16125 48.63625) + (end 74.175 48.65) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd95") + ) + (segment + (start 106.6 96.4) + (end 107.6 96.4) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cdad") + ) + (segment + (start 70.5 54.8) + (end 71.5 54.8) + (width 1) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-000061e592d2") + ) + (segment + (start 71.5 54.8) + (end 72.4 54.8) + (width 1) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-000061e592d4") + ) + (segment + (start 72.4 54.8) + (end 73.2 54.8) + (width 1) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-000061e592d6") + ) + (segment + (start 73.2 54.8) + (end 74.2 54.8) + (width 1) + (layer "F.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-000061e592d8") + ) + (segment + (start 73.8 95.05) + (end 75.65 95.05) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "0aaa1b9d-9c85-4894-9353-845cf3bf0a1a") + ) + (segment + (start 75.65 95.05) + (end 75.7 95) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "0b447d38-f49e-42e8-b985-28da10c3e6d7") + ) + (segment + (start 67.44 77.46) + (end 67.4 77.5) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "0be47f5e-8728-4813-9da5-3e9b67d971d3") + ) + (segment + (start 164.7 40.125) + (end 164.7 41.3) + (width 0.2) + (layer "F.Cu") + (net 2) + (uuid "107b3863-6510-45fe-8193-4c5f49adf12b") + ) + (segment + (start 86.5 66) + (end 86.5 67.25) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "1ad7167c-d842-43e1-aa03-616956653f99") + ) + (segment + (start 91.55 104.05) + (end 91.3 103.8) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "2786f092-7272-42cd-a433-3addaa236d6d") + ) + (segment + (start 73.9 67.1) + (end 75.4 67.1) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "2d665c4d-1437-426f-b9cd-c53451fe5b1a") + ) + (segment + (start 71.305 63.9) + (end 71.305 65.405) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "2e68d109-cc4d-465c-aef0-0344d11ba114") + ) + (segment + (start 80.4545 69.2912) + (end 80.4799 69.2658) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "37d3bf2b-1361-43a6-a660-8e584912f573") + ) + (segment + (start 68.7925 52.392502) + (end 68.799998 52.4) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "561099e0-143b-4476-90ab-c417c91b1a04") + ) + (segment + (start 159.75 59.5375) + (end 159.75 60.75) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "6c1254ea-bcca-4e9f-8154-57ba0c018bda") + ) + (segment + (start 75.45 69.1776) + (end 75.4507 69.1769) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "72eb8031-447e-41e3-aaa5-59f792bf0a9e") + ) + (segment + (start 92.3 105.1) + (end 92.6 105.1) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "7876f78a-9f02-4f4c-94e9-30073256a9eb") + ) + (segment + (start 80.4545 70.8066) + (end 80.4545 69.2912) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "7a4a755d-2ace-41c1-b10d-7757788b8203") + ) + (segment + (start 75.45 70.5) + (end 75.45 69.1776) + (width 0.5) + (layer "F.Cu") + (net 2) + (uuid "85ae0676-f861-4514-b9fb-20bc3f549861") + ) + (segment + (start 92.6 105.1) + (end 92.8 104.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "9b587819-d52a-49cb-9dab-e60a2c588bcd") + ) + (segment + (start 174.2 52.225) + (end 174.2 54) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "b584625e-256c-4476-88cd-af81c321d26a") + ) + (segment + (start 92.05 104.85) + (end 92.3 105.1) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "bd2fcea9-2d79-4197-9d49-eeb248b865cc") + ) + (segment + (start 92.05 104.8) + (end 92.05 104.85) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "bde9786c-a7cc-4f48-8142-cf2173909ee0") + ) + (segment + (start 91.3 103.7) + (end 91.45 103.55) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "bed534f0-4c66-412a-82f7-4ba52b42ed9a") + ) + (segment + (start 68.45 54.8) + (end 70.5 54.8) + (width 1) + (layer "F.Cu") + (net 2) + (uuid "bede1092-872b-4e49-9d3a-d552aec96b57") + ) + (segment + (start 67.44 76.545) + (end 67.44 77.46) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "cc2cc001-3014-4352-a9f3-8f23cffbd334") + ) + (segment + (start 91.3 103.8) + (end 91.3 103.7) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "d0742770-7d3f-454e-b2d5-217f8c198464") + ) + (segment + (start 68.7925 49.93625) + (end 68.7925 52.392502) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "e2543627-5409-4a7b-8859-04e0792eebb7") + ) + (segment + (start 170.2375 39.2) + (end 171.8 39.2) + (width 0.2) + (layer "F.Cu") + (net 2) + (uuid "f57881b5-c9c9-4bcf-be4b-dd8cfd505873") + ) + (segment + (start 176 52.1875) + (end 176 53.9) + (width 0.25) + (layer "F.Cu") + (net 2) + (uuid "fccd36d1-d574-415c-88e5-a02709365d94") + ) + (via + (at 87.6 118.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b2ad") + ) + (via + (at 85.6 118.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b2b3") + ) + (via + (at 85.6 116.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b2b9") + ) + (via + (at 87.6 116.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b2bf") + ) + (via + (at 89.6 116.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b2c5") + ) + (via + (at 89.6 114.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b2cb") + ) + (via + (at 87.6 114.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b2d1") + ) + (via + (at 85.6 114.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b2d7") + ) + (via + (at 83.6 114.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b2dd") + ) + (via + (at 81.6 114.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b2e3") + ) + (via + (at 79.6 114.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b2e9") + ) + (via + (at 77.6 114.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b2ef") + ) + (via + (at 75.6 114.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b2f5") + ) + (via + (at 73.6 114.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b2fb") + ) + (via + (at 71.6 114.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b301") + ) + (via + (at 69.6 114.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b307") + ) + (via + (at 69.6 112.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b30d") + ) + (via + (at 71.6 112.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b313") + ) + (via + (at 73.6 112.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b319") + ) + (via + (at 75.6 112.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b31f") + ) + (via + (at 77.6 112.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b325") + ) + (via + (at 79.6 112.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b32b") + ) + (via + (at 81.6 112.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b331") + ) + (via + (at 83.6 112.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b337") + ) + (via + (at 108.6 97.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b448") + ) + (via + (at 107.6 97.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b44e") + ) + (via + (at 106.6 97.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b454") + ) + (via + (at 105.6 97.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b45a") + ) + (via + (at 104.6 97.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b460") + ) + (via + (at 103.6 97.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b466") + ) + (via + (at 102.6 97.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b46c") + ) + (via + (at 101.6 97.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b472") + ) + (via + (at 100.6 97.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b478") + ) + (via + (at 99.6 97.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b47e") + ) + (via + (at 98.6 97.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b484") + ) + (via + (at 89.6 126.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b48a") + ) + (via + (at 87.6 126.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b490") + ) + (via + (at 85.6 126.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b496") + ) + (via + (at 85.6 124.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b49c") + ) + (via + (at 87.6 124.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b4a2") + ) + (via + (at 89.6 124.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b4a8") + ) + (via + (at 89.6 122.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b4ae") + ) + (via + (at 87.6 122.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b4b4") + ) + (via + (at 85.6 122.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b4ba") + ) + (via + (at 85.6 120.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b4c0") + ) + (via + (at 87.6 120.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b4c6") + ) + (via + (at 89.6 120.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b4cc") + ) + (via + (at 89.6 118.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b4d2") + ) + (via + (at 94.6 99.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b53b") + ) + (via + (at 95.6 99.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b541") + ) + (via + (at 96.6 99.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b547") + ) + (via + (at 97.6 99.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b54a") + ) + (via + (at 82.6 93.2) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b550") + ) + (via + (at 101.1 63.5) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b55f") + ) + (via + (at 95.6 42.1) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b568") + ) + (via + (at 110.6 45.3) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b571") + ) + (via + (at 126.6 44.2) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b577") + ) + (via + (at 64.2 78.7) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b57d") + ) + (via + (at 95.4 102.2) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b5b3") + ) + (via + (at 94.6 103.2) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b5b6") + ) + (via + (at 95.4 103.2) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b5b9") + ) + (via + (at 71.6 108.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b604") + ) + (via + (at 69.6 108.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b60a") + ) + (via + (at 69.6 106.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b610") + ) + (via + (at 71.6 106.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b616") + ) + (via + (at 89.6 106.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b64c") + ) + (via + (at 103.6 100.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b655") + ) + (via + (at 103.6 99.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b65b") + ) + (via + (at 104.6 99.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b661") + ) + (via + (at 105.6 99.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b667") + ) + (via + (at 106.6 99.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b66d") + ) + (via + (at 107.6 99.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b673") + ) + (via + (at 108.6 100.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b679") + ) + (via + (at 107.6 100.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b67f") + ) + (via + (at 106.6 100.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b685") + ) + (via + (at 105.6 100.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b68b") + ) + (via + (at 104.6 100.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b691") + ) + (via + (at 95.7 106.2) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b6c7") + ) + (via + (at 94.4 106.2) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b6cd") + ) + (via + (at 94.4 107.5) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b6d3") + ) + (via + (at 94.4 108.8) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b6e5") + ) + (via + (at 92.5 108.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b6ee") + ) + (via + (at 94.4 104.7) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b6fa") + ) + (via + (at 69.1775 75.98875) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b709") + ) + (via + (at 70.0025 75.98875) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b70c") + ) + (via + (at 69.1775 75.27625) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b70f") + ) + (via + (at 69.1775 74.56375) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b712") + ) + (via + (at 70 74.56) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b715") + ) + (via + (at 69.1775 73.85125) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b718") + ) + (via + (at 70.0025 73.85125) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b71b") + ) + (via + (at 104.6 101.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b742") + ) + (via + (at 105.6 101.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b748") + ) + (via + (at 106.6 101.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b74e") + ) + (via + (at 107.6 101.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b754") + ) + (via + (at 108.6 101.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b75a") + ) + (via + (at 108.6 102.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b760") + ) + (via + (at 107.6 102.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b766") + ) + (via + (at 106.6 102.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b76c") + ) + (via + (at 105.6 102.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b76f") + ) + (via + (at 87.6 98.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b7a2") + ) + (via + (at 88.6 98.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b7a5") + ) + (via + (at 92.6 98.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b7ae") + ) + (via + (at 93.6 98.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b7b4") + ) + (via + (at 94.6 98.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b7ba") + ) + (via + (at 95.6 98.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b7c0") + ) + (via + (at 96.6 98.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b7c6") + ) + (via + (at 97.6 98.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b7cc") + ) + (via + (at 79.6 130) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b9a6") + ) + (via + (at 73.65 129.99) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b9ac") + ) + (via + (at 66.7 129.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b9af") + ) + (via + (at 85.6 112.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70bc34") + ) + (via + (at 87.6 112.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70bc3a") + ) + (via + (at 89.6 112.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70bc40") + ) + (via + (at 89.6 110.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70bc46") + ) + (via + (at 87.6 110.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70bc4c") + ) + (via + (at 85.6 110.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70bc52") + ) + (via + (at 83.6 110.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70bc58") + ) + (via + (at 81.6 110.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70bc5e") + ) + (via + (at 79.6 110.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70bc64") + ) + (via + (at 77.6 110.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70bc6a") + ) + (via + (at 75.6 110.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70bc70") + ) + (via + (at 73.6 110.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70bc76") + ) + (via + (at 71.6 110.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70bc7c") + ) + (via + (at 69.6 110.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70bc82") + ) + (via + (at 89.6 108.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70bc8e") + ) + (via + (at 106.6 96.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c057") + ) + (via + (at 105.6 96.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c05d") + ) + (via + (at 104.6 96.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c063") + ) + (via + (at 103.6 96.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c069") + ) + (via + (at 102.6 96.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c06f") + ) + (via + (at 101.6 96.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c075") + ) + (via + (at 100.6 96.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c07b") + ) + (via + (at 99.6 96.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c081") + ) + (via + (at 98.6 96.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c087") + ) + (via + (at 97.6 96.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c08d") + ) + (via + (at 96.6 96.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c093") + ) + (via + (at 95.6 96.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c099") + ) + (via + (at 94.6 96.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c09f") + ) + (via + (at 93.6 96.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c0a5") + ) + (via + (at 92.6 96.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c0ab") + ) + (via + (at 91.6 96.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c0b1") + ) + (via + (at 90.6 96.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c0b7") + ) + (via + (at 89.6 96.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c0bd") + ) + (via + (at 88.6 96.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c0c3") + ) + (via + (at 87.6 96.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c0c9") + ) + (via + (at 65.3 52.1) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c1c5") + ) + (via + (at 94.6 101.2) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c1c8") + ) + (via + (at 95.4 101.2) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c1cb") + ) + (via + (at 94.6 102.2) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c1ce") + ) + (via + (at 76.6 45.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c285") + ) + (via + (at 70.0025 75.27625) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c28e") + ) + (via + (at 88.7 104.7) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c294") + ) + (via + (at 127 57.8) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c29d") + ) + (via + (at 111.7 55.6) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c2af") + ) + (via + (at 73.7 85.8) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c55e") + ) + (via + (at 79.65 85.81) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c561") + ) + (via + (at 85.6 85.8) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c56a") + ) + (via + (at 91.75 85.81) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c56d") + ) + (via + (at 97.7 85.8) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c576") + ) + (via + (at 103.75 85.81) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c579") + ) + (via + (at 110.79 85.81) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c57c") + ) + (via + (at 110.79 92.85) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c57f") + ) + (via + (at 103.75 129.99) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c58b") + ) + (via + (at 68.33 85.81) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c594") + ) + (via + (at 66.61 87.53) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c59d") + ) + (via + (at 109.07 85.81) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c5a6") + ) + (via + (at 110.79 87.53) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c5af") + ) + (via + (at 110.79 128.27) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c5b8") + ) + (via + (at 109.07 129.99) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c5c1") + ) + (via + (at 66.61 128.27) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c5ca") + ) + (via + (at 68.33 129.99) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c5d3") + ) + (via + (at 95.7 104.7) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c5d6") + ) + (via + (at 97.6 97.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70ca80") + ) + (via + (at 96.6 97.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70ca86") + ) + (via + (at 95.6 97.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70ca8c") + ) + (via + (at 94.6 97.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70ca92") + ) + (via + (at 93.6 97.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70ca98") + ) + (via + (at 92.6 97.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70ca9e") + ) + (via + (at 91.6 97.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70caa4") + ) + (via + (at 90.6 97.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70caaa") + ) + (via + (at 89.6 97.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cab0") + ) + (via + (at 88.6 97.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cab6") + ) + (via + (at 87.6 97.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cabc") + ) + (via + (at 89.6 98.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cae3") + ) + (via + (at 90.6 98.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cae9") + ) + (via + (at 91.6 98.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70caef") + ) + (via + (at 91.6 99.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70caf5") + ) + (via + (at 92.6 99.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cafb") + ) + (via + (at 93.6 99.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cb01") + ) + (via + (at 110.8 98.8) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cb52") + ) + (via + (at 110.79 104.85) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cb55") + ) + (via + (at 110.8 111) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cb5e") + ) + (via + (at 110.79 116.95) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cb61") + ) + (via + (at 110.8 123) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cb6a") + ) + (via + (at 110.79 129.99) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cb6d") + ) + (via + (at 97.75 129.99) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cb73") + ) + (via + (at 91.7 130.1) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cb79") + ) + (via + (at 85.65 129.99) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cb7f") + ) + (via + (at 66.5 117) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cbac") + ) + (via + (at 66.61 110.95) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cbaf") + ) + (via + (at 66.6 104.8) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cbb8") + ) + (via + (at 66.61 98.85) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cbbb") + ) + (via + (at 66.6 92.8) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cbc4") + ) + (via + (at 66.61 85.81) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cbc7") + ) + (via + (at 101.85 45.65) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd14") + ) + (via + (at 99.85 57.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd1d") + ) + (via + (at 78.1 49.7) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd41") + ) + (via + (at 75.8 76.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd59") + ) + (via + (at 91.3 66.7) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd62") + ) + (via + (at 97.1 58.8) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd6b") + ) + (via + (at 170.2 50.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd6e") + ) + (via + (at 180.85 45.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd77") + ) + (via + (at 131.1 55.8) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd83") + ) + (via + (at 74.175 48.65) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cd92") + ) + (via + (at 108.6 96.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cdaa") + ) + (via + (at 107.6 96.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cdb0") + ) + (via + (at 66.61 122.95) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70ceaf") + ) + (via + (at 57.3 131.1) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00006155394b") + ) + (via + (at 58.3 131.1) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00006155394d") + ) + (via + (at 56.3 132.1) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00006155394f") + ) + (via + (at 57.3 132.1) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-000061553951") + ) + (via + (at 58.3 132.1) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-000061553953") + ) + (via + (at 56.3 133.1) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-000061553955") + ) + (via + (at 57.3 133.1) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-000061553957") + ) + (via + (at 58.3 133.1) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-000061553959") + ) + (via + (at 75.7 95) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "1a583d77-1271-468e-9e6d-48c6b4b96c33") + ) + (via + (at 86.5 67.25) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "228e687f-46bf-4c71-b216-27a36bf502b3") + ) + (via + (at 68.799998 52.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "31d58769-4cff-4557-a551-62670289ca77") + ) + (via + (at 74.2 54.8) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "50383816-a4cc-4b5e-9339-20372903bf5c") + ) + (via + (at 75.4507 69.1769) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "5fd956ea-65d6-43f8-ada9-d42beef6dfb4") + ) + (via + (at 71.305 65.405) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "66f6f596-d133-4b42-be47-c4fe19e2ffad") + ) + (via + (at 171.8 39.2) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "a39bff73-ba40-4b6f-b0a8-69b4aafc2399") + ) + (via + (at 73.3 54.8) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "ab43ca15-9c06-47f9-b257-1383a2b21523") + ) + (via + (at 71.5 54.8) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "ae6839cd-d76e-41ae-9d9d-d53496654de7") + ) + (via + (at 159.75 60.75) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "b71ddef6-c4f1-4638-88a2-70b8198ce713") + ) + (via + (at 75.4 67.1) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "b816ca3f-a882-4972-80a7-12605138b1a3") + ) + (via + (at 70.5 54.8) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "d04e4a25-fea8-400a-b78a-19b8bbedb78b") + ) + (via + (at 174.2 54) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "d0dc6cb1-608d-4c01-bd2e-8bd0c1c4df03") + ) + (via + (at 176 53.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "dbbfe389-3bd0-4aa8-a1bc-1597f4364d65") + ) + (via + (at 56.3 131.1) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "e0e2ca39-d81d-4638-b2d7-b3eff9325a7e") + ) + (via + (at 67.4 77.5) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "e547fe25-99ba-4e40-b44f-26baa2850f1a") + ) + (via + (at 80.4799 69.2658) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "e7c62455-092d-4b40-96ae-88b150e3c5b0") + ) + (via + (at 72.4 54.8) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "eecc54f1-353d-4bbc-bb3a-293df7de7d03") + ) + (via + (at 164.7 41.3) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "fcddc2de-8d05-432b-bb70-fda429d1e840") + ) + (segment + (start 87.6 116.9) + (end 85.6 116.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b2b6") + ) + (segment + (start 89.6 114.9) + (end 89.6 116.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b2c2") + ) + (segment + (start 85.6 114.9) + (end 87.6 114.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b2ce") + ) + (segment + (start 81.6 114.9) + (end 83.6 114.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b2da") + ) + (segment + (start 77.6 114.9) + (end 79.6 114.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b2e6") + ) + (segment + (start 73.6 114.9) + (end 75.6 114.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b2f2") + ) + (segment + (start 69.6 114.9) + (end 71.6 114.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b2fe") + ) + (segment + (start 71.6 112.9) + (end 69.6 112.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b30a") + ) + (segment + (start 75.6 112.9) + (end 73.6 112.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b316") + ) + (segment + (start 79.6 112.9) + (end 77.6 112.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b322") + ) + (segment + (start 83.6 112.9) + (end 81.6 112.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b32e") + ) + (segment + (start 87.6 112.9) + (end 85.6 112.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b33a") + ) + (segment + (start 106.6 97.4) + (end 107.6 97.4) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b44b") + ) + (segment + (start 104.6 97.4) + (end 105.6 97.4) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b457") + ) + (segment + (start 102.6 97.4) + (end 103.6 97.4) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b463") + ) + (segment + (start 100.6 97.4) + (end 101.6 97.4) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b46f") + ) + (segment + (start 98.6 97.4) + (end 99.6 97.4) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b47b") + ) + (segment + (start 85.6 126.9) + (end 87.6 126.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b48d") + ) + (segment + (start 87.6 124.9) + (end 85.6 124.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b499") + ) + (segment + (start 89.6 122.9) + (end 89.6 124.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b4a5") + ) + (segment + (start 85.6 122.9) + (end 87.6 122.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b4b1") + ) + (segment + (start 87.6 120.9) + (end 85.6 120.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b4bd") + ) + (segment + (start 89.6 118.9) + (end 89.6 120.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b4c9") + ) + (segment + (start 85.6 118.9) + (end 87.6 118.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b4d5") + ) + (segment + (start 95.6 99.4) + (end 94.6 99.4) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b538") + ) + (segment + (start 97.6 99.4) + (end 96.6 99.4) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b544") + ) + (segment + (start 71.6 106.9) + (end 69.6 106.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b60d") + ) + (segment + (start 104.6 99.9) + (end 103.6 99.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b658") + ) + (segment + (start 106.6 99.9) + (end 105.6 99.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b664") + ) + (segment + (start 108.6 100.9) + (end 107.6 99.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b670") + ) + (segment + (start 106.6 100.9) + (end 107.6 100.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b67c") + ) + (segment + (start 104.6 100.9) + (end 105.6 100.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b688") + ) + (segment + (start 105.6 101.9) + (end 104.6 101.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b694") + ) + (segment + (start 95.7 106.2) + (end 94.4 106.2) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b6ca") + ) + (segment + (start 92.5 108.9) + (end 90.5 106.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b6f1") + ) + (segment + (start 90.5 106.9) + (end 89.6 106.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b6f4") + ) + (segment + (start 94.4 104.7) + (end 95.7 104.7) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b6fd") + ) + (segment + (start 107.6 101.9) + (end 106.6 101.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b74b") + ) + (segment + (start 108.6 102.9) + (end 108.6 101.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b757") + ) + (segment + (start 106.6 102.9) + (end 107.6 102.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b763") + ) + (segment + (start 93.6 98.4) + (end 92.6 98.4) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b7ab") + ) + (segment + (start 95.6 98.4) + (end 94.6 98.4) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b7b7") + ) + (segment + (start 97.6 98.4) + (end 96.6 98.4) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70b7c3") + ) + (segment + (start 89.6 110.9) + (end 89.6 112.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70bc3d") + ) + (segment + (start 85.6 110.9) + (end 87.6 110.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70bc49") + ) + (segment + (start 81.6 110.9) + (end 83.6 110.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70bc55") + ) + (segment + (start 77.6 110.9) + (end 79.6 110.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70bc61") + ) + (segment + (start 73.6 110.9) + (end 75.6 110.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70bc6d") + ) + (segment + (start 69.6 110.9) + (end 71.6 110.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70bc79") + ) + (segment + (start 89.6 108.9) + (end 89.6 111.1) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70bc85") + ) + (segment + (start 89.6 108.8) + (end 89.6 108.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70bc88") + ) + (segment + (start 69.6 108.9) + (end 71.6 108.9) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70bcc1") + ) + (segment + (start 105.6 96.4) + (end 106.6 96.4) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c054") + ) + (segment + (start 103.6 96.4) + (end 104.6 96.4) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c060") + ) + (segment + (start 101.6 96.4) + (end 102.6 96.4) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c06c") + ) + (segment + (start 99.6 96.4) + (end 100.6 96.4) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c078") + ) + (segment + (start 97.6 96.4) + (end 98.6 96.4) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c084") + ) + (segment + (start 95.6 96.4) + (end 96.6 96.4) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c090") + ) + (segment + (start 93.6 96.4) + (end 94.6 96.4) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c09c") + ) + (segment + (start 91.6 96.4) + (end 92.6 96.4) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c0a8") + ) + (segment + (start 89.6 96.4) + (end 90.6 96.4) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c0b4") + ) + (segment + (start 87.6 96.4) + (end 88.6 96.4) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70c0c0") + ) + (segment + (start 96.6 97.4) + (end 97.6 97.4) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70ca7d") + ) + (segment + (start 94.6 97.4) + (end 95.6 97.4) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70ca89") + ) + (segment + (start 92.6 97.4) + (end 93.6 97.4) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70ca95") + ) + (segment + (start 90.6 97.4) + (end 91.6 97.4) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70caa1") + ) + (segment + (start 88.6 97.4) + (end 89.6 97.4) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70caad") + ) + (segment + (start 90.6 98.4) + (end 89.6 98.4) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cae0") + ) + (segment + (start 91.6 99.4) + (end 91.6 98.4) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70caec") + ) + (segment + (start 93.6 99.4) + (end 92.6 99.4) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70caf8") + ) + (segment + (start 107.6 96.4) + (end 108.6 96.4) + (width 0.25) + (layer "B.Cu") + (net 2) + (uuid "00000000-0000-0000-0000-00005f70cda7") + ) + (segment + (start 68.7475 49.28625) + (end 67.41375 49.28625) + (width 0.25) + (layer "F.Cu") + (net 3) + (uuid "00000000-0000-0000-0000-00005f70c231") + ) + (segment + (start 68.7475 47.33625) + (end 67.53625 47.33625) + (width 0.25) + (layer "F.Cu") + (net 3) + (uuid "00000000-0000-0000-0000-00005f70c234") + ) + (segment + (start 68.7925 46.68625) + (end 68.7925 45.6075) + (width 0.25) + (layer "F.Cu") + (net 3) + (uuid "00000000-0000-0000-0000-00005f70c237") + ) + (segment + (start 68.7925 47.98625) + (end 67.71375 47.98625) + (width 0.25) + (layer "F.Cu") + (net 3) + (uuid "00000000-0000-0000-0000-00005f70c23a") + ) + (segment + (start 68.7925 46.68625) + (end 67.71375 46.68625) + (width 0.25) + (layer "F.Cu") + (net 3) + (uuid "00000000-0000-0000-0000-00005f70c23d") + ) + (segment + (start 60.638002 50.71) + (end 60.44 50.71) + (width 1.5) + (layer "F.Cu") + (net 3) + (uuid "0ada491f-7b3a-4275-b2ca-22fca6089023") + ) + (segment + (start 55.36 50.71) + (end 60.44 50.71) + (width 1.5) + (layer "F.Cu") + (net 3) + (uuid "58566856-5539-42fb-a348-d1f63282f371") + ) + (segment + (start 64.15 54.8) + (end 64.15 54.221998) + (width 1.5) + (layer "F.Cu") + (net 3) + (uuid "5e337a7c-5c7e-412e-b445-f14ae21eb616") + ) + (segment + (start 60.44 50.71) + (end 60.79 50.71) + (width 1.5) + (layer "F.Cu") + (net 3) + (uuid "644bbd24-d19c-4ac4-8536-811a45903237") + ) + (segment + (start 63.55 47.95) + (end 65.35 47.95) + (width 1.5) + (layer "F.Cu") + (net 3) + (uuid "a3049de8-f8f1-485d-b5d4-7c1d239712c3") + ) + (segment + (start 60.79 50.71) + (end 63.55 47.95) + (width 1.5) + (layer "F.Cu") + (net 3) + (uuid "bcfc8ebe-3259-407f-9ca0-83b908ed29de") + ) + (segment + (start 64.15 54.221998) + (end 60.638002 50.71) + (width 1.5) + (layer "F.Cu") + (net 3) + (uuid "fff14835-a6f2-47f8-9733-ef3f4514ad5e") + ) + (via + (at 70.485 47.2425) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 3) + (uuid "00000000-0000-0000-0000-00005f70c25b") + ) + (via + (at 71.31 47.2425) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 3) + (uuid "00000000-0000-0000-0000-00005f70c267") + ) + (via + (at 71.31 47.955) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 3) + (uuid "00000000-0000-0000-0000-00005f70c26a") + ) + (via + (at 70.485 47.955) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 3) + (uuid "00000000-0000-0000-0000-00005f70c26d") + ) + (via + (at 70.485 48.6675) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 3) + (uuid "00000000-0000-0000-0000-00005f70c270") + ) + (via + (at 71.31 48.6675) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 3) + (uuid "00000000-0000-0000-0000-00005f70c273") + ) + (via + (at 70.485 49.38) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 3) + (uuid "00000000-0000-0000-0000-00005f70c276") + ) + (via + (at 71.31 49.38) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 3) + (uuid "00000000-0000-0000-0000-00005f70c279") + ) + (via + (at 66 42) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 3) + (uuid "00000000-0000-0000-0000-00006154c374") + ) + (via + (at 64.5 43.5) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 3) + (uuid "00000000-0000-0000-0000-00006154c37a") + ) + (via + (at 66 43.5) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 3) + (uuid "00000000-0000-0000-0000-00006154c37c") + ) + (via + (at 64.5 45) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 3) + (uuid "00000000-0000-0000-0000-00006154c382") + ) + (via + (at 66 45) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 3) + (uuid "00000000-0000-0000-0000-00006154c384") + ) + (via + (at 67.5 45) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 3) + (uuid "00000000-0000-0000-0000-00006154c386") + ) + (via + (at 69 45) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 3) + (uuid "00000000-0000-0000-0000-00006154c388") + ) + (via + (at 64.5 42) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 3) + (uuid "72263aa2-32c4-4252-a768-30b77365cca2") + ) + (segment + (start 111.4 51.9) + (end 129.75 51.9) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "00000000-0000-0000-0000-00005f70c213") + ) + (segment + (start 110.535 51.9) + (end 111.4 51.9) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "00000000-0000-0000-0000-00005f70c216") + ) + (segment + (start 101.9 51.9) + (end 110.535 51.9) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "00000000-0000-0000-0000-00005f70c219") + ) + (segment + (start 100.9 52.1) + (end 101.1 51.9) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "00000000-0000-0000-0000-00005f70c21c") + ) + (segment + (start 101.1 51.9) + (end 101.9 51.9) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "00000000-0000-0000-0000-00005f70c21f") + ) + (segment + (start 100.9 54.1) + (end 100.9 52.1) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "00000000-0000-0000-0000-00005f70c222") + ) + (segment + (start 110.535 54.1) + (end 110.535 51.9) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "00000000-0000-0000-0000-00005f70c225") + ) + (segment + (start 110.535 54.1) + (end 110.535 56.5725) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "00000000-0000-0000-0000-00005f70c6c0") + ) + (segment + (start 110.535 56.5725) + (end 110.5625 56.6) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "00000000-0000-0000-0000-00005f70c6c3") + ) + (segment + (start 100.9 56.3625) + (end 100.9 54.1) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "00000000-0000-0000-0000-00005f70c6c6") + ) + (segment + (start 170.395 48.805) + (end 170.05 49.15) + (width 0.25) + (layer "F.Cu") + (net 4) + (uuid "00000000-0000-0000-0000-00005f70c6c9") + ) + (segment + (start 170.05 49.15) + (end 169.1 49.15) + (width 0.25) + (layer "F.Cu") + (net 4) + (uuid "00000000-0000-0000-0000-00005f70c6cc") + ) + (segment + (start 171.4 48.805) + (end 170.395 48.805) + (width 0.25) + (layer "F.Cu") + (net 4) + (uuid "00000000-0000-0000-0000-00005f70c6cf") + ) + (segment + (start 129.75 51.9) + (end 132.2 51.9) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "00000000-0000-0000-0000-00005f70c6d2") + ) + (segment + (start 132.2 51.9) + (end 144.4 51.9) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "00000000-0000-0000-0000-00005f70c6d5") + ) + (segment + (start 132.1 54.25) + (end 132.1 52) + (width 0.25) + (layer "F.Cu") + (net 4) + (uuid "00000000-0000-0000-0000-00005f70c6d8") + ) + (segment + (start 132.1 52) + (end 132.2 51.9) + (width 0.25) + (layer "F.Cu") + (net 4) + (uuid "00000000-0000-0000-0000-00005f70c6db") + ) + (segment + (start 131.25 54.25) + (end 131.2 54.2) + (width 0.25) + (layer "F.Cu") + (net 4) + (uuid "00000000-0000-0000-0000-00005f70c6de") + ) + (segment + (start 131.2 54.2) + (end 130.405 54.2) + (width 0.25) + (layer "F.Cu") + (net 4) + (uuid "00000000-0000-0000-0000-00005f70c6e1") + ) + (segment + (start 132.1 54.25) + (end 131.25 54.25) + (width 0.25) + (layer "F.Cu") + (net 4) + (uuid "00000000-0000-0000-0000-00005f70c6e4") + ) + (segment + (start 83.4 53.4) + (end 84.9 51.9) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "00000000-0000-0000-0000-00005f70c6f0") + ) + (segment + (start 83.4 70.2) + (end 83.4 53.4) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "00000000-0000-0000-0000-00005f70cba0") + ) + (segment + (start 84.9 51.9) + (end 102 51.9) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "00000000-0000-0000-0000-00005f70cba3") + ) + (segment + (start 73.3 73.9) + (end 73.255 73.945) + (width 0.25) + (layer "F.Cu") + (net 4) + (uuid "3022579f-b1a2-487e-814c-db193073aa97") + ) + (segment + (start 73.3 73.3) + (end 73.3 73.9) + (width 0.25) + (layer "F.Cu") + (net 4) + (uuid "3cad1dda-2f7b-41a1-9458-ef83e7c21ee1") + ) + (segment + (start 71.695 74.595) + (end 73.205 74.595) + (width 0.25) + (layer "F.Cu") + (net 4) + (uuid "404b6548-6540-4b6b-9207-34d947483f74") + ) + (segment + (start 71.695 73.295) + (end 73.295 73.295) + (width 0.25) + (layer "F.Cu") + (net 4) + (uuid "4329fdf5-6250-438d-8659-8ea773b1d1fa") + ) + (segment + (start 68.765 66.265) + (end 68.765 63.675) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "720775db-3021-4d2f-ad19-0d71c433bbc1") + ) + (segment + (start 69.6 67.1) + (end 68.765 66.265) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "7380ac1d-fc0a-40cc-ac6d-59fcc4b4c293") + ) + (segment + (start 71.1 69.4) + (end 71.1 67.1) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "82ca9713-76e4-410d-ab0c-e33db44be4a7") + ) + (segment + (start 71.695 72.405) + (end 71.695 73.295) + (width 0.25) + (layer "F.Cu") + (net 4) + (uuid "88c498c9-2e37-4e34-8c4c-0d92496526fb") + ) + (segment + (start 71.1 69.7) + (end 71.1 69.4) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "9d48f963-1cee-46b7-9262-acdd1f4625f3") + ) + (segment + (start 71.1 71.81) + (end 71.695 72.405) + (width 0.25) + (layer "F.Cu") + (net 4) + (uuid "a0690737-64f9-4087-8003-54fd6b993b40") + ) + (segment + (start 73.255 73.945) + (end 71.695 73.945) + (width 0.25) + (layer "F.Cu") + (net 4) + (uuid "a89026d0-f8d7-4cd0-a895-8f38465ed793") + ) + (segment + (start 73.205 74.595) + (end 73.3 74.5) + (width 0.25) + (layer "F.Cu") + (net 4) + (uuid "acd07a39-e062-4fbc-ae69-cbced1445345") + ) + (segment + (start 71.1 67.1) + (end 69.6 67.1) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "ad08e5d4-999e-4573-a2c5-ea4aea5fe9da") + ) + (segment + (start 73.295 73.295) + (end 73.3 73.3) + (width 0.25) + (layer "F.Cu") + (net 4) + (uuid "df0bab81-f59b-42b7-b223-41ca6ef77aaa") + ) + (segment + (start 73.3 74.5) + (end 73.3 73.9) + (width 0.25) + (layer "F.Cu") + (net 4) + (uuid "dfa09420-4d0e-4048-93d3-d51e6b69552a") + ) + (segment + (start 71.1 69.4) + (end 71.1 71.81) + (width 0.25) + (layer "F.Cu") + (net 4) + (uuid "f53e0c25-3ad3-4343-8fdf-426ce77a04fa") + ) + (segment + (start 173.095 48.805) + (end 171.4 48.805) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "feaa0fb2-4dc3-4764-a4ea-a208103e5101") + ) + (segment + (start 173.3 48.6) + (end 173.095 48.805) + (width 0.5) + (layer "F.Cu") + (net 4) + (uuid "ff80b2f5-c0d2-44a7-836b-42a38032e39a") + ) + (via + (at 173.3 48.6) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 4) + (uuid "00000000-0000-0000-0000-00005f70cb8b") + ) + (via + (at 144.4 51.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 4) + (uuid "00000000-0000-0000-0000-00005f70cb9d") + ) + (segment + (start 173.3 48.6) + (end 173.3 45.189962) + (width 0.5) + (layer "B.Cu") + (net 4) + (uuid "16f851bc-013a-4f65-af4e-e5450f505615") + ) + (segment + (start 155.59999 44.00001) + (end 147.7 51.9) + (width 0.5) + (layer "B.Cu") + (net 4) + (uuid "303eb22a-469d-4eac-a74c-c2b2b61bdb1f") + ) + (segment + (start 173.3 45.189962) + (end 172.110048 44.00001) + (width 0.5) + (layer "B.Cu") + (net 4) + (uuid "3b7c9f35-92fc-4808-8bd2-2bf57c386569") + ) + (segment + (start 147.7 51.9) + (end 144.4 51.9) + (width 0.5) + (layer "B.Cu") + (net 4) + (uuid "e688855d-c369-47b2-be38-e4d599fb4cb6") + ) + (segment + (start 172.110048 44.00001) + (end 155.59999 44.00001) + (width 0.5) + (layer "B.Cu") + (net 4) + (uuid "ed56bbf8-27e4-4e19-8498-d0c02d1da8d1") + ) + (segment + (start 87 102.8) + (end 84.05 102.8) + (width 0.75) + (layer "F.Cu") + (net 5) + (uuid "00000000-0000-0000-0000-00005f70d1a9") + ) + (segment + (start 87.0625 102.8625) + (end 87 102.8) + (width 0.75) + (layer "F.Cu") + (net 5) + (uuid "00000000-0000-0000-0000-00005f70d1ac") + ) + (segment + (start 90.2 102.8625) + (end 87.0625 102.8625) + (width 0.75) + (layer "F.Cu") + (net 5) + (uuid "00000000-0000-0000-0000-00005f70d1af") + ) + (segment + (start 91.15 102.55) + (end 90.9 102.8) + (width 0.25) + (layer "F.Cu") + (net 5) + (uuid "00000000-0000-0000-0000-00005f70d1b2") + ) + (segment + (start 92.8 102.55) + (end 91.15 102.55) + (width 0.25) + (layer "F.Cu") + (net 5) + (uuid "00000000-0000-0000-0000-00005f70d1b5") + ) + (segment + (start 90.9 102.8) + (end 90.2 102.8) + (width 0.25) + (layer "F.Cu") + (net 5) + (uuid "00000000-0000-0000-0000-00005f70d1b8") + ) + (segment + (start 91.15 103.05) + (end 90.9 102.8) + (width 0.25) + (layer "F.Cu") + (net 5) + (uuid "00000000-0000-0000-0000-00005f70d1bb") + ) + (segment + (start 92.8 103.05) + (end 91.15 103.05) + (width 0.25) + (layer "F.Cu") + (net 5) + (uuid "00000000-0000-0000-0000-00005f70d1be") + ) + (segment + (start 92.8 102.05) + (end 90.95 102.05) + (width 0.25) + (layer "F.Cu") + (net 5) + (uuid "00000000-0000-0000-0000-00005f70d1c1") + ) + (segment + (start 90.95 102.05) + (end 90.2 102.8) + (width 0.25) + (layer "F.Cu") + (net 5) + (uuid "00000000-0000-0000-0000-00005f70d1c4") + ) + (segment + (start 89.8875 99.6) + (end 90.3 99.6) + (width 0.2) + (layer "F.Cu") + (net 6) + (uuid "00000000-0000-0000-0000-00005f70d1a0") + ) + (segment + (start 90.3 99.6) + (end 91.75 101.05) + (width 0.2) + (layer "F.Cu") + (net 6) + (uuid "00000000-0000-0000-0000-00005f70d1a3") + ) + (segment + (start 91.75 101.05) + (end 92.8 101.05) + (width 0.2) + (layer "F.Cu") + (net 6) + (uuid "00000000-0000-0000-0000-00005f70d1a6") + ) + (segment + (start 97.15 102.05) + (end 100.05 102.05) + (width 0.2) + (layer "F.Cu") + (net 7) + (uuid "00000000-0000-0000-0000-00005f70d197") + ) + (segment + (start 100.05 102.05) + (end 100.9 102.9) + (width 0.2) + (layer "F.Cu") + (net 7) + (uuid "00000000-0000-0000-0000-00005f70d19a") + ) + (segment + (start 100.9 102.9) + (end 101.6625 102.9) + (width 0.2) + (layer "F.Cu") + (net 7) + (uuid "00000000-0000-0000-0000-00005f70d19d") + ) + (segment + (start 71.695 75.895) + (end 73.745 75.895) + (width 0.25) + (layer "F.Cu") + (net 8) + (uuid "00000000-0000-0000-0000-00005f70bdd2") + ) + (segment + (start 73.745 75.895) + (end 73.75 75.9) + (width 0.25) + (layer "F.Cu") + (net 8) + (uuid "00000000-0000-0000-0000-00005f70d18b") + ) + (segment + (start 74 77.4) + (end 73.75 77.15) + (width 0.25) + (layer "F.Cu") + (net 8) + (uuid "00000000-0000-0000-0000-00005f70d18e") + ) + (segment + (start 73.75 77.15) + (end 73.75 75.9) + (width 0.25) + (layer "F.Cu") + (net 8) + (uuid "00000000-0000-0000-0000-00005f70d191") + ) + (segment + (start 74 78.5) + (end 74 77.4) + (width 0.25) + (layer "F.Cu") + (net 8) + (uuid "00000000-0000-0000-0000-00005f70d194") + ) + (segment + (start 76.2 50.9) + (end 75.1 50.9) + (width 0.25) + (layer "F.Cu") + (net 9) + (uuid "00000000-0000-0000-0000-00005f70bdba") + ) + (segment + (start 76.2 51.7) + (end 76.8125 52.3125) + (width 0.25) + (layer "F.Cu") + (net 9) + (uuid "00000000-0000-0000-0000-00005f70bdbd") + ) + (segment + (start 76.8125 52.3125) + (end 76.8125 52.9) + (width 0.25) + (layer "F.Cu") + (net 9) + (uuid "00000000-0000-0000-0000-00005f70bdc0") + ) + (segment + (start 76.2 50.9) + (end 76.2 51.7) + (width 0.25) + (layer "F.Cu") + (net 9) + (uuid "00000000-0000-0000-0000-00005f70bdc3") + ) + (segment + (start 74.6 50.4) + (end 75.1 50.9) + (width 0.25) + (layer "F.Cu") + (net 9) + (uuid "00000000-0000-0000-0000-00005f70bdc6") + ) + (segment + (start 74.6 50) + (end 74.6 50.4) + (width 0.25) + (layer "F.Cu") + (net 9) + (uuid "00000000-0000-0000-0000-00005f70bdc9") + ) + (segment + (start 73.88625 49.28625) + (end 74.6 50) + (width 0.25) + (layer "F.Cu") + (net 9) + (uuid "00000000-0000-0000-0000-00005f70bdcc") + ) + (segment + (start 73.0025 49.28625) + (end 73.88625 49.28625) + (width 0.25) + (layer "F.Cu") + (net 9) + (uuid "00000000-0000-0000-0000-00005f70bdcf") + ) + (segment + (start 99.63 53.875) + (end 99.63 52.83) + (width 0.25) + (layer "F.Cu") + (net 10) + (uuid "00000000-0000-0000-0000-00005f70d020") + ) + (segment + (start 99.63 52.83) + (end 99.3 52.5) + (width 0.25) + (layer "F.Cu") + (net 10) + (uuid "00000000-0000-0000-0000-00005f70d023") + ) + (segment + (start 92.8 64.7) + (end 92.8 63.85) + (width 0.25) + (layer "F.Cu") + (net 10) + (uuid "00000000-0000-0000-0000-00005f70d026") + ) + (segment + (start 92.8 63.85) + (end 94.3 62.35) + (width 0.25) + (layer "F.Cu") + (net 10) + (uuid "00000000-0000-0000-0000-00005f70d029") + ) + (segment + (start 94.3 62.35) + (end 94.3 54.1) + (width 0.25) + (layer "F.Cu") + (net 10) + (uuid "00000000-0000-0000-0000-00005f70d02c") + ) + (segment + (start 94.3 54.1) + (end 95.9 52.5) + (width 0.25) + (layer "F.Cu") + (net 10) + (uuid "00000000-0000-0000-0000-00005f70d02f") + ) + (segment + (start 95.9 52.5) + (end 99.3 52.5) + (width 0.25) + (layer "F.Cu") + (net 10) + (uuid "00000000-0000-0000-0000-00005f70d032") + ) + (segment + (start 91.3 64.5) + (end 91.5 64.7) + (width 0.25) + (layer "F.Cu") + (net 10) + (uuid "00000000-0000-0000-0000-00005f70d035") + ) + (segment + (start 91.5 64.7) + (end 92.8 64.7) + (width 0.25) + (layer "F.Cu") + (net 10) + (uuid "00000000-0000-0000-0000-00005f70d038") + ) + (segment + (start 90.5875 64.5) + (end 91.3 64.5) + (width 0.25) + (layer "F.Cu") + (net 10) + (uuid "00000000-0000-0000-0000-00005f70d03b") + ) + (segment + (start 99.45 102.55) + (end 99.85 102.95) + (width 0.2) + (layer "F.Cu") + (net 11) + (uuid "00000000-0000-0000-0000-00005f70bd9c") + ) + (segment + (start 99.85 102.95) + (end 99.85 103.5125) + (width 0.2) + (layer "F.Cu") + (net 11) + (uuid "00000000-0000-0000-0000-00005f70bd9f") + ) + (segment + (start 97.15 102.55) + (end 99.45 102.55) + (width 0.2) + (layer "F.Cu") + (net 11) + (uuid "00000000-0000-0000-0000-00005f70bda2") + ) + (segment + (start 99 100.3875) + (end 99.8875 100.3875) + (width 0.25) + (layer "F.Cu") + (net 12) + (uuid "00000000-0000-0000-0000-00005f70bd87") + ) + (segment + (start 99.8875 100.3875) + (end 99.9 100.4) + (width 0.25) + (layer "F.Cu") + (net 12) + (uuid "00000000-0000-0000-0000-00005f70bd8a") + ) + (segment + (start 100.7125 100.4) + (end 99.9 100.4) + (width 0.25) + (layer "F.Cu") + (net 12) + (uuid "00000000-0000-0000-0000-00005f70bd8d") + ) + (segment + (start 100.7125 98.9) + (end 100.7125 100.4) + (width 0.25) + (layer "F.Cu") + (net 12) + (uuid "00000000-0000-0000-0000-00005f70bd90") + ) + (segment + (start 98.15 100.55) + (end 98.3125 100.3875) + (width 0.2) + (layer "F.Cu") + (net 12) + (uuid "00000000-0000-0000-0000-00005f70bd93") + ) + (segment + (start 98.3125 100.3875) + (end 99 100.3875) + (width 0.2) + (layer "F.Cu") + (net 12) + (uuid "00000000-0000-0000-0000-00005f70bd96") + ) + (segment + (start 97.2 100.55) + (end 98.15 100.55) + (width 0.2) + (layer "F.Cu") + (net 12) + (uuid "00000000-0000-0000-0000-00005f70bd99") + ) + (segment + (start 94.9875 45.2) + (end 98.05 45.2) + (width 0.5) + (layer "F.Cu") + (net 13) + (uuid "00000000-0000-0000-0000-00005f70b802") + ) + (segment + (start 98.05 45.2) + (end 98.06 45.19) + (width 0.5) + (layer "F.Cu") + (net 13) + (uuid "00000000-0000-0000-0000-00005f70b805") + ) + (segment + (start 99.63 46.76) + (end 98.06 45.19) + (width 0.5) + (layer "F.Cu") + (net 13) + (uuid "00000000-0000-0000-0000-00005f70b808") + ) + (segment + (start 99.63 48.7) + (end 99.63 46.76) + (width 0.5) + (layer "F.Cu") + (net 13) + (uuid "00000000-0000-0000-0000-00005f70b80b") + ) + (segment + (start 163.825 38.475) + (end 164.7 38.475) + (width 0.2) + (layer "F.Cu") + (net 14) + (uuid "011178d6-4025-413b-baf9-cf0b6cfe3bd2") + ) + (segment + (start 168.3 42.1) + (end 171.3 42.1) + (width 0.2) + (layer "F.Cu") + (net 14) + (uuid "063f906b-381a-4e9b-9705-4656f9d949eb") + ) + (segment + (start 161.6 40.125) + (end 162.175 40.125) + (width 0.2) + (layer "F.Cu") + (net 14) + (uuid "226355de-58e6-4382-b81d-eb5574981c21") + ) + (segment + (start 166.4375 38.475) + (end 164.7 38.475) + (width 0.2) + (layer "F.Cu") + (net 14) + (uuid "23e8f6d6-dc05-413b-bdf4-3972f7aaa452") + ) + (segment + (start 167.1625 39.2) + (end 166.4375 38.475) + (width 0.2) + (layer "F.Cu") + (net 14) + (uuid "5effda4f-f509-4c42-bf3f-632077643ed1") + ) + (segment + (start 171.625 42.425) + (end 171.625 44.995) + (width 0.2) + (layer "F.Cu") + (net 14) + (uuid "66c9e9dc-66c0-42e4-af7d-d00366d4ce10") + ) + (segment + (start 167.1625 40.9625) + (end 168.3 42.1) + (width 0.2) + (layer "F.Cu") + (net 14) + (uuid "b9efdb59-2bf9-44e7-832c-7e0204aa6539") + ) + (segment + (start 162.175 40.125) + (end 163.825 38.475) + (width 0.2) + (layer "F.Cu") + (net 14) + (uuid "cfee214d-0896-49fa-acf5-34e5207a32bd") + ) + (segment + (start 167.1625 39.2) + (end 167.1625 40.9625) + (width 0.2) + (layer "F.Cu") + (net 14) + (uuid "d7886505-c1bf-4c3e-b2dc-c6b50efcab3f") + ) + (segment + (start 171.3 42.1) + (end 171.625 42.425) + (width 0.2) + (layer "F.Cu") + (net 14) + (uuid "df0419eb-4e26-41cf-9d0e-5aadf9865d46") + ) + (segment + (start 181.5 47.025) + (end 181.5 49.5) + (width 0.25) + (layer "F.Cu") + (net 15) + (uuid "0f3d2bc0-ef2f-498a-bc7c-feccd28d23e5") + ) + (segment + (start 174.2 50.575) + (end 175.9625 50.575) + (width 0.25) + (layer "F.Cu") + (net 15) + (uuid "1ca07a16-e8a7-485a-b6ed-4d978fda82e4") + ) + (segment + (start 175.9625 50.575) + (end 176 50.6125) + (width 0.25) + (layer "F.Cu") + (net 15) + (uuid "3ee644d5-9b18-4e77-9c7f-dc6fdeec1f43") + ) + (segment + (start 176.835 46.525) + (end 181 46.525) + (width 0.25) + (layer "F.Cu") + (net 15) + (uuid "4c26380e-25f5-47c4-b436-cc2cc920f329") + ) + (segment + (start 172.4 50.575) + (end 174.2 50.575) + (width 0.25) + (layer "F.Cu") + (net 15) + (uuid "6b8c8058-2d12-45ff-a948-1f6fd59fbc08") + ) + (segment + (start 180.3875 50.6125) + (end 176 50.6125) + (width 0.25) + (layer "F.Cu") + (net 15) + (uuid "75cc94f8-2c85-4145-b749-40a57cfb581d") + ) + (segment + (start 176.575 46.265) + (end 176.835 46.525) + (width 0.25) + (layer "F.Cu") + (net 15) + (uuid "89557794-3ae6-46fa-be5d-4a1ae4dd9735") + ) + (segment + (start 181.5 49.5) + (end 180.3875 50.6125) + (width 0.25) + (layer "F.Cu") + (net 15) + (uuid "f2bc774e-29b7-486e-bd78-97835e65f0e4") + ) + (segment + (start 181 46.525) + (end 181.5 47.025) + (width 0.25) + (layer "F.Cu") + (net 15) + (uuid "f5c0c235-ff14-4225-94b7-caea44acba48") + ) + (segment + (start 109.265 50.165) + (end 109.3 50.2) + (width 0.5) + (layer "F.Cu") + (net 18) + (uuid "00000000-0000-0000-0000-00005f70b877") + ) + (segment + (start 109.265 48.7) + (end 109.265 50.165) + (width 0.5) + (layer "F.Cu") + (net 18) + (uuid "00000000-0000-0000-0000-00005f70b87a") + ) + (segment + (start 104.71 54.1) + (end 105.8 54.1) + (width 0.5) + (layer "F.Cu") + (net 18) + (uuid "00000000-0000-0000-0000-00005f70b883") + ) + (segment + (start 106.200001 53.699999) + (end 106.5 53.4) + (width 0.5) + (layer "F.Cu") + (net 18) + (uuid "00000000-0000-0000-0000-00005f70b886") + ) + (segment + (start 105.8 54.1) + (end 106.200001 53.699999) + (width 0.5) + (layer "F.Cu") + (net 18) + (uuid "00000000-0000-0000-0000-00005f70bee0") + ) + (via + (at 109.3 50.2) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 18) + (uuid "00000000-0000-0000-0000-00005f70b87d") + ) + (via + (at 106.5 53.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 18) + (uuid "00000000-0000-0000-0000-00005f70b880") + ) + (segment + (start 109.3 50.6) + (end 109.3 50.2) + (width 0.5) + (layer "B.Cu") + (net 18) + (uuid "00000000-0000-0000-0000-00005f70b871") + ) + (segment + (start 106.5 53.4) + (end 109.3 50.6) + (width 0.5) + (layer "B.Cu") + (net 18) + (uuid "00000000-0000-0000-0000-00005f70b874") + ) + (segment + (start 100.9 50.8) + (end 101.1 51) + (width 0.5) + (layer "F.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70c6a2") + ) + (segment + (start 111.805 48.7) + (end 111.805 51) + (width 0.5) + (layer "F.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70c6a5") + ) + (segment + (start 107.995 51) + (end 108 51) + (width 0.5) + (layer "F.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70c6a8") + ) + (segment + (start 107.995 48.7) + (end 107.995 51) + (width 0.5) + (layer "F.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70c6ab") + ) + (segment + (start 126.6 48.795) + (end 126.595 48.8) + (width 0.5) + (layer "F.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70c6ae") + ) + (segment + (start 126.6 47.05) + (end 126.6 48.795) + (width 0.5) + (layer "F.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70c6b1") + ) + (segment + (start 126.4 51) + (end 126.595 50.805) + (width 0.5) + (layer "F.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70c6b4") + ) + (segment + (start 126.595 50.805) + (end 126.595 48.8) + (width 0.5) + (layer "F.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70c6b7") + ) + (segment + (start 126.025 51) + (end 126.4 51) + (width 0.5) + (layer "F.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70c6ba") + ) + (segment + (start 111.805 51) + (end 126.025 51) + (width 0.5) + (layer "F.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70c6bd") + ) + (segment + (start 73.0475 47.98625) + (end 74.41375 47.98625) + (width 0.25) + (layer "F.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70d03e") + ) + (segment + (start 73.0475 46.68625) + (end 74.28625 46.68625) + (width 0.25) + (layer "F.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70d041") + ) + (segment + (start 73.0475 47.33625) + (end 74.36375 47.33625) + (width 0.25) + (layer "F.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70d044") + ) + (segment + (start 76.6 47.49) + (end 79.05 47.49) + (width 0.5) + (layer "F.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70d047") + ) + (segment + (start 79.05 47.49) + (end 81.629999 50.069999) + (width 0.5) + (layer "F.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70d04a") + ) + (segment + (start 81.629999 50.069999) + (end 81.629999 50.329999) + (width 0.5) + (layer "F.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70d04d") + ) + (segment + (start 81.629999 50.329999) + (end 82.3 51) + (width 0.5) + (layer "F.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70d050") + ) + (segment + (start 82.3 51) + (end 101.1 51) + (width 0.5) + (layer "F.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70d053") + ) + (segment + (start 100.9 48.7) + (end 100.9 46.6875) + (width 0.5) + (layer "F.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70d056") + ) + (segment + (start 179.35 44.9) + (end 178.4 44.9) + (width 0.25) + (layer "F.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70d059") + ) + (segment + (start 178.4 44.9) + (end 178.3 45) + (width 0.25) + (layer "F.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70d05c") + ) + (segment + (start 73.0025 46.68625) + (end 73.0025 45.8025) + (width 0.25) + (layer "F.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70d05f") + ) + (segment + (start 176.8 44.995) + (end 178.3 45) + (width 0.25) + (layer "F.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70d062") + ) + (segment + (start 126.025 51) + (end 126.075001 51.050001) + (width 0.5) + (layer "F.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70d07a") + ) + (segment + (start 126.075001 51.050001) + (end 142.750001 51.050001) + (width 0.5) + (layer "F.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70d07d") + ) + (segment + (start 111.8 48.695) + (end 111.805 48.7) + (width 0.5) + (layer "F.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70d080") + ) + (segment + (start 111.8 46.75) + (end 111.8 48.695) + (width 0.5) + (layer "F.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70d083") + ) + (segment + (start 111.805 51) + (end 111.9 51) + (width 0.5) + (layer "F.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70d086") + ) + (segment + (start 100.9 50.8) + (end 100.9 48.7) + (width 0.5) + (layer "F.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70d089") + ) + (segment + (start 108 51) + (end 111.9 51) + (width 0.5) + (layer "F.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70d08c") + ) + (segment + (start 101.7 51) + (end 108 51) + (width 0.5) + (layer "F.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70d08f") + ) + (segment + (start 101.1 51) + (end 101.7 51) + (width 0.5) + (layer "F.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70d092") + ) + (via + (at 178.3 45) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70d068") + ) + (via + (at 142.750001 51.050001) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70d077") + ) + (segment + (start 172.4 43.3) + (end 174.1 45) + (width 0.5) + (layer "B.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70d065") + ) + (segment + (start 174.1 45) + (end 178.3 45) + (width 0.5) + (layer "B.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70d06b") + ) + (segment + (start 155.2 43.3) + (end 172.4 43.3) + (width 0.5) + (layer "B.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70d06e") + ) + (segment + (start 147.449999 51.050001) + (end 155.2 43.3) + (width 0.5) + (layer "B.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70d071") + ) + (segment + (start 142.750001 51.050001) + (end 147.449999 51.050001) + (width 0.5) + (layer "B.Cu") + (net 19) + (uuid "00000000-0000-0000-0000-00005f70d074") + ) + (segment + (start 102.25 99.75) + (end 102.35 99.85) + (width 0.25) + (layer "F.Cu") + (net 21) + (uuid "00000000-0000-0000-0000-00005f70b820") + ) + (segment + (start 102.35 99.85) + (end 102.35 100.5) + (width 0.25) + (layer "F.Cu") + (net 21) + (uuid "00000000-0000-0000-0000-00005f70b823") + ) + (segment + (start 102.25 99) + (end 102.25 99.75) + (width 0.25) + (layer "F.Cu") + (net 21) + (uuid "00000000-0000-0000-0000-00005f70b826") + ) + (segment + (start 101.9 101.4) + (end 102.35 100.95) + (width 0.2) + (layer "F.Cu") + (net 21) + (uuid "00000000-0000-0000-0000-00005f70b829") + ) + (segment + (start 98.3 101.4) + (end 101.9 101.4) + (width 0.2) + (layer "F.Cu") + (net 21) + (uuid "00000000-0000-0000-0000-00005f70b82c") + ) + (segment + (start 98.15 101.55) + (end 98.3 101.4) + (width 0.2) + (layer "F.Cu") + (net 21) + (uuid "00000000-0000-0000-0000-00005f70b82f") + ) + (segment + (start 97.2 101.55) + (end 98.15 101.55) + (width 0.2) + (layer "F.Cu") + (net 21) + (uuid "00000000-0000-0000-0000-00005f70b832") + ) + (segment + (start 102.35 100.95) + (end 102.35 100.5) + (width 0.2) + (layer "F.Cu") + (net 21) + (uuid "00000000-0000-0000-0000-00005f70b835") + ) + (segment + (start 164.3 126.9) + (end 164.3 120.9) + (width 0.25) + (layer "F.Cu") + (net 21) + (uuid "00000000-0000-0000-0000-00005f70b838") + ) + (segment + (start 167.6 130.2) + (end 164.3 126.9) + (width 0.25) + (layer "F.Cu") + (net 21) + (uuid "00000000-0000-0000-0000-00005f70b83b") + ) + (segment + (start 164.3 120.9) + (end 165 120.2) + (width 0.25) + (layer "F.Cu") + (net 21) + (uuid "00000000-0000-0000-0000-00005f70b83e") + ) + (segment + (start 165 113.4) + (end 160.6 109) + (width 2) + (layer "F.Cu") + (net 21) + (uuid "00000000-0000-0000-0000-00005f70b841") + ) + (segment + (start 165 120.2) + (end 165 113.4) + (width 2) + (layer "F.Cu") + (net 21) + (uuid "00000000-0000-0000-0000-00005f70b844") + ) + (segment + (start 160.6 109) + (end 123.6 109) + (width 2) + (layer "F.Cu") + (net 21) + (uuid "00000000-0000-0000-0000-00005f70b847") + ) + (segment + (start 123.6 109) + (end 112.7 119.9) + (width 2) + (layer "F.Cu") + (net 21) + (uuid "00000000-0000-0000-0000-00005f70b84a") + ) + (segment + (start 165 120.9976) + (end 165 120.2) + (width 2) + (layer "F.Cu") + (net 21) + (uuid "00000000-0000-0000-0000-00005f70b84d") + ) + (segment + (start 107.8 99) + (end 109.6 100.8) + (width 0.25) + (layer "F.Cu") + (net 21) + (uuid "00000000-0000-0000-0000-00005f70b850") + ) + (segment + (start 109.6 100.8) + (end 109.6 118.1) + (width 0.25) + (layer "F.Cu") + (net 21) + (uuid "00000000-0000-0000-0000-00005f70b853") + ) + (segment + (start 109.6 118.1) + (end 109.15 117.65) + (width 0.25) + (layer "F.Cu") + (net 21) + (uuid "00000000-0000-0000-0000-00005f70b856") + ) + (segment + (start 109.15 117.65) + (end 101.3 117.65) + (width 0.25) + (layer "F.Cu") + (net 21) + (uuid "00000000-0000-0000-0000-00005f70b859") + ) + (segment + (start 102.25 99) + (end 107.8 99) + (width 0.25) + (layer "F.Cu") + (net 21) + (uuid "00000000-0000-0000-0000-00005f70b85c") + ) + (segment + (start 106.35 117.65) + (end 108.6 119.9) + (width 1.5) + (layer "F.Cu") + (net 21) + (uuid "00000000-0000-0000-0000-00005f70b85f") + ) + (segment + (start 112.5 119.9) + (end 112.7 119.9) + (width 1.5) + (layer "F.Cu") + (net 21) + (uuid "00000000-0000-0000-0000-00005f70b862") + ) + (segment + (start 108.6 119.9) + (end 112.5 119.9) + (width 1.5) + (layer "F.Cu") + (net 21) + (uuid "00000000-0000-0000-0000-00005f70b865") + ) + (segment + (start 101.3 117.65) + (end 106.35 117.65) + (width 1.5) + (layer "F.Cu") + (net 21) + (uuid "00000000-0000-0000-0000-00005f70b868") + ) + (segment + (start 164.3306 121.667) + (end 165 120.9976) + (width 2) + (layer "F.Cu") + (net 21) + (uuid "00000000-0000-0000-0000-00005f70b86b") + ) + (segment + (start 161.467 121.667) + (end 164.3306 121.667) + (width 2) + (layer "F.Cu") + (net 21) + (uuid "00000000-0000-0000-0000-00005f70b86e") + ) + (segment + (start 97.09 53.875) + (end 97.09 55.335) + (width 0.25) + (layer "F.Cu") + (net 24) + (uuid "00000000-0000-0000-0000-00005f70d21e") + ) + (segment + (start 97.0625 56.26) + (end 96.51 56.26) + (width 0.25) + (layer "F.Cu") + (net 24) + (uuid "00000000-0000-0000-0000-00005f70d221") + ) + (segment + (start 97.09 55.335) + (end 97.0625 55.3625) + (width 0.25) + (layer "F.Cu") + (net 24) + (uuid "00000000-0000-0000-0000-00005f70d224") + ) + (segment + (start 97.0625 55.3625) + (end 97.0625 56.26) + (width 0.25) + (layer "F.Cu") + (net 24) + (uuid "00000000-0000-0000-0000-00005f70d227") + ) + (segment + (start 100.5 59.8) + (end 96.574998 59.8) + (width 0.25) + (layer "F.Cu") + (net 24) + (uuid "00000000-0000-0000-0000-00005f70d22a") + ) + (segment + (start 96.574998 59.8) + (end 95.6 58.825002) + (width 0.25) + (layer "F.Cu") + (net 24) + (uuid "00000000-0000-0000-0000-00005f70d22d") + ) + (segment + (start 95.6 57.17) + (end 95.6 58.825002) + (width 0.25) + (layer "F.Cu") + (net 24) + (uuid "00000000-0000-0000-0000-00005f70d230") + ) + (segment + (start 96.51 56.26) + (end 95.6 57.17) + (width 0.25) + (layer "F.Cu") + (net 24) + (uuid "00000000-0000-0000-0000-00005f70d233") + ) + (segment + (start 78.6 96.7) + (end 78.6 93.1) + (width 1) + (layer "F.Cu") + (net 51) + (uuid "5e9726ce-4d01-40c5-88cc-419709628a07") + ) + (segment + (start 75.55 99.75) + (end 78.6 96.7) + (width 1) + (layer "F.Cu") + (net 51) + (uuid "8f97d945-610e-4294-8734-ed76e417b74a") + ) + (segment + (start 78.6 93.1) + (end 79.3625 93.1) + (width 0.5) + (layer "F.Cu") + (net 51) + (uuid "b428b46e-6bb2-4218-88bb-f65b402ba084") + ) + (segment + (start 75.55 102.8) + (end 75.55 99.75) + (width 1) + (layer "F.Cu") + (net 51) + (uuid "e682de9f-cfe4-4eb4-bf46-5f9ba649d8da") + ) + (segment + (start 77.6375 93.1) + (end 78.6 93.1) + (width 0.5) + (layer "F.Cu") + (net 51) + (uuid "ff965ae9-0de4-48fa-a1a6-d1580e191547") + ) + (segment + (start 97.2 103.55) + (end 98.25 103.55) + (width 0.25) + (layer "F.Cu") + (net 57) + (uuid "00000000-0000-0000-0000-00005f70bdb1") + ) + (segment + (start 98.05 103.05) + (end 98.3 103.3) + (width 0.25) + (layer "F.Cu") + (net 57) + (uuid "1722b78b-f55f-454f-b8c1-d5fee7286d88") + ) + (segment + (start 97.2 104.05) + (end 98.25 104.05) + (width 0.25) + (layer "F.Cu") + (net 57) + (uuid "1d2bdc7b-c38c-4947-9f5b-525c86b7ed60") + ) + (segment + (start 99.85 105.0875) + (end 100.7875 105.0875) + (width 0.25) + (layer "F.Cu") + (net 57) + (uuid "1e3639f5-e7e3-4694-9294-3921c4c3d8d8") + ) + (segment + (start 97.2 105.3) + (end 97.2 104.05) + (width 0.25) + (layer "F.Cu") + (net 57) + (uuid "2322cde5-ab92-4bac-a88f-594c925d9cb2") + ) + (segment + (start 101.3 105.6) + (end 101.3 109.15) + (width 0.25) + (layer "F.Cu") + (net 57) + (uuid "274414ab-1890-467f-a7af-4d612100a2a6") + ) + (segment + (start 100.7875 105.0875) + (end 101.3 105.6) + (width 0.25) + (layer "F.Cu") + (net 57) + (uuid "5732fe89-5269-4719-98b5-f2ef3f341659") + ) + (segment + (start 98.3 105.1) + (end 97.9 105.5) + (width 0.25) + (layer "F.Cu") + (net 57) + (uuid "70650231-3657-458f-9f48-741b42421c7d") + ) + (segment + (start 97.2 103.05) + (end 98.05 103.05) + (width 0.25) + (layer "F.Cu") + (net 57) + (uuid "8c7f55c3-6bab-4728-8dd7-d1fea60ba753") + ) + (segment + (start 97.4 105.5) + (end 97.2 105.3) + (width 0.25) + (layer "F.Cu") + (net 57) + (uuid "b3c17d85-5b6a-4d30-87cd-376f4206f580") + ) + (segment + (start 98.3 103.3) + (end 98.3 105.1) + (width 0.25) + (layer "F.Cu") + (net 57) + (uuid "c624c794-7be8-4dd6-8892-1c8fa699ae65") + ) + (segment + (start 97.9 105.5) + (end 97.4 105.5) + (width 0.25) + (layer "F.Cu") + (net 57) + (uuid "fd49b611-21fb-4daf-b867-b30558d907db") + ) + (segment + (start 180.375 48.925) + (end 180.4 48.9) + (width 0.25) + (layer "F.Cu") + (net 67) + (uuid "2475e366-838d-45ff-a5a7-1ba7f73d907a") + ) + (segment + (start 182.1 50.4) + (end 184.7 50.4) + (width 0.25) + (layer "F.Cu") + (net 67) + (uuid "3d280482-c783-4905-9ece-e562770eeaf6") + ) + (segment + (start 178.2 49) + (end 179.125 49) + (width 0.25) + (layer "F.Cu") + (net 67) + (uuid "540aa39f-afd8-4ff8-972d-f1c6a5485cc7") + ) + (segment + (start 176.575 48.805) + (end 178.005 48.805) + (width 0.25) + (layer "F.Cu") + (net 67) + (uuid "de67032b-e900-43c7-be56-99db966ac92a") + ) + (segment + (start 179.2 48.925) + (end 180.375 48.925) + (width 0.25) + (layer "F.Cu") + (net 67) + (uuid "e79f93cf-2b70-4755-9b1b-122ea02ea9ff") + ) + (segment + (start 178.005 48.805) + (end 178.2 49) + (width 0.25) + (layer "F.Cu") + (net 67) + (uuid "ee9114ae-5e43-419f-91b9-9056e7638dec") + ) + (segment + (start 179.125 49) + (end 179.2 48.925) + (width 0.25) + (layer "F.Cu") + (net 67) + (uuid "f5e2c354-79dd-40fb-9d6a-8ec622a9b22e") + ) + (via + (at 182.1 50.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 67) + (uuid "2d993e3b-afb6-40b0-af6a-1f137ca289a6") + ) + (via + (at 180.4 48.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 67) + (uuid "b5e822d4-7555-453b-b54a-b13165b266c6") + ) + (segment + (start 180.4 48.9) + (end 180.6 48.9) + (width 0.25) + (layer "B.Cu") + (net 67) + (uuid "0e53b6fa-66e7-4931-b878-7d2afdb3458c") + ) + (segment + (start 180.6 48.9) + (end 182.1 50.4) + (width 0.25) + (layer "B.Cu") + (net 67) + (uuid "beb5b508-444c-47a1-b4a3-7334542b86d2") + ) + (segment + (start 89.0125 64.5) + (end 89.0125 62.3875) + (width 0.25) + (layer "F.Cu") + (net 72) + (uuid "00000000-0000-0000-0000-00005f70d017") + ) + (segment + (start 89.0125 62.3875) + (end 89.2 62.2) + (width 0.25) + (layer "F.Cu") + (net 72) + (uuid "00000000-0000-0000-0000-00005f70d01a") + ) + (segment + (start 89.2 62.2) + (end 89.2 57) + (width 0.25) + (layer "F.Cu") + (net 72) + (uuid "00000000-0000-0000-0000-00005f70d01d") + ) + (segment + (start 88.9375 64.425) + (end 89.0125 64.5) + (width 0.25) + (layer "F.Cu") + (net 72) + (uuid "0787ede9-95c1-4b0a-9bc2-b45cb9e49f9b") + ) + (segment + (start 86.5 64.425) + (end 88.9375 64.425) + (width 0.25) + (layer "F.Cu") + (net 72) + (uuid "ce33ad8a-c2e6-426e-a4ca-cd2e064f3711") + ) + (segment + (start 111.15 59.9) + (end 112.5 59.9) + (width 1) + (layer "F.Cu") + (net 73) + (uuid "00000000-0000-0000-0000-00005f70d008") + ) + (segment + (start 112.5 59.9) + (end 113.6 58.8) + (width 1) + (layer "F.Cu") + (net 73) + (uuid "00000000-0000-0000-0000-00005f70d00b") + ) + (segment + (start 113.6 58.8) + (end 113.6 58.2) + (width 1) + (layer "F.Cu") + (net 73) + (uuid "00000000-0000-0000-0000-00005f70d00e") + ) + (segment + (start 113.6 58.2) + (end 114.8 57) + (width 1) + (layer "F.Cu") + (net 73) + (uuid "00000000-0000-0000-0000-00005f70d011") + ) + (segment + (start 114.8 57) + (end 118.6 57) + (width 1) + (layer "F.Cu") + (net 73) + (uuid "00000000-0000-0000-0000-00005f70d014") + ) + (segment + (start 118.4 42.9) + (end 108.8 42.9) + (width 1) + (layer "F.Cu") + (net 74) + (uuid "00000000-0000-0000-0000-00005f70bf22") + ) + (segment + (start 104.8 43.75) + (end 107.95 43.75) + (width 1) + (layer "F.Cu") + (net 74) + (uuid "00000000-0000-0000-0000-00005f70bf25") + ) + (segment + (start 107.95 43.75) + (end 108.8 42.9) + (width 1) + (layer "F.Cu") + (net 74) + (uuid "00000000-0000-0000-0000-00005f70bf28") + ) + (segment + (start 170.4 56.9) + (end 172.4 54.9) + (width 0.2) + (layer "F.Cu") + (net 75) + (uuid "51e2451d-884f-4a96-954b-98ad2f7cc073") + ) + (segment + (start 172.4 54.9) + (end 172.4 52.225) + (width 0.2) + (layer "F.Cu") + (net 75) + (uuid "6c73415e-4b8c-4b3c-a6b8-fae4615062e4") + ) + (segment + (start 159.75 57.9625) + (end 160.8125 56.9) + (width 0.2) + (layer "F.Cu") + (net 75) + (uuid "a6f58718-da4d-4e42-beba-05533fe1992f") + ) + (segment + (start 167.1 56.9) + (end 170.4 56.9) + (width 0.2) + (layer "F.Cu") + (net 75) + (uuid "bd6583b3-24d0-4611-b7fc-36acfa2af18f") + ) + (segment + (start 160.8125 56.9) + (end 167.1 56.9) + (width 0.2) + (layer "F.Cu") + (net 75) + (uuid "c9faa841-8cd7-40c8-84bd-8334f85dcf8d") + ) + (segment + (start 124.35 57.9375) + (end 124.35 58.85) + (width 0.5) + (layer "F.Cu") + (net 76) + (uuid "00000000-0000-0000-0000-00005f70cff9") + ) + (segment + (start 124.35 58.85) + (end 125.6 60.1) + (width 0.5) + (layer "F.Cu") + (net 76) + (uuid "00000000-0000-0000-0000-00005f70cffc") + ) + (segment + (start 131.2 60.1) + (end 125.6 60.1) + (width 0.5) + (layer "F.Cu") + (net 76) + (uuid "00000000-0000-0000-0000-00005f70cfff") + ) + (segment + (start 134.4 56.9) + (end 139 56.9) + (width 0.5) + (layer "F.Cu") + (net 76) + (uuid "00000000-0000-0000-0000-00005f70d002") + ) + (segment + (start 131.2 60.1) + (end 134.4 56.9) + (width 0.5) + (layer "F.Cu") + (net 76) + (uuid "00000000-0000-0000-0000-00005f70d005") + ) + (segment + (start 181.1 56.9) + (end 184.8 56.9) + (width 0.5) + (layer "F.Cu") + (net 77) + (uuid "00000000-0000-0000-0000-00005f70bd39") + ) + (segment + (start 187.5 50.4) + (end 187.5 54.2) + (width 0.5) + (layer "F.Cu") + (net 77) + (uuid "00000000-0000-0000-0000-00005f70bd3c") + ) + (segment + (start 187.5 54.2) + (end 184.8 56.9) + (width 0.5) + (layer "F.Cu") + (net 77) + (uuid "00000000-0000-0000-0000-00005f70bd3f") + ) + (segment + (start 139.1 42.8) + (end 132.95 42.8) + (width 1) + (layer "F.Cu") + (net 78) + (uuid "00000000-0000-0000-0000-00005f70cff6") + ) + (segment + (start 148.2 56.9) + (end 148.15 56.85) + (width 0.5) + (layer "F.Cu") + (net 79) + (uuid "00000000-0000-0000-0000-00005f70befe") + ) + (segment + (start 148.15 56.85) + (end 145.6 56.85) + (width 0.5) + (layer "F.Cu") + (net 79) + (uuid "00000000-0000-0000-0000-00005f70bf01") + ) + (segment + (start 153.1 56.9) + (end 148.2 56.9) + (width 0.5) + (layer "F.Cu") + (net 79) + (uuid "00000000-0000-0000-0000-00005f70bf04") + ) + (segment + (start 98.36 53.875) + (end 98.36 55.26) + (width 0.25) + (layer "F.Cu") + (net 80) + (uuid "00000000-0000-0000-0000-00005f70b5a7") + ) + (segment + (start 98.6375 56.26) + (end 98.6375 57.9) + (width 0.25) + (layer "F.Cu") + (net 80) + (uuid "00000000-0000-0000-0000-00005f70b5aa") + ) + (segment + (start 98.6375 56.26) + (end 98.6375 55.5375) + (width 0.25) + (layer "F.Cu") + (net 80) + (uuid "00000000-0000-0000-0000-00005f70b5ad") + ) + (segment + (start 98.6375 55.5375) + (end 98.36 55.26) + (width 0.25) + (layer "F.Cu") + (net 80) + (uuid "00000000-0000-0000-0000-00005f70b5b0") + ) + (segment + (start 91.35 101.55) + (end 91 101.2) + (width 0.2) + (layer "F.Cu") + (net 81) + (uuid "00000000-0000-0000-0000-00005f70bd30") + ) + (segment + (start 91 101.2) + (end 89.8875 101.2) + (width 0.2) + (layer "F.Cu") + (net 81) + (uuid "00000000-0000-0000-0000-00005f70bd33") + ) + (segment + (start 92.8 101.55) + (end 91.35 101.55) + (width 0.2) + (layer "F.Cu") + (net 81) + (uuid "00000000-0000-0000-0000-00005f70bd36") + ) + (segment + (start 127.865 55.435) + (end 127.8125 55.4875) + (width 0.25) + (layer "F.Cu") + (net 82) + (uuid "00000000-0000-0000-0000-00005f70b80e") + ) + (segment + (start 127.8125 55.4875) + (end 127.8125 56.65) + (width 0.25) + (layer "F.Cu") + (net 82) + (uuid "00000000-0000-0000-0000-00005f70b811") + ) + (segment + (start 127.865 54.2) + (end 127.865 55.435) + (width 0.25) + (layer "F.Cu") + (net 82) + (uuid "00000000-0000-0000-0000-00005f70b814") + ) + (segment + (start 126.8125 56.3625) + (end 127.1 56.65) + (width 0.25) + (layer "F.Cu") + (net 82) + (uuid "00000000-0000-0000-0000-00005f70b817") + ) + (segment + (start 127.1 56.65) + (end 127.8125 56.65) + (width 0.25) + (layer "F.Cu") + (net 82) + (uuid "00000000-0000-0000-0000-00005f70b81a") + ) + (segment + (start 126.1 56.3625) + (end 126.8125 56.3625) + (width 0.25) + (layer "F.Cu") + (net 82) + (uuid "00000000-0000-0000-0000-00005f70b81d") + ) + (segment + (start 102.17 54.1) + (end 102.17 58.47) + (width 0.5) + (layer "F.Cu") + (net 83) + (uuid "00000000-0000-0000-0000-00005f70b7f0") + ) + (segment + (start 102 59.8) + (end 102 58.64) + (width 0.5) + (layer "F.Cu") + (net 83) + (uuid "00000000-0000-0000-0000-00005f70b7f3") + ) + (segment + (start 102 58.64) + (end 102.17 58.47) + (width 0.5) + (layer "F.Cu") + (net 83) + (uuid "00000000-0000-0000-0000-00005f70b7f6") + ) + (segment + (start 102.2 60.9) + (end 102.2 61.95) + (width 0.5) + (layer "F.Cu") + (net 83) + (uuid "00000000-0000-0000-0000-00005f70b7f9") + ) + (segment + (start 102 60.7) + (end 102.2 60.9) + (width 0.5) + (layer "F.Cu") + (net 83) + (uuid "00000000-0000-0000-0000-00005f70b7fc") + ) + (segment + (start 102 59.8) + (end 102 60.7) + (width 0.5) + (layer "F.Cu") + (net 83) + (uuid "00000000-0000-0000-0000-00005f70b7ff") + ) + (segment + (start 129.135 52.865) + (end 129.2 52.8) + (width 0.25) + (layer "F.Cu") + (net 84) + (uuid "00000000-0000-0000-0000-00005f70b7cf") + ) + (segment + (start 127.865 48.8) + (end 127.865 50.285) + (width 0.25) + (layer "F.Cu") + (net 84) + (uuid "00000000-0000-0000-0000-00005f70b7d2") + ) + (segment + (start 127.865 50.285) + (end 127.85 50.3) + (width 0.25) + (layer "F.Cu") + (net 84) + (uuid "00000000-0000-0000-0000-00005f70b7d5") + ) + (segment + (start 127.865 43.635) + (end 128.7 42.8) + (width 0.5) + (layer "F.Cu") + (net 84) + (uuid "00000000-0000-0000-0000-00005f70b7e7") + ) + (segment + (start 128.7 42.8) + (end 130.05 42.8) + (width 0.5) + (layer "F.Cu") + (net 84) + (uuid "00000000-0000-0000-0000-00005f70b7ea") + ) + (segment + (start 127.865 48.8) + (end 127.865 43.635) + (width 0.5) + (layer "F.Cu") + (net 84) + (uuid "00000000-0000-0000-0000-00005f70b7ed") + ) + (segment + (start 129.15 55.45) + (end 129.135 55.435) + (width 0.25) + (layer "F.Cu") + (net 84) + (uuid "00000000-0000-0000-0000-00005f70d236") + ) + (segment + (start 129.135 55.435) + (end 129.135 54.2) + (width 0.25) + (layer "F.Cu") + (net 84) + (uuid "00000000-0000-0000-0000-00005f70d239") + ) + (segment + (start 129.15 56.4) + (end 129.15 55.45) + (width 0.25) + (layer "F.Cu") + (net 84) + (uuid "00000000-0000-0000-0000-00005f70d23c") + ) + (segment + (start 129.135 54.2) + (end 129.135 52.865) + (width 0.25) + (layer "F.Cu") + (net 84) + (uuid "00000000-0000-0000-0000-00005f70d23f") + ) + (via + (at 127.85 50.3) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 84) + (uuid "00000000-0000-0000-0000-00005f70b7e1") + ) + (via + (at 129.2 52.8) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 84) + (uuid "00000000-0000-0000-0000-00005f70b7e4") + ) + (segment + (start 129.2 52.8) + (end 129.2 51.65) + (width 0.25) + (layer "B.Cu") + (net 84) + (uuid "00000000-0000-0000-0000-00005f70b7d8") + ) + (segment + (start 129.2 51.65) + (end 128.149999 50.599999) + (width 0.25) + (layer "B.Cu") + (net 84) + (uuid "00000000-0000-0000-0000-00005f70b7db") + ) + (segment + (start 128.149999 50.599999) + (end 127.85 50.3) + (width 0.25) + (layer "B.Cu") + (net 84) + (uuid "00000000-0000-0000-0000-00005f70b7de") + ) + (segment + (start 103.6225 56.36) + (end 103.6225 58.29) + (width 0.25) + (layer "F.Cu") + (net 85) + (uuid "00000000-0000-0000-0000-00005f70b598") + ) + (segment + (start 103.6225 58.29) + (end 103.6125 58.3) + (width 0.25) + (layer "F.Cu") + (net 85) + (uuid "00000000-0000-0000-0000-00005f70b59b") + ) + (segment + (start 103.6225 56.36) + (end 103.6225 55.4225) + (width 0.25) + (layer "F.Cu") + (net 85) + (uuid "00000000-0000-0000-0000-00005f70b59e") + ) + (segment + (start 103.6225 55.4225) + (end 103.44 55.24) + (width 0.25) + (layer "F.Cu") + (net 85) + (uuid "00000000-0000-0000-0000-00005f70b5a1") + ) + (segment + (start 103.44 54.1) + (end 103.44 55.24) + (width 0.25) + (layer "F.Cu") + (net 85) + (uuid "00000000-0000-0000-0000-00005f70b5a4") + ) + (segment + (start 105.1875 58.3) + (end 105.1875 57.6125) + (width 0.25) + (layer "F.Cu") + (net 86) + (uuid "00000000-0000-0000-0000-00005f70d1fd") + ) + (segment + (start 105.1875 57.6125) + (end 105.2 57.6) + (width 0.25) + (layer "F.Cu") + (net 86) + (uuid "00000000-0000-0000-0000-00005f70d200") + ) + (segment + (start 98.2 47.2) + (end 98.36 47.36) + (width 0.25) + (layer "F.Cu") + (net 86) + (uuid "00000000-0000-0000-0000-00005f70d206") + ) + (segment + (start 98.36 47.36) + (end 98.36 48.7) + (width 0.25) + (layer "F.Cu") + (net 86) + (uuid "00000000-0000-0000-0000-00005f70d209") + ) + (segment + (start 97.3 47.2) + (end 98.2 47.2) + (width 0.25) + (layer "F.Cu") + (net 86) + (uuid "00000000-0000-0000-0000-00005f70d20c") + ) + (segment + (start 97.09 47.41) + (end 97.3 47.2) + (width 0.25) + (layer "F.Cu") + (net 86) + (uuid "00000000-0000-0000-0000-00005f70d20f") + ) + (segment + (start 97.09 48.7) + (end 97.09 47.41) + (width 0.25) + (layer "F.Cu") + (net 86) + (uuid "00000000-0000-0000-0000-00005f70d212") + ) + (segment + (start 98.36 48.7) + (end 98.36 50.11) + (width 0.25) + (layer "F.Cu") + (net 86) + (uuid "00000000-0000-0000-0000-00005f70d215") + ) + (segment + (start 98.36 50.11) + (end 98.5 50.25) + (width 0.25) + (layer "F.Cu") + (net 86) + (uuid "00000000-0000-0000-0000-00005f70d218") + ) + (via + (at 105.2 57.6) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 86) + (uuid "00000000-0000-0000-0000-00005f70d203") + ) + (via + (at 98.5 50.25) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 86) + (uuid "00000000-0000-0000-0000-00005f70d21b") + ) + (segment + (start 105.2 56.95) + (end 98.5 50.25) + (width 0.25) + (layer "B.Cu") + (net 86) + (uuid "00000000-0000-0000-0000-00005f70d1f7") + ) + (segment + (start 105.2 57.6) + (end 105.2 56.95) + (width 0.25) + (layer "B.Cu") + (net 86) + (uuid "00000000-0000-0000-0000-00005f70d1fa") + ) + (segment + (start 102.17 48.7) + (end 102.17 50.17) + (width 0.5) + (layer "F.Cu") + (net 87) + (uuid "00000000-0000-0000-0000-00005f70b58c") + ) + (segment + (start 102.17 50.17) + (end 102.2 50.2) + (width 0.5) + (layer "F.Cu") + (net 87) + (uuid "00000000-0000-0000-0000-00005f70b58f") + ) + (segment + (start 109.265 54.1) + (end 109.265 55.435) + (width 0.5) + (layer "F.Cu") + (net 87) + (uuid "00000000-0000-0000-0000-00005f70b595") + ) + (segment + (start 106.44 56.36) + (end 108.26 56.36) + (width 0.5) + (layer "F.Cu") + (net 87) + (uuid "00000000-0000-0000-0000-00005f70bf34") + ) + (segment + (start 105.1975 56.36) + (end 106.44 56.36) + (width 0.25) + (layer "F.Cu") + (net 87) + (uuid "00000000-0000-0000-0000-00005f70bf37") + ) + (segment + (start 108.26 56.36) + (end 108.3 56.4) + (width 0.5) + (layer "F.Cu") + (net 87) + (uuid "00000000-0000-0000-0000-00005f70bf3a") + ) + (segment + (start 108.3 59.9) + (end 108.3 56.4) + (width 0.5) + (layer "F.Cu") + (net 87) + (uuid "00000000-0000-0000-0000-00005f70bf3d") + ) + (segment + (start 108.3 56.4) + (end 109.265 55.435) + (width 0.5) + (layer "F.Cu") + (net 87) + (uuid "00000000-0000-0000-0000-00005f70bf40") + ) + (via + (at 102.2 50.2) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 87) + (uuid "00000000-0000-0000-0000-00005f70b592") + ) + (via + (at 106.44 56.36) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 87) + (uuid "00000000-0000-0000-0000-00005f70bf31") + ) + (segment + (start 106.44 56.36) + (end 105.66 56.36) + (width 0.25) + (layer "B.Cu") + (net 87) + (uuid "00000000-0000-0000-0000-00005f70bf2b") + ) + (segment + (start 105.66 56.36) + (end 102.2 52.9) + (width 0.25) + (layer "B.Cu") + (net 87) + (uuid "00000000-0000-0000-0000-00005f70bf2e") + ) + (segment + (start 102.2 52.9) + (end 102.2 50.2) + (width 0.25) + (layer "B.Cu") + (net 87) + (uuid "00000000-0000-0000-0000-00005f70bf43") + ) + (segment + (start 169.8 46.5) + (end 170.035 46.265) + (width 0.25) + (layer "F.Cu") + (net 88) + (uuid "2ca6b632-cd19-4979-9b47-ccd0117d9e63") + ) + (segment + (start 173.375 45.925) + (end 173.375 43.1) + (width 0.25) + (layer "F.Cu") + (net 88) + (uuid "36c79c7d-3066-4ae6-8ba5-cf2b0c8ae0a7") + ) + (segment + (start 170.035 46.265) + (end 171.625 46.265) + (width 0.25) + (layer "F.Cu") + (net 88) + (uuid "85b0aafc-5e68-4103-8ab9-5275f8986842") + ) + (segment + (start 169.935 47.535) + (end 169.8 47.4) + (width 0.25) + (layer "F.Cu") + (net 88) + (uuid "9ed78f4f-93f9-4e02-a523-dc742637ec4a") + ) + (segment + (start 171.625 46.265) + (end 173.035 46.265) + (width 0.25) + (layer "F.Cu") + (net 88) + (uuid "b12ad68b-37cb-4d6b-86e4-929fa68deeb4") + ) + (segment + (start 173.035 46.265) + (end 173.375 45.925) + (width 0.25) + (layer "F.Cu") + (net 88) + (uuid "d03fb867-fdc3-4d6c-b6d0-d336283fa1d2") + ) + (segment + (start 169.8 47.4) + (end 169.8 46.5) + (width 0.25) + (layer "F.Cu") + (net 88) + (uuid "d3c01d53-af18-4914-a55f-173197cbe748") + ) + (segment + (start 171.625 47.535) + (end 169.935 47.535) + (width 0.25) + (layer "F.Cu") + (net 88) + (uuid "f3895239-87a9-41ec-9b40-24c2f146160d") + ) + (segment + (start 178.325 47.275) + (end 179.2 47.275) + (width 0.25) + (layer "F.Cu") + (net 89) + (uuid "577fe6bc-e14d-403b-ab25-10b69f6abb11") + ) + (segment + (start 176.575 47.535) + (end 178.065 47.535) + (width 0.25) + (layer "F.Cu") + (net 89) + (uuid "5c8784c2-bc11-4a3d-ac76-951cded7af73") + ) + (segment + (start 175.435 47.535) + (end 174.7 46.8) + (width 0.25) + (layer "F.Cu") + (net 89) + (uuid "6e8a65d0-e657-4502-9d32-3cd72e19f8ee") + ) + (segment + (start 178.065 47.535) + (end 178.325 47.275) + (width 0.25) + (layer "F.Cu") + (net 89) + (uuid "a326d7e2-f08d-44c8-88f1-eb363c4f5610") + ) + (segment + (start 176.575 47.535) + (end 175.435 47.535) + (width 0.25) + (layer "F.Cu") + (net 89) + (uuid "ac8606e7-f31d-4fe8-8477-02b6a775ddcd") + ) + (segment + (start 174.7 46.8) + (end 174.7 43.425) + (width 0.25) + (layer "F.Cu") + (net 89) + (uuid "cb24682a-183a-4e02-9990-2dad23cc7621") + ) + (segment + (start 174.7 43.425) + (end 175.025 43.1) + (width 0.25) + (layer "F.Cu") + (net 89) + (uuid "cb6b4d32-4149-48b3-b4f3-f0c65be70a18") + ) + (segment + (start 103.44 48.7) + (end 103.44 47.26) + (width 0.25) + (layer "F.Cu") + (net 90) + (uuid "00000000-0000-0000-0000-00005f70bf13") + ) + (segment + (start 103.44 47.26) + (end 104.05 46.65) + (width 0.25) + (layer "F.Cu") + (net 90) + (uuid "00000000-0000-0000-0000-00005f70bf16") + ) + (segment + (start 104.05 46.65) + (end 104.8 46.65) + (width 0.25) + (layer "F.Cu") + (net 90) + (uuid "00000000-0000-0000-0000-00005f70bf19") + ) + (segment + (start 104.71 48.7) + (end 104.71 46.74) + (width 0.5) + (layer "F.Cu") + (net 90) + (uuid "00000000-0000-0000-0000-00005f70bf1c") + ) + (segment + (start 104.71 46.74) + (end 104.8 46.65) + (width 0.5) + (layer "F.Cu") + (net 90) + (uuid "00000000-0000-0000-0000-00005f70bf1f") + ) + (segment + (start 124.35 56.3625) + (end 124.35 54.4375) + (width 0.25) + (layer "F.Cu") + (net 91) + (uuid "00000000-0000-0000-0000-00005f70bf07") + ) + (segment + (start 125.5625 54.4375) + (end 124.35 54.4375) + (width 0.25) + (layer "F.Cu") + (net 91) + (uuid "00000000-0000-0000-0000-00005f70bf0a") + ) + (segment + (start 125.8 54.2) + (end 125.5625 54.4375) + (width 0.25) + (layer "F.Cu") + (net 91) + (uuid "00000000-0000-0000-0000-00005f70bf0d") + ) + (segment + (start 126.595 54.2) + (end 125.8 54.2) + (width 0.25) + (layer "F.Cu") + (net 91) + (uuid "00000000-0000-0000-0000-00005f70bf10") + ) + (segment + (start 129.135 48.8) + (end 129.135 47.365) + (width 0.25) + (layer "F.Cu") + (net 92) + (uuid "00000000-0000-0000-0000-00005f70bee3") + ) + (segment + (start 129.135 47.365) + (end 129.4 47.1) + (width 0.25) + (layer "F.Cu") + (net 92) + (uuid "00000000-0000-0000-0000-00005f70bee6") + ) + (segment + (start 129.4 47.1) + (end 130.1475 47.1) + (width 0.25) + (layer "F.Cu") + (net 92) + (uuid "00000000-0000-0000-0000-00005f70bee9") + ) + (segment + (start 130.1475 47.1) + (end 130.405 47.3575) + (width 0.25) + (layer "F.Cu") + (net 92) + (uuid "00000000-0000-0000-0000-00005f70beec") + ) + (segment + (start 130.405 47.3575) + (end 130.405 48.8) + (width 0.25) + (layer "F.Cu") + (net 92) + (uuid "00000000-0000-0000-0000-00005f70beef") + ) + (segment + (start 143.5 48.8) + (end 145.6 50.9) + (width 0.5) + (layer "F.Cu") + (net 92) + (uuid "00000000-0000-0000-0000-00005f70bef2") + ) + (segment + (start 130.405 48.8) + (end 143.5 48.8) + (width 0.5) + (layer "F.Cu") + (net 92) + (uuid "00000000-0000-0000-0000-00005f70bef5") + ) + (segment + (start 145.6 50.9) + (end 145.6 53.95) + (width 0.5) + (layer "F.Cu") + (net 92) + (uuid "00000000-0000-0000-0000-00005f70bef8") + ) + (segment + (start 130.405 48.8) + (end 130.405 48.805) + (width 0.5) + (layer "F.Cu") + (net 92) + (uuid "00000000-0000-0000-0000-00005f70befb") + ) + (segment + (start 93.4125 45.2) + (end 92.7 45.2) + (width 0.5) + (layer "F.Cu") + (net 97) + (uuid "00000000-0000-0000-0000-00005f70d1dc") + ) + (segment + (start 85.14999 49.369989) + (end 85.1 49.319999) + (width 0.5) + (layer "F.Cu") + (net 97) + (uuid "00000000-0000-0000-0000-00005f70d1eb") + ) + (segment + (start 88.530011 49.369989) + (end 85.14999 49.369989) + (width 0.5) + (layer "F.Cu") + (net 97) + (uuid "00000000-0000-0000-0000-00005f70d1ee") + ) + (segment + (start 92.7 45.2) + (end 88.530011 49.369989) + (width 0.5) + (layer "F.Cu") + (net 97) + (uuid "00000000-0000-0000-0000-00005f70d1f4") + ) + (via + (at 85.1 49.319999) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 97) + (uuid "00000000-0000-0000-0000-00005f70d1f1") + ) + (segment + (start 81.7 52.719999) + (end 81.7 58.99) + (width 0.5) + (layer "B.Cu") + (net 97) + (uuid "00000000-0000-0000-0000-00005f70d1df") + ) + (segment + (start 81.7 58.99) + (end 79.25 61.44) + (width 0.5) + (layer "B.Cu") + (net 97) + (uuid "00000000-0000-0000-0000-00005f70d1e2") + ) + (segment + (start 79.25 61.44) + (end 78.5 61.44) + (width 0.5) + (layer "B.Cu") + (net 97) + (uuid "00000000-0000-0000-0000-00005f70d1e5") + ) + (segment + (start 85.1 49.319999) + (end 81.7 52.719999) + (width 0.5) + (layer "B.Cu") + (net 97) + (uuid "00000000-0000-0000-0000-00005f70d1e8") + ) + (segment + (start 77.02 56.02) + (end 77.56 56.02) + (width 0.5) + (layer "F.Cu") + (net 118) + (uuid "00000000-0000-0000-0000-00005f70cb04") + ) + (segment + (start 71.24 56.02) + (end 77.02 56.02) + (width 0.5) + (layer "F.Cu") + (net 118) + (uuid "00000000-0000-0000-0000-00005f70cb07") + ) + (segment + (start 78.5 56.02) + (end 77.02 56.02) + (width 0.5) + (layer "F.Cu") + (net 118) + (uuid "00000000-0000-0000-0000-00005f70cb0a") + ) + (segment + (start 78.5 56.02) + (end 78.5 58.9) + (width 0.5) + (layer "F.Cu") + (net 118) + (uuid "00000000-0000-0000-0000-00005f70cb0d") + ) + (segment + (start 70.035 57.225) + (end 71.24 56.02) + (width 0.5) + (layer "F.Cu") + (net 118) + (uuid "00000000-0000-0000-0000-00005f70cb10") + ) + (segment + (start 70.035 58.5) + (end 70.035 57.225) + (width 0.5) + (layer "F.Cu") + (net 118) + (uuid "00000000-0000-0000-0000-00005f70cb13") + ) + (segment + (start 159.725 36.6) + (end 161.6 38.475) + (width 0.5) + (layer "F.Cu") + (net 118) + (uuid "0ef3391c-448f-4046-9390-a1228c05017a") + ) + (segment + (start 95.9 36.6) + (end 159.725 36.6) + (width 0.5) + (layer "F.Cu") + (net 118) + (uuid "91ff9cb7-97f7-4d29-9257-85bc3fbf4e51") + ) + (segment + (start 78.5 56.02) + (end 81.1 53.42) + (width 0.5) + (layer "F.Cu") + (net 118) + (uuid "961432c1-1bd7-464d-95af-efaf33643fb7") + ) + (segment + (start 83.1 49.4) + (end 95.9 36.6) + (width 0.5) + (layer "F.Cu") + (net 118) + (uuid "ab8879a6-ca0c-46ac-83c5-8bb7dec20d15") + ) + (segment + (start 81.1 53.42) + (end 81.1 51.4) + (width 0.5) + (layer "F.Cu") + (net 118) + (uuid "fa263bbc-3bf4-4d98-a5b9-2944bd9662c5") + ) + (via + (at 81.1 51.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 118) + (uuid "1d6d8071-ac92-4e97-b4a0-5e84ed87d1ef") + ) + (via + (at 83.1 49.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 118) + (uuid "4a40e094-f21a-4fb0-ba28-4ea9335dbc8c") + ) + (segment + (start 81.1 51.4) + (end 83.1 49.4) + (width 0.5) + (layer "B.Cu") + (net 118) + (uuid "49a0d866-1333-4b7a-b0da-76faf8703a7d") + ) + (segment + (start 57.3 126.31) + (end 55.36 124.37) + (width 1) + (layer "F.Cu") + (net 125) + (uuid "37831b48-f4c4-4a4e-96f6-6caf87351379") + ) + (segment + (start 57.3 128.15) + (end 57.3 126.31) + (width 1) + (layer "F.Cu") + (net 125) + (uuid "457f42c3-5be7-4c16-bf1a-e05a256ab5fe") + ) + (segment + (start 60 128.15) + (end 60 126.25) + (width 1) + (layer "F.Cu") + (net 125) + (uuid "5fa02eb0-56a0-482e-b756-b7f0021f33cf") + ) + (segment + (start 60 126.25) + (end 60.44 125.81) + (width 1) + (layer "F.Cu") + (net 125) + (uuid "9531728f-5408-4d24-9bf0-265b3ca723fe") + ) + (segment + (start 60.44 124.37) + (end 60.44 125.81) + (width 1) + (layer "F.Cu") + (net 125) + (uuid "cf5d4bae-d12a-406a-a3c8-49f81871d674") + ) + (segment + (start 60.44 124.37) + (end 55.36 124.37) + (width 1) + (layer "F.Cu") + (net 125) + (uuid "d7c7f8d0-8abd-4b14-a87a-dab19cb91c93") + ) + (segment + (start 55.36 121.83) + (end 59.214999 117.975001) + (width 0.25) + (layer "F.Cu") + (net 126) + (uuid "2af41a6f-50e3-4940-94db-0303a147d3dd") + ) + (segment + (start 62.125001 117.975001) + (end 63.45 119.3) + (width 0.25) + (layer "F.Cu") + (net 126) + (uuid "36138b6c-c5d8-4ffa-9779-31d5d77ff476") + ) + (segment + (start 59.214999 117.975001) + (end 62.125001 117.975001) + (width 0.25) + (layer "F.Cu") + (net 126) + (uuid "cbe9fb0f-1393-4f98-ab3d-28189cd4fb56") + ) + (segment + (start 55.36 88.81) + (end 53.16 88.81) + (width 1) + (layer "B.Cu") + (net 127) + (uuid "92b9c171-f48f-4a07-a929-746ef8b65aa5") + ) + (segment + (start 53.16 88.81) + (end 53.15 88.8) + (width 1) + (layer "B.Cu") + (net 127) + (uuid "dc0220f9-04c1-449e-84d0-375c676e54f2") + ) + (segment + (start 55.36 86.27) + (end 53.17 86.27) + (width 1) + (layer "B.Cu") + (net 128) + (uuid "760ff2bd-bd8c-4d24-ae65-543a7ec24db5") + ) + (segment + (start 53.17 86.27) + (end 53.15 86.25) + (width 1) + (layer "B.Cu") + (net 128) + (uuid "8e72df28-7a3b-4bfd-9fb1-68cf22924073") + ) + (segment + (start 55.36 83.73) + (end 53.17 83.73) + (width 1) + (layer "B.Cu") + (net 129) + (uuid "7dcc42dc-83c5-4a58-bb53-a5f05330d5f8") + ) + (segment + (start 53.17 83.73) + (end 53.15 83.75) + (width 1) + (layer "B.Cu") + (net 129) + (uuid "f21adf6a-f285-4b44-adee-f33ac0ad1ce8") + ) + (segment + (start 55.35 81.2) + (end 55.36 81.19) + (width 1) + (layer "B.Cu") + (net 130) + (uuid "047e0d1e-484a-4d10-b086-6b188a78c581") + ) + (segment + (start 53.15 81.2) + (end 55.35 81.2) + (width 1) + (layer "B.Cu") + (net 130) + (uuid "d646c145-0888-4122-a9ee-c80c4050d447") + ) + (segment + (start 55.5 40.056482) + (end 56.856492 38.69999) + (width 1.5) + (layer "F.Cu") + (net 131) + (uuid "13f7a552-a646-40e6-b51b-e08ee801d2ce") + ) + (segment + (start 61.6 39.25) + (end 61.04999 38.69999) + (width 0.5) + (layer "F.Cu") + (net 131) + (uuid "25685d95-061b-41e5-bee4-bdfb1eabe30b") + ) + (segment + (start 55.36 48.17) + (end 54.087208 48.17) + (width 1.5) + (layer "F.Cu") + (net 131) + (uuid "2671210c-343e-42c5-bfa0-6397ac0b7e06") + ) + (segment + (start 56.856492 38.69999) + (end 61.04999 38.69999) + (width 1.5) + (layer "F.Cu") + (net 131) + (uuid "45badfed-eaac-416c-9bd9-db8b3bb2c682") + ) + (segment + (start 55.36 48.17) + (end 60.44 48.17) + (width 1.5) + (layer "F.Cu") + (net 131) + (uuid "48cffc50-fb06-4eb1-9b93-78f85a43b110") + ) + (segment + (start 55.5 42.25) + (end 55.5 40.056482) + (width 1.5) + (layer "F.Cu") + (net 131) + (uuid "7b05dc4b-8994-4544-9dfc-6bb51aca0e1a") + ) + (segment + (start 53.509999 47.592791) + (end 53.509999 44.240001) + (width 1.5) + (layer "F.Cu") + (net 131) + (uuid "b1ea61e3-8197-47f3-a174-72d230429ed2") + ) + (segment + (start 53.509999 44.240001) + (end 55.5 42.25) + (width 1.5) + (layer "F.Cu") + (net 131) + (uuid "c5a10efe-7a10-4b9e-9cd8-a54114330eab") + ) + (segment + (start 56.856492 38.69999) + (end 58 38.69999) + (width 1.5) + (layer "F.Cu") + (net 131) + (uuid "ebc12e1b-80b0-437c-bc63-293e25268c98") + ) + (segment + (start 54.087208 48.17) + (end 53.509999 47.592791) + (width 1.5) + (layer "F.Cu") + (net 131) + (uuid "f4e605a5-bff5-4896-ba3d-c2d51cc5f9d8") + ) + (segment + (start 60.44 42.75999) + (end 61.44999 41.75) + (width 1.5) + (layer "F.Cu") + (net 132) + (uuid "0e3033c9-10ba-4ec4-9f5a-f9c0baa896c5") + ) + (segment + (start 55.36 45.63) + (end 60.44 45.63) + (width 1.5) + (layer "F.Cu") + (net 132) + (uuid "1eeecfbb-3527-478e-b14e-f1a92259fe26") + ) + (segment + (start 60.44 45.63) + (end 60.44 42.75999) + (width 1.5) + (layer "F.Cu") + (net 132) + (uuid "f90a51ff-416f-4eac-82ed-38c599a6ae3f") + ) + (segment + (start 63.45 122.4) + (end 62.9 122.4) + (width 0.5) + (layer "F.Cu") + (net 133) + (uuid "41c614d0-9505-469f-810e-cbd6247c6a10") + ) + (segment + (start 60.44 121.83) + (end 62.33 121.83) + (width 1) + (layer "F.Cu") + (net 133) + (uuid "53b1f897-371c-47dd-959a-c072a27d4e74") + ) + (segment + (start 62.33 121.83) + (end 62.8 122.3) + (width 1) + (layer "F.Cu") + (net 133) + (uuid "8c280046-befe-4ad1-8124-a6c196c5f7d2") + ) + (segment + (start 62.9 122.4) + (end 62.8 122.3) + (width 0.5) + (layer "F.Cu") + (net 133) + (uuid "a3a178f8-ad5c-4757-9f2a-0c8ca7814040") + ) + (segment + (start 60.44 88.81) + (end 62.79 88.81) + (width 1) + (layer "B.Cu") + (net 134) + (uuid "4871090e-e0b1-4014-8fea-f2f7f4c1f8bb") + ) + (segment + (start 62.79 88.81) + (end 62.85 88.75) + (width 1) + (layer "B.Cu") + (net 134) + (uuid "9c13bc04-6c55-4fe1-abf9-4cf52a065eec") + ) + (segment + (start 62.83 86.27) + (end 62.85 86.25) + (width 1) + (layer "B.Cu") + (net 135) + (uuid "30e6816a-934e-4ead-9b92-dcd91099f61d") + ) + (segment + (start 60.44 86.27) + (end 62.83 86.27) + (width 1) + (layer "B.Cu") + (net 135) + (uuid "833632e3-89a5-48d8-98b6-547be90ad674") + ) + (segment + (start 62.83 83.73) + (end 62.85 83.75) + (width 1) + (layer "B.Cu") + (net 136) + (uuid "083e1a17-4d2b-41f4-9f1b-ca7db66d10c6") + ) + (segment + (start 60.44 83.73) + (end 62.83 83.73) + (width 1) + (layer "B.Cu") + (net 136) + (uuid "fb7892a0-29e9-4d08-86e9-ed9ad1c00745") + ) + (segment + (start 60.44 81.19) + (end 62.79 81.19) + (width 1) + (layer "B.Cu") + (net 137) + (uuid "5a4b792d-7daf-49f9-a003-f77559fa2efd") + ) + (zone + (net 2) + (net_name "GND") + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-000061e5b18f") + (hatch edge 0.508) + (connect_pads + (clearance 0.25) + ) + (min_thickness 0.2) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.508) + (thermal_bridge_width 0.508) + (smoothing fillet) + (radius 0.2) + ) + (polygon + (pts + (xy 59.9 135) (xy 50 134.9) (xy 50 129) (xy 59.9 129) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 51.135144 129.018907) (xy 51.171108 129.068407) (xy 51.172425 129.118977) (xy 51.1738 129.119251) + (xy 51.173167 129.122432) (xy 51.1445 129.34018) (xy 51.1445 129.559819) (xy 51.173167 129.777567) + (xy 51.173167 129.777572) (xy 51.230012 129.989719) (xy 51.230016 129.989732) (xy 51.314063 130.192643) + (xy 51.423884 130.382855) (xy 51.557584 130.557097) (xy 51.557586 130.557099) (xy 51.55759 130.557104) + (xy 51.712896 130.71241) (xy 51.7129 130.712413) (xy 51.712902 130.712415) (xy 51.82266 130.796635) + (xy 51.887145 130.846116) (xy 51.98225 130.901025) (xy 52.077356 130.955936) (xy 52.185362 131.000672) + (xy 52.280273 131.039986) (xy 52.492425 131.096832) (xy 52.710182 131.1255) (xy 52.710183 131.1255) + (xy 52.929817 131.1255) (xy 52.929818 131.1255) (xy 53.147575 131.096832) (xy 53.359727 131.039986) + (xy 53.562645 130.955935) (xy 53.752855 130.846116) (xy 53.927104 130.71241) (xy 54.08241 130.557104) + (xy 54.216116 130.382855) (xy 54.325935 130.192645) (xy 54.328034 130.187579) (xy 54.339039 130.161008) + (xy 54.409986 129.989727) (xy 54.466832 129.777575) (xy 54.4955 129.559818) (xy 54.4955 129.340182) + (xy 54.466832 129.122425) (xy 54.466826 129.122404) (xy 54.4662 129.119251) (xy 54.467724 129.118947) + (xy 54.470613 129.063547) (xy 54.509105 129.015986) (xy 54.563047 129) (xy 58.8955 129) (xy 58.953691 129.018907) + (xy 58.989655 129.068407) (xy 58.9945 129.099) (xy 58.9945 129.521894) (xy 59.004847 129.593862) + (xy 59.004848 129.593868) (xy 59.004849 129.593871) (xy 59.045356 129.731826) (xy 59.066249 129.777575) + (xy 59.075567 129.797979) (xy 59.075571 129.797986) (xy 59.153292 129.918923) (xy 59.153301 129.918935) + (xy 59.200911 129.97388) (xy 59.200928 129.973898) (xy 59.309578 130.068043) (xy 59.309591 130.068052) + (xy 59.370751 130.107357) (xy 59.370755 130.107359) (xy 59.370761 130.107363) (xy 59.501546 130.167091) + (xy 59.571323 130.187579) (xy 59.618761 130.194399) (xy 59.713634 130.208041) (xy 59.713638 130.208041) + (xy 59.786359 130.208041) (xy 59.786361 130.208041) (xy 59.786895 130.207964) (xy 59.787055 130.207991) + (xy 59.789894 130.207789) (xy 59.789944 130.208491) (xy 59.847185 130.218387) (xy 59.889835 130.262258) + (xy 59.9 130.305954) (xy 59.9 134.788157) (xy 59.898073 134.807593) (xy 59.890596 134.844936) (xy 59.860632 134.898283) + (xy 59.805035 134.923828) (xy 59.793523 134.9245) (xy 52.425999 134.9245) (xy 52.425121 134.924495) + (xy 50.210927 134.902129) (xy 50.185503 134.898543) (xy 50.148074 134.888176) (xy 50.097042 134.854422) + (xy 50.075596 134.797118) (xy 50.0755 134.792768) (xy 50.0755 129.106011) (xy 50.094407 129.04782) + (xy 50.143907 129.011856) (xy 50.155183 129.008914) (xy 50.168434 129.006278) (xy 50.190441 129.001902) + (xy 50.209752 129) (xy 51.076953 129) + ) + ) + ) + (zone + (net 1) + (net_name "/Supply_Ref/+15V") + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-000061e5b195") + (hatch edge 0.508) + (connect_pads + (clearance 0.25) + ) + (min_thickness 0.2) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.508) + (thermal_bridge_width 0.508) + (smoothing fillet) + (radius 0.2) + ) + (polygon + (pts + (xy 72.1 81.9) (xy 62.4 81.9) (xy 62.4 68.9) (xy 72.1 68.9) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 64.985313 68.918907) (xy 65.021277 68.968407) (xy 65.021277 69.029593) (xy 65.01988 69.033596) + (xy 64.998506 69.0909) (xy 64.998504 69.090911) (xy 64.992 69.151412) (xy 64.992 69.745999) (xy 64.992001 69.746) + (xy 65.988314 69.746) (xy 65.97992 69.754394) (xy 65.927259 69.845606) (xy 65.9 69.947339) (xy 65.9 70.052661) + (xy 65.927259 70.154394) (xy 65.97992 70.245606) (xy 65.988314 70.254) (xy 64.992001 70.254) (xy 64.992 70.254001) + (xy 64.992 70.848587) (xy 64.998504 70.909088) (xy 64.998506 70.909098) (xy 65.049552 71.04596) + (xy 65.137092 71.162899) (xy 65.1371 71.162907) (xy 65.254039 71.250447) (xy 65.390901 71.301493) + (xy 65.390911 71.301495) (xy 65.451413 71.308) (xy 66.045999 71.308) (xy 66.046 71.307999) (xy 66.046 70.311686) + (xy 66.054394 70.32008) (xy 66.145606 70.372741) (xy 66.247339 70.4) (xy 66.352661 70.4) (xy 66.454394 70.372741) + (xy 66.545606 70.32008) (xy 66.554 70.311686) (xy 66.554 71.307999) (xy 66.554001 71.308) (xy 67.148587 71.308) + (xy 67.209088 71.301495) (xy 67.209098 71.301493) (xy 67.34596 71.250447) (xy 67.462899 71.162907) + (xy 67.462907 71.162899) (xy 67.550447 71.04596) (xy 67.601493 70.909098) (xy 67.601495 70.909088) + (xy 67.608 70.848587) (xy 67.608 70.254001) (xy 67.607999 70.254) (xy 66.611686 70.254) (xy 66.62008 70.245606) + (xy 66.672741 70.154394) (xy 66.7 70.052661) (xy 66.7 69.947339) (xy 66.672741 69.845606) (xy 66.62008 69.754394) + (xy 66.611686 69.746) (xy 67.607999 69.746) (xy 67.608 69.745999) (xy 67.608 69.151412) (xy 67.601495 69.090911) + (xy 67.601493 69.0909) (xy 67.58012 69.033596) (xy 67.5775 68.972467) (xy 67.611311 68.921472) (xy 67.668639 68.900091) + (xy 67.672878 68.9) (xy 67.758644 68.9) (xy 67.816835 68.918907) (xy 67.852799 68.968407) (xy 67.855742 69.018312) + (xy 67.85183 69.037976) (xy 67.848151 69.06278) (xy 67.84573 69.087359) (xy 67.8445 69.112415) (xy 67.8445 72.488) + (xy 67.825593 72.546191) (xy 67.776093 72.582155) (xy 67.7455 72.587) (xy 67.640001 72.587) (xy 67.64 72.587001) + (xy 67.64 75.3455) (xy 67.621093 75.403691) (xy 67.571593 75.439655) (xy 67.541 75.4445) (xy 66.78174 75.4445) + (xy 66.781738 75.4445) (xy 66.778417 75.444741) (xy 66.77126 75.445) (xy 66.21492 75.445) (xy 66.22265 75.503719) + (xy 66.283911 75.651619) (xy 66.283913 75.651623) (xy 66.381369 75.77863) (xy 66.425767 75.812697) + (xy 66.460423 75.863121) (xy 66.4645 75.891239) (xy 66.4645 76.02826) (xy 66.471118 76.073682) (xy 66.474427 76.096395) + (xy 66.513598 76.17652) (xy 66.522169 76.237102) (xy 66.513598 76.26348) (xy 66.474427 76.343604) + (xy 66.469832 76.375143) (xy 66.4645 76.41174) (xy 66.4645 76.67826) (xy 66.467808 76.700963) (xy 66.474427 76.746395) + (xy 66.517657 76.834822) (xy 66.525802 76.851483) (xy 66.608517 76.934198) (xy 66.644161 76.951623) + (xy 66.713604 76.985572) (xy 66.713605 76.985572) (xy 66.713607 76.985573) (xy 66.78174 76.9955) + (xy 66.892474 76.9955) (xy 66.950665 77.014407) (xy 66.986629 77.063907) (xy 66.986629 77.125093) + (xy 66.971016 77.154767) (xy 66.919142 77.22237) (xy 66.919137 77.222378) (xy 66.86367 77.35629) + (xy 66.863669 77.356291) (xy 66.84475 77.499999) (xy 66.84475 77.5) (xy 66.863669 77.643708) (xy 66.86367 77.643709) + (xy 66.906815 77.747873) (xy 66.919139 77.777625) (xy 67.007379 77.892621) (xy 67.122375 77.980861) + (xy 67.256291 78.03633) (xy 67.4 78.05525) (xy 67.543709 78.03633) (xy 67.677625 77.980861) (xy 67.792621 77.892621) + (xy 67.880861 77.777625) (xy 67.93633 77.643709) (xy 67.95525 77.5) (xy 67.949079 77.453131) (xy 67.93633 77.356291) + (xy 67.880861 77.222375) (xy 67.88086 77.222374) (xy 67.88086 77.222373) (xy 67.835958 77.163856) + (xy 67.815534 77.10618) (xy 67.8155 77.103589) (xy 67.8155 77.0945) (xy 67.834407 77.036309) (xy 67.883907 77.000345) + (xy 67.9145 76.9955) (xy 68.098257 76.9955) (xy 68.09826 76.9955) (xy 68.166393 76.985573) (xy 68.271483 76.934198) + (xy 68.354198 76.851483) (xy 68.405573 76.746393) (xy 68.4155 76.67826) (xy 68.4155 76.59571) (xy 68.434407 76.537519) + (xy 68.483907 76.501555) (xy 68.545093 76.501555) (xy 68.576059 76.520531) (xy 68.576291 76.520184) + (xy 68.667257 76.580964) (xy 68.66726 76.580966) (xy 68.722808 76.592015) (xy 68.740315 76.595498) + (xy 68.74032 76.595498) (xy 68.740326 76.5955) (xy 68.740327 76.5955) (xy 70.408421 76.5955) (xy 70.466612 76.614407) + (xy 70.502576 76.663907) (xy 70.506072 76.681699) (xy 70.506578 76.681633) (xy 70.522649 76.803718) + (xy 70.52265 76.803719) (xy 70.583911 76.951619) (xy 70.583913 76.951623) (xy 70.681368 77.078627) + (xy 70.681372 77.078631) (xy 70.808376 77.176086) (xy 70.80838 77.176088) (xy 70.956275 77.237348) + (xy 70.956283 77.23735) (xy 71.075152 77.252999) (xy 71.539998 77.252999) (xy 71.54 77.252998) (xy 71.54 76.4445) + (xy 71.558907 76.386309) (xy 71.608407 76.350345) (xy 71.639 76.3455) (xy 71.841 76.3455) (xy 71.899191 76.364407) + (xy 71.935155 76.413907) (xy 71.94 76.4445) (xy 71.94 76.834822) (xy 71.923382 76.886285) (xy 71.924341 76.886787) + (xy 71.921413 76.892384) (xy 71.921305 76.892719) (xy 71.92106 76.893057) (xy 71.874852 76.981394) + (xy 71.874848 76.981402) (xy 71.854851 77.04951) (xy 71.854847 77.049526) (xy 71.8445 77.121494) + (xy 71.8445 81.687583) (xy 71.84573 81.712639) (xy 71.848151 81.737218) (xy 71.851831 81.762026) + (xy 71.851832 81.762031) (xy 71.855742 81.781685) (xy 71.848552 81.842446) (xy 71.80702 81.887376) + (xy 71.758645 81.9) (xy 62.609752 81.9) (xy 62.590438 81.898098) (xy 62.57447 81.894921) (xy 62.542775 81.888617) + (xy 62.507089 81.873835) (xy 62.50633 81.873328) (xy 62.474949 81.852359) (xy 62.44764 81.82505) + (xy 62.426163 81.792908) (xy 62.411382 81.757222) (xy 62.401902 81.709561) (xy 62.4 81.690248) (xy 62.4 78.031113) + (xy 62.418907 77.972922) (xy 62.468407 77.936958) (xy 62.529593 77.936958) (xy 62.578251 77.971783) + (xy 62.642454 78.057546) (xy 62.642457 78.057548) (xy 62.642458 78.057549) (xy 62.75767 78.143797) + (xy 62.892511 78.194089) (xy 62.892512 78.194089) (xy 62.892517 78.194091) (xy 62.952127 78.2005) + (xy 63.6005 78.200499) (xy 63.658691 78.219406) (xy 63.694655 78.268906) (xy 63.6995 78.299499) + (xy 63.6995 78.450096) (xy 63.691965 78.48798) (xy 63.663669 78.556293) (xy 63.64475 78.699999) + (xy 63.64475 78.7) (xy 63.663669 78.843708) (xy 63.66367 78.843709) (xy 63.719139 78.977625) (xy 63.807379 79.092621) + (xy 63.922375 79.180861) (xy 64.056291 79.23633) (xy 64.2 79.25525) (xy 64.343709 79.23633) (xy 64.477625 79.180861) + (xy 64.592621 79.092621) (xy 64.680861 78.977625) (xy 64.73633 78.843709) (xy 64.75525 78.7) (xy 64.73633 78.556291) + (xy 64.708034 78.487978) (xy 64.7005 78.450096) (xy 64.7005 78.299499) (xy 64.719407 78.241308) + (xy 64.768907 78.205344) (xy 64.7995 78.200499) (xy 65.247867 78.200499) (xy 65.247872 78.200499) + (xy 65.307483 78.194091) (xy 65.374907 78.168943) (xy 65.442329 78.143797) (xy 65.442329 78.143796) + (xy 65.442331 78.143796) (xy 65.557546 78.057546) (xy 65.643796 77.942331) (xy 65.694091 77.807483) + (xy 65.7005 77.747873) (xy 65.700499 77.002128) (xy 65.694091 76.942517) (xy 65.685253 76.91882) + (xy 65.643797 76.80767) (xy 65.557549 76.692458) (xy 65.557548 76.692457) (xy 65.557546 76.692454) + (xy 65.557541 76.69245) (xy 65.442329 76.606202) (xy 65.307488 76.55591) (xy 65.307483 76.555909) + (xy 65.307481 76.555908) (xy 65.307477 76.555908) (xy 65.276249 76.55255) (xy 65.247873 76.5495) + (xy 65.24787 76.5495) (xy 62.952133 76.5495) (xy 62.952129 76.5495) (xy 62.952128 76.549501) (xy 62.944949 76.550272) + (xy 62.892519 76.555908) (xy 62.892514 76.555909) (xy 62.75767 76.606202) (xy 62.642458 76.69245) + (xy 62.64245 76.692458) (xy 62.578253 76.778215) (xy 62.528244 76.813468) (xy 62.467065 76.812594) + (xy 62.418084 76.775926) (xy 62.4 76.718886) (xy 62.4 75.447891) (xy 62.418907 75.3897) (xy 62.468407 75.353736) + (xy 62.529593 75.353736) (xy 62.550973 75.36363) (xy 62.677474 75.441657) (xy 62.845678 75.497394) + (xy 62.949484 75.508) (xy 63.845999 75.508) (xy 63.846 75.507999) (xy 63.846 74.679001) (xy 64.354 74.679001) + (xy 64.354 75.507999) (xy 64.354001 75.508) (xy 65.250516 75.508) (xy 65.354321 75.497394) (xy 65.522525 75.441657) + (xy 65.673337 75.348635) (xy 65.798635 75.223337) (xy 65.891657 75.072525) (xy 65.900778 75.045) + (xy 66.214919 75.045) (xy 67.239999 75.045) (xy 67.24 75.044999) (xy 67.24 74.795001) (xy 67.239999 74.795) + (xy 66.21492 74.795) (xy 66.22265 74.853718) (xy 66.222651 74.853725) (xy 66.234411 74.882116) (xy 66.23921 74.943113) + (xy 66.234412 74.957882) (xy 66.222649 74.986281) (xy 66.214919 75.045) (xy 65.900778 75.045) (xy 65.947394 74.904321) + (xy 65.958 74.800515) (xy 65.958 74.679001) (xy 65.957999 74.679) (xy 64.354001 74.679) (xy 64.354 74.679001) + (xy 63.846 74.679001) (xy 63.846 74.395) (xy 66.214919 74.395) (xy 67.239999 74.395) (xy 67.24 74.394999) + (xy 67.24 74.145001) (xy 67.239999 74.145) (xy 66.21492 74.145) (xy 66.22265 74.203718) (xy 66.222651 74.203725) + (xy 66.234411 74.232116) (xy 66.23921 74.293113) (xy 66.234412 74.307882) (xy 66.222649 74.336281) + (xy 66.214919 74.395) (xy 63.846 74.395) (xy 63.846 73.342001) (xy 64.354 73.342001) (xy 64.354 74.170999) + (xy 64.354001 74.171) (xy 65.957999 74.171) (xy 65.958 74.170999) (xy 65.958 74.049484) (xy 65.947394 73.945678) + (xy 65.891657 73.777474) (xy 65.871627 73.745) (xy 66.214919 73.745) (xy 67.239999 73.745) (xy 67.24 73.744999) + (xy 67.24 73.495001) (xy 67.239999 73.495) (xy 66.21492 73.495) (xy 66.22265 73.553718) (xy 66.222651 73.553725) + (xy 66.234411 73.582116) (xy 66.23921 73.643113) (xy 66.234412 73.657882) (xy 66.222649 73.686281) + (xy 66.214919 73.745) (xy 65.871627 73.745) (xy 65.798635 73.626662) (xy 65.673337 73.501364) (xy 65.522525 73.408342) + (xy 65.354321 73.352605) (xy 65.250516 73.342) (xy 64.354001 73.342) (xy 64.354 73.342001) (xy 63.846 73.342001) + (xy 63.845999 73.342) (xy 62.949484 73.342) (xy 62.845678 73.352605) (xy 62.677472 73.408343) (xy 62.550972 73.486369) + (xy 62.491519 73.500825) (xy 62.434924 73.477575) (xy 62.402803 73.425499) (xy 62.4 73.402108) (xy 62.4 73.095) + (xy 66.214919 73.095) (xy 67.239999 73.095) (xy 67.24 73.094999) (xy 67.24 72.587001) (xy 67.239999 72.587) + (xy 66.775156 72.587) (xy 66.775151 72.587001) (xy 66.656281 72.602649) (xy 66.65628 72.60265) (xy 66.50838 72.663911) + (xy 66.508376 72.663913) (xy 66.381372 72.761368) (xy 66.381368 72.761372) (xy 66.283913 72.888376) + (xy 66.283911 72.88838) (xy 66.22265 73.036279) (xy 66.214919 73.095) (xy 62.4 73.095) (xy 62.4 69.109751) + (xy 62.401902 69.090438) (xy 62.411382 69.042777) (xy 62.426162 69.007092) (xy 62.447642 68.974946) + (xy 62.474946 68.947642) (xy 62.507092 68.926162) (xy 62.542775 68.911382) (xy 62.568021 68.90636) + (xy 62.590439 68.901902) (xy 62.609752 68.9) (xy 64.927122 68.9) + ) + ) + ) + (zone + (net 4) + (net_name "/Input_Output_Module/+12V") + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-000061e5b198") + (hatch edge 0.508) + (priority 1) + (connect_pads + (clearance 0.25) + ) + (min_thickness 0.254) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.508) + (thermal_bridge_width 0.508) + (smoothing fillet) + (radius 0.2) + ) + (polygon + (pts + (xy 72.1 81.9) (xy 83.6 81.9) (xy 83.6 68.9) (xy 68.1 68.9) (xy 68.1 72.7) (xy 72.1 72.7) (xy 72.1 75.9) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 74.856351 68.920002) (xy 74.902844 68.973658) (xy 74.913151 69.042444) (xy 74.907177 69.087828) + (xy 74.89545 69.1769) (xy 74.914369 69.320607) (xy 74.939909 69.382265) (xy 74.9495 69.430483) (xy 74.9495 69.4735) + (xy 74.929498 69.541621) (xy 74.875842 69.588114) (xy 74.8235 69.5995) (xy 74.302135 69.5995) (xy 74.302114 69.599502) + (xy 74.242519 69.605908) (xy 74.242518 69.605908) (xy 74.107673 69.656201) (xy 74.10767 69.656203) + (xy 73.992453 69.742453) (xy 73.906203 69.85767) (xy 73.906201 69.857673) (xy 73.855909 69.992515) + (xy 73.8495 70.052121) (xy 73.8495 70.797864) (xy 73.849502 70.797885) (xy 73.855908 70.85748) (xy 73.855908 70.857481) + (xy 73.906201 70.992326) (xy 73.906203 70.992329) (xy 73.992453 71.107546) (xy 74.050061 71.150671) + (xy 74.107669 71.193796) (xy 74.107671 71.193796) (xy 74.107673 71.193798) (xy 74.16803 71.216309) + (xy 74.242514 71.24409) (xy 74.242517 71.244091) (xy 74.302127 71.2505) (xy 76.597872 71.250499) + (xy 76.657483 71.244091) (xy 76.792331 71.193796) (xy 76.907546 71.107546) (xy 76.993796 70.992331) + (xy 77.044091 70.857483) (xy 77.0505 70.797873) (xy 77.050499 70.052128) (xy 77.044091 69.992517) + (xy 77.0228 69.935435) (xy 76.993798 69.857673) (xy 76.993796 69.85767) (xy 76.993796 69.857669) + (xy 76.950671 69.800061) (xy 76.907546 69.742453) (xy 76.830591 69.684845) (xy 76.792331 69.656204) + (xy 76.792329 69.656203) (xy 76.792326 69.656201) (xy 76.657483 69.605909) (xy 76.657486 69.605909) + (xy 76.597878 69.5995) (xy 76.597873 69.5995) (xy 76.0765 69.5995) (xy 76.008379 69.579498) (xy 75.961886 69.525842) + (xy 75.9505 69.4735) (xy 75.9505 69.433863) (xy 75.960091 69.385645) (xy 75.961491 69.382265) (xy 75.98703 69.320609) + (xy 76.00595 69.1769) (xy 75.988248 69.042444) (xy 75.999187 68.972298) (xy 76.046315 68.919199) + (xy 76.11317 68.9) (xy 79.846991 68.9) (xy 79.915112 68.920002) (xy 79.961605 68.973658) (xy 79.971709 69.043932) + (xy 79.963401 69.074213) (xy 79.957762 69.087828) (xy 79.943569 69.122092) (xy 79.92465 69.265799) + (xy 79.92465 69.2658) (xy 79.94357 69.409509) (xy 79.944408 69.411532) (xy 79.94526 69.415818) (xy 79.945708 69.417488) + (xy 79.945598 69.417517) (xy 79.954 69.459752) (xy 79.954 70.872494) (xy 79.974707 70.949776) (xy 79.979 70.982383) + (xy 79.979 71.028546) (xy 79.98928 71.099111) (xy 80.042485 71.207944) (xy 80.042488 71.207948) + (xy 80.128151 71.293611) (xy 80.128153 71.293612) (xy 80.236991 71.34682) (xy 80.307551 71.3571) + (xy 80.601448 71.357099) (xy 80.672009 71.34682) (xy 80.676369 71.344688) (xy 80.780844 71.293614) + (xy 80.780848 71.293611) (xy 80.866511 71.207948) (xy 80.866512 71.207947) (xy 80.91972 71.099109) + (xy 80.93 71.028549) (xy 80.929999 70.982379) (xy 80.934292 70.949771) (xy 80.955 70.872492) (xy 80.955 69.582395) + (xy 80.96459 69.534179) (xy 81.01623 69.409509) (xy 81.03515 69.2658) (xy 81.01623 69.122091) (xy 80.996399 69.074215) + (xy 80.988811 69.003628) (xy 81.02059 68.940141) (xy 81.081649 68.903914) (xy 81.112809 68.9) (xy 83.38759 68.9) + (xy 83.412171 68.902421) (xy 83.451953 68.910334) (xy 83.497376 68.929149) (xy 83.520583 68.944656) + (xy 83.555343 68.979416) (xy 83.57085 69.002623) (xy 83.589664 69.048043) (xy 83.597578 69.087825) + (xy 83.6 69.112409) (xy 83.6 81.68759) (xy 83.597578 81.712174) (xy 83.589664 81.751956) (xy 83.57085 81.797376) + (xy 83.555343 81.820583) (xy 83.520583 81.855343) (xy 83.497376 81.87085) (xy 83.451956 81.889664) + (xy 83.412174 81.897578) (xy 83.38759 81.9) (xy 72.31241 81.9) (xy 72.28783 81.897579) (xy 72.27004 81.89404) + (xy 72.248044 81.889665) (xy 72.202623 81.87085) (xy 72.179416 81.855343) (xy 72.144656 81.820583) + (xy 72.129149 81.797376) (xy 72.110334 81.751953) (xy 72.102421 81.712171) (xy 72.1 81.68759) (xy 72.1 77.1215) + (xy 72.120002 77.053379) (xy 72.173658 77.006886) (xy 72.226 76.9955) (xy 72.398255 76.9955) (xy 72.39826 76.9955) + (xy 72.466393 76.985573) (xy 72.571483 76.934198) (xy 72.654198 76.851483) (xy 72.705573 76.746393) + (xy 72.7155 76.67826) (xy 72.7155 76.41174) (xy 72.715499 76.411736) (xy 72.71517 76.40719) (xy 72.717006 76.407056) + (xy 72.725896 76.344378) (xy 72.772286 76.290633) (xy 72.840368 76.2705) (xy 72.941731 76.2705) + (xy 73.009852 76.290502) (xy 73.056345 76.344158) (xy 73.06066 76.354885) (xy 73.072204 76.387876) + (xy 73.072205 76.387878) (xy 73.072206 76.387879) (xy 73.072207 76.387882) (xy 73.125969 76.460727) + (xy 73.152851 76.497152) (xy 73.262114 76.577791) (xy 73.262117 76.577793) (xy 73.271186 76.580966) + (xy 73.290113 76.587588) (xy 73.347805 76.628965) (xy 73.373969 76.694964) (xy 73.3745 76.706518) + (xy 73.3745 77.199435) (xy 73.395763 77.278793) (xy 73.394074 77.349767) (xy 73.35428 77.408563) + (xy 73.349566 77.41227) (xy 73.242453 77.492453) (xy 73.156203 77.60767) (xy 73.156201 77.607673) + (xy 73.105909 77.742515) (xy 73.0995 77.802121) (xy 73.0995 79.197864) (xy 73.099502 79.197885) + (xy 73.105908 79.25748) (xy 73.105908 79.257481) (xy 73.156201 79.392326) (xy 73.156203 79.392329) + (xy 73.242453 79.507546) (xy 73.300061 79.550671) (xy 73.357669 79.593796) (xy 73.357671 79.593796) + (xy 73.357673 79.593798) (xy 73.41803 79.616309) (xy 73.492514 79.64409) (xy 73.492517 79.644091) + (xy 73.552127 79.6505) (xy 74.297872 79.650499) (xy 74.357483 79.644091) (xy 74.492331 79.593796) + (xy 74.607546 79.507546) (xy 74.693796 79.392331) (xy 74.744091 79.257483) (xy 74.7505 79.197873) + (xy 74.750499 77.802128) (xy 74.744091 77.742517) (xy 74.709561 77.649937) (xy 74.693798 77.607673) + (xy 74.693796 77.60767) (xy 74.693796 77.607669) (xy 74.650671 77.550061) (xy 74.607546 77.492453) + (xy 74.532573 77.436329) (xy 74.492331 77.406204) (xy 74.492329 77.406203) (xy 74.492328 77.406202) + (xy 74.439952 77.386667) (xy 74.383116 77.34412) (xy 74.362279 77.301226) (xy 74.34991 77.255062) + (xy 74.300475 77.169438) (xy 74.230562 77.099525) (xy 74.162405 77.031368) (xy 74.128379 76.969056) + (xy 74.1255 76.942273) (xy 74.1255 76.613637) (xy 74.145502 76.545516) (xy 74.176679 76.512257) + (xy 74.19715 76.49715) (xy 74.254725 76.419139) (xy 74.277791 76.387885) (xy 74.277793 76.387881) + (xy 74.293016 76.344378) (xy 74.322646 76.259699) (xy 74.3255 76.229266) (xy 74.3255 75.570734) + (xy 74.3255 75.570733) (xy 74.6745 75.570733) (xy 74.6745 76.229266) (xy 74.677354 76.2597) (xy 74.677355 76.259704) + (xy 74.722206 76.387881) (xy 74.722208 76.387885) (xy 74.802849 76.49715) (xy 74.912114 76.577791) + (xy 74.912116 76.577791) (xy 74.912118 76.577793) (xy 74.938257 76.586939) (xy 74.985736 76.616773) + (xy 75.210834 76.841871) (xy 75.24486 76.904183) (xy 75.246661 76.914519) (xy 75.26367 77.043709) + (xy 75.319137 77.177624) (xy 75.407378 77.292621) (xy 75.522375 77.380862) (xy 75.598204 77.41227) + (xy 75.656291 77.43633) (xy 75.785479 77.453338) (xy 75.850407 77.48206) (xy 75.858128 77.489165) + (xy 76.018676 77.649713) (xy 76.052702 77.712025) (xy 76.054859 77.752276) (xy 76.0495 77.802114) + (xy 76.0495 79.197864) (xy 76.049502 79.197885) (xy 76.055908 79.25748) (xy 76.055908 79.257481) + (xy 76.106201 79.392326) (xy 76.106203 79.392329) (xy 76.192453 79.507546) (xy 76.250061 79.550671) + (xy 76.307669 79.593796) (xy 76.307671 79.593796) (xy 76.307673 79.593798) (xy 76.36803 79.616309) + (xy 76.442514 79.64409) (xy 76.442517 79.644091) (xy 76.502127 79.6505) (xy 77.247872 79.650499) + (xy 77.307483 79.644091) (xy 77.442331 79.593796) (xy 77.557546 79.507546) (xy 77.643796 79.392331) + (xy 77.694091 79.257483) (xy 77.7005 79.197873) (xy 77.700499 77.802128) (xy 77.694091 77.742517) + (xy 77.659561 77.649937) (xy 77.643798 77.607673) (xy 77.643796 77.60767) (xy 77.643796 77.607669) + (xy 77.601521 77.551197) (xy 80.208011 77.551197) (xy 80.208011 77.551198) (xy 80.268597 77.593621) + (xy 80.468092 77.686647) (xy 80.468096 77.686649) (xy 80.680712 77.743619) (xy 80.9 77.762804) (xy 81.119287 77.743619) + (xy 81.331903 77.686649) (xy 81.331907 77.686647) (xy 81.531399 77.593622) (xy 81.591987 77.551197) + (xy 81.591987 77.551196) (xy 80.900001 76.85921) (xy 80.9 76.85921) (xy 80.208011 77.551197) (xy 77.601521 77.551197) + (xy 77.600671 77.550061) (xy 77.557546 77.492453) (xy 77.445482 77.408563) (xy 77.442331 77.406204) + (xy 77.442329 77.406203) (xy 77.442326 77.406201) (xy 77.307483 77.355909) (xy 77.307486 77.355909) + (xy 77.247878 77.3495) (xy 77.247873 77.3495) (xy 76.832727 77.3495) (xy 76.764606 77.329498) (xy 76.743632 77.312595) + (xy 76.389165 76.958128) (xy 76.355139 76.895816) (xy 76.353338 76.885479) (xy 76.352433 76.878603) + (xy 76.33633 76.756291) (xy 76.310928 76.694964) (xy 76.280862 76.622375) (xy 76.192621 76.507378) + (xy 76.183006 76.5) (xy 79.637195 76.5) (xy 79.65638 76.719287) (xy 79.71335 76.931903) (xy 79.713352 76.931907) + (xy 79.806379 77.131403) (xy 79.8488 77.191987) (xy 80.54079 76.499999) (xy 80.494713 76.453922) + (xy 80.55 76.453922) (xy 80.55 76.546078) (xy 80.573852 76.635095) (xy 80.61993 76.714905) (xy 80.685095 76.78007) + (xy 80.764905 76.826148) (xy 80.853922 76.85) (xy 80.946078 76.85) (xy 81.035095 76.826148) (xy 81.114905 76.78007) + (xy 81.18007 76.714905) (xy 81.226148 76.635095) (xy 81.25 76.546078) (xy 81.25 76.499999) (xy 81.25921 76.499999) + (xy 81.25921 76.500001) (xy 81.951196 77.191987) (xy 81.951197 77.191987) (xy 81.993622 77.131399) + (xy 82.086647 76.931907) (xy 82.086649 76.931903) (xy 82.143619 76.719287) (xy 82.162804 76.5) (xy 82.143619 76.280712) + (xy 82.086649 76.068096) (xy 82.086647 76.068092) (xy 81.993619 75.868594) (xy 81.951199 75.808011) + (xy 81.951197 75.808011) (xy 81.25921 76.499999) (xy 81.25 76.499999) (xy 81.25 76.453922) (xy 81.226148 76.364905) + (xy 81.18007 76.285095) (xy 81.114905 76.21993) (xy 81.035095 76.173852) (xy 80.946078 76.15) (xy 80.853922 76.15) + (xy 80.764905 76.173852) (xy 80.685095 76.21993) (xy 80.61993 76.285095) (xy 80.573852 76.364905) + (xy 80.55 76.453922) (xy 80.494713 76.453922) (xy 79.848801 75.80801) (xy 79.806378 75.868598) (xy 79.713352 76.068092) + (xy 79.71335 76.068096) (xy 79.65638 76.280712) (xy 79.637195 76.5) (xy 76.183006 76.5) (xy 76.077625 76.419138) + (xy 76.046789 76.406366) (xy 75.991508 76.361818) (xy 75.969087 76.294455) (xy 75.971911 76.26306) + (xy 75.972644 76.259704) (xy 75.972646 76.259699) (xy 75.9755 76.229266) (xy 75.9755 75.570734) + (xy 75.972646 75.540301) (xy 75.965367 75.5195) (xy 75.940629 75.448801) (xy 80.20801 75.448801) + (xy 80.899999 76.14079) (xy 80.9 76.14079) (xy 81.591987 75.4488) (xy 81.531403 75.406379) (xy 81.331907 75.313352) + (xy 81.331903 75.31335) (xy 81.119287 75.25638) (xy 80.9 75.237195) (xy 80.680712 75.25638) (xy 80.468096 75.31335) + (xy 80.468092 75.313352) (xy 80.268598 75.406378) (xy 80.20801 75.448801) (xy 75.940629 75.448801) + (xy 75.927793 75.412118) (xy 75.927791 75.412114) (xy 75.84715 75.302849) (xy 75.737885 75.222208) + (xy 75.737881 75.222206) (xy 75.609704 75.177355) (xy 75.6097 75.177354) (xy 75.579266 75.1745) + (xy 75.070734 75.1745) (xy 75.070733 75.1745) (xy 75.040299 75.177354) (xy 75.040295 75.177355) + (xy 74.912118 75.222206) (xy 74.912114 75.222208) (xy 74.802849 75.302849) (xy 74.722208 75.412114) + (xy 74.722206 75.412118) (xy 74.677355 75.540295) (xy 74.677354 75.540299) (xy 74.6745 75.570733) + (xy 74.3255 75.570733) (xy 74.322646 75.540301) (xy 74.315367 75.5195) (xy 74.277793 75.412118) + (xy 74.277791 75.412114) (xy 74.19715 75.302849) (xy 74.087885 75.222208) (xy 74.087881 75.222206) + (xy 73.959704 75.177355) (xy 73.9597 75.177354) (xy 73.929266 75.1745) (xy 73.420734 75.1745) (xy 73.420733 75.1745) + (xy 73.390299 75.177354) (xy 73.390295 75.177355) (xy 73.262118 75.222206) (xy 73.262114 75.222208) + (xy 73.152849 75.302849) (xy 73.072208 75.412114) (xy 73.072207 75.412118) (xy 73.064159 75.435115) + (xy 73.022783 75.492806) (xy 72.956783 75.518969) (xy 72.945231 75.5195) (xy 72.84061 75.5195) (xy 72.772489 75.499498) + (xy 72.725996 75.445842) (xy 72.716951 75.382939) (xy 72.71517 75.38281) (xy 72.7155 75.378255) + (xy 72.7155 75.254554) (xy 72.735502 75.186433) (xy 72.764796 75.154591) (xy 72.798632 75.128627) + (xy 72.896082 75.001629) (xy 72.896087 75.001621) (xy 72.95735 74.853718) (xy 72.965081 74.795) + (xy 72.409719 74.795) (xy 72.400612 74.79467) (xy 72.398266 74.7945) (xy 72.39826 74.7945) (xy 72.1 74.7945) + (xy 72.1 74.395) (xy 72.965079 74.395) (xy 72.95735 74.336281) (xy 72.957349 74.33628) (xy 72.949868 74.318218) + (xy 72.942279 74.247628) (xy 72.949868 74.221782) (xy 72.95735 74.203718) (xy 72.965081 74.145) + (xy 72.1 74.145) (xy 72.1 73.750516) (xy 73.592 73.750516) (xy 73.602605 73.854318) (xy 73.602606 73.854321) + (xy 73.658342 74.022525) (xy 73.751365 74.173339) (xy 73.75137 74.173345) (xy 73.876654 74.298629) + (xy 73.87666 74.298634) (xy 74.027474 74.391657) (xy 74.195678 74.447393) (xy 74.195681 74.447394) + (xy 74.299483 74.457999) (xy 74.299483 74.458) (xy 75.196 74.458) (xy 75.704 74.458) (xy 76.600517 74.458) + (xy 76.600516 74.457999) (xy 76.704318 74.447394) (xy 76.704321 74.447393) (xy 76.872525 74.391657) + (xy 77.023339 74.298634) (xy 77.023345 74.298629) (xy 77.148629 74.173345) (xy 77.148634 74.173339) + (xy 77.241657 74.022525) (xy 77.297393 73.854321) (xy 77.297394 73.854318) (xy 77.307999 73.750516) + (xy 77.308 73.750516) (xy 77.308 73.629) (xy 75.704 73.629) (xy 75.704 74.458) (xy 75.196 74.458) + (xy 75.196 73.629) (xy 73.592 73.629) (xy 73.592 73.750516) (xy 72.1 73.750516) (xy 72.1 73.745) + (xy 72.965079 73.745) (xy 72.95735 73.686281) (xy 72.957349 73.68628) (xy 72.949868 73.668218) (xy 72.942279 73.597628) + (xy 72.949868 73.571782) (xy 72.95735 73.553718) (xy 72.965081 73.495) (xy 72.1 73.495) (xy 72.1 73.156776) + (xy 79.7215 73.156776) (xy 79.724267 73.191931) (xy 79.724269 73.191944) (xy 79.768008 73.342493) + (xy 79.847809 73.477428) (xy 79.847814 73.477435) (xy 79.958664 73.588285) (xy 79.958671 73.58829) + (xy 80.093606 73.668091) (xy 80.2295 73.707571) (xy 80.6795 73.707571) (xy 80.815393 73.668091) + (xy 80.950328 73.58829) (xy 80.950335 73.588285) (xy 81.061185 73.477435) (xy 81.06119 73.477428) + (xy 81.140991 73.342493) (xy 81.18473 73.191944) (xy 81.184732 73.191931) (xy 81.187499 73.156776) + (xy 81.1875 73.156775) (xy 81.1875 73.1316) (xy 80.6795 73.1316) (xy 80.6795 73.707571) (xy 80.2295 73.707571) + (xy 80.2295 73.1316) (xy 79.7215 73.1316) (xy 79.7215 73.156776) (xy 72.1 73.156776) (xy 72.1 73.095) + (xy 72.965079 73.095) (xy 72.95735 73.036281) (xy 72.957349 73.03628) (xy 72.942107 72.999483) (xy 73.592 72.999483) + (xy 73.592 73.121) (xy 75.196 73.121) (xy 75.704 73.121) (xy 77.308 73.121) (xy 77.308 72.999483) + (xy 77.297394 72.895681) (xy 77.297393 72.895678) (xy 77.241657 72.727474) (xy 77.197832 72.656423) + (xy 79.7215 72.656423) (xy 79.7215 72.6816) (xy 80.2295 72.6816) (xy 80.6795 72.6816) (xy 81.1875 72.6816) + (xy 81.1875 72.656424) (xy 81.187499 72.656423) (xy 81.184732 72.621268) (xy 81.18473 72.621255) + (xy 81.140991 72.470706) (xy 81.06119 72.335771) (xy 81.061185 72.335764) (xy 80.950335 72.224914) + (xy 80.950328 72.224909) (xy 80.815393 72.145108) (xy 80.6795 72.105627) (xy 80.6795 72.6816) (xy 80.2295 72.6816) + (xy 80.2295 72.105627) (xy 80.093606 72.145108) (xy 79.958671 72.224909) (xy 79.958664 72.224914) + (xy 79.847814 72.335764) (xy 79.847809 72.335771) (xy 79.768008 72.470706) (xy 79.724269 72.621255) + (xy 79.724267 72.621268) (xy 79.7215 72.656423) (xy 77.197832 72.656423) (xy 77.148634 72.57666) + (xy 77.148629 72.576654) (xy 77.023345 72.45137) (xy 77.023339 72.451365) (xy 76.872525 72.358342) + (xy 76.704321 72.302606) (xy 76.704318 72.302605) (xy 76.600516 72.292) (xy 75.704 72.292) (xy 75.704 73.121) + (xy 75.196 73.121) (xy 75.196 72.292) (xy 74.299483 72.292) (xy 74.195681 72.302605) (xy 74.195678 72.302606) + (xy 74.027474 72.358342) (xy 73.87666 72.451365) (xy 73.876654 72.45137) (xy 73.75137 72.576654) + (xy 73.751365 72.57666) (xy 73.658342 72.727474) (xy 73.602606 72.895678) (xy 73.602605 72.895681) + (xy 73.592 72.999483) (xy 72.942107 72.999483) (xy 72.896087 72.888378) (xy 72.896082 72.88837) + (xy 72.79863 72.761369) (xy 72.671629 72.663917) (xy 72.671621 72.663912) (xy 72.523718 72.602649) + (xy 72.404849 72.587) (xy 71.94 72.587) (xy 71.94 72.7) (xy 71.9 72.7) (xy 71.54 72.7) (xy 71.54 72.587) + (xy 71.075154 72.587) (xy 71.075145 72.587001) (xy 70.956281 72.60265) (xy 70.95628 72.60265) (xy 70.808378 72.663912) + (xy 70.808373 72.663915) (xy 70.795283 72.673961) (xy 70.729063 72.699563) (xy 70.718577 72.7) (xy 68.31241 72.7) + (xy 68.28783 72.697579) (xy 68.27004 72.69404) (xy 68.248044 72.689665) (xy 68.202623 72.67085) + (xy 68.179416 72.655343) (xy 68.144656 72.620583) (xy 68.129149 72.597376) (xy 68.110334 72.551953) + (xy 68.102421 72.512171) (xy 68.1 72.48759) (xy 68.1 69.112409) (xy 68.102421 69.087828) (xy 68.110334 69.048046) + (xy 68.129149 69.002623) (xy 68.144656 68.979416) (xy 68.179416 68.944656) (xy 68.202623 68.929149) + (xy 68.248047 68.910334) (xy 68.28783 68.902421) (xy 68.31241 68.9) (xy 74.78823 68.9) + ) + ) + ) + (zone + (net 2) + (net_name "GND") + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-000061e5b19e") + (hatch edge 0.508) + (priority 2) + (connect_pads + (clearance 0.25) + ) + (min_thickness 0.2) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.508) + (thermal_bridge_width 0.508) + ) + (polygon + (pts + (xy 111.5 85.1) (xy 111.5 98.7) (xy 100.2 98.7) (xy 100.2 100.2) (xy 96.3 100.2) (xy 96.3 109.3) + (xy 90.5 109.3) (xy 90.5 130.8) (xy 65.9 130.7) (xy 65.9 105.9) (xy 93.7 105.9) (xy 93.7 105.5) + (xy 86.3 105.5) (xy 86 105.5) (xy 81.8 105.5) (xy 80.6 105.5) (xy 80.6 85) + ) + ) + (polygon + (pts + (xy 91.8 103.2) (xy 91.8 104.7) (xy 93.7 104.7) (xy 93.700001 103.2) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 83.17806 85.008343) (xy 83.23619 85.027438) (xy 83.271993 85.077054) (xy 83.271795 85.138239) + (xy 83.270498 85.141938) (xy 83.248506 85.2009) (xy 83.248504 85.200911) (xy 83.242 85.261412) (xy 83.242 85.555999) + (xy 83.242001 85.556) (xy 88.057999 85.556) (xy 88.058 85.555999) (xy 88.058 85.261412) (xy 88.051495 85.200911) + (xy 88.051493 85.200904) (xy 88.035476 85.157959) (xy 88.032856 85.09683) (xy 88.066666 85.045835) + (xy 88.123994 85.024453) (xy 88.128499 85.024364) (xy 89.270707 85.02806) (xy 89.328836 85.047155) + (xy 89.364639 85.096771) (xy 89.364441 85.157956) (xy 89.363145 85.161654) (xy 89.348505 85.200905) + (xy 89.348504 85.200911) (xy 89.342 85.261412) (xy 89.342 85.555999) (xy 89.342001 85.556) (xy 94.157999 85.556) + (xy 94.158 85.555999) (xy 94.158 85.261412) (xy 94.151495 85.200911) (xy 94.151493 85.200904) (xy 94.142848 85.177724) + (xy 94.140227 85.116595) (xy 94.174038 85.0656) (xy 94.231366 85.044218) (xy 94.235873 85.044129) + (xy 95.263473 85.047454) (xy 95.321602 85.066549) (xy 95.357405 85.116165) (xy 95.357207 85.17735) + (xy 95.355912 85.181046) (xy 95.348505 85.200905) (xy 95.348504 85.200911) (xy 95.342 85.261412) + (xy 95.342 85.555999) (xy 95.342001 85.556) (xy 100.157999 85.556) (xy 100.158 85.555999) (xy 100.158 85.261412) + (xy 100.151495 85.200911) (xy 100.151493 85.200903) (xy 100.1501 85.197167) (xy 100.147478 85.136038) + (xy 100.181288 85.085042) (xy 100.238615 85.063659) (xy 100.243126 85.063569) (xy 101.256241 85.066848) + (xy 101.314369 85.085943) (xy 101.350172 85.135559) (xy 101.349974 85.196744) (xy 101.348681 85.200435) + (xy 101.348506 85.200903) (xy 101.348504 85.200911) (xy 101.342 85.261412) (xy 101.342 85.555999) + (xy 101.342001 85.556) (xy 106.157999 85.556) (xy 106.158 85.555999) (xy 106.158 85.261412) (xy 106.150833 85.194747) + (xy 106.153259 85.194486) (xy 106.157417 85.143816) (xy 106.197308 85.097423) (xy 106.249072 85.083006) + (xy 107.25094 85.086248) (xy 107.309067 85.105343) (xy 107.34487 85.154959) (xy 107.34905 85.195828) + (xy 107.342 85.26141) (xy 107.342 85.555999) (xy 107.342001 85.556) (xy 110.945 85.556) (xy 111.003191 85.574907) + (xy 111.039155 85.624407) (xy 111.044 85.655) (xy 111.044 89.257999) (xy 111.044001 89.258) (xy 111.338585 89.258) + (xy 111.390416 89.252427) (xy 111.450295 89.265005) (xy 111.491344 89.310377) (xy 111.5 89.35086) + (xy 111.5 90.349139) (xy 111.481093 90.40733) (xy 111.431593 90.443294) (xy 111.390418 90.447572) + (xy 111.338587 90.442) (xy 111.044001 90.442) (xy 111.044 90.442001) (xy 111.044 95.257999) (xy 111.044001 95.258) + (xy 111.338585 95.258) (xy 111.390416 95.252427) (xy 111.450295 95.265005) (xy 111.491344 95.310377) + (xy 111.5 95.35086) (xy 111.5 96.349139) (xy 111.481093 96.40733) (xy 111.431593 96.443294) (xy 111.390418 96.447572) + (xy 111.338587 96.442) (xy 111.044001 96.442) (xy 111.044 96.442001) (xy 111.044 98.7) (xy 110.536 98.7) + (xy 110.536 96.442001) (xy 110.535999 96.442) (xy 110.241413 96.442) (xy 110.180911 96.448504) (xy 110.180901 96.448506) + (xy 110.044039 96.499552) (xy 109.9271 96.587092) (xy 109.927092 96.5871) (xy 109.839552 96.704039) + (xy 109.788506 96.840901) (xy 109.788504 96.840911) (xy 109.782 96.901412) (xy 109.782 98.601) (xy 109.763093 98.659191) + (xy 109.713593 98.695155) (xy 109.683 98.7) (xy 108.057911 98.7) (xy 108.008411 98.686736) (xy 107.94494 98.650091) + (xy 107.944934 98.650088) (xy 107.897185 98.637294) (xy 107.897184 98.637294) (xy 107.849438 98.6245) + (xy 107.849436 98.6245) (xy 107.849435 98.6245) (xy 103.070692 98.6245) (xy 103.012501 98.605593) + (xy 102.976537 98.556093) (xy 102.974468 98.546067) (xy 102.973931 98.546185) (xy 102.972646 98.540305) + (xy 102.972646 98.540301) (xy 102.927793 98.412118) (xy 102.885671 98.355045) (xy 102.847154 98.302855) + (xy 102.847152 98.302853) (xy 102.84715 98.30285) (xy 102.847146 98.302847) (xy 102.847144 98.302845) + (xy 102.737883 98.222207) (xy 102.609703 98.177355) (xy 102.609694 98.177353) (xy 102.579274 98.1745) + (xy 102.579266 98.1745) (xy 102.070734 98.1745) (xy 102.070725 98.1745) (xy 102.040305 98.177353) + (xy 102.040296 98.177355) (xy 101.912116 98.222207) (xy 101.802855 98.302845) (xy 101.802845 98.302855) + (xy 101.722207 98.412116) (xy 101.677355 98.540296) (xy 101.677353 98.540305) (xy 101.6745 98.570725) + (xy 101.6745 98.601) (xy 101.655593 98.659191) (xy 101.606093 98.695155) (xy 101.5755 98.7) (xy 101.4245 98.7) + (xy 101.366309 98.681093) (xy 101.330345 98.631593) (xy 101.3255 98.601) (xy 101.3255 98.570727) + (xy 101.325499 98.570725) (xy 101.324127 98.556093) (xy 101.322646 98.540301) (xy 101.277793 98.412118) + (xy 101.235671 98.355045) (xy 101.197154 98.302855) (xy 101.197152 98.302853) (xy 101.19715 98.30285) + (xy 101.197146 98.302847) (xy 101.197144 98.302845) (xy 101.087883 98.222207) (xy 100.959703 98.177355) + (xy 100.959694 98.177353) (xy 100.929274 98.1745) (xy 100.929266 98.1745) (xy 100.420734 98.1745) + (xy 100.420725 98.1745) (xy 100.390305 98.177353) (xy 100.390296 98.177355) (xy 100.262116 98.222207) + (xy 100.152855 98.302845) (xy 100.152844 98.302856) (xy 100.113441 98.356245) (xy 100.063673 98.391837) + (xy 100.00249 98.391379) (xy 99.953261 98.355045) (xy 99.93927 98.326909) (xy 99.925369 98.282299) + (xy 99.925366 98.282292) (xy 99.836419 98.135157) (xy 99.714842 98.01358) (xy 99.567707 97.924633) + (xy 99.567699 97.92463) (xy 99.403563 97.873483) (xy 99.403557 97.873481) (xy 99.33223 97.867) (xy 99.254001 97.867) + (xy 99.254 97.867001) (xy 99.254 98.93) (xy 99.235093 98.988191) (xy 99.185593 99.024155) (xy 99.155 99.029) + (xy 98.017002 99.029) (xy 98.017001 99.029001) (xy 98.017001 99.032232) (xy 98.023481 99.103556) + (xy 98.023483 99.103562) (xy 98.07463 99.267699) (xy 98.074633 99.267707) (xy 98.16358 99.414842) + (xy 98.285157 99.536419) (xy 98.432292 99.625366) (xy 98.432302 99.62537) (xy 98.489546 99.643208) + (xy 98.539478 99.67857) (xy 98.559087 99.736528) (xy 98.540884 99.794943) (xy 98.516819 99.816083) + (xy 98.518087 99.817801) (xy 98.402855 99.902845) (xy 98.402845 99.902855) (xy 98.332874 99.997663) + (xy 98.283106 100.033256) (xy 98.266794 100.036883) (xy 98.266357 100.037) (xy 98.266356 100.037) + (xy 98.177212 100.060886) (xy 98.101643 100.104516) (xy 98.097285 100.107032) (xy 98.045746 100.158571) + (xy 97.991229 100.186348) (xy 97.933904 100.178291) (xy 97.885547 100.155741) (xy 97.861842 100.15262) + (xy 97.838139 100.1495) (xy 97.838137 100.1495) (xy 96.461865 100.1495) (xy 96.461854 100.149501) + (xy 96.414456 100.15574) (xy 96.375419 100.173943) (xy 96.339432 100.190724) (xy 96.300686 100.199314) + (xy 96.287325 100.212675) (xy 96.281093 100.231857) (xy 96.271004 100.243669) (xy 96.229254 100.285419) + (xy 96.180741 100.389455) (xy 96.1745 100.436862) (xy 96.1745 100.663133) (xy 96.174501 100.663145) + (xy 96.18074 100.710541) (xy 96.180741 100.710547) (xy 96.202944 100.758162) (xy 96.2104 100.818891) + (xy 96.202944 100.841838) (xy 96.180743 100.889448) (xy 96.180741 100.889456) (xy 96.1745 100.936862) + (xy 96.1745 101.163133) (xy 96.174501 101.163145) (xy 96.18074 101.210541) (xy 96.180741 101.210547) + (xy 96.202944 101.258162) (xy 96.2104 101.318891) (xy 96.202944 101.341838) (xy 96.180743 101.389448) + (xy 96.180741 101.389456) (xy 96.1745 101.436862) (xy 96.1745 101.663133) (xy 96.174501 101.663145) + (xy 96.18074 101.710541) (xy 96.180741 101.710547) (xy 96.202944 101.758162) (xy 96.2104 101.818891) + (xy 96.202944 101.841838) (xy 96.180743 101.889448) (xy 96.180741 101.889453) (xy 96.180741 101.889455) + (xy 96.176372 101.922646) (xy 96.1745 101.936862) (xy 96.1745 102.163133) (xy 96.174501 102.163145) + (xy 96.18074 102.210541) (xy 96.180741 102.210547) (xy 96.202944 102.258162) (xy 96.2104 102.318891) + (xy 96.202944 102.341838) (xy 96.180743 102.389448) (xy 96.180741 102.389456) (xy 96.1745 102.436862) + (xy 96.1745 102.663133) (xy 96.174501 102.663145) (xy 96.18074 102.710541) (xy 96.180741 102.710547) + (xy 96.202944 102.758162) (xy 96.2104 102.818891) (xy 96.202944 102.841838) (xy 96.180743 102.889448) + (xy 96.180741 102.889456) (xy 96.1745 102.936862) (xy 96.1745 103.163133) (xy 96.174501 103.163145) + (xy 96.18074 103.210541) (xy 96.180741 103.210547) (xy 96.202944 103.258162) (xy 96.2104 103.318891) + (xy 96.202944 103.341838) (xy 96.180743 103.389448) (xy 96.180741 103.389453) (xy 96.180741 103.389455) + (xy 96.17729 103.415673) (xy 96.1745 103.436862) (xy 96.1745 103.663133) (xy 96.174501 103.663145) + (xy 96.18074 103.710541) (xy 96.180741 103.710547) (xy 96.202944 103.758162) (xy 96.2104 103.818891) + (xy 96.202944 103.841838) (xy 96.180743 103.889448) (xy 96.180741 103.889456) (xy 96.1745 103.936862) + (xy 96.1745 104.163133) (xy 96.174501 104.163145) (xy 96.18074 104.210544) (xy 96.18074 104.210546) + (xy 96.229251 104.314576) (xy 96.229252 104.314577) (xy 96.229253 104.314579) (xy 96.271005 104.356331) + (xy 96.298781 104.410846) (xy 96.3 104.426333) (xy 96.3 106.991464) (xy 96.281093 107.049655) (xy 96.231593 107.085619) + (xy 96.201786 107.090461) (xy 95 107.1) (xy 94.983579 109.201773) (xy 94.964218 109.259815) (xy 94.914438 109.295391) + (xy 94.884582 109.3) (xy 90.5 109.3) (xy 90.5 109.300001) (xy 90.5 128.883) (xy 90.481093 128.941191) + (xy 90.431593 128.977155) (xy 90.401 128.982) (xy 89.801413 128.982) (xy 89.740911 128.988504) (xy 89.740901 128.988506) + (xy 89.604039 129.039552) (xy 89.4871 129.127092) (xy 89.487092 129.1271) (xy 89.399552 129.244039) + (xy 89.348506 129.380901) (xy 89.348504 129.380911) (xy 89.342 129.441412) (xy 89.342 129.735999) + (xy 89.342001 129.736) (xy 90.5 129.736) (xy 90.5 130.244) (xy 89.342001 130.244) (xy 89.342 130.244001) + (xy 89.342 130.538587) (xy 89.348504 130.599088) (xy 89.348506 130.599099) (xy 89.371758 130.661439) + (xy 89.374378 130.722568) (xy 89.340567 130.773562) (xy 89.283239 130.794944) (xy 89.278598 130.795034) + (xy 88.12235 130.790334) (xy 88.064236 130.77119) (xy 88.028474 130.721545) (xy 88.028723 130.66036) + (xy 88.029994 130.656737) (xy 88.051494 130.599092) (xy 88.051495 130.599088) (xy 88.058 130.538587) + (xy 88.058 130.244001) (xy 88.057999 130.244) (xy 83.242001 130.244) (xy 83.242 130.244001) (xy 83.242 130.538587) + (xy 83.248504 130.599088) (xy 83.248505 130.599095) (xy 83.262496 130.636606) (xy 83.265115 130.697735) + (xy 83.231303 130.748729) (xy 83.173975 130.77011) (xy 83.169334 130.7702) (xy 82.131432 130.76598) + (xy 82.073319 130.746836) (xy 82.037557 130.697191) (xy 82.037806 130.636006) (xy 82.039078 130.632382) + (xy 82.051493 130.599096) (xy 82.051495 130.599088) (xy 82.058 130.538587) (xy 82.058 130.244001) + (xy 82.057999 130.244) (xy 77.242001 130.244) (xy 77.242 130.244001) (xy 77.242 130.538587) (xy 77.248504 130.599088) + (xy 77.248506 130.599098) (xy 77.253385 130.612179) (xy 77.256003 130.673309) (xy 77.222191 130.724302) + (xy 77.164862 130.745682) (xy 77.160224 130.745772) (xy 76.140516 130.741627) (xy 76.082402 130.722483) + (xy 76.04664 130.672838) (xy 76.046889 130.611653) (xy 76.048163 130.608024) (xy 76.051494 130.599095) + (xy 76.051495 130.599088) (xy 76.058 130.538587) (xy 76.058 130.244001) (xy 76.057999 130.244) (xy 71.242001 130.244) + (xy 71.242 130.244001) (xy 71.242 130.538587) (xy 71.248504 130.599091) (xy 71.248619 130.599575) + (xy 71.248591 130.599903) (xy 71.249167 130.605252) (xy 71.248143 130.605362) (xy 71.243605 130.660555) + (xy 71.203705 130.706941) (xy 71.151872 130.721348) (xy 70.148288 130.717268) (xy 70.090174 130.698124) + (xy 70.054412 130.648479) (xy 70.052737 130.605456) (xy 70.050833 130.605252) (xy 70.058 130.538587) + (xy 70.058 130.244001) (xy 70.057999 130.244) (xy 66.455 130.244) (xy 66.396809 130.225093) (xy 66.360845 130.175593) + (xy 66.356 130.145) (xy 66.356 128.524001) (xy 66.864 128.524001) (xy 66.864 129.735999) (xy 66.864001 129.736) + (xy 68.075999 129.736) (xy 68.076 129.735999) (xy 68.076 128.982001) (xy 68.584 128.982001) (xy 68.584 129.735999) + (xy 68.584001 129.736) (xy 70.057999 129.736) (xy 70.058 129.735999) (xy 70.058 129.441412) (xy 71.242 129.441412) + (xy 71.242 129.735999) (xy 71.242001 129.736) (xy 73.395999 129.736) (xy 73.396 129.735999) (xy 73.396 128.982001) + (xy 73.904 128.982001) (xy 73.904 129.735999) (xy 73.904001 129.736) (xy 76.057999 129.736) (xy 76.058 129.735999) + (xy 76.058 129.441412) (xy 77.242 129.441412) (xy 77.242 129.735999) (xy 77.242001 129.736) (xy 79.395999 129.736) + (xy 79.396 129.735999) (xy 79.396 128.982001) (xy 79.904 128.982001) (xy 79.904 129.735999) (xy 79.904001 129.736) + (xy 82.057999 129.736) (xy 82.058 129.735999) (xy 82.058 129.441412) (xy 83.242 129.441412) (xy 83.242 129.735999) + (xy 83.242001 129.736) (xy 85.395999 129.736) (xy 85.396 129.735999) (xy 85.396 128.982001) (xy 85.904 128.982001) + (xy 85.904 129.735999) (xy 85.904001 129.736) (xy 88.057999 129.736) (xy 88.058 129.735999) (xy 88.058 129.441412) + (xy 88.051495 129.380911) (xy 88.051493 129.380901) (xy 88.000447 129.244039) (xy 87.912907 129.1271) + (xy 87.912899 129.127092) (xy 87.79596 129.039552) (xy 87.659098 128.988506) (xy 87.659088 128.988504) + (xy 87.598587 128.982) (xy 85.904001 128.982) (xy 85.904 128.982001) (xy 85.396 128.982001) (xy 85.395999 128.982) + (xy 83.701413 128.982) (xy 83.640911 128.988504) (xy 83.640901 128.988506) (xy 83.504039 129.039552) + (xy 83.3871 129.127092) (xy 83.387092 129.1271) (xy 83.299552 129.244039) (xy 83.248506 129.380901) + (xy 83.248504 129.380911) (xy 83.242 129.441412) (xy 82.058 129.441412) (xy 82.051495 129.380911) + (xy 82.051493 129.380901) (xy 82.000447 129.244039) (xy 81.912907 129.1271) (xy 81.912899 129.127092) + (xy 81.79596 129.039552) (xy 81.659098 128.988506) (xy 81.659088 128.988504) (xy 81.598587 128.982) + (xy 79.904001 128.982) (xy 79.904 128.982001) (xy 79.396 128.982001) (xy 79.395999 128.982) (xy 77.701413 128.982) + (xy 77.640911 128.988504) (xy 77.640901 128.988506) (xy 77.504039 129.039552) (xy 77.3871 129.127092) + (xy 77.387092 129.1271) (xy 77.299552 129.244039) (xy 77.248506 129.380901) (xy 77.248504 129.380911) + (xy 77.242 129.441412) (xy 76.058 129.441412) (xy 76.051495 129.380911) (xy 76.051493 129.380901) + (xy 76.000447 129.244039) (xy 75.912907 129.1271) (xy 75.912899 129.127092) (xy 75.79596 129.039552) + (xy 75.659098 128.988506) (xy 75.659088 128.988504) (xy 75.598587 128.982) (xy 73.904001 128.982) + (xy 73.904 128.982001) (xy 73.396 128.982001) (xy 73.395999 128.982) (xy 71.701413 128.982) (xy 71.640911 128.988504) + (xy 71.640901 128.988506) (xy 71.504039 129.039552) (xy 71.3871 129.127092) (xy 71.387092 129.1271) + (xy 71.299552 129.244039) (xy 71.248506 129.380901) (xy 71.248504 129.380911) (xy 71.242 129.441412) + (xy 70.058 129.441412) (xy 70.051495 129.380911) (xy 70.051493 129.380901) (xy 70.000447 129.244039) + (xy 69.912907 129.1271) (xy 69.912899 129.127092) (xy 69.79596 129.039552) (xy 69.659098 128.988506) + (xy 69.659088 128.988504) (xy 69.598587 128.982) (xy 68.584001 128.982) (xy 68.584 128.982001) (xy 68.076 128.982001) + (xy 68.075999 128.982) (xy 67.717 128.982) (xy 67.658809 128.963093) (xy 67.622845 128.913593) (xy 67.618 128.883) + (xy 67.618 128.524001) (xy 67.617999 128.524) (xy 66.864001 128.524) (xy 66.864 128.524001) (xy 66.356 128.524001) + (xy 66.356 128.115) (xy 66.374907 128.056809) (xy 66.424407 128.020845) (xy 66.455 128.016) (xy 67.617999 128.016) + (xy 67.618 128.015999) (xy 67.618 127.001412) (xy 67.611495 126.940911) (xy 67.611493 126.940903) + (xy 67.560101 126.803114) (xy 67.557481 126.741985) (xy 67.582852 126.698517) (xy 70.432952 123.848418) + (xy 70.482186 123.774731) (xy 70.515084 123.725497) (xy 70.571658 123.588915) (xy 70.6005 123.44392) + (xy 70.6005 121.699499) (xy 70.619407 121.641308) (xy 70.668907 121.605344) (xy 70.6995 121.600499) + (xy 70.897867 121.600499) (xy 70.897872 121.600499) (xy 70.957483 121.594091) (xy 71.024907 121.568943) + (xy 71.092329 121.543797) (xy 71.092329 121.543796) (xy 71.092331 121.543796) (xy 71.207546 121.457546) + (xy 71.293796 121.342331) (xy 71.344091 121.207483) (xy 71.350216 121.150514) (xy 72.391999 121.150514) + (xy 72.402605 121.254321) (xy 72.458342 121.422525) (xy 72.551364 121.573337) (xy 72.676662 121.698635) + (xy 72.827474 121.791657) (xy 72.995678 121.847394) (xy 73.099484 121.858) (xy 73.895999 121.858) + (xy 73.896 121.857999) (xy 73.896 120.454001) (xy 74.404 120.454001) (xy 74.404 121.857999) (xy 74.404001 121.858) + (xy 75.200516 121.858) (xy 75.304321 121.847394) (xy 75.472525 121.791657) (xy 75.623337 121.698635) + (xy 75.748635 121.573337) (xy 75.841657 121.422525) (xy 75.897394 121.254321) (xy 75.908 121.150514) + (xy 75.908 120.454001) (xy 75.907999 120.454) (xy 74.404001 120.454) (xy 74.404 120.454001) (xy 73.896 120.454001) + (xy 73.895999 120.454) (xy 72.392001 120.454) (xy 72.392 120.454001) (xy 72.392 121.150514) (xy 72.391999 121.150514) + (xy 71.350216 121.150514) (xy 71.3505 121.147873) (xy 71.350499 119.252128) (xy 71.350214 119.249481) + (xy 72.392 119.249481) (xy 72.392 119.945999) (xy 72.392001 119.946) (xy 73.895999 119.946) (xy 73.896 119.945999) + (xy 73.896 118.542001) (xy 74.404 118.542001) (xy 74.404 119.945999) (xy 74.404001 119.946) (xy 75.907999 119.946) + (xy 75.908 119.945999) (xy 75.908 119.249481) (xy 75.897394 119.145678) (xy 75.841657 118.977474) + (xy 75.748635 118.826662) (xy 75.623337 118.701364) (xy 75.472525 118.608342) (xy 75.304321 118.552605) + (xy 75.200516 118.542) (xy 74.404001 118.542) (xy 74.404 118.542001) (xy 73.896 118.542001) (xy 73.895999 118.542) + (xy 73.099484 118.542) (xy 72.995678 118.552605) (xy 72.827474 118.608342) (xy 72.676662 118.701364) + (xy 72.551364 118.826662) (xy 72.458342 118.977474) (xy 72.402605 119.145678) (xy 72.392 119.249481) + (xy 71.350214 119.249481) (xy 71.344091 119.192517) (xy 71.308078 119.09596) (xy 71.293797 119.05767) + (xy 71.207549 118.942458) (xy 71.207548 118.942457) (xy 71.207546 118.942454) (xy 71.150167 118.8995) + (xy 71.092329 118.856202) (xy 70.957488 118.80591) (xy 70.957483 118.805909) (xy 70.957481 118.805908) + (xy 70.957477 118.805908) (xy 70.926249 118.80255) (xy 70.897873 118.7995) (xy 70.89787 118.7995) + (xy 70.6995 118.7995) (xy 70.641309 118.780593) (xy 70.605345 118.731093) (xy 70.6005 118.7005) + (xy 70.6005 116.556085) (xy 70.6005 116.556084) (xy 70.571658 116.411089) (xy 70.515084 116.274507) + (xy 70.432951 116.151586) (xy 70.432949 116.151584) (xy 70.328416 116.04705) (xy 70.328416 116.047051) + (xy 67.698414 113.417048) (xy 67.624727 113.367813) (xy 67.575493 113.334916) (xy 67.575494 113.334916) + (xy 67.575492 113.334915) (xy 67.545207 113.322371) (xy 67.498682 113.282634) (xy 67.484398 113.223139) + (xy 67.50384 113.171578) (xy 67.560447 113.09596) (xy 67.611493 112.959098) (xy 67.611495 112.959088) + (xy 67.618 112.898587) (xy 67.618 111.204001) (xy 67.617999 111.204) (xy 66.455 111.204) (xy 66.396809 111.185093) + (xy 66.360845 111.135593) (xy 66.356 111.105) (xy 66.356 108.542001) (xy 66.864 108.542001) (xy 66.864 110.695999) + (xy 66.864001 110.696) (xy 67.617999 110.696) (xy 67.618 110.695999) (xy 67.618 109.001412) (xy 67.611495 108.940911) + (xy 67.611493 108.940901) (xy 67.560447 108.804039) (xy 67.472907 108.6871) (xy 67.472899 108.687092) + (xy 67.35596 108.599552) (xy 67.219098 108.548506) (xy 67.219088 108.548504) (xy 67.158587 108.542) + (xy 66.864001 108.542) (xy 66.864 108.542001) (xy 66.356 108.542001) (xy 66.355999 108.542) (xy 66.06141 108.542) + (xy 66.060081 108.542143) (xy 66.059809 108.542085) (xy 66.058764 108.542142) (xy 66.058749 108.541863) + (xy 66.000203 108.529563) (xy 65.959154 108.484191) (xy 65.9505 108.44371) (xy 65.9505 107.356289) + (xy 65.969407 107.298098) (xy 66.018907 107.262134) (xy 66.058756 107.257999) (xy 66.058764 107.257858) + (xy 66.059655 107.257905) (xy 66.060106 107.257859) (xy 66.061415 107.258) (xy 66.355999 107.258) + (xy 66.356 107.257999) (xy 66.356 105.9) (xy 66.864 105.9) (xy 66.864 107.257999) (xy 66.864001 107.258) + (xy 67.158587 107.258) (xy 67.219088 107.251495) (xy 67.219098 107.251493) (xy 67.35596 107.200447) + (xy 67.472899 107.112907) (xy 67.472907 107.112899) (xy 67.560447 106.99596) (xy 67.611493 106.859098) + (xy 67.611495 106.859088) (xy 67.618 106.798587) (xy 67.618 105.999) (xy 67.636907 105.940809) (xy 67.686407 105.904845) + (xy 67.717 105.9) (xy 72.801 105.9) (xy 72.859191 105.918907) (xy 72.895155 105.968407) (xy 72.9 105.999) + (xy 72.9 109.4) (xy 86.7 109.5) (xy 86.7 109.499999) (xy 86.714444 107.579001) (xy 90.542 107.579001) + (xy 90.542 107.700515) (xy 90.552605 107.804321) (xy 90.608342 107.972525) (xy 90.701364 108.123337) + (xy 90.826662 108.248635) (xy 90.977474 108.341657) (xy 91.145678 108.397394) (xy 91.249484 108.408) + (xy 92.145999 108.408) (xy 92.146 108.407999) (xy 92.146 107.579001) (xy 92.654 107.579001) (xy 92.654 108.407999) + (xy 92.654001 108.408) (xy 93.550516 108.408) (xy 93.654321 108.397394) (xy 93.822525 108.341657) + (xy 93.973337 108.248635) (xy 94.098635 108.123337) (xy 94.191657 107.972525) (xy 94.247394 107.804321) + (xy 94.258 107.700515) (xy 94.258 107.579001) (xy 94.257999 107.579) (xy 92.654001 107.579) (xy 92.654 107.579001) + (xy 92.146 107.579001) (xy 92.145999 107.579) (xy 90.542001 107.579) (xy 90.542 107.579001) (xy 86.714444 107.579001) + (xy 86.719177 106.949484) (xy 90.542 106.949484) (xy 90.542 107.070999) (xy 90.542001 107.071) (xy 92.145999 107.071) + (xy 92.146 107.070999) (xy 92.146 106.242001) (xy 92.654 106.242001) (xy 92.654 107.070999) (xy 92.654001 107.071) + (xy 94.257999 107.071) (xy 94.258 107.070999) (xy 94.258 106.949484) (xy 94.247394 106.845678) (xy 94.191657 106.677474) + (xy 94.098635 106.526662) (xy 93.973337 106.401364) (xy 93.822525 106.308342) (xy 93.654321 106.252605) + (xy 93.550516 106.242) (xy 92.654001 106.242) (xy 92.654 106.242001) (xy 92.146 106.242001) (xy 92.145999 106.242) + (xy 91.249484 106.242) (xy 91.145678 106.252605) (xy 90.977474 106.308342) (xy 90.826662 106.401364) + (xy 90.701364 106.526662) (xy 90.608342 106.677474) (xy 90.552605 106.845678) (xy 90.542 106.949484) + (xy 86.719177 106.949484) (xy 86.726329 105.998256) (xy 86.745673 105.940209) (xy 86.795442 105.904618) + (xy 86.825326 105.9) (xy 93.699999 105.9) (xy 93.7 105.9) (xy 93.7 105.5) (xy 93.699999 105.5) (xy 91.434572 105.5) + (xy 91.376381 105.481093) (xy 91.340417 105.431593) (xy 91.340417 105.370407) (xy 91.350311 105.349027) + (xy 91.366657 105.322525) (xy 91.422394 105.154321) (xy 91.433 105.050515) (xy 91.433 105.004001) + (xy 91.432999 105.004) (xy 88.967001 105.004) (xy 88.967 105.004001) (xy 88.967 105.050515) (xy 88.977605 105.154321) + (xy 89.033342 105.322525) (xy 89.049689 105.349027) (xy 89.064145 105.40848) (xy 89.040895 105.465076) + (xy 88.988819 105.497197) (xy 88.965428 105.5) (xy 86.829822 105.5) (xy 86.771631 105.481093) (xy 86.735667 105.431593) + (xy 86.730825 105.400256) (xy 86.744696 103.555314) (xy 86.76404 103.49727) (xy 86.813809 103.461679) + (xy 86.874993 103.462139) (xy 86.879146 103.463688) (xy 86.88004 103.463959) (xy 86.880048 103.463963) + (xy 86.940471 103.475981) (xy 87.000893 103.488) (xy 87.000894 103.488) (xy 89.375185 103.488) (xy 89.433376 103.506907) + (xy 89.434514 103.507747) (xy 89.482667 103.543795) (xy 89.482668 103.543795) (xy 89.482669 103.543796) + (xy 89.557045 103.571536) (xy 89.604956 103.609584) (xy 89.621355 103.668531) (xy 89.599974 103.725859) + (xy 89.553587 103.758268) (xy 89.402473 103.808343) (xy 89.251662 103.901364) (xy 89.126364 104.026662) + (xy 89.033342 104.177474) (xy 88.977605 104.345678) (xy 88.967 104.449484) (xy 88.967 104.495999) + (xy 88.967001 104.496) (xy 91.432999 104.496) (xy 91.433 104.495999) (xy 91.433 104.449484) (xy 91.422394 104.345678) + (xy 91.366657 104.177474) (xy 91.273635 104.026662) (xy 91.148337 103.901364) (xy 90.997526 103.808343) + (xy 90.846412 103.758268) (xy 90.797123 103.722016) (xy 90.778555 103.663716) (xy 90.797801 103.605637) + (xy 90.842954 103.571536) (xy 90.917331 103.543796) (xy 91.032546 103.457546) (xy 91.032551 103.457538) + (xy 91.035595 103.454496) (xy 91.090112 103.426719) (xy 91.105599 103.4255) (xy 91.8 103.4255) (xy 91.8 103.7) + (xy 91.621843 103.7) (xy 91.632853 103.783627) (xy 91.631255 103.783837) (xy 91.631255 103.816162) + (xy 91.632853 103.816373) (xy 91.621843 103.9) (xy 91.8 103.9) (xy 91.8 104.2) (xy 91.621843 104.2) + (xy 91.632005 104.27719) (xy 91.632007 104.277198) (xy 91.690748 104.419012) (xy 91.69075 104.419017) + (xy 91.779542 104.534733) (xy 91.799966 104.592409) (xy 91.8 104.595) (xy 91.8 104.7) (xy 91.800001 104.7) + (xy 92.094532 104.7) (xy 92.107454 104.700847) (xy 92.161785 104.707999) (xy 92.161787 104.708) + (xy 92.699999 104.708) (xy 92.7 104.707999) (xy 92.7 104.7) (xy 93 104.7) (xy 93 104.707999) (xy 93.000001 104.708) + (xy 93.538213 104.708) (xy 93.538214 104.707999) (xy 93.592546 104.700847) (xy 93.605468 104.7) + (xy 93.699999 104.7) (xy 93.7 104.7) (xy 93.7 104.699998) (xy 93.728996 104.671003) (xy 93.730222 104.672229) + (xy 93.761117 104.647876) (xy 93.794014 104.63425) (xy 93.794016 104.634249) (xy 93.915795 104.540805) + (xy 93.915805 104.540795) (xy 94.009249 104.419016) (xy 94.009251 104.419012) (xy 94.067992 104.277198) + (xy 94.067994 104.27719) (xy 94.078157 104.2) (xy 93.7 104.2) (xy 93.700001 103.9) (xy 94.078157 103.9) + (xy 94.078157 103.899999) (xy 94.067147 103.816372) (xy 94.068752 103.81616) (xy 94.068752 103.783839) + (xy 94.067147 103.783628) (xy 94.078157 103.7) (xy 93.700001 103.7) (xy 93.7 103.400533) (xy 93.702405 103.4) + (xy 94.078156 103.4) (xy 94.067994 103.322809) (xy 94.067992 103.322801) (xy 94.009251 103.180987) + (xy 94.009249 103.180983) (xy 93.9158 103.059197) (xy 93.915797 103.059195) (xy 93.864231 103.019626) + (xy 93.829576 102.969202) (xy 93.825499 102.941085) (xy 93.825499 102.936865) (xy 93.825498 102.936854) + (xy 93.819259 102.889456) (xy 93.819255 102.889448) (xy 93.797054 102.841838) (xy 93.789598 102.78111) + (xy 93.797051 102.758168) (xy 93.819259 102.710545) (xy 93.8255 102.663139) (xy 93.825499 102.436862) + (xy 93.819259 102.389455) (xy 93.797054 102.341838) (xy 93.789598 102.28111) (xy 93.797051 102.258168) + (xy 93.819259 102.210545) (xy 93.8255 102.163139) (xy 93.825499 101.936862) (xy 93.819259 101.889455) + (xy 93.797054 101.841838) (xy 93.789598 101.78111) (xy 93.797051 101.758168) (xy 93.819259 101.710545) + (xy 93.8255 101.663139) (xy 93.825499 101.436862) (xy 93.819259 101.389455) (xy 93.797054 101.341838) + (xy 93.789598 101.28111) (xy 93.797051 101.258168) (xy 93.819259 101.210545) (xy 93.8255 101.163139) + (xy 93.825499 100.936862) (xy 93.819259 100.889455) (xy 93.797054 100.841838) (xy 93.789598 100.78111) + (xy 93.797051 100.758168) (xy 93.819259 100.710545) (xy 93.8255 100.663139) (xy 93.825499 100.436862) + (xy 93.819259 100.389455) (xy 93.819259 100.389453) (xy 93.770748 100.285423) (xy 93.770747 100.285422) + (xy 93.770747 100.285421) (xy 93.689579 100.204253) (xy 93.585545 100.155741) (xy 93.538139 100.1495) + (xy 93.538137 100.1495) (xy 92.161865 100.1495) (xy 92.161854 100.149501) (xy 92.114455 100.15574) + (xy 92.114453 100.15574) (xy 92.010423 100.204251) (xy 91.929253 100.285421) (xy 91.880741 100.389455) + (xy 91.8745 100.436862) (xy 91.8745 100.43981) (xy 91.855593 100.498001) (xy 91.806093 100.533965) + (xy 91.744907 100.533965) (xy 91.705496 100.509814) (xy 90.604495 99.408813) (xy 90.576718 99.354296) + (xy 90.575499 99.338809) (xy 90.575499 99.304521) (xy 90.575499 99.304516) (xy 90.569412 99.247886) + (xy 90.521628 99.119774) (xy 90.439687 99.010313) (xy 90.332401 98.93) (xy 90.330228 98.928373) + (xy 90.330226 98.928372) (xy 90.202114 98.880588) (xy 90.202113 98.880587) (xy 90.163895 98.876479) + (xy 90.145485 98.8745) (xy 90.145481 98.8745) (xy 89.604521 98.8745) (xy 89.604515 98.874501) (xy 89.547888 98.880587) + (xy 89.547886 98.880588) (xy 89.419774 98.928372) (xy 89.419773 98.928372) (xy 89.419772 98.928373) + (xy 89.322728 99.001018) (xy 89.264813 99.020754) (xy 89.206358 99.002679) (xy 89.179139 98.973737) + (xy 89.128891 98.892273) (xy 89.007726 98.771108) (xy 88.861888 98.681154) (xy 88.861886 98.681153) + (xy 88.699232 98.627255) (xy 88.598852 98.617) (xy 88.579001 98.617) (xy 88.579 98.617001) (xy 88.579 100.534993) + (xy 88.560093 100.593184) (xy 88.550004 100.604997) (xy 88.529 100.626001) (xy 88.529 101.355) (xy 88.510093 101.413191) + (xy 88.460593 101.449155) (xy 88.43 101.454) (xy 87.367002 101.454) (xy 87.367001 101.454001) (xy 87.367001 101.532232) + (xy 87.373481 101.603556) (xy 87.373483 101.603562) (xy 87.42463 101.767699) (xy 87.424633 101.767707) + (xy 87.51358 101.914842) (xy 87.635159 102.036421) (xy 87.663044 102.053278) (xy 87.703061 102.099562) + (xy 87.708231 102.160529) (xy 87.676577 102.21289) (xy 87.620192 102.236646) (xy 87.611828 102.237) + (xy 87.295002 102.237) (xy 87.257117 102.229464) (xy 87.215792 102.212347) (xy 87.215791 102.212346) + (xy 87.182453 102.198537) (xy 87.18245 102.198536) (xy 87.102676 102.182669) (xy 87.061609 102.1745) + (xy 87.061607 102.1745) (xy 87.061606 102.1745) (xy 86.854826 102.1745) (xy 86.796635 102.155593) + (xy 86.760671 102.106093) (xy 86.755829 102.074756) (xy 86.772526 99.854001) (xy 87.367 99.854001) + (xy 87.367 99.898851) (xy 87.377255 99.999232) (xy 87.431153 100.161886) (xy 87.431154 100.161888) + (xy 87.521108 100.307726) (xy 87.536055 100.322673) (xy 87.563832 100.37719) (xy 87.554261 100.437622) + (xy 87.536057 100.462678) (xy 87.513584 100.485152) (xy 87.513581 100.485156) (xy 87.424633 100.632292) + (xy 87.42463 100.6323) (xy 87.373483 100.796436) (xy 87.373481 100.796442) (xy 87.367 100.867769) + (xy 87.367 100.945999) (xy 87.367001 100.946) (xy 88.020999 100.946) (xy 88.021 100.945999) (xy 88.021 100.265007) + (xy 88.039907 100.206816) (xy 88.049996 100.195003) (xy 88.071 100.173999) (xy 88.071 99.854001) + (xy 88.070999 99.854) (xy 87.367001 99.854) (xy 87.367 99.854001) (xy 86.772526 99.854001) (xy 86.776683 99.301148) + (xy 87.367 99.301148) (xy 87.367 99.345999) (xy 87.367001 99.346) (xy 88.070999 99.346) (xy 88.071 99.345999) + (xy 88.071 98.617001) (xy 88.070999 98.617) (xy 88.051148 98.617) (xy 87.950767 98.627255) (xy 87.788113 98.681153) + (xy 87.788111 98.681154) (xy 87.642273 98.771108) (xy 87.521108 98.892273) (xy 87.431154 99.038111) + (xy 87.431153 99.038113) (xy 87.377255 99.200767) (xy 87.367 99.301148) (xy 86.776683 99.301148) + (xy 86.782573 98.517769) (xy 98.017 98.517769) (xy 98.017 98.520999) (xy 98.017001 98.521) (xy 98.745999 98.521) + (xy 98.746 98.520999) (xy 98.746 97.866999) (xy 98.667784 97.867) (xy 98.667767 97.867001) (xy 98.596443 97.873481) + (xy 98.596437 97.873483) (xy 98.4323 97.92463) (xy 98.432292 97.924633) (xy 98.285157 98.01358) + (xy 98.16358 98.135157) (xy 98.074633 98.282292) (xy 98.07463 98.2823) (xy 98.023483 98.446436) + (xy 98.023481 98.446442) (xy 98.017 98.517769) (xy 86.782573 98.517769) (xy 86.8 96.2) (xy 80.699 96.2) + (xy 80.640809 96.181093) (xy 80.604845 96.131593) (xy 80.6 96.101) (xy 80.6 94.378084) (xy 80.618907 94.319893) + (xy 80.668407 94.283929) (xy 80.729593 94.283929) (xy 80.73014 94.284109) (xy 80.845678 94.322394) + (xy 80.949484 94.333) (xy 80.995999 94.333) (xy 80.996 94.332999) (xy 80.996 93.354001) (xy 81.504 93.354001) + (xy 81.504 94.332999) (xy 81.504001 94.333) (xy 81.550516 94.333) (xy 81.654321 94.322394) (xy 81.822525 94.266657) + (xy 81.973337 94.173635) (xy 82.098635 94.048337) (xy 82.191657 93.897525) (xy 82.247394 93.729321) + (xy 82.258 93.625515) (xy 82.258 93.354001) (xy 82.257999 93.354) (xy 81.504001 93.354) (xy 81.504 93.354001) + (xy 80.996 93.354001) (xy 80.996 93.104001) (xy 109.782 93.104001) (xy 109.782 94.798587) (xy 109.788504 94.859088) + (xy 109.788506 94.859098) (xy 109.839552 94.99596) (xy 109.927092 95.112899) (xy 109.9271 95.112907) + (xy 110.044039 95.200447) (xy 110.180901 95.251493) (xy 110.180911 95.251495) (xy 110.241413 95.258) + (xy 110.535999 95.258) (xy 110.536 95.257999) (xy 110.536 93.104001) (xy 110.535999 93.104) (xy 109.782001 93.104) + (xy 109.782 93.104001) (xy 80.996 93.104001) (xy 80.996 91.867001) (xy 81.504 91.867001) (xy 81.504 92.845999) + (xy 81.504001 92.846) (xy 82.257999 92.846) (xy 82.258 92.845999) (xy 82.258 92.574484) (xy 82.247394 92.470678) + (xy 82.191657 92.302474) (xy 82.098635 92.151662) (xy 81.973337 92.026364) (xy 81.822525 91.933342) + (xy 81.654321 91.877605) (xy 81.550516 91.867) (xy 81.504001 91.867) (xy 81.504 91.867001) (xy 80.996 91.867001) + (xy 80.995999 91.867) (xy 80.949484 91.867) (xy 80.845678 91.877605) (xy 80.73014 91.915891) (xy 80.668956 91.916247) + (xy 80.619247 91.880572) (xy 80.600002 91.822492) (xy 80.6 91.821916) (xy 80.6 90.901412) (xy 109.782 90.901412) + (xy 109.782 92.595999) (xy 109.782001 92.596) (xy 110.535999 92.596) (xy 110.536 92.595999) (xy 110.536 90.442001) + (xy 110.535999 90.442) (xy 110.241413 90.442) (xy 110.180911 90.448504) (xy 110.180901 90.448506) + (xy 110.044039 90.499552) (xy 109.9271 90.587092) (xy 109.927092 90.5871) (xy 109.839552 90.704039) + (xy 109.788506 90.840901) (xy 109.788504 90.840911) (xy 109.782 90.901412) (xy 80.6 90.901412) (xy 80.6 87.784001) + (xy 109.782 87.784001) (xy 109.782 88.798587) (xy 109.788504 88.859088) (xy 109.788506 88.859098) + (xy 109.839552 88.99596) (xy 109.927092 89.112899) (xy 109.9271 89.112907) (xy 110.044039 89.200447) + (xy 110.180901 89.251493) (xy 110.180911 89.251495) (xy 110.241413 89.258) (xy 110.535999 89.258) + (xy 110.536 89.257999) (xy 110.536 87.784001) (xy 110.535999 87.784) (xy 109.782001 87.784) (xy 109.782 87.784001) + (xy 80.6 87.784001) (xy 80.6 86.917) (xy 80.618907 86.858809) (xy 80.668407 86.822845) (xy 80.699 86.818) + (xy 81.598587 86.818) (xy 81.659088 86.811495) (xy 81.659098 86.811493) (xy 81.79596 86.760447) + (xy 81.912899 86.672907) (xy 81.912907 86.672899) (xy 82.000447 86.55596) (xy 82.051493 86.419098) + (xy 82.051495 86.419088) (xy 82.058 86.358587) (xy 82.058 86.064001) (xy 83.242 86.064001) (xy 83.242 86.358587) + (xy 83.248504 86.419088) (xy 83.248506 86.419098) (xy 83.299552 86.55596) (xy 83.387092 86.672899) + (xy 83.3871 86.672907) (xy 83.504039 86.760447) (xy 83.640901 86.811493) (xy 83.640911 86.811495) + (xy 83.701413 86.818) (xy 85.395999 86.818) (xy 85.396 86.817999) (xy 85.396 86.064001) (xy 85.904 86.064001) + (xy 85.904 86.817999) (xy 85.904001 86.818) (xy 87.598587 86.818) (xy 87.659088 86.811495) (xy 87.659098 86.811493) + (xy 87.79596 86.760447) (xy 87.912899 86.672907) (xy 87.912907 86.672899) (xy 88.000447 86.55596) + (xy 88.051493 86.419098) (xy 88.051495 86.419088) (xy 88.058 86.358587) (xy 88.058 86.064001) (xy 89.342 86.064001) + (xy 89.342 86.358587) (xy 89.348504 86.419088) (xy 89.348506 86.419098) (xy 89.399552 86.55596) + (xy 89.487092 86.672899) (xy 89.4871 86.672907) (xy 89.604039 86.760447) (xy 89.740901 86.811493) + (xy 89.740911 86.811495) (xy 89.801413 86.818) (xy 91.495999 86.818) (xy 91.496 86.817999) (xy 91.496 86.064001) + (xy 92.004 86.064001) (xy 92.004 86.817999) (xy 92.004001 86.818) (xy 93.698587 86.818) (xy 93.759088 86.811495) + (xy 93.759098 86.811493) (xy 93.89596 86.760447) (xy 94.012899 86.672907) (xy 94.012907 86.672899) + (xy 94.100447 86.55596) (xy 94.151493 86.419098) (xy 94.151495 86.419088) (xy 94.158 86.358587) + (xy 94.158 86.064001) (xy 95.342 86.064001) (xy 95.342 86.358587) (xy 95.348504 86.419088) (xy 95.348506 86.419098) + (xy 95.399552 86.55596) (xy 95.487092 86.672899) (xy 95.4871 86.672907) (xy 95.604039 86.760447) + (xy 95.740901 86.811493) (xy 95.740911 86.811495) (xy 95.801413 86.818) (xy 97.495999 86.818) (xy 97.496 86.817999) + (xy 97.496 86.064001) (xy 98.004 86.064001) (xy 98.004 86.817999) (xy 98.004001 86.818) (xy 99.698587 86.818) + (xy 99.759088 86.811495) (xy 99.759098 86.811493) (xy 99.89596 86.760447) (xy 100.012899 86.672907) + (xy 100.012907 86.672899) (xy 100.100447 86.55596) (xy 100.151493 86.419098) (xy 100.151495 86.419088) + (xy 100.158 86.358587) (xy 100.158 86.064001) (xy 101.342 86.064001) (xy 101.342 86.358587) (xy 101.348504 86.419088) + (xy 101.348506 86.419098) (xy 101.399552 86.55596) (xy 101.487092 86.672899) (xy 101.4871 86.672907) + (xy 101.604039 86.760447) (xy 101.740901 86.811493) (xy 101.740911 86.811495) (xy 101.801413 86.818) + (xy 103.495999 86.818) (xy 103.496 86.817999) (xy 103.496 86.064001) (xy 104.004 86.064001) (xy 104.004 86.817999) + (xy 104.004001 86.818) (xy 105.698587 86.818) (xy 105.759088 86.811495) (xy 105.759098 86.811493) + (xy 105.89596 86.760447) (xy 106.012899 86.672907) (xy 106.012907 86.672899) (xy 106.100447 86.55596) + (xy 106.151493 86.419098) (xy 106.151495 86.419088) (xy 106.158 86.358587) (xy 106.158 86.064001) + (xy 107.342 86.064001) (xy 107.342 86.358587) (xy 107.348504 86.419088) (xy 107.348506 86.419098) + (xy 107.399552 86.55596) (xy 107.487092 86.672899) (xy 107.4871 86.672907) (xy 107.604039 86.760447) + (xy 107.740901 86.811493) (xy 107.740911 86.811495) (xy 107.801413 86.818) (xy 108.815999 86.818) + (xy 108.816 86.817999) (xy 108.816 86.064001) (xy 109.324 86.064001) (xy 109.324 86.817999) (xy 109.324001 86.818) + (xy 109.683 86.818) (xy 109.741191 86.836907) (xy 109.777155 86.886407) (xy 109.782 86.917) (xy 109.782 87.275999) + (xy 109.782001 87.276) (xy 110.535999 87.276) (xy 110.536 87.275999) (xy 110.536 86.064001) (xy 110.535999 86.064) + (xy 109.324001 86.064) (xy 109.324 86.064001) (xy 108.816 86.064001) (xy 108.815999 86.064) (xy 107.342001 86.064) + (xy 107.342 86.064001) (xy 106.158 86.064001) (xy 106.157999 86.064) (xy 104.004001 86.064) (xy 104.004 86.064001) + (xy 103.496 86.064001) (xy 103.495999 86.064) (xy 101.342001 86.064) (xy 101.342 86.064001) (xy 100.158 86.064001) + (xy 100.157999 86.064) (xy 98.004001 86.064) (xy 98.004 86.064001) (xy 97.496 86.064001) (xy 97.495999 86.064) + (xy 95.342001 86.064) (xy 95.342 86.064001) (xy 94.158 86.064001) (xy 94.157999 86.064) (xy 92.004001 86.064) + (xy 92.004 86.064001) (xy 91.496 86.064001) (xy 91.495999 86.064) (xy 89.342001 86.064) (xy 89.342 86.064001) + (xy 88.058 86.064001) (xy 88.057999 86.064) (xy 85.904001 86.064) (xy 85.904 86.064001) (xy 85.396 86.064001) + (xy 85.395999 86.064) (xy 83.242001 86.064) (xy 83.242 86.064001) (xy 82.058 86.064001) (xy 82.057999 86.064) + (xy 80.6 86.064) (xy 80.6 85.556) (xy 82.057999 85.556) (xy 82.058 85.555999) (xy 82.058 85.261412) + (xy 82.051495 85.200911) (xy 82.051493 85.200904) (xy 82.028225 85.138518) (xy 82.025605 85.077389) + (xy 82.059415 85.026394) (xy 82.116743 85.005012) (xy 82.121245 85.004923) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 68.308692 120.969407) (xy 68.344656 121.018907) (xy 68.349501 121.0495) (xy 68.349501 121.14787) + (xy 68.355908 121.20748) (xy 68.355909 121.207485) (xy 68.406202 121.342329) (xy 68.466237 121.422525) + (xy 68.492454 121.457546) (xy 68.492457 121.457548) (xy 68.492458 121.457549) (xy 68.60767 121.543797) + (xy 68.742511 121.594089) (xy 68.742512 121.594089) (xy 68.742517 121.594091) (xy 68.802127 121.6005) + (xy 69.000501 121.600499) (xy 69.05869 121.619406) (xy 69.094654 121.668906) (xy 69.0995 121.699499) + (xy 69.0995 123.018126) (xy 69.080593 123.076317) (xy 69.070504 123.08813) (xy 67.787004 124.37163) + (xy 67.732487 124.399407) (xy 67.672055 124.389836) (xy 67.62879 124.346571) (xy 67.618 124.301626) + (xy 67.618 123.204001) (xy 67.617999 123.204) (xy 66.455 123.204) (xy 66.396809 123.185093) (xy 66.360845 123.135593) + (xy 66.356 123.105) (xy 66.356 122.795) (xy 66.374907 122.736809) (xy 66.424407 122.700845) (xy 66.455 122.696) + (xy 67.617999 122.696) (xy 67.618 122.695999) (xy 67.618 121.0495) (xy 67.636907 120.991309) (xy 67.686407 120.955345) + (xy 67.717 120.9505) (xy 68.250501 120.9505) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 67.787002 115.628372) (xy 68.205681 116.04705) (xy 69.070504 116.911873) (xy 69.098281 116.96639) + (xy 69.0995 116.981877) (xy 69.0995 118.7005) (xy 69.080593 118.758691) (xy 69.031093 118.794655) + (xy 69.0005 118.7995) (xy 68.802133 118.7995) (xy 68.802129 118.7995) (xy 68.802128 118.799501) + (xy 68.794949 118.800272) (xy 68.742519 118.805908) (xy 68.742514 118.805909) (xy 68.60767 118.856202) + (xy 68.492458 118.94245) (xy 68.49245 118.942458) (xy 68.406202 119.05767) (xy 68.35591 119.192511) + (xy 68.355908 119.192522) (xy 68.353717 119.212903) (xy 68.349785 119.249481) (xy 68.3495 119.252129) + (xy 68.3495 119.3505) (xy 68.330593 119.408691) (xy 68.281093 119.444655) (xy 68.2505 119.4495) + (xy 67.454296 119.4495) (xy 67.396105 119.430593) (xy 67.360141 119.381093) (xy 67.360141 119.319907) + (xy 67.394967 119.271246) (xy 67.472903 119.212903) (xy 67.472907 119.212899) (xy 67.560447 119.09596) + (xy 67.611493 118.959098) (xy 67.611495 118.959088) (xy 67.618 118.898587) (xy 67.618 117.204001) + (xy 67.617999 117.204) (xy 66.455 117.204) (xy 66.396809 117.185093) (xy 66.360845 117.135593) (xy 66.356 117.105) + (xy 66.356 116.795) (xy 66.374907 116.736809) (xy 66.424407 116.700845) (xy 66.455 116.696) (xy 67.617999 116.696) + (xy 67.618 116.695999) (xy 67.618 115.698377) (xy 67.636907 115.640186) (xy 67.686407 115.604222) + (xy 67.747593 115.604222) + ) + ) + ) + (zone + (net 1) + (net_name "/Supply_Ref/+15V") + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-000061e5b1a1") + (hatch edge 0.508) + (connect_pads + (clearance 0.25) + ) + (min_thickness 0.2) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.508) + (thermal_bridge_width 0.508) + ) + (polygon + (pts + (xy 77.7 105.6) (xy 67.3 105.6) (xy 67.3 86.5) (xy 80.3 86.5) (xy 80.3 92.2) (xy 77.7 92.3) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 71.608435 86.516683) (xy 71.65226 86.545966) (xy 71.707808 86.557015) (xy 71.725315 86.560498) + (xy 71.72532 86.560498) (xy 71.725326 86.5605) (xy 71.725327 86.5605) (xy 75.574673 86.5605) (xy 75.574674 86.5605) + (xy 75.64774 86.545966) (xy 75.691564 86.516683) (xy 75.746565 86.5) (xy 77.553435 86.5) (xy 77.608435 86.516683) + (xy 77.65226 86.545966) (xy 77.707808 86.557015) (xy 77.725315 86.560498) (xy 77.72532 86.560498) + (xy 77.725326 86.5605) (xy 77.725327 86.5605) (xy 80.201 86.5605) (xy 80.259191 86.579407) (xy 80.295155 86.628907) + (xy 80.3 86.6595) (xy 80.3 92.104734) (xy 80.281093 92.162925) (xy 80.231593 92.198889) (xy 80.204804 92.203661) + (xy 79.923627 92.214474) (xy 79.864753 92.197817) (xy 79.860495 92.194801) (xy 79.842329 92.181202) + (xy 79.707488 92.13091) (xy 79.707483 92.130909) (xy 79.707481 92.130908) (xy 79.707477 92.130908) + (xy 79.676249 92.12755) (xy 79.647873 92.1245) (xy 79.64787 92.1245) (xy 79.052133 92.1245) (xy 79.052129 92.1245) + (xy 79.052128 92.124501) (xy 79.044949 92.125272) (xy 78.992519 92.130908) (xy 78.992514 92.130909) + (xy 78.85767 92.181202) (xy 78.777779 92.241008) (xy 78.722256 92.260681) (xy 78.174263 92.281758) + (xy 78.135863 92.27559) (xy 78.082023 92.255509) (xy 78.082016 92.255508) (xy 78.056744 92.252791) + (xy 78.02613 92.2495) (xy 77.49887 92.2495) (xy 77.471943 92.252394) (xy 77.442983 92.255508) (xy 77.442972 92.25551) + (xy 77.316551 92.302662) (xy 77.208531 92.383525) (xy 77.208525 92.383531) (xy 77.127662 92.491551) + (xy 77.08051 92.617972) (xy 77.080508 92.617983) (xy 77.0745 92.673873) (xy 77.0745 93.526126) (xy 77.074499 93.526126) + (xy 77.080508 93.582016) (xy 77.08051 93.582027) (xy 77.127662 93.708448) (xy 77.1382 93.722525) + (xy 77.208528 93.816472) (xy 77.261927 93.856446) (xy 77.316551 93.897337) (xy 77.442972 93.944489) + (xy 77.442973 93.944489) (xy 77.442978 93.944491) (xy 77.49887 93.9505) (xy 77.601 93.9505) (xy 77.659191 93.969407) + (xy 77.695155 94.018907) (xy 77.7 94.0495) (xy 77.7 96.101) (xy 77.681093 96.159191) (xy 77.631593 96.195155) + (xy 77.601 96.2) (xy 72.9 96.2) (xy 72.9 96.200001) (xy 72.9 105.501) (xy 72.881093 105.559191) + (xy 72.831593 105.595155) (xy 72.801 105.6) (xy 67.4595 105.6) (xy 67.401309 105.581093) (xy 67.365345 105.531593) + (xy 67.3605 105.501) (xy 67.3605 102.925327) (xy 67.360498 102.925315) (xy 67.357015 102.907808) + (xy 67.345966 102.85226) (xy 67.316683 102.808434) (xy 67.3 102.753434) (xy 67.3 100.946565) (xy 67.316684 100.891564) + (xy 67.345966 100.84774) (xy 67.3605 100.774674) (xy 67.3605 96.925326) (xy 67.345966 96.85226) + (xy 67.316683 96.808434) (xy 67.3 96.753434) (xy 67.3 94.946565) (xy 67.316684 94.891564) (xy 67.345966 94.84774) + (xy 67.3605 94.774674) (xy 67.3605 93.404001) (xy 72.567 93.404001) (xy 72.567 93.450515) (xy 72.577605 93.554321) + (xy 72.633342 93.722525) (xy 72.726364 93.873337) (xy 72.851662 93.998635) (xy 73.002474 94.091657) + (xy 73.153586 94.141731) (xy 73.202876 94.177983) (xy 73.221444 94.236282) (xy 73.202199 94.294362) + (xy 73.157043 94.328464) (xy 73.082669 94.356203) (xy 72.967458 94.44245) (xy 72.96745 94.442458) + (xy 72.881202 94.55767) (xy 72.83091 94.692511) (xy 72.830908 94.692522) (xy 72.8245 94.752129) + (xy 72.8245 95.347866) (xy 72.824501 95.34787) (xy 72.830908 95.40748) (xy 72.830909 95.407485) + (xy 72.881202 95.542329) (xy 72.890875 95.55525) (xy 72.967454 95.657546) (xy 72.967457 95.657548) + (xy 72.967458 95.657549) (xy 73.08267 95.743797) (xy 73.217511 95.794089) (xy 73.217512 95.794089) + (xy 73.217517 95.794091) (xy 73.277127 95.8005) (xy 74.322872 95.800499) (xy 74.382483 95.794091) + (xy 74.449907 95.768943) (xy 74.517329 95.743797) (xy 74.517329 95.743796) (xy 74.517331 95.743796) + (xy 74.632546 95.657546) (xy 74.682983 95.59017) (xy 74.732991 95.554918) (xy 74.762236 95.5505) + (xy 75.584108 95.5505) (xy 75.657432 95.5505) (xy 75.670354 95.551347) (xy 75.699999 95.55525) (xy 75.699999 95.555249) + (xy 75.7 95.55525) (xy 75.843709 95.53633) (xy 75.977625 95.480861) (xy 76.092621 95.392621) (xy 76.180861 95.277625) + (xy 76.23633 95.143709) (xy 76.25525 95) (xy 76.23633 94.856291) (xy 76.180861 94.722375) (xy 76.092621 94.607379) + (xy 75.977625 94.519139) (xy 75.977621 94.519137) (xy 75.843709 94.46367) (xy 75.843708 94.463669) + (xy 75.7 94.44475) (xy 75.556291 94.463669) (xy 75.55629 94.46367) (xy 75.422378 94.519137) (xy 75.422374 94.519139) + (xy 75.409468 94.529043) (xy 75.351791 94.549466) (xy 75.349201 94.5495) (xy 74.762236 94.5495) + (xy 74.704045 94.530593) (xy 74.682983 94.509829) (xy 74.632549 94.442458) (xy 74.632548 94.442457) + (xy 74.632546 94.442454) (xy 74.632541 94.44245) (xy 74.517329 94.356202) (xy 74.442957 94.328464) + (xy 74.395042 94.290414) (xy 74.378644 94.231467) (xy 74.400025 94.174139) (xy 74.446413 94.141731) + (xy 74.597525 94.091657) (xy 74.748341 93.998632) (xy 74.758341 93.988633) (xy 74.812857 93.960853) + (xy 74.873289 93.970423) (xy 74.89835 93.98863) (xy 74.964922 94.055201) (xy 74.964928 94.055206) + (xy 75.109517 94.144391) (xy 75.27079 94.197831) (xy 75.370319 94.207999) (xy 75.3835 94.207998) + (xy 75.3835 93.354001) (xy 75.8915 93.354001) (xy 75.8915 94.207998) (xy 75.891501 94.207999) (xy 75.90468 94.207999) + (xy 76.004203 94.197832) (xy 76.004215 94.197829) (xy 76.165482 94.144391) (xy 76.310071 94.055206) + (xy 76.430206 93.935071) (xy 76.519391 93.790482) (xy 76.572831 93.629209) (xy 76.583 93.52968) + (xy 76.583 93.354001) (xy 76.582999 93.354) (xy 75.891501 93.354) (xy 75.8915 93.354001) (xy 75.3835 93.354001) + (xy 75.383499 93.354) (xy 75.076001 93.354) (xy 75.054997 93.375004) (xy 75.00048 93.402781) (xy 74.984993 93.404) + (xy 72.567001 93.404) (xy 72.567 93.404001) (xy 67.3605 93.404001) (xy 67.3605 92.849484) (xy 72.567 92.849484) + (xy 72.567 92.895999) (xy 72.567001 92.896) (xy 73.545999 92.896) (xy 73.546 92.895999) (xy 73.546 92.142001) + (xy 74.054 92.142001) (xy 74.054 92.895999) (xy 74.054001 92.896) (xy 74.648999 92.896) (xy 74.670003 92.874996) + (xy 74.72452 92.847219) (xy 74.740007 92.846) (xy 75.383499 92.846) (xy 75.3835 92.845999) (xy 75.3835 91.992001) + (xy 75.8915 91.992001) (xy 75.8915 92.845999) (xy 75.891501 92.846) (xy 76.582998 92.846) (xy 76.582999 92.845999) + (xy 76.582999 92.670319) (xy 76.572832 92.570796) (xy 76.572829 92.570784) (xy 76.519391 92.409517) + (xy 76.430206 92.264928) (xy 76.310071 92.144793) (xy 76.165482 92.055608) (xy 76.004209 92.002168) + (xy 75.904681 91.992) (xy 75.891501 91.992) (xy 75.8915 91.992001) (xy 75.3835 91.992001) (xy 75.3835 91.992) + (xy 75.383499 91.991999) (xy 75.370338 91.992) (xy 75.270787 92.002169) (xy 75.270784 92.00217) + (xy 75.109517 92.055608) (xy 74.964928 92.144793) (xy 74.964922 92.144798) (xy 74.84081 92.268909) + (xy 74.786293 92.296686) (xy 74.725861 92.287114) (xy 74.718835 92.283166) (xy 74.597527 92.208343) + (xy 74.429321 92.152605) (xy 74.325516 92.142) (xy 74.054001 92.142) (xy 74.054 92.142001) (xy 73.546 92.142001) + (xy 73.545999 92.142) (xy 73.274484 92.142) (xy 73.170678 92.152605) (xy 73.002474 92.208342) (xy 72.851662 92.301364) + (xy 72.726364 92.426662) (xy 72.633342 92.577474) (xy 72.577605 92.745678) (xy 72.567 92.849484) + (xy 67.3605 92.849484) (xy 67.3605 90.925326) (xy 67.345966 90.85226) (xy 67.316683 90.808434) (xy 67.3 90.753434) + (xy 67.3 88.946565) (xy 67.316684 88.891564) (xy 67.345966 88.84774) (xy 67.3605 88.774674) (xy 67.3605 86.6595) + (xy 67.379407 86.601309) (xy 67.428907 86.565345) (xy 67.4595 86.5605) (xy 69.574673 86.5605) (xy 69.574674 86.5605) + (xy 69.64774 86.545966) (xy 69.691564 86.516683) (xy 69.746565 86.5) (xy 71.553435 86.5) + ) + ) + ) + (zone + (net 21) + (net_name "/Supply_Ref/+5V") + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-000061e5b1a4") + (hatch edge 0.508) + (priority 1) + (connect_pads + (clearance 0.25) + ) + (min_thickness 0.2) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.508) + (thermal_bridge_width 0.508) + ) + (polygon + (pts + (xy 96.3 112.4) (xy 110 112.4) (xy 109.9 129.1) (xy 90.8 129) (xy 90.8 109.6) (xy 96.3 109.6) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 94.938884 109.618907) (xy 94.974848 109.668407) (xy 94.979689 109.699768) (xy 94.9 119.9) (xy 98.675232 119.9) + (xy 98.726448 119.914278) (xy 98.874032 120.003496) (xy 99.099906 120.094402) (xy 99.337434 120.147898) + (xy 99.48051 120.157999) (xy 101.045998 120.157999) (xy 101.046 120.157998) (xy 101.046 119.999) + (xy 101.064907 119.940809) (xy 101.114407 119.904845) (xy 101.145 119.9) (xy 101.455 119.9) (xy 101.513191 119.918907) + (xy 101.549155 119.968407) (xy 101.554 119.999) (xy 101.554 120.157998) (xy 101.554001 120.157999) + (xy 103.119487 120.157999) (xy 103.262566 120.147898) (xy 103.500093 120.094402) (xy 103.725967 120.003496) + (xy 103.873552 119.914278) (xy 103.924768 119.9) (xy 107.7 119.9) (xy 107.7 119.899999) (xy 107.699483 119.83333) + (xy 107.642633 112.499764) (xy 107.661089 112.441432) (xy 107.710308 112.405085) (xy 107.74163 112.4) + (xy 109.900406 112.4) (xy 109.958597 112.418907) (xy 109.994561 112.468407) (xy 109.999404 112.499593) + (xy 109.900592 129.001076) (xy 109.881337 129.059152) (xy 109.831622 129.094819) (xy 109.801076 129.099482) + (xy 90.898482 129.000515) (xy 90.840391 128.981303) (xy 90.804687 128.931615) (xy 90.8 128.901516) + (xy 90.8 111.359572) (xy 90.818907 111.301381) (xy 90.868407 111.265417) (xy 90.929593 111.265417) + (xy 90.950973 111.275311) (xy 90.977474 111.291657) (xy 91.145678 111.347394) (xy 91.249484 111.358) + (xy 92.145999 111.358) (xy 92.146 111.357999) (xy 92.146 110.529001) (xy 92.654 110.529001) (xy 92.654 111.357999) + (xy 92.654001 111.358) (xy 93.550516 111.358) (xy 93.654321 111.347394) (xy 93.822525 111.291657) + (xy 93.973337 111.198635) (xy 94.098635 111.073337) (xy 94.191657 110.922525) (xy 94.247394 110.754321) + (xy 94.258 110.650515) (xy 94.258 110.529001) (xy 94.257999 110.529) (xy 92.654001 110.529) (xy 92.654 110.529001) + (xy 92.146 110.529001) (xy 92.146 110.12) (xy 92.164907 110.061809) (xy 92.214407 110.025845) (xy 92.245 110.021) + (xy 94.257999 110.021) (xy 94.258 110.020999) (xy 94.258 109.899484) (xy 94.247394 109.79568) (xy 94.225677 109.730141) + (xy 94.225321 109.668956) (xy 94.260996 109.619248) (xy 94.319075 109.600002) (xy 94.319652 109.6) + (xy 94.880693 109.6) + ) + ) + ) + (zone + (net 2) + (net_name "GND") + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-000061e5b1a7") + (hatch edge 0.508) + (connect_pads + (clearance 0.25) + ) + (min_thickness 0.2) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.508) + (thermal_bridge_width 0.508) + ) + (polygon + (pts + (xy 109.3 103.7) (xy 102.4 103.7) (xy 102.4 99.1) (xy 109.3 99.1) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 107.661646 99.394407) (xy 107.673459 99.404496) (xy 109.195504 100.926541) (xy 109.223281 100.981058) + (xy 109.2245 100.996545) (xy 109.2245 103.601) (xy 109.205593 103.659191) (xy 109.156093 103.695155) + (xy 109.1255 103.7) (xy 104.627936 103.7) (xy 104.569745 103.681093) (xy 104.533781 103.631593) + (xy 104.533781 103.570407) (xy 104.533961 103.569859) (xy 104.547394 103.529319) (xy 104.558 103.425515) + (xy 104.558 103.154001) (xy 104.557999 103.154) (xy 103.395 103.154) (xy 103.336809 103.135093) + (xy 103.300845 103.085593) (xy 103.296 103.055) (xy 103.296 101.667001) (xy 103.804 101.667001) + (xy 103.804 102.645999) (xy 103.804001 102.646) (xy 104.557999 102.646) (xy 104.558 102.645999) + (xy 104.558 102.374484) (xy 104.547394 102.270678) (xy 104.491657 102.102474) (xy 104.398635 101.951662) + (xy 104.273337 101.826364) (xy 104.122525 101.733342) (xy 103.954321 101.677605) (xy 103.850516 101.667) + (xy 103.804001 101.667) (xy 103.804 101.667001) (xy 103.296 101.667001) (xy 103.295999 101.667) + (xy 103.249484 101.667) (xy 103.145678 101.677605) (xy 102.977474 101.733342) (xy 102.826662 101.826364) + (xy 102.701364 101.951662) (xy 102.608343 102.102473) (xy 102.592975 102.148851) (xy 102.556723 102.19814) + (xy 102.498423 102.216708) (xy 102.440344 102.197462) (xy 102.404669 102.147754) (xy 102.4 102.11771) + (xy 102.4 101.436689) (xy 102.418907 101.378498) (xy 102.42899 101.366691) (xy 102.63047 101.165212) + (xy 102.654156 101.124184) (xy 102.699623 101.083243) (xy 102.705263 101.080938) (xy 102.730226 101.071628) + (xy 102.839687 100.989687) (xy 102.921628 100.880226) (xy 102.969412 100.752114) (xy 102.9755 100.695485) + (xy 102.975499 100.104516) (xy 102.969412 100.047886) (xy 102.921628 99.919774) (xy 102.839687 99.810313) + (xy 102.739362 99.735211) (xy 102.704108 99.685202) (xy 102.704982 99.624023) (xy 102.739902 99.576302) + (xy 102.775501 99.550029) (xy 102.84715 99.49715) (xy 102.907254 99.415712) (xy 102.957021 99.380119) + (xy 102.986909 99.3755) (xy 107.603455 99.3755) + ) + ) + ) + (zone + (net 57) + (net_name "Net-(C11-Pad2)") + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-000061e5b1aa") + (hatch edge 0.508) + (connect_pads + (clearance 0.25) + ) + (min_thickness 0.2) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.508) + (thermal_bridge_width 0.508) + ) + (polygon + (pts + (xy 96.6 104.5) (xy 98.3 104.5) (xy 98.3 103.2) (xy 100.4 103.2) (xy 100.4 104) (xy 109.3 104) (xy 109.3 112.4) + (xy 96.6 112.4) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 99.083691 103.218907) (xy 99.119655 103.268407) (xy 99.1245 103.299) (xy 99.1245 103.795478) + (xy 99.124501 103.795484) (xy 99.130587 103.852111) (xy 99.130587 103.852112) (xy 99.130588 103.852114) + (xy 99.178372 103.980226) (xy 99.244383 104.068407) (xy 99.251019 104.077271) (xy 99.270755 104.135185) + (xy 99.25268 104.19364) (xy 99.223738 104.220859) (xy 99.142276 104.271105) (xy 99.021108 104.392273) + (xy 98.931154 104.538111) (xy 98.931153 104.538113) (xy 98.877255 104.700767) (xy 98.867 104.801148) + (xy 98.867 104.820999) (xy 98.867001 104.821) (xy 100.832999 104.821) (xy 100.833 104.820999) (xy 100.833 104.801148) + (xy 100.822744 104.700767) (xy 100.768846 104.538113) (xy 100.768845 104.538111) (xy 100.678891 104.392273) + (xy 100.557724 104.271106) (xy 100.476262 104.22086) (xy 100.43666 104.174219) (xy 100.432037 104.113208) + (xy 100.448981 104.077271) (xy 100.477128 104.03967) (xy 100.527137 104.004418) (xy 100.556381 104) + (xy 109.1255 104) (xy 109.183691 104.018907) (xy 109.219655 104.068407) (xy 109.2245 104.099) (xy 109.2245 112.0455) + (xy 109.205593 112.103691) (xy 109.156093 112.139655) (xy 109.1255 112.1445) (xy 107.739638 112.1445) + (xy 107.739638 112.143796) (xy 107.683176 112.127918) (xy 107.64526 112.079897) (xy 107.639118 112.046328) + (xy 107.634472 111.446995) (xy 107.6 107) (xy 107.599999 107) (xy 104.095382 107.027813) (xy 104.037043 107.009368) + (xy 104.030453 107.004226) (xy 103.934326 106.922461) (xy 103.934323 106.922459) (xy 103.725967 106.796503) + (xy 103.500093 106.705597) (xy 103.262565 106.652101) (xy 103.119489 106.642) (xy 101.554001 106.642) + (xy 101.554 106.642001) (xy 101.554 106.949765) (xy 101.535093 107.007956) (xy 101.485593 107.04392) + (xy 101.455786 107.048762) (xy 101.145786 107.051222) (xy 101.087447 107.032777) (xy 101.051091 106.983564) + (xy 101.046 106.952225) (xy 101.046 106.642001) (xy 101.045999 106.642) (xy 99.480512 106.642) (xy 99.337433 106.652101) + (xy 99.099906 106.705597) (xy 98.874032 106.796503) (xy 98.66568 106.922457) (xy 98.665669 106.922465) + (xy 98.516906 107.049002) (xy 98.460331 107.072302) (xy 98.453549 107.072589) (xy 96.699786 107.086508) + (xy 96.641447 107.068063) (xy 96.605091 107.01885) (xy 96.6 106.987511) (xy 96.6 105.329001) (xy 98.867 105.329001) + (xy 98.867 105.348851) (xy 98.877255 105.449232) (xy 98.931153 105.611886) (xy 98.931154 105.611888) + (xy 99.021108 105.757726) (xy 99.142273 105.878891) (xy 99.288111 105.968845) (xy 99.288113 105.968846) + (xy 99.450767 106.022744) (xy 99.551148 106.033) (xy 99.595999 106.033) (xy 99.596 106.032999) (xy 99.596 105.329001) + (xy 100.104 105.329001) (xy 100.104 106.032999) (xy 100.104001 106.033) (xy 100.148852 106.033) + (xy 100.249232 106.022744) (xy 100.411886 105.968846) (xy 100.411888 105.968845) (xy 100.557726 105.878891) + (xy 100.678891 105.757726) (xy 100.768845 105.611888) (xy 100.768846 105.611886) (xy 100.822744 105.449232) + (xy 100.833 105.348851) (xy 100.833 105.329001) (xy 100.832999 105.329) (xy 100.104001 105.329) + (xy 100.104 105.329001) (xy 99.596 105.329001) (xy 99.595999 105.329) (xy 98.867001 105.329) (xy 98.867 105.329001) + (xy 96.6 105.329001) (xy 96.6 104.807) (xy 96.618907 104.748809) (xy 96.668407 104.712845) (xy 96.699 104.708) + (xy 96.999999 104.708) (xy 97 104.707999) (xy 97 104.5) (xy 97.3 104.5) (xy 97.3 104.707999) (xy 97.300001 104.708) + (xy 97.838213 104.708) (xy 97.838214 104.707999) (xy 97.95219 104.692994) (xy 97.952198 104.692992) + (xy 98.094012 104.634251) (xy 98.094016 104.634249) (xy 98.215802 104.5408) (xy 98.21739 104.538731) + (xy 98.21893 104.537672) (xy 98.220393 104.53621) (xy 98.220663 104.53648) (xy 98.267815 104.504076) + (xy 98.295931 104.5) (xy 98.299999 104.5) (xy 98.3 104.5) (xy 98.3 104.46104) (xy 98.307536 104.423155) + (xy 98.367992 104.277199) (xy 98.367994 104.27719) (xy 98.378157 104.2) (xy 98.3 104.2) (xy 98.3 103.9) + (xy 98.378157 103.9) (xy 98.378157 103.899999) (xy 98.367147 103.816372) (xy 98.368752 103.81616) + (xy 98.368752 103.783839) (xy 98.367147 103.783628) (xy 98.378157 103.7) (xy 98.3 103.7) (xy 98.3 103.4) + (xy 98.378157 103.4) (xy 98.378157 103.399999) (xy 98.367147 103.316372) (xy 98.368756 103.31616) + (xy 98.368774 103.274283) (xy 98.369043 103.273283) (xy 98.402417 103.222002) (xy 98.45956 103.200131) + (xy 98.464644 103.2) (xy 99.0255 103.2) + ) + ) + ) + (zone + (net 3) + (net_name "/Supply_Ref/-15V") + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-000061e5b1ad") + (hatch edge 0.508) + (connect_pads + (clearance 0.25) + ) + (min_thickness 0.2) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.508) + (thermal_bridge_width 0.508) + (smoothing fillet) + (radius 0.2) + ) + (polygon + (pts + (xy 70.2 46) (xy 67.8 46) (xy 67.8 50.6) (xy 70.2 50.6) (xy 70.2 54.6) (xy 62.5 54.6) (xy 62.5 49.4) + (xy 62.55 49.45) (xy 62.6 35) (xy 70.2 35) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 70.152179 35.094407) (xy 70.188143 35.143907) (xy 70.191086 35.155186) (xy 70.197365 35.186755) + (xy 70.198098 35.190437) (xy 70.2 35.209751) (xy 70.2 45.790248) (xy 70.198097 45.809563) (xy 70.188616 45.857224) + (xy 70.173835 45.89291) (xy 70.152362 45.925047) (xy 70.125047 45.952362) (xy 70.09291 45.973835) + (xy 70.057224 45.988616) (xy 70.009563 45.998097) (xy 69.990248 46) (xy 69.565638 46) (xy 69.537784 45.99446) + (xy 69.537485 45.995579) (xy 69.531219 45.993899) (xy 69.412347 45.97825) (xy 68.947501 45.97825) + (xy 68.9475 45.978251) (xy 68.9475 46) (xy 68.5475 46) (xy 68.5475 45.978251) (xy 68.547499 45.97825) + (xy 68.082656 45.97825) (xy 68.082651 45.978251) (xy 67.963781 45.993899) (xy 67.96378 45.9939) + (xy 67.949053 46) (xy 67.8 46) (xy 67.8 46.067345) (xy 67.688872 46.152618) (xy 67.688868 46.152622) + (xy 67.591413 46.279626) (xy 67.591411 46.27963) (xy 67.53015 46.427529) (xy 67.522419 46.48625) + (xy 67.8 46.48625) (xy 67.8 46.88625) (xy 67.52242 46.88625) (xy 67.53015 46.944968) (xy 67.530151 46.944975) + (xy 67.541911 46.973366) (xy 67.54671 47.034363) (xy 67.541912 47.049132) (xy 67.530149 47.077531) + (xy 67.522419 47.13625) (xy 67.8 47.13625) (xy 67.8 47.53625) (xy 67.52242 47.53625) (xy 67.53015 47.594968) + (xy 67.530151 47.594975) (xy 67.541911 47.623366) (xy 67.54671 47.684363) (xy 67.541912 47.699132) + (xy 67.530149 47.727531) (xy 67.522419 47.78625) (xy 67.8 47.78625) (xy 67.8 48.18625) (xy 67.52242 48.18625) + (xy 67.53015 48.244969) (xy 67.591411 48.392869) (xy 67.591413 48.392873) (xy 67.688869 48.51988) + (xy 67.733267 48.553947) (xy 67.767923 48.604371) (xy 67.772 48.632489) (xy 67.772 48.640009) (xy 67.753093 48.6982) + (xy 67.733269 48.718549) (xy 67.688877 48.752613) (xy 67.688868 48.752622) (xy 67.591413 48.879626) + (xy 67.591411 48.87963) (xy 67.53015 49.027529) (xy 67.522419 49.08625) (xy 67.8 49.08625) (xy 67.8 49.48625) + (xy 67.52242 49.48625) (xy 67.53015 49.544969) (xy 67.591411 49.692869) (xy 67.591413 49.692873) + (xy 67.688869 49.81988) (xy 67.733267 49.853947) (xy 67.767923 49.904371) (xy 67.772 49.932489) + (xy 67.772 50.06951) (xy 67.781927 50.137642) (xy 67.789941 50.154035) (xy 67.8 50.197515) (xy 67.8 50.6) + (xy 68.318 50.6) (xy 68.376191 50.618907) (xy 68.412155 50.668407) (xy 68.417 50.699) (xy 68.417 51.961231) + (xy 68.398093 52.019422) (xy 68.396542 52.021498) (xy 68.31914 52.12237) (xy 68.319135 52.122378) + (xy 68.263668 52.25629) (xy 68.263667 52.256291) (xy 68.244748 52.399999) (xy 68.244748 52.4) (xy 68.263667 52.543708) + (xy 68.263668 52.543709) (xy 68.319137 52.677625) (xy 68.407377 52.792621) (xy 68.522373 52.880861) + (xy 68.656289 52.93633) (xy 68.799998 52.95525) (xy 68.943707 52.93633) (xy 69.077623 52.880861) + (xy 69.192619 52.792621) (xy 69.280859 52.677625) (xy 69.336328 52.543709) (xy 69.355248 52.4) (xy 69.336328 52.256291) + (xy 69.280859 52.122375) (xy 69.192619 52.007379) (xy 69.192617 52.007378) (xy 69.188669 52.002232) + (xy 69.191166 52.000315) (xy 69.169219 51.95724) (xy 69.168 51.941753) (xy 69.168 50.699) (xy 69.186907 50.640809) + (xy 69.236407 50.604845) (xy 69.267 50.6) (xy 69.990248 50.6) (xy 70.009561 50.601902) (xy 70.057222 50.611382) + (xy 70.092908 50.626163) (xy 70.12505 50.64764) (xy 70.152359 50.674949) (xy 70.16843 50.699) (xy 70.173835 50.707089) + (xy 70.188616 50.742775) (xy 70.198097 50.790436) (xy 70.2 50.809751) (xy 70.2 53.9505) (xy 70.181093 54.008691) + (xy 70.131593 54.044655) (xy 70.101 54.0495) (xy 70.049499 54.0495) (xy 69.991308 54.030593) (xy 69.955344 53.981093) + (xy 69.950499 53.9505) (xy 69.950499 53.852133) (xy 69.950499 53.852128) (xy 69.944091 53.792517) + (xy 69.926621 53.745678) (xy 69.893797 53.65767) (xy 69.807549 53.542458) (xy 69.807548 53.542457) + (xy 69.807546 53.542454) (xy 69.807541 53.54245) (xy 69.692329 53.456202) (xy 69.557488 53.40591) + (xy 69.557483 53.405909) (xy 69.557481 53.405908) (xy 69.557477 53.405908) (xy 69.526249 53.40255) + (xy 69.497873 53.3995) (xy 69.49787 53.3995) (xy 67.402133 53.3995) (xy 67.402129 53.3995) (xy 67.402128 53.399501) + (xy 67.394949 53.400272) (xy 67.342519 53.405908) (xy 67.342514 53.405909) (xy 67.20767 53.456202) + (xy 67.092458 53.54245) (xy 67.09245 53.542458) (xy 67.006202 53.65767) (xy 66.95591 53.792511) + (xy 66.955909 53.792517) (xy 66.949785 53.849481) (xy 66.9495 53.852129) (xy 66.9495 54.501) (xy 66.930593 54.559191) + (xy 66.881093 54.595155) (xy 66.8505 54.6) (xy 66.007 54.6) (xy 65.948809 54.581093) (xy 65.912845 54.531593) + (xy 65.908 54.501) (xy 65.908 53.849481) (xy 65.897394 53.745678) (xy 65.841657 53.577474) (xy 65.748635 53.426662) + (xy 65.623337 53.301364) (xy 65.472525 53.208342) (xy 65.304321 53.152605) (xy 65.200516 53.142) + (xy 64.404001 53.142) (xy 64.404 53.142001) (xy 64.404 54.6) (xy 63.896 54.6) (xy 63.896 53.142001) + (xy 63.895999 53.142) (xy 63.099484 53.142) (xy 62.995678 53.152605) (xy 62.827474 53.208342) (xy 62.676662 53.301364) + (xy 62.669004 53.309023) (xy 62.614487 53.3368) (xy 62.554055 53.327229) (xy 62.51079 53.283964) + (xy 62.5 53.239019) (xy 62.5 50.452129) (xy 63.7495 50.452129) (xy 63.7495 51.197866) (xy 63.749501 51.19787) + (xy 63.755908 51.25748) (xy 63.755909 51.257485) (xy 63.806202 51.392329) (xy 63.89245 51.507541) + (xy 63.892454 51.507546) (xy 63.892457 51.507548) (xy 63.892458 51.507549) (xy 64.00767 51.593797) + (xy 64.142511 51.644089) (xy 64.142512 51.644089) (xy 64.142517 51.644091) (xy 64.202127 51.6505) + (xy 64.7005 51.650499) (xy 64.758691 51.669406) (xy 64.794655 51.718906) (xy 64.7995 51.749499) + (xy 64.7995 51.850096) (xy 64.791965 51.88798) (xy 64.763669 51.956293) (xy 64.74475 52.099999) + (xy 64.74475 52.1) (xy 64.763669 52.243708) (xy 64.76367 52.243709) (xy 64.819139 52.377625) (xy 64.907379 52.492621) + (xy 65.022375 52.580861) (xy 65.156291 52.63633) (xy 65.3 52.65525) (xy 65.443709 52.63633) (xy 65.577625 52.580861) + (xy 65.692621 52.492621) (xy 65.780861 52.377625) (xy 65.83633 52.243709) (xy 65.85525 52.1) (xy 65.83633 51.956291) + (xy 65.808034 51.887978) (xy 65.8005 51.850096) (xy 65.8005 51.749499) (xy 65.819407 51.691308) + (xy 65.868907 51.655344) (xy 65.8995 51.650499) (xy 66.497867 51.650499) (xy 66.497872 51.650499) + (xy 66.557483 51.644091) (xy 66.624907 51.618943) (xy 66.692329 51.593797) (xy 66.692329 51.593796) + (xy 66.692331 51.593796) (xy 66.807546 51.507546) (xy 66.893796 51.392331) (xy 66.944091 51.257483) + (xy 66.9505 51.197873) (xy 66.950499 50.452128) (xy 66.944091 50.392517) (xy 66.919076 50.325448) + (xy 66.893797 50.25767) (xy 66.807549 50.142458) (xy 66.807548 50.142457) (xy 66.807546 50.142454) + (xy 66.807541 50.14245) (xy 66.692329 50.056202) (xy 66.557488 50.00591) (xy 66.557483 50.005909) + (xy 66.557481 50.005908) (xy 66.557477 50.005908) (xy 66.526249 50.00255) (xy 66.497873 49.9995) + (xy 66.49787 49.9995) (xy 64.202133 49.9995) (xy 64.202129 49.9995) (xy 64.202128 49.999501) (xy 64.194949 50.000272) + (xy 64.142519 50.005908) (xy 64.142514 50.005909) (xy 64.00767 50.056202) (xy 63.892458 50.14245) + (xy 63.89245 50.142458) (xy 63.806202 50.25767) (xy 63.75591 50.392511) (xy 63.755908 50.392522) + (xy 63.7495 50.452129) (xy 62.5 50.452129) (xy 62.5 49.51017) (xy 62.518907 49.451979) (xy 62.533471 49.440521) + (xy 62.531852 49.438895) (xy 62.535381 49.435381) (xy 62.55 49.45) (xy 62.554571 48.129001) (xy 63.492 48.129001) + (xy 63.492 48.250515) (xy 63.502605 48.354321) (xy 63.558342 48.522525) (xy 63.651364 48.673337) + (xy 63.776662 48.798635) (xy 63.927474 48.891657) (xy 64.095678 48.947394) (xy 64.199484 48.958) + (xy 65.095999 48.958) (xy 65.096 48.957999) (xy 65.096 48.129001) (xy 65.604 48.129001) (xy 65.604 48.957999) + (xy 65.604001 48.958) (xy 66.500516 48.958) (xy 66.604321 48.947394) (xy 66.772525 48.891657) (xy 66.923337 48.798635) + (xy 67.048635 48.673337) (xy 67.141657 48.522525) (xy 67.197394 48.354321) (xy 67.208 48.250515) + (xy 67.208 48.129001) (xy 67.207999 48.129) (xy 65.604001 48.129) (xy 65.604 48.129001) (xy 65.096 48.129001) + (xy 65.095999 48.129) (xy 63.492001 48.129) (xy 63.492 48.129001) (xy 62.554571 48.129001) (xy 62.556749 47.499484) + (xy 63.492 47.499484) (xy 63.492 47.620999) (xy 63.492001 47.621) (xy 65.095999 47.621) (xy 65.096 47.620999) + (xy 65.096 46.792001) (xy 65.604 46.792001) (xy 65.604 47.620999) (xy 65.604001 47.621) (xy 67.207999 47.621) + (xy 67.208 47.620999) (xy 67.208 47.499484) (xy 67.197394 47.395678) (xy 67.141657 47.227474) (xy 67.048635 47.076662) + (xy 66.923337 46.951364) (xy 66.772525 46.858342) (xy 66.604321 46.802605) (xy 66.500516 46.792) + (xy 65.604001 46.792) (xy 65.604 46.792001) (xy 65.096 46.792001) (xy 65.095999 46.792) (xy 64.199484 46.792) + (xy 64.095678 46.802605) (xy 63.927474 46.858342) (xy 63.776662 46.951364) (xy 63.651364 47.076662) + (xy 63.558342 47.227474) (xy 63.502605 47.395678) (xy 63.492 47.499484) (xy 62.556749 47.499484) + (xy 62.57474 42.299996) (xy 67.287004 42.299996) (xy 67.287004 42.300003) (xy 67.306949 42.527991) + (xy 67.366187 42.749069) (xy 67.46291 42.956495) (xy 67.512899 43.027888) (xy 68.2 42.340787) (xy 68.2 42.352661) + (xy 68.227259 42.454394) (xy 68.27992 42.545606) (xy 68.354394 42.62008) (xy 68.445606 42.672741) + (xy 68.547339 42.7) (xy 68.559209 42.7) (xy 67.87211 43.387099) (xy 67.943503 43.437088) (xy 68.15093 43.533812) + (xy 68.372008 43.59305) (xy 68.599997 43.612996) (xy 68.600003 43.612996) (xy 68.827991 43.59305) + (xy 69.049069 43.533812) (xy 69.256498 43.437087) (xy 69.256499 43.437087) (xy 69.327888 43.387099) + (xy 68.640789 42.7) (xy 68.652661 42.7) (xy 68.754394 42.672741) (xy 68.845606 42.62008) (xy 68.92008 42.545606) + (xy 68.972741 42.454394) (xy 69 42.352661) (xy 69 42.340789) (xy 69.687099 43.027888) (xy 69.737087 42.956499) + (xy 69.737087 42.956498) (xy 69.833812 42.749069) (xy 69.89305 42.527991) (xy 69.912996 42.300003) + (xy 69.912996 42.299996) (xy 69.89305 42.072008) (xy 69.833812 41.85093) (xy 69.737088 41.643503) + (xy 69.687099 41.57211) (xy 69 42.259209) (xy 69 42.247339) (xy 68.972741 42.145606) (xy 68.92008 42.054394) + (xy 68.845606 41.97992) (xy 68.754394 41.927259) (xy 68.652661 41.9) (xy 68.640787 41.9) (xy 69.327888 41.212899) + (xy 69.256495 41.16291) (xy 69.04907 41.066187) (xy 68.970472 41.045127) (xy 68.919158 41.011803) + (xy 68.897231 40.954682) (xy 68.913066 40.895581) (xy 68.960616 40.857076) (xy 68.996095 40.8505) + (xy 69.424673 40.8505) (xy 69.424674 40.8505) (xy 69.49774 40.835966) (xy 69.580601 40.780601) (xy 69.635966 40.69774) + (xy 69.6505 40.624674) (xy 69.6505 38.975326) (xy 69.635966 38.90226) (xy 69.580601 38.819399) (xy 69.580599 38.819397) + (xy 69.497742 38.764035) (xy 69.49774 38.764034) (xy 69.497737 38.764033) (xy 69.497736 38.764033) + (xy 69.424684 38.749501) (xy 69.424674 38.7495) (xy 67.775326 38.7495) (xy 67.775325 38.7495) (xy 67.775315 38.749501) + (xy 67.702263 38.764033) (xy 67.702257 38.764035) (xy 67.6194 38.819397) (xy 67.619397 38.8194) + (xy 67.564035 38.902257) (xy 67.564033 38.902263) (xy 67.549501 38.975315) (xy 67.5495 38.975327) + (xy 67.5495 40.624672) (xy 67.549501 40.624684) (xy 67.564033 40.697736) (xy 67.564035 40.697742) + (xy 67.619397 40.780599) (xy 67.619399 40.780601) (xy 67.70226 40.835966) (xy 67.757808 40.847015) + (xy 67.775315 40.850498) (xy 67.77532 40.850498) (xy 67.775326 40.8505) (xy 67.775327 40.8505) (xy 68.203905 40.8505) + (xy 68.262096 40.869407) (xy 68.29806 40.918907) (xy 68.29806 40.980093) (xy 68.262096 41.029593) + (xy 68.229528 41.045127) (xy 68.150924 41.066188) (xy 67.94351 41.162907) (xy 67.943493 41.162917) + (xy 67.87211 41.212899) (xy 68.559211 41.9) (xy 68.547339 41.9) (xy 68.445606 41.927259) (xy 68.354394 41.97992) + (xy 68.27992 42.054394) (xy 68.227259 42.145606) (xy 68.2 42.247339) (xy 68.2 42.259211) (xy 67.512899 41.57211) + (xy 67.462917 41.643493) (xy 67.462907 41.64351) (xy 67.366188 41.850925) (xy 67.306949 42.072008) + (xy 67.287004 42.299996) (xy 62.57474 42.299996) (xy 62.599265 35.212312) (xy 62.602712 35.186755) + (xy 62.613054 35.1486) (xy 62.646526 35.097383) (xy 62.703711 35.075621) (xy 62.708606 35.0755) + (xy 70.093988 35.0755) + ) + ) + ) + (zone + (net 19) + (net_name "/Input_Output_Module/-12V") + (layer "F.Cu") + (uuid "00000000-0000-0000-0000-000061e5b1b0") + (hatch edge 0.508) + (connect_pads + (clearance 0.25) + ) + (min_thickness 0.2) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.508) + (thermal_bridge_width 0.508) + (smoothing fillet) + (radius 0.2) + ) + (polygon + (pts + (xy 70.5 50.6) (xy 73.7 50.6) (xy 73.7 46) (xy 70.5 46) (xy 70.5 35) (xy 82.6 35) (xy 82.6 54.6) + (xy 70.5 54.6) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 82.552179 35.094407) (xy 82.588143 35.143907) (xy 82.591086 35.155186) (xy 82.598098 35.190437) + (xy 82.6 35.209751) (xy 82.6 49.148889) (xy 82.592465 49.186771) (xy 82.56367 49.256291) (xy 82.563669 49.256294) + (xy 82.54475 49.399999) (xy 82.54475 49.4) (xy 82.556288 49.487643) (xy 82.56367 49.543709) (xy 82.592464 49.613226) + (xy 82.6 49.651109) (xy 82.6 54.390248) (xy 82.598097 54.409563) (xy 82.588616 54.457224) (xy 82.573835 54.49291) + (xy 82.552362 54.525047) (xy 82.525047 54.552362) (xy 82.49291 54.573835) (xy 82.457224 54.588616) + (xy 82.409563 54.598097) (xy 82.390248 54.6) (xy 80.866821 54.6) (xy 80.80863 54.581093) (xy 80.772666 54.531593) + (xy 80.772666 54.470407) (xy 80.796817 54.430997) (xy 81.39916 53.828652) (xy 81.407311 53.820501) + (xy 81.407314 53.8205) (xy 81.5005 53.727314) (xy 81.500503 53.727309) (xy 81.56639 53.61319) (xy 81.56639 53.613188) + (xy 81.566392 53.613186) (xy 81.6005 53.485893) (xy 81.6005 53.354108) (xy 81.6005 51.649902) (xy 81.608035 51.612018) + (xy 81.63633 51.543709) (xy 81.65525 51.4) (xy 81.63633 51.256291) (xy 81.580861 51.122375) (xy 81.492621 51.007379) + (xy 81.377625 50.919139) (xy 81.377621 50.919137) (xy 81.243709 50.86367) (xy 81.243708 50.863669) + (xy 81.1 50.84475) (xy 80.956291 50.863669) (xy 80.95629 50.86367) (xy 80.822378 50.919137) (xy 80.822374 50.919139) + (xy 80.707381 51.007377) (xy 80.707377 51.007381) (xy 80.619139 51.122374) (xy 80.619137 51.122378) + (xy 80.56367 51.25629) (xy 80.563669 51.256291) (xy 80.548107 51.3745) (xy 80.54475 51.4) (xy 80.56367 51.543709) + (xy 80.591964 51.612018) (xy 80.5995 51.649902) (xy 80.5995 53.171678) (xy 80.580593 53.229869) + (xy 80.570504 53.241682) (xy 79.241182 54.571004) (xy 79.186665 54.598781) (xy 79.171178 54.6) (xy 74.995642 54.6) + (xy 74.937451 54.581093) (xy 74.904178 54.538886) (xy 74.870352 54.457224) (xy 74.865084 54.444505) + (xy 74.782951 54.321584) (xy 74.678416 54.217049) (xy 74.555495 54.134916) (xy 74.555493 54.134915) + (xy 74.418914 54.078342) (xy 74.273918 54.0495) (xy 73.273918 54.0495) (xy 72.473918 54.0495) (xy 71.573918 54.0495) + (xy 70.599 54.0495) (xy 70.540809 54.030593) (xy 70.504845 53.981093) (xy 70.5 53.9505) (xy 70.5 50.809751) + (xy 70.501902 50.790438) (xy 70.511382 50.742777) (xy 70.526162 50.707092) (xy 70.547642 50.674946) + (xy 70.574946 50.647642) (xy 70.607092 50.626162) (xy 70.642775 50.611382) (xy 70.668021 50.60636) + (xy 70.690439 50.601902) (xy 70.709752 50.6) (xy 73.499999 50.6) (xy 73.5 50.6) (xy 73.7 50.6) (xy 73.7 50.435973) + (xy 73.718799 50.402406) (xy 73.76669 50.379543) (xy 73.766551 50.379092) (xy 73.769626 50.378141) + (xy 73.771728 50.377138) (xy 73.773893 50.376823) (xy 73.878983 50.325448) (xy 73.961698 50.242733) + (xy 74.013073 50.137643) (xy 74.013072 50.137643) (xy 74.015721 50.132227) (xy 74.058265 50.088253) + (xy 74.11853 50.077683) (xy 74.173499 50.104556) (xy 74.174666 50.105703) (xy 74.195504 50.126541) + (xy 74.223281 50.181058) (xy 74.2245 50.196545) (xy 74.2245 50.449435) (xy 74.25009 50.544938) (xy 74.253339 50.550565) + (xy 74.299526 50.630563) (xy 74.869437 51.200475) (xy 74.955063 51.249911) (xy 75.050564 51.2755) + (xy 75.050565 51.2755) (xy 75.200501 51.2755) (xy 75.258692 51.294407) (xy 75.294656 51.343907) + (xy 75.299501 51.3745) (xy 75.299501 51.59787) (xy 75.305908 51.65748) (xy 75.305909 51.657485) + (xy 75.356202 51.792329) (xy 75.44245 51.907541) (xy 75.442454 51.907546) (xy 75.442457 51.907548) + (xy 75.442458 51.907549) (xy 75.55767 51.993797) (xy 75.692511 52.044089) (xy 75.692512 52.044089) + (xy 75.692517 52.044091) (xy 75.752127 52.0505) (xy 75.978454 52.050499) (xy 76.036644 52.069406) + (xy 76.048458 52.079495) (xy 76.200659 52.231696) (xy 76.228436 52.286213) (xy 76.218865 52.346645) + (xy 76.210311 52.360487) (xy 76.172207 52.412116) (xy 76.127355 52.540296) (xy 76.127353 52.540305) + (xy 76.1245 52.570725) (xy 76.1245 53.229274) (xy 76.127353 53.259694) (xy 76.127355 53.259703) + (xy 76.172207 53.387883) (xy 76.252845 53.497144) (xy 76.252847 53.497146) (xy 76.25285 53.49715) + (xy 76.252853 53.497152) (xy 76.252855 53.497154) (xy 76.362116 53.577792) (xy 76.362117 53.577792) + (xy 76.362118 53.577793) (xy 76.490301 53.622646) (xy 76.520725 53.625499) (xy 76.520727 53.6255) + (xy 76.520734 53.6255) (xy 77.029273 53.6255) (xy 77.029273 53.625499) (xy 77.059699 53.622646) + (xy 77.187882 53.577793) (xy 77.29715 53.49715) (xy 77.377793 53.387882) (xy 77.422646 53.259699) + (xy 77.425499 53.229273) (xy 77.4255 53.229273) (xy 77.4255 52.570727) (xy 77.425499 52.570725) + (xy 77.422646 52.540305) (xy 77.422646 52.540301) (xy 77.377793 52.412118) (xy 77.29715 52.30285) + (xy 77.202253 52.232813) (xy 77.166662 52.183048) (xy 77.165433 52.178843) (xy 77.162411 52.167563) + (xy 77.112975 52.081937) (xy 77.024834 51.993796) (xy 76.919652 51.888613) (xy 76.891875 51.834097) + (xy 76.896898 51.784013) (xy 76.944091 51.657483) (xy 76.9505 51.597873) (xy 76.950499 50.202128) + (xy 76.944091 50.142517) (xy 76.940253 50.132227) (xy 76.893797 50.00767) (xy 76.807549 49.892458) + (xy 76.807548 49.892457) (xy 76.807546 49.892454) (xy 76.79206 49.880861) (xy 76.692329 49.806202) + (xy 76.557488 49.75591) (xy 76.557483 49.755909) (xy 76.557481 49.755908) (xy 76.557477 49.755908) + (xy 76.526249 49.75255) (xy 76.497873 49.7495) (xy 76.49787 49.7495) (xy 75.752133 49.7495) (xy 75.752129 49.7495) + (xy 75.752128 49.749501) (xy 75.744949 49.750272) (xy 75.692519 49.755908) (xy 75.692514 49.755909) + (xy 75.55767 49.806202) (xy 75.442458 49.89245) (xy 75.44245 49.892458) (xy 75.356202 50.00767) + (xy 75.30591 50.142511) (xy 75.305908 50.142522) (xy 75.2995 50.202129) (xy 75.2995 50.329454) (xy 75.280593 50.387645) + (xy 75.231093 50.423609) (xy 75.169907 50.423609) (xy 75.130496 50.399458) (xy 75.004496 50.273458) + (xy 74.976719 50.218941) (xy 74.9755 50.203454) (xy 74.9755 49.950566) (xy 74.971685 49.93633) (xy 74.971396 49.93525) + (xy 74.94991 49.855063) (xy 74.94991 49.855062) (xy 74.94991 49.855061) (xy 74.900475 49.769438) + (xy 74.831037 49.699999) (xy 77.54475 49.699999) (xy 77.54475 49.7) (xy 77.563669 49.843708) (xy 77.56367 49.843709) + (xy 77.616898 49.972216) (xy 77.619139 49.977625) (xy 77.707379 50.092621) (xy 77.822375 50.180861) + (xy 77.956291 50.23633) (xy 78.094564 50.254534) (xy 78.149789 50.280875) (xy 78.151646 50.282683) + (xy 78.220504 50.351541) (xy 78.248281 50.406058) (xy 78.2495 50.421545) (xy 78.2495 51.597866) + (xy 78.249501 51.59787) (xy 78.255908 51.65748) (xy 78.255909 51.657485) (xy 78.306202 51.792329) + (xy 78.39245 51.907541) (xy 78.392454 51.907546) (xy 78.392457 51.907548) (xy 78.392458 51.907549) + (xy 78.510943 51.996247) (xy 78.546196 52.046256) (xy 78.545322 52.107435) (xy 78.508655 52.156416) + (xy 78.451614 52.1745) (xy 78.170725 52.1745) (xy 78.140305 52.177353) (xy 78.140296 52.177355) + (xy 78.012116 52.222207) (xy 77.902855 52.302845) (xy 77.902845 52.302855) (xy 77.822207 52.412116) + (xy 77.777355 52.540296) (xy 77.777353 52.540305) (xy 77.7745 52.570725) (xy 77.7745 53.229274) + (xy 77.777353 53.259694) (xy 77.777355 53.259703) (xy 77.822207 53.387883) (xy 77.902845 53.497144) + (xy 77.902847 53.497146) (xy 77.90285 53.49715) (xy 77.902853 53.497152) (xy 77.902855 53.497154) + (xy 78.012116 53.577792) (xy 78.012117 53.577792) (xy 78.012118 53.577793) (xy 78.140301 53.622646) + (xy 78.170725 53.625499) (xy 78.170727 53.6255) (xy 78.170734 53.6255) (xy 78.679273 53.6255) (xy 78.679273 53.625499) + (xy 78.709699 53.622646) (xy 78.837882 53.577793) (xy 78.94715 53.49715) (xy 79.027793 53.387882) + (xy 79.072646 53.259699) (xy 79.075499 53.229273) (xy 79.0755 53.229273) (xy 79.0755 52.796545) + (xy 79.094407 52.738354) (xy 79.104496 52.726541) (xy 79.300474 52.530563) (xy 79.300475 52.530563) + (xy 79.349908 52.444941) (xy 79.34991 52.444938) (xy 79.362705 52.397186) (xy 79.3755 52.349436) + (xy 79.3755 52.250564) (xy 79.3755 52.147206) (xy 79.394407 52.089015) (xy 79.443907 52.053051) + (xy 79.463913 52.048774) (xy 79.507483 52.044091) (xy 79.63576 51.996247) (xy 79.642329 51.993797) + (xy 79.642329 51.993796) (xy 79.642331 51.993796) (xy 79.757546 51.907546) (xy 79.843796 51.792331) + (xy 79.846899 51.784013) (xy 79.894089 51.657488) (xy 79.89409 51.657485) (xy 79.894091 51.657483) + (xy 79.9005 51.597873) (xy 79.900499 50.202128) (xy 79.894091 50.142517) (xy 79.890253 50.132227) + (xy 79.843797 50.00767) (xy 79.757549 49.892458) (xy 79.757548 49.892457) (xy 79.757546 49.892454) + (xy 79.74206 49.880861) (xy 79.642329 49.806202) (xy 79.507488 49.75591) (xy 79.507483 49.755909) + (xy 79.507481 49.755908) (xy 79.507477 49.755908) (xy 79.476249 49.75255) (xy 79.447873 49.7495) + (xy 79.44787 49.7495) (xy 78.748587 49.7495) (xy 78.690396 49.730593) (xy 78.654432 49.681093) (xy 78.650434 49.663422) + (xy 78.643565 49.61125) (xy 78.63633 49.556291) (xy 78.580861 49.422375) (xy 78.492621 49.307379) + (xy 78.377625 49.219139) (xy 78.377621 49.219137) (xy 78.243709 49.16367) (xy 78.243708 49.163669) + (xy 78.1 49.14475) (xy 77.956291 49.163669) (xy 77.95629 49.16367) (xy 77.822378 49.219137) (xy 77.822374 49.219139) + (xy 77.707381 49.307377) (xy 77.707377 49.307381) (xy 77.619139 49.422374) (xy 77.619137 49.422378) + (xy 77.56367 49.55629) (xy 77.563669 49.556291) (xy 77.54475 49.699999) (xy 74.831037 49.699999) + (xy 74.830562 49.699524) (xy 74.830562 49.699525) (xy 74.422528 49.291491) (xy 74.394751 49.236974) + (xy 74.404322 49.176542) (xy 74.447587 49.133277) (xy 74.451814 49.131328) (xy 74.452618 49.130863) + (xy 74.452625 49.130861) (xy 74.567621 49.042621) (xy 74.655861 48.927625) (xy 74.71133 48.793709) + (xy 74.73025 48.65) (xy 74.71133 48.506291) (xy 74.655861 48.372375) (xy 74.567621 48.257379) (xy 74.452625 48.169139) + (xy 74.452621 48.169137) (xy 74.318709 48.11367) (xy 74.318708 48.113669) (xy 74.175 48.09475) (xy 74.031291 48.113669) + (xy 74.03129 48.11367) (xy 73.897372 48.169139) (xy 73.891751 48.172385) (xy 73.890285 48.169845) + (xy 73.84407 48.186216) (xy 73.841469 48.18625) (xy 73.71624 48.18625) (xy 73.709083 48.185991) + (xy 73.705761 48.18575) (xy 73.70576 48.18575) (xy 73.7 48.18575) (xy 73.7 47.819001) (xy 74.742 47.819001) + (xy 74.742 47.940515) (xy 74.752605 48.044321) (xy 74.808342 48.212525) (xy 74.901364 48.363337) + (xy 75.026662 48.488635) (xy 75.177474 48.581657) (xy 75.345678 48.637394) (xy 75.449484 48.648) + (xy 76.345999 48.648) (xy 76.346 48.647999) (xy 76.346 47.819001) (xy 76.854 47.819001) (xy 76.854 48.647999) + (xy 76.854001 48.648) (xy 77.750516 48.648) (xy 77.854321 48.637394) (xy 78.022525 48.581657) (xy 78.173337 48.488635) + (xy 78.298635 48.363337) (xy 78.391657 48.212525) (xy 78.447394 48.044321) (xy 78.458 47.940515) + (xy 78.458 47.819001) (xy 78.457999 47.819) (xy 76.854001 47.819) (xy 76.854 47.819001) (xy 76.346 47.819001) + (xy 76.345999 47.819) (xy 74.742001 47.819) (xy 74.742 47.819001) (xy 73.7 47.819001) (xy 73.7 47.78625) + (xy 74.27258 47.78625) (xy 74.27258 47.786249) (xy 74.26485 47.727531) (xy 74.253088 47.699136) + (xy 74.248287 47.638139) (xy 74.253088 47.623363) (xy 74.26485 47.594967) (xy 74.272581 47.53625) + (xy 73.7 47.53625) (xy 73.7 47.189484) (xy 74.742 47.189484) (xy 74.742 47.310999) (xy 74.742001 47.311) + (xy 78.457999 47.311) (xy 78.458 47.310999) (xy 78.458 47.189484) (xy 78.447394 47.085678) (xy 78.391657 46.917474) + (xy 78.298635 46.766662) (xy 78.173337 46.641364) (xy 78.022525 46.548342) (xy 77.854321 46.492605) + (xy 77.750516 46.482) (xy 77.037462 46.482) (xy 76.979271 46.463093) (xy 76.943307 46.413593) (xy 76.943307 46.352407) + (xy 76.977195 46.304458) (xy 76.980285 46.302086) (xy 76.992621 46.292621) (xy 77.080861 46.177625) + (xy 77.13633 46.043709) (xy 77.15525 45.9) (xy 77.13633 45.756291) (xy 77.108034 45.687978) (xy 77.1005 45.650096) + (xy 77.1005 45.539499) (xy 77.119407 45.481308) (xy 77.168907 45.445344) (xy 77.1995 45.440499) + (xy 77.747867 45.440499) (xy 77.747872 45.440499) (xy 77.807483 45.434091) (xy 77.874907 45.408943) + (xy 77.942329 45.383797) (xy 77.942329 45.383796) (xy 77.942331 45.383796) (xy 78.057546 45.297546) + (xy 78.143796 45.182331) (xy 78.194091 45.047483) (xy 78.2005 44.987873) (xy 78.200499 44.242128) + (xy 78.194091 44.182517) (xy 78.194089 44.182511) (xy 78.143797 44.04767) (xy 78.057549 43.932458) + (xy 78.057548 43.932457) (xy 78.057546 43.932454) (xy 78.057541 43.93245) (xy 77.942329 43.846202) + (xy 77.807488 43.79591) (xy 77.807483 43.795909) (xy 77.807481 43.795908) (xy 77.807477 43.795908) + (xy 77.776249 43.79255) (xy 77.747873 43.7895) (xy 77.74787 43.7895) (xy 75.452133 43.7895) (xy 75.452129 43.7895) + (xy 75.452128 43.789501) (xy 75.444949 43.790272) (xy 75.392519 43.795908) (xy 75.392514 43.795909) + (xy 75.25767 43.846202) (xy 75.142458 43.93245) (xy 75.14245 43.932458) (xy 75.056202 44.04767) + (xy 75.00591 44.182511) (xy 75.005908 44.182522) (xy 74.9995 44.242129) (xy 74.9995 44.987866) (xy 74.999501 44.98787) + (xy 75.005908 45.04748) (xy 75.005909 45.047485) (xy 75.056202 45.182329) (xy 75.14245 45.297541) + (xy 75.142454 45.297546) (xy 75.142457 45.297548) (xy 75.142458 45.297549) (xy 75.25767 45.383797) + (xy 75.392511 45.434089) (xy 75.392512 45.434089) (xy 75.392517 45.434091) (xy 75.452127 45.4405) + (xy 76.0005 45.440499) (xy 76.058691 45.459406) (xy 76.094655 45.508906) (xy 76.0995 45.539499) + (xy 76.0995 45.650096) (xy 76.091965 45.68798) (xy 76.063669 45.756293) (xy 76.04475 45.899999) + (xy 76.04475 45.9) (xy 76.063669 46.043708) (xy 76.06367 46.043709) (xy 76.108782 46.152622) (xy 76.119139 46.177625) + (xy 76.207379 46.292621) (xy 76.207383 46.292624) (xy 76.207384 46.292625) (xy 76.222805 46.304458) + (xy 76.257461 46.354883) (xy 76.255859 46.416047) (xy 76.218612 46.464589) (xy 76.162538 46.482) + (xy 75.449484 46.482) (xy 75.345678 46.492605) (xy 75.177474 46.548342) (xy 75.026662 46.641364) + (xy 74.901364 46.766662) (xy 74.808342 46.917474) (xy 74.752605 47.085678) (xy 74.742 47.189484) + (xy 73.7 47.189484) (xy 73.7 47.13625) (xy 74.27258 47.13625) (xy 74.27258 47.136249) (xy 74.26485 47.077531) + (xy 74.253088 47.049136) (xy 74.248287 46.988139) (xy 74.253088 46.973363) (xy 74.26485 46.944967) + (xy 74.272581 46.88625) (xy 73.7 46.88625) (xy 73.7 46.48625) (xy 74.27258 46.48625) (xy 74.27258 46.486249) + (xy 74.264849 46.42753) (xy 74.203588 46.27963) (xy 74.203586 46.279626) (xy 74.106131 46.152622) + (xy 74.106127 46.152618) (xy 73.979123 46.055163) (xy 73.979119 46.055161) (xy 73.831224 45.993901) + (xy 73.831216 45.993899) (xy 73.712347 45.97825) (xy 73.247501 45.97825) (xy 73.2475 45.978251) + (xy 73.2475 46) (xy 72.8475 46) (xy 72.8475 45.978251) (xy 72.847499 45.97825) (xy 72.382656 45.97825) + (xy 72.382651 45.978251) (xy 72.263781 45.993899) (xy 72.257515 45.995579) (xy 72.257215 45.99446) + (xy 72.229362 46) (xy 70.709752 46) (xy 70.690438 45.998098) (xy 70.669328 45.993899) (xy 70.642775 45.988617) + (xy 70.607089 45.973835) (xy 70.60633 45.973328) (xy 70.574949 45.952359) (xy 70.54764 45.92505) + (xy 70.526163 45.892908) (xy 70.511382 45.857222) (xy 70.501902 45.809561) (xy 70.5 45.790248) (xy 70.5 42.951198) + (xy 77.208011 42.951198) (xy 77.268595 42.99362) (xy 77.268605 42.993625) (xy 77.468091 43.086647) + (xy 77.46809 43.086647) (xy 77.680723 43.143621) (xy 77.899997 43.162805) (xy 77.900003 43.162805) + (xy 78.119276 43.143621) (xy 78.331909 43.086647) (xy 78.531394 42.993625) (xy 78.531406 42.993619) + (xy 78.591988 42.951198) (xy 77.9 42.25921) (xy 77.208011 42.951198) (xy 70.5 42.951198) (xy 70.5 41.899996) + (xy 76.637195 41.899996) (xy 76.637195 41.900003) (xy 76.656378 42.119276) (xy 76.713352 42.331909) + (xy 76.806373 42.531392) (xy 76.806377 42.5314) (xy 76.8488 42.591987) (xy 77.540788 41.899999) + (xy 77.494711 41.853922) (xy 77.55 41.853922) (xy 77.55 41.946078) (xy 77.573852 42.035095) (xy 77.61993 42.114905) + (xy 77.685095 42.18007) (xy 77.764905 42.226148) (xy 77.853922 42.25) (xy 77.946078 42.25) (xy 78.035095 42.226148) + (xy 78.114905 42.18007) (xy 78.18007 42.114905) (xy 78.226148 42.035095) (xy 78.25 41.946078) (xy 78.25 41.9) + (xy 78.25921 41.9) (xy 78.951198 42.591988) (xy 78.993619 42.531406) (xy 78.993625 42.531394) (xy 79.086647 42.331909) + (xy 79.143621 42.119276) (xy 79.162805 41.900003) (xy 79.162805 41.899996) (xy 79.143621 41.680723) + (xy 79.086647 41.46809) (xy 78.993626 41.268608) (xy 78.993623 41.268602) (xy 78.951198 41.208011) + (xy 78.25921 41.9) (xy 78.25 41.9) (xy 78.25 41.853922) (xy 78.226148 41.764905) (xy 78.18007 41.685095) + (xy 78.114905 41.61993) (xy 78.035095 41.573852) (xy 77.946078 41.55) (xy 77.853922 41.55) (xy 77.764905 41.573852) + (xy 77.685095 41.61993) (xy 77.61993 41.685095) (xy 77.573852 41.764905) (xy 77.55 41.853922) (xy 77.494711 41.853922) + (xy 76.8488 41.208011) (xy 76.806378 41.268599) (xy 76.806373 41.268608) (xy 76.713352 41.46809) + (xy 76.656378 41.680723) (xy 76.637195 41.899996) (xy 70.5 41.899996) (xy 70.5 40.8488) (xy 77.208011 40.8488) + (xy 77.899999 41.540788) (xy 78.591987 40.8488) (xy 78.5314 40.806377) (xy 78.531392 40.806373) + (xy 78.331908 40.713352) (xy 78.331909 40.713352) (xy 78.119276 40.656378) (xy 77.900003 40.637195) + (xy 77.899997 40.637195) (xy 77.680723 40.656378) (xy 77.46809 40.713352) (xy 77.268608 40.806373) + (xy 77.268599 40.806378) (xy 77.208011 40.8488) (xy 70.5 40.8488) (xy 70.5 35.209751) (xy 70.501902 35.190437) + (xy 70.508914 35.155186) (xy 70.538811 35.101802) (xy 70.594376 35.076186) (xy 70.606012 35.0755) + (xy 82.493988 35.0755) + ) + ) + ) + (zone + (net 0) + (net_name "") + (layer "F.Cu") + (uuid "244d0622-2f04-4395-b0ce-fa7cdc47da8f") + (hatch edge 0.508) + (connect_pads + (clearance 0) + ) + (min_thickness 0.2) + (filled_areas_thickness no) + (keepout + (tracks allowed) + (vias not_allowed) + (pads allowed) + (copperpour not_allowed) + (footprints allowed) + ) + (fill + (thermal_gap 0.508) + (thermal_bridge_width 0.508) + ) + (polygon + (pts + (xy 86.7 109.5) (xy 72.9 109.4) (xy 72.9 96.2) (xy 86.8 96.2) + ) + ) + ) + (zone + (net 0) + (net_name "") + (layer "F.Cu") + (uuid "d7278cec-9bf5-40d0-a7e9-73a064c77d8d") + (hatch edge 0.508) + (connect_pads + (clearance 0) + ) + (min_thickness 0.2) + (filled_areas_thickness no) + (keepout + (tracks allowed) + (vias not_allowed) + (pads allowed) + (copperpour not_allowed) + (footprints allowed) + ) + (fill + (thermal_gap 0.508) + (thermal_bridge_width 0.508) + ) + (polygon + (pts + (xy 107.7 119.9) (xy 94.9 119.9) (xy 95 107.1) (xy 107.6 107) + ) + ) + ) + (zone + (net 3) + (net_name "/Supply_Ref/-15V") + (layer "B.Cu") + (uuid "00000000-0000-0000-0000-000061e5b192") + (hatch edge 0.508) + (priority 1) + (connect_pads + (clearance 0.25) + ) + (min_thickness 0.254) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.508) + (thermal_bridge_width 0.508) + (smoothing fillet) + (radius 0.2) + ) + (polygon + (pts + (xy 73.5 51.5) (xy 62.5 51.5) (xy 62.5 41) (xy 73.5 41) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 67.844662 41.020002) (xy 67.891155 41.073658) (xy 67.901259 41.143932) (xy 67.872666 41.206538) + (xy 67.872109 41.2129) (xy 68.559209 41.9) (xy 68.547339 41.9) (xy 68.445606 41.927259) (xy 68.354394 41.97992) + (xy 68.27992 42.054394) (xy 68.227259 42.145606) (xy 68.2 42.247339) (xy 68.2 42.259209) (xy 67.5129 41.572109) + (xy 67.462913 41.6435) (xy 67.366188 41.850926) (xy 67.366186 41.850931) (xy 67.306951 42.071997) + (xy 67.287004 42.3) (xy 67.306951 42.528002) (xy 67.366186 42.749068) (xy 67.366188 42.749073) (xy 67.462913 42.956501) + (xy 67.512899 43.027888) (xy 68.2 42.340788) (xy 68.2 42.352661) (xy 68.227259 42.454394) (xy 68.27992 42.545606) + (xy 68.354394 42.62008) (xy 68.445606 42.672741) (xy 68.547339 42.7) (xy 68.55921 42.7) (xy 67.87211 43.387098) + (xy 67.87211 43.3871) (xy 67.943498 43.437086) (xy 68.150926 43.533811) (xy 68.150931 43.533813) + (xy 68.371999 43.593048) (xy 68.371995 43.593048) (xy 68.6 43.612995) (xy 68.828002 43.593048) (xy 69.049068 43.533813) + (xy 69.049073 43.533811) (xy 69.256497 43.437088) (xy 69.327888 43.387099) (xy 69.327888 43.387097) + (xy 68.640791 42.7) (xy 68.652661 42.7) (xy 68.754394 42.672741) (xy 68.845606 42.62008) (xy 68.92008 42.545606) + (xy 68.972741 42.454394) (xy 69 42.352661) (xy 69 42.340791) (xy 69.687097 43.027888) (xy 69.687099 43.027888) + (xy 69.737088 42.956497) (xy 69.833811 42.749073) (xy 69.833813 42.749068) (xy 69.893048 42.528002) + (xy 69.912995 42.3) (xy 69.893048 42.071997) (xy 69.833813 41.850931) (xy 69.833811 41.850926) (xy 69.737086 41.643498) + (xy 69.6871 41.57211) (xy 69.687098 41.57211) (xy 69 42.259208) (xy 69 42.247339) (xy 68.972741 42.145606) + (xy 68.92008 42.054394) (xy 68.845606 41.97992) (xy 68.754394 41.927259) (xy 68.652661 41.9) (xy 68.64079 41.9) + (xy 69.327888 41.212899) (xy 69.326627 41.198487) (xy 69.306859 41.173756) (xy 69.29955 41.103136) + (xy 69.331581 41.039776) (xy 69.392782 41.003791) (xy 69.423458 41) (xy 73.28759 41) (xy 73.312171 41.002421) + (xy 73.351953 41.010334) (xy 73.397376 41.029149) (xy 73.420583 41.044656) (xy 73.455343 41.079416) + (xy 73.47085 41.102623) (xy 73.489664 41.148043) (xy 73.497578 41.187825) (xy 73.5 41.212409) (xy 73.5 51.28759) + (xy 73.497578 51.312174) (xy 73.489664 51.351956) (xy 73.47085 51.397376) (xy 73.455343 51.420583) + (xy 73.420583 51.455343) (xy 73.397376 51.47085) (xy 73.351956 51.489664) (xy 73.312174 51.497578) + (xy 73.28759 51.5) (xy 62.71241 51.5) (xy 62.68783 51.497579) (xy 62.67004 51.49404) (xy 62.648044 51.489665) + (xy 62.602623 51.47085) (xy 62.579416 51.455343) (xy 62.544656 51.420583) (xy 62.529149 51.397376) + (xy 62.510334 51.351953) (xy 62.502421 51.312171) (xy 62.5 51.28759) (xy 62.5 41.212409) (xy 62.502421 41.187828) + (xy 62.510334 41.148046) (xy 62.529149 41.102623) (xy 62.544656 41.079416) (xy 62.579416 41.044656) + (xy 62.602623 41.029149) (xy 62.648047 41.010334) (xy 62.68783 41.002421) (xy 62.71241 41) (xy 67.776541 41) + ) + ) + ) + (zone + (net 2) + (net_name "GND") + (layer "B.Cu") + (uuid "00000000-0000-0000-0000-000061e5b19b") + (hatch edge 0.508) + (connect_pads + (clearance 0.25) + ) + (min_thickness 0.2) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.508) + (thermal_bridge_width 0.508) + (smoothing fillet) + (radius 0.2) + ) + (polygon + (pts + (xy 210 62.7) (xy 111.6 62.7) (xy 111.6 81.9) (xy 65.6 81.9) (xy 65.6 83.9) (xy 113.6 83.9) (xy 113.6 64.7) + (xy 210 64.7) (xy 209.6 134.9) (xy 50 135) (xy 50 35) (xy 209.9 35.1) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 131.241 121.227058) (xy 131.183081 121.193619) (xy 131.05388 121.159) (xy 130.92012 121.159) + (xy 130.790919 121.193619) (xy 130.733 121.227058) (xy 130.733 119.566941) (xy 130.790919 119.600381) + (xy 130.92012 119.635) (xy 131.05388 119.635) (xy 131.183081 119.600381) (xy 131.241 119.566941) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 136.321 121.227058) (xy 136.263081 121.193619) (xy 136.13388 121.159) (xy 136.00012 121.159) + (xy 135.870919 121.193619) (xy 135.813 121.227058) (xy 135.813 119.566941) (xy 135.870919 119.600381) + (xy 136.00012 119.635) (xy 136.13388 119.635) (xy 136.263081 119.600381) (xy 136.321 119.566941) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 170.751098 35.075516) (xy 209.687855 35.099866) (xy 209.713398 35.103236) (xy 209.775035 35.119746) + (xy 209.819317 35.145266) (xy 209.854973 35.180815) (xy 209.880626 35.225022) (xy 209.897321 35.286608) + (xy 209.900769 35.312151) (xy 209.924346 41.819514) (xy 209.924499 41.861531) (xy 209.9245 41.86189) + (xy 209.9245 62.593822) (xy 209.905593 62.652013) (xy 209.856093 62.687977) (xy 209.844859 62.690911) + (xy 209.827253 62.694421) (xy 209.808856 62.698089) (xy 209.789502 62.7) (xy 111.6 62.7) (xy 111.6 62.899999) + (xy 111.6 81.690248) (xy 111.598097 81.709563) (xy 111.588616 81.757224) (xy 111.573835 81.79291) + (xy 111.552362 81.825047) (xy 111.525047 81.852362) (xy 111.49291 81.873835) (xy 111.457224 81.888616) + (xy 111.409563 81.898097) (xy 111.390248 81.9) (xy 65.6 81.9) (xy 65.6 83.9) (xy 113.399999 83.9) + (xy 113.4 83.9) (xy 113.6 83.9) (xy 113.6 67.872156) (xy 120.3495 67.872156) (xy 120.3495 68.127843) + (xy 120.382873 68.381332) (xy 120.382873 68.381337) (xy 120.44905 68.628314) (xy 120.546892 68.864527) + (xy 120.546894 68.864531) (xy 120.546896 68.864535) (xy 120.661188 69.062494) (xy 120.674741 69.085968) + (xy 120.830384 69.288806) (xy 120.830386 69.288808) (xy 120.83039 69.288813) (xy 121.011187 69.46961) + (xy 121.011191 69.469613) (xy 121.011193 69.469615) (xy 121.214031 69.625258) (xy 121.214035 69.625261) + (xy 121.435465 69.753104) (xy 121.671687 69.85095) (xy 121.91866 69.917126) (xy 122.172157 69.9505) + (xy 122.172158 69.9505) (xy 122.427842 69.9505) (xy 122.427843 69.9505) (xy 122.68134 69.917126) + (xy 122.928313 69.85095) (xy 123.164535 69.753104) (xy 123.385965 69.625261) (xy 123.588813 69.46961) + (xy 123.76961 69.288813) (xy 123.925261 69.085965) (xy 124.053104 68.864535) (xy 124.15095 68.628313) + (xy 124.217126 68.38134) (xy 124.2505 68.127843) (xy 124.2505 67.872157) (xy 124.2505 67.872156) + (xy 204.3495 67.872156) (xy 204.3495 68.127843) (xy 204.382873 68.381332) (xy 204.382873 68.381337) + (xy 204.44905 68.628314) (xy 204.546892 68.864527) (xy 204.546894 68.864531) (xy 204.546896 68.864535) + (xy 204.661188 69.062494) (xy 204.674741 69.085968) (xy 204.830384 69.288806) (xy 204.830386 69.288808) + (xy 204.83039 69.288813) (xy 205.011187 69.46961) (xy 205.011191 69.469613) (xy 205.011193 69.469615) + (xy 205.214031 69.625258) (xy 205.214035 69.625261) (xy 205.435465 69.753104) (xy 205.671687 69.85095) + (xy 205.91866 69.917126) (xy 206.172157 69.9505) (xy 206.172158 69.9505) (xy 206.427842 69.9505) + (xy 206.427843 69.9505) (xy 206.68134 69.917126) (xy 206.928313 69.85095) (xy 207.164535 69.753104) + (xy 207.385965 69.625261) (xy 207.588813 69.46961) (xy 207.76961 69.288813) (xy 207.925261 69.085965) + (xy 208.053104 68.864535) (xy 208.15095 68.628313) (xy 208.217126 68.38134) (xy 208.2505 68.127843) + (xy 208.2505 67.872157) (xy 208.217126 67.61866) (xy 208.15095 67.371687) (xy 208.053104 67.135465) + (xy 207.925261 66.914035) (xy 207.76961 66.711187) (xy 207.588813 66.53039) (xy 207.588808 66.530386) + (xy 207.588806 66.530384) (xy 207.385968 66.374741) (xy 207.385965 66.374739) (xy 207.164535 66.246896) + (xy 207.164531 66.246894) (xy 207.164527 66.246892) (xy 206.928314 66.14905) (xy 206.819413 66.11987) + (xy 206.68134 66.082874) (xy 206.681337 66.082873) (xy 206.681335 66.082873) (xy 206.427843 66.0495) + (xy 206.172157 66.0495) (xy 206.172156 66.0495) (xy 205.918667 66.082873) (xy 205.918662 66.082873) + (xy 205.671685 66.14905) (xy 205.435472 66.246892) (xy 205.214031 66.374741) (xy 205.011193 66.530384) + (xy 204.830384 66.711193) (xy 204.674741 66.914031) (xy 204.546892 67.135472) (xy 204.44905 67.371685) + (xy 204.382873 67.618662) (xy 204.382873 67.618667) (xy 204.3495 67.872156) (xy 124.2505 67.872156) + (xy 124.217126 67.61866) (xy 124.15095 67.371687) (xy 124.053104 67.135465) (xy 123.925261 66.914035) + (xy 123.76961 66.711187) (xy 123.588813 66.53039) (xy 123.588808 66.530386) (xy 123.588806 66.530384) + (xy 123.385968 66.374741) (xy 123.385965 66.374739) (xy 123.164535 66.246896) (xy 123.164531 66.246894) + (xy 123.164527 66.246892) (xy 122.928314 66.14905) (xy 122.819413 66.11987) (xy 122.68134 66.082874) + (xy 122.681337 66.082873) (xy 122.681335 66.082873) (xy 122.427843 66.0495) (xy 122.172157 66.0495) + (xy 122.172156 66.0495) (xy 121.918667 66.082873) (xy 121.918662 66.082873) (xy 121.671685 66.14905) + (xy 121.435472 66.246892) (xy 121.214031 66.374741) (xy 121.011193 66.530384) (xy 120.830384 66.711193) + (xy 120.674741 66.914031) (xy 120.546892 67.135472) (xy 120.44905 67.371685) (xy 120.382873 67.618662) + (xy 120.382873 67.618667) (xy 120.3495 67.872156) (xy 113.6 67.872156) (xy 113.6 64.909751) (xy 113.601902 64.890438) + (xy 113.611382 64.842777) (xy 113.626162 64.807092) (xy 113.647642 64.774946) (xy 113.674946 64.747642) + (xy 113.707092 64.726162) (xy 113.742775 64.711382) (xy 113.768021 64.70636) (xy 113.790439 64.701902) + (xy 113.809752 64.7) (xy 209.789071 64.7) (xy 209.808454 64.701916) (xy 209.844883 64.709189) (xy 209.898245 64.739123) + (xy 209.923822 64.794706) (xy 209.9245 64.806273) (xy 209.9245 77.950036) (xy 209.924498 77.9506) + (xy 209.601205 134.688282) (xy 209.597714 134.713783) (xy 209.580936 134.775261) (xy 209.555253 134.819378) + (xy 209.519602 134.854847) (xy 209.475362 134.880302) (xy 209.413801 134.89677) (xy 209.388285 134.900132) + (xy 170.497132 134.9245) (xy 50.1745 134.9245) (xy 50.116309 134.905593) (xy 50.080345 134.856093) + (xy 50.0755 134.8255) (xy 50.0755 129.34018) (xy 51.1445 129.34018) (xy 51.1445 129.559819) (xy 51.173167 129.777567) + (xy 51.173167 129.777572) (xy 51.230012 129.989719) (xy 51.230016 129.989732) (xy 51.314063 130.192643) + (xy 51.423884 130.382855) (xy 51.557584 130.557097) (xy 51.557586 130.557099) (xy 51.55759 130.557104) + (xy 51.712896 130.71241) (xy 51.7129 130.712413) (xy 51.712902 130.712415) (xy 51.773003 130.758532) + (xy 51.887145 130.846116) (xy 51.98225 130.901025) (xy 52.077356 130.955936) (xy 52.185362 131.000672) + (xy 52.280273 131.039986) (xy 52.492425 131.096832) (xy 52.710182 131.1255) (xy 52.710183 131.1255) + (xy 52.929817 131.1255) (xy 52.929818 131.1255) (xy 53.147575 131.096832) (xy 53.359727 131.039986) + (xy 53.562645 130.955935) (xy 53.752855 130.846116) (xy 53.927104 130.71241) (xy 54.08241 130.557104) + (xy 54.216116 130.382855) (xy 54.321691 130.199996) (xy 166.594659 130.199996) (xy 166.594659 130.200003) + (xy 166.613974 130.396126) (xy 166.613975 130.396129) (xy 166.613976 130.396132) (xy 166.662804 130.557097) + (xy 166.671187 130.58473) (xy 166.671188 130.584732) (xy 166.717189 130.670793) (xy 166.76409 130.758538) + (xy 166.764092 130.75854) (xy 166.764093 130.758542) (xy 166.889112 130.910878) (xy 166.889121 130.910887) + (xy 167.011219 131.01109) (xy 167.041462 131.03591) (xy 167.215273 131.128814) (xy 167.403868 131.186024) + (xy 167.40387 131.186024) (xy 167.403873 131.186025) (xy 167.599997 131.205341) (xy 167.6 131.205341) + (xy 167.600003 131.205341) (xy 167.796126 131.186025) (xy 167.796127 131.186024) (xy 167.796132 131.186024) + (xy 167.984727 131.128814) (xy 168.158538 131.03591) (xy 168.310883 130.910883) (xy 168.43591 130.758538) + (xy 168.528814 130.584727) (xy 168.586024 130.396132) (xy 168.605341 130.2) (xy 168.604617 130.192645) + (xy 168.586025 130.003873) (xy 168.586024 130.00387) (xy 168.586024 130.003868) (xy 168.528814 129.815273) + (xy 168.43591 129.641462) (xy 168.382158 129.575965) (xy 168.310887 129.489121) (xy 168.310878 129.489112) + (xy 168.158542 129.364093) (xy 168.15854 129.364092) (xy 168.158538 129.36409) (xy 168.083599 129.324034) + (xy 204.5995 129.324034) (xy 204.5995 129.575965) (xy 204.638908 129.82478) (xy 204.716759 130.064379) + (xy 204.782113 130.192645) (xy 204.83113 130.288845) (xy 204.979207 130.492656) (xy 205.157344 130.670793) + (xy 205.361155 130.81887) (xy 205.585621 130.933241) (xy 205.825215 131.01109) (xy 205.825216 131.01109) + (xy 205.825219 131.011091) (xy 206.074035 131.0505) (xy 206.074038 131.0505) (xy 206.325965 131.0505) + (xy 206.57478 131.011091) (xy 206.574781 131.01109) (xy 206.574785 131.01109) (xy 206.814379 130.933241) + (xy 207.038845 130.81887) (xy 207.242656 130.670793) (xy 207.420793 130.492656) (xy 207.56887 130.288845) + (xy 207.683241 130.064379) (xy 207.76109 129.824785) (xy 207.762598 129.815267) (xy 207.8005 129.575965) + (xy 207.8005 129.324034) (xy 207.761091 129.075219) (xy 207.707499 128.91028) (xy 207.683241 128.835621) + (xy 207.56887 128.611155) (xy 207.420793 128.407344) (xy 207.242656 128.229207) (xy 207.038845 128.08113) + (xy 207.038844 128.081129) (xy 207.038842 128.081128) (xy 206.814379 127.966759) (xy 206.57478 127.888908) + (xy 206.325965 127.8495) (xy 206.325962 127.8495) (xy 206.074038 127.8495) (xy 206.074035 127.8495) + (xy 205.825219 127.888908) (xy 205.58562 127.966759) (xy 205.361157 128.081128) (xy 205.157345 128.229206) + (xy 204.979206 128.407345) (xy 204.831128 128.611157) (xy 204.716759 128.83562) (xy 204.638908 129.075219) + (xy 204.5995 129.324034) (xy 168.083599 129.324034) (xy 167.984732 129.271188) (xy 167.98473 129.271187) + (xy 167.796129 129.213975) (xy 167.796126 129.213974) (xy 167.600003 129.194659) (xy 167.599997 129.194659) + (xy 167.403873 129.213974) (xy 167.40387 129.213975) (xy 167.215269 129.271187) (xy 167.215267 129.271188) + (xy 167.041467 129.364087) (xy 167.041457 129.364093) (xy 166.889121 129.489112) (xy 166.889112 129.489121) + (xy 166.764093 129.641457) (xy 166.764087 129.641467) (xy 166.671188 129.815267) (xy 166.671187 129.815269) + (xy 166.613975 130.00387) (xy 166.613974 130.003873) (xy 166.594659 130.199996) (xy 54.321691 130.199996) + (xy 54.325935 130.192645) (xy 54.409986 129.989727) (xy 54.466832 129.777575) (xy 54.4955 129.559818) + (xy 54.4955 129.340182) (xy 54.466832 129.122425) (xy 54.409986 128.910273) (xy 54.370672 128.815362) + (xy 54.325936 128.707356) (xy 54.216115 128.517144) (xy 54.082415 128.342902) (xy 54.082413 128.3429) + (xy 54.08241 128.342896) (xy 53.927104 128.18759) (xy 53.927099 128.187586) (xy 53.927097 128.187584) + (xy 53.752855 128.053884) (xy 53.562643 127.944063) (xy 53.359732 127.860016) (xy 53.359731 127.860015) + (xy 53.359727 127.860014) (xy 53.147575 127.803168) (xy 53.147572 127.803167) (xy 53.14757 127.803167) + (xy 52.929819 127.7745) (xy 52.929818 127.7745) (xy 52.710182 127.7745) (xy 52.71018 127.7745) (xy 52.492432 127.803167) + (xy 52.492427 127.803167) (xy 52.28028 127.860012) (xy 52.280267 127.860016) (xy 52.077356 127.944063) + (xy 51.887144 128.053884) (xy 51.712902 128.187584) (xy 51.557584 128.342902) (xy 51.423884 128.517144) + (xy 51.314063 128.707356) (xy 51.230016 128.910267) (xy 51.230012 128.91028) (xy 51.173167 129.122427) + (xy 51.173167 129.122432) (xy 51.1445 129.34018) (xy 50.0755 129.34018) (xy 50.0755 123.797128) + (xy 54.3345 123.797128) (xy 54.3345 124.942871) (xy 54.340908 125.002478) (xy 54.34091 125.002489) + (xy 54.391202 125.137329) (xy 54.449136 125.214719) (xy 54.477453 125.252547) (xy 54.553974 125.30983) + (xy 54.59267 125.338797) (xy 54.72751 125.389089) (xy 54.727511 125.389089) (xy 54.727516 125.389091) + (xy 54.787126 125.3955) (xy 54.787129 125.3955) (xy 55.932871 125.3955) (xy 55.932874 125.3955) + (xy 55.992484 125.389091) (xy 56.039303 125.371628) (xy 56.127329 125.338797) (xy 56.127329 125.338796) + (xy 56.127331 125.338796) (xy 56.242547 125.252547) (xy 56.328796 125.137331) (xy 56.379091 125.002484) + (xy 56.3855 124.942874) (xy 56.3855 124.369996) (xy 59.409538 124.369996) (xy 59.409538 124.370003) + (xy 59.429336 124.571028) (xy 59.429337 124.571033) (xy 59.487977 124.764341) (xy 59.487979 124.764346) + (xy 59.583199 124.942491) (xy 59.632429 125.002478) (xy 59.711353 125.098647) (xy 59.711358 125.098651) + (xy 59.867508 125.2268) (xy 60.045653 125.32202) (xy 60.045659 125.322023) (xy 60.180327 125.362873) + (xy 60.238966 125.380662) (xy 60.238971 125.380663) (xy 60.439997 125.400462) (xy 60.44 125.400462) + (xy 60.440003 125.400462) (xy 60.641028 125.380663) (xy 60.641033 125.380662) (xy 60.834341 125.322023) + (xy 60.914925 125.278949) (xy 61.012491 125.2268) (xy 61.012492 125.226798) (xy 61.012494 125.226798) + (xy 61.168647 125.098647) (xy 61.296798 124.942494) (xy 61.392023 124.764341) (xy 61.450662 124.571033) + (xy 61.450663 124.571028) (xy 61.470462 124.370003) (xy 61.470462 124.369996) (xy 61.450663 124.168971) + (xy 61.450662 124.168966) (xy 61.432873 124.110327) (xy 61.392023 123.975659) (xy 61.39202 123.975653) + (xy 61.2968 123.797508) (xy 61.168651 123.641358) (xy 61.168647 123.641353) (xy 61.149035 123.625258) + (xy 61.012491 123.513199) (xy 60.834346 123.417979) (xy 60.834341 123.417977) (xy 60.641033 123.359337) + (xy 60.641028 123.359336) (xy 60.440003 123.339538) (xy 60.439997 123.339538) (xy 60.238971 123.359336) + (xy 60.238966 123.359337) (xy 60.045658 123.417977) (xy 60.045653 123.417979) (xy 59.867508 123.513199) + (xy 59.711358 123.641348) (xy 59.711348 123.641358) (xy 59.583199 123.797508) (xy 59.487979 123.975653) + (xy 59.487977 123.975658) (xy 59.429337 124.168966) (xy 59.429336 124.168971) (xy 59.409538 124.369996) + (xy 56.3855 124.369996) (xy 56.3855 123.797126) (xy 56.379091 123.737516) (xy 56.379089 123.73751) + (xy 56.328797 123.60267) (xy 56.242548 123.487455) (xy 56.242547 123.487453) (xy 56.14974 123.417979) + (xy 56.127329 123.401202) (xy 55.992489 123.35091) (xy 55.992484 123.350909) (xy 55.992482 123.350908) + (xy 55.992478 123.350908) (xy 55.96125 123.34755) (xy 55.932874 123.3445) (xy 54.787126 123.3445) + (xy 54.762635 123.347133) (xy 54.727521 123.350908) (xy 54.72751 123.35091) (xy 54.59267 123.401202) + (xy 54.477455 123.487451) (xy 54.477451 123.487455) (xy 54.391202 123.60267) (xy 54.34091 123.73751) + (xy 54.340908 123.737521) (xy 54.3345 123.797128) (xy 50.0755 123.797128) (xy 50.0755 121.829996) + (xy 54.329538 121.829996) (xy 54.329538 121.830003) (xy 54.349336 122.031028) (xy 54.349337 122.031033) + (xy 54.407977 122.224341) (xy 54.407979 122.224346) (xy 54.503199 122.402491) (xy 54.59335 122.51234) + (xy 54.631353 122.558647) (xy 54.666296 122.587324) (xy 54.787508 122.6868) (xy 54.963928 122.781098) + (xy 54.965659 122.782023) (xy 55.100327 122.822873) (xy 55.158966 122.840662) (xy 55.158971 122.840663) + (xy 55.359997 122.860462) (xy 55.36 122.860462) (xy 55.360003 122.860462) (xy 55.561028 122.840663) + (xy 55.561033 122.840662) (xy 55.754341 122.782023) (xy 55.834925 122.738949) (xy 55.932491 122.6868) + (xy 55.932492 122.686798) (xy 55.932494 122.686798) (xy 56.088647 122.558647) (xy 56.216798 122.402494) + (xy 56.22811 122.381332) (xy 56.31202 122.224346) (xy 56.312023 122.224341) (xy 56.370662 122.031033) + (xy 56.370663 122.031028) (xy 56.390462 121.830003) (xy 56.390462 121.829996) (xy 59.409538 121.829996) + (xy 59.409538 121.830003) (xy 59.429336 122.031028) (xy 59.429337 122.031033) (xy 59.487977 122.224341) + (xy 59.487979 122.224346) (xy 59.583199 122.402491) (xy 59.67335 122.51234) (xy 59.711353 122.558647) + (xy 59.746296 122.587324) (xy 59.867508 122.6868) (xy 60.043928 122.781098) (xy 60.045659 122.782023) + (xy 60.180327 122.822873) (xy 60.238966 122.840662) (xy 60.238971 122.840663) (xy 60.439997 122.860462) + (xy 60.44 122.860462) (xy 60.440003 122.860462) (xy 60.641028 122.840663) (xy 60.641033 122.840662) + (xy 60.834341 122.782023) (xy 60.914925 122.738949) (xy 61.012491 122.6868) (xy 61.012492 122.686798) + (xy 61.012494 122.686798) (xy 61.168647 122.558647) (xy 61.296798 122.402494) (xy 61.30811 122.381332) + (xy 61.39202 122.224346) (xy 61.392023 122.224341) (xy 61.450662 122.031033) (xy 61.450663 122.031028) + (xy 61.46631 121.872156) (xy 120.3495 121.872156) (xy 120.3495 122.127843) (xy 120.382873 122.381332) + (xy 120.382873 122.381337) (xy 120.44905 122.628314) (xy 120.546892 122.864527) (xy 120.546894 122.864531) + (xy 120.546896 122.864535) (xy 120.633871 123.015179) (xy 120.674741 123.085968) (xy 120.830384 123.288806) + (xy 120.830386 123.288808) (xy 120.83039 123.288813) (xy 121.011187 123.46961) (xy 121.011191 123.469613) + (xy 121.011193 123.469615) (xy 121.184594 123.60267) (xy 121.214035 123.625261) (xy 121.435465 123.753104) + (xy 121.671687 123.85095) (xy 121.91866 123.917126) (xy 122.172157 123.9505) (xy 122.172158 123.9505) + (xy 122.427842 123.9505) (xy 122.427843 123.9505) (xy 122.68134 123.917126) (xy 122.928313 123.85095) + (xy 123.164535 123.753104) (xy 123.385965 123.625261) (xy 123.588813 123.46961) (xy 123.76961 123.288813) + (xy 123.925261 123.085965) (xy 124.053104 122.864535) (xy 124.15095 122.628313) (xy 124.217126 122.38134) + (xy 124.2505 122.127843) (xy 124.2505 121.872157) (xy 124.217126 121.61866) (xy 124.15095 121.371687) + (xy 124.077192 121.193619) (xy 124.053107 121.135472) (xy 124.053106 121.135471) (xy 124.053104 121.135465) + (xy 123.925261 120.914035) (xy 123.897593 120.877977) (xy 123.769615 120.711193) (xy 123.769613 120.711191) + (xy 123.76961 120.711187) (xy 123.588813 120.53039) (xy 123.588808 120.530386) (xy 123.588806 120.530384) + (xy 123.385968 120.374741) (xy 123.350489 120.354257) (xy 123.164535 120.246896) (xy 123.164531 120.246894) + (xy 123.164527 120.246892) (xy 122.928314 120.14905) (xy 122.819413 120.11987) (xy 122.68134 120.082874) + (xy 122.681337 120.082873) (xy 122.681335 120.082873) (xy 122.427843 120.0495) (xy 122.172157 120.0495) + (xy 122.172156 120.0495) (xy 121.918667 120.082873) (xy 121.918662 120.082873) (xy 121.671685 120.14905) + (xy 121.435472 120.246892) (xy 121.214031 120.374741) (xy 121.011193 120.530384) (xy 120.830384 120.711193) + (xy 120.674741 120.914031) (xy 120.546892 121.135472) (xy 120.44905 121.371685) (xy 120.382873 121.618662) + (xy 120.382873 121.618667) (xy 120.3495 121.872156) (xy 61.46631 121.872156) (xy 61.470462 121.830003) + (xy 61.470462 121.829996) (xy 61.450663 121.628971) (xy 61.450662 121.628966) (xy 61.432873 121.570327) + (xy 61.392023 121.435659) (xy 61.39202 121.435653) (xy 61.2968 121.257508) (xy 61.168651 121.101358) + (xy 61.168647 121.101353) (xy 61.168641 121.101348) (xy 61.012491 120.973199) (xy 60.834346 120.877979) + (xy 60.834341 120.877977) (xy 60.641033 120.819337) (xy 60.641028 120.819336) (xy 60.440003 120.799538) + (xy 60.439997 120.799538) (xy 60.238971 120.819336) (xy 60.238966 120.819337) (xy 60.045658 120.877977) + (xy 60.045653 120.877979) (xy 59.867508 120.973199) (xy 59.711358 121.101348) (xy 59.711348 121.101358) + (xy 59.583199 121.257508) (xy 59.487979 121.435653) (xy 59.487977 121.435658) (xy 59.429337 121.628966) + (xy 59.429336 121.628971) (xy 59.409538 121.829996) (xy 56.390462 121.829996) (xy 56.370663 121.628971) + (xy 56.370662 121.628966) (xy 56.352873 121.570327) (xy 56.312023 121.435659) (xy 56.31202 121.435653) + (xy 56.2168 121.257508) (xy 56.088651 121.101358) (xy 56.088647 121.101353) (xy 56.088641 121.101348) + (xy 55.932491 120.973199) (xy 55.754346 120.877979) (xy 55.754341 120.877977) (xy 55.561033 120.819337) + (xy 55.561028 120.819336) (xy 55.360003 120.799538) (xy 55.359997 120.799538) (xy 55.158971 120.819336) + (xy 55.158966 120.819337) (xy 54.965658 120.877977) (xy 54.965653 120.877979) (xy 54.787508 120.973199) + (xy 54.631358 121.101348) (xy 54.631348 121.101358) (xy 54.503199 121.257508) (xy 54.407979 121.435653) + (xy 54.407977 121.435658) (xy 54.349337 121.628966) (xy 54.349336 121.628971) (xy 54.329538 121.829996) + (xy 50.0755 121.829996) (xy 50.0755 119.289996) (xy 54.329538 119.289996) (xy 54.329538 119.290003) + (xy 54.349336 119.491028) (xy 54.349337 119.491033) (xy 54.407977 119.684341) (xy 54.407979 119.684346) + (xy 54.503199 119.862491) (xy 54.59335 119.97234) (xy 54.631353 120.018647) (xy 54.666296 120.047324) + (xy 54.787508 120.1468) (xy 54.892953 120.203161) (xy 54.965659 120.242023) (xy 55.100327 120.282873) + (xy 55.158966 120.300662) (xy 55.158971 120.300663) (xy 55.359997 120.320462) (xy 55.36 120.320462) + (xy 55.360003 120.320462) (xy 55.561028 120.300663) (xy 55.561033 120.300662) (xy 55.754341 120.242023) + (xy 55.834925 120.198949) (xy 55.932491 120.1468) (xy 55.932492 120.146798) (xy 55.932494 120.146798) + (xy 56.088647 120.018647) (xy 56.216798 119.862494) (xy 56.312023 119.684341) (xy 56.370662 119.491033) + (xy 56.370663 119.491028) (xy 56.390462 119.290003) (xy 56.390462 119.289996) (xy 59.409538 119.289996) + (xy 59.409538 119.290003) (xy 59.429336 119.491028) (xy 59.429337 119.491033) (xy 59.487977 119.684341) + (xy 59.487979 119.684346) (xy 59.583199 119.862491) (xy 59.67335 119.97234) (xy 59.711353 120.018647) + (xy 59.746296 120.047324) (xy 59.867508 120.1468) (xy 59.972953 120.203161) (xy 60.045659 120.242023) + (xy 60.180327 120.282873) (xy 60.238966 120.300662) (xy 60.238971 120.300663) (xy 60.439997 120.320462) + (xy 60.44 120.320462) (xy 60.440003 120.320462) (xy 60.641028 120.300663) (xy 60.641033 120.300662) + (xy 60.834341 120.242023) (xy 60.914925 120.198949) (xy 61.012491 120.1468) (xy 61.012492 120.146798) + (xy 61.012494 120.146798) (xy 61.168647 120.018647) (xy 61.296798 119.862494) (xy 61.392023 119.684341) + (xy 61.450662 119.491033) (xy 61.450663 119.491028) (xy 61.470462 119.290003) (xy 61.470462 119.289996) + (xy 61.450663 119.088971) (xy 61.450662 119.088966) (xy 61.432873 119.030327) (xy 61.392023 118.895659) + (xy 61.39202 118.895653) (xy 61.379912 118.873) (xy 129.636426 118.873) (xy 130.547058 118.873) + (xy 130.513619 118.930919) (xy 130.479 119.06012) (xy 130.479 119.19388) (xy 130.513619 119.323081) + (xy 130.547058 119.381) (xy 129.636426 119.381) (xy 129.685272 119.573884) (xy 129.685273 119.573887) + (xy 129.776578 119.782044) (xy 129.900904 119.97234) (xy 130.054857 120.139578) (xy 130.234231 120.27919) + (xy 130.234234 120.279192) (xy 130.291035 120.309932) (xy 130.333213 120.354257) (xy 130.341283 120.414908) + (xy 130.312161 120.468719) (xy 130.291035 120.484068) (xy 130.234234 120.514807) (xy 130.234231 120.514809) + (xy 130.054857 120.654421) (xy 129.900904 120.821659) (xy 129.776578 121.011955) (xy 129.685273 121.220112) + (xy 129.685272 121.220115) (xy 129.636426 121.413) (xy 130.547058 121.413) (xy 130.513619 121.470919) + (xy 130.479 121.60012) (xy 130.479 121.73388) (xy 130.513619 121.863081) (xy 130.547058 121.921) + (xy 129.636426 121.921) (xy 129.685272 122.113884) (xy 129.685273 122.113887) (xy 129.776578 122.322044) + (xy 129.900904 122.51234) (xy 130.054857 122.679578) (xy 130.234231 122.81919) (xy 130.234234 122.819192) + (xy 130.434141 122.927377) (xy 130.649139 123.001187) (xy 130.649137 123.001187) (xy 130.733 123.015179) + (xy 130.733 122.106941) (xy 130.790919 122.140381) (xy 130.92012 122.175) (xy 131.05388 122.175) + (xy 131.183081 122.140381) (xy 131.241 122.106941) (xy 131.241 123.015179) (xy 131.324861 123.001187) + (xy 131.539858 122.927377) (xy 131.739765 122.819192) (xy 131.739768 122.81919) (xy 131.919142 122.679578) + (xy 132.073095 122.51234) (xy 132.197421 122.322044) (xy 132.288726 122.113887) (xy 132.288727 122.113885) + (xy 132.296148 122.084583) (xy 132.328762 122.032814) (xy 132.385576 122.010102) (xy 132.444889 122.025122) + (xy 132.480368 122.067721) (xy 132.481642 122.067087) (xy 132.483681 122.071183) (xy 132.483682 122.071184) + (xy 132.575715 122.256011) (xy 132.700143 122.42078) (xy 132.852728 122.55988) (xy 133.028275 122.668574) + (xy 133.220806 122.743161) (xy 133.423763 122.7811) (xy 133.630237 122.7811) (xy 133.833194 122.743161) + (xy 134.025725 122.668574) (xy 134.201272 122.55988) (xy 134.353857 122.42078) (xy 134.478285 122.256011) + (xy 134.570318 122.071184) (xy 134.570318 122.071183) (xy 134.572358 122.067087) (xy 134.57388 122.067844) + (xy 134.608178 122.025717) (xy 134.667319 122.010036) (xy 134.724383 122.032111) (xy 134.757573 122.083513) + (xy 134.75785 122.084581) (xy 134.765269 122.113878) (xy 134.765273 122.113887) (xy 134.856578 122.322044) + (xy 134.980904 122.51234) (xy 135.134857 122.679578) (xy 135.314231 122.81919) (xy 135.314234 122.819192) + (xy 135.514141 122.927377) (xy 135.729139 123.001187) (xy 135.729137 123.001187) (xy 135.813 123.015179) + (xy 135.813 122.106941) (xy 135.870919 122.140381) (xy 136.00012 122.175) (xy 136.13388 122.175) + (xy 136.263081 122.140381) (xy 136.321 122.106941) (xy 136.321 123.015179) (xy 136.404861 123.001187) + (xy 136.619858 122.927377) (xy 136.819765 122.819192) (xy 136.819768 122.81919) (xy 136.999142 122.679578) + (xy 137.153095 122.51234) (xy 137.277421 122.322044) (xy 137.368726 122.113887) (xy 137.368727 122.113885) + (xy 137.376148 122.084583) (xy 137.408762 122.032814) (xy 137.465576 122.010102) (xy 137.524889 122.025122) + (xy 137.560368 122.067721) (xy 137.561642 122.067087) (xy 137.563681 122.071183) (xy 137.563682 122.071184) + (xy 137.655715 122.256011) (xy 137.780143 122.42078) (xy 137.932728 122.55988) (xy 138.108275 122.668574) + (xy 138.300806 122.743161) (xy 138.503763 122.7811) (xy 138.710237 122.7811) (xy 138.913194 122.743161) + (xy 139.105725 122.668574) (xy 139.281272 122.55988) (xy 139.433857 122.42078) (xy 139.558285 122.256011) + (xy 139.650318 122.071184) (xy 139.706822 121.872592) (xy 139.725873 121.667) (xy 140.028127 121.667) + (xy 140.043231 121.830003) (xy 140.047178 121.872592) (xy 140.103682 122.071184) (xy 140.195715 122.256011) + (xy 140.320143 122.42078) (xy 140.472728 122.55988) (xy 140.648275 122.668574) (xy 140.840806 122.743161) + (xy 141.043763 122.7811) (xy 141.250237 122.7811) (xy 141.453194 122.743161) (xy 141.645725 122.668574) + (xy 141.821272 122.55988) (xy 141.973857 122.42078) (xy 142.098285 122.256011) (xy 142.190318 122.071184) + (xy 142.246822 121.872592) (xy 142.265873 121.667) (xy 142.568127 121.667) (xy 142.583231 121.830003) + (xy 142.587178 121.872592) (xy 142.643682 122.071184) (xy 142.735715 122.256011) (xy 142.860143 122.42078) + (xy 143.012728 122.55988) (xy 143.188275 122.668574) (xy 143.380806 122.743161) (xy 143.583763 122.7811) + (xy 143.790237 122.7811) (xy 143.993194 122.743161) (xy 144.185725 122.668574) (xy 144.361272 122.55988) + (xy 144.513857 122.42078) (xy 144.638285 122.256011) (xy 144.730318 122.071184) (xy 144.786822 121.872592) + (xy 144.805873 121.667) (xy 145.108127 121.667) (xy 145.123231 121.830003) (xy 145.127178 121.872592) + (xy 145.183682 122.071184) (xy 145.275715 122.256011) (xy 145.400143 122.42078) (xy 145.552728 122.55988) + (xy 145.728275 122.668574) (xy 145.920806 122.743161) (xy 146.123763 122.7811) (xy 146.330237 122.7811) + (xy 146.533194 122.743161) (xy 146.725725 122.668574) (xy 146.901272 122.55988) (xy 147.053857 122.42078) + (xy 147.178285 122.256011) (xy 147.270318 122.071184) (xy 147.326822 121.872592) (xy 147.345873 121.667) + (xy 147.326822 121.461408) (xy 147.270318 121.262816) (xy 147.178285 121.077989) (xy 147.053857 120.91322) + (xy 146.901272 120.77412) (xy 146.725725 120.665426) (xy 146.533194 120.590839) (xy 146.533193 120.590838) + (xy 146.533191 120.590838) (xy 146.330237 120.5529) (xy 146.123763 120.5529) (xy 145.920808 120.590838) + (xy 145.915269 120.592984) (xy 145.728275 120.665426) (xy 145.654359 120.711193) (xy 145.552728 120.77412) + (xy 145.400144 120.913219) (xy 145.275716 121.077987) (xy 145.275711 121.077996) (xy 145.183682 121.262815) + (xy 145.127178 121.461406) (xy 145.108127 121.667) (xy 144.805873 121.667) (xy 144.786822 121.461408) + (xy 144.730318 121.262816) (xy 144.638285 121.077989) (xy 144.513857 120.91322) (xy 144.361272 120.77412) + (xy 144.185725 120.665426) (xy 143.993194 120.590839) (xy 143.993193 120.590838) (xy 143.993191 120.590838) + (xy 143.790237 120.5529) (xy 143.583763 120.5529) (xy 143.380808 120.590838) (xy 143.375269 120.592984) + (xy 143.188275 120.665426) (xy 143.114359 120.711193) (xy 143.012728 120.77412) (xy 142.860144 120.913219) + (xy 142.735716 121.077987) (xy 142.735711 121.077996) (xy 142.643682 121.262815) (xy 142.587178 121.461406) + (xy 142.568127 121.667) (xy 142.265873 121.667) (xy 142.246822 121.461408) (xy 142.190318 121.262816) + (xy 142.098285 121.077989) (xy 141.973857 120.91322) (xy 141.821272 120.77412) (xy 141.645725 120.665426) + (xy 141.453194 120.590839) (xy 141.453193 120.590838) (xy 141.453191 120.590838) (xy 141.250237 120.5529) + (xy 141.043763 120.5529) (xy 140.840808 120.590838) (xy 140.835269 120.592984) (xy 140.648275 120.665426) + (xy 140.574359 120.711193) (xy 140.472728 120.77412) (xy 140.320144 120.913219) (xy 140.195716 121.077987) + (xy 140.195711 121.077996) (xy 140.103682 121.262815) (xy 140.047178 121.461406) (xy 140.028127 121.667) + (xy 139.725873 121.667) (xy 139.706822 121.461408) (xy 139.650318 121.262816) (xy 139.558285 121.077989) + (xy 139.433857 120.91322) (xy 139.281272 120.77412) (xy 139.105725 120.665426) (xy 138.913194 120.590839) + (xy 138.913193 120.590838) (xy 138.913191 120.590838) (xy 138.710237 120.5529) (xy 138.503763 120.5529) + (xy 138.300808 120.590838) (xy 138.295269 120.592984) (xy 138.108275 120.665426) (xy 138.034359 120.711193) + (xy 137.932728 120.77412) (xy 137.780144 120.913219) (xy 137.655716 121.077987) (xy 137.655711 121.077996) + (xy 137.627095 121.135465) (xy 137.563683 121.262815) (xy 137.561642 121.266913) (xy 137.560129 121.266159) + (xy 137.525778 121.30831) (xy 137.466629 121.323961) (xy 137.409576 121.301855) (xy 137.376413 121.250437) + (xy 137.376148 121.249416) (xy 137.368727 121.220115) (xy 137.368726 121.220112) (xy 137.277421 121.011955) + (xy 137.153095 120.821659) (xy 136.999142 120.654421) (xy 136.819768 120.514809) (xy 136.819765 120.514807) + (xy 136.762964 120.484068) (xy 136.720786 120.439744) (xy 136.712716 120.379093) (xy 136.741837 120.325282) + (xy 136.762964 120.309932) (xy 136.819765 120.279192) (xy 136.819768 120.27919) (xy 136.999142 120.139578) + (xy 137.153095 119.97234) (xy 137.277421 119.782044) (xy 137.368726 119.573887) (xy 137.368727 119.573885) + (xy 137.376148 119.544583) (xy 137.408762 119.492814) (xy 137.465576 119.470102) (xy 137.524889 119.485122) + (xy 137.560368 119.527721) (xy 137.561642 119.527087) (xy 137.563681 119.531183) (xy 137.563682 119.531184) + (xy 137.655715 119.716011) (xy 137.780143 119.88078) (xy 137.932728 120.01988) (xy 138.108275 120.128574) + (xy 138.300806 120.203161) (xy 138.503763 120.2411) (xy 138.710237 120.2411) (xy 138.913194 120.203161) + (xy 139.105725 120.128574) (xy 139.281272 120.01988) (xy 139.433857 119.88078) (xy 139.558285 119.716011) + (xy 139.650318 119.531184) (xy 139.706822 119.332592) (xy 139.725873 119.127) (xy 140.028127 119.127) + (xy 140.047178 119.332593) (xy 140.060951 119.381) (xy 140.103682 119.531184) (xy 140.195715 119.716011) + (xy 140.320143 119.88078) (xy 140.472728 120.01988) (xy 140.648275 120.128574) (xy 140.840806 120.203161) + (xy 141.043763 120.2411) (xy 141.250237 120.2411) (xy 141.453194 120.203161) (xy 141.645725 120.128574) + (xy 141.821272 120.01988) (xy 141.973857 119.88078) (xy 142.098285 119.716011) (xy 142.190318 119.531184) + (xy 142.246822 119.332592) (xy 142.265873 119.127) (xy 142.568127 119.127) (xy 142.587178 119.332593) + (xy 142.600951 119.381) (xy 142.643682 119.531184) (xy 142.735715 119.716011) (xy 142.860143 119.88078) + (xy 143.012728 120.01988) (xy 143.188275 120.128574) (xy 143.380806 120.203161) (xy 143.583763 120.2411) + (xy 143.790237 120.2411) (xy 143.993194 120.203161) (xy 144.185725 120.128574) (xy 144.361272 120.01988) + (xy 144.513857 119.88078) (xy 144.638285 119.716011) (xy 144.730318 119.531184) (xy 144.786822 119.332592) + (xy 144.805873 119.127) (xy 145.108127 119.127) (xy 145.127178 119.332593) (xy 145.140951 119.381) + (xy 145.183682 119.531184) (xy 145.275715 119.716011) (xy 145.400143 119.88078) (xy 145.552728 120.01988) + (xy 145.728275 120.128574) (xy 145.920806 120.203161) (xy 146.123763 120.2411) (xy 146.330237 120.2411) + (xy 146.533194 120.203161) (xy 146.725725 120.128574) (xy 146.901272 120.01988) (xy 147.053857 119.88078) + (xy 147.178285 119.716011) (xy 147.270318 119.531184) (xy 147.270318 119.531183) (xy 147.272358 119.527087) + (xy 147.27388 119.527844) (xy 147.308178 119.485717) (xy 147.367319 119.470036) (xy 147.424383 119.492111) + (xy 147.457573 119.543513) (xy 147.45785 119.544581) (xy 147.465269 119.573878) (xy 147.465273 119.573887) + (xy 147.556578 119.782044) (xy 147.680904 119.97234) (xy 147.834857 120.139578) (xy 148.014231 120.27919) + (xy 148.014234 120.279192) (xy 148.214142 120.387378) (xy 148.366963 120.439841) (xy 148.415862 120.476618) + (xy 148.433804 120.535113) (xy 148.413938 120.592984) (xy 148.370582 120.625791) (xy 148.26828 120.665423) + (xy 148.268277 120.665425) (xy 148.268276 120.665425) (xy 148.268275 120.665426) (xy 148.194359 120.711193) + (xy 148.092728 120.77412) (xy 147.940144 120.913219) (xy 147.815716 121.077987) (xy 147.815711 121.077996) + (xy 147.723682 121.262815) (xy 147.667178 121.461406) (xy 147.648127 121.667) (xy 147.663231 121.830003) + (xy 147.667178 121.872592) (xy 147.723682 122.071184) (xy 147.815715 122.256011) (xy 147.940143 122.42078) + (xy 148.092728 122.55988) (xy 148.268275 122.668574) (xy 148.460806 122.743161) (xy 148.663763 122.7811) + (xy 148.870237 122.7811) (xy 149.073194 122.743161) (xy 149.265725 122.668574) (xy 149.441272 122.55988) + (xy 149.593857 122.42078) (xy 149.718285 122.256011) (xy 149.810318 122.071184) (xy 149.866822 121.872592) + (xy 149.885873 121.667) (xy 150.188127 121.667) (xy 150.203231 121.830003) (xy 150.207178 121.872592) + (xy 150.263682 122.071184) (xy 150.355715 122.256011) (xy 150.480143 122.42078) (xy 150.632728 122.55988) + (xy 150.808275 122.668574) (xy 151.000806 122.743161) (xy 151.203763 122.7811) (xy 151.410237 122.7811) + (xy 151.613194 122.743161) (xy 151.805725 122.668574) (xy 151.981272 122.55988) (xy 152.133857 122.42078) + (xy 152.258285 122.256011) (xy 152.350318 122.071184) (xy 152.406822 121.872592) (xy 152.425873 121.667) + (xy 152.728127 121.667) (xy 152.743231 121.830003) (xy 152.747178 121.872592) (xy 152.803682 122.071184) + (xy 152.895715 122.256011) (xy 153.020143 122.42078) (xy 153.172728 122.55988) (xy 153.348275 122.668574) + (xy 153.540806 122.743161) (xy 153.743763 122.7811) (xy 153.950237 122.7811) (xy 154.153194 122.743161) + (xy 154.345725 122.668574) (xy 154.521272 122.55988) (xy 154.673857 122.42078) (xy 154.798285 122.256011) + (xy 154.890318 122.071184) (xy 154.946822 121.872592) (xy 154.965873 121.667) (xy 155.268127 121.667) + (xy 155.283231 121.830003) (xy 155.287178 121.872592) (xy 155.343682 122.071184) (xy 155.435715 122.256011) + (xy 155.560143 122.42078) (xy 155.712728 122.55988) (xy 155.888275 122.668574) (xy 156.080806 122.743161) + (xy 156.283763 122.7811) (xy 156.490237 122.7811) (xy 156.693194 122.743161) (xy 156.885725 122.668574) + (xy 157.061272 122.55988) (xy 157.213857 122.42078) (xy 157.338285 122.256011) (xy 157.430318 122.071184) + (xy 157.486822 121.872592) (xy 157.505873 121.667) (xy 157.808127 121.667) (xy 157.823231 121.830003) + (xy 157.827178 121.872592) (xy 157.883682 122.071184) (xy 157.975715 122.256011) (xy 158.100143 122.42078) + (xy 158.252728 122.55988) (xy 158.428275 122.668574) (xy 158.620806 122.743161) (xy 158.823763 122.7811) + (xy 159.030237 122.7811) (xy 159.233194 122.743161) (xy 159.425725 122.668574) (xy 159.601272 122.55988) + (xy 159.753857 122.42078) (xy 159.878285 122.256011) (xy 159.970318 122.071184) (xy 160.026822 121.872592) + (xy 160.045873 121.667) (xy 160.026822 121.461408) (xy 159.970318 121.262816) (xy 159.878285 121.077989) + (xy 159.753857 120.91322) (xy 159.606326 120.778727) (xy 160.3529 120.778727) (xy 160.3529 122.555272) + (xy 160.352901 122.555284) (xy 160.367433 122.628336) (xy 160.367435 122.628342) (xy 160.422797 122.711199) + (xy 160.422799 122.711201) (xy 160.50566 122.766566) (xy 160.561208 122.777615) (xy 160.578715 122.781098) + (xy 160.57872 122.781098) (xy 160.578726 122.7811) (xy 160.578727 122.7811) (xy 162.355273 122.7811) + (xy 162.355274 122.7811) (xy 162.42834 122.766566) (xy 162.511201 122.711201) (xy 162.566566 122.62834) + (xy 162.5811 122.555274) (xy 162.5811 121.872156) (xy 204.3495 121.872156) (xy 204.3495 122.127843) + (xy 204.382873 122.381332) (xy 204.382873 122.381337) (xy 204.44905 122.628314) (xy 204.546892 122.864527) + (xy 204.546894 122.864531) (xy 204.546896 122.864535) (xy 204.633871 123.015179) (xy 204.674741 123.085968) + (xy 204.830384 123.288806) (xy 204.830386 123.288808) (xy 204.83039 123.288813) (xy 205.011187 123.46961) + (xy 205.011191 123.469613) (xy 205.011193 123.469615) (xy 205.184594 123.60267) (xy 205.214035 123.625261) + (xy 205.435465 123.753104) (xy 205.671687 123.85095) (xy 205.91866 123.917126) (xy 206.172157 123.9505) + (xy 206.172158 123.9505) (xy 206.427842 123.9505) (xy 206.427843 123.9505) (xy 206.68134 123.917126) + (xy 206.928313 123.85095) (xy 207.164535 123.753104) (xy 207.385965 123.625261) (xy 207.588813 123.46961) + (xy 207.76961 123.288813) (xy 207.925261 123.085965) (xy 208.053104 122.864535) (xy 208.15095 122.628313) + (xy 208.217126 122.38134) (xy 208.2505 122.127843) (xy 208.2505 121.872157) (xy 208.217126 121.61866) + (xy 208.15095 121.371687) (xy 208.077192 121.193619) (xy 208.053107 121.135472) (xy 208.053106 121.135471) + (xy 208.053104 121.135465) (xy 207.925261 120.914035) (xy 207.897593 120.877977) (xy 207.769615 120.711193) + (xy 207.769613 120.711191) (xy 207.76961 120.711187) (xy 207.588813 120.53039) (xy 207.588808 120.530386) + (xy 207.588806 120.530384) (xy 207.385968 120.374741) (xy 207.350489 120.354257) (xy 207.164535 120.246896) + (xy 207.164531 120.246894) (xy 207.164527 120.246892) (xy 206.928314 120.14905) (xy 206.819413 120.11987) + (xy 206.68134 120.082874) (xy 206.681337 120.082873) (xy 206.681335 120.082873) (xy 206.427843 120.0495) + (xy 206.172157 120.0495) (xy 206.172156 120.0495) (xy 205.918667 120.082873) (xy 205.918662 120.082873) + (xy 205.671685 120.14905) (xy 205.435472 120.246892) (xy 205.214031 120.374741) (xy 205.011193 120.530384) + (xy 204.830384 120.711193) (xy 204.674741 120.914031) (xy 204.546892 121.135472) (xy 204.44905 121.371685) + (xy 204.382873 121.618662) (xy 204.382873 121.618667) (xy 204.3495 121.872156) (xy 162.5811 121.872156) + (xy 162.5811 120.778726) (xy 162.566566 120.70566) (xy 162.511201 120.622799) (xy 162.511199 120.622797) + (xy 162.428342 120.567435) (xy 162.42834 120.567434) (xy 162.428337 120.567433) (xy 162.428336 120.567433) + (xy 162.355284 120.552901) (xy 162.355274 120.5529) (xy 160.578726 120.5529) (xy 160.578725 120.5529) + (xy 160.578715 120.552901) (xy 160.505663 120.567433) (xy 160.505657 120.567435) (xy 160.4228 120.622797) + (xy 160.422797 120.6228) (xy 160.367435 120.705657) (xy 160.367433 120.705663) (xy 160.352901 120.778715) + (xy 160.3529 120.778727) (xy 159.606326 120.778727) (xy 159.601272 120.77412) (xy 159.425725 120.665426) + (xy 159.233194 120.590839) (xy 159.233193 120.590838) (xy 159.233191 120.590838) (xy 159.030237 120.5529) + (xy 158.823763 120.5529) (xy 158.620808 120.590838) (xy 158.615269 120.592984) (xy 158.428275 120.665426) + (xy 158.354359 120.711193) (xy 158.252728 120.77412) (xy 158.100144 120.913219) (xy 157.975716 121.077987) + (xy 157.975711 121.077996) (xy 157.883682 121.262815) (xy 157.827178 121.461406) (xy 157.808127 121.667) + (xy 157.505873 121.667) (xy 157.486822 121.461408) (xy 157.430318 121.262816) (xy 157.338285 121.077989) + (xy 157.213857 120.91322) (xy 157.061272 120.77412) (xy 156.885725 120.665426) (xy 156.693194 120.590839) + (xy 156.693193 120.590838) (xy 156.693191 120.590838) (xy 156.490237 120.5529) (xy 156.283763 120.5529) + (xy 156.080808 120.590838) (xy 156.075269 120.592984) (xy 155.888275 120.665426) (xy 155.814359 120.711193) + (xy 155.712728 120.77412) (xy 155.560144 120.913219) (xy 155.435716 121.077987) (xy 155.435711 121.077996) + (xy 155.343682 121.262815) (xy 155.287178 121.461406) (xy 155.268127 121.667) (xy 154.965873 121.667) + (xy 154.946822 121.461408) (xy 154.890318 121.262816) (xy 154.798285 121.077989) (xy 154.673857 120.91322) + (xy 154.521272 120.77412) (xy 154.345725 120.665426) (xy 154.153194 120.590839) (xy 154.153193 120.590838) + (xy 154.153191 120.590838) (xy 153.950237 120.5529) (xy 153.743763 120.5529) (xy 153.540808 120.590838) + (xy 153.535269 120.592984) (xy 153.348275 120.665426) (xy 153.274359 120.711193) (xy 153.172728 120.77412) + (xy 153.020144 120.913219) (xy 152.895716 121.077987) (xy 152.895711 121.077996) (xy 152.803682 121.262815) + (xy 152.747178 121.461406) (xy 152.728127 121.667) (xy 152.425873 121.667) (xy 152.406822 121.461408) + (xy 152.350318 121.262816) (xy 152.258285 121.077989) (xy 152.133857 120.91322) (xy 151.981272 120.77412) + (xy 151.805725 120.665426) (xy 151.613194 120.590839) (xy 151.613193 120.590838) (xy 151.613191 120.590838) + (xy 151.410237 120.5529) (xy 151.203763 120.5529) (xy 151.000808 120.590838) (xy 150.995269 120.592984) + (xy 150.808275 120.665426) (xy 150.734359 120.711193) (xy 150.632728 120.77412) (xy 150.480144 120.913219) + (xy 150.355716 121.077987) (xy 150.355711 121.077996) (xy 150.263682 121.262815) (xy 150.207178 121.461406) + (xy 150.188127 121.667) (xy 149.885873 121.667) (xy 149.866822 121.461408) (xy 149.810318 121.262816) + (xy 149.718285 121.077989) (xy 149.593857 120.91322) (xy 149.441272 120.77412) (xy 149.265725 120.665426) + (xy 149.163418 120.625792) (xy 149.115987 120.58714) (xy 149.100333 120.527991) (xy 149.122436 120.470937) + (xy 149.167036 120.439841) (xy 149.319857 120.387378) (xy 149.519765 120.279192) (xy 149.519768 120.27919) + (xy 149.699142 120.139578) (xy 149.853095 119.97234) (xy 149.977421 119.782044) (xy 150.068726 119.573887) + (xy 150.068727 119.573885) (xy 150.076148 119.544583) (xy 150.108762 119.492814) (xy 150.165576 119.470102) + (xy 150.224889 119.485122) (xy 150.260368 119.527721) (xy 150.261642 119.527087) (xy 150.263681 119.531183) + (xy 150.263682 119.531184) (xy 150.355715 119.716011) (xy 150.480143 119.88078) (xy 150.632728 120.01988) + (xy 150.808275 120.128574) (xy 151.000806 120.203161) (xy 151.203763 120.2411) (xy 151.410237 120.2411) + (xy 151.613194 120.203161) (xy 151.805725 120.128574) (xy 151.981272 120.01988) (xy 152.133857 119.88078) + (xy 152.258285 119.716011) (xy 152.350318 119.531184) (xy 152.406822 119.332592) (xy 152.425873 119.127) + (xy 152.728127 119.127) (xy 152.747178 119.332593) (xy 152.760951 119.381) (xy 152.803682 119.531184) + (xy 152.895715 119.716011) (xy 153.020143 119.88078) (xy 153.172728 120.01988) (xy 153.348275 120.128574) + (xy 153.540806 120.203161) (xy 153.743763 120.2411) (xy 153.950237 120.2411) (xy 154.153194 120.203161) + (xy 154.345725 120.128574) (xy 154.521272 120.01988) (xy 154.673857 119.88078) (xy 154.798285 119.716011) + (xy 154.890318 119.531184) (xy 154.946822 119.332592) (xy 154.965873 119.127) (xy 155.268127 119.127) + (xy 155.287178 119.332593) (xy 155.300951 119.381) (xy 155.343682 119.531184) (xy 155.435715 119.716011) + (xy 155.560143 119.88078) (xy 155.712728 120.01988) (xy 155.888275 120.128574) (xy 156.080806 120.203161) + (xy 156.283763 120.2411) (xy 156.490237 120.2411) (xy 156.693194 120.203161) (xy 156.885725 120.128574) + (xy 157.061272 120.01988) (xy 157.213857 119.88078) (xy 157.338285 119.716011) (xy 157.430318 119.531184) + (xy 157.486822 119.332592) (xy 157.505873 119.127) (xy 157.808127 119.127) (xy 157.827178 119.332593) + (xy 157.840951 119.381) (xy 157.883682 119.531184) (xy 157.975715 119.716011) (xy 158.100143 119.88078) + (xy 158.252728 120.01988) (xy 158.428275 120.128574) (xy 158.620806 120.203161) (xy 158.823763 120.2411) + (xy 159.030237 120.2411) (xy 159.233194 120.203161) (xy 159.425725 120.128574) (xy 159.601272 120.01988) + (xy 159.753857 119.88078) (xy 159.878285 119.716011) (xy 159.970318 119.531184) (xy 160.026822 119.332592) + (xy 160.045873 119.127) (xy 160.348127 119.127) (xy 160.367178 119.332593) (xy 160.380951 119.381) + (xy 160.423682 119.531184) (xy 160.515715 119.716011) (xy 160.640143 119.88078) (xy 160.792728 120.01988) + (xy 160.968275 120.128574) (xy 161.160806 120.203161) (xy 161.363763 120.2411) (xy 161.570237 120.2411) + (xy 161.773194 120.203161) (xy 161.965725 120.128574) (xy 162.141272 120.01988) (xy 162.293857 119.88078) + (xy 162.418285 119.716011) (xy 162.510318 119.531184) (xy 162.566822 119.332592) (xy 162.585873 119.127) + (xy 162.566822 118.921408) (xy 162.510318 118.722816) (xy 162.418285 118.537989) (xy 162.293857 118.37322) + (xy 162.141272 118.23412) (xy 161.965725 118.125426) (xy 161.773194 118.050839) (xy 161.773193 118.050838) + (xy 161.773191 118.050838) (xy 161.570237 118.0129) (xy 161.363763 118.0129) (xy 161.160808 118.050838) + (xy 161.090031 118.078257) (xy 160.968275 118.125426) (xy 160.792728 118.23412) (xy 160.640144 118.373219) + (xy 160.515716 118.537987) (xy 160.515711 118.537996) (xy 160.423682 118.722815) (xy 160.367178 118.921406) + (xy 160.348127 119.127) (xy 160.045873 119.127) (xy 160.026822 118.921408) (xy 159.970318 118.722816) + (xy 159.878285 118.537989) (xy 159.753857 118.37322) (xy 159.601272 118.23412) (xy 159.425725 118.125426) + (xy 159.233194 118.050839) (xy 159.233193 118.050838) (xy 159.233191 118.050838) (xy 159.030237 118.0129) + (xy 158.823763 118.0129) (xy 158.620808 118.050838) (xy 158.550031 118.078257) (xy 158.428275 118.125426) + (xy 158.252728 118.23412) (xy 158.100144 118.373219) (xy 157.975716 118.537987) (xy 157.975711 118.537996) + (xy 157.883682 118.722815) (xy 157.827178 118.921406) (xy 157.808127 119.127) (xy 157.505873 119.127) + (xy 157.486822 118.921408) (xy 157.430318 118.722816) (xy 157.338285 118.537989) (xy 157.213857 118.37322) + (xy 157.061272 118.23412) (xy 156.885725 118.125426) (xy 156.693194 118.050839) (xy 156.693193 118.050838) + (xy 156.693191 118.050838) (xy 156.490237 118.0129) (xy 156.283763 118.0129) (xy 156.080808 118.050838) + (xy 156.010031 118.078257) (xy 155.888275 118.125426) (xy 155.712728 118.23412) (xy 155.560144 118.373219) + (xy 155.435716 118.537987) (xy 155.435711 118.537996) (xy 155.343682 118.722815) (xy 155.287178 118.921406) + (xy 155.268127 119.127) (xy 154.965873 119.127) (xy 154.946822 118.921408) (xy 154.890318 118.722816) + (xy 154.798285 118.537989) (xy 154.673857 118.37322) (xy 154.521272 118.23412) (xy 154.345725 118.125426) + (xy 154.153194 118.050839) (xy 154.153193 118.050838) (xy 154.153191 118.050838) (xy 153.950237 118.0129) + (xy 153.743763 118.0129) (xy 153.540808 118.050838) (xy 153.470031 118.078257) (xy 153.348275 118.125426) + (xy 153.172728 118.23412) (xy 153.020144 118.373219) (xy 152.895716 118.537987) (xy 152.895711 118.537996) + (xy 152.803682 118.722815) (xy 152.747178 118.921406) (xy 152.728127 119.127) (xy 152.425873 119.127) + (xy 152.406822 118.921408) (xy 152.350318 118.722816) (xy 152.258285 118.537989) (xy 152.133857 118.37322) + (xy 151.981272 118.23412) (xy 151.805725 118.125426) (xy 151.613194 118.050839) (xy 151.613193 118.050838) + (xy 151.613191 118.050838) (xy 151.410237 118.0129) (xy 151.203763 118.0129) (xy 151.000808 118.050838) + (xy 150.930031 118.078257) (xy 150.808275 118.125426) (xy 150.632728 118.23412) (xy 150.480144 118.373219) + (xy 150.355716 118.537987) (xy 150.355711 118.537996) (xy 150.315376 118.619) (xy 150.263683 118.722815) + (xy 150.261642 118.726913) (xy 150.260129 118.726159) (xy 150.225778 118.76831) (xy 150.166629 118.783961) + (xy 150.109576 118.761855) (xy 150.076413 118.710437) (xy 150.076148 118.709416) (xy 150.068727 118.680115) + (xy 150.068726 118.680112) (xy 149.977421 118.471955) (xy 149.853095 118.281659) (xy 149.699142 118.114421) + (xy 149.519768 117.974809) (xy 149.519765 117.974807) (xy 149.319857 117.866621) (xy 149.104858 117.792812) + (xy 149.021 117.778818) (xy 149.021 118.687058) (xy 148.963081 118.653619) (xy 148.83388 118.619) + (xy 148.70012 118.619) (xy 148.570919 118.653619) (xy 148.513 118.687058) (xy 148.513 117.778818) + (xy 148.512999 117.778818) (xy 148.429141 117.792812) (xy 148.214142 117.866621) (xy 148.014234 117.974807) + (xy 148.014231 117.974809) (xy 147.834857 118.114421) (xy 147.680904 118.281659) (xy 147.556578 118.471955) + (xy 147.465273 118.680112) (xy 147.46527 118.680119) (xy 147.45785 118.709419) (xy 147.425234 118.761187) + (xy 147.36842 118.783897) (xy 147.309107 118.768875) (xy 147.273632 118.726278) (xy 147.272358 118.726913) + (xy 147.270318 118.722816) (xy 147.178285 118.537989) (xy 147.053857 118.37322) (xy 146.901272 118.23412) + (xy 146.725725 118.125426) (xy 146.533194 118.050839) (xy 146.533193 118.050838) (xy 146.533191 118.050838) + (xy 146.330237 118.0129) (xy 146.123763 118.0129) (xy 145.920808 118.050838) (xy 145.850031 118.078257) + (xy 145.728275 118.125426) (xy 145.552728 118.23412) (xy 145.400144 118.373219) (xy 145.275716 118.537987) + (xy 145.275711 118.537996) (xy 145.183682 118.722815) (xy 145.127178 118.921406) (xy 145.108127 119.127) + (xy 144.805873 119.127) (xy 144.786822 118.921408) (xy 144.730318 118.722816) (xy 144.638285 118.537989) + (xy 144.513857 118.37322) (xy 144.361272 118.23412) (xy 144.185725 118.125426) (xy 143.993194 118.050839) + (xy 143.993193 118.050838) (xy 143.993191 118.050838) (xy 143.790237 118.0129) (xy 143.583763 118.0129) + (xy 143.380808 118.050838) (xy 143.310031 118.078257) (xy 143.188275 118.125426) (xy 143.012728 118.23412) + (xy 142.860144 118.373219) (xy 142.735716 118.537987) (xy 142.735711 118.537996) (xy 142.643682 118.722815) + (xy 142.587178 118.921406) (xy 142.568127 119.127) (xy 142.265873 119.127) (xy 142.246822 118.921408) + (xy 142.190318 118.722816) (xy 142.098285 118.537989) (xy 141.973857 118.37322) (xy 141.821272 118.23412) + (xy 141.645725 118.125426) (xy 141.453194 118.050839) (xy 141.453193 118.050838) (xy 141.453191 118.050838) + (xy 141.250237 118.0129) (xy 141.043763 118.0129) (xy 140.840808 118.050838) (xy 140.770031 118.078257) + (xy 140.648275 118.125426) (xy 140.472728 118.23412) (xy 140.320144 118.373219) (xy 140.195716 118.537987) + (xy 140.195711 118.537996) (xy 140.103682 118.722815) (xy 140.047178 118.921406) (xy 140.028127 119.127) + (xy 139.725873 119.127) (xy 139.706822 118.921408) (xy 139.650318 118.722816) (xy 139.558285 118.537989) + (xy 139.433857 118.37322) (xy 139.281272 118.23412) (xy 139.105725 118.125426) (xy 138.913194 118.050839) + (xy 138.913193 118.050838) (xy 138.913191 118.050838) (xy 138.710237 118.0129) (xy 138.503763 118.0129) + (xy 138.300808 118.050838) (xy 138.230031 118.078257) (xy 138.108275 118.125426) (xy 137.932728 118.23412) + (xy 137.780144 118.373219) (xy 137.655716 118.537987) (xy 137.655711 118.537996) (xy 137.615376 118.619) + (xy 137.563683 118.722815) (xy 137.561642 118.726913) (xy 137.560129 118.726159) (xy 137.525778 118.76831) + (xy 137.466629 118.783961) (xy 137.409576 118.761855) (xy 137.376413 118.710437) (xy 137.376148 118.709416) + (xy 137.368727 118.680115) (xy 137.368726 118.680112) (xy 137.277421 118.471955) (xy 137.153095 118.281659) + (xy 136.999142 118.114421) (xy 136.819768 117.974809) (xy 136.819765 117.974807) (xy 136.619857 117.866621) + (xy 136.404858 117.792812) (xy 136.321 117.778818) (xy 136.321 118.687058) (xy 136.263081 118.653619) + (xy 136.13388 118.619) (xy 136.00012 118.619) (xy 135.870919 118.653619) (xy 135.813 118.687058) + (xy 135.813 117.778818) (xy 135.729141 117.792812) (xy 135.514142 117.866621) (xy 135.314234 117.974807) + (xy 135.314231 117.974809) (xy 135.134857 118.114421) (xy 134.980904 118.281659) (xy 134.856578 118.471955) + (xy 134.765273 118.680112) (xy 134.76527 118.680119) (xy 134.75785 118.709419) (xy 134.725234 118.761187) + (xy 134.66842 118.783897) (xy 134.609107 118.768875) (xy 134.573632 118.726278) (xy 134.572358 118.726913) + (xy 134.570318 118.722816) (xy 134.478285 118.537989) (xy 134.353857 118.37322) (xy 134.201272 118.23412) + (xy 134.025725 118.125426) (xy 133.833194 118.050839) (xy 133.833193 118.050838) (xy 133.833191 118.050838) + (xy 133.630237 118.0129) (xy 133.423763 118.0129) (xy 133.220808 118.050838) (xy 133.150031 118.078257) + (xy 133.028275 118.125426) (xy 132.852728 118.23412) (xy 132.700144 118.373219) (xy 132.575716 118.537987) + (xy 132.575711 118.537996) (xy 132.535376 118.619) (xy 132.483683 118.722815) (xy 132.481642 118.726913) + (xy 132.480129 118.726159) (xy 132.445778 118.76831) (xy 132.386629 118.783961) (xy 132.329576 118.761855) + (xy 132.296413 118.710437) (xy 132.296148 118.709416) (xy 132.288727 118.680115) (xy 132.288726 118.680112) + (xy 132.197421 118.471955) (xy 132.073095 118.281659) (xy 131.919142 118.114421) (xy 131.739768 117.974809) + (xy 131.739765 117.974807) (xy 131.539857 117.866621) (xy 131.324858 117.792812) (xy 131.241 117.778818) + (xy 131.241 118.687058) (xy 131.183081 118.653619) (xy 131.05388 118.619) (xy 130.92012 118.619) + (xy 130.790919 118.653619) (xy 130.733 118.687058) (xy 130.733 117.778818) (xy 130.732999 117.778818) + (xy 130.649141 117.792812) (xy 130.434142 117.866621) (xy 130.234234 117.974807) (xy 130.234231 117.974809) + (xy 130.054857 118.114421) (xy 129.900904 118.281659) (xy 129.776578 118.471955) (xy 129.685273 118.680112) + (xy 129.685272 118.680115) (xy 129.636426 118.873) (xy 61.379912 118.873) (xy 61.2968 118.717508) + (xy 61.168651 118.561358) (xy 61.168647 118.561353) (xy 61.168641 118.561348) (xy 61.012491 118.433199) + (xy 60.834346 118.337979) (xy 60.834341 118.337977) (xy 60.641033 118.279337) (xy 60.641028 118.279336) + (xy 60.440003 118.259538) (xy 60.439997 118.259538) (xy 60.238971 118.279336) (xy 60.238966 118.279337) + (xy 60.045658 118.337977) (xy 60.045653 118.337979) (xy 59.867508 118.433199) (xy 59.711358 118.561348) + (xy 59.711348 118.561358) (xy 59.583199 118.717508) (xy 59.487979 118.895653) (xy 59.487977 118.895658) + (xy 59.429337 119.088966) (xy 59.429336 119.088971) (xy 59.409538 119.289996) (xy 56.390462 119.289996) + (xy 56.370663 119.088971) (xy 56.370662 119.088966) (xy 56.352873 119.030327) (xy 56.312023 118.895659) + (xy 56.31202 118.895653) (xy 56.2168 118.717508) (xy 56.088651 118.561358) (xy 56.088647 118.561353) + (xy 56.088641 118.561348) (xy 55.932491 118.433199) (xy 55.754346 118.337979) (xy 55.754341 118.337977) + (xy 55.561033 118.279337) (xy 55.561028 118.279336) (xy 55.360003 118.259538) (xy 55.359997 118.259538) + (xy 55.158971 118.279336) (xy 55.158966 118.279337) (xy 54.965658 118.337977) (xy 54.965653 118.337979) + (xy 54.787508 118.433199) (xy 54.631358 118.561348) (xy 54.631348 118.561358) (xy 54.503199 118.717508) + (xy 54.407979 118.895653) (xy 54.407977 118.895658) (xy 54.349337 119.088966) (xy 54.349336 119.088971) + (xy 54.329538 119.289996) (xy 50.0755 119.289996) (xy 50.0755 116.749996) (xy 54.329538 116.749996) + (xy 54.329538 116.750003) (xy 54.349336 116.951028) (xy 54.349337 116.951033) (xy 54.407977 117.144341) + (xy 54.407979 117.144346) (xy 54.503199 117.322491) (xy 54.631348 117.478641) (xy 54.631353 117.478647) + (xy 54.631358 117.478651) (xy 54.787508 117.6068) (xy 54.965653 117.70202) (xy 54.965659 117.702023) + (xy 55.100327 117.742873) (xy 55.158966 117.760662) (xy 55.158971 117.760663) (xy 55.359997 117.780462) + (xy 55.36 117.780462) (xy 55.360003 117.780462) (xy 55.561028 117.760663) (xy 55.561033 117.760662) + (xy 55.754341 117.702023) (xy 55.834925 117.658949) (xy 55.932491 117.6068) (xy 55.932492 117.606798) + (xy 55.932494 117.606798) (xy 56.088647 117.478647) (xy 56.216798 117.322494) (xy 56.312023 117.144341) + (xy 56.370662 116.951033) (xy 56.370663 116.951028) (xy 56.390462 116.750003) (xy 56.390462 116.749996) + (xy 59.409538 116.749996) (xy 59.409538 116.750003) (xy 59.429336 116.951028) (xy 59.429337 116.951033) + (xy 59.487977 117.144341) (xy 59.487979 117.144346) (xy 59.583199 117.322491) (xy 59.711348 117.478641) + (xy 59.711353 117.478647) (xy 59.711358 117.478651) (xy 59.867508 117.6068) (xy 60.045653 117.70202) + (xy 60.045659 117.702023) (xy 60.180327 117.742873) (xy 60.238966 117.760662) (xy 60.238971 117.760663) + (xy 60.439997 117.780462) (xy 60.44 117.780462) (xy 60.440003 117.780462) (xy 60.641028 117.760663) + (xy 60.641033 117.760662) (xy 60.834341 117.702023) (xy 60.914925 117.658949) (xy 61.012491 117.6068) + (xy 61.012492 117.606798) (xy 61.012494 117.606798) (xy 61.168647 117.478647) (xy 61.296798 117.322494) + (xy 61.392023 117.144341) (xy 61.450662 116.951033) (xy 61.450663 116.951028) (xy 61.470462 116.750003) + (xy 61.470462 116.749996) (xy 61.450663 116.548971) (xy 61.450662 116.548966) (xy 61.432873 116.490327) + (xy 61.392023 116.355659) (xy 61.39202 116.355653) (xy 61.2968 116.177508) (xy 61.168651 116.021358) + (xy 61.168647 116.021353) (xy 61.168641 116.021348) (xy 61.012491 115.893199) (xy 60.834346 115.797979) + (xy 60.834341 115.797977) (xy 60.641033 115.739337) (xy 60.641028 115.739336) (xy 60.440003 115.719538) + (xy 60.439997 115.719538) (xy 60.238971 115.739336) (xy 60.238966 115.739337) (xy 60.045658 115.797977) + (xy 60.045653 115.797979) (xy 59.867508 115.893199) (xy 59.711358 116.021348) (xy 59.711348 116.021358) + (xy 59.583199 116.177508) (xy 59.487979 116.355653) (xy 59.487977 116.355658) (xy 59.429337 116.548966) + (xy 59.429336 116.548971) (xy 59.409538 116.749996) (xy 56.390462 116.749996) (xy 56.370663 116.548971) + (xy 56.370662 116.548966) (xy 56.352873 116.490327) (xy 56.312023 116.355659) (xy 56.31202 116.355653) + (xy 56.2168 116.177508) (xy 56.088651 116.021358) (xy 56.088647 116.021353) (xy 56.088641 116.021348) + (xy 55.932491 115.893199) (xy 55.754346 115.797979) (xy 55.754341 115.797977) (xy 55.561033 115.739337) + (xy 55.561028 115.739336) (xy 55.360003 115.719538) (xy 55.359997 115.719538) (xy 55.158971 115.739336) + (xy 55.158966 115.739337) (xy 54.965658 115.797977) (xy 54.965653 115.797979) (xy 54.787508 115.893199) + (xy 54.631358 116.021348) (xy 54.631348 116.021358) (xy 54.503199 116.177508) (xy 54.407979 116.355653) + (xy 54.407977 116.355658) (xy 54.349337 116.548966) (xy 54.349336 116.548971) (xy 54.329538 116.749996) + (xy 50.0755 116.749996) (xy 50.0755 114.209996) (xy 54.329538 114.209996) (xy 54.329538 114.210003) + (xy 54.349336 114.411028) (xy 54.349337 114.411033) (xy 54.407977 114.604341) (xy 54.407979 114.604346) + (xy 54.503199 114.782491) (xy 54.631348 114.938641) (xy 54.631353 114.938647) (xy 54.631358 114.938651) + (xy 54.787508 115.0668) (xy 54.965653 115.16202) (xy 54.965659 115.162023) (xy 55.100327 115.202873) + (xy 55.158966 115.220662) (xy 55.158971 115.220663) (xy 55.359997 115.240462) (xy 55.36 115.240462) + (xy 55.360003 115.240462) (xy 55.561028 115.220663) (xy 55.561033 115.220662) (xy 55.754341 115.162023) + (xy 55.834925 115.118949) (xy 55.932491 115.0668) (xy 55.932492 115.066798) (xy 55.932494 115.066798) + (xy 56.088647 114.938647) (xy 56.216798 114.782494) (xy 56.312023 114.604341) (xy 56.370662 114.411033) + (xy 56.370663 114.411028) (xy 56.390462 114.210003) (xy 56.390462 114.209996) (xy 59.409538 114.209996) + (xy 59.409538 114.210003) (xy 59.429336 114.411028) (xy 59.429337 114.411033) (xy 59.487977 114.604341) + (xy 59.487979 114.604346) (xy 59.583199 114.782491) (xy 59.711348 114.938641) (xy 59.711353 114.938647) + (xy 59.711358 114.938651) (xy 59.867508 115.0668) (xy 60.045653 115.16202) (xy 60.045659 115.162023) + (xy 60.180327 115.202873) (xy 60.238966 115.220662) (xy 60.238971 115.220663) (xy 60.439997 115.240462) + (xy 60.44 115.240462) (xy 60.440003 115.240462) (xy 60.641028 115.220663) (xy 60.641033 115.220662) + (xy 60.834341 115.162023) (xy 60.914925 115.118949) (xy 61.012491 115.0668) (xy 61.012492 115.066798) + (xy 61.012494 115.066798) (xy 61.168647 114.938647) (xy 61.296798 114.782494) (xy 61.392023 114.604341) + (xy 61.450662 114.411033) (xy 61.450663 114.411028) (xy 61.470462 114.210003) (xy 61.470462 114.209996) + (xy 61.450663 114.008971) (xy 61.450662 114.008966) (xy 61.432873 113.950327) (xy 61.392023 113.815659) + (xy 61.39202 113.815653) (xy 61.2968 113.637508) (xy 61.168651 113.481358) (xy 61.168647 113.481353) + (xy 61.168641 113.481348) (xy 61.012491 113.353199) (xy 60.834346 113.257979) (xy 60.834341 113.257977) + (xy 60.641033 113.199337) (xy 60.641028 113.199336) (xy 60.440003 113.179538) (xy 60.439997 113.179538) + (xy 60.238971 113.199336) (xy 60.238966 113.199337) (xy 60.045658 113.257977) (xy 60.045653 113.257979) + (xy 59.867508 113.353199) (xy 59.711358 113.481348) (xy 59.711348 113.481358) (xy 59.583199 113.637508) + (xy 59.487979 113.815653) (xy 59.487977 113.815658) (xy 59.429337 114.008966) (xy 59.429336 114.008971) + (xy 59.409538 114.209996) (xy 56.390462 114.209996) (xy 56.370663 114.008971) (xy 56.370662 114.008966) + (xy 56.352873 113.950327) (xy 56.312023 113.815659) (xy 56.31202 113.815653) (xy 56.2168 113.637508) + (xy 56.088651 113.481358) (xy 56.088647 113.481353) (xy 56.088641 113.481348) (xy 55.932491 113.353199) + (xy 55.754346 113.257979) (xy 55.754341 113.257977) (xy 55.561033 113.199337) (xy 55.561028 113.199336) + (xy 55.360003 113.179538) (xy 55.359997 113.179538) (xy 55.158971 113.199336) (xy 55.158966 113.199337) + (xy 54.965658 113.257977) (xy 54.965653 113.257979) (xy 54.787508 113.353199) (xy 54.631358 113.481348) + (xy 54.631348 113.481358) (xy 54.503199 113.637508) (xy 54.407979 113.815653) (xy 54.407977 113.815658) + (xy 54.349337 114.008966) (xy 54.349336 114.008971) (xy 54.329538 114.209996) (xy 50.0755 114.209996) + (xy 50.0755 111.669996) (xy 54.329538 111.669996) (xy 54.329538 111.670003) (xy 54.349336 111.871028) + (xy 54.349337 111.871033) (xy 54.407977 112.064341) (xy 54.407979 112.064346) (xy 54.503199 112.242491) + (xy 54.631348 112.398641) (xy 54.631353 112.398647) (xy 54.631358 112.398651) (xy 54.787508 112.5268) + (xy 54.965653 112.62202) (xy 54.965659 112.622023) (xy 55.100327 112.662873) (xy 55.158966 112.680662) + (xy 55.158971 112.680663) (xy 55.359997 112.700462) (xy 55.36 112.700462) (xy 55.360003 112.700462) + (xy 55.561028 112.680663) (xy 55.561033 112.680662) (xy 55.754341 112.622023) (xy 55.834925 112.578949) + (xy 55.932491 112.5268) (xy 55.932492 112.526798) (xy 55.932494 112.526798) (xy 56.088647 112.398647) + (xy 56.216798 112.242494) (xy 56.312023 112.064341) (xy 56.370662 111.871033) (xy 56.370663 111.871028) + (xy 56.390462 111.670003) (xy 56.390462 111.669996) (xy 59.409538 111.669996) (xy 59.409538 111.670003) + (xy 59.429336 111.871028) (xy 59.429337 111.871033) (xy 59.487977 112.064341) (xy 59.487979 112.064346) + (xy 59.583199 112.242491) (xy 59.711348 112.398641) (xy 59.711353 112.398647) (xy 59.711358 112.398651) + (xy 59.867508 112.5268) (xy 60.045653 112.62202) (xy 60.045659 112.622023) (xy 60.180327 112.662873) + (xy 60.238966 112.680662) (xy 60.238971 112.680663) (xy 60.439997 112.700462) (xy 60.44 112.700462) + (xy 60.440003 112.700462) (xy 60.641028 112.680663) (xy 60.641033 112.680662) (xy 60.834341 112.622023) + (xy 60.914925 112.578949) (xy 61.012491 112.5268) (xy 61.012492 112.526798) (xy 61.012494 112.526798) + (xy 61.168647 112.398647) (xy 61.296798 112.242494) (xy 61.392023 112.064341) (xy 61.450662 111.871033) + (xy 61.450663 111.871028) (xy 61.470462 111.670003) (xy 61.470462 111.669996) (xy 61.450663 111.468971) + (xy 61.450662 111.468966) (xy 61.432873 111.410327) (xy 61.392023 111.275659) (xy 61.39202 111.275653) + (xy 61.2968 111.097508) (xy 61.168651 110.941358) (xy 61.168647 110.941353) (xy 61.168641 110.941348) + (xy 61.012491 110.813199) (xy 60.834346 110.717979) (xy 60.834341 110.717977) (xy 60.641033 110.659337) + (xy 60.641028 110.659336) (xy 60.440003 110.639538) (xy 60.439997 110.639538) (xy 60.238971 110.659336) + (xy 60.238966 110.659337) (xy 60.045658 110.717977) (xy 60.045653 110.717979) (xy 59.867508 110.813199) + (xy 59.711358 110.941348) (xy 59.711348 110.941358) (xy 59.583199 111.097508) (xy 59.487979 111.275653) + (xy 59.487977 111.275658) (xy 59.429337 111.468966) (xy 59.429336 111.468971) (xy 59.409538 111.669996) + (xy 56.390462 111.669996) (xy 56.370663 111.468971) (xy 56.370662 111.468966) (xy 56.352873 111.410327) + (xy 56.312023 111.275659) (xy 56.31202 111.275653) (xy 56.2168 111.097508) (xy 56.088651 110.941358) + (xy 56.088647 110.941353) (xy 56.088641 110.941348) (xy 55.932491 110.813199) (xy 55.754346 110.717979) + (xy 55.754341 110.717977) (xy 55.561033 110.659337) (xy 55.561028 110.659336) (xy 55.360003 110.639538) + (xy 55.359997 110.639538) (xy 55.158971 110.659336) (xy 55.158966 110.659337) (xy 54.965658 110.717977) + (xy 54.965653 110.717979) (xy 54.787508 110.813199) (xy 54.631358 110.941348) (xy 54.631348 110.941358) + (xy 54.503199 111.097508) (xy 54.407979 111.275653) (xy 54.407977 111.275658) (xy 54.349337 111.468966) + (xy 54.349336 111.468971) (xy 54.329538 111.669996) (xy 50.0755 111.669996) (xy 50.0755 109.129996) + (xy 54.329538 109.129996) (xy 54.329538 109.130003) (xy 54.349336 109.331028) (xy 54.349337 109.331033) + (xy 54.407977 109.524341) (xy 54.407979 109.524346) (xy 54.503199 109.702491) (xy 54.631348 109.858641) + (xy 54.631353 109.858647) (xy 54.631358 109.858651) (xy 54.787508 109.9868) (xy 54.965653 110.08202) + (xy 54.965659 110.082023) (xy 55.100327 110.122873) (xy 55.158966 110.140662) (xy 55.158971 110.140663) + (xy 55.359997 110.160462) (xy 55.36 110.160462) (xy 55.360003 110.160462) (xy 55.561028 110.140663) + (xy 55.561033 110.140662) (xy 55.754341 110.082023) (xy 55.834925 110.038949) (xy 55.932491 109.9868) + (xy 55.932492 109.986798) (xy 55.932494 109.986798) (xy 56.088647 109.858647) (xy 56.216798 109.702494) + (xy 56.312023 109.524341) (xy 56.370662 109.331033) (xy 56.370663 109.331028) (xy 56.390462 109.130003) + (xy 56.390462 109.129996) (xy 59.409538 109.129996) (xy 59.409538 109.130003) (xy 59.429336 109.331028) + (xy 59.429337 109.331033) (xy 59.487977 109.524341) (xy 59.487979 109.524346) (xy 59.583199 109.702491) + (xy 59.711348 109.858641) (xy 59.711353 109.858647) (xy 59.711358 109.858651) (xy 59.867508 109.9868) + (xy 60.045653 110.08202) (xy 60.045659 110.082023) (xy 60.180327 110.122873) (xy 60.238966 110.140662) + (xy 60.238971 110.140663) (xy 60.439997 110.160462) (xy 60.44 110.160462) (xy 60.440003 110.160462) + (xy 60.641028 110.140663) (xy 60.641033 110.140662) (xy 60.834341 110.082023) (xy 60.914925 110.038949) + (xy 61.012491 109.9868) (xy 61.012492 109.986798) (xy 61.012494 109.986798) (xy 61.168647 109.858647) + (xy 61.296798 109.702494) (xy 61.392023 109.524341) (xy 61.450662 109.331033) (xy 61.450663 109.331028) + (xy 61.470462 109.130003) (xy 61.470462 109.129996) (xy 61.450663 108.928971) (xy 61.450662 108.928966) + (xy 61.432873 108.870327) (xy 61.392023 108.735659) (xy 61.39202 108.735653) (xy 61.2968 108.557508) + (xy 61.168651 108.401358) (xy 61.168647 108.401353) (xy 61.168641 108.401348) (xy 61.012491 108.273199) + (xy 60.834346 108.177979) (xy 60.834341 108.177977) (xy 60.641033 108.119337) (xy 60.641028 108.119336) + (xy 60.440003 108.099538) (xy 60.439997 108.099538) (xy 60.238971 108.119336) (xy 60.238966 108.119337) + (xy 60.045658 108.177977) (xy 60.045653 108.177979) (xy 59.867508 108.273199) (xy 59.711358 108.401348) + (xy 59.711348 108.401358) (xy 59.583199 108.557508) (xy 59.487979 108.735653) (xy 59.487977 108.735658) + (xy 59.429337 108.928966) (xy 59.429336 108.928971) (xy 59.409538 109.129996) (xy 56.390462 109.129996) + (xy 56.370663 108.928971) (xy 56.370662 108.928966) (xy 56.352873 108.870327) (xy 56.312023 108.735659) + (xy 56.31202 108.735653) (xy 56.2168 108.557508) (xy 56.088651 108.401358) (xy 56.088647 108.401353) + (xy 56.088641 108.401348) (xy 55.932491 108.273199) (xy 55.754346 108.177979) (xy 55.754341 108.177977) + (xy 55.561033 108.119337) (xy 55.561028 108.119336) (xy 55.360003 108.099538) (xy 55.359997 108.099538) + (xy 55.158971 108.119336) (xy 55.158966 108.119337) (xy 54.965658 108.177977) (xy 54.965653 108.177979) + (xy 54.787508 108.273199) (xy 54.631358 108.401348) (xy 54.631348 108.401358) (xy 54.503199 108.557508) + (xy 54.407979 108.735653) (xy 54.407977 108.735658) (xy 54.349337 108.928966) (xy 54.349336 108.928971) + (xy 54.329538 109.129996) (xy 50.0755 109.129996) (xy 50.0755 106.589996) (xy 54.329538 106.589996) + (xy 54.329538 106.590003) (xy 54.349336 106.791028) (xy 54.349337 106.791033) (xy 54.407977 106.984341) + (xy 54.407979 106.984346) (xy 54.503199 107.162491) (xy 54.631348 107.318641) (xy 54.631353 107.318647) + (xy 54.631358 107.318651) (xy 54.787508 107.4468) (xy 54.965653 107.54202) (xy 54.965659 107.542023) + (xy 55.100327 107.582873) (xy 55.158966 107.600662) (xy 55.158971 107.600663) (xy 55.359997 107.620462) + (xy 55.36 107.620462) (xy 55.360003 107.620462) (xy 55.561028 107.600663) (xy 55.561033 107.600662) + (xy 55.754341 107.542023) (xy 55.834925 107.498949) (xy 55.932491 107.4468) (xy 55.932492 107.446798) + (xy 55.932494 107.446798) (xy 56.088647 107.318647) (xy 56.216798 107.162494) (xy 56.312023 106.984341) + (xy 56.370662 106.791033) (xy 56.370663 106.791028) (xy 56.390462 106.590003) (xy 56.390462 106.589996) + (xy 59.409538 106.589996) (xy 59.409538 106.590003) (xy 59.429336 106.791028) (xy 59.429337 106.791033) + (xy 59.487977 106.984341) (xy 59.487979 106.984346) (xy 59.583199 107.162491) (xy 59.711348 107.318641) + (xy 59.711353 107.318647) (xy 59.711358 107.318651) (xy 59.867508 107.4468) (xy 60.045653 107.54202) + (xy 60.045659 107.542023) (xy 60.180327 107.582873) (xy 60.238966 107.600662) (xy 60.238971 107.600663) + (xy 60.439997 107.620462) (xy 60.44 107.620462) (xy 60.440003 107.620462) (xy 60.641028 107.600663) + (xy 60.641033 107.600662) (xy 60.834341 107.542023) (xy 60.914925 107.498949) (xy 61.012491 107.4468) + (xy 61.012492 107.446798) (xy 61.012494 107.446798) (xy 61.168647 107.318647) (xy 61.296798 107.162494) + (xy 61.392023 106.984341) (xy 61.450662 106.791033) (xy 61.450663 106.791028) (xy 61.470462 106.590003) + (xy 61.470462 106.589996) (xy 61.450663 106.388971) (xy 61.450662 106.388966) (xy 61.432873 106.330327) + (xy 61.392023 106.195659) (xy 61.39202 106.195653) (xy 61.2968 106.017508) (xy 61.168651 105.861358) + (xy 61.168647 105.861353) (xy 61.168641 105.861348) (xy 61.012491 105.733199) (xy 60.834346 105.637979) + (xy 60.834341 105.637977) (xy 60.641033 105.579337) (xy 60.641028 105.579336) (xy 60.440003 105.559538) + (xy 60.439997 105.559538) (xy 60.238971 105.579336) (xy 60.238966 105.579337) (xy 60.045658 105.637977) + (xy 60.045653 105.637979) (xy 59.867508 105.733199) (xy 59.711358 105.861348) (xy 59.711348 105.861358) + (xy 59.583199 106.017508) (xy 59.487979 106.195653) (xy 59.487977 106.195658) (xy 59.429337 106.388966) + (xy 59.429336 106.388971) (xy 59.409538 106.589996) (xy 56.390462 106.589996) (xy 56.370663 106.388971) + (xy 56.370662 106.388966) (xy 56.352873 106.330327) (xy 56.312023 106.195659) (xy 56.31202 106.195653) + (xy 56.2168 106.017508) (xy 56.088651 105.861358) (xy 56.088647 105.861353) (xy 56.088641 105.861348) + (xy 55.932491 105.733199) (xy 55.754346 105.637979) (xy 55.754341 105.637977) (xy 55.561033 105.579337) + (xy 55.561028 105.579336) (xy 55.360003 105.559538) (xy 55.359997 105.559538) (xy 55.158971 105.579336) + (xy 55.158966 105.579337) (xy 54.965658 105.637977) (xy 54.965653 105.637979) (xy 54.787508 105.733199) + (xy 54.631358 105.861348) (xy 54.631348 105.861358) (xy 54.503199 106.017508) (xy 54.407979 106.195653) + (xy 54.407977 106.195658) (xy 54.349337 106.388966) (xy 54.349336 106.388971) (xy 54.329538 106.589996) + (xy 50.0755 106.589996) (xy 50.0755 104.049996) (xy 54.329538 104.049996) (xy 54.329538 104.050003) + (xy 54.349336 104.251028) (xy 54.349337 104.251033) (xy 54.407977 104.444341) (xy 54.407979 104.444346) + (xy 54.503199 104.622491) (xy 54.631348 104.778641) (xy 54.631353 104.778647) (xy 54.631358 104.778651) + (xy 54.787508 104.9068) (xy 54.965653 105.00202) (xy 54.965659 105.002023) (xy 55.100327 105.042873) + (xy 55.158966 105.060662) (xy 55.158971 105.060663) (xy 55.359997 105.080462) (xy 55.36 105.080462) + (xy 55.360003 105.080462) (xy 55.561028 105.060663) (xy 55.561033 105.060662) (xy 55.754341 105.002023) + (xy 55.834925 104.958949) (xy 55.932491 104.9068) (xy 55.932492 104.906798) (xy 55.932494 104.906798) + (xy 56.088647 104.778647) (xy 56.216798 104.622494) (xy 56.312023 104.444341) (xy 56.370662 104.251033) + (xy 56.370663 104.251028) (xy 56.390462 104.050003) (xy 56.390462 104.049996) (xy 59.409538 104.049996) + (xy 59.409538 104.050003) (xy 59.429336 104.251028) (xy 59.429337 104.251033) (xy 59.487977 104.444341) + (xy 59.487979 104.444346) (xy 59.583199 104.622491) (xy 59.711348 104.778641) (xy 59.711353 104.778647) + (xy 59.711358 104.778651) (xy 59.867508 104.9068) (xy 60.045653 105.00202) (xy 60.045659 105.002023) + (xy 60.180327 105.042873) (xy 60.238966 105.060662) (xy 60.238971 105.060663) (xy 60.439997 105.080462) + (xy 60.44 105.080462) (xy 60.440003 105.080462) (xy 60.641028 105.060663) (xy 60.641033 105.060662) + (xy 60.834341 105.002023) (xy 60.914925 104.958949) (xy 61.012491 104.9068) (xy 61.012492 104.906798) + (xy 61.012494 104.906798) (xy 61.168647 104.778647) (xy 61.296798 104.622494) (xy 61.392023 104.444341) + (xy 61.450662 104.251033) (xy 61.450663 104.251028) (xy 61.470462 104.050003) (xy 61.470462 104.049996) + (xy 61.450663 103.848971) (xy 61.450662 103.848966) (xy 61.432873 103.790327) (xy 61.392023 103.655659) + (xy 61.39202 103.655653) (xy 61.2968 103.477508) (xy 61.168651 103.321358) (xy 61.168647 103.321353) + (xy 61.168641 103.321348) (xy 61.012491 103.193199) (xy 60.834346 103.097979) (xy 60.834341 103.097977) + (xy 60.641033 103.039337) (xy 60.641028 103.039336) (xy 60.440003 103.019538) (xy 60.439997 103.019538) + (xy 60.238971 103.039336) (xy 60.238966 103.039337) (xy 60.045658 103.097977) (xy 60.045653 103.097979) + (xy 59.867508 103.193199) (xy 59.711358 103.321348) (xy 59.711348 103.321358) (xy 59.583199 103.477508) + (xy 59.487979 103.655653) (xy 59.487977 103.655658) (xy 59.429337 103.848966) (xy 59.429336 103.848971) + (xy 59.409538 104.049996) (xy 56.390462 104.049996) (xy 56.370663 103.848971) (xy 56.370662 103.848966) + (xy 56.352873 103.790327) (xy 56.312023 103.655659) (xy 56.31202 103.655653) (xy 56.2168 103.477508) + (xy 56.088651 103.321358) (xy 56.088647 103.321353) (xy 56.088641 103.321348) (xy 55.932491 103.193199) + (xy 55.754346 103.097979) (xy 55.754341 103.097977) (xy 55.561033 103.039337) (xy 55.561028 103.039336) + (xy 55.360003 103.019538) (xy 55.359997 103.019538) (xy 55.158971 103.039336) (xy 55.158966 103.039337) + (xy 54.965658 103.097977) (xy 54.965653 103.097979) (xy 54.787508 103.193199) (xy 54.631358 103.321348) + (xy 54.631348 103.321358) (xy 54.503199 103.477508) (xy 54.407979 103.655653) (xy 54.407977 103.655658) + (xy 54.349337 103.848966) (xy 54.349336 103.848971) (xy 54.329538 104.049996) (xy 50.0755 104.049996) + (xy 50.0755 101.509996) (xy 54.329538 101.509996) (xy 54.329538 101.510003) (xy 54.349336 101.711028) + (xy 54.349337 101.711033) (xy 54.407977 101.904341) (xy 54.407979 101.904346) (xy 54.503199 102.082491) + (xy 54.631348 102.238641) (xy 54.631353 102.238647) (xy 54.631358 102.238651) (xy 54.787508 102.3668) + (xy 54.965653 102.46202) (xy 54.965659 102.462023) (xy 55.100327 102.502873) (xy 55.158966 102.520662) + (xy 55.158971 102.520663) (xy 55.359997 102.540462) (xy 55.36 102.540462) (xy 55.360003 102.540462) + (xy 55.561028 102.520663) (xy 55.561033 102.520662) (xy 55.754341 102.462023) (xy 55.834925 102.418949) + (xy 55.932491 102.3668) (xy 55.932492 102.366798) (xy 55.932494 102.366798) (xy 56.088647 102.238647) + (xy 56.216798 102.082494) (xy 56.312023 101.904341) (xy 56.370662 101.711033) (xy 56.370663 101.711028) + (xy 56.390462 101.510003) (xy 56.390462 101.509996) (xy 59.409538 101.509996) (xy 59.409538 101.510003) + (xy 59.429336 101.711028) (xy 59.429337 101.711033) (xy 59.487977 101.904341) (xy 59.487979 101.904346) + (xy 59.583199 102.082491) (xy 59.711348 102.238641) (xy 59.711353 102.238647) (xy 59.711358 102.238651) + (xy 59.867508 102.3668) (xy 60.045653 102.46202) (xy 60.045659 102.462023) (xy 60.180327 102.502873) + (xy 60.238966 102.520662) (xy 60.238971 102.520663) (xy 60.439997 102.540462) (xy 60.44 102.540462) + (xy 60.440003 102.540462) (xy 60.641028 102.520663) (xy 60.641033 102.520662) (xy 60.834341 102.462023) + (xy 60.914925 102.418949) (xy 61.012491 102.3668) (xy 61.012492 102.366798) (xy 61.012494 102.366798) + (xy 61.168647 102.238647) (xy 61.296798 102.082494) (xy 61.392023 101.904341) (xy 61.450662 101.711033) + (xy 61.450663 101.711028) (xy 61.470462 101.510003) (xy 61.470462 101.509996) (xy 61.450663 101.308971) + (xy 61.450662 101.308966) (xy 61.432873 101.250327) (xy 61.392023 101.115659) (xy 61.39202 101.115653) + (xy 61.2968 100.937508) (xy 61.168651 100.781358) (xy 61.168647 100.781353) (xy 61.168641 100.781348) + (xy 61.012491 100.653199) (xy 60.834346 100.557979) (xy 60.834341 100.557977) (xy 60.641033 100.499337) + (xy 60.641028 100.499336) (xy 60.440003 100.479538) (xy 60.439997 100.479538) (xy 60.238971 100.499336) + (xy 60.238966 100.499337) (xy 60.045658 100.557977) (xy 60.045653 100.557979) (xy 59.867508 100.653199) + (xy 59.711358 100.781348) (xy 59.711348 100.781358) (xy 59.583199 100.937508) (xy 59.487979 101.115653) + (xy 59.487977 101.115658) (xy 59.429337 101.308966) (xy 59.429336 101.308971) (xy 59.409538 101.509996) + (xy 56.390462 101.509996) (xy 56.370663 101.308971) (xy 56.370662 101.308966) (xy 56.352873 101.250327) + (xy 56.312023 101.115659) (xy 56.31202 101.115653) (xy 56.2168 100.937508) (xy 56.088651 100.781358) + (xy 56.088647 100.781353) (xy 56.088641 100.781348) (xy 55.932491 100.653199) (xy 55.754346 100.557979) + (xy 55.754341 100.557977) (xy 55.561033 100.499337) (xy 55.561028 100.499336) (xy 55.360003 100.479538) + (xy 55.359997 100.479538) (xy 55.158971 100.499336) (xy 55.158966 100.499337) (xy 54.965658 100.557977) + (xy 54.965653 100.557979) (xy 54.787508 100.653199) (xy 54.631358 100.781348) (xy 54.631348 100.781358) + (xy 54.503199 100.937508) (xy 54.407979 101.115653) (xy 54.407977 101.115658) (xy 54.349337 101.308966) + (xy 54.349336 101.308971) (xy 54.329538 101.509996) (xy 50.0755 101.509996) (xy 50.0755 98.969996) + (xy 54.329538 98.969996) (xy 54.329538 98.970003) (xy 54.349336 99.171028) (xy 54.349337 99.171033) + (xy 54.407977 99.364341) (xy 54.407979 99.364346) (xy 54.503199 99.542491) (xy 54.631348 99.698641) + (xy 54.631353 99.698647) (xy 54.631358 99.698651) (xy 54.787508 99.8268) (xy 54.965653 99.92202) + (xy 54.965659 99.922023) (xy 55.100327 99.962873) (xy 55.158966 99.980662) (xy 55.158971 99.980663) + (xy 55.359997 100.000462) (xy 55.36 100.000462) (xy 55.360003 100.000462) (xy 55.561028 99.980663) + (xy 55.561033 99.980662) (xy 55.754341 99.922023) (xy 55.834925 99.878949) (xy 55.932491 99.8268) + (xy 55.932492 99.826798) (xy 55.932494 99.826798) (xy 56.088647 99.698647) (xy 56.216798 99.542494) + (xy 56.312023 99.364341) (xy 56.370662 99.171033) (xy 56.370663 99.171028) (xy 56.390462 98.970003) + (xy 56.390462 98.969996) (xy 59.409538 98.969996) (xy 59.409538 98.970003) (xy 59.429336 99.171028) + (xy 59.429337 99.171033) (xy 59.487977 99.364341) (xy 59.487979 99.364346) (xy 59.583199 99.542491) + (xy 59.711348 99.698641) (xy 59.711353 99.698647) (xy 59.711358 99.698651) (xy 59.867508 99.8268) + (xy 60.045653 99.92202) (xy 60.045659 99.922023) (xy 60.180327 99.962873) (xy 60.238966 99.980662) + (xy 60.238971 99.980663) (xy 60.439997 100.000462) (xy 60.44 100.000462) (xy 60.440003 100.000462) + (xy 60.641028 99.980663) (xy 60.641033 99.980662) (xy 60.834341 99.922023) (xy 60.914925 99.878949) + (xy 61.012491 99.8268) (xy 61.012492 99.826798) (xy 61.012494 99.826798) (xy 61.168647 99.698647) + (xy 61.296798 99.542494) (xy 61.392023 99.364341) (xy 61.450662 99.171033) (xy 61.450663 99.171028) + (xy 61.470462 98.970003) (xy 61.470462 98.969996) (xy 61.450663 98.768971) (xy 61.450662 98.768966) + (xy 61.432873 98.710327) (xy 61.392023 98.575659) (xy 61.39202 98.575653) (xy 61.2968 98.397508) + (xy 61.168651 98.241358) (xy 61.168647 98.241353) (xy 61.168641 98.241348) (xy 61.012491 98.113199) + (xy 60.834346 98.017979) (xy 60.834341 98.017977) (xy 60.641033 97.959337) (xy 60.641028 97.959336) + (xy 60.440003 97.939538) (xy 60.439997 97.939538) (xy 60.238971 97.959336) (xy 60.238966 97.959337) + (xy 60.045658 98.017977) (xy 60.045653 98.017979) (xy 59.867508 98.113199) (xy 59.711358 98.241348) + (xy 59.711348 98.241358) (xy 59.583199 98.397508) (xy 59.487979 98.575653) (xy 59.487977 98.575658) + (xy 59.429337 98.768966) (xy 59.429336 98.768971) (xy 59.409538 98.969996) (xy 56.390462 98.969996) + (xy 56.370663 98.768971) (xy 56.370662 98.768966) (xy 56.352873 98.710327) (xy 56.312023 98.575659) + (xy 56.31202 98.575653) (xy 56.2168 98.397508) (xy 56.088651 98.241358) (xy 56.088647 98.241353) + (xy 56.088641 98.241348) (xy 55.932491 98.113199) (xy 55.754346 98.017979) (xy 55.754341 98.017977) + (xy 55.561033 97.959337) (xy 55.561028 97.959336) (xy 55.360003 97.939538) (xy 55.359997 97.939538) + (xy 55.158971 97.959336) (xy 55.158966 97.959337) (xy 54.965658 98.017977) (xy 54.965653 98.017979) + (xy 54.787508 98.113199) (xy 54.631358 98.241348) (xy 54.631348 98.241358) (xy 54.503199 98.397508) + (xy 54.407979 98.575653) (xy 54.407977 98.575658) (xy 54.349337 98.768966) (xy 54.349336 98.768971) + (xy 54.329538 98.969996) (xy 50.0755 98.969996) (xy 50.0755 96.429996) (xy 54.329538 96.429996) + (xy 54.329538 96.430003) (xy 54.349336 96.631028) (xy 54.349337 96.631033) (xy 54.407977 96.824341) + (xy 54.407979 96.824346) (xy 54.503199 97.002491) (xy 54.631348 97.158641) (xy 54.631353 97.158647) + (xy 54.631358 97.158651) (xy 54.787508 97.2868) (xy 54.965653 97.38202) (xy 54.965659 97.382023) + (xy 55.100327 97.422873) (xy 55.158966 97.440662) (xy 55.158971 97.440663) (xy 55.359997 97.460462) + (xy 55.36 97.460462) (xy 55.360003 97.460462) (xy 55.561028 97.440663) (xy 55.561033 97.440662) + (xy 55.754341 97.382023) (xy 55.834925 97.338949) (xy 55.932491 97.2868) (xy 55.932492 97.286798) + (xy 55.932494 97.286798) (xy 56.088647 97.158647) (xy 56.216798 97.002494) (xy 56.312023 96.824341) + (xy 56.370662 96.631033) (xy 56.370663 96.631028) (xy 56.390462 96.430003) (xy 56.390462 96.429996) + (xy 59.409538 96.429996) (xy 59.409538 96.430003) (xy 59.429336 96.631028) (xy 59.429337 96.631033) + (xy 59.487977 96.824341) (xy 59.487979 96.824346) (xy 59.583199 97.002491) (xy 59.711348 97.158641) + (xy 59.711353 97.158647) (xy 59.711358 97.158651) (xy 59.867508 97.2868) (xy 60.045653 97.38202) + (xy 60.045659 97.382023) (xy 60.180327 97.422873) (xy 60.238966 97.440662) (xy 60.238971 97.440663) + (xy 60.439997 97.460462) (xy 60.44 97.460462) (xy 60.440003 97.460462) (xy 60.641028 97.440663) + (xy 60.641033 97.440662) (xy 60.834341 97.382023) (xy 60.914925 97.338949) (xy 61.012491 97.2868) + (xy 61.012492 97.286798) (xy 61.012494 97.286798) (xy 61.168647 97.158647) (xy 61.296798 97.002494) + (xy 61.392023 96.824341) (xy 61.450662 96.631033) (xy 61.450663 96.631028) (xy 61.470462 96.430003) + (xy 61.470462 96.429996) (xy 61.450663 96.228971) (xy 61.450662 96.228966) (xy 61.432873 96.170327) + (xy 61.392023 96.035659) (xy 61.39202 96.035653) (xy 61.2968 95.857508) (xy 61.168651 95.701358) + (xy 61.168647 95.701353) (xy 61.168641 95.701348) (xy 61.012491 95.573199) (xy 60.834346 95.477979) + (xy 60.834341 95.477977) (xy 60.641033 95.419337) (xy 60.641028 95.419336) (xy 60.440003 95.399538) + (xy 60.439997 95.399538) (xy 60.238971 95.419336) (xy 60.238966 95.419337) (xy 60.045658 95.477977) + (xy 60.045653 95.477979) (xy 59.867508 95.573199) (xy 59.711358 95.701348) (xy 59.711348 95.701358) + (xy 59.583199 95.857508) (xy 59.487979 96.035653) (xy 59.487977 96.035658) (xy 59.429337 96.228966) + (xy 59.429336 96.228971) (xy 59.409538 96.429996) (xy 56.390462 96.429996) (xy 56.370663 96.228971) + (xy 56.370662 96.228966) (xy 56.352873 96.170327) (xy 56.312023 96.035659) (xy 56.31202 96.035653) + (xy 56.2168 95.857508) (xy 56.088651 95.701358) (xy 56.088647 95.701353) (xy 56.088641 95.701348) + (xy 55.932491 95.573199) (xy 55.754346 95.477979) (xy 55.754341 95.477977) (xy 55.561033 95.419337) + (xy 55.561028 95.419336) (xy 55.360003 95.399538) (xy 55.359997 95.399538) (xy 55.158971 95.419336) + (xy 55.158966 95.419337) (xy 54.965658 95.477977) (xy 54.965653 95.477979) (xy 54.787508 95.573199) + (xy 54.631358 95.701348) (xy 54.631348 95.701358) (xy 54.503199 95.857508) (xy 54.407979 96.035653) + (xy 54.407977 96.035658) (xy 54.349337 96.228966) (xy 54.349336 96.228971) (xy 54.329538 96.429996) + (xy 50.0755 96.429996) (xy 50.0755 93.889996) (xy 54.329538 93.889996) (xy 54.329538 93.890003) + (xy 54.349336 94.091028) (xy 54.349337 94.091033) (xy 54.407977 94.284341) (xy 54.407979 94.284346) + (xy 54.503199 94.462491) (xy 54.631348 94.618641) (xy 54.631353 94.618647) (xy 54.631358 94.618651) + (xy 54.787508 94.7468) (xy 54.965653 94.84202) (xy 54.965659 94.842023) (xy 55.100327 94.882873) + (xy 55.158966 94.900662) (xy 55.158971 94.900663) (xy 55.359997 94.920462) (xy 55.36 94.920462) + (xy 55.360003 94.920462) (xy 55.561028 94.900663) (xy 55.561033 94.900662) (xy 55.754341 94.842023) + (xy 55.834925 94.798949) (xy 55.932491 94.7468) (xy 55.932492 94.746798) (xy 55.932494 94.746798) + (xy 56.088647 94.618647) (xy 56.216798 94.462494) (xy 56.312023 94.284341) (xy 56.370662 94.091033) + (xy 56.370663 94.091028) (xy 56.390462 93.890003) (xy 56.390462 93.889996) (xy 59.409538 93.889996) + (xy 59.409538 93.890003) (xy 59.429336 94.091028) (xy 59.429337 94.091033) (xy 59.487977 94.284341) + (xy 59.487979 94.284346) (xy 59.583199 94.462491) (xy 59.711348 94.618641) (xy 59.711353 94.618647) + (xy 59.711358 94.618651) (xy 59.867508 94.7468) (xy 60.045653 94.84202) (xy 60.045659 94.842023) + (xy 60.180327 94.882873) (xy 60.238966 94.900662) (xy 60.238971 94.900663) (xy 60.439997 94.920462) + (xy 60.44 94.920462) (xy 60.440003 94.920462) (xy 60.641028 94.900663) (xy 60.641033 94.900662) + (xy 60.834341 94.842023) (xy 60.914925 94.798949) (xy 61.012491 94.7468) (xy 61.012492 94.746798) + (xy 61.012494 94.746798) (xy 61.168647 94.618647) (xy 61.296798 94.462494) (xy 61.392023 94.284341) + (xy 61.450662 94.091033) (xy 61.450663 94.091028) (xy 61.470462 93.890003) (xy 61.470462 93.889996) + (xy 61.450663 93.688971) (xy 61.450662 93.688966) (xy 61.432873 93.630327) (xy 61.392023 93.495659) + (xy 61.39202 93.495653) (xy 61.2968 93.317508) (xy 61.168651 93.161358) (xy 61.168647 93.161353) + (xy 61.168641 93.161348) (xy 61.012491 93.033199) (xy 60.834346 92.937979) (xy 60.834341 92.937977) + (xy 60.641033 92.879337) (xy 60.641028 92.879336) (xy 60.440003 92.859538) (xy 60.439997 92.859538) + (xy 60.238971 92.879336) (xy 60.238966 92.879337) (xy 60.045658 92.937977) (xy 60.045653 92.937979) + (xy 59.867508 93.033199) (xy 59.711358 93.161348) (xy 59.711348 93.161358) (xy 59.583199 93.317508) + (xy 59.487979 93.495653) (xy 59.487977 93.495658) (xy 59.429337 93.688966) (xy 59.429336 93.688971) + (xy 59.409538 93.889996) (xy 56.390462 93.889996) (xy 56.370663 93.688971) (xy 56.370662 93.688966) + (xy 56.352873 93.630327) (xy 56.312023 93.495659) (xy 56.31202 93.495653) (xy 56.2168 93.317508) + (xy 56.088651 93.161358) (xy 56.088647 93.161353) (xy 56.088641 93.161348) (xy 55.932491 93.033199) + (xy 55.754346 92.937979) (xy 55.754341 92.937977) (xy 55.561033 92.879337) (xy 55.561028 92.879336) + (xy 55.360003 92.859538) (xy 55.359997 92.859538) (xy 55.158971 92.879336) (xy 55.158966 92.879337) + (xy 54.965658 92.937977) (xy 54.965653 92.937979) (xy 54.787508 93.033199) (xy 54.631358 93.161348) + (xy 54.631348 93.161358) (xy 54.503199 93.317508) (xy 54.407979 93.495653) (xy 54.407977 93.495658) + (xy 54.349337 93.688966) (xy 54.349336 93.688971) (xy 54.329538 93.889996) (xy 50.0755 93.889996) + (xy 50.0755 91.349996) (xy 54.329538 91.349996) (xy 54.329538 91.350003) (xy 54.349336 91.551028) + (xy 54.349337 91.551033) (xy 54.407977 91.744341) (xy 54.407979 91.744346) (xy 54.503199 91.922491) + (xy 54.631348 92.078641) (xy 54.631353 92.078647) (xy 54.631358 92.078651) (xy 54.787508 92.2068) + (xy 54.965653 92.30202) (xy 54.965659 92.302023) (xy 55.100327 92.342873) (xy 55.158966 92.360662) + (xy 55.158971 92.360663) (xy 55.359997 92.380462) (xy 55.36 92.380462) (xy 55.360003 92.380462) + (xy 55.561028 92.360663) (xy 55.561033 92.360662) (xy 55.754341 92.302023) (xy 55.834925 92.258949) + (xy 55.932491 92.2068) (xy 55.932492 92.206798) (xy 55.932494 92.206798) (xy 56.088647 92.078647) + (xy 56.216798 91.922494) (xy 56.312023 91.744341) (xy 56.370662 91.551033) (xy 56.370663 91.551028) + (xy 56.390462 91.350003) (xy 56.390462 91.349996) (xy 59.409538 91.349996) (xy 59.409538 91.350003) + (xy 59.429336 91.551028) (xy 59.429337 91.551033) (xy 59.487977 91.744341) (xy 59.487979 91.744346) + (xy 59.583199 91.922491) (xy 59.711348 92.078641) (xy 59.711353 92.078647) (xy 59.711358 92.078651) + (xy 59.867508 92.2068) (xy 60.045653 92.30202) (xy 60.045659 92.302023) (xy 60.180327 92.342873) + (xy 60.238966 92.360662) (xy 60.238971 92.360663) (xy 60.439997 92.380462) (xy 60.44 92.380462) + (xy 60.440003 92.380462) (xy 60.641028 92.360663) (xy 60.641033 92.360662) (xy 60.834341 92.302023) + (xy 60.914925 92.258949) (xy 61.012491 92.2068) (xy 61.012492 92.206798) (xy 61.012494 92.206798) + (xy 61.168647 92.078647) (xy 61.296798 91.922494) (xy 61.392023 91.744341) (xy 61.450662 91.551033) + (xy 61.450663 91.551028) (xy 61.470462 91.350003) (xy 61.470462 91.349996) (xy 61.450663 91.148971) + (xy 61.450662 91.148966) (xy 61.432873 91.090327) (xy 61.392023 90.955659) (xy 61.39202 90.955653) + (xy 61.2968 90.777508) (xy 61.168651 90.621358) (xy 61.168647 90.621353) (xy 61.168641 90.621348) + (xy 61.012491 90.493199) (xy 60.834346 90.397979) (xy 60.834341 90.397977) (xy 60.641033 90.339337) + (xy 60.641028 90.339336) (xy 60.440003 90.319538) (xy 60.439997 90.319538) (xy 60.238971 90.339336) + (xy 60.238966 90.339337) (xy 60.045658 90.397977) (xy 60.045653 90.397979) (xy 59.867508 90.493199) + (xy 59.711358 90.621348) (xy 59.711348 90.621358) (xy 59.583199 90.777508) (xy 59.487979 90.955653) + (xy 59.487977 90.955658) (xy 59.429337 91.148966) (xy 59.429336 91.148971) (xy 59.409538 91.349996) + (xy 56.390462 91.349996) (xy 56.370663 91.148971) (xy 56.370662 91.148966) (xy 56.352873 91.090327) + (xy 56.312023 90.955659) (xy 56.31202 90.955653) (xy 56.2168 90.777508) (xy 56.088651 90.621358) + (xy 56.088647 90.621353) (xy 56.088641 90.621348) (xy 55.932491 90.493199) (xy 55.754346 90.397979) + (xy 55.754341 90.397977) (xy 55.561033 90.339337) (xy 55.561028 90.339336) (xy 55.360003 90.319538) + (xy 55.359997 90.319538) (xy 55.158971 90.339336) (xy 55.158966 90.339337) (xy 54.965658 90.397977) + (xy 54.965653 90.397979) (xy 54.787508 90.493199) (xy 54.631358 90.621348) (xy 54.631348 90.621358) + (xy 54.503199 90.777508) (xy 54.407979 90.955653) (xy 54.407977 90.955658) (xy 54.349337 91.148966) + (xy 54.349336 91.148971) (xy 54.329538 91.349996) (xy 50.0755 91.349996) (xy 50.0755 80.963636) + (xy 52.391959 80.963636) (xy 52.391959 81.036361) (xy 52.393492 81.047021) (xy 52.3945 81.061114) + (xy 52.3945 81.438885) (xy 52.393492 81.452977) (xy 52.391959 81.463637) (xy 52.391959 81.536361) + (xy 52.393492 81.547024) (xy 52.3945 81.561113) (xy 52.3945 82) (xy 52.413949 82.097776) (xy 52.469334 82.180666) + (xy 52.552224 82.236051) (xy 52.65 82.2555) (xy 52.650001 82.2555) (xy 53.221894 82.2555) (xy 53.272974 82.248155) + (xy 53.293871 82.245151) (xy 53.431826 82.204644) (xy 53.497977 82.174434) (xy 53.618931 82.096702) + (xy 53.673893 82.049077) (xy 53.700035 82.018907) (xy 53.729703 81.984669) (xy 53.782099 81.953073) + (xy 53.804522 81.9505) (xy 53.901 81.9505) (xy 53.959191 81.969407) (xy 53.995155 82.018907) (xy 54 82.0495) + (xy 54 82.8805) (xy 53.981093 82.938691) (xy 53.931593 82.974655) (xy 53.901 82.9795) (xy 53.743478 82.9795) + (xy 53.685287 82.960593) (xy 53.676612 82.953184) (xy 53.676566 82.953238) (xy 53.618935 82.903301) + (xy 53.618923 82.903292) (xy 53.497986 82.825571) (xy 53.497979 82.825567) (xy 53.484335 82.819336) + (xy 53.431826 82.795356) (xy 53.431821 82.795354) (xy 53.43182 82.795354) (xy 53.293878 82.754851) + (xy 53.293876 82.75485) (xy 53.293871 82.754849) (xy 53.293868 82.754848) (xy 53.293862 82.754847) + (xy 53.221894 82.7445) (xy 53.221889 82.7445) (xy 52.65 82.7445) (xy 52.649999 82.7445) (xy 52.62572 82.749329) + (xy 52.552224 82.763949) (xy 52.552222 82.763949) (xy 52.552222 82.76395) (xy 52.55222 82.763951) + (xy 52.469336 82.819332) (xy 52.469332 82.819336) (xy 52.413951 82.90222) (xy 52.41395 82.902222) + (xy 52.413949 82.902224) (xy 52.403802 82.953238) (xy 52.3945 82.999999) (xy 52.3945 83.438884) + (xy 52.393492 83.452976) (xy 52.391959 83.463636) (xy 52.391959 83.536361) (xy 52.393492 83.547021) + (xy 52.3945 83.561114) (xy 52.3945 83.938885) (xy 52.393492 83.952977) (xy 52.391959 83.963637) + (xy 52.391959 84.036361) (xy 52.393492 84.047024) (xy 52.3945 84.061113) (xy 52.3945 84.5) (xy 52.413949 84.597776) + (xy 52.469334 84.680666) (xy 52.552224 84.736051) (xy 52.65 84.7555) (xy 52.650001 84.7555) (xy 53.221894 84.7555) + (xy 53.272974 84.748155) (xy 53.293871 84.745151) (xy 53.431826 84.704644) (xy 53.497977 84.674434) + (xy 53.618931 84.596702) (xy 53.673893 84.549077) (xy 53.703706 84.514669) (xy 53.756101 84.483073) + (xy 53.778526 84.4805) (xy 53.901 84.4805) (xy 53.959191 84.499407) (xy 53.995155 84.548907) (xy 54 84.5795) + (xy 54 85.4205) (xy 53.981093 85.478691) (xy 53.931593 85.514655) (xy 53.901 85.5195) (xy 53.778526 85.5195) + (xy 53.720335 85.500593) (xy 53.703706 85.48533) (xy 53.697953 85.478691) (xy 53.673893 85.450923) + (xy 53.618931 85.403298) (xy 53.618928 85.403295) (xy 53.618923 85.403292) (xy 53.497986 85.325571) + (xy 53.497979 85.325567) (xy 53.484335 85.319336) (xy 53.431826 85.295356) (xy 53.431821 85.295354) + (xy 53.43182 85.295354) (xy 53.293878 85.254851) (xy 53.293876 85.25485) (xy 53.293871 85.254849) + (xy 53.293868 85.254848) (xy 53.293862 85.254847) (xy 53.221894 85.2445) (xy 53.221889 85.2445) + (xy 52.65 85.2445) (xy 52.649999 85.2445) (xy 52.62572 85.249329) (xy 52.552224 85.263949) (xy 52.552222 85.263949) + (xy 52.552222 85.26395) (xy 52.55222 85.263951) (xy 52.469336 85.319332) (xy 52.469332 85.319336) + (xy 52.413951 85.40222) (xy 52.41395 85.402222) (xy 52.413949 85.402224) (xy 52.404262 85.450923) + (xy 52.3945 85.499999) (xy 52.3945 85.938884) (xy 52.393492 85.952976) (xy 52.391959 85.963636) + (xy 52.391959 86.036361) (xy 52.393492 86.047021) (xy 52.3945 86.061114) (xy 52.3945 86.438885) + (xy 52.393492 86.452977) (xy 52.391959 86.463637) (xy 52.391959 86.536361) (xy 52.393492 86.547024) + (xy 52.3945 86.561113) (xy 52.3945 87) (xy 52.413949 87.097776) (xy 52.469334 87.180666) (xy 52.552224 87.236051) + (xy 52.65 87.2555) (xy 52.650001 87.2555) (xy 53.221894 87.2555) (xy 53.272974 87.248155) (xy 53.293871 87.245151) + (xy 53.431826 87.204644) (xy 53.497977 87.174434) (xy 53.618931 87.096702) (xy 53.659777 87.061309) + (xy 53.676566 87.046762) (xy 53.677262 87.047565) (xy 53.727991 87.021719) (xy 53.743478 87.0205) + (xy 53.901 87.0205) (xy 53.959191 87.039407) (xy 53.995155 87.088907) (xy 54 87.1195) (xy 54 87.9605) + (xy 53.981093 88.018691) (xy 53.931593 88.054655) (xy 53.901 88.0595) (xy 53.769862 88.0595) (xy 53.711671 88.040593) + (xy 53.695043 88.025331) (xy 53.673898 88.000929) (xy 53.673893 88.000923) (xy 53.673885 88.000916) + (xy 53.67388 88.000911) (xy 53.618935 87.953301) (xy 53.618923 87.953292) (xy 53.497986 87.875571) + (xy 53.497979 87.875567) (xy 53.484335 87.869336) (xy 53.431826 87.845356) (xy 53.431821 87.845354) + (xy 53.43182 87.845354) (xy 53.293878 87.804851) (xy 53.293876 87.80485) (xy 53.293871 87.804849) + (xy 53.293868 87.804848) (xy 53.293862 87.804847) (xy 53.221894 87.7945) (xy 53.221889 87.7945) + (xy 52.65 87.7945) (xy 52.649999 87.7945) (xy 52.62572 87.799329) (xy 52.552224 87.813949) (xy 52.552222 87.813949) + (xy 52.552222 87.81395) (xy 52.55222 87.813951) (xy 52.469336 87.869332) (xy 52.469332 87.869336) + (xy 52.413951 87.95222) (xy 52.41395 87.952222) (xy 52.413949 87.952224) (xy 52.404262 88.000923) + (xy 52.3945 88.049999) (xy 52.3945 88.488884) (xy 52.393492 88.502976) (xy 52.391959 88.513636) + (xy 52.391959 88.586361) (xy 52.393492 88.597021) (xy 52.3945 88.611114) (xy 52.3945 88.988885) + (xy 52.393492 89.002977) (xy 52.391959 89.013637) (xy 52.391959 89.086361) (xy 52.393492 89.097024) + (xy 52.3945 89.111113) (xy 52.3945 89.55) (xy 52.413949 89.647776) (xy 52.469334 89.730666) (xy 52.552224 89.786051) + (xy 52.65 89.8055) (xy 52.650001 89.8055) (xy 53.221894 89.8055) (xy 53.272974 89.798155) (xy 53.293871 89.795151) + (xy 53.431826 89.754644) (xy 53.497977 89.724434) (xy 53.618931 89.646702) (xy 53.673893 89.599077) + (xy 53.676222 89.596388) (xy 53.677714 89.594668) (xy 53.73011 89.563073) (xy 53.752532 89.5605) + (xy 53.901 89.5605) (xy 53.959191 89.579407) (xy 53.995155 89.628907) (xy 54 89.6595) (xy 54 90.1) + (xy 54.000001 90.1) (xy 56.599999 90.1) (xy 56.6 90.1) (xy 59.1 90.1) (xy 59.100001 90.1) (xy 61.699999 90.1) + (xy 61.7 90.1) (xy 61.7 89.6595) (xy 61.718907 89.601309) (xy 61.768407 89.565345) (xy 61.799 89.5605) + (xy 62.302364 89.5605) (xy 62.360555 89.579407) (xy 62.367194 89.584679) (xy 62.381069 89.596702) + (xy 62.381071 89.596703) (xy 62.381072 89.596704) (xy 62.381076 89.596707) (xy 62.502013 89.674428) + (xy 62.502018 89.674431) (xy 62.502023 89.674434) (xy 62.568174 89.704644) (xy 62.706129 89.745151) + (xy 62.718573 89.74694) (xy 62.778106 89.7555) (xy 62.778111 89.7555) (xy 63.349999 89.7555) (xy 63.35 89.7555) + (xy 63.447776 89.736051) (xy 63.530666 89.680666) (xy 63.586051 89.597776) (xy 63.6055 89.5) (xy 63.6055 89.061113) + (xy 63.606508 89.047024) (xy 63.608041 89.036361) (xy 63.608041 88.963637) (xy 63.606508 88.952977) + (xy 63.6055 88.938885) (xy 63.6055 88.561114) (xy 63.606508 88.547021) (xy 63.608041 88.536361) + (xy 63.608041 88.463636) (xy 63.606508 88.452976) (xy 63.6055 88.438884) (xy 63.6055 88.000001) + (xy 63.6055 88) (xy 63.586051 87.902224) (xy 63.530666 87.819334) (xy 63.447776 87.763949) (xy 63.35 87.7445) + (xy 62.778111 87.7445) (xy 62.778106 87.7445) (xy 62.706137 87.754847) (xy 62.706121 87.754851) + (xy 62.568179 87.795354) (xy 62.568175 87.795355) (xy 62.568174 87.795356) (xy 62.547392 87.804847) + (xy 62.50202 87.825567) (xy 62.502013 87.825571) (xy 62.381076 87.903292) (xy 62.381064 87.903301) + (xy 62.326119 87.950911) (xy 62.326101 87.950928) (xy 62.261632 88.025331) (xy 62.209236 88.056927) + (xy 62.186813 88.0595) (xy 61.799 88.0595) (xy 61.740809 88.040593) (xy 61.704845 87.991093) (xy 61.7 87.9605) + (xy 61.7 87.1195) (xy 61.718907 87.061309) (xy 61.768407 87.025345) (xy 61.799 87.0205) (xy 62.256522 87.0205) + (xy 62.314713 87.039407) (xy 62.323387 87.046815) (xy 62.323434 87.046762) (xy 62.381064 87.096698) + (xy 62.381076 87.096707) (xy 62.502013 87.174428) (xy 62.502018 87.174431) (xy 62.502023 87.174434) + (xy 62.568174 87.204644) (xy 62.706129 87.245151) (xy 62.718573 87.24694) (xy 62.778106 87.2555) + (xy 62.778111 87.2555) (xy 63.349999 87.2555) (xy 63.35 87.2555) (xy 63.447776 87.236051) (xy 63.530666 87.180666) + (xy 63.586051 87.097776) (xy 63.6055 87) (xy 63.6055 86.561113) (xy 63.606508 86.547024) (xy 63.608041 86.536361) + (xy 63.608041 86.463637) (xy 63.606508 86.452977) (xy 63.6055 86.438885) (xy 63.6055 86.061114) + (xy 63.606508 86.047021) (xy 63.608041 86.036361) (xy 63.608041 85.963636) (xy 63.606508 85.952976) + (xy 63.6055 85.938884) (xy 63.6055 85.500001) (xy 63.6055 85.5) (xy 63.586051 85.402224) (xy 63.530666 85.319334) + (xy 63.447776 85.263949) (xy 63.35 85.2445) (xy 62.778111 85.2445) (xy 62.778106 85.2445) (xy 62.706137 85.254847) + (xy 62.706121 85.254851) (xy 62.568179 85.295354) (xy 62.568175 85.295355) (xy 62.568174 85.295356) + (xy 62.539485 85.308457) (xy 62.50202 85.325567) (xy 62.502013 85.325571) (xy 62.381076 85.403292) + (xy 62.381071 85.403295) (xy 62.326109 85.450921) (xy 62.326099 85.450931) (xy 62.296294 85.48533) + (xy 62.243899 85.516927) (xy 62.221474 85.5195) (xy 61.799 85.5195) (xy 61.740809 85.500593) (xy 61.704845 85.451093) + (xy 61.7 85.4205) (xy 61.7 84.5795) (xy 61.718907 84.521309) (xy 61.768407 84.485345) (xy 61.799 84.4805) + (xy 62.221474 84.4805) (xy 62.279665 84.499407) (xy 62.296293 84.514669) (xy 62.310292 84.530826) + (xy 62.325959 84.548907) (xy 62.326107 84.549077) (xy 62.361217 84.5795) (xy 62.381071 84.596704) + (xy 62.381076 84.596707) (xy 62.502013 84.674428) (xy 62.502018 84.674431) (xy 62.502023 84.674434) + (xy 62.568174 84.704644) (xy 62.706129 84.745151) (xy 62.718573 84.74694) (xy 62.778106 84.7555) + (xy 62.778111 84.7555) (xy 63.349999 84.7555) (xy 63.35 84.7555) (xy 63.447776 84.736051) (xy 63.530666 84.680666) + (xy 63.586051 84.597776) (xy 63.6055 84.5) (xy 63.6055 84.061113) (xy 63.606508 84.047024) (xy 63.608041 84.036361) + (xy 63.608041 83.963637) (xy 63.606508 83.952977) (xy 63.6055 83.938885) (xy 63.6055 83.561114) + (xy 63.606508 83.547021) (xy 63.608041 83.536361) (xy 63.608041 83.463636) (xy 63.606508 83.452976) + (xy 63.6055 83.438884) (xy 63.6055 83.000001) (xy 63.6055 83) (xy 63.586051 82.902224) (xy 63.530666 82.819334) + (xy 63.447776 82.763949) (xy 63.35 82.7445) (xy 62.778111 82.7445) (xy 62.778106 82.7445) (xy 62.706137 82.754847) + (xy 62.706121 82.754851) (xy 62.568179 82.795354) (xy 62.568175 82.795355) (xy 62.568174 82.795356) + (xy 62.539485 82.808457) (xy 62.50202 82.825567) (xy 62.502013 82.825571) (xy 62.381076 82.903292) + (xy 62.381064 82.903301) (xy 62.323434 82.953238) (xy 62.322737 82.952434) (xy 62.272009 82.978281) + (xy 62.256522 82.9795) (xy 61.799 82.9795) (xy 61.740809 82.960593) (xy 61.704845 82.911093) (xy 61.7 82.8805) + (xy 61.7 82.0395) (xy 61.718907 81.981309) (xy 61.768407 81.945345) (xy 61.799 81.9405) (xy 62.186813 81.9405) + (xy 62.245004 81.959407) (xy 62.261632 81.974669) (xy 62.326101 82.049071) (xy 62.326119 82.049088) + (xy 62.381064 82.096698) (xy 62.381076 82.096707) (xy 62.502013 82.174428) (xy 62.502018 82.174431) + (xy 62.502023 82.174434) (xy 62.568174 82.204644) (xy 62.706129 82.245151) (xy 62.718573 82.24694) + (xy 62.778106 82.2555) (xy 62.778111 82.2555) (xy 63.349999 82.2555) (xy 63.35 82.2555) (xy 63.447776 82.236051) + (xy 63.530666 82.180666) (xy 63.586051 82.097776) (xy 63.6055 82) (xy 63.6055 81.561113) (xy 63.606508 81.547024) + (xy 63.608041 81.536361) (xy 63.608041 81.463637) (xy 63.606508 81.452977) (xy 63.6055 81.438885) + (xy 63.6055 81.061114) (xy 63.606508 81.047021) (xy 63.608041 81.036361) (xy 63.608041 80.963636) + (xy 63.606508 80.952976) (xy 63.6055 80.938884) (xy 63.6055 80.500001) (xy 63.6055 80.5) (xy 63.586051 80.402224) + (xy 63.530666 80.319334) (xy 63.447776 80.263949) (xy 63.35 80.2445) (xy 62.778111 80.2445) (xy 62.778106 80.2445) + (xy 62.706137 80.254847) (xy 62.706121 80.254851) (xy 62.568179 80.295354) (xy 62.568175 80.295355) + (xy 62.568174 80.295356) (xy 62.539485 80.308457) (xy 62.50202 80.325567) (xy 62.502013 80.325571) + (xy 62.381076 80.403292) (xy 62.381072 80.403295) (xy 62.367195 80.41532) (xy 62.310835 80.439137) + (xy 62.302364 80.4395) (xy 61.799 80.4395) (xy 61.740809 80.420593) (xy 61.704845 80.371093) (xy 61.7 80.3405) + (xy 61.7 79.900001) (xy 61.7 79.9) (xy 59.1 79.9) (xy 59.1 90.1) (xy 56.6 90.1) (xy 56.6 80) (xy 54 80) + (xy 54 80.000001) (xy 54 80.3505) (xy 53.981093 80.408691) (xy 53.931593 80.444655) (xy 53.901 80.4495) + (xy 53.709176 80.4495) (xy 53.650985 80.430593) (xy 53.644351 80.425324) (xy 53.618931 80.403298) + (xy 53.618928 80.403295) (xy 53.618923 80.403292) (xy 53.497986 80.325571) (xy 53.497979 80.325567) + (xy 53.484335 80.319336) (xy 53.431826 80.295356) (xy 53.431821 80.295354) (xy 53.43182 80.295354) + (xy 53.293878 80.254851) (xy 53.293876 80.25485) (xy 53.293871 80.254849) (xy 53.293868 80.254848) + (xy 53.293862 80.254847) (xy 53.221894 80.2445) (xy 53.221889 80.2445) (xy 52.65 80.2445) (xy 52.649999 80.2445) + (xy 52.62572 80.249329) (xy 52.552224 80.263949) (xy 52.552222 80.263949) (xy 52.552222 80.26395) + (xy 52.55222 80.263951) (xy 52.469336 80.319332) (xy 52.469332 80.319336) (xy 52.413951 80.40222) + (xy 52.41395 80.402222) (xy 52.413949 80.402224) (xy 52.405509 80.444655) (xy 52.3945 80.499999) + (xy 52.3945 80.938884) (xy 52.393492 80.952976) (xy 52.391959 80.963636) (xy 50.0755 80.963636) + (xy 50.0755 78.649996) (xy 54.329538 78.649996) (xy 54.329538 78.650003) (xy 54.349336 78.851028) + (xy 54.349337 78.851033) (xy 54.407977 79.044341) (xy 54.407979 79.044346) (xy 54.503199 79.222491) + (xy 54.631348 79.378641) (xy 54.631353 79.378647) (xy 54.631358 79.378651) (xy 54.787508 79.5068) + (xy 54.965653 79.60202) (xy 54.965659 79.602023) (xy 55.100327 79.642873) (xy 55.158966 79.660662) + (xy 55.158971 79.660663) (xy 55.359997 79.680462) (xy 55.36 79.680462) (xy 55.360003 79.680462) + (xy 55.561028 79.660663) (xy 55.561033 79.660662) (xy 55.754341 79.602023) (xy 55.834925 79.558949) + (xy 55.932491 79.5068) (xy 55.932492 79.506798) (xy 55.932494 79.506798) (xy 56.088647 79.378647) + (xy 56.216798 79.222494) (xy 56.312023 79.044341) (xy 56.370662 78.851033) (xy 56.370663 78.851028) + (xy 56.390462 78.650003) (xy 56.390462 78.649996) (xy 59.409538 78.649996) (xy 59.409538 78.650003) + (xy 59.429336 78.851028) (xy 59.429337 78.851033) (xy 59.487977 79.044341) (xy 59.487979 79.044346) + (xy 59.583199 79.222491) (xy 59.711348 79.378641) (xy 59.711353 79.378647) (xy 59.711358 79.378651) + (xy 59.867508 79.5068) (xy 60.045653 79.60202) (xy 60.045659 79.602023) (xy 60.180327 79.642873) + (xy 60.238966 79.660662) (xy 60.238971 79.660663) (xy 60.439997 79.680462) (xy 60.44 79.680462) + (xy 60.440003 79.680462) (xy 60.641028 79.660663) (xy 60.641033 79.660662) (xy 60.834341 79.602023) + (xy 60.914925 79.558949) (xy 61.012491 79.5068) (xy 61.012492 79.506798) (xy 61.012494 79.506798) + (xy 61.168647 79.378647) (xy 61.296798 79.222494) (xy 61.392023 79.044341) (xy 61.450662 78.851033) + (xy 61.450663 78.851028) (xy 61.470462 78.650003) (xy 61.470462 78.649996) (xy 61.450663 78.448971) + (xy 61.450662 78.448966) (xy 61.432873 78.390327) (xy 61.392023 78.255659) (xy 61.39202 78.255653) + (xy 61.2968 78.077508) (xy 61.168651 77.921358) (xy 61.168647 77.921353) (xy 61.168641 77.921348) + (xy 61.012491 77.793199) (xy 60.834346 77.697979) (xy 60.834341 77.697977) (xy 60.641033 77.639337) + (xy 60.641028 77.639336) (xy 60.440003 77.619538) (xy 60.439997 77.619538) (xy 60.238971 77.639336) + (xy 60.238966 77.639337) (xy 60.045658 77.697977) (xy 60.045653 77.697979) (xy 59.867508 77.793199) + (xy 59.711358 77.921348) (xy 59.711348 77.921358) (xy 59.583199 78.077508) (xy 59.487979 78.255653) + (xy 59.487977 78.255658) (xy 59.429337 78.448966) (xy 59.429336 78.448971) (xy 59.409538 78.649996) + (xy 56.390462 78.649996) (xy 56.370663 78.448971) (xy 56.370662 78.448966) (xy 56.352873 78.390327) + (xy 56.312023 78.255659) (xy 56.31202 78.255653) (xy 56.2168 78.077508) (xy 56.088651 77.921358) + (xy 56.088647 77.921353) (xy 56.088641 77.921348) (xy 55.932491 77.793199) (xy 55.754346 77.697979) + (xy 55.754341 77.697977) (xy 55.561033 77.639337) (xy 55.561028 77.639336) (xy 55.360003 77.619538) + (xy 55.359997 77.619538) (xy 55.158971 77.639336) (xy 55.158966 77.639337) (xy 54.965658 77.697977) + (xy 54.965653 77.697979) (xy 54.787508 77.793199) (xy 54.631358 77.921348) (xy 54.631348 77.921358) + (xy 54.503199 78.077508) (xy 54.407979 78.255653) (xy 54.407977 78.255658) (xy 54.349337 78.448966) + (xy 54.349336 78.448971) (xy 54.329538 78.649996) (xy 50.0755 78.649996) (xy 50.0755 77.511198) + (xy 88.798011 77.511198) (xy 88.858595 77.55362) (xy 88.858605 77.553625) (xy 89.058091 77.646647) + (xy 89.05809 77.646647) (xy 89.270723 77.703621) (xy 89.489997 77.722805) (xy 89.490003 77.722805) + (xy 89.709276 77.703621) (xy 89.921909 77.646647) (xy 90.121394 77.553625) (xy 90.121406 77.553619) + (xy 90.181988 77.511198) (xy 89.49 76.81921) (xy 88.798011 77.511198) (xy 50.0755 77.511198) (xy 50.0755 76.109996) + (xy 54.329538 76.109996) (xy 54.329538 76.110003) (xy 54.349336 76.311028) (xy 54.349337 76.311033) + (xy 54.407977 76.504341) (xy 54.407979 76.504346) (xy 54.503199 76.682491) (xy 54.631348 76.838641) + (xy 54.631353 76.838647) (xy 54.631358 76.838651) (xy 54.787508 76.9668) (xy 54.965653 77.06202) + (xy 54.965659 77.062023) (xy 55.100327 77.102873) (xy 55.158966 77.120662) (xy 55.158971 77.120663) + (xy 55.359997 77.140462) (xy 55.36 77.140462) (xy 55.360003 77.140462) (xy 55.561028 77.120663) + (xy 55.561033 77.120662) (xy 55.754341 77.062023) (xy 55.834925 77.018949) (xy 55.932491 76.9668) + (xy 55.932492 76.966798) (xy 55.932494 76.966798) (xy 56.088647 76.838647) (xy 56.216798 76.682494) + (xy 56.220855 76.674905) (xy 56.268949 76.584925) (xy 56.312023 76.504341) (xy 56.370662 76.311033) + (xy 56.370663 76.311028) (xy 56.390462 76.110003) (xy 56.390462 76.109996) (xy 59.409538 76.109996) + (xy 59.409538 76.110003) (xy 59.429336 76.311028) (xy 59.429337 76.311033) (xy 59.487977 76.504341) + (xy 59.487979 76.504346) (xy 59.583199 76.682491) (xy 59.711348 76.838641) (xy 59.711353 76.838647) + (xy 59.711358 76.838651) (xy 59.867508 76.9668) (xy 60.045653 77.06202) (xy 60.045659 77.062023) + (xy 60.180327 77.102873) (xy 60.238966 77.120662) (xy 60.238971 77.120663) (xy 60.439997 77.140462) + (xy 60.44 77.140462) (xy 60.440003 77.140462) (xy 60.641028 77.120663) (xy 60.641033 77.120662) + (xy 60.834341 77.062023) (xy 60.914925 77.018949) (xy 61.012491 76.9668) (xy 61.012492 76.966798) + (xy 61.012494 76.966798) (xy 61.168647 76.838647) (xy 61.296798 76.682494) (xy 61.300855 76.674905) + (xy 61.348949 76.584925) (xy 61.392023 76.504341) (xy 61.393341 76.499996) (xy 79.894659 76.499996) + (xy 79.894659 76.500003) (xy 79.913974 76.696126) (xy 79.913975 76.696129) (xy 79.971187 76.88473) + (xy 79.971188 76.884732) (xy 80.015054 76.966798) (xy 80.06409 77.058538) (xy 80.064092 77.05854) + (xy 80.064093 77.058542) (xy 80.189112 77.210878) (xy 80.189121 77.210887) (xy 80.341457 77.335906) + (xy 80.341462 77.33591) (xy 80.515273 77.428814) (xy 80.703868 77.486024) (xy 80.70387 77.486024) + (xy 80.703873 77.486025) (xy 80.899997 77.505341) (xy 80.9 77.505341) (xy 80.900003 77.505341) (xy 81.096126 77.486025) + (xy 81.096127 77.486024) (xy 81.096132 77.486024) (xy 81.284727 77.428814) (xy 81.458538 77.33591) + (xy 81.610883 77.210883) (xy 81.73591 77.058538) (xy 81.828814 76.884727) (xy 81.886024 76.696132) + (xy 81.887368 76.682494) (xy 81.905341 76.500003) (xy 81.905341 76.499996) (xy 81.901401 76.459996) + (xy 88.227195 76.459996) (xy 88.227195 76.460003) (xy 88.246378 76.679276) (xy 88.303352 76.891909) + (xy 88.396373 77.091392) (xy 88.396377 77.0914) (xy 88.4388 77.151987) (xy 89.130788 76.459999) + (xy 89.084711 76.413922) (xy 89.14 76.413922) (xy 89.14 76.506078) (xy 89.163852 76.595095) (xy 89.20993 76.674905) + (xy 89.275095 76.74007) (xy 89.354905 76.786148) (xy 89.443922 76.81) (xy 89.536078 76.81) (xy 89.625095 76.786148) + (xy 89.704905 76.74007) (xy 89.77007 76.674905) (xy 89.816148 76.595095) (xy 89.84 76.506078) (xy 89.84 76.46) + (xy 89.84921 76.46) (xy 90.541198 77.151988) (xy 90.583619 77.091406) (xy 90.583625 77.091394) (xy 90.676647 76.891909) + (xy 90.733621 76.679276) (xy 90.752805 76.460003) (xy 90.752805 76.459996) (xy 90.733621 76.240723) + (xy 90.676647 76.02809) (xy 90.583626 75.828608) (xy 90.583623 75.828602) (xy 90.541198 75.768011) + (xy 89.84921 76.46) (xy 89.84 76.46) (xy 89.84 76.413922) (xy 89.816148 76.324905) (xy 89.77007 76.245095) + (xy 89.704905 76.17993) (xy 89.625095 76.133852) (xy 89.536078 76.11) (xy 89.443922 76.11) (xy 89.354905 76.133852) + (xy 89.275095 76.17993) (xy 89.20993 76.245095) (xy 89.163852 76.324905) (xy 89.14 76.413922) (xy 89.084711 76.413922) + (xy 88.4388 75.768011) (xy 88.396378 75.828599) (xy 88.396373 75.828608) (xy 88.303352 76.02809) + (xy 88.246378 76.240723) (xy 88.227195 76.459996) (xy 81.901401 76.459996) (xy 81.886025 76.303873) + (xy 81.886024 76.30387) (xy 81.886024 76.303868) (xy 81.828814 76.115273) (xy 81.825993 76.109996) + (xy 81.806942 76.074353) (xy 81.73591 75.941462) (xy 81.643288 75.828602) (xy 81.610887 75.789121) + (xy 81.610878 75.789112) (xy 81.458542 75.664093) (xy 81.45854 75.664092) (xy 81.458538 75.66409) + (xy 81.417618 75.642218) (xy 81.284732 75.571188) (xy 81.28473 75.571187) (xy 81.096129 75.513975) + (xy 81.096126 75.513974) (xy 80.900003 75.494659) (xy 80.899997 75.494659) (xy 80.703873 75.513974) + (xy 80.70387 75.513975) (xy 80.515269 75.571187) (xy 80.515267 75.571188) (xy 80.341467 75.664087) + (xy 80.341457 75.664093) (xy 80.189121 75.789112) (xy 80.189112 75.789121) (xy 80.064093 75.941457) + (xy 80.064087 75.941467) (xy 79.971188 76.115267) (xy 79.971187 76.115269) (xy 79.913975 76.30387) + (xy 79.913974 76.303873) (xy 79.894659 76.499996) (xy 61.393341 76.499996) (xy 61.450662 76.311033) + (xy 61.450663 76.311028) (xy 61.470462 76.110003) (xy 61.470462 76.109996) (xy 61.450663 75.908971) + (xy 61.450662 75.908966) (xy 61.432873 75.850327) (xy 61.392023 75.715659) (xy 61.39202 75.715653) + (xy 61.2968 75.537508) (xy 61.191172 75.4088) (xy 88.798011 75.4088) (xy 89.489999 76.100788) (xy 90.181987 75.4088) + (xy 90.1214 75.366377) (xy 90.121392 75.366373) (xy 89.921908 75.273352) (xy 89.921909 75.273352) + (xy 89.709276 75.216378) (xy 89.490003 75.197195) (xy 89.489997 75.197195) (xy 89.270723 75.216378) + (xy 89.05809 75.273352) (xy 88.858608 75.366373) (xy 88.858599 75.366378) (xy 88.798011 75.4088) + (xy 61.191172 75.4088) (xy 61.168651 75.381358) (xy 61.168647 75.381353) (xy 61.150394 75.366373) + (xy 61.012491 75.253199) (xy 60.834346 75.157979) (xy 60.834341 75.157977) (xy 60.641033 75.099337) + (xy 60.641028 75.099336) (xy 60.440003 75.079538) (xy 60.439997 75.079538) (xy 60.238971 75.099336) + (xy 60.238966 75.099337) (xy 60.045658 75.157977) (xy 60.045653 75.157979) (xy 59.867508 75.253199) + (xy 59.711358 75.381348) (xy 59.711348 75.381358) (xy 59.583199 75.537508) (xy 59.487979 75.715653) + (xy 59.487977 75.715658) (xy 59.429337 75.908966) (xy 59.429336 75.908971) (xy 59.409538 76.109996) + (xy 56.390462 76.109996) (xy 56.370663 75.908971) (xy 56.370662 75.908966) (xy 56.352873 75.850327) + (xy 56.312023 75.715659) (xy 56.31202 75.715653) (xy 56.2168 75.537508) (xy 56.088651 75.381358) + (xy 56.088647 75.381353) (xy 56.070394 75.366373) (xy 55.932491 75.253199) (xy 55.754346 75.157979) + (xy 55.754341 75.157977) (xy 55.561033 75.099337) (xy 55.561028 75.099336) (xy 55.360003 75.079538) + (xy 55.359997 75.079538) (xy 55.158971 75.099336) (xy 55.158966 75.099337) (xy 54.965658 75.157977) + (xy 54.965653 75.157979) (xy 54.787508 75.253199) (xy 54.631358 75.381348) (xy 54.631348 75.381358) + (xy 54.503199 75.537508) (xy 54.407979 75.715653) (xy 54.407977 75.715658) (xy 54.349337 75.908966) + (xy 54.349336 75.908971) (xy 54.329538 76.109996) (xy 50.0755 76.109996) (xy 50.0755 73.569996) + (xy 54.329538 73.569996) (xy 54.329538 73.570003) (xy 54.349336 73.771028) (xy 54.349337 73.771033) + (xy 54.407977 73.964341) (xy 54.407979 73.964346) (xy 54.503199 74.142491) (xy 54.631348 74.298641) + (xy 54.631353 74.298647) (xy 54.631358 74.298651) (xy 54.787508 74.4268) (xy 54.965653 74.52202) + (xy 54.965659 74.522023) (xy 55.100327 74.562873) (xy 55.158966 74.580662) (xy 55.158971 74.580663) + (xy 55.359997 74.600462) (xy 55.36 74.600462) (xy 55.360003 74.600462) (xy 55.561028 74.580663) + (xy 55.561033 74.580662) (xy 55.754341 74.522023) (xy 55.834925 74.478949) (xy 55.932491 74.4268) + (xy 55.932492 74.426798) (xy 55.932494 74.426798) (xy 56.088647 74.298647) (xy 56.216798 74.142494) + (xy 56.312023 73.964341) (xy 56.370662 73.771033) (xy 56.370663 73.771028) (xy 56.390462 73.570003) + (xy 56.390462 73.569996) (xy 59.409538 73.569996) (xy 59.409538 73.570003) (xy 59.429336 73.771028) + (xy 59.429337 73.771033) (xy 59.487977 73.964341) (xy 59.487979 73.964346) (xy 59.583199 74.142491) + (xy 59.711348 74.298641) (xy 59.711353 74.298647) (xy 59.711358 74.298651) (xy 59.867508 74.4268) + (xy 60.045653 74.52202) (xy 60.045659 74.522023) (xy 60.180327 74.562873) (xy 60.238966 74.580662) + (xy 60.238971 74.580663) (xy 60.439997 74.600462) (xy 60.44 74.600462) (xy 60.440003 74.600462) + (xy 60.641028 74.580663) (xy 60.641033 74.580662) (xy 60.834341 74.522023) (xy 60.914925 74.478949) + (xy 61.012491 74.4268) (xy 61.012492 74.426798) (xy 61.012494 74.426798) (xy 61.168647 74.298647) + (xy 61.296798 74.142494) (xy 61.392023 73.964341) (xy 61.450662 73.771033) (xy 61.450663 73.771028) + (xy 61.470462 73.570003) (xy 61.470462 73.569996) (xy 61.450663 73.368971) (xy 61.450662 73.368966) + (xy 61.432873 73.310327) (xy 61.392023 73.175659) (xy 61.39202 73.175653) (xy 61.2968 72.997508) + (xy 61.168651 72.841358) (xy 61.168647 72.841353) (xy 61.168641 72.841348) (xy 61.012491 72.713199) + (xy 60.834346 72.617979) (xy 60.834341 72.617977) (xy 60.641033 72.559337) (xy 60.641028 72.559336) + (xy 60.440003 72.539538) (xy 60.439997 72.539538) (xy 60.238971 72.559336) (xy 60.238966 72.559337) + (xy 60.045658 72.617977) (xy 60.045653 72.617979) (xy 59.867508 72.713199) (xy 59.711358 72.841348) + (xy 59.711348 72.841358) (xy 59.583199 72.997508) (xy 59.487979 73.175653) (xy 59.487977 73.175658) + (xy 59.429337 73.368966) (xy 59.429336 73.368971) (xy 59.409538 73.569996) (xy 56.390462 73.569996) + (xy 56.370663 73.368971) (xy 56.370662 73.368966) (xy 56.352873 73.310327) (xy 56.312023 73.175659) + (xy 56.31202 73.175653) (xy 56.2168 72.997508) (xy 56.088651 72.841358) (xy 56.088647 72.841353) + (xy 56.088641 72.841348) (xy 55.932491 72.713199) (xy 55.754346 72.617979) (xy 55.754341 72.617977) + (xy 55.561033 72.559337) (xy 55.561028 72.559336) (xy 55.360003 72.539538) (xy 55.359997 72.539538) + (xy 55.158971 72.559336) (xy 55.158966 72.559337) (xy 54.965658 72.617977) (xy 54.965653 72.617979) + (xy 54.787508 72.713199) (xy 54.631358 72.841348) (xy 54.631348 72.841358) (xy 54.503199 72.997508) + (xy 54.407979 73.175653) (xy 54.407977 73.175658) (xy 54.349337 73.368966) (xy 54.349336 73.368971) + (xy 54.329538 73.569996) (xy 50.0755 73.569996) (xy 50.0755 71.029996) (xy 54.329538 71.029996) + (xy 54.329538 71.030003) (xy 54.349336 71.231028) (xy 54.349337 71.231033) (xy 54.407977 71.424341) + (xy 54.407979 71.424346) (xy 54.503199 71.602491) (xy 54.631348 71.758641) (xy 54.631353 71.758647) + (xy 54.631358 71.758651) (xy 54.787508 71.8868) (xy 54.965653 71.98202) (xy 54.965659 71.982023) + (xy 55.100327 72.022873) (xy 55.158966 72.040662) (xy 55.158971 72.040663) (xy 55.359997 72.060462) + (xy 55.36 72.060462) (xy 55.360003 72.060462) (xy 55.561028 72.040663) (xy 55.561033 72.040662) + (xy 55.754341 71.982023) (xy 55.834925 71.938949) (xy 55.932491 71.8868) (xy 55.932492 71.886798) + (xy 55.932494 71.886798) (xy 56.088647 71.758647) (xy 56.216798 71.602494) (xy 56.312023 71.424341) + (xy 56.370662 71.231033) (xy 56.370663 71.231028) (xy 56.390462 71.030003) (xy 56.390462 71.029996) + (xy 59.409538 71.029996) (xy 59.409538 71.030003) (xy 59.429336 71.231028) (xy 59.429337 71.231033) + (xy 59.487977 71.424341) (xy 59.487979 71.424346) (xy 59.583199 71.602491) (xy 59.711348 71.758641) + (xy 59.711353 71.758647) (xy 59.711358 71.758651) (xy 59.867508 71.8868) (xy 60.045653 71.98202) + (xy 60.045659 71.982023) (xy 60.180327 72.022873) (xy 60.238966 72.040662) (xy 60.238971 72.040663) + (xy 60.439997 72.060462) (xy 60.44 72.060462) (xy 60.440003 72.060462) (xy 60.641028 72.040663) + (xy 60.641033 72.040662) (xy 60.834341 71.982023) (xy 60.914925 71.938949) (xy 61.012491 71.8868) + (xy 61.012492 71.886798) (xy 61.012494 71.886798) (xy 61.168647 71.758647) (xy 61.296798 71.602494) + (xy 61.392023 71.424341) (xy 61.450662 71.231033) (xy 61.450663 71.231028) (xy 61.470462 71.030003) + (xy 61.470462 71.029996) (xy 61.450663 70.828971) (xy 61.450662 70.828966) (xy 61.432873 70.770327) + (xy 61.392023 70.635659) (xy 61.39202 70.635653) (xy 61.2968 70.457508) (xy 61.168651 70.301358) + (xy 61.168647 70.301353) (xy 61.168641 70.301348) (xy 61.012491 70.173199) (xy 60.834346 70.077979) + (xy 60.834341 70.077977) (xy 60.641033 70.019337) (xy 60.641028 70.019336) (xy 60.440003 69.999538) + (xy 60.439997 69.999538) (xy 60.238971 70.019336) (xy 60.238966 70.019337) (xy 60.045658 70.077977) + (xy 60.045653 70.077979) (xy 59.867508 70.173199) (xy 59.711358 70.301348) (xy 59.711348 70.301358) + (xy 59.583199 70.457508) (xy 59.487979 70.635653) (xy 59.487977 70.635658) (xy 59.429337 70.828966) + (xy 59.429336 70.828971) (xy 59.409538 71.029996) (xy 56.390462 71.029996) (xy 56.370663 70.828971) + (xy 56.370662 70.828966) (xy 56.352873 70.770327) (xy 56.312023 70.635659) (xy 56.31202 70.635653) + (xy 56.2168 70.457508) (xy 56.088651 70.301358) (xy 56.088647 70.301353) (xy 56.088641 70.301348) + (xy 55.932491 70.173199) (xy 55.754346 70.077979) (xy 55.754341 70.077977) (xy 55.561033 70.019337) + (xy 55.561028 70.019336) (xy 55.360003 69.999538) (xy 55.359997 69.999538) (xy 55.158971 70.019336) + (xy 55.158966 70.019337) (xy 54.965658 70.077977) (xy 54.965653 70.077979) (xy 54.787508 70.173199) + (xy 54.631358 70.301348) (xy 54.631348 70.301358) (xy 54.503199 70.457508) (xy 54.407979 70.635653) + (xy 54.407977 70.635658) (xy 54.349337 70.828966) (xy 54.349336 70.828971) (xy 54.329538 71.029996) + (xy 50.0755 71.029996) (xy 50.0755 68.489996) (xy 54.329538 68.489996) (xy 54.329538 68.490003) + (xy 54.349336 68.691028) (xy 54.349337 68.691033) (xy 54.407977 68.884341) (xy 54.407979 68.884346) + (xy 54.503199 69.062491) (xy 54.595801 69.175327) (xy 54.631353 69.218647) (xy 54.631358 69.218651) + (xy 54.787508 69.3468) (xy 54.965653 69.44202) (xy 54.965659 69.442023) (xy 55.100327 69.482873) + (xy 55.158966 69.500662) (xy 55.158971 69.500663) (xy 55.359997 69.520462) (xy 55.36 69.520462) + (xy 55.360003 69.520462) (xy 55.561028 69.500663) (xy 55.561033 69.500662) (xy 55.754341 69.442023) + (xy 55.834925 69.398949) (xy 55.932491 69.3468) (xy 55.932492 69.346798) (xy 55.932494 69.346798) + (xy 56.088647 69.218647) (xy 56.216798 69.062494) (xy 56.239833 69.0194) (xy 56.31202 68.884346) + (xy 56.312023 68.884341) (xy 56.370662 68.691033) (xy 56.370663 68.691028) (xy 56.390462 68.490003) + (xy 56.390462 68.489996) (xy 59.409538 68.489996) (xy 59.409538 68.490003) (xy 59.429336 68.691028) + (xy 59.429337 68.691033) (xy 59.487977 68.884341) (xy 59.487979 68.884346) (xy 59.583199 69.062491) + (xy 59.675801 69.175327) (xy 59.711353 69.218647) (xy 59.711358 69.218651) (xy 59.867508 69.3468) + (xy 60.045653 69.44202) (xy 60.045659 69.442023) (xy 60.180327 69.482873) (xy 60.238966 69.500662) + (xy 60.238971 69.500663) (xy 60.439997 69.520462) (xy 60.44 69.520462) (xy 60.440003 69.520462) + (xy 60.641028 69.500663) (xy 60.641033 69.500662) (xy 60.834341 69.442023) (xy 60.914925 69.398949) + (xy 61.012491 69.3468) (xy 61.012492 69.346798) (xy 61.012494 69.346798) (xy 61.168647 69.218647) + (xy 61.296798 69.062494) (xy 61.319833 69.0194) (xy 61.39202 68.884346) (xy 61.392023 68.884341) + (xy 61.450662 68.691033) (xy 61.450663 68.691028) (xy 61.470462 68.490003) (xy 61.470462 68.489996) + (xy 61.450663 68.288971) (xy 61.450662 68.288966) (xy 61.432134 68.227888) (xy 61.392023 68.095659) + (xy 61.39202 68.095653) (xy 61.2968 67.917508) (xy 61.168651 67.761358) (xy 61.168647 67.761353) + (xy 61.038317 67.654394) (xy 61.012491 67.633199) (xy 60.834346 67.537979) (xy 60.834341 67.537977) + (xy 60.709136 67.499996) (xy 64.987004 67.499996) (xy 64.987004 67.500003) (xy 65.006949 67.727991) + (xy 65.066187 67.949069) (xy 65.16291 68.156495) (xy 65.212899 68.227888) (xy 65.9 67.540787) (xy 65.9 67.552661) + (xy 65.927259 67.654394) (xy 65.97992 67.745606) (xy 66.054394 67.82008) (xy 66.145606 67.872741) + (xy 66.247339 67.9) (xy 66.259209 67.9) (xy 65.57211 68.587099) (xy 65.643503 68.637088) (xy 65.850929 68.733812) + (xy 65.929528 68.754873) (xy 65.980842 68.788197) (xy 66.002769 68.845318) (xy 65.986934 68.904419) + (xy 65.939384 68.942924) (xy 65.903905 68.9495) (xy 65.475326 68.9495) (xy 65.475325 68.9495) (xy 65.475315 68.949501) + (xy 65.402263 68.964033) (xy 65.402257 68.964035) (xy 65.3194 69.019397) (xy 65.319397 69.0194) + (xy 65.264035 69.102257) (xy 65.264033 69.102263) (xy 65.249501 69.175315) (xy 65.2495 69.175327) + (xy 65.2495 70.824672) (xy 65.249501 70.824684) (xy 65.264033 70.897736) (xy 65.264035 70.897742) + (xy 65.319397 70.980599) (xy 65.319399 70.980601) (xy 65.40226 71.035966) (xy 65.457808 71.047015) + (xy 65.475315 71.050498) (xy 65.47532 71.050498) (xy 65.475326 71.0505) (xy 65.475327 71.0505) (xy 67.124673 71.0505) + (xy 67.124674 71.0505) (xy 67.19774 71.035966) (xy 67.280601 70.980601) (xy 67.335966 70.89774) + (xy 67.3505 70.824674) (xy 67.3505 69.175326) (xy 67.335966 69.10226) (xy 67.280601 69.019399) (xy 67.280599 69.019397) + (xy 67.197742 68.964035) (xy 67.19774 68.964034) (xy 67.197737 68.964033) (xy 67.197736 68.964033) + (xy 67.124684 68.949501) (xy 67.124674 68.9495) (xy 66.696095 68.9495) (xy 66.637904 68.930593) + (xy 66.60194 68.881093) (xy 66.60194 68.819907) (xy 66.637904 68.770407) (xy 66.670472 68.754873) + (xy 66.74907 68.733812) (xy 66.956498 68.637087) (xy 66.956499 68.637087) (xy 67.027888 68.587099) + (xy 66.340789 67.9) (xy 66.352661 67.9) (xy 66.454394 67.872741) (xy 66.545606 67.82008) (xy 66.62008 67.745606) + (xy 66.672741 67.654394) (xy 66.7 67.552661) (xy 66.7 67.540789) (xy 67.387099 68.227888) (xy 67.437087 68.156499) + (xy 67.437087 68.156498) (xy 67.533812 67.949069) (xy 67.59305 67.727991) (xy 67.612996 67.500003) + (xy 67.612996 67.499996) (xy 67.59305 67.272008) (xy 67.533812 67.05093) (xy 67.437088 66.843503) + (xy 67.387099 66.77211) (xy 66.7 67.459209) (xy 66.7 67.447339) (xy 66.672741 67.345606) (xy 66.62008 67.254394) + (xy 66.545606 67.17992) (xy 66.454394 67.127259) (xy 66.352661 67.1) (xy 66.340787 67.1) (xy 67.027888 66.412899) + (xy 66.956495 66.36291) (xy 66.749069 66.266187) (xy 66.527991 66.206949) (xy 66.300003 66.187004) + (xy 66.299997 66.187004) (xy 66.072008 66.206949) (xy 65.850925 66.266188) (xy 65.64351 66.362907) + (xy 65.643493 66.362917) (xy 65.57211 66.412899) (xy 66.259211 67.1) (xy 66.247339 67.1) (xy 66.145606 67.127259) + (xy 66.054394 67.17992) (xy 65.97992 67.254394) (xy 65.927259 67.345606) (xy 65.9 67.447339) (xy 65.9 67.459211) + (xy 65.212899 66.77211) (xy 65.162917 66.843493) (xy 65.162907 66.84351) (xy 65.066188 67.050925) + (xy 65.006949 67.272008) (xy 64.987004 67.499996) (xy 60.709136 67.499996) (xy 60.641033 67.479337) + (xy 60.641028 67.479336) (xy 60.440003 67.459538) (xy 60.439997 67.459538) (xy 60.238971 67.479336) + (xy 60.238966 67.479337) (xy 60.045658 67.537977) (xy 60.045653 67.537979) (xy 59.867508 67.633199) + (xy 59.711358 67.761348) (xy 59.711348 67.761358) (xy 59.583199 67.917508) (xy 59.487979 68.095653) + (xy 59.487977 68.095658) (xy 59.429337 68.288966) (xy 59.429336 68.288971) (xy 59.409538 68.489996) + (xy 56.390462 68.489996) (xy 56.370663 68.288971) (xy 56.370662 68.288966) (xy 56.352134 68.227888) + (xy 56.312023 68.095659) (xy 56.31202 68.095653) (xy 56.2168 67.917508) (xy 56.088651 67.761358) + (xy 56.088647 67.761353) (xy 55.958317 67.654394) (xy 55.932491 67.633199) (xy 55.754346 67.537979) + (xy 55.754341 67.537977) (xy 55.561033 67.479337) (xy 55.561028 67.479336) (xy 55.360003 67.459538) + (xy 55.359997 67.459538) (xy 55.158971 67.479336) (xy 55.158966 67.479337) (xy 54.965658 67.537977) + (xy 54.965653 67.537979) (xy 54.787508 67.633199) (xy 54.631358 67.761348) (xy 54.631348 67.761358) + (xy 54.503199 67.917508) (xy 54.407979 68.095653) (xy 54.407977 68.095658) (xy 54.349337 68.288966) + (xy 54.349336 68.288971) (xy 54.329538 68.489996) (xy 50.0755 68.489996) (xy 50.0755 65.949996) + (xy 54.329538 65.949996) (xy 54.329538 65.950003) (xy 54.349336 66.151028) (xy 54.349337 66.151033) + (xy 54.407977 66.344341) (xy 54.407979 66.344346) (xy 54.503199 66.522491) (xy 54.509677 66.530384) + (xy 54.631353 66.678647) (xy 54.631358 66.678651) (xy 54.787508 66.8068) (xy 54.965653 66.90202) + (xy 54.965659 66.902023) (xy 55.100327 66.942873) (xy 55.158966 66.960662) (xy 55.158971 66.960663) + (xy 55.359997 66.980462) (xy 55.36 66.980462) (xy 55.360003 66.980462) (xy 55.561028 66.960663) + (xy 55.561033 66.960662) (xy 55.754341 66.902023) (xy 55.863843 66.843493) (xy 55.932491 66.8068) + (xy 55.932492 66.806798) (xy 55.932494 66.806798) (xy 56.088647 66.678647) (xy 56.216798 66.522494) + (xy 56.312023 66.344341) (xy 56.370662 66.151033) (xy 56.370663 66.151028) (xy 56.390462 65.950003) + (xy 56.390462 65.949996) (xy 59.409538 65.949996) (xy 59.409538 65.950003) (xy 59.429336 66.151028) + (xy 59.429337 66.151033) (xy 59.487977 66.344341) (xy 59.487979 66.344346) (xy 59.583199 66.522491) + (xy 59.589677 66.530384) (xy 59.711353 66.678647) (xy 59.711358 66.678651) (xy 59.867508 66.8068) + (xy 60.045653 66.90202) (xy 60.045659 66.902023) (xy 60.180327 66.942873) (xy 60.238966 66.960662) + (xy 60.238971 66.960663) (xy 60.439997 66.980462) (xy 60.44 66.980462) (xy 60.440003 66.980462) + (xy 60.641028 66.960663) (xy 60.641033 66.960662) (xy 60.834341 66.902023) (xy 60.943843 66.843493) + (xy 61.012491 66.8068) (xy 61.012492 66.806798) (xy 61.012494 66.806798) (xy 61.168647 66.678647) + (xy 61.296798 66.522494) (xy 61.392023 66.344341) (xy 61.450662 66.151033) (xy 61.450663 66.151028) + (xy 61.470462 65.950003) (xy 61.470462 65.949996) (xy 61.450663 65.748971) (xy 61.450662 65.748966) + (xy 61.432873 65.690327) (xy 61.392023 65.555659) (xy 61.39202 65.555653) (xy 61.2968 65.377508) + (xy 61.168651 65.221358) (xy 61.168647 65.221353) (xy 61.140965 65.198635) (xy 61.012491 65.093199) + (xy 60.834346 64.997979) (xy 60.834341 64.997977) (xy 60.641033 64.939337) (xy 60.641028 64.939336) + (xy 60.440003 64.919538) (xy 60.439997 64.919538) (xy 60.238971 64.939336) (xy 60.238966 64.939337) + (xy 60.045658 64.997977) (xy 60.045653 64.997979) (xy 59.867508 65.093199) (xy 59.711358 65.221348) + (xy 59.711348 65.221358) (xy 59.583199 65.377508) (xy 59.487979 65.555653) (xy 59.487977 65.555658) + (xy 59.429337 65.748966) (xy 59.429336 65.748971) (xy 59.409538 65.949996) (xy 56.390462 65.949996) + (xy 56.370663 65.748971) (xy 56.370662 65.748966) (xy 56.352873 65.690327) (xy 56.312023 65.555659) + (xy 56.31202 65.555653) (xy 56.2168 65.377508) (xy 56.088651 65.221358) (xy 56.088647 65.221353) + (xy 56.060965 65.198635) (xy 55.932491 65.093199) (xy 55.754346 64.997979) (xy 55.754341 64.997977) + (xy 55.561033 64.939337) (xy 55.561028 64.939336) (xy 55.360003 64.919538) (xy 55.359997 64.919538) + (xy 55.158971 64.939336) (xy 55.158966 64.939337) (xy 54.965658 64.997977) (xy 54.965653 64.997979) + (xy 54.787508 65.093199) (xy 54.631358 65.221348) (xy 54.631348 65.221358) (xy 54.503199 65.377508) + (xy 54.407979 65.555653) (xy 54.407977 65.555658) (xy 54.349337 65.748966) (xy 54.349336 65.748971) + (xy 54.329538 65.949996) (xy 50.0755 65.949996) (xy 50.0755 63.409996) (xy 54.329538 63.409996) + (xy 54.329538 63.410003) (xy 54.349336 63.611028) (xy 54.349337 63.611033) (xy 54.407977 63.804341) + (xy 54.407979 63.804346) (xy 54.503199 63.982491) (xy 54.565441 64.058333) (xy 54.631353 64.138647) + (xy 54.631358 64.138651) (xy 54.787508 64.2668) (xy 54.965653 64.36202) (xy 54.965659 64.362023) + (xy 55.100327 64.402873) (xy 55.158966 64.420662) (xy 55.158971 64.420663) (xy 55.359997 64.440462) + (xy 55.36 64.440462) (xy 55.360003 64.440462) (xy 55.561028 64.420663) (xy 55.561033 64.420662) + (xy 55.754341 64.362023) (xy 55.834925 64.318949) (xy 55.932491 64.2668) (xy 55.932492 64.266798) + (xy 55.932494 64.266798) (xy 56.088647 64.138647) (xy 56.216798 63.982494) (xy 56.312023 63.804341) + (xy 56.370662 63.611033) (xy 56.370663 63.611028) (xy 56.390462 63.410003) (xy 56.390462 63.409996) + (xy 59.409538 63.409996) (xy 59.409538 63.410003) (xy 59.429336 63.611028) (xy 59.429337 63.611033) + (xy 59.487977 63.804341) (xy 59.487979 63.804346) (xy 59.583199 63.982491) (xy 59.645441 64.058333) + (xy 59.711353 64.138647) (xy 59.711358 64.138651) (xy 59.867508 64.2668) (xy 60.045653 64.36202) + (xy 60.045659 64.362023) (xy 60.180327 64.402873) (xy 60.238966 64.420662) (xy 60.238971 64.420663) + (xy 60.439997 64.440462) (xy 60.44 64.440462) (xy 60.440003 64.440462) (xy 60.641028 64.420663) + (xy 60.641033 64.420662) (xy 60.834341 64.362023) (xy 60.914925 64.318949) (xy 61.012491 64.2668) + (xy 61.012492 64.266798) (xy 61.012494 64.266798) (xy 61.168647 64.138647) (xy 61.296798 63.982494) + (xy 61.392023 63.804341) (xy 61.450662 63.611033) (xy 61.450663 63.611028) (xy 61.470462 63.410003) + (xy 61.470462 63.409996) (xy 61.460563 63.309484) (xy 76.897 63.309484) (xy 76.897 63.725999) (xy 76.897001 63.726) + (xy 77.9596 63.726) (xy 77.945548 63.750339) (xy 77.905 63.901667) (xy 77.905 64.058333) (xy 77.945548 64.209661) + (xy 77.9596 64.234) (xy 76.897001 64.234) (xy 76.897 64.234001) (xy 76.897 64.650515) (xy 76.907605 64.754321) + (xy 76.963342 64.922525) (xy 77.056364 65.073337) (xy 77.181662 65.198635) (xy 77.332474 65.291657) + (xy 77.500678 65.347394) (xy 77.604484 65.358) (xy 78.245999 65.358) (xy 78.246 65.357999) (xy 78.246 64.520399) + (xy 78.270339 64.534452) (xy 78.421667 64.575) (xy 78.578333 64.575) (xy 78.729661 64.534452) (xy 78.754 64.520399) + (xy 78.754 65.357999) (xy 78.754001 65.358) (xy 79.395516 65.358) (xy 79.499321 65.347394) (xy 79.667525 65.291657) + (xy 79.818337 65.198635) (xy 79.943635 65.073337) (xy 80.036657 64.922525) (xy 80.092394 64.754321) + (xy 80.103 64.650515) (xy 80.103 64.234001) (xy 80.102999 64.234) (xy 79.0404 64.234) (xy 79.054452 64.209661) + (xy 79.095 64.058333) (xy 79.095 63.901667) (xy 79.054452 63.750339) (xy 79.0404 63.726) (xy 80.102999 63.726) + (xy 80.103 63.725999) (xy 80.103 63.309484) (xy 80.092394 63.205678) (xy 80.036657 63.037474) (xy 79.943635 62.886662) + (xy 79.818337 62.761364) (xy 79.667525 62.668342) (xy 79.499321 62.612605) (xy 79.395516 62.602) + (xy 79.324926 62.602) (xy 79.266735 62.583093) (xy 79.230771 62.533593) (xy 79.230771 62.472407) + (xy 79.266735 62.422907) (xy 79.279981 62.41479) (xy 79.280819 62.414362) (xy 79.31227 62.398338) + (xy 79.454957 62.29467) (xy 79.57967 62.169957) (xy 79.683338 62.02727) (xy 79.763408 61.870123) + (xy 79.81791 61.702384) (xy 79.835927 61.588626) (xy 79.863704 61.534109) (xy 79.863704 61.534108) + (xy 81.857812 59.54) (xy 85.02195 59.54) (xy 85.042116 59.796245) (xy 85.102122 60.046186) (xy 85.200485 60.283656) + (xy 85.200491 60.283668) (xy 85.334787 60.502819) (xy 85.334791 60.502824) (xy 85.336252 60.504535) + (xy 85.904227 59.936559) (xy 85.90674 59.942626) (xy 85.999762 60.081844) (xy 86.118156 60.200238) + (xy 86.257374 60.29326) (xy 86.263437 60.295771) (xy 85.695463 60.863746) (xy 85.697179 60.865211) + (xy 85.916331 60.999508) (xy 85.916343 60.999514) (xy 86.153813 61.097877) (xy 86.153812 61.097877) + (xy 86.403754 61.157883) (xy 86.66 61.178049) (xy 86.916245 61.157883) (xy 87.166186 61.097877) + (xy 87.403656 60.999514) (xy 87.403668 60.999508) (xy 87.622818 60.865213) (xy 87.624535 60.863746) + (xy 87.056561 60.295772) (xy 87.062626 60.29326) (xy 87.201844 60.200238) (xy 87.320238 60.081844) + (xy 87.41326 59.942626) (xy 87.415772 59.936561) (xy 87.983746 60.504535) (xy 87.985213 60.502818) + (xy 88.119508 60.283668) (xy 88.119514 60.283656) (xy 88.217877 60.046186) (xy 88.277883 59.796245) + (xy 88.298049 59.54) (xy 90.10195 59.54) (xy 90.122116 59.796245) (xy 90.182122 60.046186) (xy 90.280485 60.283656) + (xy 90.280491 60.283668) (xy 90.414787 60.502819) (xy 90.414791 60.502824) (xy 90.416252 60.504535) + (xy 90.984227 59.936559) (xy 90.98674 59.942626) (xy 91.079762 60.081844) (xy 91.198156 60.200238) + (xy 91.337374 60.29326) (xy 91.343437 60.295771) (xy 90.775463 60.863746) (xy 90.777179 60.865211) + (xy 90.996331 60.999508) (xy 90.996343 60.999514) (xy 91.233813 61.097877) (xy 91.233812 61.097877) + (xy 91.483754 61.157883) (xy 91.74 61.178049) (xy 91.996245 61.157883) (xy 92.246186 61.097877) + (xy 92.483656 60.999514) (xy 92.483668 60.999508) (xy 92.702818 60.865213) (xy 92.704535 60.863746) + (xy 92.136561 60.295772) (xy 92.142626 60.29326) (xy 92.281844 60.200238) (xy 92.400238 60.081844) + (xy 92.49326 59.942626) (xy 92.495772 59.936561) (xy 93.063746 60.504535) (xy 93.065213 60.502818) + (xy 93.199508 60.283668) (xy 93.199514 60.283656) (xy 93.297877 60.046186) (xy 93.357883 59.796245) + (xy 93.378049 59.54) (xy 114.42195 59.54) (xy 114.442116 59.796245) (xy 114.502122 60.046186) (xy 114.600485 60.283656) + (xy 114.600491 60.283668) (xy 114.734787 60.502819) (xy 114.734791 60.502824) (xy 114.736252 60.504535) + (xy 115.304227 59.936559) (xy 115.30674 59.942626) (xy 115.399762 60.081844) (xy 115.518156 60.200238) + (xy 115.657374 60.29326) (xy 115.663437 60.295771) (xy 115.095463 60.863746) (xy 115.097179 60.865211) + (xy 115.316331 60.999508) (xy 115.316343 60.999514) (xy 115.553813 61.097877) (xy 115.553812 61.097877) + (xy 115.803754 61.157883) (xy 116.06 61.178049) (xy 116.316245 61.157883) (xy 116.566186 61.097877) + (xy 116.803656 60.999514) (xy 116.803668 60.999508) (xy 117.022818 60.865213) (xy 117.024535 60.863746) + (xy 116.456561 60.295772) (xy 116.462626 60.29326) (xy 116.601844 60.200238) (xy 116.720238 60.081844) + (xy 116.81326 59.942626) (xy 116.815772 59.936561) (xy 117.383746 60.504535) (xy 117.385213 60.502818) + (xy 117.519508 60.283668) (xy 117.519514 60.283656) (xy 117.617877 60.046186) (xy 117.677883 59.796245) + (xy 117.698049 59.54) (xy 119.50195 59.54) (xy 119.522116 59.796245) (xy 119.582122 60.046186) (xy 119.680485 60.283656) + (xy 119.680491 60.283668) (xy 119.814787 60.502819) (xy 119.814791 60.502824) (xy 119.816252 60.504535) + (xy 120.384227 59.936559) (xy 120.38674 59.942626) (xy 120.479762 60.081844) (xy 120.598156 60.200238) + (xy 120.737374 60.29326) (xy 120.743437 60.295771) (xy 120.175463 60.863746) (xy 120.177179 60.865211) + (xy 120.396331 60.999508) (xy 120.396343 60.999514) (xy 120.633813 61.097877) (xy 120.633812 61.097877) + (xy 120.883754 61.157883) (xy 121.14 61.178049) (xy 121.396245 61.157883) (xy 121.646186 61.097877) + (xy 121.883656 60.999514) (xy 121.883668 60.999508) (xy 122.102818 60.865213) (xy 122.104535 60.863746) + (xy 121.536561 60.295772) (xy 121.542626 60.29326) (xy 121.681844 60.200238) (xy 121.800238 60.081844) + (xy 121.89326 59.942626) (xy 121.895772 59.936561) (xy 122.463746 60.504535) (xy 122.465213 60.502818) + (xy 122.599508 60.283668) (xy 122.599514 60.283656) (xy 122.697877 60.046186) (xy 122.757883 59.796245) + (xy 122.778049 59.54) (xy 134.92195 59.54) (xy 134.942116 59.796245) (xy 135.002122 60.046186) (xy 135.100485 60.283656) + (xy 135.100491 60.283668) (xy 135.234787 60.502819) (xy 135.234791 60.502824) (xy 135.236252 60.504535) + (xy 135.804227 59.936559) (xy 135.80674 59.942626) (xy 135.899762 60.081844) (xy 136.018156 60.200238) + (xy 136.157374 60.29326) (xy 136.163437 60.295771) (xy 135.595463 60.863746) (xy 135.597179 60.865211) + (xy 135.816331 60.999508) (xy 135.816343 60.999514) (xy 136.053813 61.097877) (xy 136.053812 61.097877) + (xy 136.303754 61.157883) (xy 136.56 61.178049) (xy 136.816245 61.157883) (xy 137.066186 61.097877) + (xy 137.303656 60.999514) (xy 137.303668 60.999508) (xy 137.522818 60.865213) (xy 137.524535 60.863746) + (xy 136.956561 60.295772) (xy 136.962626 60.29326) (xy 137.101844 60.200238) (xy 137.220238 60.081844) + (xy 137.31326 59.942626) (xy 137.315772 59.936561) (xy 137.883746 60.504535) (xy 137.885213 60.502818) + (xy 138.019508 60.283668) (xy 138.019514 60.283656) (xy 138.117877 60.046186) (xy 138.177883 59.796245) + (xy 138.198049 59.54) (xy 140.00195 59.54) (xy 140.022116 59.796245) (xy 140.082122 60.046186) (xy 140.180485 60.283656) + (xy 140.180491 60.283668) (xy 140.314787 60.502819) (xy 140.314791 60.502824) (xy 140.316252 60.504535) + (xy 140.884227 59.936559) (xy 140.88674 59.942626) (xy 140.979762 60.081844) (xy 141.098156 60.200238) + (xy 141.237374 60.29326) (xy 141.243437 60.295771) (xy 140.675463 60.863746) (xy 140.677179 60.865211) + (xy 140.896331 60.999508) (xy 140.896343 60.999514) (xy 141.133813 61.097877) (xy 141.133812 61.097877) + (xy 141.383754 61.157883) (xy 141.64 61.178049) (xy 141.896245 61.157883) (xy 142.146186 61.097877) + (xy 142.383656 60.999514) (xy 142.383668 60.999508) (xy 142.602818 60.865213) (xy 142.604535 60.863746) + (xy 142.036561 60.295772) (xy 142.042626 60.29326) (xy 142.181844 60.200238) (xy 142.300238 60.081844) + (xy 142.39326 59.942626) (xy 142.395772 59.936561) (xy 142.963746 60.504535) (xy 142.965213 60.502818) + (xy 143.099508 60.283668) (xy 143.099514 60.283656) (xy 143.197877 60.046186) (xy 143.257883 59.796245) + (xy 143.278049 59.54) (xy 143.270179 59.44) (xy 148.92195 59.44) (xy 148.942116 59.696245) (xy 149.002122 59.946186) + (xy 149.100485 60.183656) (xy 149.100491 60.183668) (xy 149.234787 60.402819) (xy 149.234791 60.402824) + (xy 149.236252 60.404535) (xy 149.804227 59.836559) (xy 149.80674 59.842626) (xy 149.899762 59.981844) + (xy 150.018156 60.100238) (xy 150.157374 60.19326) (xy 150.163437 60.195771) (xy 149.595463 60.763746) + (xy 149.597179 60.765211) (xy 149.816331 60.899508) (xy 149.816343 60.899514) (xy 150.053813 60.997877) + (xy 150.053812 60.997877) (xy 150.303754 61.057883) (xy 150.56 61.078049) (xy 150.816245 61.057883) + (xy 151.066186 60.997877) (xy 151.303656 60.899514) (xy 151.303668 60.899508) (xy 151.522818 60.765213) + (xy 151.524535 60.763746) (xy 150.956561 60.195772) (xy 150.962626 60.19326) (xy 151.101844 60.100238) + (xy 151.220238 59.981844) (xy 151.31326 59.842626) (xy 151.315772 59.836561) (xy 151.883746 60.404535) + (xy 151.885213 60.402818) (xy 152.019508 60.183668) (xy 152.019514 60.183656) (xy 152.117877 59.946186) + (xy 152.177883 59.696245) (xy 152.198049 59.44) (xy 154.00195 59.44) (xy 154.022116 59.696245) (xy 154.082122 59.946186) + (xy 154.180485 60.183656) (xy 154.180491 60.183668) (xy 154.314787 60.402819) (xy 154.314791 60.402824) + (xy 154.316252 60.404535) (xy 154.884227 59.836559) (xy 154.88674 59.842626) (xy 154.979762 59.981844) + (xy 155.098156 60.100238) (xy 155.237374 60.19326) (xy 155.243437 60.195771) (xy 154.675463 60.763746) + (xy 154.677179 60.765211) (xy 154.896331 60.899508) (xy 154.896343 60.899514) (xy 155.133813 60.997877) + (xy 155.133812 60.997877) (xy 155.383754 61.057883) (xy 155.64 61.078049) (xy 155.896245 61.057883) + (xy 156.146186 60.997877) (xy 156.383656 60.899514) (xy 156.383668 60.899508) (xy 156.602818 60.765213) + (xy 156.604535 60.763746) (xy 156.036561 60.195772) (xy 156.042626 60.19326) (xy 156.181844 60.100238) + (xy 156.300238 59.981844) (xy 156.39326 59.842626) (xy 156.395772 59.836561) (xy 156.963746 60.404535) + (xy 156.965213 60.402818) (xy 157.099508 60.183668) (xy 157.099514 60.183656) (xy 157.197877 59.946186) + (xy 157.257883 59.696245) (xy 157.278049 59.44) (xy 162.92195 59.44) (xy 162.942116 59.696245) (xy 163.002122 59.946186) + (xy 163.100485 60.183656) (xy 163.100491 60.183668) (xy 163.234787 60.402819) (xy 163.234791 60.402824) + (xy 163.236252 60.404535) (xy 163.804227 59.836559) (xy 163.80674 59.842626) (xy 163.899762 59.981844) + (xy 164.018156 60.100238) (xy 164.157374 60.19326) (xy 164.163437 60.195771) (xy 163.595463 60.763746) + (xy 163.597179 60.765211) (xy 163.816331 60.899508) (xy 163.816343 60.899514) (xy 164.053813 60.997877) + (xy 164.053812 60.997877) (xy 164.303754 61.057883) (xy 164.56 61.078049) (xy 164.816245 61.057883) + (xy 165.066186 60.997877) (xy 165.303656 60.899514) (xy 165.303668 60.899508) (xy 165.522818 60.765213) + (xy 165.524535 60.763746) (xy 164.956561 60.195772) (xy 164.962626 60.19326) (xy 165.101844 60.100238) + (xy 165.220238 59.981844) (xy 165.31326 59.842626) (xy 165.315772 59.836561) (xy 165.883746 60.404535) + (xy 165.885213 60.402818) (xy 166.019508 60.183668) (xy 166.019514 60.183656) (xy 166.117877 59.946186) + (xy 166.177883 59.696245) (xy 166.198049 59.44) (xy 168.00195 59.44) (xy 168.022116 59.696245) (xy 168.082122 59.946186) + (xy 168.180485 60.183656) (xy 168.180491 60.183668) (xy 168.314787 60.402819) (xy 168.314791 60.402824) + (xy 168.316252 60.404535) (xy 168.884227 59.836559) (xy 168.88674 59.842626) (xy 168.979762 59.981844) + (xy 169.098156 60.100238) (xy 169.237374 60.19326) (xy 169.243437 60.195771) (xy 168.675463 60.763746) + (xy 168.677179 60.765211) (xy 168.896331 60.899508) (xy 168.896343 60.899514) (xy 169.133813 60.997877) + (xy 169.133812 60.997877) (xy 169.383754 61.057883) (xy 169.64 61.078049) (xy 169.896245 61.057883) + (xy 170.146186 60.997877) (xy 170.383656 60.899514) (xy 170.383668 60.899508) (xy 170.602818 60.765213) + (xy 170.604535 60.763746) (xy 170.036561 60.195772) (xy 170.042626 60.19326) (xy 170.181844 60.100238) + (xy 170.300238 59.981844) (xy 170.39326 59.842626) (xy 170.395772 59.836561) (xy 170.963746 60.404535) + (xy 170.965213 60.402818) (xy 171.099508 60.183668) (xy 171.099514 60.183656) (xy 171.197877 59.946186) + (xy 171.257883 59.696245) (xy 171.278049 59.44) (xy 176.92195 59.44) (xy 176.942116 59.696245) (xy 177.002122 59.946186) + (xy 177.100485 60.183656) (xy 177.100491 60.183668) (xy 177.234787 60.402819) (xy 177.234791 60.402824) + (xy 177.236252 60.404535) (xy 177.804227 59.836559) (xy 177.80674 59.842626) (xy 177.899762 59.981844) + (xy 178.018156 60.100238) (xy 178.157374 60.19326) (xy 178.163437 60.195771) (xy 177.595463 60.763746) + (xy 177.597179 60.765211) (xy 177.816331 60.899508) (xy 177.816343 60.899514) (xy 178.053813 60.997877) + (xy 178.053812 60.997877) (xy 178.303754 61.057883) (xy 178.56 61.078049) (xy 178.816245 61.057883) + (xy 179.066186 60.997877) (xy 179.303656 60.899514) (xy 179.303668 60.899508) (xy 179.522818 60.765213) + (xy 179.524535 60.763746) (xy 178.956561 60.195772) (xy 178.962626 60.19326) (xy 179.101844 60.100238) + (xy 179.220238 59.981844) (xy 179.31326 59.842626) (xy 179.315772 59.836561) (xy 179.883746 60.404535) + (xy 179.885213 60.402818) (xy 180.019508 60.183668) (xy 180.019514 60.183656) (xy 180.117877 59.946186) + (xy 180.177883 59.696245) (xy 180.198049 59.44) (xy 182.00195 59.44) (xy 182.022116 59.696245) (xy 182.082122 59.946186) + (xy 182.180485 60.183656) (xy 182.180491 60.183668) (xy 182.314787 60.402819) (xy 182.314791 60.402824) + (xy 182.316252 60.404535) (xy 182.884227 59.836559) (xy 182.88674 59.842626) (xy 182.979762 59.981844) + (xy 183.098156 60.100238) (xy 183.237374 60.19326) (xy 183.243437 60.195771) (xy 182.675463 60.763746) + (xy 182.677179 60.765211) (xy 182.896331 60.899508) (xy 182.896343 60.899514) (xy 183.133813 60.997877) + (xy 183.133812 60.997877) (xy 183.383754 61.057883) (xy 183.64 61.078049) (xy 183.896245 61.057883) + (xy 184.146186 60.997877) (xy 184.383656 60.899514) (xy 184.383668 60.899508) (xy 184.602818 60.765213) + (xy 184.604535 60.763746) (xy 184.036561 60.195772) (xy 184.042626 60.19326) (xy 184.181844 60.100238) + (xy 184.300238 59.981844) (xy 184.39326 59.842626) (xy 184.395772 59.836561) (xy 184.963746 60.404535) + (xy 184.965213 60.402818) (xy 185.099508 60.183668) (xy 185.099514 60.183656) (xy 185.197877 59.946186) + (xy 185.257883 59.696245) (xy 185.278049 59.44) (xy 185.257883 59.183754) (xy 185.197877 58.933813) + (xy 185.099514 58.696343) (xy 185.099508 58.696331) (xy 184.965211 58.477179) (xy 184.963746 58.475463) + (xy 184.395771 59.043437) (xy 184.39326 59.037374) (xy 184.300238 58.898156) (xy 184.181844 58.779762) + (xy 184.042626 58.68674) (xy 184.036559 58.684227) (xy 184.604535 58.116252) (xy 184.602824 58.114791) + (xy 184.602819 58.114787) (xy 184.383668 57.980491) (xy 184.383656 57.980485) (xy 184.146186 57.882122) + (xy 184.146187 57.882122) (xy 183.896245 57.822116) (xy 183.64 57.80195) (xy 183.383754 57.822116) + (xy 183.133813 57.882122) (xy 182.896343 57.980485) (xy 182.896331 57.980491) (xy 182.677184 58.114785) + (xy 182.677176 58.114791) (xy 182.675463 58.116252) (xy 183.243438 58.684227) (xy 183.237374 58.68674) + (xy 183.098156 58.779762) (xy 182.979762 58.898156) (xy 182.88674 59.037374) (xy 182.884227 59.043438) + (xy 182.316252 58.475463) (xy 182.314791 58.477176) (xy 182.314785 58.477184) (xy 182.180491 58.696331) + (xy 182.180485 58.696343) (xy 182.082122 58.933813) (xy 182.022116 59.183754) (xy 182.00195 59.44) + (xy 180.198049 59.44) (xy 180.177883 59.183754) (xy 180.117877 58.933813) (xy 180.019514 58.696343) + (xy 180.019508 58.696331) (xy 179.885211 58.477179) (xy 179.883746 58.475463) (xy 179.315771 59.043437) + (xy 179.31326 59.037374) (xy 179.220238 58.898156) (xy 179.101844 58.779762) (xy 178.962626 58.68674) + (xy 178.956559 58.684227) (xy 179.524535 58.116252) (xy 179.522824 58.114791) (xy 179.522819 58.114787) + (xy 179.303668 57.980491) (xy 179.303656 57.980485) (xy 179.066186 57.882122) (xy 179.066187 57.882122) + (xy 178.816245 57.822116) (xy 178.56 57.80195) (xy 178.303754 57.822116) (xy 178.053813 57.882122) + (xy 177.816343 57.980485) (xy 177.816331 57.980491) (xy 177.597184 58.114785) (xy 177.597176 58.114791) + (xy 177.595463 58.116252) (xy 178.163438 58.684227) (xy 178.157374 58.68674) (xy 178.018156 58.779762) + (xy 177.899762 58.898156) (xy 177.80674 59.037374) (xy 177.804227 59.043438) (xy 177.236252 58.475463) + (xy 177.234791 58.477176) (xy 177.234785 58.477184) (xy 177.100491 58.696331) (xy 177.100485 58.696343) + (xy 177.002122 58.933813) (xy 176.942116 59.183754) (xy 176.92195 59.44) (xy 171.278049 59.44) (xy 171.257883 59.183754) + (xy 171.197877 58.933813) (xy 171.099514 58.696343) (xy 171.099508 58.696331) (xy 170.965211 58.477179) + (xy 170.963746 58.475463) (xy 170.395771 59.043437) (xy 170.39326 59.037374) (xy 170.300238 58.898156) + (xy 170.181844 58.779762) (xy 170.042626 58.68674) (xy 170.036559 58.684227) (xy 170.604535 58.116252) + (xy 170.602824 58.114791) (xy 170.602819 58.114787) (xy 170.383668 57.980491) (xy 170.383656 57.980485) + (xy 170.146186 57.882122) (xy 170.146187 57.882122) (xy 169.896245 57.822116) (xy 169.64 57.80195) + (xy 169.383754 57.822116) (xy 169.133813 57.882122) (xy 168.896343 57.980485) (xy 168.896331 57.980491) + (xy 168.677184 58.114785) (xy 168.677176 58.114791) (xy 168.675463 58.116252) (xy 169.243438 58.684227) + (xy 169.237374 58.68674) (xy 169.098156 58.779762) (xy 168.979762 58.898156) (xy 168.88674 59.037374) + (xy 168.884227 59.043438) (xy 168.316252 58.475463) (xy 168.314791 58.477176) (xy 168.314785 58.477184) + (xy 168.180491 58.696331) (xy 168.180485 58.696343) (xy 168.082122 58.933813) (xy 168.022116 59.183754) + (xy 168.00195 59.44) (xy 166.198049 59.44) (xy 166.177883 59.183754) (xy 166.117877 58.933813) (xy 166.019514 58.696343) + (xy 166.019508 58.696331) (xy 165.885211 58.477179) (xy 165.883746 58.475463) (xy 165.315771 59.043437) + (xy 165.31326 59.037374) (xy 165.220238 58.898156) (xy 165.101844 58.779762) (xy 164.962626 58.68674) + (xy 164.956559 58.684227) (xy 165.524535 58.116252) (xy 165.522824 58.114791) (xy 165.522819 58.114787) + (xy 165.303668 57.980491) (xy 165.303656 57.980485) (xy 165.066186 57.882122) (xy 165.066187 57.882122) + (xy 164.816245 57.822116) (xy 164.56 57.80195) (xy 164.303754 57.822116) (xy 164.053813 57.882122) + (xy 163.816343 57.980485) (xy 163.816331 57.980491) (xy 163.597184 58.114785) (xy 163.597176 58.114791) + (xy 163.595463 58.116252) (xy 164.163438 58.684227) (xy 164.157374 58.68674) (xy 164.018156 58.779762) + (xy 163.899762 58.898156) (xy 163.80674 59.037374) (xy 163.804227 59.043438) (xy 163.236252 58.475463) + (xy 163.234791 58.477176) (xy 163.234785 58.477184) (xy 163.100491 58.696331) (xy 163.100485 58.696343) + (xy 163.002122 58.933813) (xy 162.942116 59.183754) (xy 162.92195 59.44) (xy 157.278049 59.44) (xy 157.257883 59.183754) + (xy 157.197877 58.933813) (xy 157.099514 58.696343) (xy 157.099508 58.696331) (xy 156.965211 58.477179) + (xy 156.963746 58.475463) (xy 156.395771 59.043437) (xy 156.39326 59.037374) (xy 156.300238 58.898156) + (xy 156.181844 58.779762) (xy 156.042626 58.68674) (xy 156.036559 58.684227) (xy 156.604535 58.116252) + (xy 156.602824 58.114791) (xy 156.602819 58.114787) (xy 156.383668 57.980491) (xy 156.383656 57.980485) + (xy 156.146186 57.882122) (xy 156.146187 57.882122) (xy 155.896245 57.822116) (xy 155.64 57.80195) + (xy 155.383754 57.822116) (xy 155.133813 57.882122) (xy 154.896343 57.980485) (xy 154.896331 57.980491) + (xy 154.677184 58.114785) (xy 154.677176 58.114791) (xy 154.675463 58.116252) (xy 155.243438 58.684227) + (xy 155.237374 58.68674) (xy 155.098156 58.779762) (xy 154.979762 58.898156) (xy 154.88674 59.037374) + (xy 154.884227 59.043438) (xy 154.316252 58.475463) (xy 154.314791 58.477176) (xy 154.314785 58.477184) + (xy 154.180491 58.696331) (xy 154.180485 58.696343) (xy 154.082122 58.933813) (xy 154.022116 59.183754) + (xy 154.00195 59.44) (xy 152.198049 59.44) (xy 152.177883 59.183754) (xy 152.117877 58.933813) (xy 152.019514 58.696343) + (xy 152.019508 58.696331) (xy 151.885211 58.477179) (xy 151.883746 58.475463) (xy 151.315771 59.043437) + (xy 151.31326 59.037374) (xy 151.220238 58.898156) (xy 151.101844 58.779762) (xy 150.962626 58.68674) + (xy 150.956559 58.684227) (xy 151.524535 58.116252) (xy 151.522824 58.114791) (xy 151.522819 58.114787) + (xy 151.303668 57.980491) (xy 151.303656 57.980485) (xy 151.066186 57.882122) (xy 151.066187 57.882122) + (xy 150.816245 57.822116) (xy 150.56 57.80195) (xy 150.303754 57.822116) (xy 150.053813 57.882122) + (xy 149.816343 57.980485) (xy 149.816331 57.980491) (xy 149.597184 58.114785) (xy 149.597176 58.114791) + (xy 149.595463 58.116252) (xy 150.163438 58.684227) (xy 150.157374 58.68674) (xy 150.018156 58.779762) + (xy 149.899762 58.898156) (xy 149.80674 59.037374) (xy 149.804227 59.043438) (xy 149.236252 58.475463) + (xy 149.234791 58.477176) (xy 149.234785 58.477184) (xy 149.100491 58.696331) (xy 149.100485 58.696343) + (xy 149.002122 58.933813) (xy 148.942116 59.183754) (xy 148.92195 59.44) (xy 143.270179 59.44) (xy 143.257883 59.283754) + (xy 143.197877 59.033813) (xy 143.099514 58.796343) (xy 143.099508 58.796331) (xy 142.965211 58.577179) + (xy 142.963746 58.575463) (xy 142.395771 59.143437) (xy 142.39326 59.137374) (xy 142.300238 58.998156) + (xy 142.181844 58.879762) (xy 142.042626 58.78674) (xy 142.036559 58.784227) (xy 142.604535 58.216252) + (xy 142.602824 58.214791) (xy 142.602819 58.214787) (xy 142.383668 58.080491) (xy 142.383656 58.080485) + (xy 142.146186 57.982122) (xy 142.146187 57.982122) (xy 141.896245 57.922116) (xy 141.64 57.90195) + (xy 141.383754 57.922116) (xy 141.133813 57.982122) (xy 140.896343 58.080485) (xy 140.896331 58.080491) + (xy 140.677184 58.214785) (xy 140.677176 58.214791) (xy 140.675463 58.216252) (xy 141.243438 58.784227) + (xy 141.237374 58.78674) (xy 141.098156 58.879762) (xy 140.979762 58.998156) (xy 140.88674 59.137374) + (xy 140.884227 59.143438) (xy 140.316252 58.575463) (xy 140.314791 58.577176) (xy 140.314785 58.577184) + (xy 140.180491 58.796331) (xy 140.180485 58.796343) (xy 140.082122 59.033813) (xy 140.022116 59.283754) + (xy 140.00195 59.54) (xy 138.198049 59.54) (xy 138.177883 59.283754) (xy 138.117877 59.033813) (xy 138.019514 58.796343) + (xy 138.019508 58.796331) (xy 137.885211 58.577179) (xy 137.883746 58.575463) (xy 137.315771 59.143437) + (xy 137.31326 59.137374) (xy 137.220238 58.998156) (xy 137.101844 58.879762) (xy 136.962626 58.78674) + (xy 136.956559 58.784227) (xy 137.524535 58.216252) (xy 137.522824 58.214791) (xy 137.522819 58.214787) + (xy 137.303668 58.080491) (xy 137.303656 58.080485) (xy 137.066186 57.982122) (xy 137.066187 57.982122) + (xy 136.816245 57.922116) (xy 136.56 57.90195) (xy 136.303754 57.922116) (xy 136.053813 57.982122) + (xy 135.816343 58.080485) (xy 135.816331 58.080491) (xy 135.597184 58.214785) (xy 135.597176 58.214791) + (xy 135.595463 58.216252) (xy 136.163438 58.784227) (xy 136.157374 58.78674) (xy 136.018156 58.879762) + (xy 135.899762 58.998156) (xy 135.80674 59.137374) (xy 135.804227 59.143438) (xy 135.236252 58.575463) + (xy 135.234791 58.577176) (xy 135.234785 58.577184) (xy 135.100491 58.796331) (xy 135.100485 58.796343) + (xy 135.002122 59.033813) (xy 134.942116 59.283754) (xy 134.92195 59.54) (xy 122.778049 59.54) (xy 122.757883 59.283754) + (xy 122.697877 59.033813) (xy 122.599514 58.796343) (xy 122.599508 58.796331) (xy 122.465211 58.577179) + (xy 122.463746 58.575463) (xy 121.895771 59.143437) (xy 121.89326 59.137374) (xy 121.800238 58.998156) + (xy 121.681844 58.879762) (xy 121.542626 58.78674) (xy 121.536559 58.784227) (xy 122.104535 58.216252) + (xy 122.102824 58.214791) (xy 122.102819 58.214787) (xy 121.883668 58.080491) (xy 121.883656 58.080485) + (xy 121.646186 57.982122) (xy 121.646187 57.982122) (xy 121.396245 57.922116) (xy 121.14 57.90195) + (xy 120.883754 57.922116) (xy 120.633813 57.982122) (xy 120.396343 58.080485) (xy 120.396331 58.080491) + (xy 120.177184 58.214785) (xy 120.177176 58.214791) (xy 120.175463 58.216252) (xy 120.743438 58.784227) + (xy 120.737374 58.78674) (xy 120.598156 58.879762) (xy 120.479762 58.998156) (xy 120.38674 59.137374) + (xy 120.384227 59.143438) (xy 119.816252 58.575463) (xy 119.814791 58.577176) (xy 119.814785 58.577184) + (xy 119.680491 58.796331) (xy 119.680485 58.796343) (xy 119.582122 59.033813) (xy 119.522116 59.283754) + (xy 119.50195 59.54) (xy 117.698049 59.54) (xy 117.677883 59.283754) (xy 117.617877 59.033813) (xy 117.519514 58.796343) + (xy 117.519508 58.796331) (xy 117.385211 58.577179) (xy 117.383746 58.575463) (xy 116.815771 59.143437) + (xy 116.81326 59.137374) (xy 116.720238 58.998156) (xy 116.601844 58.879762) (xy 116.462626 58.78674) + (xy 116.456559 58.784227) (xy 117.024535 58.216252) (xy 117.022824 58.214791) (xy 117.022819 58.214787) + (xy 116.803668 58.080491) (xy 116.803656 58.080485) (xy 116.566186 57.982122) (xy 116.566187 57.982122) + (xy 116.316245 57.922116) (xy 116.06 57.90195) (xy 115.803754 57.922116) (xy 115.553813 57.982122) + (xy 115.316343 58.080485) (xy 115.316331 58.080491) (xy 115.097184 58.214785) (xy 115.097176 58.214791) + (xy 115.095463 58.216252) (xy 115.663438 58.784227) (xy 115.657374 58.78674) (xy 115.518156 58.879762) + (xy 115.399762 58.998156) (xy 115.30674 59.137374) (xy 115.304227 59.143438) (xy 114.736252 58.575463) + (xy 114.734791 58.577176) (xy 114.734785 58.577184) (xy 114.600491 58.796331) (xy 114.600485 58.796343) + (xy 114.502122 59.033813) (xy 114.442116 59.283754) (xy 114.42195 59.54) (xy 93.378049 59.54) (xy 93.357883 59.283754) + (xy 93.297877 59.033813) (xy 93.199514 58.796343) (xy 93.199508 58.796331) (xy 93.065211 58.577179) + (xy 93.063746 58.575463) (xy 92.495771 59.143437) (xy 92.49326 59.137374) (xy 92.400238 58.998156) + (xy 92.281844 58.879762) (xy 92.142626 58.78674) (xy 92.136559 58.784227) (xy 92.704535 58.216252) + (xy 92.702824 58.214791) (xy 92.702819 58.214787) (xy 92.483668 58.080491) (xy 92.483656 58.080485) + (xy 92.246186 57.982122) (xy 92.246187 57.982122) (xy 91.996245 57.922116) (xy 91.74 57.90195) (xy 91.483754 57.922116) + (xy 91.233813 57.982122) (xy 90.996343 58.080485) (xy 90.996331 58.080491) (xy 90.777184 58.214785) + (xy 90.777176 58.214791) (xy 90.775463 58.216252) (xy 91.343438 58.784227) (xy 91.337374 58.78674) + (xy 91.198156 58.879762) (xy 91.079762 58.998156) (xy 90.98674 59.137374) (xy 90.984227 59.143438) + (xy 90.416252 58.575463) (xy 90.414791 58.577176) (xy 90.414785 58.577184) (xy 90.280491 58.796331) + (xy 90.280485 58.796343) (xy 90.182122 59.033813) (xy 90.122116 59.283754) (xy 90.10195 59.54) (xy 88.298049 59.54) + (xy 88.277883 59.283754) (xy 88.217877 59.033813) (xy 88.119514 58.796343) (xy 88.119508 58.796331) + (xy 87.985211 58.577179) (xy 87.983746 58.575463) (xy 87.415771 59.143437) (xy 87.41326 59.137374) + (xy 87.320238 58.998156) (xy 87.201844 58.879762) (xy 87.062626 58.78674) (xy 87.056559 58.784227) + (xy 87.624535 58.216252) (xy 87.622824 58.214791) (xy 87.622819 58.214787) (xy 87.403668 58.080491) + (xy 87.403656 58.080485) (xy 87.166186 57.982122) (xy 87.166187 57.982122) (xy 86.916245 57.922116) + (xy 86.66 57.90195) (xy 86.403754 57.922116) (xy 86.153813 57.982122) (xy 85.916343 58.080485) (xy 85.916331 58.080491) + (xy 85.697184 58.214785) (xy 85.697176 58.214791) (xy 85.695463 58.216252) (xy 86.263438 58.784227) + (xy 86.257374 58.78674) (xy 86.118156 58.879762) (xy 85.999762 58.998156) (xy 85.90674 59.137374) + (xy 85.904227 59.143438) (xy 85.336252 58.575463) (xy 85.334791 58.577176) (xy 85.334785 58.577184) + (xy 85.200491 58.796331) (xy 85.200485 58.796343) (xy 85.102122 59.033813) (xy 85.042116 59.283754) + (xy 85.02195 59.54) (xy 81.857812 59.54) (xy 82.007311 59.390501) (xy 82.007314 59.3905) (xy 82.1005 59.297314) + (xy 82.166392 59.183186) (xy 82.176189 59.146623) (xy 82.2005 59.055893) (xy 82.2005 58.924108) + (xy 82.2005 56.999996) (xy 87.919628 56.999996) (xy 87.919628 57.000003) (xy 87.939078 57.222326) + (xy 87.939079 57.222333) (xy 87.93908 57.222334) (xy 87.996844 57.437913) (xy 88.072426 57.599999) + (xy 88.091164 57.640184) (xy 88.208032 57.80709) (xy 88.219178 57.823007) (xy 88.376993 57.980822) + (xy 88.376996 57.980824) (xy 88.376997 57.980825) (xy 88.393839 57.992618) (xy 88.559814 58.108835) + (xy 88.762087 58.203156) (xy 88.977666 58.26092) (xy 88.97767 58.26092) (xy 88.977673 58.260921) + (xy 89.199997 58.280372) (xy 89.2 58.280372) (xy 89.200003 58.280372) (xy 89.422326 58.260921) (xy 89.422327 58.26092) + (xy 89.422334 58.26092) (xy 89.637913 58.203156) (xy 89.840186 58.108835) (xy 90.023007 57.980822) + (xy 90.180822 57.823007) (xy 90.308835 57.640186) (xy 90.403156 57.437913) (xy 90.46092 57.222334) + (xy 90.462229 57.207379) (xy 90.480372 57.000003) (xy 90.480372 56.999996) (xy 90.460921 56.777673) + (xy 90.46092 56.77767) (xy 90.46092 56.777666) (xy 90.403156 56.562087) (xy 90.308835 56.359814) + (xy 90.18624 56.18473) (xy 90.180825 56.176997) (xy 90.180824 56.176996) (xy 90.180822 56.176993) + (xy 90.023007 56.019178) (xy 90.023003 56.019175) (xy 90.023002 56.019174) (xy 89.880664 55.919508) + (xy 89.840186 55.891165) (xy 89.637913 55.796844) (xy 89.422334 55.73908) (xy 89.422333 55.739079) + (xy 89.422326 55.739078) (xy 89.200003 55.719628) (xy 89.199997 55.719628) (xy 88.977673 55.739078) + (xy 88.762087 55.796844) (xy 88.559815 55.891164) (xy 88.376997 56.019174) (xy 88.219174 56.176997) + (xy 88.091164 56.359815) (xy 87.996844 56.562087) (xy 87.939078 56.777673) (xy 87.919628 56.999996) + (xy 82.2005 56.999996) (xy 82.2005 54.46) (xy 85.02195 54.46) (xy 85.042116 54.716245) (xy 85.102122 54.966186) + (xy 85.200485 55.203656) (xy 85.200491 55.203668) (xy 85.334787 55.422819) (xy 85.334791 55.422824) + (xy 85.336252 55.424535) (xy 85.904227 54.856559) (xy 85.90674 54.862626) (xy 85.999762 55.001844) + (xy 86.118156 55.120238) (xy 86.257374 55.21326) (xy 86.263437 55.215771) (xy 85.695463 55.783746) + (xy 85.697179 55.785211) (xy 85.916331 55.919508) (xy 85.916343 55.919514) (xy 86.153813 56.017877) + (xy 86.153812 56.017877) (xy 86.403754 56.077883) (xy 86.66 56.098049) (xy 86.916245 56.077883) + (xy 87.166186 56.017877) (xy 87.403656 55.919514) (xy 87.403668 55.919508) (xy 87.622818 55.785213) + (xy 87.624535 55.783746) (xy 87.056561 55.215772) (xy 87.062626 55.21326) (xy 87.201844 55.120238) + (xy 87.320238 55.001844) (xy 87.41326 54.862626) (xy 87.415772 54.856561) (xy 87.983746 55.424535) + (xy 87.985213 55.422818) (xy 88.119508 55.203668) (xy 88.119514 55.203656) (xy 88.217877 54.966186) + (xy 88.277883 54.716245) (xy 88.298049 54.46) (xy 90.10195 54.46) (xy 90.122116 54.716245) (xy 90.182122 54.966186) + (xy 90.280485 55.203656) (xy 90.280491 55.203668) (xy 90.414787 55.422819) (xy 90.414791 55.422824) + (xy 90.416252 55.424535) (xy 90.984227 54.856559) (xy 90.98674 54.862626) (xy 91.079762 55.001844) + (xy 91.198156 55.120238) (xy 91.337374 55.21326) (xy 91.343437 55.215771) (xy 90.775463 55.783746) + (xy 90.777179 55.785211) (xy 90.996331 55.919508) (xy 90.996343 55.919514) (xy 91.233813 56.017877) + (xy 91.233812 56.017877) (xy 91.483754 56.077883) (xy 91.74 56.098049) (xy 91.996245 56.077883) + (xy 92.246186 56.017877) (xy 92.483656 55.919514) (xy 92.483668 55.919508) (xy 92.702818 55.785213) + (xy 92.704535 55.783746) (xy 92.136561 55.215772) (xy 92.142626 55.21326) (xy 92.281844 55.120238) + (xy 92.400238 55.001844) (xy 92.49326 54.862626) (xy 92.495772 54.856561) (xy 93.063746 55.424535) + (xy 93.065213 55.422818) (xy 93.199508 55.203668) (xy 93.199514 55.203656) (xy 93.297877 54.966186) + (xy 93.357883 54.716245) (xy 93.378049 54.46) (xy 93.357883 54.203754) (xy 93.297877 53.953813) + (xy 93.199514 53.716343) (xy 93.199508 53.716331) (xy 93.065211 53.497179) (xy 93.063746 53.495463) + (xy 92.495771 54.063437) (xy 92.49326 54.057374) (xy 92.400238 53.918156) (xy 92.281844 53.799762) + (xy 92.142626 53.70674) (xy 92.136559 53.704227) (xy 92.704535 53.136252) (xy 92.702824 53.134791) + (xy 92.702819 53.134787) (xy 92.483668 53.000491) (xy 92.483656 53.000485) (xy 92.246186 52.902122) + (xy 92.246187 52.902122) (xy 91.996245 52.842116) (xy 91.74 52.82195) (xy 91.483754 52.842116) (xy 91.233813 52.902122) + (xy 90.996343 53.000485) (xy 90.996331 53.000491) (xy 90.777184 53.134785) (xy 90.777176 53.134791) + (xy 90.775463 53.136252) (xy 91.343438 53.704227) (xy 91.337374 53.70674) (xy 91.198156 53.799762) + (xy 91.079762 53.918156) (xy 90.98674 54.057374) (xy 90.984227 54.063438) (xy 90.416252 53.495463) + (xy 90.414791 53.497176) (xy 90.414785 53.497184) (xy 90.280491 53.716331) (xy 90.280485 53.716343) + (xy 90.182122 53.953813) (xy 90.122116 54.203754) (xy 90.10195 54.46) (xy 88.298049 54.46) (xy 88.277883 54.203754) + (xy 88.217877 53.953813) (xy 88.119514 53.716343) (xy 88.119508 53.716331) (xy 87.985211 53.497179) + (xy 87.983746 53.495463) (xy 87.415771 54.063437) (xy 87.41326 54.057374) (xy 87.320238 53.918156) + (xy 87.201844 53.799762) (xy 87.062626 53.70674) (xy 87.056559 53.704227) (xy 87.624535 53.136252) + (xy 87.622824 53.134791) (xy 87.622819 53.134787) (xy 87.403668 53.000491) (xy 87.403656 53.000485) + (xy 87.166186 52.902122) (xy 87.166187 52.902122) (xy 86.916245 52.842116) (xy 86.66 52.82195) (xy 86.403754 52.842116) + (xy 86.153813 52.902122) (xy 85.916343 53.000485) (xy 85.916331 53.000491) (xy 85.697184 53.134785) + (xy 85.697176 53.134791) (xy 85.695463 53.136252) (xy 86.263438 53.704227) (xy 86.257374 53.70674) + (xy 86.118156 53.799762) (xy 85.999762 53.918156) (xy 85.90674 54.057374) (xy 85.904227 54.063438) + (xy 85.336252 53.495463) (xy 85.334791 53.497176) (xy 85.334785 53.497184) (xy 85.200491 53.716331) + (xy 85.200485 53.716343) (xy 85.102122 53.953813) (xy 85.042116 54.203754) (xy 85.02195 54.46) (xy 82.2005 54.46) + (xy 82.2005 52.96832) (xy 82.219407 52.910129) (xy 82.22949 52.898322) (xy 84.877812 50.249999) + (xy 97.94475 50.249999) (xy 97.94475 50.25) (xy 97.963669 50.393708) (xy 97.96367 50.393709) (xy 98.013358 50.51367) + (xy 98.019139 50.527625) (xy 98.107379 50.642621) (xy 98.222375 50.730861) (xy 98.356291 50.78633) + (xy 98.494564 50.804534) (xy 98.549789 50.830875) (xy 98.551646 50.832683) (xy 104.795504 57.076541) + (xy 104.823281 57.131058) (xy 104.8245 57.146545) (xy 104.8245 57.15146) (xy 104.805593 57.209651) + (xy 104.804042 57.211728) (xy 104.719139 57.322374) (xy 104.719137 57.322378) (xy 104.66367 57.45629) + (xy 104.663669 57.456291) (xy 104.64475 57.599999) (xy 104.64475 57.6) (xy 104.663669 57.743708) + (xy 104.66367 57.743709) (xy 104.719139 57.877625) (xy 104.807379 57.992621) (xy 104.922375 58.080861) + (xy 105.056291 58.13633) (xy 105.2 58.15525) (xy 105.343709 58.13633) (xy 105.477625 58.080861) + (xy 105.592621 57.992621) (xy 105.680861 57.877625) (xy 105.73633 57.743709) (xy 105.75525 57.6) + (xy 105.73633 57.456291) (xy 105.680861 57.322375) (xy 105.595957 57.211727) (xy 105.575534 57.154052) + (xy 105.5755 57.15146) (xy 105.5755 56.999996) (xy 117.319628 56.999996) (xy 117.319628 57.000003) + (xy 117.339078 57.222326) (xy 117.339079 57.222333) (xy 117.33908 57.222334) (xy 117.396844 57.437913) + (xy 117.472426 57.599999) (xy 117.491164 57.640184) (xy 117.608032 57.80709) (xy 117.619178 57.823007) + (xy 117.776993 57.980822) (xy 117.776996 57.980824) (xy 117.776997 57.980825) (xy 117.793839 57.992618) + (xy 117.959814 58.108835) (xy 118.162087 58.203156) (xy 118.377666 58.26092) (xy 118.37767 58.26092) + (xy 118.377673 58.260921) (xy 118.599997 58.280372) (xy 118.6 58.280372) (xy 118.600003 58.280372) + (xy 118.822326 58.260921) (xy 118.822327 58.26092) (xy 118.822334 58.26092) (xy 119.037913 58.203156) + (xy 119.240186 58.108835) (xy 119.423007 57.980822) (xy 119.580822 57.823007) (xy 119.708835 57.640186) + (xy 119.803156 57.437913) (xy 119.86092 57.222334) (xy 119.862229 57.207379) (xy 119.880372 57.000003) + (xy 119.880372 56.999996) (xy 137.819628 56.999996) (xy 137.819628 57.000003) (xy 137.839078 57.222326) + (xy 137.839079 57.222333) (xy 137.83908 57.222334) (xy 137.896844 57.437913) (xy 137.972426 57.599999) + (xy 137.991164 57.640184) (xy 138.108032 57.80709) (xy 138.119178 57.823007) (xy 138.276993 57.980822) + (xy 138.276996 57.980824) (xy 138.276997 57.980825) (xy 138.293839 57.992618) (xy 138.459814 58.108835) + (xy 138.662087 58.203156) (xy 138.877666 58.26092) (xy 138.87767 58.26092) (xy 138.877673 58.260921) + (xy 139.099997 58.280372) (xy 139.1 58.280372) (xy 139.100003 58.280372) (xy 139.322326 58.260921) + (xy 139.322327 58.26092) (xy 139.322334 58.26092) (xy 139.537913 58.203156) (xy 139.740186 58.108835) + (xy 139.923007 57.980822) (xy 140.080822 57.823007) (xy 140.208835 57.640186) (xy 140.303156 57.437913) + (xy 140.36092 57.222334) (xy 140.362229 57.207379) (xy 140.380372 57.000003) (xy 140.380372 56.999996) + (xy 140.371623 56.899996) (xy 151.819628 56.899996) (xy 151.819628 56.900003) (xy 151.839078 57.122326) + (xy 151.839079 57.122333) (xy 151.83908 57.122334) (xy 151.892681 57.322378) (xy 151.896844 57.337912) + (xy 151.991164 57.540184) (xy 152.061184 57.640184) (xy 152.119178 57.723007) (xy 152.276993 57.880822) + (xy 152.276996 57.880824) (xy 152.276997 57.880825) (xy 152.307167 57.90195) (xy 152.459814 58.008835) + (xy 152.662087 58.103156) (xy 152.877666 58.16092) (xy 152.87767 58.16092) (xy 152.877673 58.160921) + (xy 153.099997 58.180372) (xy 153.1 58.180372) (xy 153.100003 58.180372) (xy 153.322326 58.160921) + (xy 153.322327 58.16092) (xy 153.322334 58.16092) (xy 153.537913 58.103156) (xy 153.740186 58.008835) + (xy 153.923007 57.880822) (xy 154.080822 57.723007) (xy 154.208835 57.540186) (xy 154.303156 57.337913) + (xy 154.36092 57.122334) (xy 154.364927 57.076541) (xy 154.380372 56.900003) (xy 154.380372 56.899996) + (xy 165.819628 56.899996) (xy 165.819628 56.900003) (xy 165.839078 57.122326) (xy 165.839079 57.122333) + (xy 165.83908 57.122334) (xy 165.892681 57.322378) (xy 165.896844 57.337912) (xy 165.991164 57.540184) + (xy 166.061184 57.640184) (xy 166.119178 57.723007) (xy 166.276993 57.880822) (xy 166.276996 57.880824) + (xy 166.276997 57.880825) (xy 166.307167 57.90195) (xy 166.459814 58.008835) (xy 166.662087 58.103156) + (xy 166.877666 58.16092) (xy 166.87767 58.16092) (xy 166.877673 58.160921) (xy 167.099997 58.180372) + (xy 167.1 58.180372) (xy 167.100003 58.180372) (xy 167.322326 58.160921) (xy 167.322327 58.16092) + (xy 167.322334 58.16092) (xy 167.537913 58.103156) (xy 167.740186 58.008835) (xy 167.923007 57.880822) + (xy 168.080822 57.723007) (xy 168.208835 57.540186) (xy 168.303156 57.337913) (xy 168.36092 57.122334) + (xy 168.364927 57.076541) (xy 168.380372 56.900003) (xy 168.380372 56.899996) (xy 179.819628 56.899996) + (xy 179.819628 56.900003) (xy 179.839078 57.122326) (xy 179.839079 57.122333) (xy 179.83908 57.122334) + (xy 179.892681 57.322378) (xy 179.896844 57.337912) (xy 179.991164 57.540184) (xy 180.061184 57.640184) + (xy 180.119178 57.723007) (xy 180.276993 57.880822) (xy 180.276996 57.880824) (xy 180.276997 57.880825) + (xy 180.307167 57.90195) (xy 180.459814 58.008835) (xy 180.662087 58.103156) (xy 180.877666 58.16092) + (xy 180.87767 58.16092) (xy 180.877673 58.160921) (xy 181.099997 58.180372) (xy 181.1 58.180372) + (xy 181.100003 58.180372) (xy 181.322326 58.160921) (xy 181.322327 58.16092) (xy 181.322334 58.16092) + (xy 181.537913 58.103156) (xy 181.740186 58.008835) (xy 181.923007 57.880822) (xy 182.080822 57.723007) + (xy 182.208835 57.540186) (xy 182.303156 57.337913) (xy 182.36092 57.122334) (xy 182.364927 57.076541) + (xy 182.380372 56.900003) (xy 182.380372 56.899996) (xy 182.360921 56.677673) (xy 182.36092 56.67767) + (xy 182.36092 56.677666) (xy 182.303156 56.462087) (xy 182.208835 56.259814) (xy 182.080822 56.076993) + (xy 181.923007 55.919178) (xy 181.923003 55.919175) (xy 181.923002 55.919174) (xy 181.759587 55.80475) + (xy 181.740186 55.791165) (xy 181.537913 55.696844) (xy 181.322334 55.63908) (xy 181.322333 55.639079) + (xy 181.322326 55.639078) (xy 181.100003 55.619628) (xy 181.099997 55.619628) (xy 180.877673 55.639078) + (xy 180.662087 55.696844) (xy 180.459815 55.791164) (xy 180.276997 55.919174) (xy 180.119174 56.076997) + (xy 179.991164 56.259815) (xy 179.896844 56.462087) (xy 179.839078 56.677673) (xy 179.819628 56.899996) + (xy 168.380372 56.899996) (xy 168.360921 56.677673) (xy 168.36092 56.67767) (xy 168.36092 56.677666) + (xy 168.303156 56.462087) (xy 168.208835 56.259814) (xy 168.080822 56.076993) (xy 167.923007 55.919178) + (xy 167.923003 55.919175) (xy 167.923002 55.919174) (xy 167.759587 55.80475) (xy 167.740186 55.791165) + (xy 167.537913 55.696844) (xy 167.322334 55.63908) (xy 167.322333 55.639079) (xy 167.322326 55.639078) + (xy 167.100003 55.619628) (xy 167.099997 55.619628) (xy 166.877673 55.639078) (xy 166.662087 55.696844) + (xy 166.459815 55.791164) (xy 166.276997 55.919174) (xy 166.119174 56.076997) (xy 165.991164 56.259815) + (xy 165.896844 56.462087) (xy 165.839078 56.677673) (xy 165.819628 56.899996) (xy 154.380372 56.899996) + (xy 154.360921 56.677673) (xy 154.36092 56.67767) (xy 154.36092 56.677666) (xy 154.303156 56.462087) + (xy 154.208835 56.259814) (xy 154.080822 56.076993) (xy 153.923007 55.919178) (xy 153.923003 55.919175) + (xy 153.923002 55.919174) (xy 153.759587 55.80475) (xy 153.740186 55.791165) (xy 153.537913 55.696844) + (xy 153.322334 55.63908) (xy 153.322333 55.639079) (xy 153.322326 55.639078) (xy 153.100003 55.619628) + (xy 153.099997 55.619628) (xy 152.877673 55.639078) (xy 152.662087 55.696844) (xy 152.459815 55.791164) + (xy 152.276997 55.919174) (xy 152.119174 56.076997) (xy 151.991164 56.259815) (xy 151.896844 56.462087) + (xy 151.839078 56.677673) (xy 151.819628 56.899996) (xy 140.371623 56.899996) (xy 140.360921 56.777673) + (xy 140.36092 56.77767) (xy 140.36092 56.777666) (xy 140.303156 56.562087) (xy 140.208835 56.359814) + (xy 140.08624 56.18473) (xy 140.080825 56.176997) (xy 140.080824 56.176996) (xy 140.080822 56.176993) + (xy 139.923007 56.019178) (xy 139.923003 56.019175) (xy 139.923002 56.019174) (xy 139.780664 55.919508) + (xy 139.740186 55.891165) (xy 139.537913 55.796844) (xy 139.322334 55.73908) (xy 139.322333 55.739079) + (xy 139.322326 55.739078) (xy 139.100003 55.719628) (xy 139.099997 55.719628) (xy 138.877673 55.739078) + (xy 138.662087 55.796844) (xy 138.459815 55.891164) (xy 138.276997 56.019174) (xy 138.119174 56.176997) + (xy 137.991164 56.359815) (xy 137.896844 56.562087) (xy 137.839078 56.777673) (xy 137.819628 56.999996) + (xy 119.880372 56.999996) (xy 119.860921 56.777673) (xy 119.86092 56.77767) (xy 119.86092 56.777666) + (xy 119.803156 56.562087) (xy 119.708835 56.359814) (xy 119.58624 56.18473) (xy 119.580825 56.176997) + (xy 119.580824 56.176996) (xy 119.580822 56.176993) (xy 119.423007 56.019178) (xy 119.423003 56.019175) + (xy 119.423002 56.019174) (xy 119.280664 55.919508) (xy 119.240186 55.891165) (xy 119.037913 55.796844) + (xy 118.822334 55.73908) (xy 118.822333 55.739079) (xy 118.822326 55.739078) (xy 118.600003 55.719628) + (xy 118.599997 55.719628) (xy 118.377673 55.739078) (xy 118.162087 55.796844) (xy 117.959815 55.891164) + (xy 117.776997 56.019174) (xy 117.619174 56.176997) (xy 117.491164 56.359815) (xy 117.396844 56.562087) + (xy 117.339078 56.777673) (xy 117.319628 56.999996) (xy 105.5755 56.999996) (xy 105.5755 56.900566) + (xy 105.575349 56.900003) (xy 105.564663 56.860121) (xy 105.567865 56.799022) (xy 105.606371 56.751472) + (xy 105.66029 56.7355) (xy 105.991461 56.7355) (xy 106.049652 56.754407) (xy 106.051685 56.755925) + (xy 106.162375 56.840861) (xy 106.296291 56.89633) (xy 106.44 56.91525) (xy 106.583709 56.89633) + (xy 106.717625 56.840861) (xy 106.832621 56.752621) (xy 106.920861 56.637625) (xy 106.97633 56.503709) + (xy 106.99525 56.36) (xy 106.97633 56.216291) (xy 106.920861 56.082375) (xy 106.832621 55.967379) + (xy 106.717625 55.879139) (xy 106.717621 55.879137) (xy 106.583709 55.82367) (xy 106.583708 55.823669) + (xy 106.44 55.80475) (xy 106.296291 55.823669) (xy 106.29629 55.82367) (xy 106.162378 55.879137) + (xy 106.162374 55.879139) (xy 106.146702 55.891165) (xy 106.051726 55.964042) (xy 105.994053 55.984466) + (xy 105.991461 55.9845) (xy 105.856545 55.9845) (xy 105.798354 55.965593) (xy 105.786541 55.955504) + (xy 104.291037 54.46) (xy 114.42195 54.46) (xy 114.442116 54.716245) (xy 114.502122 54.966186) (xy 114.600485 55.203656) + (xy 114.600491 55.203668) (xy 114.734787 55.422819) (xy 114.734791 55.422824) (xy 114.736252 55.424535) + (xy 115.304227 54.856559) (xy 115.30674 54.862626) (xy 115.399762 55.001844) (xy 115.518156 55.120238) + (xy 115.657374 55.21326) (xy 115.663437 55.215771) (xy 115.095463 55.783746) (xy 115.097179 55.785211) + (xy 115.316331 55.919508) (xy 115.316343 55.919514) (xy 115.553813 56.017877) (xy 115.553812 56.017877) + (xy 115.803754 56.077883) (xy 116.06 56.098049) (xy 116.316245 56.077883) (xy 116.566186 56.017877) + (xy 116.803656 55.919514) (xy 116.803668 55.919508) (xy 117.022818 55.785213) (xy 117.024535 55.783746) + (xy 116.456561 55.215772) (xy 116.462626 55.21326) (xy 116.601844 55.120238) (xy 116.720238 55.001844) + (xy 116.81326 54.862626) (xy 116.815772 54.856561) (xy 117.383746 55.424535) (xy 117.385213 55.422818) + (xy 117.519508 55.203668) (xy 117.519514 55.203656) (xy 117.617877 54.966186) (xy 117.677883 54.716245) + (xy 117.698049 54.46) (xy 119.50195 54.46) (xy 119.522116 54.716245) (xy 119.582122 54.966186) (xy 119.680485 55.203656) + (xy 119.680491 55.203668) (xy 119.814787 55.422819) (xy 119.814791 55.422824) (xy 119.816252 55.424535) + (xy 120.384227 54.856559) (xy 120.38674 54.862626) (xy 120.479762 55.001844) (xy 120.598156 55.120238) + (xy 120.737374 55.21326) (xy 120.743437 55.215771) (xy 120.175463 55.783746) (xy 120.177179 55.785211) + (xy 120.396331 55.919508) (xy 120.396343 55.919514) (xy 120.633813 56.017877) (xy 120.633812 56.017877) + (xy 120.883754 56.077883) (xy 121.14 56.098049) (xy 121.396245 56.077883) (xy 121.646186 56.017877) + (xy 121.883656 55.919514) (xy 121.883668 55.919508) (xy 122.102818 55.785213) (xy 122.104535 55.783746) + (xy 121.536561 55.215772) (xy 121.542626 55.21326) (xy 121.681844 55.120238) (xy 121.800238 55.001844) + (xy 121.89326 54.862626) (xy 121.895772 54.856561) (xy 122.463746 55.424535) (xy 122.465213 55.422818) + (xy 122.599508 55.203668) (xy 122.599514 55.203656) (xy 122.697877 54.966186) (xy 122.757883 54.716245) + (xy 122.778049 54.46) (xy 134.92195 54.46) (xy 134.942116 54.716245) (xy 135.002122 54.966186) (xy 135.100485 55.203656) + (xy 135.100491 55.203668) (xy 135.234787 55.422819) (xy 135.234791 55.422824) (xy 135.236252 55.424535) + (xy 135.804227 54.856559) (xy 135.80674 54.862626) (xy 135.899762 55.001844) (xy 136.018156 55.120238) + (xy 136.157374 55.21326) (xy 136.163437 55.215771) (xy 135.595463 55.783746) (xy 135.597179 55.785211) + (xy 135.816331 55.919508) (xy 135.816343 55.919514) (xy 136.053813 56.017877) (xy 136.053812 56.017877) + (xy 136.303754 56.077883) (xy 136.56 56.098049) (xy 136.816245 56.077883) (xy 137.066186 56.017877) + (xy 137.303656 55.919514) (xy 137.303668 55.919508) (xy 137.522818 55.785213) (xy 137.524535 55.783746) + (xy 136.956561 55.215772) (xy 136.962626 55.21326) (xy 137.101844 55.120238) (xy 137.220238 55.001844) + (xy 137.31326 54.862626) (xy 137.315772 54.856561) (xy 137.883746 55.424535) (xy 137.885213 55.422818) + (xy 138.019508 55.203668) (xy 138.019514 55.203656) (xy 138.117877 54.966186) (xy 138.177883 54.716245) + (xy 138.198049 54.46) (xy 140.00195 54.46) (xy 140.022116 54.716245) (xy 140.082122 54.966186) (xy 140.180485 55.203656) + (xy 140.180491 55.203668) (xy 140.314787 55.422819) (xy 140.314791 55.422824) (xy 140.316252 55.424535) + (xy 140.884227 54.856559) (xy 140.88674 54.862626) (xy 140.979762 55.001844) (xy 141.098156 55.120238) + (xy 141.237374 55.21326) (xy 141.243437 55.215771) (xy 140.675463 55.783746) (xy 140.677179 55.785211) + (xy 140.896331 55.919508) (xy 140.896343 55.919514) (xy 141.133813 56.017877) (xy 141.133812 56.017877) + (xy 141.383754 56.077883) (xy 141.64 56.098049) (xy 141.896245 56.077883) (xy 142.146186 56.017877) + (xy 142.383656 55.919514) (xy 142.383668 55.919508) (xy 142.602818 55.785213) (xy 142.604535 55.783746) + (xy 142.036561 55.215772) (xy 142.042626 55.21326) (xy 142.181844 55.120238) (xy 142.300238 55.001844) + (xy 142.39326 54.862626) (xy 142.395772 54.856561) (xy 142.963746 55.424535) (xy 142.965213 55.422818) + (xy 143.099508 55.203668) (xy 143.099514 55.203656) (xy 143.197877 54.966186) (xy 143.257883 54.716245) + (xy 143.278049 54.46) (xy 143.270179 54.36) (xy 148.92195 54.36) (xy 148.942116 54.616245) (xy 149.002122 54.866186) + (xy 149.100485 55.103656) (xy 149.100491 55.103668) (xy 149.234787 55.322819) (xy 149.234791 55.322824) + (xy 149.236252 55.324535) (xy 149.804227 54.756559) (xy 149.80674 54.762626) (xy 149.899762 54.901844) + (xy 150.018156 55.020238) (xy 150.157374 55.11326) (xy 150.163437 55.115771) (xy 149.595463 55.683746) + (xy 149.597179 55.685211) (xy 149.816331 55.819508) (xy 149.816343 55.819514) (xy 150.053813 55.917877) + (xy 150.053812 55.917877) (xy 150.303754 55.977883) (xy 150.56 55.998049) (xy 150.816245 55.977883) + (xy 151.066186 55.917877) (xy 151.303656 55.819514) (xy 151.303668 55.819508) (xy 151.522818 55.685213) + (xy 151.524535 55.683746) (xy 150.956561 55.115772) (xy 150.962626 55.11326) (xy 151.101844 55.020238) + (xy 151.220238 54.901844) (xy 151.31326 54.762626) (xy 151.315772 54.756561) (xy 151.883746 55.324535) + (xy 151.885213 55.322818) (xy 152.019508 55.103668) (xy 152.019514 55.103656) (xy 152.117877 54.866186) + (xy 152.177883 54.616245) (xy 152.198049 54.36) (xy 154.00195 54.36) (xy 154.022116 54.616245) (xy 154.082122 54.866186) + (xy 154.180485 55.103656) (xy 154.180491 55.103668) (xy 154.314787 55.322819) (xy 154.314791 55.322824) + (xy 154.316252 55.324535) (xy 154.884227 54.756559) (xy 154.88674 54.762626) (xy 154.979762 54.901844) + (xy 155.098156 55.020238) (xy 155.237374 55.11326) (xy 155.243437 55.115771) (xy 154.675463 55.683746) + (xy 154.677179 55.685211) (xy 154.896331 55.819508) (xy 154.896343 55.819514) (xy 155.133813 55.917877) + (xy 155.133812 55.917877) (xy 155.383754 55.977883) (xy 155.64 55.998049) (xy 155.896245 55.977883) + (xy 156.146186 55.917877) (xy 156.383656 55.819514) (xy 156.383668 55.819508) (xy 156.602818 55.685213) + (xy 156.604535 55.683746) (xy 156.036561 55.115772) (xy 156.042626 55.11326) (xy 156.181844 55.020238) + (xy 156.300238 54.901844) (xy 156.39326 54.762626) (xy 156.395772 54.756561) (xy 156.963746 55.324535) + (xy 156.965213 55.322818) (xy 157.099508 55.103668) (xy 157.099514 55.103656) (xy 157.197877 54.866186) + (xy 157.257883 54.616245) (xy 157.278049 54.36) (xy 162.92195 54.36) (xy 162.942116 54.616245) (xy 163.002122 54.866186) + (xy 163.100485 55.103656) (xy 163.100491 55.103668) (xy 163.234787 55.322819) (xy 163.234791 55.322824) + (xy 163.236252 55.324535) (xy 163.804227 54.756559) (xy 163.80674 54.762626) (xy 163.899762 54.901844) + (xy 164.018156 55.020238) (xy 164.157374 55.11326) (xy 164.163437 55.115771) (xy 163.595463 55.683746) + (xy 163.597179 55.685211) (xy 163.816331 55.819508) (xy 163.816343 55.819514) (xy 164.053813 55.917877) + (xy 164.053812 55.917877) (xy 164.303754 55.977883) (xy 164.56 55.998049) (xy 164.816245 55.977883) + (xy 165.066186 55.917877) (xy 165.303656 55.819514) (xy 165.303668 55.819508) (xy 165.522818 55.685213) + (xy 165.524535 55.683746) (xy 164.956561 55.115772) (xy 164.962626 55.11326) (xy 165.101844 55.020238) + (xy 165.220238 54.901844) (xy 165.31326 54.762626) (xy 165.315772 54.756561) (xy 165.883746 55.324535) + (xy 165.885213 55.322818) (xy 166.019508 55.103668) (xy 166.019514 55.103656) (xy 166.117877 54.866186) + (xy 166.177883 54.616245) (xy 166.198049 54.36) (xy 168.00195 54.36) (xy 168.022116 54.616245) (xy 168.082122 54.866186) + (xy 168.180485 55.103656) (xy 168.180491 55.103668) (xy 168.314787 55.322819) (xy 168.314791 55.322824) + (xy 168.316252 55.324535) (xy 168.884227 54.756559) (xy 168.88674 54.762626) (xy 168.979762 54.901844) + (xy 169.098156 55.020238) (xy 169.237374 55.11326) (xy 169.243437 55.115771) (xy 168.675463 55.683746) + (xy 168.677179 55.685211) (xy 168.896331 55.819508) (xy 168.896343 55.819514) (xy 169.133813 55.917877) + (xy 169.133812 55.917877) (xy 169.383754 55.977883) (xy 169.64 55.998049) (xy 169.896245 55.977883) + (xy 170.146186 55.917877) (xy 170.383656 55.819514) (xy 170.383668 55.819508) (xy 170.602818 55.685213) + (xy 170.604535 55.683746) (xy 170.036561 55.115772) (xy 170.042626 55.11326) (xy 170.181844 55.020238) + (xy 170.300238 54.901844) (xy 170.39326 54.762626) (xy 170.395772 54.756561) (xy 170.963746 55.324535) + (xy 170.965213 55.322818) (xy 171.099508 55.103668) (xy 171.099514 55.103656) (xy 171.197877 54.866186) + (xy 171.257883 54.616245) (xy 171.278049 54.36) (xy 176.92195 54.36) (xy 176.942116 54.616245) (xy 177.002122 54.866186) + (xy 177.100485 55.103656) (xy 177.100491 55.103668) (xy 177.234787 55.322819) (xy 177.234791 55.322824) + (xy 177.236252 55.324535) (xy 177.804227 54.756559) (xy 177.80674 54.762626) (xy 177.899762 54.901844) + (xy 178.018156 55.020238) (xy 178.157374 55.11326) (xy 178.163437 55.115771) (xy 177.595463 55.683746) + (xy 177.597179 55.685211) (xy 177.816331 55.819508) (xy 177.816343 55.819514) (xy 178.053813 55.917877) + (xy 178.053812 55.917877) (xy 178.303754 55.977883) (xy 178.56 55.998049) (xy 178.816245 55.977883) + (xy 179.066186 55.917877) (xy 179.303656 55.819514) (xy 179.303668 55.819508) (xy 179.522818 55.685213) + (xy 179.524535 55.683746) (xy 178.956561 55.115772) (xy 178.962626 55.11326) (xy 179.101844 55.020238) + (xy 179.220238 54.901844) (xy 179.31326 54.762626) (xy 179.315772 54.756561) (xy 179.883746 55.324535) + (xy 179.885213 55.322818) (xy 180.019508 55.103668) (xy 180.019514 55.103656) (xy 180.117877 54.866186) + (xy 180.177883 54.616245) (xy 180.198049 54.36) (xy 182.00195 54.36) (xy 182.022116 54.616245) (xy 182.082122 54.866186) + (xy 182.180485 55.103656) (xy 182.180491 55.103668) (xy 182.314787 55.322819) (xy 182.314791 55.322824) + (xy 182.316252 55.324535) (xy 182.884227 54.756559) (xy 182.88674 54.762626) (xy 182.979762 54.901844) + (xy 183.098156 55.020238) (xy 183.237374 55.11326) (xy 183.243437 55.115771) (xy 182.675463 55.683746) + (xy 182.677179 55.685211) (xy 182.896331 55.819508) (xy 182.896343 55.819514) (xy 183.133813 55.917877) + (xy 183.133812 55.917877) (xy 183.383754 55.977883) (xy 183.64 55.998049) (xy 183.896245 55.977883) + (xy 184.146186 55.917877) (xy 184.383656 55.819514) (xy 184.383668 55.819508) (xy 184.602818 55.685213) + (xy 184.604535 55.683746) (xy 184.036561 55.115772) (xy 184.042626 55.11326) (xy 184.181844 55.020238) + (xy 184.300238 54.901844) (xy 184.39326 54.762626) (xy 184.395772 54.756561) (xy 184.963746 55.324535) + (xy 184.965213 55.322818) (xy 185.099508 55.103668) (xy 185.099514 55.103656) (xy 185.197877 54.866186) + (xy 185.257883 54.616245) (xy 185.278049 54.36) (xy 185.257883 54.103754) (xy 185.197877 53.853813) + (xy 185.099514 53.616343) (xy 185.099508 53.616331) (xy 184.965211 53.397179) (xy 184.963746 53.395463) + (xy 184.395771 53.963437) (xy 184.39326 53.957374) (xy 184.300238 53.818156) (xy 184.181844 53.699762) + (xy 184.042626 53.60674) (xy 184.036559 53.604227) (xy 184.604535 53.036252) (xy 184.602824 53.034791) + (xy 184.602819 53.034787) (xy 184.383668 52.900491) (xy 184.383656 52.900485) (xy 184.146186 52.802122) + (xy 184.146187 52.802122) (xy 183.896245 52.742116) (xy 183.64 52.72195) (xy 183.383754 52.742116) + (xy 183.133813 52.802122) (xy 182.896343 52.900485) (xy 182.896331 52.900491) (xy 182.677184 53.034785) + (xy 182.677176 53.034791) (xy 182.675463 53.036252) (xy 183.243438 53.604227) (xy 183.237374 53.60674) + (xy 183.098156 53.699762) (xy 182.979762 53.818156) (xy 182.88674 53.957374) (xy 182.884227 53.963438) + (xy 182.316252 53.395463) (xy 182.314791 53.397176) (xy 182.314785 53.397184) (xy 182.180491 53.616331) + (xy 182.180485 53.616343) (xy 182.082122 53.853813) (xy 182.022116 54.103754) (xy 182.00195 54.36) + (xy 180.198049 54.36) (xy 180.177883 54.103754) (xy 180.117877 53.853813) (xy 180.019514 53.616343) + (xy 180.019508 53.616331) (xy 179.885211 53.397179) (xy 179.883746 53.395463) (xy 179.315771 53.963437) + (xy 179.31326 53.957374) (xy 179.220238 53.818156) (xy 179.101844 53.699762) (xy 178.962626 53.60674) + (xy 178.956559 53.604227) (xy 179.524535 53.036252) (xy 179.522824 53.034791) (xy 179.522819 53.034787) + (xy 179.303668 52.900491) (xy 179.303656 52.900485) (xy 179.066186 52.802122) (xy 179.066187 52.802122) + (xy 178.816245 52.742116) (xy 178.56 52.72195) (xy 178.303754 52.742116) (xy 178.053813 52.802122) + (xy 177.816343 52.900485) (xy 177.816331 52.900491) (xy 177.597184 53.034785) (xy 177.597176 53.034791) + (xy 177.595463 53.036252) (xy 178.163438 53.604227) (xy 178.157374 53.60674) (xy 178.018156 53.699762) + (xy 177.899762 53.818156) (xy 177.80674 53.957374) (xy 177.804227 53.963438) (xy 177.236252 53.395463) + (xy 177.234791 53.397176) (xy 177.234785 53.397184) (xy 177.100491 53.616331) (xy 177.100485 53.616343) + (xy 177.002122 53.853813) (xy 176.942116 54.103754) (xy 176.92195 54.36) (xy 171.278049 54.36) (xy 171.257883 54.103754) + (xy 171.197877 53.853813) (xy 171.099514 53.616343) (xy 171.099508 53.616331) (xy 170.965211 53.397179) + (xy 170.963746 53.395463) (xy 170.395771 53.963437) (xy 170.39326 53.957374) (xy 170.300238 53.818156) + (xy 170.181844 53.699762) (xy 170.042626 53.60674) (xy 170.036559 53.604227) (xy 170.604535 53.036252) + (xy 170.602824 53.034791) (xy 170.602819 53.034787) (xy 170.383668 52.900491) (xy 170.383656 52.900485) + (xy 170.146186 52.802122) (xy 170.146187 52.802122) (xy 169.896245 52.742116) (xy 169.64 52.72195) + (xy 169.383754 52.742116) (xy 169.133813 52.802122) (xy 168.896343 52.900485) (xy 168.896331 52.900491) + (xy 168.677184 53.034785) (xy 168.677176 53.034791) (xy 168.675463 53.036252) (xy 169.243438 53.604227) + (xy 169.237374 53.60674) (xy 169.098156 53.699762) (xy 168.979762 53.818156) (xy 168.88674 53.957374) + (xy 168.884227 53.963438) (xy 168.316252 53.395463) (xy 168.314791 53.397176) (xy 168.314785 53.397184) + (xy 168.180491 53.616331) (xy 168.180485 53.616343) (xy 168.082122 53.853813) (xy 168.022116 54.103754) + (xy 168.00195 54.36) (xy 166.198049 54.36) (xy 166.177883 54.103754) (xy 166.117877 53.853813) (xy 166.019514 53.616343) + (xy 166.019508 53.616331) (xy 165.885211 53.397179) (xy 165.883746 53.395463) (xy 165.315771 53.963437) + (xy 165.31326 53.957374) (xy 165.220238 53.818156) (xy 165.101844 53.699762) (xy 164.962626 53.60674) + (xy 164.956559 53.604227) (xy 165.524535 53.036252) (xy 165.522824 53.034791) (xy 165.522819 53.034787) + (xy 165.303668 52.900491) (xy 165.303656 52.900485) (xy 165.066186 52.802122) (xy 165.066187 52.802122) + (xy 164.816245 52.742116) (xy 164.56 52.72195) (xy 164.303754 52.742116) (xy 164.053813 52.802122) + (xy 163.816343 52.900485) (xy 163.816331 52.900491) (xy 163.597184 53.034785) (xy 163.597176 53.034791) + (xy 163.595463 53.036252) (xy 164.163438 53.604227) (xy 164.157374 53.60674) (xy 164.018156 53.699762) + (xy 163.899762 53.818156) (xy 163.80674 53.957374) (xy 163.804227 53.963438) (xy 163.236252 53.395463) + (xy 163.234791 53.397176) (xy 163.234785 53.397184) (xy 163.100491 53.616331) (xy 163.100485 53.616343) + (xy 163.002122 53.853813) (xy 162.942116 54.103754) (xy 162.92195 54.36) (xy 157.278049 54.36) (xy 157.257883 54.103754) + (xy 157.197877 53.853813) (xy 157.099514 53.616343) (xy 157.099508 53.616331) (xy 156.965211 53.397179) + (xy 156.963746 53.395463) (xy 156.395771 53.963437) (xy 156.39326 53.957374) (xy 156.300238 53.818156) + (xy 156.181844 53.699762) (xy 156.042626 53.60674) (xy 156.036559 53.604227) (xy 156.604535 53.036252) + (xy 156.602824 53.034791) (xy 156.602819 53.034787) (xy 156.383668 52.900491) (xy 156.383656 52.900485) + (xy 156.146186 52.802122) (xy 156.146187 52.802122) (xy 155.896245 52.742116) (xy 155.64 52.72195) + (xy 155.383754 52.742116) (xy 155.133813 52.802122) (xy 154.896343 52.900485) (xy 154.896331 52.900491) + (xy 154.677184 53.034785) (xy 154.677176 53.034791) (xy 154.675463 53.036252) (xy 155.243438 53.604227) + (xy 155.237374 53.60674) (xy 155.098156 53.699762) (xy 154.979762 53.818156) (xy 154.88674 53.957374) + (xy 154.884227 53.963438) (xy 154.316252 53.395463) (xy 154.314791 53.397176) (xy 154.314785 53.397184) + (xy 154.180491 53.616331) (xy 154.180485 53.616343) (xy 154.082122 53.853813) (xy 154.022116 54.103754) + (xy 154.00195 54.36) (xy 152.198049 54.36) (xy 152.177883 54.103754) (xy 152.117877 53.853813) (xy 152.019514 53.616343) + (xy 152.019508 53.616331) (xy 151.885211 53.397179) (xy 151.883746 53.395463) (xy 151.315771 53.963437) + (xy 151.31326 53.957374) (xy 151.220238 53.818156) (xy 151.101844 53.699762) (xy 150.962626 53.60674) + (xy 150.956559 53.604227) (xy 151.524535 53.036252) (xy 151.522824 53.034791) (xy 151.522819 53.034787) + (xy 151.303668 52.900491) (xy 151.303656 52.900485) (xy 151.066186 52.802122) (xy 151.066187 52.802122) + (xy 150.816245 52.742116) (xy 150.56 52.72195) (xy 150.303754 52.742116) (xy 150.053813 52.802122) + (xy 149.816343 52.900485) (xy 149.816331 52.900491) (xy 149.597184 53.034785) (xy 149.597176 53.034791) + (xy 149.595463 53.036252) (xy 150.163438 53.604227) (xy 150.157374 53.60674) (xy 150.018156 53.699762) + (xy 149.899762 53.818156) (xy 149.80674 53.957374) (xy 149.804227 53.963438) (xy 149.236252 53.395463) + (xy 149.234791 53.397176) (xy 149.234785 53.397184) (xy 149.100491 53.616331) (xy 149.100485 53.616343) + (xy 149.002122 53.853813) (xy 148.942116 54.103754) (xy 148.92195 54.36) (xy 143.270179 54.36) (xy 143.257883 54.203754) + (xy 143.197877 53.953813) (xy 143.099514 53.716343) (xy 143.099508 53.716331) (xy 142.965211 53.497179) + (xy 142.963746 53.495463) (xy 142.395771 54.063437) (xy 142.39326 54.057374) (xy 142.300238 53.918156) + (xy 142.181844 53.799762) (xy 142.042626 53.70674) (xy 142.036559 53.704227) (xy 142.604535 53.136252) + (xy 142.602824 53.134791) (xy 142.602819 53.134787) (xy 142.383668 53.000491) (xy 142.383656 53.000485) + (xy 142.146186 52.902122) (xy 142.146187 52.902122) (xy 141.896245 52.842116) (xy 141.64 52.82195) + (xy 141.383754 52.842116) (xy 141.133813 52.902122) (xy 140.896343 53.000485) (xy 140.896331 53.000491) + (xy 140.677184 53.134785) (xy 140.677176 53.134791) (xy 140.675463 53.136252) (xy 141.243438 53.704227) + (xy 141.237374 53.70674) (xy 141.098156 53.799762) (xy 140.979762 53.918156) (xy 140.88674 54.057374) + (xy 140.884227 54.063438) (xy 140.316252 53.495463) (xy 140.314791 53.497176) (xy 140.314785 53.497184) + (xy 140.180491 53.716331) (xy 140.180485 53.716343) (xy 140.082122 53.953813) (xy 140.022116 54.203754) + (xy 140.00195 54.46) (xy 138.198049 54.46) (xy 138.177883 54.203754) (xy 138.117877 53.953813) (xy 138.019514 53.716343) + (xy 138.019508 53.716331) (xy 137.885211 53.497179) (xy 137.883746 53.495463) (xy 137.315771 54.063437) + (xy 137.31326 54.057374) (xy 137.220238 53.918156) (xy 137.101844 53.799762) (xy 136.962626 53.70674) + (xy 136.956559 53.704227) (xy 137.524535 53.136252) (xy 137.522824 53.134791) (xy 137.522819 53.134787) + (xy 137.303668 53.000491) (xy 137.303656 53.000485) (xy 137.066186 52.902122) (xy 137.066187 52.902122) + (xy 136.816245 52.842116) (xy 136.56 52.82195) (xy 136.303754 52.842116) (xy 136.053813 52.902122) + (xy 135.816343 53.000485) (xy 135.816331 53.000491) (xy 135.597184 53.134785) (xy 135.597176 53.134791) + (xy 135.595463 53.136252) (xy 136.163438 53.704227) (xy 136.157374 53.70674) (xy 136.018156 53.799762) + (xy 135.899762 53.918156) (xy 135.80674 54.057374) (xy 135.804227 54.063438) (xy 135.236252 53.495463) + (xy 135.234791 53.497176) (xy 135.234785 53.497184) (xy 135.100491 53.716331) (xy 135.100485 53.716343) + (xy 135.002122 53.953813) (xy 134.942116 54.203754) (xy 134.92195 54.46) (xy 122.778049 54.46) (xy 122.757883 54.203754) + (xy 122.697877 53.953813) (xy 122.599514 53.716343) (xy 122.599508 53.716331) (xy 122.465211 53.497179) + (xy 122.463746 53.495463) (xy 121.895771 54.063437) (xy 121.89326 54.057374) (xy 121.800238 53.918156) + (xy 121.681844 53.799762) (xy 121.542626 53.70674) (xy 121.536559 53.704227) (xy 122.104535 53.136252) + (xy 122.102824 53.134791) (xy 122.102819 53.134787) (xy 121.883668 53.000491) (xy 121.883656 53.000485) + (xy 121.646186 52.902122) (xy 121.646187 52.902122) (xy 121.396245 52.842116) (xy 121.14 52.82195) + (xy 120.883754 52.842116) (xy 120.633813 52.902122) (xy 120.396343 53.000485) (xy 120.396331 53.000491) + (xy 120.177184 53.134785) (xy 120.177176 53.134791) (xy 120.175463 53.136252) (xy 120.743438 53.704227) + (xy 120.737374 53.70674) (xy 120.598156 53.799762) (xy 120.479762 53.918156) (xy 120.38674 54.057374) + (xy 120.384227 54.063438) (xy 119.816252 53.495463) (xy 119.814791 53.497176) (xy 119.814785 53.497184) + (xy 119.680491 53.716331) (xy 119.680485 53.716343) (xy 119.582122 53.953813) (xy 119.522116 54.203754) + (xy 119.50195 54.46) (xy 117.698049 54.46) (xy 117.677883 54.203754) (xy 117.617877 53.953813) (xy 117.519514 53.716343) + (xy 117.519508 53.716331) (xy 117.385211 53.497179) (xy 117.383746 53.495463) (xy 116.815771 54.063437) + (xy 116.81326 54.057374) (xy 116.720238 53.918156) (xy 116.601844 53.799762) (xy 116.462626 53.70674) + (xy 116.456559 53.704227) (xy 117.024535 53.136252) (xy 117.022824 53.134791) (xy 117.022819 53.134787) + (xy 116.803668 53.000491) (xy 116.803656 53.000485) (xy 116.566186 52.902122) (xy 116.566187 52.902122) + (xy 116.316245 52.842116) (xy 116.06 52.82195) (xy 115.803754 52.842116) (xy 115.553813 52.902122) + (xy 115.316343 53.000485) (xy 115.316331 53.000491) (xy 115.097184 53.134785) (xy 115.097176 53.134791) + (xy 115.095463 53.136252) (xy 115.663438 53.704227) (xy 115.657374 53.70674) (xy 115.518156 53.799762) + (xy 115.399762 53.918156) (xy 115.30674 54.057374) (xy 115.304227 54.063438) (xy 114.736252 53.495463) + (xy 114.734791 53.497176) (xy 114.734785 53.497184) (xy 114.600491 53.716331) (xy 114.600485 53.716343) + (xy 114.502122 53.953813) (xy 114.442116 54.203754) (xy 114.42195 54.46) (xy 104.291037 54.46) (xy 103.231036 53.399999) + (xy 105.94475 53.399999) (xy 105.94475 53.4) (xy 105.963669 53.543708) (xy 105.96367 53.543709) + (xy 106.005354 53.644346) (xy 106.019139 53.677625) (xy 106.107379 53.792621) (xy 106.222375 53.880861) + (xy 106.356291 53.93633) (xy 106.5 53.95525) (xy 106.643709 53.93633) (xy 106.777625 53.880861) + (xy 106.892621 53.792621) (xy 106.980861 53.677625) (xy 107.009154 53.609315) (xy 107.030611 53.577201) + (xy 109.7005 50.907314) (xy 109.70445 50.900473) (xy 109.76639 50.79319) (xy 109.76639 50.793188) + (xy 109.766392 50.793186) (xy 109.8005 50.665892) (xy 109.8005 50.534108) (xy 109.8005 50.449902) + (xy 109.808035 50.412018) (xy 109.83633 50.343709) (xy 109.842085 50.299999) (xy 127.29475 50.299999) + (xy 127.29475 50.3) (xy 127.313669 50.443708) (xy 127.31367 50.443709) (xy 127.365623 50.569138) + (xy 127.369139 50.577625) (xy 127.457379 50.692621) (xy 127.572375 50.780861) (xy 127.706291 50.83633) + (xy 127.844563 50.854534) (xy 127.899788 50.880875) (xy 127.901643 50.882681) (xy 127.919436 50.900474) + (xy 127.919438 50.900475) (xy 128.795504 51.776541) (xy 128.823281 51.831058) (xy 128.8245 51.846545) + (xy 128.8245 52.35146) (xy 128.805593 52.409651) (xy 128.804046 52.411722) (xy 128.793028 52.426082) + (xy 128.719139 52.522374) (xy 128.719137 52.522378) (xy 128.66367 52.65629) (xy 128.663669 52.656291) + (xy 128.64475 52.799999) (xy 128.64475 52.8) (xy 128.663669 52.943708) (xy 128.66367 52.943709) + (xy 128.707268 53.048967) (xy 128.719139 53.077625) (xy 128.807379 53.192621) (xy 128.922375 53.280861) + (xy 129.056291 53.33633) (xy 129.2 53.35525) (xy 129.343709 53.33633) (xy 129.477625 53.280861) + (xy 129.592621 53.192621) (xy 129.680861 53.077625) (xy 129.73633 52.943709) (xy 129.75525 52.8) + (xy 129.73633 52.656291) (xy 129.680861 52.522375) (xy 129.595957 52.411727) (xy 129.575534 52.354052) + (xy 129.5755 52.35146) (xy 129.5755 51.600566) (xy 129.5755 51.600565) (xy 129.567833 51.57195) + (xy 129.549911 51.505063) (xy 129.500475 51.419437) (xy 129.131038 51.05) (xy 142.194751 51.05) + (xy 142.194751 51.050001) (xy 142.21367 51.193709) (xy 142.213671 51.19371) (xy 142.262932 51.31264) + (xy 142.26914 51.327626) (xy 142.35738 51.442622) (xy 142.472376 51.530862) (xy 142.606292 51.586331) + (xy 142.750001 51.605251) (xy 142.89371 51.586331) (xy 142.962019 51.558036) (xy 142.999904 51.550501) + (xy 143.800747 51.550501) (xy 143.858938 51.569408) (xy 143.894902 51.618908) (xy 143.894902 51.680094) + (xy 143.892211 51.687386) (xy 143.86367 51.75629) (xy 143.863669 51.756291) (xy 143.84475 51.899999) + (xy 143.84475 51.9) (xy 143.863669 52.043708) (xy 143.86367 52.043709) (xy 143.919139 52.177625) + (xy 144.007379 52.292621) (xy 144.122375 52.380861) (xy 144.256291 52.43633) (xy 144.4 52.45525) + (xy 144.543709 52.43633) (xy 144.612018 52.408035) (xy 144.649903 52.4005) (xy 147.76589 52.4005) + (xy 147.765892 52.4005) (xy 147.893186 52.366392) (xy 147.893188 52.36639) (xy 147.89319 52.36639) + (xy 148.007309 52.300503) (xy 148.007309 52.300502) (xy 148.007314 52.3005) (xy 155.778308 44.529506) + (xy 155.832825 44.501729) (xy 155.848312 44.50051) (xy 171.861726 44.50051) (xy 171.919917 44.519417) + (xy 171.93173 44.529506) (xy 172.770504 45.368279) (xy 172.798281 45.422796) (xy 172.7995 45.438283) + (xy 172.7995 48.350096) (xy 172.791965 48.38798) (xy 172.763669 48.456293) (xy 172.74475 48.599999) + (xy 172.74475 48.6) (xy 172.763669 48.743708) (xy 172.76367 48.743709) (xy 172.813358 48.86367) + (xy 172.819139 48.877625) (xy 172.907379 48.992621) (xy 173.022375 49.080861) (xy 173.156291 49.13633) + (xy 173.3 49.15525) (xy 173.443709 49.13633) (xy 173.577625 49.080861) (xy 173.692621 48.992621) + (xy 173.763693 48.899999) (xy 179.84475 48.899999) (xy 179.84475 48.9) (xy 179.863669 49.043708) + (xy 179.86367 49.043709) (xy 179.918585 49.176289) (xy 179.919139 49.177625) (xy 180.007379 49.292621) + (xy 180.122375 49.380861) (xy 180.256291 49.43633) (xy 180.399999 49.45525) (xy 180.399999 49.455249) + (xy 180.4 49.45525) (xy 180.543709 49.43633) (xy 180.543709 49.436329) (xy 180.549724 49.435538) + (xy 180.609884 49.446688) (xy 180.63265 49.463687) (xy 181.517316 50.348353) (xy 181.545093 50.40287) + (xy 181.545465 50.405434) (xy 181.55132 50.449902) (xy 181.56344 50.541965) (xy 181.56367 50.543708) + (xy 181.56367 50.543709) (xy 181.610752 50.657378) (xy 181.619139 50.677625) (xy 181.707379 50.792621) + (xy 181.822375 50.880861) (xy 181.956291 50.93633) (xy 182.1 50.95525) (xy 182.243709 50.93633) + (xy 182.377625 50.880861) (xy 182.492621 50.792621) (xy 182.580861 50.677625) (xy 182.63633 50.543709) + (xy 182.65525 50.4) (xy 182.64845 50.348353) (xy 182.63633 50.256291) (xy 182.580861 50.122375) + (xy 182.492621 50.007379) (xy 182.377625 49.919139) (xy 182.377621 49.919137) (xy 182.243709 49.86367) + (xy 182.105434 49.845465) (xy 182.050209 49.819124) (xy 182.048353 49.817316) (xy 180.914193 48.683156) + (xy 180.892733 48.651037) (xy 180.880862 48.622378) (xy 180.880861 48.622375) (xy 180.792621 48.507379) + (xy 180.677625 48.419139) (xy 180.677621 48.419137) (xy 180.543709 48.36367) (xy 180.543708 48.363669) + (xy 180.4 48.34475) (xy 180.256291 48.363669) (xy 180.25629 48.36367) (xy 180.122378 48.419137) + (xy 180.122374 48.419139) (xy 180.007381 48.507377) (xy 180.007377 48.507381) (xy 179.919139 48.622374) + (xy 179.919137 48.622378) (xy 179.86367 48.75629) (xy 179.863669 48.756291) (xy 179.84475 48.899999) + (xy 173.763693 48.899999) (xy 173.780861 48.877625) (xy 173.83633 48.743709) (xy 173.85525 48.6) + (xy 173.83633 48.456291) (xy 173.808034 48.387978) (xy 173.8005 48.350096) (xy 173.8005 45.566924) + (xy 173.819407 45.508733) (xy 173.868907 45.472769) (xy 173.92512 45.471297) (xy 174.034108 45.5005) + (xy 178.050097 45.5005) (xy 178.087981 45.508035) (xy 178.156291 45.53633) (xy 178.3 45.55525) (xy 178.443709 45.53633) + (xy 178.577625 45.480861) (xy 178.692621 45.392621) (xy 178.780861 45.277625) (xy 178.83633 45.143709) + (xy 178.85525 45) (xy 178.83633 44.856291) (xy 178.780861 44.722375) (xy 178.692621 44.607379) (xy 178.577625 44.519139) + (xy 178.577621 44.519137) (xy 178.443709 44.46367) (xy 178.443708 44.463669) (xy 178.3 44.44475) + (xy 178.156291 44.463669) (xy 178.15629 44.46367) (xy 178.087982 44.491964) (xy 178.050097 44.4995) + (xy 174.348322 44.4995) (xy 174.290131 44.480593) (xy 174.278318 44.470504) (xy 173.530816 43.723002) + (xy 172.707314 42.8995) (xy 172.707311 42.899498) (xy 172.70731 42.899497) (xy 172.707309 42.899496) + (xy 172.593189 42.833609) (xy 172.593191 42.833609) (xy 172.543799 42.820375) (xy 172.465892 42.7995) + (xy 155.134108 42.7995) (xy 155.0562 42.820375) (xy 155.006809 42.833609) (xy 154.932584 42.876463) + (xy 154.932585 42.876464) (xy 154.892687 42.899499) (xy 147.271681 50.520505) (xy 147.217164 50.548282) + (xy 147.201677 50.549501) (xy 142.999904 50.549501) (xy 142.962019 50.541965) (xy 142.89371 50.513671) + (xy 142.893709 50.51367) (xy 142.750001 50.494751) (xy 142.606292 50.51367) (xy 142.606291 50.513671) + (xy 142.472379 50.569138) (xy 142.472375 50.56914) (xy 142.357382 50.657378) (xy 142.357378 50.657382) + (xy 142.26914 50.772375) (xy 142.269138 50.772379) (xy 142.213671 50.906291) (xy 142.21367 50.906292) + (xy 142.194751 51.05) (xy 129.131038 51.05) (xy 128.450475 50.369438) (xy 128.450474 50.369436) + (xy 128.432681 50.351643) (xy 128.404905 50.297125) (xy 128.404534 50.294563) (xy 128.397951 50.244564) + (xy 128.38633 50.156291) (xy 128.330861 50.022375) (xy 128.242621 49.907379) (xy 128.127625 49.819139) + (xy 128.127621 49.819137) (xy 127.993709 49.76367) (xy 127.993708 49.763669) (xy 127.85 49.74475) + (xy 127.706291 49.763669) (xy 127.70629 49.76367) (xy 127.572378 49.819137) (xy 127.572374 49.819139) + (xy 127.457381 49.907377) (xy 127.457377 49.907381) (xy 127.369139 50.022374) (xy 127.369137 50.022378) + (xy 127.31367 50.15629) (xy 127.313669 50.156291) (xy 127.29475 50.299999) (xy 109.842085 50.299999) + (xy 109.85525 50.2) (xy 109.849495 50.156291) (xy 109.83633 50.056291) (xy 109.780861 49.922375) + (xy 109.692621 49.807379) (xy 109.577625 49.719139) (xy 109.577621 49.719137) (xy 109.443709 49.66367) + (xy 109.443708 49.663669) (xy 109.3 49.64475) (xy 109.156291 49.663669) (xy 109.15629 49.66367) + (xy 109.022378 49.719137) (xy 109.022374 49.719139) (xy 108.907381 49.807377) (xy 108.907377 49.807381) + (xy 108.819139 49.922374) (xy 108.819137 49.922378) (xy 108.76367 50.05629) (xy 108.763669 50.056291) + (xy 108.74475 50.199999) (xy 108.74475 50.2) (xy 108.763669 50.343709) (xy 108.765349 50.349975) + (xy 108.763811 50.350387) (xy 108.767993 50.403562) (xy 108.741734 50.45045) (xy 106.322799 52.869385) + (xy 106.290681 52.890845) (xy 106.222376 52.919138) (xy 106.107381 53.007377) (xy 106.107377 53.007381) + (xy 106.019139 53.122374) (xy 106.019137 53.122378) (xy 105.96367 53.25629) (xy 105.963669 53.256291) + (xy 105.94475 53.399999) (xy 103.231036 53.399999) (xy 102.604496 52.773459) (xy 102.576719 52.718942) + (xy 102.5755 52.703455) (xy 102.5755 50.648539) (xy 102.594407 50.590348) (xy 102.595925 50.588314) + (xy 102.680861 50.477625) (xy 102.73633 50.343709) (xy 102.75525 50.2) (xy 102.749495 50.156291) + (xy 102.73633 50.056291) (xy 102.680861 49.922375) (xy 102.592621 49.807379) (xy 102.477625 49.719139) + (xy 102.477621 49.719137) (xy 102.343709 49.66367) (xy 102.343708 49.663669) (xy 102.2 49.64475) + (xy 102.056291 49.663669) (xy 102.05629 49.66367) (xy 101.922378 49.719137) (xy 101.922374 49.719139) + (xy 101.807381 49.807377) (xy 101.807377 49.807381) (xy 101.719139 49.922374) (xy 101.719137 49.922378) + (xy 101.66367 50.05629) (xy 101.663669 50.056291) (xy 101.64475 50.199999) (xy 101.64475 50.2) (xy 101.663669 50.343708) + (xy 101.66367 50.343709) (xy 101.70509 50.443709) (xy 101.719139 50.477625) (xy 101.804042 50.588273) + (xy 101.824466 50.645947) (xy 101.8245 50.648539) (xy 101.8245 52.804454) (xy 101.805593 52.862645) + (xy 101.756093 52.898609) (xy 101.694907 52.898609) (xy 101.655496 52.874458) (xy 99.082683 50.301646) + (xy 99.054906 50.247129) (xy 99.054534 50.244564) (xy 99.042912 50.15629) (xy 99.03633 50.106291) + (xy 98.980861 49.972375) (xy 98.892621 49.857379) (xy 98.777625 49.769139) (xy 98.777621 49.769137) + (xy 98.643709 49.71367) (xy 98.643708 49.713669) (xy 98.5 49.69475) (xy 98.356291 49.713669) (xy 98.35629 49.71367) + (xy 98.222378 49.769137) (xy 98.222374 49.769139) (xy 98.107381 49.857377) (xy 98.107377 49.857381) + (xy 98.019139 49.972374) (xy 98.019137 49.972378) (xy 97.96367 50.10629) (xy 97.963669 50.106291) + (xy 97.94475 50.249999) (xy 84.877812 50.249999) (xy 85.277201 49.85061) (xy 85.309315 49.829153) + (xy 85.377625 49.80086) (xy 85.492621 49.71262) (xy 85.580861 49.597624) (xy 85.63633 49.463708) + (xy 85.65525 49.319999) (xy 85.63633 49.17629) (xy 85.580861 49.042374) (xy 85.492621 48.927378) + (xy 85.377625 48.839138) (xy 85.377621 48.839136) (xy 85.243709 48.783669) (xy 85.243708 48.783668) + (xy 85.1 48.764749) (xy 84.956291 48.783668) (xy 84.95629 48.783669) (xy 84.822378 48.839136) (xy 84.822374 48.839138) + (xy 84.707381 48.927376) (xy 84.707377 48.92738) (xy 84.619138 49.042375) (xy 84.590845 49.11068) + (xy 84.569385 49.142798) (xy 81.392686 52.319499) (xy 81.392685 52.319498) (xy 81.2995 52.412684) + (xy 81.299496 52.412689) (xy 81.233609 52.526808) (xy 81.1995 52.654108) (xy 81.1995 58.741677) + (xy 81.180593 58.799868) (xy 81.170504 58.811681) (xy 79.481093 60.501091) (xy 79.426576 60.528868) + (xy 79.366144 60.519297) (xy 79.352899 60.51118) (xy 79.312273 60.481663) (xy 79.312269 60.481661) + (xy 79.155123 60.401592) (xy 78.987379 60.347088) (xy 78.813188 60.3195) (xy 78.813185 60.3195) + (xy 78.186815 60.3195) (xy 78.186812 60.3195) (xy 78.01262 60.347088) (xy 77.844876 60.401592) (xy 77.687732 60.48166) + (xy 77.545044 60.585329) (xy 77.420329 60.710044) (xy 77.31666 60.852732) (xy 77.236592 61.009876) + (xy 77.182088 61.17762) (xy 77.1545 61.351811) (xy 77.1545 61.528188) (xy 77.182088 61.702379) (xy 77.190023 61.7268) + (xy 77.236592 61.870123) (xy 77.316662 62.02727) (xy 77.42033 62.169957) (xy 77.545043 62.29467) + (xy 77.68773 62.398338) (xy 77.687732 62.398339) (xy 77.720019 62.41479) (xy 77.763284 62.458055) + (xy 77.772855 62.518487) (xy 77.745078 62.573003) (xy 77.690561 62.600781) (xy 77.675074 62.602) + (xy 77.604484 62.602) (xy 77.500678 62.612605) (xy 77.332474 62.668342) (xy 77.181662 62.761364) + (xy 77.056364 62.886662) (xy 76.963342 63.037474) (xy 76.907605 63.205678) (xy 76.897 63.309484) + (xy 61.460563 63.309484) (xy 61.450663 63.208971) (xy 61.450662 63.208966) (xy 61.39864 63.037474) + (xy 61.392023 63.015659) (xy 61.39202 63.015653) (xy 61.2968 62.837508) (xy 61.168651 62.681358) + (xy 61.168647 62.681353) (xy 61.071955 62.602) (xy 61.012491 62.553199) (xy 60.834346 62.457979) + (xy 60.834341 62.457977) (xy 60.641033 62.399337) (xy 60.641028 62.399336) (xy 60.440003 62.379538) + (xy 60.439997 62.379538) (xy 60.238971 62.399336) (xy 60.238966 62.399337) (xy 60.045658 62.457977) + (xy 60.045653 62.457979) (xy 59.867508 62.553199) (xy 59.711358 62.681348) (xy 59.711348 62.681358) + (xy 59.583199 62.837508) (xy 59.487979 63.015653) (xy 59.487977 63.015658) (xy 59.429337 63.208966) + (xy 59.429336 63.208971) (xy 59.409538 63.409996) (xy 56.390462 63.409996) (xy 56.370663 63.208971) + (xy 56.370662 63.208966) (xy 56.31864 63.037474) (xy 56.312023 63.015659) (xy 56.31202 63.015653) + (xy 56.2168 62.837508) (xy 56.088651 62.681358) (xy 56.088647 62.681353) (xy 55.991955 62.602) (xy 55.932491 62.553199) + (xy 55.754346 62.457979) (xy 55.754341 62.457977) (xy 55.561033 62.399337) (xy 55.561028 62.399336) + (xy 55.360003 62.379538) (xy 55.359997 62.379538) (xy 55.158971 62.399336) (xy 55.158966 62.399337) + (xy 54.965658 62.457977) (xy 54.965653 62.457979) (xy 54.787508 62.553199) (xy 54.631358 62.681348) + (xy 54.631348 62.681358) (xy 54.503199 62.837508) (xy 54.407979 63.015653) (xy 54.407977 63.015658) + (xy 54.349337 63.208966) (xy 54.349336 63.208971) (xy 54.329538 63.409996) (xy 50.0755 63.409996) + (xy 50.0755 60.869996) (xy 54.329538 60.869996) (xy 54.329538 60.870003) (xy 54.349336 61.071028) + (xy 54.349337 61.071033) (xy 54.407977 61.264341) (xy 54.407979 61.264346) (xy 54.503199 61.442491) + (xy 54.573529 61.528188) (xy 54.631353 61.598647) (xy 54.631358 61.598651) (xy 54.787508 61.7268) + (xy 54.965653 61.82202) (xy 54.965659 61.822023) (xy 55.100327 61.862873) (xy 55.158966 61.880662) + (xy 55.158971 61.880663) (xy 55.359997 61.900462) (xy 55.36 61.900462) (xy 55.360003 61.900462) + (xy 55.561028 61.880663) (xy 55.561033 61.880662) (xy 55.754341 61.822023) (xy 55.834925 61.778949) + (xy 55.932491 61.7268) (xy 55.932492 61.726798) (xy 55.932494 61.726798) (xy 56.088647 61.598647) + (xy 56.216798 61.442494) (xy 56.312023 61.264341) (xy 56.370662 61.071033) (xy 56.370663 61.071028) + (xy 56.390462 60.870003) (xy 56.390462 60.869996) (xy 59.409538 60.869996) (xy 59.409538 60.870003) + (xy 59.429336 61.071028) (xy 59.429337 61.071033) (xy 59.487977 61.264341) (xy 59.487979 61.264346) + (xy 59.583199 61.442491) (xy 59.653529 61.528188) (xy 59.711353 61.598647) (xy 59.711358 61.598651) + (xy 59.867508 61.7268) (xy 60.045653 61.82202) (xy 60.045659 61.822023) (xy 60.180327 61.862873) + (xy 60.238966 61.880662) (xy 60.238971 61.880663) (xy 60.439997 61.900462) (xy 60.44 61.900462) + (xy 60.440003 61.900462) (xy 60.641028 61.880663) (xy 60.641033 61.880662) (xy 60.834341 61.822023) + (xy 60.914925 61.778949) (xy 61.012491 61.7268) (xy 61.012492 61.726798) (xy 61.012494 61.726798) + (xy 61.168647 61.598647) (xy 61.296798 61.442494) (xy 61.392023 61.264341) (xy 61.450662 61.071033) + (xy 61.450663 61.071028) (xy 61.470462 60.870003) (xy 61.470462 60.869996) (xy 61.450663 60.668971) + (xy 61.450662 60.668966) (xy 61.417874 60.56088) (xy 61.392023 60.475659) (xy 61.39202 60.475653) + (xy 61.2968 60.297508) (xy 61.168651 60.141358) (xy 61.168647 60.141353) (xy 61.096135 60.081844) + (xy 61.012491 60.013199) (xy 60.834346 59.917979) (xy 60.834341 59.917977) (xy 60.641033 59.859337) + (xy 60.641028 59.859336) (xy 60.440003 59.839538) (xy 60.439997 59.839538) (xy 60.238971 59.859336) + (xy 60.238966 59.859337) (xy 60.045658 59.917977) (xy 60.045653 59.917979) (xy 59.867508 60.013199) + (xy 59.711358 60.141348) (xy 59.711348 60.141358) (xy 59.583199 60.297508) (xy 59.487979 60.475653) + (xy 59.487977 60.475658) (xy 59.429337 60.668966) (xy 59.429336 60.668971) (xy 59.409538 60.869996) + (xy 56.390462 60.869996) (xy 56.370663 60.668971) (xy 56.370662 60.668966) (xy 56.337874 60.56088) + (xy 56.312023 60.475659) (xy 56.31202 60.475653) (xy 56.2168 60.297508) (xy 56.088651 60.141358) + (xy 56.088647 60.141353) (xy 56.016135 60.081844) (xy 55.932491 60.013199) (xy 55.754346 59.917979) + (xy 55.754341 59.917977) (xy 55.561033 59.859337) (xy 55.561028 59.859336) (xy 55.360003 59.839538) + (xy 55.359997 59.839538) (xy 55.158971 59.859336) (xy 55.158966 59.859337) (xy 54.965658 59.917977) + (xy 54.965653 59.917979) (xy 54.787508 60.013199) (xy 54.631358 60.141348) (xy 54.631348 60.141358) + (xy 54.503199 60.297508) (xy 54.407979 60.475653) (xy 54.407977 60.475658) (xy 54.349337 60.668966) + (xy 54.349336 60.668971) (xy 54.329538 60.869996) (xy 50.0755 60.869996) (xy 50.0755 58.329996) + (xy 54.329538 58.329996) (xy 54.329538 58.330003) (xy 54.349336 58.531028) (xy 54.349337 58.531033) + (xy 54.407977 58.724341) (xy 54.407979 58.724346) (xy 54.503199 58.902491) (xy 54.573529 58.988188) + (xy 54.631353 59.058647) (xy 54.631358 59.058651) (xy 54.787508 59.1868) (xy 54.965653 59.28202) + (xy 54.965659 59.282023) (xy 55.100327 59.322873) (xy 55.158966 59.340662) (xy 55.158971 59.340663) + (xy 55.359997 59.360462) (xy 55.36 59.360462) (xy 55.360003 59.360462) (xy 55.561028 59.340663) + (xy 55.561033 59.340662) (xy 55.754341 59.282023) (xy 55.834925 59.238949) (xy 55.932491 59.1868) + (xy 55.932492 59.186798) (xy 55.932494 59.186798) (xy 56.088647 59.058647) (xy 56.216798 58.902494) + (xy 56.312023 58.724341) (xy 56.370662 58.531033) (xy 56.370663 58.531028) (xy 56.390462 58.330003) + (xy 56.390462 58.329996) (xy 59.409538 58.329996) (xy 59.409538 58.330003) (xy 59.429336 58.531028) + (xy 59.429337 58.531033) (xy 59.487977 58.724341) (xy 59.487979 58.724346) (xy 59.583199 58.902491) + (xy 59.653529 58.988188) (xy 59.711353 59.058647) (xy 59.711358 59.058651) (xy 59.867508 59.1868) + (xy 60.045653 59.28202) (xy 60.045659 59.282023) (xy 60.180327 59.322873) (xy 60.238966 59.340662) + (xy 60.238971 59.340663) (xy 60.439997 59.360462) (xy 60.44 59.360462) (xy 60.440003 59.360462) + (xy 60.641028 59.340663) (xy 60.641033 59.340662) (xy 60.834341 59.282023) (xy 60.914925 59.238949) + (xy 61.012491 59.1868) (xy 61.012492 59.186798) (xy 61.012494 59.186798) (xy 61.168647 59.058647) + (xy 61.296798 58.902494) (xy 61.345269 58.811811) (xy 77.1545 58.811811) (xy 77.1545 58.988188) + (xy 77.182088 59.162379) (xy 77.236592 59.330123) (xy 77.271508 59.398651) (xy 77.316662 59.48727) + (xy 77.42033 59.629957) (xy 77.545043 59.75467) (xy 77.68773 59.858338) (xy 77.844877 59.938408) + (xy 78.012616 59.99291) (xy 78.012617 59.99291) (xy 78.01262 59.992911) (xy 78.186812 60.0205) (xy 78.186815 60.0205) + (xy 78.813188 60.0205) (xy 78.987379 59.992911) (xy 78.98738 59.99291) (xy 78.987384 59.99291) (xy 79.155123 59.938408) + (xy 79.31227 59.858338) (xy 79.454957 59.75467) (xy 79.57967 59.629957) (xy 79.683338 59.48727) + (xy 79.763408 59.330123) (xy 79.81791 59.162384) (xy 79.821871 59.137374) (xy 79.8455 58.988188) + (xy 79.8455 58.811811) (xy 79.817911 58.63762) (xy 79.813052 58.622665) (xy 79.763408 58.469877) + (xy 79.683338 58.31273) (xy 79.57967 58.170043) (xy 79.454957 58.04533) (xy 79.31227 57.941662) + (xy 79.312269 57.941661) (xy 79.312267 57.94166) (xy 79.155123 57.861592) (xy 78.987379 57.807088) + (xy 78.813188 57.7795) (xy 78.813185 57.7795) (xy 78.186815 57.7795) (xy 78.186812 57.7795) (xy 78.01262 57.807088) + (xy 77.844876 57.861592) (xy 77.687732 57.94166) (xy 77.545044 58.045329) (xy 77.420329 58.170044) + (xy 77.31666 58.312732) (xy 77.236592 58.469876) (xy 77.182088 58.63762) (xy 77.1545 58.811811) + (xy 61.345269 58.811811) (xy 61.392023 58.724341) (xy 61.450662 58.531033) (xy 61.450663 58.531028) + (xy 61.470462 58.330003) (xy 61.470462 58.329996) (xy 61.450663 58.128971) (xy 61.450662 58.128966) + (xy 61.425291 58.045329) (xy 61.392023 57.935659) (xy 61.362712 57.880822) (xy 61.2968 57.757508) + (xy 61.168651 57.601358) (xy 61.168647 57.601353) (xy 61.094112 57.540184) (xy 61.012491 57.473199) + (xy 60.834346 57.377979) (xy 60.834341 57.377977) (xy 60.641033 57.319337) (xy 60.641028 57.319336) + (xy 60.440003 57.299538) (xy 60.439997 57.299538) (xy 60.238971 57.319336) (xy 60.238966 57.319337) + (xy 60.045658 57.377977) (xy 60.045653 57.377979) (xy 59.867508 57.473199) (xy 59.711358 57.601348) + (xy 59.711348 57.601358) (xy 59.583199 57.757508) (xy 59.487979 57.935653) (xy 59.487977 57.935658) + (xy 59.429337 58.128966) (xy 59.429336 58.128971) (xy 59.409538 58.329996) (xy 56.390462 58.329996) + (xy 56.370663 58.128971) (xy 56.370662 58.128966) (xy 56.345291 58.045329) (xy 56.312023 57.935659) + (xy 56.282712 57.880822) (xy 56.2168 57.757508) (xy 56.088651 57.601358) (xy 56.088647 57.601353) + (xy 56.014112 57.540184) (xy 55.932491 57.473199) (xy 55.754346 57.377979) (xy 55.754341 57.377977) + (xy 55.561033 57.319337) (xy 55.561028 57.319336) (xy 55.360003 57.299538) (xy 55.359997 57.299538) + (xy 55.158971 57.319336) (xy 55.158966 57.319337) (xy 54.965658 57.377977) (xy 54.965653 57.377979) + (xy 54.787508 57.473199) (xy 54.631358 57.601348) (xy 54.631348 57.601358) (xy 54.503199 57.757508) + (xy 54.407979 57.935653) (xy 54.407977 57.935658) (xy 54.349337 58.128966) (xy 54.349336 58.128971) + (xy 54.329538 58.329996) (xy 50.0755 58.329996) (xy 50.0755 55.789996) (xy 54.329538 55.789996) + (xy 54.329538 55.790003) (xy 54.349336 55.991028) (xy 54.349337 55.991033) (xy 54.407977 56.184341) + (xy 54.407979 56.184346) (xy 54.503199 56.362491) (xy 54.631348 56.518641) (xy 54.631353 56.518647) + (xy 54.631358 56.518651) (xy 54.787508 56.6468) (xy 54.953455 56.7355) (xy 54.965659 56.742023) + (xy 55.083159 56.777666) (xy 55.158966 56.800662) (xy 55.158971 56.800663) (xy 55.359997 56.820462) + (xy 55.36 56.820462) (xy 55.360003 56.820462) (xy 55.561028 56.800663) (xy 55.561033 56.800662) + (xy 55.566439 56.799022) (xy 55.754341 56.742023) (xy 55.876048 56.676969) (xy 55.932491 56.6468) + (xy 55.932492 56.646798) (xy 55.932494 56.646798) (xy 56.088647 56.518647) (xy 56.216798 56.362494) + (xy 56.218231 56.359814) (xy 56.311815 56.18473) (xy 56.312023 56.184341) (xy 56.370662 55.991033) + (xy 56.370663 55.991028) (xy 56.390462 55.790003) (xy 56.390462 55.789996) (xy 59.409538 55.789996) + (xy 59.409538 55.790003) (xy 59.429336 55.991028) (xy 59.429337 55.991033) (xy 59.487977 56.184341) + (xy 59.487979 56.184346) (xy 59.583199 56.362491) (xy 59.711348 56.518641) (xy 59.711353 56.518647) + (xy 59.711358 56.518651) (xy 59.867508 56.6468) (xy 60.033455 56.7355) (xy 60.045659 56.742023) + (xy 60.163159 56.777666) (xy 60.238966 56.800662) (xy 60.238971 56.800663) (xy 60.439997 56.820462) + (xy 60.44 56.820462) (xy 60.440003 56.820462) (xy 60.641028 56.800663) (xy 60.641033 56.800662) + (xy 60.646439 56.799022) (xy 60.834341 56.742023) (xy 60.956048 56.676969) (xy 61.012491 56.6468) + (xy 61.012492 56.646798) (xy 61.012494 56.646798) (xy 61.168647 56.518647) (xy 61.296798 56.362494) + (xy 61.298231 56.359814) (xy 61.391815 56.18473) (xy 61.392023 56.184341) (xy 61.450662 55.991033) + (xy 61.450663 55.991028) (xy 61.469478 55.799996) (xy 77.494659 55.799996) (xy 77.494659 55.800003) + (xy 77.513974 55.996126) (xy 77.513975 55.996129) (xy 77.520572 56.017877) (xy 77.57107 56.184346) + (xy 77.571187 56.18473) (xy 77.571188 56.184732) (xy 77.588057 56.216291) (xy 77.66409 56.358538) + (xy 77.664092 56.35854) (xy 77.664093 56.358542) (xy 77.789112 56.510878) (xy 77.789121 56.510887) + (xy 77.941457 56.635906) (xy 77.941462 56.63591) (xy 78.115273 56.728814) (xy 78.303868 56.786024) + (xy 78.30387 56.786024) (xy 78.303873 56.786025) (xy 78.499997 56.805341) (xy 78.5 56.805341) (xy 78.500003 56.805341) + (xy 78.696126 56.786025) (xy 78.696127 56.786024) (xy 78.696132 56.786024) (xy 78.884727 56.728814) + (xy 79.058538 56.63591) (xy 79.210883 56.510883) (xy 79.33591 56.358538) (xy 79.428814 56.184727) + (xy 79.486024 55.996132) (xy 79.486527 55.991033) (xy 79.505341 55.800003) (xy 79.505341 55.799996) + (xy 79.486025 55.603873) (xy 79.486024 55.60387) (xy 79.486024 55.603868) (xy 79.428814 55.415273) + (xy 79.33591 55.241462) (xy 79.319657 55.221658) (xy 79.210887 55.089121) (xy 79.210878 55.089112) + (xy 79.058542 54.964093) (xy 79.05854 54.964092) (xy 79.058538 54.96409) (xy 79.000745 54.933199) + (xy 78.884732 54.871188) (xy 78.88473 54.871187) (xy 78.856508 54.862626) (xy 78.696132 54.813976) + (xy 78.696129 54.813975) (xy 78.696126 54.813974) (xy 78.500003 54.794659) (xy 78.499997 54.794659) + (xy 78.303873 54.813974) (xy 78.30387 54.813975) (xy 78.115269 54.871187) (xy 78.115267 54.871188) + (xy 77.941467 54.964087) (xy 77.941457 54.964093) (xy 77.789121 55.089112) (xy 77.789112 55.089121) + (xy 77.664093 55.241457) (xy 77.664087 55.241467) (xy 77.571188 55.415267) (xy 77.571187 55.415269) + (xy 77.513975 55.60387) (xy 77.513974 55.603873) (xy 77.494659 55.799996) (xy 61.469478 55.799996) + (xy 61.470462 55.790003) (xy 61.470462 55.789996) (xy 61.450663 55.588971) (xy 61.450662 55.588966) + (xy 61.400263 55.422824) (xy 61.392023 55.395659) (xy 61.39202 55.395653) (xy 61.2968 55.217508) + (xy 61.168651 55.061358) (xy 61.168647 55.061353) (xy 61.067588 54.978416) (xy 61.012491 54.933199) + (xy 60.834346 54.837979) (xy 60.834341 54.837977) (xy 60.641033 54.779337) (xy 60.641028 54.779336) + (xy 60.440003 54.759538) (xy 60.439997 54.759538) (xy 60.238971 54.779336) (xy 60.238966 54.779337) + (xy 60.045658 54.837977) (xy 60.045653 54.837979) (xy 59.867508 54.933199) (xy 59.711358 55.061348) + (xy 59.711348 55.061358) (xy 59.583199 55.217508) (xy 59.487979 55.395653) (xy 59.487977 55.395658) + (xy 59.429337 55.588966) (xy 59.429336 55.588971) (xy 59.409538 55.789996) (xy 56.390462 55.789996) + (xy 56.370663 55.588971) (xy 56.370662 55.588966) (xy 56.320263 55.422824) (xy 56.312023 55.395659) + (xy 56.31202 55.395653) (xy 56.2168 55.217508) (xy 56.088651 55.061358) (xy 56.088647 55.061353) + (xy 55.987588 54.978416) (xy 55.932491 54.933199) (xy 55.754346 54.837979) (xy 55.754341 54.837977) + (xy 55.561033 54.779337) (xy 55.561028 54.779336) (xy 55.360003 54.759538) (xy 55.359997 54.759538) + (xy 55.158971 54.779336) (xy 55.158966 54.779337) (xy 54.965658 54.837977) (xy 54.965653 54.837979) + (xy 54.787508 54.933199) (xy 54.631358 55.061348) (xy 54.631348 55.061358) (xy 54.503199 55.217508) + (xy 54.407979 55.395653) (xy 54.407977 55.395658) (xy 54.349337 55.588966) (xy 54.349336 55.588971) + (xy 54.329538 55.789996) (xy 50.0755 55.789996) (xy 50.0755 53.249996) (xy 54.329538 53.249996) + (xy 54.329538 53.250003) (xy 54.349336 53.451028) (xy 54.349337 53.451033) (xy 54.407977 53.644341) + (xy 54.407979 53.644346) (xy 54.503199 53.822491) (xy 54.596624 53.93633) (xy 54.631353 53.978647) + (xy 54.631358 53.978651) (xy 54.787508 54.1068) (xy 54.965653 54.20202) (xy 54.965659 54.202023) + (xy 55.100327 54.242873) (xy 55.158966 54.260662) (xy 55.158971 54.260663) (xy 55.359997 54.280462) + (xy 55.36 54.280462) (xy 55.360003 54.280462) (xy 55.561028 54.260663) (xy 55.561033 54.260662) + (xy 55.754341 54.202023) (xy 55.834925 54.158949) (xy 55.932491 54.1068) (xy 55.932492 54.106798) + (xy 55.932494 54.106798) (xy 56.088647 53.978647) (xy 56.216798 53.822494) (xy 56.232766 53.792621) + (xy 56.31202 53.644346) (xy 56.312023 53.644341) (xy 56.370662 53.451033) (xy 56.370663 53.451028) + (xy 56.390462 53.250003) (xy 56.390462 53.249996) (xy 56.370663 53.048971) (xy 56.370662 53.048966) + (xy 56.34047 52.949436) (xy 56.312023 52.855659) (xy 56.294005 52.82195) (xy 56.2168 52.677508) + (xy 56.088651 52.521358) (xy 56.088647 52.521353) (xy 55.972559 52.426082) (xy 55.932491 52.393199) + (xy 55.754346 52.297979) (xy 55.754341 52.297977) (xy 55.561033 52.239337) (xy 55.561028 52.239336) + (xy 55.360003 52.219538) (xy 55.359997 52.219538) (xy 55.158971 52.239336) (xy 55.158966 52.239337) + (xy 54.965658 52.297977) (xy 54.965653 52.297979) (xy 54.787508 52.393199) (xy 54.631358 52.521348) + (xy 54.631348 52.521358) (xy 54.503199 52.677508) (xy 54.407979 52.855653) (xy 54.407977 52.855658) + (xy 54.349337 53.048966) (xy 54.349336 53.048971) (xy 54.329538 53.249996) (xy 50.0755 53.249996) + (xy 50.0755 50.709996) (xy 54.329538 50.709996) (xy 54.329538 50.710003) (xy 54.349336 50.911028) + (xy 54.349337 50.911033) (xy 54.407977 51.104341) (xy 54.407979 51.104346) (xy 54.503199 51.282491) + (xy 54.599636 51.4) (xy 54.631353 51.438647) (xy 54.631358 51.438651) (xy 54.787508 51.5668) (xy 54.965653 51.66202) + (xy 54.965659 51.662023) (xy 55.100327 51.702873) (xy 55.158966 51.720662) (xy 55.158971 51.720663) + (xy 55.359997 51.740462) (xy 55.36 51.740462) (xy 55.360003 51.740462) (xy 55.561028 51.720663) + (xy 55.561033 51.720662) (xy 55.754341 51.662023) (xy 55.869321 51.600565) (xy 55.932491 51.5668) + (xy 55.932492 51.566798) (xy 55.932494 51.566798) (xy 56.088647 51.438647) (xy 56.216798 51.282494) + (xy 56.230805 51.25629) (xy 56.302382 51.122378) (xy 56.312023 51.104341) (xy 56.370662 50.911033) + (xy 56.370663 50.911028) (xy 56.390462 50.710003) (xy 56.390462 50.709996) (xy 56.370663 50.508971) + (xy 56.370662 50.508966) (xy 56.339256 50.405434) (xy 56.312023 50.315659) (xy 56.303653 50.299999) + (xy 56.2168 50.137508) (xy 56.088651 49.981358) (xy 56.088647 49.981353) (xy 56.026821 49.930614) + (xy 55.932491 49.853199) (xy 55.754346 49.757979) (xy 55.754341 49.757977) (xy 55.561033 49.699337) + (xy 55.561028 49.699336) (xy 55.360003 49.679538) (xy 55.359997 49.679538) (xy 55.158971 49.699336) + (xy 55.158966 49.699337) (xy 54.965658 49.757977) (xy 54.965653 49.757979) (xy 54.787508 49.853199) + (xy 54.631358 49.981348) (xy 54.631348 49.981358) (xy 54.503199 50.137508) (xy 54.407979 50.315653) + (xy 54.407977 50.315658) (xy 54.349337 50.508966) (xy 54.349336 50.508971) (xy 54.329538 50.709996) + (xy 50.0755 50.709996) (xy 50.0755 48.169996) (xy 54.329538 48.169996) (xy 54.329538 48.170003) + (xy 54.349336 48.371028) (xy 54.349337 48.371033) (xy 54.407977 48.564341) (xy 54.407979 48.564346) + (xy 54.503199 48.742491) (xy 54.536993 48.783669) (xy 54.631353 48.898647) (xy 54.633002 48.9) (xy 54.787508 49.0268) + (xy 54.965653 49.12202) (xy 54.965659 49.122023) (xy 55.100327 49.162873) (xy 55.158966 49.180662) + (xy 55.158971 49.180663) (xy 55.359997 49.200462) (xy 55.36 49.200462) (xy 55.360003 49.200462) + (xy 55.561028 49.180663) (xy 55.561033 49.180662) (xy 55.571058 49.177621) (xy 55.754341 49.122023) + (xy 55.903352 49.042375) (xy 55.932491 49.0268) (xy 55.932492 49.026798) (xy 55.932494 49.026798) + (xy 56.088647 48.898647) (xy 56.216798 48.742494) (xy 56.255958 48.669232) (xy 56.31202 48.564346) + (xy 56.312023 48.564341) (xy 56.370662 48.371033) (xy 56.370663 48.371028) (xy 56.390462 48.170003) + (xy 56.390462 48.169996) (xy 56.370663 47.968971) (xy 56.370662 47.968966) (xy 56.352873 47.910327) + (xy 56.312023 47.775659) (xy 56.31202 47.775653) (xy 56.2168 47.597508) (xy 56.088651 47.441358) + (xy 56.088647 47.441353) (xy 56.088641 47.441348) (xy 55.932491 47.313199) (xy 55.754346 47.217979) + (xy 55.754341 47.217977) (xy 55.561033 47.159337) (xy 55.561028 47.159336) (xy 55.360003 47.139538) + (xy 55.359997 47.139538) (xy 55.158971 47.159336) (xy 55.158966 47.159337) (xy 54.965658 47.217977) + (xy 54.965653 47.217979) (xy 54.787508 47.313199) (xy 54.631358 47.441348) (xy 54.631348 47.441358) + (xy 54.503199 47.597508) (xy 54.407979 47.775653) (xy 54.407977 47.775658) (xy 54.349337 47.968966) + (xy 54.349336 47.968971) (xy 54.329538 48.169996) (xy 50.0755 48.169996) (xy 50.0755 45.629996) + (xy 54.329538 45.629996) (xy 54.329538 45.630003) (xy 54.349336 45.831028) (xy 54.349337 45.831033) + (xy 54.407977 46.024341) (xy 54.407979 46.024346) (xy 54.503199 46.202491) (xy 54.575016 46.29) + (xy 54.631353 46.358647) (xy 54.631358 46.358651) (xy 54.787508 46.4868) (xy 54.965653 46.58202) + (xy 54.965659 46.582023) (xy 55.100327 46.622873) (xy 55.158966 46.640662) (xy 55.158971 46.640663) + (xy 55.359997 46.660462) (xy 55.36 46.660462) (xy 55.360003 46.660462) (xy 55.561028 46.640663) + (xy 55.561033 46.640662) (xy 55.754341 46.582023) (xy 55.834925 46.538949) (xy 55.932491 46.4868) + (xy 55.932492 46.486798) (xy 55.932494 46.486798) (xy 56.088647 46.358647) (xy 56.216798 46.202494) + (xy 56.312023 46.024341) (xy 56.370662 45.831033) (xy 56.370663 45.831028) (xy 56.390462 45.630003) + (xy 56.390462 45.629996) (xy 56.370663 45.428971) (xy 56.370662 45.428966) (xy 56.324753 45.277625) + (xy 56.312023 45.235659) (xy 56.288721 45.192064) (xy 56.2168 45.057508) (xy 56.088651 44.901358) + (xy 56.088647 44.901353) (xy 56.088641 44.901348) (xy 55.932491 44.773199) (xy 55.754346 44.677979) + (xy 55.754341 44.677977) (xy 55.561033 44.619337) (xy 55.561028 44.619336) (xy 55.360003 44.599538) + (xy 55.359997 44.599538) (xy 55.158971 44.619336) (xy 55.158966 44.619337) (xy 54.965658 44.677977) + (xy 54.965653 44.677979) (xy 54.787508 44.773199) (xy 54.631358 44.901348) (xy 54.631348 44.901358) + (xy 54.503199 45.057508) (xy 54.407979 45.235653) (xy 54.407977 45.235658) (xy 54.349337 45.428966) + (xy 54.349336 45.428971) (xy 54.329538 45.629996) (xy 50.0755 45.629996) (xy 50.0755 40.44018) (xy 51.1445 40.44018) + (xy 51.1445 40.659819) (xy 51.173167 40.877567) (xy 51.173167 40.877572) (xy 51.195435 40.960675) + (xy 51.21944 41.050266) (xy 51.230012 41.089719) (xy 51.230016 41.089732) (xy 51.314063 41.292643) + (xy 51.423884 41.482855) (xy 51.557584 41.657097) (xy 51.557586 41.657099) (xy 51.55759 41.657104) + (xy 51.712896 41.81241) (xy 51.7129 41.812413) (xy 51.712902 41.812415) (xy 51.82266 41.896635) + (xy 51.887145 41.946116) (xy 51.977095 41.998049) (xy 52.077356 42.055936) (xy 52.185362 42.100672) + (xy 52.280273 42.139986) (xy 52.492425 42.196832) (xy 52.710182 42.2255) (xy 52.710183 42.2255) + (xy 52.929817 42.2255) (xy 52.929818 42.2255) (xy 53.147575 42.196832) (xy 53.359727 42.139986) + (xy 53.562645 42.055935) (xy 53.752855 41.946116) (xy 53.927104 41.81241) (xy 54.08241 41.657104) + (xy 54.216116 41.482855) (xy 54.325935 41.292645) (xy 54.32702 41.290027) (xy 54.359164 41.212423) + (xy 54.374217 41.176081) (xy 57.2495 41.176081) (xy 57.2495 54.573918) (xy 57.278342 54.718914) + (xy 57.334915 54.855493) (xy 57.334916 54.855495) (xy 57.417049 54.978416) (xy 57.521584 55.082951) + (xy 57.644505 55.165084) (xy 57.781087 55.221658) (xy 57.926082 55.2505) (xy 57.926083 55.2505) + (xy 58.073917 55.2505) (xy 58.073918 55.2505) (xy 58.218913 55.221658) (xy 58.355495 55.165084) + (xy 58.478416 55.082951) (xy 58.582951 54.978416) (xy 58.665084 54.855495) (xy 58.721658 54.718913) + (xy 58.7505 54.573918) (xy 58.7505 53.426082) (xy 58.7505 53.249996) (xy 59.409538 53.249996) (xy 59.409538 53.250003) + (xy 59.429336 53.451028) (xy 59.429337 53.451033) (xy 59.487977 53.644341) (xy 59.487979 53.644346) + (xy 59.583199 53.822491) (xy 59.676624 53.93633) (xy 59.711353 53.978647) (xy 59.711358 53.978651) + (xy 59.867508 54.1068) (xy 60.045653 54.20202) (xy 60.045659 54.202023) (xy 60.180327 54.242873) + (xy 60.238966 54.260662) (xy 60.238971 54.260663) (xy 60.439997 54.280462) (xy 60.44 54.280462) + (xy 60.440003 54.280462) (xy 60.641028 54.260663) (xy 60.641033 54.260662) (xy 60.834341 54.202023) + (xy 60.914925 54.158949) (xy 61.012491 54.1068) (xy 61.012492 54.106798) (xy 61.012494 54.106798) + (xy 61.168647 53.978647) (xy 61.296798 53.822494) (xy 61.312766 53.792621) (xy 61.39202 53.644346) + (xy 61.392023 53.644341) (xy 61.450662 53.451033) (xy 61.450663 53.451028) (xy 61.470462 53.250003) + (xy 61.470462 53.249996) (xy 61.450663 53.048971) (xy 61.450662 53.048966) (xy 61.42047 52.949436) + (xy 61.392023 52.855659) (xy 61.374005 52.82195) (xy 61.2968 52.677508) (xy 61.168651 52.521358) + (xy 61.168647 52.521353) (xy 61.052559 52.426082) (xy 61.012491 52.393199) (xy 60.834346 52.297979) + (xy 60.834341 52.297977) (xy 60.641033 52.239337) (xy 60.641028 52.239336) (xy 60.440003 52.219538) + (xy 60.439997 52.219538) (xy 60.238971 52.239336) (xy 60.238966 52.239337) (xy 60.045658 52.297977) + (xy 60.045653 52.297979) (xy 59.867508 52.393199) (xy 59.711358 52.521348) (xy 59.711348 52.521358) + (xy 59.583199 52.677508) (xy 59.487979 52.855653) (xy 59.487977 52.855658) (xy 59.429337 53.048966) + (xy 59.429336 53.048971) (xy 59.409538 53.249996) (xy 58.7505 53.249996) (xy 58.7505 52.426082) + (xy 58.7505 50.709996) (xy 59.409538 50.709996) (xy 59.409538 50.710003) (xy 59.429336 50.911028) + (xy 59.429337 50.911033) (xy 59.487977 51.104341) (xy 59.487979 51.104346) (xy 59.583199 51.282491) + (xy 59.679636 51.4) (xy 59.711353 51.438647) (xy 59.711358 51.438651) (xy 59.867508 51.5668) (xy 60.045653 51.66202) + (xy 60.045659 51.662023) (xy 60.180327 51.702873) (xy 60.238966 51.720662) (xy 60.238971 51.720663) + (xy 60.439997 51.740462) (xy 60.44 51.740462) (xy 60.440003 51.740462) (xy 60.641028 51.720663) + (xy 60.641033 51.720662) (xy 60.834341 51.662023) (xy 60.949321 51.600565) (xy 61.012491 51.5668) + (xy 61.012492 51.566798) (xy 61.012494 51.566798) (xy 61.168647 51.438647) (xy 61.296798 51.282494) + (xy 61.310805 51.25629) (xy 61.382382 51.122378) (xy 61.392023 51.104341) (xy 61.450662 50.911033) + (xy 61.450663 50.911028) (xy 61.470462 50.710003) (xy 61.470462 50.709996) (xy 61.450663 50.508971) + (xy 61.450662 50.508966) (xy 61.419256 50.405434) (xy 61.392023 50.315659) (xy 61.383653 50.299999) + (xy 61.2968 50.137508) (xy 61.168651 49.981358) (xy 61.168647 49.981353) (xy 61.106821 49.930614) + (xy 61.012491 49.853199) (xy 60.834346 49.757979) (xy 60.834341 49.757977) (xy 60.641033 49.699337) + (xy 60.641028 49.699336) (xy 60.440003 49.679538) (xy 60.439997 49.679538) (xy 60.238971 49.699336) + (xy 60.238966 49.699337) (xy 60.045658 49.757977) (xy 60.045653 49.757979) (xy 59.867508 49.853199) + (xy 59.711358 49.981348) (xy 59.711348 49.981358) (xy 59.583199 50.137508) (xy 59.487979 50.315653) + (xy 59.487977 50.315658) (xy 59.429337 50.508966) (xy 59.429336 50.508971) (xy 59.409538 50.709996) + (xy 58.7505 50.709996) (xy 58.7505 48.169996) (xy 59.409538 48.169996) (xy 59.409538 48.170003) + (xy 59.429336 48.371028) (xy 59.429337 48.371033) (xy 59.487977 48.564341) (xy 59.487979 48.564346) + (xy 59.583199 48.742491) (xy 59.616993 48.783669) (xy 59.711353 48.898647) (xy 59.713002 48.9) (xy 59.867508 49.0268) + (xy 60.045653 49.12202) (xy 60.045659 49.122023) (xy 60.180327 49.162873) (xy 60.238966 49.180662) + (xy 60.238971 49.180663) (xy 60.439997 49.200462) (xy 60.44 49.200462) (xy 60.440003 49.200462) + (xy 60.641028 49.180663) (xy 60.641033 49.180662) (xy 60.651058 49.177621) (xy 60.834341 49.122023) + (xy 60.983352 49.042375) (xy 61.012491 49.0268) (xy 61.012492 49.026798) (xy 61.012494 49.026798) + (xy 61.168647 48.898647) (xy 61.296798 48.742494) (xy 61.335958 48.669232) (xy 61.39202 48.564346) + (xy 61.392023 48.564341) (xy 61.450662 48.371033) (xy 61.450663 48.371028) (xy 61.470462 48.170003) + (xy 61.470462 48.169996) (xy 61.450663 47.968971) (xy 61.450662 47.968966) (xy 61.432873 47.910327) + (xy 61.392023 47.775659) (xy 61.39202 47.775653) (xy 61.2968 47.597508) (xy 61.168651 47.441358) + (xy 61.168647 47.441353) (xy 61.168641 47.441348) (xy 61.012491 47.313199) (xy 60.834346 47.217979) + (xy 60.834341 47.217977) (xy 60.641033 47.159337) (xy 60.641028 47.159336) (xy 60.440003 47.139538) + (xy 60.439997 47.139538) (xy 60.238971 47.159336) (xy 60.238966 47.159337) (xy 60.045658 47.217977) + (xy 60.045653 47.217979) (xy 59.867508 47.313199) (xy 59.711358 47.441348) (xy 59.711348 47.441358) + (xy 59.583199 47.597508) (xy 59.487979 47.775653) (xy 59.487977 47.775658) (xy 59.429337 47.968966) + (xy 59.429336 47.968971) (xy 59.409538 48.169996) (xy 58.7505 48.169996) (xy 58.7505 45.629996) + (xy 59.409538 45.629996) (xy 59.409538 45.630003) (xy 59.429336 45.831028) (xy 59.429337 45.831033) + (xy 59.487977 46.024341) (xy 59.487979 46.024346) (xy 59.583199 46.202491) (xy 59.655016 46.29) + (xy 59.711353 46.358647) (xy 59.711358 46.358651) (xy 59.867508 46.4868) (xy 60.045653 46.58202) + (xy 60.045659 46.582023) (xy 60.180327 46.622873) (xy 60.238966 46.640662) (xy 60.238971 46.640663) + (xy 60.439997 46.660462) (xy 60.44 46.660462) (xy 60.440003 46.660462) (xy 60.641028 46.640663) + (xy 60.641033 46.640662) (xy 60.834341 46.582023) (xy 60.914925 46.538949) (xy 61.012491 46.4868) + (xy 61.012492 46.486798) (xy 61.012494 46.486798) (xy 61.168647 46.358647) (xy 61.296798 46.202494) + (xy 61.392023 46.024341) (xy 61.450662 45.831033) (xy 61.450663 45.831028) (xy 61.470462 45.630003) + (xy 61.470462 45.629996) (xy 61.450663 45.428971) (xy 61.450662 45.428966) (xy 61.404753 45.277625) + (xy 61.392023 45.235659) (xy 61.368721 45.192064) (xy 61.2968 45.057508) (xy 61.168651 44.901358) + (xy 61.168647 44.901353) (xy 61.168641 44.901348) (xy 61.012491 44.773199) (xy 60.834346 44.677979) + (xy 60.834341 44.677977) (xy 60.641033 44.619337) (xy 60.641028 44.619336) (xy 60.440003 44.599538) + (xy 60.439997 44.599538) (xy 60.238971 44.619336) (xy 60.238966 44.619337) (xy 60.045658 44.677977) + (xy 60.045653 44.677979) (xy 59.867508 44.773199) (xy 59.711358 44.901348) (xy 59.711348 44.901358) + (xy 59.583199 45.057508) (xy 59.487979 45.235653) (xy 59.487977 45.235658) (xy 59.429337 45.428966) + (xy 59.429336 45.428971) (xy 59.409538 45.629996) (xy 58.7505 45.629996) (xy 58.7505 41.212415) + (xy 62.2445 41.212415) (xy 62.2445 51.287583) (xy 62.24573 51.312639) (xy 62.248151 51.337218) (xy 62.251827 51.361996) + (xy 62.25183 51.362016) (xy 62.259743 51.401798) (xy 62.274283 51.449729) (xy 62.274285 51.449735) + (xy 62.293101 51.49516) (xy 62.312186 51.530863) (xy 62.316711 51.539328) (xy 62.332218 51.562535) + (xy 62.36399 51.601249) (xy 62.39875 51.636009) (xy 62.437464 51.667781) (xy 62.460671 51.683288) + (xy 62.504843 51.706899) (xy 62.550264 51.725714) (xy 62.561028 51.728979) (xy 62.593962 51.738971) + (xy 62.594902 51.739598) (xy 62.595808 51.739779) (xy 62.595829 51.739784) (xy 62.598196 51.740254) + (xy 62.598201 51.740256) (xy 62.616842 51.743963) (xy 62.62019 51.744629) (xy 62.62019 51.74463) + (xy 62.63798 51.748169) (xy 62.655705 51.750798) (xy 62.662751 51.751844) (xy 62.662759 51.751845) + (xy 62.662786 51.751849) (xy 62.687366 51.75427) (xy 62.71241 51.7555) (xy 62.712427 51.7555) (xy 73.287576 51.7555) + (xy 73.28759 51.7555) (xy 73.31264 51.754269) (xy 73.337224 51.751847) (xy 73.337228 51.751846) + (xy 73.337232 51.751846) (xy 73.346695 51.750441) (xy 73.362025 51.748168) (xy 73.401807 51.740254) + (xy 73.449733 51.725714) (xy 73.449735 51.725712) (xy 73.449745 51.72571) (xy 73.484846 51.711169) + (xy 73.495153 51.7069) (xy 73.539328 51.683288) (xy 73.562535 51.667781) (xy 73.601249 51.636009) + (xy 73.636009 51.601249) (xy 73.667781 51.562535) (xy 73.683288 51.539328) (xy 73.7069 51.495153) + (xy 73.711169 51.484846) (xy 73.72571 51.449745) (xy 73.725714 51.449732) (xy 73.734905 51.419437) + (xy 73.740254 51.401807) (xy 73.740614 51.399999) (xy 80.54475 51.399999) (xy 80.54475 51.4) (xy 80.563669 51.543708) + (xy 80.56367 51.543709) (xy 80.615061 51.667781) (xy 80.619139 51.677625) (xy 80.707379 51.792621) + (xy 80.822375 51.880861) (xy 80.956291 51.93633) (xy 81.1 51.95525) (xy 81.243709 51.93633) (xy 81.377625 51.880861) + (xy 81.492621 51.792621) (xy 81.580861 51.677625) (xy 81.609154 51.609315) (xy 81.630611 51.577201) + (xy 83.277201 49.930611) (xy 83.309315 49.909154) (xy 83.377625 49.880861) (xy 83.492621 49.792621) + (xy 83.580861 49.677625) (xy 83.63633 49.543709) (xy 83.65525 49.4) (xy 83.65273 49.380862) (xy 83.63633 49.256291) + (xy 83.580861 49.122375) (xy 83.492621 49.007379) (xy 83.377625 48.919139) (xy 83.377621 48.919137) + (xy 83.243709 48.86367) (xy 83.243708 48.863669) (xy 83.1 48.84475) (xy 82.956291 48.863669) (xy 82.95629 48.86367) + (xy 82.822378 48.919137) (xy 82.822374 48.919139) (xy 82.707381 49.007377) (xy 82.707377 49.007381) + (xy 82.619138 49.122376) (xy 82.590845 49.190681) (xy 82.569385 49.222799) (xy 80.922799 50.869385) + (xy 80.890681 50.890845) (xy 80.822376 50.919138) (xy 80.707381 51.007377) (xy 80.707377 51.007381) + (xy 80.619139 51.122374) (xy 80.619137 51.122378) (xy 80.56367 51.25629) (xy 80.563669 51.256291) + (xy 80.54475 51.399999) (xy 73.740614 51.399999) (xy 73.748168 51.362025) (xy 73.751847 51.337224) + (xy 73.754269 51.31264) (xy 73.7555 51.28759) (xy 73.7555 45.44) (xy 114.22195 45.44) (xy 114.242116 45.696245) + (xy 114.302122 45.946186) (xy 114.400485 46.183656) (xy 114.400491 46.183668) (xy 114.534787 46.402819) + (xy 114.534791 46.402824) (xy 114.536252 46.404535) (xy 115.104227 45.836559) (xy 115.10674 45.842626) + (xy 115.199762 45.981844) (xy 115.318156 46.100238) (xy 115.457374 46.19326) (xy 115.463437 46.195771) + (xy 114.895463 46.763746) (xy 114.897179 46.765211) (xy 115.116331 46.899508) (xy 115.116343 46.899514) + (xy 115.353813 46.997877) (xy 115.353812 46.997877) (xy 115.603754 47.057883) (xy 115.86 47.078049) + (xy 116.116245 47.057883) (xy 116.366186 46.997877) (xy 116.603656 46.899514) (xy 116.603668 46.899508) + (xy 116.822818 46.765213) (xy 116.824535 46.763746) (xy 116.256561 46.195772) (xy 116.262626 46.19326) + (xy 116.401844 46.100238) (xy 116.520238 45.981844) (xy 116.61326 45.842626) (xy 116.615772 45.836561) + (xy 117.183746 46.404535) (xy 117.185213 46.402818) (xy 117.319508 46.183668) (xy 117.319514 46.183656) + (xy 117.417877 45.946186) (xy 117.477883 45.696245) (xy 117.498049 45.44) (xy 119.30195 45.44) (xy 119.322116 45.696245) + (xy 119.382122 45.946186) (xy 119.480485 46.183656) (xy 119.480491 46.183668) (xy 119.614787 46.402819) + (xy 119.614791 46.402824) (xy 119.616252 46.404535) (xy 120.184227 45.836559) (xy 120.18674 45.842626) + (xy 120.279762 45.981844) (xy 120.398156 46.100238) (xy 120.537374 46.19326) (xy 120.543437 46.195771) + (xy 119.975463 46.763746) (xy 119.977179 46.765211) (xy 120.196331 46.899508) (xy 120.196343 46.899514) + (xy 120.433813 46.997877) (xy 120.433812 46.997877) (xy 120.683754 47.057883) (xy 120.94 47.078049) + (xy 121.196245 47.057883) (xy 121.446186 46.997877) (xy 121.683656 46.899514) (xy 121.683668 46.899508) + (xy 121.902818 46.765213) (xy 121.904535 46.763746) (xy 121.336561 46.195772) (xy 121.342626 46.19326) + (xy 121.481844 46.100238) (xy 121.600238 45.981844) (xy 121.69326 45.842626) (xy 121.695772 45.836561) + (xy 122.263746 46.404535) (xy 122.265213 46.402818) (xy 122.399508 46.183668) (xy 122.399514 46.183656) + (xy 122.497877 45.946186) (xy 122.557883 45.696245) (xy 122.578049 45.44) (xy 134.92195 45.44) (xy 134.942116 45.696245) + (xy 135.002122 45.946186) (xy 135.100485 46.183656) (xy 135.100491 46.183668) (xy 135.234787 46.402819) + (xy 135.234791 46.402824) (xy 135.236252 46.404535) (xy 135.804227 45.836559) (xy 135.80674 45.842626) + (xy 135.899762 45.981844) (xy 136.018156 46.100238) (xy 136.157374 46.19326) (xy 136.163437 46.195771) + (xy 135.595463 46.763746) (xy 135.597179 46.765211) (xy 135.816331 46.899508) (xy 135.816343 46.899514) + (xy 136.053813 46.997877) (xy 136.053812 46.997877) (xy 136.303754 47.057883) (xy 136.56 47.078049) + (xy 136.816245 47.057883) (xy 137.066186 46.997877) (xy 137.303656 46.899514) (xy 137.303668 46.899508) + (xy 137.522818 46.765213) (xy 137.524535 46.763746) (xy 136.956561 46.195772) (xy 136.962626 46.19326) + (xy 137.101844 46.100238) (xy 137.220238 45.981844) (xy 137.31326 45.842626) (xy 137.315772 45.836561) + (xy 137.883746 46.404535) (xy 137.885213 46.402818) (xy 138.019508 46.183668) (xy 138.019514 46.183656) + (xy 138.117877 45.946186) (xy 138.177883 45.696245) (xy 138.198049 45.44) (xy 140.00195 45.44) (xy 140.022116 45.696245) + (xy 140.082122 45.946186) (xy 140.180485 46.183656) (xy 140.180491 46.183668) (xy 140.314787 46.402819) + (xy 140.314791 46.402824) (xy 140.316252 46.404535) (xy 140.884227 45.836559) (xy 140.88674 45.842626) + (xy 140.979762 45.981844) (xy 141.098156 46.100238) (xy 141.237374 46.19326) (xy 141.243437 46.195771) + (xy 140.675463 46.763746) (xy 140.677179 46.765211) (xy 140.896331 46.899508) (xy 140.896343 46.899514) + (xy 141.133813 46.997877) (xy 141.133812 46.997877) (xy 141.383754 47.057883) (xy 141.64 47.078049) + (xy 141.896245 47.057883) (xy 142.146186 46.997877) (xy 142.383656 46.899514) (xy 142.383668 46.899508) + (xy 142.602818 46.765213) (xy 142.604535 46.763746) (xy 142.036561 46.195772) (xy 142.042626 46.19326) + (xy 142.181844 46.100238) (xy 142.300238 45.981844) (xy 142.39326 45.842626) (xy 142.395772 45.836561) + (xy 142.963746 46.404535) (xy 142.965213 46.402818) (xy 143.099508 46.183668) (xy 143.099514 46.183656) + (xy 143.197877 45.946186) (xy 143.257883 45.696245) (xy 143.278049 45.44) (xy 143.257883 45.183754) + (xy 143.197877 44.933813) (xy 143.099514 44.696343) (xy 143.099508 44.696331) (xy 142.965211 44.477179) + (xy 142.963746 44.475463) (xy 142.395771 45.043437) (xy 142.39326 45.037374) (xy 142.300238 44.898156) + (xy 142.181844 44.779762) (xy 142.042626 44.68674) (xy 142.036559 44.684227) (xy 142.604535 44.116252) + (xy 142.602824 44.114791) (xy 142.602819 44.114787) (xy 142.383668 43.980491) (xy 142.383656 43.980485) + (xy 142.146186 43.882122) (xy 142.146187 43.882122) (xy 141.896245 43.822116) (xy 141.64 43.80195) + (xy 141.383754 43.822116) (xy 141.133813 43.882122) (xy 140.896343 43.980485) (xy 140.896331 43.980491) + (xy 140.677184 44.114785) (xy 140.677176 44.114791) (xy 140.675463 44.116252) (xy 141.243438 44.684227) + (xy 141.237374 44.68674) (xy 141.098156 44.779762) (xy 140.979762 44.898156) (xy 140.88674 45.037374) + (xy 140.884227 45.043438) (xy 140.316252 44.475463) (xy 140.314791 44.477176) (xy 140.314785 44.477184) + (xy 140.180491 44.696331) (xy 140.180485 44.696343) (xy 140.082122 44.933813) (xy 140.022116 45.183754) + (xy 140.00195 45.44) (xy 138.198049 45.44) (xy 138.177883 45.183754) (xy 138.117877 44.933813) (xy 138.019514 44.696343) + (xy 138.019508 44.696331) (xy 137.885211 44.477179) (xy 137.883746 44.475463) (xy 137.315771 45.043437) + (xy 137.31326 45.037374) (xy 137.220238 44.898156) (xy 137.101844 44.779762) (xy 136.962626 44.68674) + (xy 136.956559 44.684227) (xy 137.524535 44.116252) (xy 137.522824 44.114791) (xy 137.522819 44.114787) + (xy 137.303668 43.980491) (xy 137.303656 43.980485) (xy 137.066186 43.882122) (xy 137.066187 43.882122) + (xy 136.816245 43.822116) (xy 136.56 43.80195) (xy 136.303754 43.822116) (xy 136.053813 43.882122) + (xy 135.816343 43.980485) (xy 135.816331 43.980491) (xy 135.597184 44.114785) (xy 135.597176 44.114791) + (xy 135.595463 44.116252) (xy 136.163438 44.684227) (xy 136.157374 44.68674) (xy 136.018156 44.779762) + (xy 135.899762 44.898156) (xy 135.80674 45.037374) (xy 135.804227 45.043438) (xy 135.236252 44.475463) + (xy 135.234791 44.477176) (xy 135.234785 44.477184) (xy 135.100491 44.696331) (xy 135.100485 44.696343) + (xy 135.002122 44.933813) (xy 134.942116 45.183754) (xy 134.92195 45.44) (xy 122.578049 45.44) (xy 122.557883 45.183754) + (xy 122.497877 44.933813) (xy 122.399514 44.696343) (xy 122.399508 44.696331) (xy 122.265211 44.477179) + (xy 122.263746 44.475463) (xy 121.695771 45.043437) (xy 121.69326 45.037374) (xy 121.600238 44.898156) + (xy 121.481844 44.779762) (xy 121.342626 44.68674) (xy 121.336559 44.684227) (xy 121.904535 44.116252) + (xy 121.902824 44.114791) (xy 121.902819 44.114787) (xy 121.683668 43.980491) (xy 121.683656 43.980485) + (xy 121.446186 43.882122) (xy 121.446187 43.882122) (xy 121.196245 43.822116) (xy 120.94 43.80195) + (xy 120.683754 43.822116) (xy 120.433813 43.882122) (xy 120.196343 43.980485) (xy 120.196331 43.980491) + (xy 119.977184 44.114785) (xy 119.977176 44.114791) (xy 119.975463 44.116252) (xy 120.543438 44.684227) + (xy 120.537374 44.68674) (xy 120.398156 44.779762) (xy 120.279762 44.898156) (xy 120.18674 45.037374) + (xy 120.184227 45.043438) (xy 119.616252 44.475463) (xy 119.614791 44.477176) (xy 119.614785 44.477184) + (xy 119.480491 44.696331) (xy 119.480485 44.696343) (xy 119.382122 44.933813) (xy 119.322116 45.183754) + (xy 119.30195 45.44) (xy 117.498049 45.44) (xy 117.477883 45.183754) (xy 117.417877 44.933813) (xy 117.319514 44.696343) + (xy 117.319508 44.696331) (xy 117.185211 44.477179) (xy 117.183746 44.475463) (xy 116.615771 45.043437) + (xy 116.61326 45.037374) (xy 116.520238 44.898156) (xy 116.401844 44.779762) (xy 116.262626 44.68674) + (xy 116.256559 44.684227) (xy 116.824535 44.116252) (xy 116.822824 44.114791) (xy 116.822819 44.114787) + (xy 116.603668 43.980491) (xy 116.603656 43.980485) (xy 116.366186 43.882122) (xy 116.366187 43.882122) + (xy 116.116245 43.822116) (xy 115.86 43.80195) (xy 115.603754 43.822116) (xy 115.353813 43.882122) + (xy 115.116343 43.980485) (xy 115.116331 43.980491) (xy 114.897184 44.114785) (xy 114.897176 44.114791) + (xy 114.895463 44.116252) (xy 115.463438 44.684227) (xy 115.457374 44.68674) (xy 115.318156 44.779762) + (xy 115.199762 44.898156) (xy 115.10674 45.037374) (xy 115.104227 45.043438) (xy 114.536252 44.475463) + (xy 114.534791 44.477176) (xy 114.534785 44.477184) (xy 114.400491 44.696331) (xy 114.400485 44.696343) + (xy 114.302122 44.933813) (xy 114.242116 45.183754) (xy 114.22195 45.44) (xy 73.7555 45.44) (xy 73.7555 41.899996) + (xy 76.894659 41.899996) (xy 76.894659 41.900003) (xy 76.913974 42.096126) (xy 76.913975 42.096129) + (xy 76.971187 42.28473) (xy 76.971188 42.284732) (xy 77.042218 42.417618) (xy 77.06409 42.458538) + (xy 77.064092 42.45854) (xy 77.064093 42.458542) (xy 77.189112 42.610878) (xy 77.189121 42.610887) + (xy 77.2705 42.677673) (xy 77.341462 42.73591) (xy 77.515273 42.828814) (xy 77.703868 42.886024) + (xy 77.70387 42.886024) (xy 77.703873 42.886025) (xy 77.899997 42.905341) (xy 77.9 42.905341) (xy 77.900003 42.905341) + (xy 77.954273 42.899996) (xy 117.119628 42.899996) (xy 117.119628 42.900003) (xy 117.139078 43.122326) + (xy 117.139079 43.122333) (xy 117.13908 43.122334) (xy 117.196844 43.337913) (xy 117.291165 43.540186) + (xy 117.419178 43.723007) (xy 117.576993 43.880822) (xy 117.576996 43.880824) (xy 117.576997 43.880825) + (xy 117.617481 43.909172) (xy 117.759814 44.008835) (xy 117.962087 44.103156) (xy 118.177666 44.16092) + (xy 118.17767 44.16092) (xy 118.177673 44.160921) (xy 118.399997 44.180372) (xy 118.4 44.180372) + (xy 118.400003 44.180372) (xy 118.622326 44.160921) (xy 118.622327 44.16092) (xy 118.622334 44.16092) + (xy 118.837913 44.103156) (xy 119.040186 44.008835) (xy 119.223007 43.880822) (xy 119.380822 43.723007) + (xy 119.508835 43.540186) (xy 119.603156 43.337913) (xy 119.66092 43.122334) (xy 119.680372 42.9) + (xy 119.680372 42.899996) (xy 137.819628 42.899996) (xy 137.819628 42.900003) (xy 137.839078 43.122326) + (xy 137.839079 43.122333) (xy 137.83908 43.122334) (xy 137.896844 43.337913) (xy 137.991165 43.540186) + (xy 138.119178 43.723007) (xy 138.276993 43.880822) (xy 138.276996 43.880824) (xy 138.276997 43.880825) + (xy 138.317481 43.909172) (xy 138.459814 44.008835) (xy 138.662087 44.103156) (xy 138.877666 44.16092) + (xy 138.87767 44.16092) (xy 138.877673 44.160921) (xy 139.099997 44.180372) (xy 139.1 44.180372) + (xy 139.100003 44.180372) (xy 139.322326 44.160921) (xy 139.322327 44.16092) (xy 139.322334 44.16092) + (xy 139.537913 44.103156) (xy 139.740186 44.008835) (xy 139.923007 43.880822) (xy 140.080822 43.723007) + (xy 140.208835 43.540186) (xy 140.303156 43.337913) (xy 140.36092 43.122334) (xy 140.380372 42.9) + (xy 140.380372 42.899996) (xy 140.360921 42.677673) (xy 140.36092 42.67767) (xy 140.36092 42.677666) + (xy 140.303156 42.462087) (xy 140.208835 42.259814) (xy 140.080822 42.076993) (xy 139.923007 41.919178) + (xy 139.923003 41.919175) (xy 139.923002 41.919174) (xy 139.770527 41.81241) (xy 139.740186 41.791165) + (xy 139.537913 41.696844) (xy 139.322334 41.63908) (xy 139.322333 41.639079) (xy 139.322326 41.639078) + (xy 139.100003 41.619628) (xy 139.099997 41.619628) (xy 138.877673 41.639078) (xy 138.662087 41.696844) + (xy 138.459815 41.791164) (xy 138.276997 41.919174) (xy 138.119174 42.076997) (xy 137.991164 42.259815) + (xy 137.896844 42.462087) (xy 137.839078 42.677673) (xy 137.819628 42.899996) (xy 119.680372 42.899996) + (xy 119.660921 42.677673) (xy 119.66092 42.67767) (xy 119.66092 42.677666) (xy 119.603156 42.462087) + (xy 119.508835 42.259814) (xy 119.380822 42.076993) (xy 119.223007 41.919178) (xy 119.223003 41.919175) + (xy 119.223002 41.919174) (xy 119.070527 41.81241) (xy 119.040186 41.791165) (xy 118.837913 41.696844) + (xy 118.622334 41.63908) (xy 118.622333 41.639079) (xy 118.622326 41.639078) (xy 118.400003 41.619628) + (xy 118.399997 41.619628) (xy 118.177673 41.639078) (xy 117.962087 41.696844) (xy 117.759815 41.791164) + (xy 117.576997 41.919174) (xy 117.419174 42.076997) (xy 117.291164 42.259815) (xy 117.196844 42.462087) + (xy 117.139078 42.677673) (xy 117.119628 42.899996) (xy 77.954273 42.899996) (xy 78.096126 42.886025) + (xy 78.096127 42.886024) (xy 78.096132 42.886024) (xy 78.284727 42.828814) (xy 78.458538 42.73591) + (xy 78.610883 42.610883) (xy 78.73591 42.458538) (xy 78.828814 42.284727) (xy 78.886024 42.096132) + (xy 78.888594 42.070047) (xy 78.905341 41.900003) (xy 78.905341 41.899996) (xy 78.886025 41.703873) + (xy 78.886024 41.70387) (xy 78.886024 41.703868) (xy 78.828814 41.515273) (xy 78.73591 41.341462) + (xy 78.630007 41.212419) (xy 78.610887 41.189121) (xy 78.610878 41.189112) (xy 78.458542 41.064093) + (xy 78.45854 41.064092) (xy 78.458538 41.06409) (xy 78.376497 41.020238) (xy 78.284732 40.971188) + (xy 78.28473 40.971187) (xy 78.096129 40.913975) (xy 78.096126 40.913974) (xy 77.900003 40.894659) + (xy 77.899997 40.894659) (xy 77.703873 40.913974) (xy 77.70387 40.913975) (xy 77.515269 40.971187) + (xy 77.515267 40.971188) (xy 77.341467 41.064087) (xy 77.341457 41.064093) (xy 77.189121 41.189112) + (xy 77.189112 41.189121) (xy 77.064093 41.341457) (xy 77.064087 41.341467) (xy 76.971188 41.515267) + (xy 76.971187 41.515269) (xy 76.913975 41.70387) (xy 76.913974 41.703873) (xy 76.894659 41.899996) + (xy 73.7555 41.899996) (xy 73.7555 41.212409) (xy 73.754269 41.187359) (xy 73.751847 41.162775) + (xy 73.748168 41.137974) (xy 73.740254 41.098192) (xy 73.725714 41.050266) (xy 73.725713 41.050263) + (xy 73.72571 41.050253) (xy 73.706908 41.004865) (xy 73.7069 41.004847) (xy 73.7069 41.004846) (xy 73.683288 40.960671) + (xy 73.667781 40.937464) (xy 73.636009 40.89875) (xy 73.601249 40.86399) (xy 73.562535 40.832218) + (xy 73.539328 40.816711) (xy 73.539326 40.81671) (xy 73.539323 40.816708) (xy 73.49516 40.793101) + (xy 73.449735 40.774285) (xy 73.44973 40.774283) (xy 73.449729 40.774283) (xy 73.401798 40.759743) + (xy 73.401788 40.759741) (xy 73.401784 40.75974) (xy 73.362017 40.75183) (xy 73.337218 40.748151) + (xy 73.337219 40.748151) (xy 73.312637 40.74573) (xy 73.312641 40.74573) (xy 73.299276 40.745074) + (xy 73.28759 40.7445) (xy 70.007 40.7445) (xy 69.948809 40.725593) (xy 69.912845 40.676093) (xy 69.908 40.6455) + (xy 69.908 40.36) (xy 114.22195 40.36) (xy 114.242116 40.616245) (xy 114.302122 40.866186) (xy 114.400485 41.103656) + (xy 114.400491 41.103668) (xy 114.534787 41.322819) (xy 114.534791 41.322824) (xy 114.536252 41.324535) + (xy 115.104227 40.756559) (xy 115.10674 40.762626) (xy 115.199762 40.901844) (xy 115.318156 41.020238) + (xy 115.457374 41.11326) (xy 115.463437 41.115771) (xy 114.895463 41.683746) (xy 114.897179 41.685211) + (xy 115.116331 41.819508) (xy 115.116343 41.819514) (xy 115.353813 41.917877) (xy 115.353812 41.917877) + (xy 115.603754 41.977883) (xy 115.86 41.998049) (xy 116.116245 41.977883) (xy 116.366186 41.917877) + (xy 116.603656 41.819514) (xy 116.603668 41.819508) (xy 116.822818 41.685213) (xy 116.824535 41.683746) + (xy 116.256561 41.115772) (xy 116.262626 41.11326) (xy 116.401844 41.020238) (xy 116.520238 40.901844) + (xy 116.61326 40.762626) (xy 116.615772 40.756561) (xy 117.183746 41.324535) (xy 117.185213 41.322818) + (xy 117.319508 41.103668) (xy 117.319514 41.103656) (xy 117.417877 40.866186) (xy 117.477883 40.616245) + (xy 117.498049 40.36) (xy 119.30195 40.36) (xy 119.322116 40.616245) (xy 119.382122 40.866186) (xy 119.480485 41.103656) + (xy 119.480491 41.103668) (xy 119.614787 41.322819) (xy 119.614791 41.322824) (xy 119.616252 41.324535) + (xy 120.184227 40.756559) (xy 120.18674 40.762626) (xy 120.279762 40.901844) (xy 120.398156 41.020238) + (xy 120.537374 41.11326) (xy 120.543437 41.115771) (xy 119.975463 41.683746) (xy 119.977179 41.685211) + (xy 120.196331 41.819508) (xy 120.196343 41.819514) (xy 120.433813 41.917877) (xy 120.433812 41.917877) + (xy 120.683754 41.977883) (xy 120.94 41.998049) (xy 121.196245 41.977883) (xy 121.446186 41.917877) + (xy 121.683656 41.819514) (xy 121.683668 41.819508) (xy 121.902818 41.685213) (xy 121.904535 41.683746) + (xy 121.336561 41.115772) (xy 121.342626 41.11326) (xy 121.481844 41.020238) (xy 121.600238 40.901844) + (xy 121.69326 40.762626) (xy 121.695772 40.756561) (xy 122.263746 41.324535) (xy 122.265213 41.322818) + (xy 122.399508 41.103668) (xy 122.399514 41.103656) (xy 122.497877 40.866186) (xy 122.557883 40.616245) + (xy 122.578049 40.36) (xy 134.92195 40.36) (xy 134.942116 40.616245) (xy 135.002122 40.866186) (xy 135.100485 41.103656) + (xy 135.100491 41.103668) (xy 135.234787 41.322819) (xy 135.234791 41.322824) (xy 135.236252 41.324535) + (xy 135.804227 40.756559) (xy 135.80674 40.762626) (xy 135.899762 40.901844) (xy 136.018156 41.020238) + (xy 136.157374 41.11326) (xy 136.163437 41.115771) (xy 135.595463 41.683746) (xy 135.597179 41.685211) + (xy 135.816331 41.819508) (xy 135.816343 41.819514) (xy 136.053813 41.917877) (xy 136.053812 41.917877) + (xy 136.303754 41.977883) (xy 136.56 41.998049) (xy 136.816245 41.977883) (xy 137.066186 41.917877) + (xy 137.303656 41.819514) (xy 137.303668 41.819508) (xy 137.522818 41.685213) (xy 137.524535 41.683746) + (xy 136.956561 41.115772) (xy 136.962626 41.11326) (xy 137.101844 41.020238) (xy 137.220238 40.901844) + (xy 137.31326 40.762626) (xy 137.315772 40.756561) (xy 137.883746 41.324535) (xy 137.885213 41.322818) + (xy 138.019508 41.103668) (xy 138.019514 41.103656) (xy 138.117877 40.866186) (xy 138.177883 40.616245) + (xy 138.198049 40.36) (xy 140.00195 40.36) (xy 140.022116 40.616245) (xy 140.082122 40.866186) (xy 140.180485 41.103656) + (xy 140.180491 41.103668) (xy 140.314787 41.322819) (xy 140.314791 41.322824) (xy 140.316252 41.324535) + (xy 140.884227 40.756559) (xy 140.88674 40.762626) (xy 140.979762 40.901844) (xy 141.098156 41.020238) + (xy 141.237374 41.11326) (xy 141.243437 41.115771) (xy 140.675463 41.683746) (xy 140.677179 41.685211) + (xy 140.896331 41.819508) (xy 140.896343 41.819514) (xy 141.133813 41.917877) (xy 141.133812 41.917877) + (xy 141.383754 41.977883) (xy 141.64 41.998049) (xy 141.896245 41.977883) (xy 142.146186 41.917877) + (xy 142.383656 41.819514) (xy 142.383668 41.819508) (xy 142.602818 41.685213) (xy 142.604535 41.683746) + (xy 142.036561 41.115772) (xy 142.042626 41.11326) (xy 142.181844 41.020238) (xy 142.300238 40.901844) + (xy 142.39326 40.762626) (xy 142.395772 40.756561) (xy 142.963746 41.324535) (xy 142.965213 41.322818) + (xy 143.099508 41.103668) (xy 143.099514 41.103656) (xy 143.197877 40.866186) (xy 143.257883 40.616245) + (xy 143.273797 40.414034) (xy 204.6095 40.414034) (xy 204.6095 40.665965) (xy 204.648908 40.91478) + (xy 204.726759 41.154379) (xy 204.822079 41.341457) (xy 204.84113 41.378845) (xy 204.989207 41.582656) + (xy 205.167344 41.760793) (xy 205.371155 41.90887) (xy 205.595621 42.023241) (xy 205.835215 42.10109) + (xy 205.835216 42.10109) (xy 205.835219 42.101091) (xy 206.084035 42.1405) (xy 206.084038 42.1405) + (xy 206.335965 42.1405) (xy 206.58478 42.101091) (xy 206.584781 42.10109) (xy 206.584785 42.10109) + (xy 206.824379 42.023241) (xy 207.048845 41.90887) (xy 207.252656 41.760793) (xy 207.430793 41.582656) + (xy 207.57887 41.378845) (xy 207.693241 41.154379) (xy 207.77109 40.914785) (xy 207.771218 40.913976) + (xy 207.8105 40.665965) (xy 207.8105 40.414034) (xy 207.771091 40.165219) (xy 207.77109 40.165215) + (xy 207.693241 39.925621) (xy 207.57887 39.701155) (xy 207.430793 39.497344) (xy 207.252656 39.319207) + (xy 207.048845 39.17113) (xy 207.048844 39.171129) (xy 207.048842 39.171128) (xy 206.824379 39.056759) + (xy 206.58478 38.978908) (xy 206.335965 38.9395) (xy 206.335962 38.9395) (xy 206.084038 38.9395) + (xy 206.084035 38.9395) (xy 205.835219 38.978908) (xy 205.59562 39.056759) (xy 205.371157 39.171128) + (xy 205.167345 39.319206) (xy 204.989206 39.497345) (xy 204.841128 39.701157) (xy 204.726759 39.92562) + (xy 204.648908 40.165219) (xy 204.6095 40.414034) (xy 143.273797 40.414034) (xy 143.278049 40.36) + (xy 143.257883 40.103754) (xy 143.197877 39.853813) (xy 143.099514 39.616343) (xy 143.099508 39.616331) + (xy 142.965211 39.397179) (xy 142.963746 39.395463) (xy 142.395771 39.963437) (xy 142.39326 39.957374) + (xy 142.300238 39.818156) (xy 142.181844 39.699762) (xy 142.042626 39.60674) (xy 142.036559 39.604227) + (xy 142.604535 39.036252) (xy 142.602824 39.034791) (xy 142.602819 39.034787) (xy 142.383668 38.900491) + (xy 142.383656 38.900485) (xy 142.146186 38.802122) (xy 142.146187 38.802122) (xy 141.896245 38.742116) + (xy 141.64 38.72195) (xy 141.383754 38.742116) (xy 141.133813 38.802122) (xy 140.896343 38.900485) + (xy 140.896331 38.900491) (xy 140.677184 39.034785) (xy 140.677176 39.034791) (xy 140.675463 39.036252) + (xy 141.243438 39.604227) (xy 141.237374 39.60674) (xy 141.098156 39.699762) (xy 140.979762 39.818156) + (xy 140.88674 39.957374) (xy 140.884227 39.963438) (xy 140.316252 39.395463) (xy 140.314791 39.397176) + (xy 140.314785 39.397184) (xy 140.180491 39.616331) (xy 140.180485 39.616343) (xy 140.082122 39.853813) + (xy 140.022116 40.103754) (xy 140.00195 40.36) (xy 138.198049 40.36) (xy 138.177883 40.103754) (xy 138.117877 39.853813) + (xy 138.019514 39.616343) (xy 138.019508 39.616331) (xy 137.885211 39.397179) (xy 137.883746 39.395463) + (xy 137.315771 39.963437) (xy 137.31326 39.957374) (xy 137.220238 39.818156) (xy 137.101844 39.699762) + (xy 136.962626 39.60674) (xy 136.956559 39.604227) (xy 137.524535 39.036252) (xy 137.522824 39.034791) + (xy 137.522819 39.034787) (xy 137.303668 38.900491) (xy 137.303656 38.900485) (xy 137.066186 38.802122) + (xy 137.066187 38.802122) (xy 136.816245 38.742116) (xy 136.56 38.72195) (xy 136.303754 38.742116) + (xy 136.053813 38.802122) (xy 135.816343 38.900485) (xy 135.816331 38.900491) (xy 135.597184 39.034785) + (xy 135.597176 39.034791) (xy 135.595463 39.036252) (xy 136.163438 39.604227) (xy 136.157374 39.60674) + (xy 136.018156 39.699762) (xy 135.899762 39.818156) (xy 135.80674 39.957374) (xy 135.804227 39.963438) + (xy 135.236252 39.395463) (xy 135.234791 39.397176) (xy 135.234785 39.397184) (xy 135.100491 39.616331) + (xy 135.100485 39.616343) (xy 135.002122 39.853813) (xy 134.942116 40.103754) (xy 134.92195 40.36) + (xy 122.578049 40.36) (xy 122.557883 40.103754) (xy 122.497877 39.853813) (xy 122.399514 39.616343) + (xy 122.399508 39.616331) (xy 122.265211 39.397179) (xy 122.263746 39.395463) (xy 121.695771 39.963437) + (xy 121.69326 39.957374) (xy 121.600238 39.818156) (xy 121.481844 39.699762) (xy 121.342626 39.60674) + (xy 121.336559 39.604227) (xy 121.904535 39.036252) (xy 121.902824 39.034791) (xy 121.902819 39.034787) + (xy 121.683668 38.900491) (xy 121.683656 38.900485) (xy 121.446186 38.802122) (xy 121.446187 38.802122) + (xy 121.196245 38.742116) (xy 120.94 38.72195) (xy 120.683754 38.742116) (xy 120.433813 38.802122) + (xy 120.196343 38.900485) (xy 120.196331 38.900491) (xy 119.977184 39.034785) (xy 119.977176 39.034791) + (xy 119.975463 39.036252) (xy 120.543438 39.604227) (xy 120.537374 39.60674) (xy 120.398156 39.699762) + (xy 120.279762 39.818156) (xy 120.18674 39.957374) (xy 120.184227 39.963438) (xy 119.616252 39.395463) + (xy 119.614791 39.397176) (xy 119.614785 39.397184) (xy 119.480491 39.616331) (xy 119.480485 39.616343) + (xy 119.382122 39.853813) (xy 119.322116 40.103754) (xy 119.30195 40.36) (xy 117.498049 40.36) (xy 117.477883 40.103754) + (xy 117.417877 39.853813) (xy 117.319514 39.616343) (xy 117.319508 39.616331) (xy 117.185211 39.397179) + (xy 117.183746 39.395463) (xy 116.615771 39.963437) (xy 116.61326 39.957374) (xy 116.520238 39.818156) + (xy 116.401844 39.699762) (xy 116.262626 39.60674) (xy 116.256559 39.604227) (xy 116.824535 39.036252) + (xy 116.822824 39.034791) (xy 116.822819 39.034787) (xy 116.603668 38.900491) (xy 116.603656 38.900485) + (xy 116.366186 38.802122) (xy 116.366187 38.802122) (xy 116.116245 38.742116) (xy 115.86 38.72195) + (xy 115.603754 38.742116) (xy 115.353813 38.802122) (xy 115.116343 38.900485) (xy 115.116331 38.900491) + (xy 114.897184 39.034785) (xy 114.897176 39.034791) (xy 114.895463 39.036252) (xy 115.463438 39.604227) + (xy 115.457374 39.60674) (xy 115.318156 39.699762) (xy 115.199762 39.818156) (xy 115.10674 39.957374) + (xy 115.104227 39.963438) (xy 114.536252 39.395463) (xy 114.534791 39.397176) (xy 114.534785 39.397184) + (xy 114.400491 39.616331) (xy 114.400485 39.616343) (xy 114.302122 39.853813) (xy 114.242116 40.103754) + (xy 114.22195 40.36) (xy 69.908 40.36) (xy 69.908 40.054001) (xy 69.907999 40.054) (xy 68.911686 40.054) + (xy 68.92008 40.045606) (xy 68.972741 39.954394) (xy 69 39.852661) (xy 69 39.747339) (xy 68.972741 39.645606) + (xy 68.92008 39.554394) (xy 68.911686 39.546) (xy 69.907999 39.546) (xy 69.908 39.545999) (xy 69.908 38.951412) + (xy 69.901495 38.890911) (xy 69.901493 38.890901) (xy 69.850447 38.754039) (xy 69.762907 38.6371) + (xy 69.762899 38.637092) (xy 69.64596 38.549552) (xy 69.509098 38.498506) (xy 69.509088 38.498504) + (xy 69.448587 38.492) (xy 68.854001 38.492) (xy 68.854 38.492001) (xy 68.854 39.488314) (xy 68.845606 39.47992) + (xy 68.754394 39.427259) (xy 68.652661 39.4) (xy 68.547339 39.4) (xy 68.445606 39.427259) (xy 68.354394 39.47992) + (xy 68.346 39.488314) (xy 68.346 38.492001) (xy 68.345999 38.492) (xy 67.751413 38.492) (xy 67.690911 38.498504) + (xy 67.690901 38.498506) (xy 67.554039 38.549552) (xy 67.4371 38.637092) (xy 67.437092 38.6371) + (xy 67.349552 38.754039) (xy 67.298506 38.890901) (xy 67.298504 38.890911) (xy 67.292 38.951412) + (xy 67.292 39.545999) (xy 67.292001 39.546) (xy 68.288314 39.546) (xy 68.27992 39.554394) (xy 68.227259 39.645606) + (xy 68.2 39.747339) (xy 68.2 39.852661) (xy 68.227259 39.954394) (xy 68.27992 40.045606) (xy 68.288314 40.054) + (xy 67.292001 40.054) (xy 67.292 40.054001) (xy 67.292 40.6455) (xy 67.273093 40.703691) (xy 67.223593 40.739655) + (xy 67.193 40.7445) (xy 62.71241 40.7445) (xy 62.701975 40.745012) (xy 62.687359 40.74573) (xy 62.662794 40.74815) + (xy 62.662769 40.748153) (xy 62.637984 40.75183) (xy 62.598209 40.759741) (xy 62.550269 40.774283) + (xy 62.550264 40.774285) (xy 62.504854 40.793094) (xy 62.504849 40.793096) (xy 62.504848 40.793097) + (xy 62.504841 40.793101) (xy 62.460669 40.816711) (xy 62.437462 40.832219) (xy 62.398755 40.863985) + (xy 62.363985 40.898755) (xy 62.332219 40.937462) (xy 62.316715 40.960664) (xy 62.316708 40.960675) + (xy 62.293101 41.004838) (xy 62.274285 41.050263) (xy 62.274283 41.05027) (xy 62.259749 41.098183) + (xy 62.259743 41.098202) (xy 62.25974 41.098214) (xy 62.25183 41.137981) (xy 62.248151 41.16278) + (xy 62.24573 41.187359) (xy 62.24573 41.187366) (xy 62.244619 41.21) (xy 62.2445 41.212415) (xy 58.7505 41.212415) + (xy 58.7505 41.176082) (xy 58.721658 41.031087) (xy 58.665084 40.894505) (xy 58.582951 40.771584) + (xy 58.478416 40.667049) (xy 58.355495 40.584916) (xy 58.355493 40.584915) (xy 58.218914 40.528342) + (xy 58.073918 40.4995) (xy 57.926082 40.4995) (xy 57.926081 40.4995) (xy 57.781085 40.528342) (xy 57.644506 40.584915) + (xy 57.521585 40.667048) (xy 57.417048 40.771585) (xy 57.334915 40.894506) (xy 57.278342 41.031085) + (xy 57.2495 41.176081) (xy 54.374217 41.176081) (xy 54.409986 41.089727) (xy 54.466832 40.877575) + (xy 54.4955 40.659818) (xy 54.4955 40.440182) (xy 54.466832 40.222425) (xy 54.409986 40.010273) + (xy 54.370672 39.915362) (xy 54.325936 39.807356) (xy 54.216115 39.617144) (xy 54.2155 39.616343) + (xy 54.161524 39.545999) (xy 54.082415 39.442902) (xy 54.082413 39.4429) (xy 54.08241 39.442896) + (xy 53.927104 39.28759) (xy 53.927099 39.287586) (xy 53.927097 39.287584) (xy 53.752855 39.153884) + (xy 53.562643 39.044063) (xy 53.359732 38.960016) (xy 53.359731 38.960015) (xy 53.359727 38.960014) + (xy 53.147575 38.903168) (xy 53.147572 38.903167) (xy 53.14757 38.903167) (xy 52.929819 38.8745) + (xy 52.929818 38.8745) (xy 52.710182 38.8745) (xy 52.71018 38.8745) (xy 52.492432 38.903167) (xy 52.492427 38.903167) + (xy 52.28028 38.960012) (xy 52.280267 38.960016) (xy 52.077356 39.044063) (xy 51.887144 39.153884) + (xy 51.712902 39.287584) (xy 51.557584 39.442902) (xy 51.423884 39.617144) (xy 51.314063 39.807356) + (xy 51.230016 40.010267) (xy 51.230012 40.01028) (xy 51.173167 40.222427) (xy 51.173167 40.222432) + (xy 51.1445 40.44018) (xy 50.0755 40.44018) (xy 50.0755 35.1745) (xy 50.094407 35.116309) (xy 50.143907 35.080345) + (xy 50.1745 35.0755) (xy 170.725107 35.0755) + ) + ) + ) + (zone + (net 0) + (net_name "") + (layer "B.Cu") + (uuid "7ad2f3e7-e3ed-4daa-b93d-576d1191abf0") + (hatch edge 0.508) + (connect_pads + (clearance 0) + ) + (min_thickness 0.254) + (filled_areas_thickness no) + (keepout + (tracks allowed) + (vias allowed) + (pads allowed) + (copperpour not_allowed) + (footprints allowed) + ) + (fill + (thermal_gap 0.508) + (thermal_bridge_width 0.508) + ) + (polygon + (pts + (xy 61.7 90.1) (xy 59.1 90.1) (xy 59.1 79.9) (xy 61.7 79.9) + ) + ) + ) + (zone + (net 0) + (net_name "") + (layer "B.Cu") + (uuid "d430a0a1-8dd4-491a-abc0-47345d04866b") + (hatch edge 0.508) + (connect_pads + (clearance 0) + ) + (min_thickness 0.254) + (filled_areas_thickness no) + (keepout + (tracks allowed) + (vias allowed) + (pads allowed) + (copperpour not_allowed) + (footprints allowed) + ) + (fill + (thermal_gap 0.508) + (thermal_bridge_width 0.508) + ) + (polygon + (pts + (xy 56.6 90.1) (xy 54 90.1) (xy 54 80) (xy 56.6 80) + ) + ) + ) ) diff --git a/pcb/KiCad/RedPitaya_Lockbox.kicad_pro b/pcb/KiCad/RedPitaya_Lockbox.kicad_pro index 78af3da..1a5b481 100644 --- a/pcb/KiCad/RedPitaya_Lockbox.kicad_pro +++ b/pcb/KiCad/RedPitaya_Lockbox.kicad_pro @@ -3,14 +3,17 @@ "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.15, - "copper_line_width": 0.19999999999999998, + "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.049999999999999996, + "courtyard_line_width": 0.05, "dimension_precision": 4, "dimension_units": 3, "dimensions": { @@ -21,13 +24,13 @@ "text_position": 0, "units_format": 1 }, - "fab_line_width": 0.09999999999999999, + "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.09999999999999999, + "other_line_width": 0.1, "other_text_italic": false, "other_text_size_h": 1.0, "other_text_size_v": 1.0, @@ -74,6 +77,7 @@ "duplicate_footprints": "warning", "extra_footprint": "warning", "footprint": "error", + "footprint_symbol_mismatch": "warning", "footprint_type_mismatch": "error", "hole_clearance": "error", "hole_near_hole": "error", @@ -122,24 +126,21 @@ "min_copper_edge_clearance": 0.075, "min_hole_clearance": 0.25, "min_hole_to_hole": 0.25, - "min_microvia_diameter": 0.19999999999999998, - "min_microvia_drill": 0.09999999999999999, + "min_microvia_diameter": 0.2, + "min_microvia_drill": 0.1, "min_resolved_spokes": 1, "min_silk_clearance": 0.0, - "min_text_height": 0.7999999999999999, + "min_text_height": 0.8, "min_text_thickness": 0.08, "min_through_hole_diameter": 0.3, - "min_track_width": 0.19999999999999998, - "min_via_annular_width": 0.049999999999999996, + "min_track_width": 0.2, + "min_via_annular_width": 0.05, "min_via_diameter": 0.6, "solder_mask_to_copper_clearance": 0.0, "use_height_for_length_calcs": true }, "teardrop_options": [ { - "td_allow_use_two_tracks": true, - "td_curve_segcount": 5, - "td_on_pad_in_zone": false, "td_onpadsmd": true, "td_onroundshapesonly": false, "td_ontrackend": false, @@ -148,29 +149,35 @@ ], "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 } @@ -183,6 +190,32 @@ 1.5, 2.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, @@ -196,6 +229,13 @@ "zones_allow_external_fillets": false, "zones_use_no_outline": true }, + "ipc2581": { + "dist": "", + "distpn": "", + "internal_id": "", + "mfg": "", + "mpn": "" + }, "layer_presets": [], "viewports": [] }, @@ -454,14 +494,129 @@ "gencad": "", "idf": "", "netlist": "RedPitaya_Lockbox.net", + "plot": "", + "pos_files": "", "specctra_dsn": "", "step": "", + "svg": "", "vrml": "" }, "page_layout_descr_file": "" }, "schematic": { "annotate_start_num": 0, + "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": true, + "label": "Value", + "name": "Value", + "show": true + }, + { + "group_by": false, + "label": "Datasheet", + "name": "Datasheet", + "show": true + }, + { + "group_by": true, + "label": "Footprint", + "name": "Footprint", + "show": true + }, + { + "group_by": false, + "label": "Qty", + "name": "${QUANTITY}", + "show": true + }, + { + "group_by": true, + "label": "DNP", + "name": "${DNP}", + "show": true + }, + { + "group_by": false, + "label": "#", + "name": "${ITEM_NUMBER}", + "show": false + }, + { + "group_by": false, + "label": "Alternative", + "name": "Alternative", + "show": false + }, + { + "group_by": false, + "label": "Config", + "name": "Config", + "show": false + }, + { + "group_by": false, + "label": "Connector", + "name": "Connector", + "show": false + }, + { + "group_by": false, + "label": "Field4", + "name": "Field4", + "show": false + }, + { + "group_by": false, + "label": "MFN", + "name": "MFN", + "show": false + }, + { + "group_by": false, + "label": "PN", + "name": "PN", + "show": false + }, + { + "group_by": false, + "label": "Sim.Enable", + "name": "Sim.Enable", + "show": false + }, + { + "group_by": false, + "label": "Description", + "name": "Description", + "show": false + } + ], + "filter_string": "", + "group_symbols": 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, @@ -475,6 +630,11 @@ "intersheets_ref_suffix": "", "junction_size_choice": 3, "label_size_ratio": 0.25, + "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": 0.0, "text_offset_ratio": 0.08 }, @@ -500,6 +660,7 @@ "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 @@ -507,7 +668,7 @@ "sheets": [ [ "e63e39d7-6ac0-4ffd-8aa3-1841a4541b55", - "" + "Root" ], [ "00000000-0000-0000-0000-00005b057307", diff --git a/pcb/KiCad/RedPitaya_Lockbox.kicad_sch b/pcb/KiCad/RedPitaya_Lockbox.kicad_sch index 369f6e3..1b301ca 100644 --- a/pcb/KiCad/RedPitaya_Lockbox.kicad_sch +++ b/pcb/KiCad/RedPitaya_Lockbox.kicad_sch @@ -1,3087 +1,8238 @@ -(kicad_sch (version 20230121) (generator eeschema) - - (uuid e63e39d7-6ac0-4ffd-8aa3-1841a4541b55) - - (paper "A4") - - (title_block - (title "RedPitaya Lockbox") - (date "2023-11-03") - (rev "1.6.2") - (company "Atoms-Photons-Quanta, Institut für Angewandte Physik, TU Darmstadt") - (comment 1 "Tilman Preuschoff") - ) - - (lib_symbols - (symbol "Connector:DIN41612_02x32_AC" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) - (property "Reference" "J" (at 1.27 40.64 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "DIN41612_02x32_AC" (at 1.27 -43.18 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "connector" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "DIN41612 connector, double row (AC), 02x32, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "DIN41612*2x*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "DIN41612_02x32_AC_1_1" - (rectangle (start -1.27 -40.513) (end 0 -40.767) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 -37.973) (end 0 -38.227) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 -35.433) (end 0 -35.687) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 -32.893) (end 0 -33.147) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 -30.353) (end 0 -30.607) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 -27.813) (end 0 -28.067) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 -25.273) (end 0 -25.527) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 -22.733) (end 0 -22.987) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 -20.193) (end 0 -20.447) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 -17.653) (end 0 -17.907) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 -15.113) (end 0 -15.367) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 -12.573) (end 0 -12.827) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 -10.033) (end 0 -10.287) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 -7.493) (end 0 -7.747) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 -4.953) (end 0 -5.207) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 -2.413) (end 0 -2.667) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 0.127) (end 0 -0.127) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 2.667) (end 0 2.413) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 5.207) (end 0 4.953) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 7.747) (end 0 7.493) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 10.287) (end 0 10.033) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 12.827) (end 0 12.573) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 15.367) (end 0 15.113) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 17.907) (end 0 17.653) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 20.447) (end 0 20.193) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 22.987) (end 0 22.733) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 25.527) (end 0 25.273) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 28.067) (end 0 27.813) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 30.607) (end 0 30.353) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 33.147) (end 0 32.893) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 35.687) (end 0 35.433) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 38.227) (end 0 37.973) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 39.37) (end 3.81 -41.91) - (stroke (width 0.254) (type default)) - (fill (type background)) - ) - (rectangle (start 3.81 -40.513) (end 2.54 -40.767) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start 3.81 -37.973) (end 2.54 -38.227) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start 3.81 -35.433) (end 2.54 -35.687) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start 3.81 -32.893) (end 2.54 -33.147) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start 3.81 -30.353) (end 2.54 -30.607) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start 3.81 -27.813) (end 2.54 -28.067) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start 3.81 -25.273) (end 2.54 -25.527) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start 3.81 -22.733) (end 2.54 -22.987) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start 3.81 -20.193) (end 2.54 -20.447) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start 3.81 -17.653) (end 2.54 -17.907) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start 3.81 -15.113) (end 2.54 -15.367) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start 3.81 -12.573) (end 2.54 -12.827) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start 3.81 -10.033) (end 2.54 -10.287) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start 3.81 -7.493) (end 2.54 -7.747) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start 3.81 -4.953) (end 2.54 -5.207) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start 3.81 -2.413) (end 2.54 -2.667) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start 3.81 0.127) (end 2.54 -0.127) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start 3.81 2.667) (end 2.54 2.413) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start 3.81 5.207) (end 2.54 4.953) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start 3.81 7.747) (end 2.54 7.493) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start 3.81 10.287) (end 2.54 10.033) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start 3.81 12.827) (end 2.54 12.573) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start 3.81 15.367) (end 2.54 15.113) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start 3.81 17.907) (end 2.54 17.653) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start 3.81 20.447) (end 2.54 20.193) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start 3.81 22.987) (end 2.54 22.733) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start 3.81 25.527) (end 2.54 25.273) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start 3.81 28.067) (end 2.54 27.813) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start 3.81 30.607) (end 2.54 30.353) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start 3.81 33.147) (end 2.54 32.893) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start 3.81 35.687) (end 2.54 35.433) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (rectangle (start 3.81 38.227) (end 2.54 37.973) - (stroke (width 0.1524) (type default)) - (fill (type none)) - ) - (pin passive line (at -5.08 38.1 0) (length 3.81) - (name "Pin_a1" (effects (font (size 1.27 1.27)))) - (number "a1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 15.24 0) (length 3.81) - (name "Pin_a10" (effects (font (size 1.27 1.27)))) - (number "a10" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 12.7 0) (length 3.81) - (name "Pin_a11" (effects (font (size 1.27 1.27)))) - (number "a11" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 10.16 0) (length 3.81) - (name "Pin_a12" (effects (font (size 1.27 1.27)))) - (number "a12" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 7.62 0) (length 3.81) - (name "Pin_a13" (effects (font (size 1.27 1.27)))) - (number "a13" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 5.08 0) (length 3.81) - (name "Pin_a14" (effects (font (size 1.27 1.27)))) - (number "a14" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 2.54 0) (length 3.81) - (name "Pin_a15" (effects (font (size 1.27 1.27)))) - (number "a15" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 0 0) (length 3.81) - (name "Pin_a16" (effects (font (size 1.27 1.27)))) - (number "a16" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 -2.54 0) (length 3.81) - (name "Pin_a17" (effects (font (size 1.27 1.27)))) - (number "a17" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 -5.08 0) (length 3.81) - (name "Pin_a18" (effects (font (size 1.27 1.27)))) - (number "a18" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 -7.62 0) (length 3.81) - (name "Pin_a19" (effects (font (size 1.27 1.27)))) - (number "a19" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 35.56 0) (length 3.81) - (name "Pin_a2" (effects (font (size 1.27 1.27)))) - (number "a2" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 -10.16 0) (length 3.81) - (name "Pin_a20" (effects (font (size 1.27 1.27)))) - (number "a20" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 -12.7 0) (length 3.81) - (name "Pin_a21" (effects (font (size 1.27 1.27)))) - (number "a21" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 -15.24 0) (length 3.81) - (name "Pin_a22" (effects (font (size 1.27 1.27)))) - (number "a22" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 -17.78 0) (length 3.81) - (name "Pin_a23" (effects (font (size 1.27 1.27)))) - (number "a23" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 -20.32 0) (length 3.81) - (name "Pin_a24" (effects (font (size 1.27 1.27)))) - (number "a24" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 -22.86 0) (length 3.81) - (name "Pin_a25" (effects (font (size 1.27 1.27)))) - (number "a25" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 -25.4 0) (length 3.81) - (name "Pin_a26" (effects (font (size 1.27 1.27)))) - (number "a26" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 -27.94 0) (length 3.81) - (name "Pin_a27" (effects (font (size 1.27 1.27)))) - (number "a27" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 -30.48 0) (length 3.81) - (name "Pin_a28" (effects (font (size 1.27 1.27)))) - (number "a28" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 -33.02 0) (length 3.81) - (name "Pin_a29" (effects (font (size 1.27 1.27)))) - (number "a29" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 33.02 0) (length 3.81) - (name "Pin_a3" (effects (font (size 1.27 1.27)))) - (number "a3" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 -35.56 0) (length 3.81) - (name "Pin_a30" (effects (font (size 1.27 1.27)))) - (number "a30" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 -38.1 0) (length 3.81) - (name "Pin_a31" (effects (font (size 1.27 1.27)))) - (number "a31" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 -40.64 0) (length 3.81) - (name "Pin_a32" (effects (font (size 1.27 1.27)))) - (number "a32" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 30.48 0) (length 3.81) - (name "Pin_a4" (effects (font (size 1.27 1.27)))) - (number "a4" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 27.94 0) (length 3.81) - (name "Pin_a5" (effects (font (size 1.27 1.27)))) - (number "a5" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 25.4 0) (length 3.81) - (name "Pin_a6" (effects (font (size 1.27 1.27)))) - (number "a6" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 22.86 0) (length 3.81) - (name "Pin_a7" (effects (font (size 1.27 1.27)))) - (number "a7" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 20.32 0) (length 3.81) - (name "Pin_a8" (effects (font (size 1.27 1.27)))) - (number "a8" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 17.78 0) (length 3.81) - (name "Pin_a9" (effects (font (size 1.27 1.27)))) - (number "a9" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 38.1 180) (length 3.81) - (name "Pin_c1" (effects (font (size 1.27 1.27)))) - (number "c1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 15.24 180) (length 3.81) - (name "Pin_c10" (effects (font (size 1.27 1.27)))) - (number "c10" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 12.7 180) (length 3.81) - (name "Pin_c11" (effects (font (size 1.27 1.27)))) - (number "c11" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 10.16 180) (length 3.81) - (name "Pin_c12" (effects (font (size 1.27 1.27)))) - (number "c12" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 7.62 180) (length 3.81) - (name "Pin_c13" (effects (font (size 1.27 1.27)))) - (number "c13" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 5.08 180) (length 3.81) - (name "Pin_c14" (effects (font (size 1.27 1.27)))) - (number "c14" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 2.54 180) (length 3.81) - (name "Pin_c15" (effects (font (size 1.27 1.27)))) - (number "c15" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 0 180) (length 3.81) - (name "Pin_c16" (effects (font (size 1.27 1.27)))) - (number "c16" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 -2.54 180) (length 3.81) - (name "Pin_c17" (effects (font (size 1.27 1.27)))) - (number "c17" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 -5.08 180) (length 3.81) - (name "Pin_c18" (effects (font (size 1.27 1.27)))) - (number "c18" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 -7.62 180) (length 3.81) - (name "Pin_c19" (effects (font (size 1.27 1.27)))) - (number "c19" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 35.56 180) (length 3.81) - (name "Pin_c2" (effects (font (size 1.27 1.27)))) - (number "c2" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 -10.16 180) (length 3.81) - (name "Pin_c20" (effects (font (size 1.27 1.27)))) - (number "c20" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 -12.7 180) (length 3.81) - (name "Pin_c21" (effects (font (size 1.27 1.27)))) - (number "c21" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 -15.24 180) (length 3.81) - (name "Pin_c22" (effects (font (size 1.27 1.27)))) - (number "c22" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 -17.78 180) (length 3.81) - (name "Pin_c23" (effects (font (size 1.27 1.27)))) - (number "c23" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 -20.32 180) (length 3.81) - (name "Pin_c24" (effects (font (size 1.27 1.27)))) - (number "c24" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 -22.86 180) (length 3.81) - (name "Pin_c25" (effects (font (size 1.27 1.27)))) - (number "c25" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 -25.4 180) (length 3.81) - (name "Pin_c26" (effects (font (size 1.27 1.27)))) - (number "c26" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 -27.94 180) (length 3.81) - (name "Pin_c27" (effects (font (size 1.27 1.27)))) - (number "c27" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 -30.48 180) (length 3.81) - (name "Pin_c28" (effects (font (size 1.27 1.27)))) - (number "c28" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 -33.02 180) (length 3.81) - (name "Pin_c29" (effects (font (size 1.27 1.27)))) - (number "c29" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 33.02 180) (length 3.81) - (name "Pin_c3" (effects (font (size 1.27 1.27)))) - (number "c3" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 -35.56 180) (length 3.81) - (name "Pin_c30" (effects (font (size 1.27 1.27)))) - (number "c30" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 -38.1 180) (length 3.81) - (name "Pin_c31" (effects (font (size 1.27 1.27)))) - (number "c31" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 -40.64 180) (length 3.81) - (name "Pin_c32" (effects (font (size 1.27 1.27)))) - (number "c32" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 30.48 180) (length 3.81) - (name "Pin_c4" (effects (font (size 1.27 1.27)))) - (number "c4" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 27.94 180) (length 3.81) - (name "Pin_c5" (effects (font (size 1.27 1.27)))) - (number "c5" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 25.4 180) (length 3.81) - (name "Pin_c6" (effects (font (size 1.27 1.27)))) - (number "c6" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 22.86 180) (length 3.81) - (name "Pin_c7" (effects (font (size 1.27 1.27)))) - (number "c7" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 20.32 180) (length 3.81) - (name "Pin_c8" (effects (font (size 1.27 1.27)))) - (number "c8" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 17.78 180) (length 3.81) - (name "Pin_c9" (effects (font (size 1.27 1.27)))) - (number "c9" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Custom_logos:Logo_APQ" (pin_names (offset 1.016)) (in_bom no) (on_board yes) - (property "Reference" "#LOGO" (at 6.35 6.985 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "Logo_APQ" (at 6.35 -6.35 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "" (at 7.62 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 7.62 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Sim.Enable" "0" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "Logo" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Atoms - Photons - Quanta" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "Logo_APQ_0_0" - (text "APQ" (at 17.78 0 0) - (effects (font (size 3.81 3.81) bold)) - ) - ) - (symbol "Logo_APQ_0_1" - (circle (center 5.08 0) (radius 0.635) - (stroke (width 0) (type default)) - (fill (type outline)) - ) - (circle (center 5.08 2.54) (radius 0.635) - (stroke (width 0) (type default)) - (fill (type outline)) - ) - (circle (center 7.62 0) (radius 0.635) - (stroke (width 0) (type default)) - (fill (type outline)) - ) - (circle (center 7.62 2.54) (radius 0.635) - (stroke (width 0) (type default)) - (fill (type outline)) - ) - (circle (center 10.16 2.54) (radius 0.635) - (stroke (width 0) (type default)) - (fill (type outline)) - ) - ) - (symbol "Logo_APQ_1_1" - (circle (center 5.08 -2.54) (radius 0.635) - (stroke (width 0) (type default)) - (fill (type outline)) - ) - (circle (center 7.62 -2.54) (radius 0.635) - (stroke (width 0) (type default)) - (fill (type outline)) - ) - (circle (center 10.16 -2.54) (radius 0.635) - (stroke (width 0) (type default)) - (fill (type outline)) - ) - (circle (center 10.16 0) (radius 0.635) - (stroke (width 0) (type default)) - (fill (type outline)) - ) - ) - ) - (symbol "Custom_logos:Logo_RoHS" (pin_names (offset 1.016)) (in_bom no) (on_board yes) - (property "Reference" "#LOGO" (at 6.35 6.985 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "Logo_RoHS" (at 6.35 -6.35 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "" (at 7.62 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 7.62 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Sim.Enable" "0" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "Logo" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "RoHS logo, small" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "Logo_RoHS_1_0" - (text "RoHS" (at 13.335 0 0) - (effects (font (size 3.81 3.81) bold)) - ) - ) - ) - (symbol "Graphic:Logo_Open_Hardware_Small" (in_bom no) (on_board no) - (property "Reference" "#SYM" (at 0 6.985 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "Logo_Open_Hardware_Small" (at 0 -5.715 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Sim.Enable" "0" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "Logo" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Open Hardware logo, small" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "Logo_Open_Hardware_Small_0_1" - (polyline - (pts - (xy 3.3528 -4.3434) - (xy 3.302 -4.318) - (xy 3.175 -4.2418) - (xy 2.9972 -4.1148) - (xy 2.7686 -3.9624) - (xy 2.54 -3.81) - (xy 2.3622 -3.7084) - (xy 2.2352 -3.6068) - (xy 2.1844 -3.5814) - (xy 2.159 -3.6068) - (xy 2.0574 -3.6576) - (xy 1.905 -3.7338) - (xy 1.8034 -3.7846) - (xy 1.6764 -3.8354) - (xy 1.6002 -3.8354) - (xy 1.6002 -3.8354) - (xy 1.5494 -3.7338) - (xy 1.4732 -3.5306) - (xy 1.3462 -3.302) - (xy 1.2446 -3.0226) - (xy 1.1176 -2.7178) - (xy 0.9652 -2.413) - (xy 0.8636 -2.1082) - (xy 0.7366 -1.8288) - (xy 0.6604 -1.6256) - (xy 0.6096 -1.4732) - (xy 0.5842 -1.397) - (xy 0.5842 -1.397) - (xy 0.6604 -1.3208) - (xy 0.7874 -1.2446) - (xy 1.0414 -1.016) - (xy 1.2954 -0.6858) - (xy 1.4478 -0.3302) - (xy 1.524 0.0762) - (xy 1.4732 0.4572) - (xy 1.3208 0.8128) - (xy 1.0668 1.143) - (xy 0.762 1.3716) - (xy 0.4064 1.524) - (xy 0 1.5748) - (xy -0.381 1.5494) - (xy -0.7366 1.397) - (xy -1.0668 1.143) - (xy -1.2192 0.9906) - (xy -1.397 0.6604) - (xy -1.524 0.3048) - (xy -1.524 0.2286) - (xy -1.4986 -0.1778) - (xy -1.397 -0.5334) - (xy -1.1938 -0.8636) - (xy -0.9144 -1.143) - (xy -0.8636 -1.1684) - (xy -0.7366 -1.27) - (xy -0.635 -1.3462) - (xy -0.5842 -1.397) - (xy -1.0668 -2.5908) - (xy -1.143 -2.794) - (xy -1.2954 -3.1242) - (xy -1.397 -3.4036) - (xy -1.4986 -3.6322) - (xy -1.5748 -3.7846) - (xy -1.6002 -3.8354) - (xy -1.6002 -3.8354) - (xy -1.651 -3.8354) - (xy -1.7272 -3.81) - (xy -1.905 -3.7338) - (xy -2.0066 -3.683) - (xy -2.1336 -3.6068) - (xy -2.2098 -3.5814) - (xy -2.2606 -3.6068) - (xy -2.3622 -3.683) - (xy -2.54 -3.81) - (xy -2.7686 -3.9624) - (xy -2.9718 -4.0894) - (xy -3.1496 -4.2164) - (xy -3.302 -4.318) - (xy -3.3528 -4.3434) - (xy -3.3782 -4.3434) - (xy -3.429 -4.318) - (xy -3.5306 -4.2164) - (xy -3.7084 -4.064) - (xy -3.937 -3.8354) - (xy -3.9624 -3.81) - (xy -4.1656 -3.6068) - (xy -4.318 -3.4544) - (xy -4.4196 -3.3274) - (xy -4.445 -3.2766) - (xy -4.445 -3.2766) - (xy -4.4196 -3.2258) - (xy -4.318 -3.0734) - (xy -4.2164 -2.8956) - (xy -4.064 -2.667) - (xy -3.6576 -2.0828) - (xy -3.8862 -1.5494) - (xy -3.937 -1.3716) - (xy -4.0386 -1.1684) - (xy -4.0894 -1.0414) - (xy -4.1148 -0.9652) - (xy -4.191 -0.9398) - (xy -4.318 -0.9144) - (xy -4.5466 -0.8636) - (xy -4.8006 -0.8128) - (xy -5.0546 -0.7874) - (xy -5.2578 -0.7366) - (xy -5.4356 -0.7112) - (xy -5.5118 -0.6858) - (xy -5.5118 -0.6858) - (xy -5.5372 -0.635) - (xy -5.5372 -0.5588) - (xy -5.5372 -0.4318) - (xy -5.5626 -0.2286) - (xy -5.5626 0.0762) - (xy -5.5626 0.127) - (xy -5.5372 0.4064) - (xy -5.5372 0.635) - (xy -5.5372 0.762) - (xy -5.5372 0.8382) - (xy -5.5372 0.8382) - (xy -5.461 0.8382) - (xy -5.3086 0.889) - (xy -5.08 0.9144) - (xy -4.826 0.9652) - (xy -4.8006 0.9906) - (xy -4.5466 1.0414) - (xy -4.318 1.0668) - (xy -4.1656 1.1176) - (xy -4.0894 1.143) - (xy -4.0894 1.143) - (xy -4.0386 1.2446) - (xy -3.9624 1.4224) - (xy -3.8608 1.6256) - (xy -3.7846 1.8288) - (xy -3.7084 2.0066) - (xy -3.6576 2.159) - (xy -3.6322 2.2098) - (xy -3.6322 2.2098) - (xy -3.683 2.286) - (xy -3.7592 2.413) - (xy -3.8862 2.5908) - (xy -4.064 2.8194) - (xy -4.064 2.8448) - (xy -4.2164 3.0734) - (xy -4.3434 3.2512) - (xy -4.4196 3.3782) - (xy -4.445 3.4544) - (xy -4.445 3.4544) - (xy -4.3942 3.5052) - (xy -4.2926 3.6322) - (xy -4.1148 3.81) - (xy -3.937 4.0132) - (xy -3.8608 4.064) - (xy -3.6576 4.2926) - (xy -3.5052 4.4196) - (xy -3.4036 4.4958) - (xy -3.3528 4.5212) - (xy -3.3528 4.5212) - (xy -3.302 4.4704) - (xy -3.1496 4.3688) - (xy -2.9718 4.2418) - (xy -2.7432 4.0894) - (xy -2.7178 4.0894) - (xy -2.4892 3.937) - (xy -2.3114 3.81) - (xy -2.1844 3.7084) - (xy -2.1336 3.683) - (xy -2.1082 3.683) - (xy -2.032 3.7084) - (xy -1.8542 3.7592) - (xy -1.6764 3.8354) - (xy -1.4732 3.937) - (xy -1.27 4.0132) - (xy -1.143 4.064) - (xy -1.0668 4.1148) - (xy -1.0668 4.1148) - (xy -1.0414 4.191) - (xy -1.016 4.3434) - (xy -0.9652 4.572) - (xy -0.9144 4.8514) - (xy -0.889 4.9022) - (xy -0.8382 5.1562) - (xy -0.8128 5.3848) - (xy -0.7874 5.5372) - (xy -0.762 5.588) - (xy -0.7112 5.6134) - (xy -0.5842 5.6134) - (xy -0.4064 5.6134) - (xy -0.1524 5.6134) - (xy 0.0762 5.6134) - (xy 0.3302 5.6134) - (xy 0.5334 5.6134) - (xy 0.6858 5.588) - (xy 0.7366 5.588) - (xy 0.7366 5.588) - (xy 0.762 5.5118) - (xy 0.8128 5.334) - (xy 0.8382 5.1054) - (xy 0.9144 4.826) - (xy 0.9144 4.7752) - (xy 0.9652 4.5212) - (xy 1.016 4.2926) - (xy 1.0414 4.1402) - (xy 1.0668 4.0894) - (xy 1.0668 4.0894) - (xy 1.1938 4.0386) - (xy 1.3716 3.9624) - (xy 1.5748 3.8608) - (xy 2.0828 3.6576) - (xy 2.7178 4.0894) - (xy 2.7686 4.1402) - (xy 2.9972 4.2926) - (xy 3.175 4.4196) - (xy 3.302 4.4958) - (xy 3.3782 4.5212) - (xy 3.3782 4.5212) - (xy 3.429 4.4704) - (xy 3.556 4.3434) - (xy 3.7338 4.191) - (xy 3.9116 3.9878) - (xy 4.064 3.8354) - (xy 4.2418 3.6576) - (xy 4.3434 3.556) - (xy 4.4196 3.4798) - (xy 4.4196 3.429) - (xy 4.4196 3.4036) - (xy 4.3942 3.3274) - (xy 4.2926 3.2004) - (xy 4.1656 2.9972) - (xy 4.0132 2.794) - (xy 3.8862 2.5908) - (xy 3.7592 2.3876) - (xy 3.6576 2.2352) - (xy 3.6322 2.159) - (xy 3.6322 2.1336) - (xy 3.683 2.0066) - (xy 3.7592 1.8288) - (xy 3.8608 1.6002) - (xy 4.064 1.1176) - (xy 4.3942 1.0414) - (xy 4.5974 1.016) - (xy 4.8768 0.9652) - (xy 5.1308 0.9144) - (xy 5.5372 0.8382) - (xy 5.5626 -0.6604) - (xy 5.4864 -0.6858) - (xy 5.4356 -0.6858) - (xy 5.2832 -0.7366) - (xy 5.0546 -0.762) - (xy 4.8006 -0.8128) - (xy 4.5974 -0.8636) - (xy 4.3688 -0.9144) - (xy 4.2164 -0.9398) - (xy 4.1402 -0.9398) - (xy 4.1148 -0.9652) - (xy 4.064 -1.0668) - (xy 3.9878 -1.2446) - (xy 3.9116 -1.4478) - (xy 3.81 -1.651) - (xy 3.7338 -1.8542) - (xy 3.683 -2.0066) - (xy 3.6576 -2.0828) - (xy 3.683 -2.1336) - (xy 3.7846 -2.2606) - (xy 3.8862 -2.4638) - (xy 4.0386 -2.667) - (xy 4.191 -2.8956) - (xy 4.318 -3.0734) - (xy 4.3942 -3.2004) - (xy 4.445 -3.2766) - (xy 4.4196 -3.3274) - (xy 4.3434 -3.429) - (xy 4.1656 -3.5814) - (xy 3.937 -3.8354) - (xy 3.8862 -3.8608) - (xy 3.683 -4.064) - (xy 3.5306 -4.2164) - (xy 3.4036 -4.318) - (xy 3.3528 -4.3434) - ) - (stroke (width 0) (type default)) - (fill (type outline)) - ) - ) - ) - (symbol "Jumper:SolderJumper_2_Bridged" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) - (property "Reference" "JP" (at 0 2.032 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "SolderJumper_2_Bridged" (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) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "solder jumper SPST" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Solder Jumper, 2-pole, closed/bridged" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "SolderJumper*Bridged*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "SolderJumper_2_Bridged_0_1" - (rectangle (start -0.508 0.508) (end 0.508 -0.508) - (stroke (width 0) (type default)) - (fill (type outline)) - ) - (arc (start -0.254 1.016) (mid -1.2656 0) (end -0.254 -1.016) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (arc (start -0.254 1.016) (mid -1.2656 0) (end -0.254 -1.016) - (stroke (width 0) (type default)) - (fill (type outline)) - ) - (polyline - (pts - (xy -0.254 1.016) - (xy -0.254 -1.016) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 0.254 1.016) - (xy 0.254 -1.016) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (arc (start 0.254 -1.016) (mid 1.2656 0) (end 0.254 1.016) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (arc (start 0.254 -1.016) (mid 1.2656 0) (end 0.254 1.016) - (stroke (width 0) (type default)) - (fill (type outline)) - ) - ) - (symbol "SolderJumper_2_Bridged_1_1" - (pin passive line (at -3.81 0 0) (length 2.54) - (name "A" (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 "B" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Jumper:SolderJumper_2_Open" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) - (property "Reference" "JP" (at 0 2.032 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "SolderJumper_2_Open" (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) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "solder jumper SPST" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Solder Jumper, 2-pole, open" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "SolderJumper*Open*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "SolderJumper_2_Open_0_1" - (arc (start -0.254 1.016) (mid -1.2656 0) (end -0.254 -1.016) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (arc (start -0.254 1.016) (mid -1.2656 0) (end -0.254 -1.016) - (stroke (width 0) (type default)) - (fill (type outline)) - ) - (polyline - (pts - (xy -0.254 1.016) - (xy -0.254 -1.016) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 0.254 1.016) - (xy 0.254 -1.016) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (arc (start 0.254 -1.016) (mid 1.2656 0) (end 0.254 1.016) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (arc (start 0.254 -1.016) (mid 1.2656 0) (end 0.254 1.016) - (stroke (width 0) (type default)) - (fill (type outline)) - ) - ) - (symbol "SolderJumper_2_Open_1_1" - (pin passive line (at -3.81 0 0) (length 2.54) - (name "A" (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 "B" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Mechanical:MountingHole" (pin_names (offset 1.016)) (in_bom yes) (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) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "mounting hole" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Mounting Hole without connection" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "MountingHole*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "MountingHole_0_1" - (circle (center 0 0) (radius 1.27) - (stroke (width 1.27) (type default)) - (fill (type none)) - ) - ) - ) - (symbol "RedPitaya:RedPitaya_125-14" (pin_names (offset 1.524)) (in_bom yes) (on_board yes) - (property "Reference" "RP" (at 1.27 34.29 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "RedPitaya_125-14" (at 12.7 0 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "StemLab RedPitaya 14bit" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "RedPitaya_125-14_0_0" - (text "E2" (at 6.35 34.29 0) - (effects (font (size 1.524 1.524))) - ) - ) - (symbol "RedPitaya_125-14_0_1" - (rectangle (start -1.27 -31.623) (end 0.254 -31.877) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 -29.083) (end 0.254 -29.337) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 -26.543) (end 0.254 -26.797) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 -24.003) (end 0.254 -24.257) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 -21.463) (end 0.254 -21.717) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 -18.923) (end 0.254 -19.177) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 -16.383) (end 0.254 -16.637) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 -13.843) (end 0.254 -14.097) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 -11.303) (end 0.254 -11.557) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 -8.763) (end 0.254 -9.017) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 -6.223) (end 0.254 -6.477) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 -3.683) (end 0.254 -3.937) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 -1.143) (end 0.254 -1.397) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 1.397) (end 0.254 1.143) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 3.937) (end 0.254 3.683) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 6.477) (end 0.254 6.223) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 9.017) (end 0.254 8.763) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 11.557) (end 0.254 11.303) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 14.097) (end 0.254 13.843) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 16.637) (end 0.254 16.383) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 19.177) (end 0.254 18.923) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 21.717) (end 0.254 21.463) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 24.257) (end 0.254 24.003) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 26.797) (end 0.254 26.543) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 29.337) (end 0.254 29.083) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (rectangle (start -1.27 31.877) (end 0.254 31.623) - (stroke (width 0) (type default)) - (fill (type none)) - ) - ) - (symbol "RedPitaya_125-14_1_1" - (rectangle (start -1.27 33.02) (end 10.16 -33.02) - (stroke (width 0) (type default)) - (fill (type background)) - ) - (pin input line (at -5.08 31.75 0) (length 3.81) - (name "+5V" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 8.89 0) (length 3.81) - (name "I2C0_SDA" (effects (font (size 1.27 1.27)))) - (number "10" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 6.35 0) (length 3.81) - (name "Ext_CM" (effects (font (size 1.27 1.27)))) - (number "11" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 3.81 0) (length 3.81) - (name "GND" (effects (font (size 1.27 1.27)))) - (number "12" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 1.27 0) (length 3.81) - (name "AI_0" (effects (font (size 1.27 1.27)))) - (number "13" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 -1.27 0) (length 3.81) - (name "AI_1" (effects (font (size 1.27 1.27)))) - (number "14" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 -3.81 0) (length 3.81) - (name "AI_2" (effects (font (size 1.27 1.27)))) - (number "15" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 -6.35 0) (length 3.81) - (name "AI_3" (effects (font (size 1.27 1.27)))) - (number "16" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 -8.89 0) (length 3.81) - (name "AO_0" (effects (font (size 1.27 1.27)))) - (number "17" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 -11.43 0) (length 3.81) - (name "AO_1" (effects (font (size 1.27 1.27)))) - (number "18" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 -13.97 0) (length 3.81) - (name "AO_2" (effects (font (size 1.27 1.27)))) - (number "19" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 29.21 0) (length 3.81) - (name "-3.3V" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 -16.51 0) (length 3.81) - (name "AO_3" (effects (font (size 1.27 1.27)))) - (number "20" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 -19.05 0) (length 3.81) - (name "GND" (effects (font (size 1.27 1.27)))) - (number "21" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 -21.59 0) (length 3.81) - (name "GND" (effects (font (size 1.27 1.27)))) - (number "22" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 -24.13 0) (length 3.81) - (name "CLK+" (effects (font (size 1.27 1.27)))) - (number "23" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 -26.67 0) (length 3.81) - (name "CLK-" (effects (font (size 1.27 1.27)))) - (number "24" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 -29.21 0) (length 3.81) - (name "GND" (effects (font (size 1.27 1.27)))) - (number "25" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 -31.75 0) (length 3.81) - (name "GND" (effects (font (size 1.27 1.27)))) - (number "26" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 26.67 0) (length 3.81) - (name "PS_MIO10" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 24.13 0) (length 3.81) - (name "PS_MIO11" (effects (font (size 1.27 1.27)))) - (number "4" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 21.59 0) (length 3.81) - (name "PS_MIO12" (effects (font (size 1.27 1.27)))) - (number "5" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 19.05 0) (length 3.81) - (name "PS_MIO13" (effects (font (size 1.27 1.27)))) - (number "6" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 16.51 0) (length 3.81) - (name "PS_MIO08" (effects (font (size 1.27 1.27)))) - (number "7" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 13.97 0) (length 3.81) - (name "PS_MIO09" (effects (font (size 1.27 1.27)))) - (number "8" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 11.43 0) (length 3.81) - (name "I2C0_SCL" (effects (font (size 1.27 1.27)))) - (number "9" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) - (property "Reference" "#PWR" (at 0 -6.35 0) - (effects (font (size 1.27 1.27)) hide) - ) - (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) - ) - (property "Datasheet" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "global power" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "GND_0_1" - (polyline - (pts - (xy 0 0) - (xy 0 -1.27) - (xy 1.27 -1.27) - (xy 0 -2.54) - (xy -1.27 -1.27) - (xy 0 -1.27) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - ) - (symbol "GND_1_1" - (pin power_in line (at 0 0 270) (length 0) hide - (name "GND" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes) - (property "Reference" "#FLG" (at 0 1.905 0) - (effects (font (size 1.27 1.27)) hide) - ) - (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) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "flag power" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Special symbol for telling ERC where power comes from" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "PWR_FLAG_0_0" - (pin power_out line (at 0 0 90) (length 0) - (name "pwr" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - ) - (symbol "PWR_FLAG_0_1" - (polyline - (pts - (xy 0 0) - (xy 0 1.27) - (xy -1.016 1.905) - (xy 0 2.54) - (xy 1.016 1.905) - (xy 0 1.27) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - ) - ) - ) - - (junction (at 248.92 90.17) (diameter 0) (color 0 0 0 0) - (uuid 02165243-61a3-4857-84ba-71a77cb9a387) - ) - (junction (at 54.61 130.81) (diameter 0) (color 0 0 0 0) - (uuid 16ded395-a862-4198-b3af-ba8c7fb298bb) - ) - (junction (at 16.51 158.75) (diameter 0) (color 0 0 0 0) - (uuid 21e62af1-0e88-492e-987e-9d753a625af5) - ) - (junction (at 16.51 143.51) (diameter 0) (color 0 0 0 0) - (uuid 23e66461-bcf2-4335-93c2-5c91dfd00187) - ) - (junction (at 41.91 184.15) (diameter 0) (color 0 0 0 0) - (uuid 35fdc1fc-7f14-4878-95b5-04577aac5dee) - ) - (junction (at 16.51 128.27) (diameter 0) (color 0 0 0 0) - (uuid 3934cdea-42c8-4ab1-b1be-2c4978ab08ae) - ) - (junction (at 54.61 186.69) (diameter 0) (color 0 0 0 0) - (uuid 6409c081-55e6-45e9-87cb-465a8b85bf58) - ) - (junction (at 29.21 181.61) (diameter 0) (color 0 0 0 0) - (uuid 77d1b613-3410-472a-89ae-d3fd04062053) - ) - (junction (at 16.51 151.13) (diameter 0) (color 0 0 0 0) - (uuid 78df5e95-dea7-4ed8-b25a-24054b0e2a34) - ) - (junction (at 44.45 177.8) (diameter 0) (color 0 0 0 0) - (uuid 7a4860bd-1138-4b42-b6c7-c77441fd50d4) - ) - (junction (at 248.92 92.71) (diameter 0) (color 0 0 0 0) - (uuid 825c70b0-4860-42b7-97dc-86bfa46e06fd) - ) - (junction (at 16.51 166.37) (diameter 0) (color 0 0 0 0) - (uuid 83b33358-9fd0-4f63-8aea-176ee85421b2) - ) - (junction (at 60.96 123.19) (diameter 0) (color 0 0 0 0) - (uuid 86429512-34f4-4bec-95a6-ad24fb06d586) - ) - (junction (at 41.91 107.95) (diameter 0) (color 0 0 0 0) - (uuid 8c25f3b3-0669-4d41-abe9-efe0c109bce3) - ) - (junction (at 54.61 123.19) (diameter 0) (color 0 0 0 0) - (uuid 975b065a-4fee-4d11-9f2f-b1d40a3629cb) - ) - (junction (at 16.51 180.34) (diameter 0) (color 0 0 0 0) - (uuid 99030c03-63b4-49ba-b5ab-4d56974f7963) - ) - (junction (at 45.72 107.95) (diameter 0) (color 0 0 0 0) - (uuid 9ab63ac1-3ab3-4c51-bd38-9407d96c09bc) - ) - (junction (at 248.92 82.55) (diameter 0) (color 0 0 0 0) - (uuid 9ff4672a-e1a4-4a1e-887d-1b9a3429d278) - ) - (junction (at 54.61 170.18) (diameter 0) (color 0 0 0 0) - (uuid ab8c3434-03fb-4d30-8c85-107f753db063) - ) - (junction (at 41.91 186.69) (diameter 0) (color 0 0 0 0) - (uuid bafd7f99-3f0e-43b2-aac3-bdb478eeb5ad) - ) - (junction (at 16.51 135.89) (diameter 0) (color 0 0 0 0) - (uuid d0dfd7c1-401d-4f64-8463-f4c0813ac28f) - ) - (junction (at 16.51 173.99) (diameter 0) (color 0 0 0 0) - (uuid e4b8e84c-88a3-4795-9a55-9de16f08e886) - ) - - (no_connect (at 251.46 52.07) (uuid 0d35483a-0b12-46cc-b9f2-896fd6831779)) - (no_connect (at 251.46 77.47) (uuid 2bf3f24b-fd30-41a7-a274-9b519491916b)) - (no_connect (at 251.46 67.31) (uuid 34871042-9d5c-4e29-abdd-a168368c3c22)) - (no_connect (at 251.46 59.69) (uuid 4412226e-d975-40a2-921f-502ff4129a95)) - (no_connect (at 251.46 85.09) (uuid 4831966c-bb32-4bc8-a400-0382a02ffa1c)) - (no_connect (at 251.46 54.61) (uuid 4e66a44f-7fa6-4e16-bf9b-62ec864301a5)) - (no_connect (at 251.46 64.77) (uuid 53c85970-3e21-4fae-a84f-721cfc0513b5)) - (no_connect (at 251.46 41.91) (uuid 55992e35-fe7b-468a-9b7a-1e4dc931b904)) - (no_connect (at 251.46 34.29) (uuid 5740c959-93d8-47fd-8f68-62f0109e753d)) - (no_connect (at 41.91 113.03) (uuid 60001d66-7d17-42f4-a81f-e8d50335f922)) - (no_connect (at 29.21 113.03) (uuid 60001d66-7d17-42f4-a81f-e8d50335f923)) - (no_connect (at 251.46 62.23) (uuid 7447a6e7-8205-46ba-afca-d0fa8f90c95a)) - (no_connect (at 251.46 49.53) (uuid 9702d639-3b1f-4825-8985-b32b9008503d)) - (no_connect (at 251.46 44.45) (uuid a06e8e78-f567-42e6-b645-013b1073ca31)) - (no_connect (at 251.46 72.39) (uuid a9ec539a-d80d-40cc-803c-12b6adefe42a)) - (no_connect (at 251.46 31.75) (uuid b6bcc3cf-50de-4a33-bc41-678825c1ecf2)) - (no_connect (at 251.46 74.93) (uuid c264c438-a475-4ad4-9915-0f1e6ecf3053)) - (no_connect (at 251.46 36.83) (uuid c3c93de0-69b1-4a04-8e0b-d78caf487c63)) - (no_connect (at 251.46 87.63) (uuid e25ce415-914a-48fe-bf09-324317917b2e)) - (no_connect (at 251.46 46.99) (uuid ec9e24d8-d1c5-40e2-9812-dc315d05f470)) - (no_connect (at 251.46 69.85) (uuid ef1b4b98-541b-4673-a04f-2043250fc40a)) - (no_connect (at 251.46 39.37) (uuid f9865a9f-edb8-49c7-828f-4896e1f3047a)) - (no_connect (at 29.21 130.81) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474b1)) - (no_connect (at 29.21 128.27) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474b2)) - (no_connect (at 41.91 166.37) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474b3)) - (no_connect (at 41.91 163.83) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474b4)) - (no_connect (at 41.91 161.29) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474b5)) - (no_connect (at 41.91 158.75) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474b6)) - (no_connect (at 41.91 156.21) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474b7)) - (no_connect (at 29.21 173.99) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474b8)) - (no_connect (at 29.21 168.91) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474b9)) - (no_connect (at 29.21 171.45) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474ba)) - (no_connect (at 29.21 156.21) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474bb)) - (no_connect (at 29.21 161.29) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474bc)) - (no_connect (at 29.21 153.67) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474bd)) - (no_connect (at 29.21 166.37) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474be)) - (no_connect (at 29.21 158.75) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474bf)) - (no_connect (at 29.21 163.83) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474c0)) - (no_connect (at 41.91 138.43) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474c1)) - (no_connect (at 41.91 135.89) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474c2)) - (no_connect (at 41.91 140.97) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474c3)) - (no_connect (at 41.91 125.73) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474c4)) - (no_connect (at 41.91 123.19) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474c5)) - (no_connect (at 41.91 128.27) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474c6)) - (no_connect (at 41.91 133.35) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474c7)) - (no_connect (at 41.91 130.81) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474c8)) - (no_connect (at 29.21 140.97) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474c9)) - (no_connect (at 29.21 138.43) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474ca)) - (no_connect (at 41.91 176.53) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474cb)) - (no_connect (at 41.91 173.99) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474cc)) - (no_connect (at 41.91 171.45) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474cd)) - (no_connect (at 41.91 168.91) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474ce)) - (no_connect (at 41.91 179.07) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474cf)) - (no_connect (at 41.91 153.67) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474d0)) - (no_connect (at 29.21 133.35) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474d1)) - (no_connect (at 29.21 179.07) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474d2)) - (no_connect (at 29.21 176.53) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474d3)) - (no_connect (at 29.21 135.89) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474d4)) - (no_connect (at 29.21 118.11) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474d5)) - (no_connect (at 41.91 118.11) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474d6)) - (no_connect (at 41.91 120.65) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474d7)) - (no_connect (at 29.21 125.73) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474d8)) - (no_connect (at 29.21 120.65) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474d9)) - (no_connect (at 29.21 123.19) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474da)) - (no_connect (at 29.21 115.57) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474db)) - (no_connect (at 41.91 115.57) (uuid fdb96369-82c9-4d10-912e-0c8fc5d474dc)) - - (wire (pts (xy 54.61 115.57) (xy 54.61 123.19)) - (stroke (width 0) (type default)) - (uuid 0147f16a-c952-4891-8f53-a9fb8cddeb8d) - ) - (wire (pts (xy 24.13 166.37) (xy 26.67 166.37)) - (stroke (width 0) (type default)) - (uuid 02b9b31b-cd71-48f4-a171-9994b70c1b21) - ) - (wire (pts (xy 181.61 64.77) (xy 168.91 64.77)) - (stroke (width 0) (type default)) - (uuid 04c953e5-c101-4fa9-9f14-b581e539207c) - ) - (wire (pts (xy 44.45 110.49) (xy 44.45 123.19)) - (stroke (width 0) (type default)) - (uuid 0666d438-e9ba-49ce-a5d1-d1585e224c70) - ) - (wire (pts (xy 168.91 149.86) (xy 187.96 149.86)) - (stroke (width 0) (type default)) - (uuid 069fec15-00a7-413f-a6d2-a8fce06850cc) - ) - (wire (pts (xy 168.91 60.96) (xy 187.96 60.96)) - (stroke (width 0) (type default)) - (uuid 094231a5-0cb5-42b6-836a-b568ca561e2e) - ) - (wire (pts (xy 43.18 111.76) (xy 43.18 130.81)) - (stroke (width 0) (type default)) - (uuid 0afc1685-e229-45a5-a6a9-ad99e3a02027) - ) - (wire (pts (xy 54.61 130.81) (xy 54.61 133.35)) - (stroke (width 0) (type default)) - (uuid 0d0bb7b2-a6e5-46d2-9492-a1aa6e5a7b2f) - ) - (wire (pts (xy 44.45 170.18) (xy 44.45 177.8)) - (stroke (width 0) (type default)) - (uuid 120a7b0f-ddfd-4447-85c1-35665465acdb) - ) - (wire (pts (xy 177.8 81.28) (xy 168.91 81.28)) - (stroke (width 0) (type default)) - (uuid 1451cd39-cd4d-4869-bbcd-17438f614585) - ) - (wire (pts (xy 25.4 144.78) (xy 25.4 135.89)) - (stroke (width 0) (type default)) - (uuid 16b58b11-d827-4372-acd0-54d9f2084bf6) - ) - (wire (pts (xy 187.96 149.86) (xy 187.96 60.96)) - (stroke (width 0) (type default)) - (uuid 180e9b3a-ce3b-474f-bcb4-8360322786bb) - ) - (wire (pts (xy 27.94 120.65) (xy 24.13 120.65)) - (stroke (width 0) (type default)) - (uuid 1901ff64-3423-49fe-ba40-fa265c9ebadc) - ) - (wire (pts (xy 41.91 107.95) (xy 45.72 107.95)) - (stroke (width 0) (type default)) - (uuid 19a26cd4-b92e-4772-8680-ac5db1185a4e) - ) - (wire (pts (xy 60.96 123.19) (xy 67.31 123.19)) - (stroke (width 0) (type default)) - (uuid 1e26114e-303b-43ae-baf6-cf8c2cebe731) - ) - (wire (pts (xy 16.51 180.34) (xy 16.51 184.15)) - (stroke (width 0) (type default)) - (uuid 23bb2798-d93a-4696-a962-c305c4298a0c) - ) - (wire (pts (xy 24.13 158.75) (xy 25.4 158.75)) - (stroke (width 0) (type default)) - (uuid 24b08d8c-0572-4f15-ae42-424a272a58a7) - ) - (wire (pts (xy 45.72 115.57) (xy 46.99 115.57)) - (stroke (width 0) (type default)) - (uuid 272e2905-cf51-4bcb-84ba-442555a9d71f) - ) - (wire (pts (xy 16.51 158.75) (xy 16.51 166.37)) - (stroke (width 0) (type default)) - (uuid 27ce1dc8-82cc-4deb-9ce9-7bf321beeb7c) - ) - (wire (pts (xy 45.72 170.18) (xy 44.45 170.18)) - (stroke (width 0) (type default)) - (uuid 29a3882d-fbe7-4548-b3d4-dda7f3319280) - ) - (wire (pts (xy 29.21 143.51) (xy 26.67 143.51)) - (stroke (width 0) (type default)) - (uuid 2e9403c1-bc0d-41a6-80ba-0e92c5977266) - ) - (wire (pts (xy 16.51 166.37) (xy 16.51 173.99)) - (stroke (width 0) (type default)) - (uuid 2e9c8204-4ddf-4190-9d2c-510f3181e054) - ) - (wire (pts (xy 53.34 177.8) (xy 60.96 177.8)) - (stroke (width 0) (type default)) - (uuid 31514da1-28e7-4759-a18f-ce41360f32a8) - ) - (wire (pts (xy 29.21 181.61) (xy 26.67 181.61)) - (stroke (width 0) (type default)) - (uuid 316e2c83-28ec-4fc6-817c-c0771121fdc4) - ) - (wire (pts (xy 16.51 128.27) (xy 16.51 135.89)) - (stroke (width 0) (type default)) - (uuid 32667662-ae86-4904-b198-3e95f11851bf) - ) - (wire (pts (xy 24.13 173.99) (xy 27.94 173.99)) - (stroke (width 0) (type default)) - (uuid 366adcdd-6753-429e-96a6-7b3bff5d839f) - ) - (wire (pts (xy 24.13 146.05) (xy 24.13 143.51)) - (stroke (width 0) (type default)) - (uuid 3b91beab-581c-469e-af99-babab0ea70f4) - ) - (wire (pts (xy 54.61 123.19) (xy 60.96 123.19)) - (stroke (width 0) (type default)) - (uuid 3dcc657b-55a1-48e0-9667-e01e7b6b08b5) - ) - (wire (pts (xy 29.21 107.95) (xy 41.91 107.95)) - (stroke (width 0) (type default)) - (uuid 3dd56af0-3873-4033-9f00-3f3056ebcb44) - ) - (wire (pts (xy 248.92 90.17) (xy 248.92 92.71)) - (stroke (width 0) (type default)) - (uuid 3f5fe6b7-98fc-4d3e-9567-f9f7202d1455) - ) - (wire (pts (xy 44.45 177.8) (xy 44.45 184.15)) - (stroke (width 0) (type default)) - (uuid 4012c7d3-138e-4fc2-8e51-ff4cd8fa0c0c) - ) - (wire (pts (xy 181.61 146.05) (xy 181.61 64.77)) - (stroke (width 0) (type default)) - (uuid 407d8d88-9586-4148-8460-b766ce9bb253) - ) - (wire (pts (xy 24.13 148.59) (xy 24.13 151.13)) - (stroke (width 0) (type default)) - (uuid 44c6d339-5129-4890-b712-a38d55c5bb49) - ) - (wire (pts (xy 41.91 184.15) (xy 44.45 184.15)) - (stroke (width 0) (type default)) - (uuid 464366d3-00ad-4b31-95c4-f3a103cc531a) - ) - (wire (pts (xy 16.51 173.99) (xy 16.51 180.34)) - (stroke (width 0) (type default)) - (uuid 49bbdbb6-e01f-403b-83f1-33fb157240eb) - ) - (wire (pts (xy 54.61 170.18) (xy 67.31 170.18)) - (stroke (width 0) (type default)) - (uuid 4a2e1f5e-0628-400a-88be-f59628c22c00) - ) - (wire (pts (xy 41.91 151.13) (xy 43.18 151.13)) - (stroke (width 0) (type default)) - (uuid 4f4a895e-80a4-456a-9f56-9eb358c165b2) - ) - (wire (pts (xy 25.4 135.89) (xy 24.13 135.89)) - (stroke (width 0) (type default)) - (uuid 5099e5fa-731f-44fa-8866-f4651b87e260) - ) - (wire (pts (xy 27.94 111.76) (xy 43.18 111.76)) - (stroke (width 0) (type default)) - (uuid 546f4a14-bcfd-4e98-bac7-144b73a0c10f) - ) - (wire (pts (xy 27.94 142.24) (xy 43.18 142.24)) - (stroke (width 0) (type default)) - (uuid 556c3585-e264-4ecc-aa2f-53a14ee7ff67) - ) - (wire (pts (xy 26.67 128.27) (xy 24.13 128.27)) - (stroke (width 0) (type default)) - (uuid 56dad91e-ad7f-4d8f-999c-c679bdf00629) - ) - (wire (pts (xy 25.4 149.86) (xy 25.4 158.75)) - (stroke (width 0) (type default)) - (uuid 59686ca7-2170-46eb-bf26-92b4849a5c6f) - ) - (wire (pts (xy 248.92 82.55) (xy 248.92 90.17)) - (stroke (width 0) (type default)) - (uuid 5cbb5968-dbb5-4b84-864a-ead1cacf75b9) - ) - (wire (pts (xy 43.18 152.4) (xy 27.94 152.4)) - (stroke (width 0) (type default)) - (uuid 5ffb3b4b-7652-4af4-839a-2e6de4752496) - ) - (wire (pts (xy 238.76 29.21) (xy 251.46 29.21)) - (stroke (width 0) (type default)) - (uuid 62c076a3-d618-44a2-9042-9a08b3576787) - ) - (wire (pts (xy 43.18 143.51) (xy 43.18 142.24)) - (stroke (width 0) (type default)) - (uuid 646a9b34-cdca-4861-86a4-aa3e80e0b4ea) - ) - (wire (pts (xy 27.94 142.24) (xy 27.94 120.65)) - (stroke (width 0) (type default)) - (uuid 667df18d-7c9e-43aa-b500-d17b882a8258) - ) - (wire (pts (xy 16.51 120.65) (xy 16.51 128.27)) - (stroke (width 0) (type default)) - (uuid 67f6e996-3c99-493c-8f6f-e739e2ed5d7a) - ) - (wire (pts (xy 251.46 80.01) (xy 248.92 80.01)) - (stroke (width 0) (type default)) - (uuid 6a955fc7-39d9-4c75-9a69-676ca8c0b9b2) - ) - (wire (pts (xy 43.18 151.13) (xy 43.18 152.4)) - (stroke (width 0) (type default)) - (uuid 6c11df80-4f13-4fb1-b90a-898ea00ab68f) - ) - (wire (pts (xy 41.91 148.59) (xy 43.18 148.59)) - (stroke (width 0) (type default)) - (uuid 6c8d8bd0-e9c4-448d-9b39-55185d044dfc) - ) - (wire (pts (xy 54.61 170.18) (xy 53.34 170.18)) - (stroke (width 0) (type default)) - (uuid 6e105729-aba0-497c-a99e-c32d2b3ddb6d) - ) - (wire (pts (xy 26.67 143.51) (xy 26.67 128.27)) - (stroke (width 0) (type default)) - (uuid 70649909-981d-4aee-a222-ba7becffb710) - ) - (wire (pts (xy 26.67 151.13) (xy 26.67 166.37)) - (stroke (width 0) (type default)) - (uuid 70e410dc-b23c-4f2e-9999-b5c1ddb31050) - ) - (wire (pts (xy 251.46 92.71) (xy 248.92 92.71)) - (stroke (width 0) (type default)) - (uuid 746ba970-8279-4e7b-aed3-f28687777c21) - ) - (wire (pts (xy 45.72 107.95) (xy 46.99 107.95)) - (stroke (width 0) (type default)) - (uuid 74f7faf4-f39c-4226-b601-5341f12f2216) - ) - (wire (pts (xy 43.18 149.86) (xy 25.4 149.86)) - (stroke (width 0) (type default)) - (uuid 74ff337e-910f-4d0f-8ddc-d642f6ef35bb) - ) - (wire (pts (xy 54.61 165.1) (xy 54.61 170.18)) - (stroke (width 0) (type default)) - (uuid 78cbdd6c-4878-4cc5-9a58-0e506478e37d) - ) - (wire (pts (xy 41.91 110.49) (xy 44.45 110.49)) - (stroke (width 0) (type default)) - (uuid 78f1e95c-30ee-4d12-9b9e-485308899c88) - ) - (wire (pts (xy 173.99 124.46) (xy 173.99 87.63)) - (stroke (width 0) (type default)) - (uuid 79993ccb-c268-474d-9299-15e1a0986600) - ) - (wire (pts (xy 29.21 181.61) (xy 41.91 181.61)) - (stroke (width 0) (type default)) - (uuid 8716b869-f528-40ae-9e51-8b0a0d24d464) - ) - (wire (pts (xy 45.72 107.95) (xy 45.72 115.57)) - (stroke (width 0) (type default)) - (uuid 8a4e5380-ae39-404b-a646-336877cae6fa) - ) - (wire (pts (xy 29.21 151.13) (xy 26.67 151.13)) - (stroke (width 0) (type default)) - (uuid 8afe8896-7a35-4d00-bcc5-790cae04b0c2) - ) - (wire (pts (xy 44.45 177.8) (xy 45.72 177.8)) - (stroke (width 0) (type default)) - (uuid 8d55e186-3e11-40e8-a65e-b36a8a00069e) - ) - (wire (pts (xy 54.61 170.18) (xy 54.61 186.69)) - (stroke (width 0) (type default)) - (uuid 983c426c-24e0-4c65-ab69-1f1824adc5c6) - ) - (wire (pts (xy 43.18 148.59) (xy 43.18 149.86)) - (stroke (width 0) (type default)) - (uuid 9a3b450a-4c67-4bf4-a1a1-11630fc9771e) - ) - (wire (pts (xy 26.67 181.61) (xy 26.67 189.23)) - (stroke (width 0) (type default)) - (uuid 9a6f2918-e2ef-427b-b506-9a880a2f258b) - ) - (wire (pts (xy 54.61 189.23) (xy 54.61 186.69)) - (stroke (width 0) (type default)) - (uuid 9cf39a2a-0649-4901-96ea-666fe7c9a2e4) - ) - (wire (pts (xy 16.51 135.89) (xy 16.51 143.51)) - (stroke (width 0) (type default)) - (uuid a05d7640-f2f6-4ba7-8c51-5a4af431fc13) - ) - (wire (pts (xy 54.61 107.95) (xy 59.69 107.95)) - (stroke (width 0) (type default)) - (uuid a1242316-6c35-41bf-acfa-72358e1b6d49) - ) - (wire (pts (xy 27.94 152.4) (xy 27.94 173.99)) - (stroke (width 0) (type default)) - (uuid a5812ecc-7a94-4f20-b0c6-8fd19739a103) - ) - (wire (pts (xy 16.51 143.51) (xy 16.51 151.13)) - (stroke (width 0) (type default)) - (uuid a7520ad3-0f8b-4788-92d4-8ffb277041e6) - ) - (wire (pts (xy 16.51 151.13) (xy 16.51 158.75)) - (stroke (width 0) (type default)) - (uuid a795f1ba-cdd5-4cc5-9a52-08586e982934) - ) - (wire (pts (xy 29.21 146.05) (xy 24.13 146.05)) - (stroke (width 0) (type default)) - (uuid adaf5417-93ed-467a-875d-9168ddf8e562) - ) - (wire (pts (xy 248.92 80.01) (xy 248.92 82.55)) - (stroke (width 0) (type default)) - (uuid afb8e687-4a13-41a1-b8c0-89a749e897fe) - ) - (wire (pts (xy 43.18 130.81) (xy 46.99 130.81)) - (stroke (width 0) (type default)) - (uuid b0359203-52bc-4c3a-904f-3d2fa2f6b549) - ) - (wire (pts (xy 26.67 189.23) (xy 54.61 189.23)) - (stroke (width 0) (type default)) - (uuid b33be880-a3a2-4116-af57-ddd177cb5171) - ) - (wire (pts (xy 168.91 129.54) (xy 177.8 129.54)) - (stroke (width 0) (type default)) - (uuid b52944e3-8a75-484e-a1ed-437efefda90c) - ) - (wire (pts (xy 29.21 186.69) (xy 41.91 186.69)) - (stroke (width 0) (type default)) - (uuid b727218f-f1f0-4b41-98db-b4240a10f461) - ) - (wire (pts (xy 44.45 123.19) (xy 46.99 123.19)) - (stroke (width 0) (type default)) - (uuid b79689c8-2962-4139-aab2-4c85873c4f87) - ) - (wire (pts (xy 248.92 92.71) (xy 248.92 93.98)) - (stroke (width 0) (type default)) - (uuid bb7f0588-d4d8-44bf-9ebf-3c533fe4d6ae) - ) - (wire (pts (xy 29.21 148.59) (xy 24.13 148.59)) - (stroke (width 0) (type default)) - (uuid becfebd3-67e6-4322-9c3e-cec4c1a09aa0) - ) - (wire (pts (xy 43.18 146.05) (xy 43.18 144.78)) - (stroke (width 0) (type default)) - (uuid bf3161d0-be4d-4dc5-aa55-9bed0b9ee6a8) - ) - (wire (pts (xy 43.18 144.78) (xy 25.4 144.78)) - (stroke (width 0) (type default)) - (uuid c10307e9-9ac0-4a68-bdeb-9a5cfa9e1735) - ) - (wire (pts (xy 59.69 107.95) (xy 59.69 113.03)) - (stroke (width 0) (type default)) - (uuid c1d83899-e380-49f9-a87d-8e78bc089ebf) - ) - (wire (pts (xy 20.32 180.34) (xy 16.51 180.34)) - (stroke (width 0) (type default)) - (uuid c70d9ef3-bfeb-47e0-a1e1-9aeba3da7864) - ) - (wire (pts (xy 29.21 110.49) (xy 27.94 110.49)) - (stroke (width 0) (type default)) - (uuid cf3e497c-415b-45e7-85c9-8b220d4e0239) - ) - (wire (pts (xy 168.91 135.89) (xy 238.76 135.89)) - (stroke (width 0) (type default)) - (uuid d03d949d-a9b5-474a-96dc-eb9a1209522e) - ) - (wire (pts (xy 54.61 130.81) (xy 54.61 123.19)) - (stroke (width 0) (type default)) - (uuid d22e95aa-f3db-4fbc-a331-048a2523233e) - ) - (wire (pts (xy 29.21 184.15) (xy 41.91 184.15)) - (stroke (width 0) (type default)) - (uuid d652d0bd-cf27-43c7-b083-e0736dc66226) - ) - (wire (pts (xy 53.34 186.69) (xy 54.61 186.69)) - (stroke (width 0) (type default)) - (uuid d66d52e1-c81f-43d4-be58-0387e142ff49) - ) - (wire (pts (xy 247.65 57.15) (xy 247.65 59.69)) - (stroke (width 0) (type default)) - (uuid da469d11-a8a4-414b-9449-d151eeaf4853) - ) - (wire (pts (xy 168.91 87.63) (xy 173.99 87.63)) - (stroke (width 0) (type default)) - (uuid dc63e79e-6a73-4404-bc87-ff27daf91ad5) - ) - (wire (pts (xy 238.76 135.89) (xy 238.76 29.21)) - (stroke (width 0) (type default)) - (uuid e108e6ce-145d-4d00-9c0d-2f8554525971) - ) - (wire (pts (xy 251.46 90.17) (xy 248.92 90.17)) - (stroke (width 0) (type default)) - (uuid e10b5627-3247-4c86-b9f6-ef474ca11543) - ) - (wire (pts (xy 41.91 186.69) (xy 45.72 186.69)) - (stroke (width 0) (type default)) - (uuid e2d0d771-8832-4486-b358-984c4d2cb5bb) - ) - (wire (pts (xy 41.91 146.05) (xy 43.18 146.05)) - (stroke (width 0) (type default)) - (uuid e5d54596-c36f-4fb2-a49d-6de015d4cd5a) - ) - (wire (pts (xy 168.91 146.05) (xy 181.61 146.05)) - (stroke (width 0) (type default)) - (uuid e664e896-89c0-40f9-a97b-e90c1cdb4cae) - ) - (wire (pts (xy 27.94 110.49) (xy 27.94 111.76)) - (stroke (width 0) (type default)) - (uuid e7a6adb2-1b9d-45b7-999b-fe833466ebdb) - ) - (wire (pts (xy 251.46 82.55) (xy 248.92 82.55)) - (stroke (width 0) (type default)) - (uuid e8314017-7be6-4011-9179-37449a29b311) - ) - (wire (pts (xy 168.91 124.46) (xy 173.99 124.46)) - (stroke (width 0) (type default)) - (uuid f0b70d08-bab2-483a-8670-079117612214) - ) - (wire (pts (xy 251.46 57.15) (xy 247.65 57.15)) - (stroke (width 0) (type default)) - (uuid f1830a1b-f0cc-47ae-a2c9-679c82032f14) - ) - (wire (pts (xy 60.96 177.8) (xy 60.96 123.19)) - (stroke (width 0) (type default)) - (uuid f4f75f63-fd7f-498d-9afd-7aef29ed93de) - ) - (wire (pts (xy 41.91 143.51) (xy 43.18 143.51)) - (stroke (width 0) (type default)) - (uuid f5a6731b-d91f-4ef1-98f1-c52e6404fd5b) - ) - (wire (pts (xy 177.8 129.54) (xy 177.8 81.28)) - (stroke (width 0) (type default)) - (uuid fc396bd6-fa43-4b24-9a47-baae43bf57e2) - ) - - (symbol (lib_id "power:GND") (at 16.51 184.15 0) (mirror y) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b04393c) - (property "Reference" "#PWR01" (at 16.51 190.5 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 16.51 187.96 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 16.51 184.15 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 16.51 184.15 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid d02cc305-cc9d-4a81-9683-c30ba7989ea7)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "#PWR01") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Connector:DIN41612_02x32_AC") (at 36.83 146.05 0) (mirror y) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b08a8e7) - (property "Reference" "J1" (at 34.29 101.6 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "C64AC" (at 36.83 104.14 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Connector_DIN:DIN41612_C_2x32_Male_Horizontal_THT" (at 36.83 146.05 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 36.83 146.05 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Config" "" (at 36.83 146.05 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Harting" (at 36.83 146.05 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "09031646921" (at 36.83 146.05 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "a1" (uuid 8b534e69-456b-4cad-b5ce-665608c61961)) - (pin "a10" (uuid d5677776-07da-4607-89a3-29e9ec2c2c7d)) - (pin "a11" (uuid d7c653cb-0c05-4d88-98d6-0282a68eb630)) - (pin "a12" (uuid 581b02e0-e61c-4e78-b948-a79ce3a4d8f3)) - (pin "a13" (uuid 1634ee39-46f2-475a-b9a1-ec8467b66ff6)) - (pin "a14" (uuid bd4dbb77-75b7-4033-9e46-670b72b8140f)) - (pin "a15" (uuid d4dec449-c6c8-492c-9e64-09b292ebe822)) - (pin "a16" (uuid ab0024d5-402e-4e56-82ec-29f4ad53b73e)) - (pin "a17" (uuid 632d804a-27bc-438a-90ef-4d8ebe08945c)) - (pin "a18" (uuid b1127c53-98c3-4069-8743-6befcd602a8a)) - (pin "a19" (uuid 2ce9edef-a163-482b-ba8f-bdca1edee352)) - (pin "a2" (uuid 3b2e0f02-e66f-464d-83c6-b26ab4e99a3e)) - (pin "a20" (uuid 80e00c51-d22d-43c8-8784-ae53b747630c)) - (pin "a21" (uuid 1a79a7b5-ce85-4adf-babf-91a1fcf480ce)) - (pin "a22" (uuid 1ce57e8c-7f2c-4397-bca9-337651896c59)) - (pin "a23" (uuid f00d0817-c78d-4508-8fa2-e15c3b6095ae)) - (pin "a24" (uuid ae84c1e4-8478-4ec1-bdee-a6bf97b13690)) - (pin "a25" (uuid c38a270e-8014-4f7f-95fb-497d6c9f81f8)) - (pin "a26" (uuid 431c3cd3-1678-41f3-bc33-6bfb6fb5e0d2)) - (pin "a27" (uuid 0d57a78e-c281-4950-bb58-77ab01d2c7ae)) - (pin "a28" (uuid 406d0ee2-0cc9-4bb0-a718-7d3e1775caad)) - (pin "a29" (uuid 534aa35a-5c4a-48d4-8b5d-461128f29024)) - (pin "a3" (uuid a9389eb5-6d75-4da8-b221-7db9aeefe372)) - (pin "a30" (uuid 59593f0c-ea82-4828-b3b8-470e29dfaf00)) - (pin "a31" (uuid 7a072cd0-bef7-42ad-af5b-a7afe6c1e728)) - (pin "a32" (uuid 6e1a84dc-fe7c-4f6c-a5a1-ece4e49045ec)) - (pin "a4" (uuid cb8d6eff-9119-4ea3-9541-19f2c2c10846)) - (pin "a5" (uuid f386ec2e-8ae0-4b3d-9d67-3a04973f78d7)) - (pin "a6" (uuid 43d25633-9b19-4233-8fdd-6586937d324b)) - (pin "a7" (uuid 3251795e-8989-4ac5-aa8d-b55f87b1fa8d)) - (pin "a8" (uuid 14e39794-242c-461b-a49b-2b7e2ad3e9ab)) - (pin "a9" (uuid e0045b9d-438f-4f0d-97a4-14df0335d230)) - (pin "c1" (uuid 6779fb5e-d940-44c2-8c45-2f1cd6b3181e)) - (pin "c10" (uuid ad9ca0ad-3269-4ffc-9b41-58617965eb4f)) - (pin "c11" (uuid 603ba4aa-2d7c-45cb-85f0-f4bafae03017)) - (pin "c12" (uuid 0a506d7c-02a1-42b5-bfe8-f630e6517908)) - (pin "c13" (uuid 0b6391a8-c6be-4c37-ac38-083687545ad5)) - (pin "c14" (uuid 91119c3a-552e-40a2-870e-f2604b748610)) - (pin "c15" (uuid bd25e8be-5042-4330-81ab-6a695a3efc7b)) - (pin "c16" (uuid 1881ee6b-e89a-45be-8dba-08ac8da8d421)) - (pin "c17" (uuid 2a29333b-544d-45bd-ab1c-3caa755bb91b)) - (pin "c18" (uuid 1eab5e18-b235-48f0-9bb9-061fe7466379)) - (pin "c19" (uuid 8a32a130-c3b6-4a05-98dd-430cd89e621d)) - (pin "c2" (uuid 832ea245-ca87-4c5b-82af-1f35a8c967c6)) - (pin "c20" (uuid 64898c35-bc3d-4d3e-ab8e-1d60f7f61c6c)) - (pin "c21" (uuid ffa88755-a684-4db4-a2b4-b1ec332bd3ed)) - (pin "c22" (uuid e4cddd3f-9343-4c39-b294-960f59cb2011)) - (pin "c23" (uuid 046c822f-e951-44d9-974f-fb7085b57e47)) - (pin "c24" (uuid 7718a5d6-7086-4a08-a33f-d85eb268a232)) - (pin "c25" (uuid c19050c4-7d6a-4b22-b56b-9c462cf8a294)) - (pin "c26" (uuid 0df20d20-32c6-4676-9ddd-472fb0c2162d)) - (pin "c27" (uuid 1f11c281-4998-491f-a9b1-8ce2883335d6)) - (pin "c28" (uuid 266aae62-4ee8-4d3e-961c-53c1bdb5bc9b)) - (pin "c29" (uuid 5cd8773c-7835-49d1-8fde-3ea9024ae7fa)) - (pin "c3" (uuid ee275799-18fa-4b07-ada6-d81617b4b74a)) - (pin "c30" (uuid 9d5b4081-3274-4844-82f1-88b115d39b64)) - (pin "c31" (uuid 8265f945-e1a9-44bb-8812-a354ef4bb04a)) - (pin "c32" (uuid f3fecd24-50c3-414b-8664-942c8c33dfd9)) - (pin "c4" (uuid 8719f728-2cd9-41b7-ad83-3e39df580683)) - (pin "c5" (uuid f083a3b8-2301-4957-97d4-f73c37799666)) - (pin "c6" (uuid 54141429-dcfe-4711-8f14-9f43c4a7ab10)) - (pin "c7" (uuid 83e19f85-c31f-4b65-a7e6-f69bb44a3d62)) - (pin "c8" (uuid cb801b67-8c0f-406f-9ffe-10940a798405)) - (pin "c9" (uuid 2dd715eb-c247-4eed-bef6-ccc8c2842229)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "J1") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "RedPitaya:RedPitaya_125-14") (at 256.54 60.96 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b08c1e4) - (property "Reference" "RP1" (at 257.81 26.67 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "RedPitaya_125-14" (at 269.24 60.96 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "custom:RedPitaya_125-14" (at 256.54 60.96 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 256.54 60.96 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Connector" "" (at 256.54 60.96 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "MFN" "Samtec" (at 256.54 60.96 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "ESQ-113-44-T-D" (at 256.54 60.96 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid abd4c054-d160-4afc-b89e-b064f61a6cea)) - (pin "10" (uuid 09e82a9f-32b9-4326-900a-862357a2ea7c)) - (pin "11" (uuid f85a4bde-99f2-4f51-928c-1f553dd022aa)) - (pin "12" (uuid 019d61e2-bf1a-4047-b5a9-974b28aff016)) - (pin "13" (uuid 9d95b8f3-588c-423a-a07a-b95b70ba9d49)) - (pin "14" (uuid a74ffe89-bd13-46eb-90cd-fb9cb675cf61)) - (pin "15" (uuid 5dc857cd-69b3-436f-ad40-03b225e423ed)) - (pin "16" (uuid 609e0431-c538-4704-ab44-158d282922d9)) - (pin "17" (uuid 61752aa6-823c-4e63-b613-8b9f06732137)) - (pin "18" (uuid f56942d2-f2dd-4002-85b3-b44088bf0801)) - (pin "19" (uuid 7613171f-3d57-481f-a1f5-cf9b2078ce47)) - (pin "2" (uuid 055f145f-3e4c-4281-8b0f-f3d61b11ab08)) - (pin "20" (uuid 2cd68df6-eab0-4ec6-9cf3-87c015589f4f)) - (pin "21" (uuid 4a254cfa-756d-4a64-871a-abf85f95be9f)) - (pin "22" (uuid b1207068-10aa-44f2-9526-6baa91a18194)) - (pin "23" (uuid e7917d8a-9d97-473c-b894-cbe27055469e)) - (pin "24" (uuid 6d37ffc9-52b8-45dd-a615-c574fc16e30b)) - (pin "25" (uuid 117e7080-234f-49cb-bea2-1e181ff0e17a)) - (pin "26" (uuid 7b99f74e-8289-47ea-9158-50583fc655b8)) - (pin "3" (uuid f2c7ee2b-c1f3-4524-b6b3-63bf4782962a)) - (pin "4" (uuid b638166f-0060-44dd-a55c-2c3552103d50)) - (pin "5" (uuid 94b11e4d-97ae-4c11-ad6d-df8bfbb756cc)) - (pin "6" (uuid e7174582-b05a-452c-91ec-a0dfcf85fc19)) - (pin "7" (uuid 7416917b-8e27-400b-b454-648aaffe3d1b)) - (pin "8" (uuid e47ce8d3-40b8-43b8-a4ea-d6136cf72842)) - (pin "9" (uuid 7d986bfe-1ce2-4135-bac0-ccf8ca415bf0)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "RP1") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 247.65 59.69 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b08c62b) - (property "Reference" "#PWR02" (at 247.65 66.04 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 247.65 63.5 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 247.65 59.69 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 247.65 59.69 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid c7337743-ac3c-4cb5-b4c2-84cf3c1958da)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "#PWR02") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 248.92 93.98 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b08c643) - (property "Reference" "#PWR03" (at 248.92 100.33 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 248.92 97.79 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 248.92 93.98 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 248.92 93.98 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "" (at 248.92 93.98 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "" (at 248.92 93.98 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid c8c7a5da-f7b2-4a52-9ef7-2cd708cf2c0e)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "#PWR03") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:PWR_FLAG") (at 54.61 165.1 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005d8e1324) - (property "Reference" "#FLG0101" (at 54.61 163.195 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "PWR_FLAG" (at 54.61 160.7058 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 54.61 165.1 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 54.61 165.1 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid b5a90c87-8ff1-4dbd-9e50-a52d990a9095)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "#FLG0101") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:PWR_FLAG") (at 54.61 133.35 180) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005d8e172b) - (property "Reference" "#FLG0102" (at 54.61 135.255 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "PWR_FLAG" (at 54.61 137.7442 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 54.61 133.35 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 54.61 133.35 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 78203551-e76d-45b2-9e72-4337233f1450)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "#FLG0102") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:PWR_FLAG") (at 20.32 180.34 270) (mirror x) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005d8e195f) - (property "Reference" "#FLG0103" (at 22.225 180.34 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "PWR_FLAG" (at 24.7142 180.34 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 20.32 180.34 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 20.32 180.34 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 8ffa9520-5ba4-4ac1-a18d-174b008f8b80)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "#FLG0103") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Custom_logos:Logo_APQ") (at 243.84 171.45 0) (unit 1) - (in_bom no) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005f6d3841) - (property "Reference" "LOGO1" (at 250.19 164.465 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "Logo_APQ" (at 250.19 177.8 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "custom:APQ-Logo" (at 251.46 171.45 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 251.46 171.45 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "" (at 243.84 171.45 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "" (at 243.84 171.45 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Sim.Enable" "0" (at 243.84 171.45 0) - (effects (font (size 1.27 1.27)) hide) - ) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "LOGO1") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Graphic:Logo_Open_Hardware_Small") (at 276.86 173.99 0) (unit 1) - (in_bom no) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005f6d62f6) - (property "Reference" "LOGO2" (at 276.86 167.005 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "Logo_Open_Hardware_Small" (at 276.86 179.705 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "Symbol:OSHW-Logo_5.7x6mm_SilkScreen" (at 276.86 173.99 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 276.86 173.99 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Sim.Enable" "0" (at 276.86 173.99 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "" (at 276.86 173.99 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "" (at 276.86 173.99 0) - (effects (font (size 1.27 1.27)) hide) - ) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "LOGO2") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Mechanical:MountingHole") (at 265.43 133.35 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005f6d8b6d) - (property "Reference" "H1" (at 267.97 132.08 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "MountingHole" (at 267.97 134.62 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "MountingHole:MountingHole_2.7mm_M2.5" (at 265.43 133.35 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 265.43 133.35 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Config" "DNF" (at 265.43 133.35 0) - (effects (font (size 1.27 1.27)) hide) - ) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "H1") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Mechanical:MountingHole") (at 265.43 138.43 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005f6d8e2d) - (property "Reference" "H2" (at 267.97 137.16 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "MountingHole" (at 267.97 139.7 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "MountingHole:MountingHole_2.7mm_M2.5" (at 265.43 138.43 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 265.43 138.43 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Config" "DNF" (at 265.43 138.43 0) - (effects (font (size 1.27 1.27)) hide) - ) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "H2") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Custom_logos:Logo_RoHS") (at 223.52 171.45 0) (unit 1) - (in_bom no) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005f70d043) - (property "Reference" "LOGO3" (at 229.87 164.465 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "Logo_RoHS" (at 229.87 177.8 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "Symbol:RoHS-Logo_6mm_SilkScreen" (at 231.14 171.45 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 231.14 171.45 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "" (at 223.52 171.45 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "" (at 223.52 171.45 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Sim.Enable" "0" (at 223.52 171.45 0) - (effects (font (size 1.27 1.27)) hide) - ) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "LOGO3") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Jumper:SolderJumper_2_Bridged") (at 20.32 120.65 0) (mirror y) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-0000614b49d3) - (property "Reference" "JP6" (at 20.32 115.2652 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "GND" (at 20.32 117.5766 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (at 20.32 120.65 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 20.32 120.65 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Config" "DNF" (at 20.32 120.65 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "" (at 20.32 120.65 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "" (at 20.32 120.65 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 1ace960f-743d-4336-9cc3-ceb066bf1d33)) - (pin "2" (uuid 62f3a1ec-ab57-4298-95f2-d6257c1f4a8e)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "JP6") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Jumper:SolderJumper_2_Bridged") (at 20.32 166.37 0) (mirror y) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-0000614ba1f4) - (property "Reference" "JP13" (at 20.32 160.9852 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "GND" (at 20.32 163.2966 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (at 20.32 166.37 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 20.32 166.37 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Config" "DNF" (at 20.32 166.37 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "" (at 20.32 166.37 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "" (at 20.32 166.37 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 778358f1-d890-4570-b263-0ba880374c24)) - (pin "2" (uuid bdfc4715-c6ee-47ec-8978-077838963a54)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "JP13") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Jumper:SolderJumper_2_Bridged") (at 20.32 173.99 0) (mirror y) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-0000614ba49d) - (property "Reference" "JP12" (at 20.32 168.6052 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "GND" (at 20.32 170.9166 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (at 20.32 173.99 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 20.32 173.99 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Config" "DNF" (at 20.32 173.99 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "" (at 20.32 173.99 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "" (at 20.32 173.99 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid fdc9e098-f47a-40b1-b119-fdd36450518a)) - (pin "2" (uuid 37a2e058-4e7f-4124-9985-c9b0e8794c7c)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "JP12") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Jumper:SolderJumper_2_Bridged") (at 20.32 128.27 0) (mirror y) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-0000614ba6fe) - (property "Reference" "JP7" (at 20.32 122.8852 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "GND" (at 20.32 125.1966 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (at 20.32 128.27 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 20.32 128.27 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Config" "DNF" (at 20.32 128.27 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "" (at 20.32 128.27 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "" (at 20.32 128.27 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid bf4f644f-37c9-4218-a290-e2c2d3919971)) - (pin "2" (uuid 10646a81-94b5-4f91-9067-310e0b6c2d1e)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "JP7") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Jumper:SolderJumper_2_Bridged") (at 20.32 151.13 0) (mirror y) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-0000614ba937) - (property "Reference" "JP11" (at 20.32 145.7452 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "GND" (at 20.32 148.0566 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (at 20.32 151.13 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 20.32 151.13 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Config" "DNF" (at 20.32 151.13 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "" (at 20.32 151.13 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "" (at 20.32 151.13 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 90c0fa20-44ec-4b05-bc6c-c9f7716a8dc8)) - (pin "2" (uuid 380b4184-be37-4c29-9aa1-ab97832ed532)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "JP11") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Jumper:SolderJumper_2_Bridged") (at 20.32 158.75 0) (mirror y) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-0000614baac4) - (property "Reference" "JP10" (at 20.32 153.3652 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "GND" (at 20.32 155.6766 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (at 20.32 158.75 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 20.32 158.75 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Config" "DNF" (at 20.32 158.75 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "" (at 20.32 158.75 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "" (at 20.32 158.75 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 4824ad47-6a52-4d66-b09f-c6df2c0c1e81)) - (pin "2" (uuid 1f783e1b-8141-4726-92ac-fc26fdcfa76a)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "JP10") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Jumper:SolderJumper_2_Bridged") (at 20.32 135.89 0) (mirror y) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-0000614bacb5) - (property "Reference" "JP8" (at 20.32 130.5052 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "GND" (at 20.32 132.8166 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (at 20.32 135.89 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 20.32 135.89 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Config" "DNF" (at 20.32 135.89 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "" (at 20.32 135.89 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "" (at 20.32 135.89 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid ea2e9556-eb60-4c9e-8c3a-42120dd4be64)) - (pin "2" (uuid 2028bd78-d4e0-464f-984a-1e27d08ab0a3)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "JP8") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Jumper:SolderJumper_2_Bridged") (at 20.32 143.51 0) (mirror y) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-0000614bb04c) - (property "Reference" "JP9" (at 20.32 138.1252 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "GND" (at 20.32 140.4366 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (at 20.32 143.51 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 20.32 143.51 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Config" "DNF" (at 20.32 143.51 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "" (at 20.32 143.51 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "" (at 20.32 143.51 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid e710a727-f75a-4126-9931-646ba46d7cb6)) - (pin "2" (uuid ebd9e0ad-df50-4b74-bedd-37587913175a)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "JP9") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Jumper:SolderJumper_2_Bridged") (at 50.8 115.57 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-0000615158e2) - (property "Reference" "JP3" (at 50.8 110.1852 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "+15V" (at 50.8 112.4966 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (at 50.8 115.57 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 50.8 115.57 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Config" "DNF" (at 50.8 115.57 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "" (at 50.8 115.57 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "" (at 50.8 115.57 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 5e113b49-30c2-4c92-a6e5-a73aa5905c47)) - (pin "2" (uuid fd73dd67-2076-4ce2-8acc-416f3fd36d1e)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "JP3") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Jumper:SolderJumper_2_Bridged") (at 50.8 130.81 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00006152eb89) - (property "Reference" "JP5" (at 50.8 125.4252 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "+15V" (at 50.8 127.7366 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (at 50.8 130.81 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 50.8 130.81 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Config" "DNF" (at 50.8 130.81 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "" (at 50.8 130.81 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "" (at 50.8 130.81 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 4398c5b1-bd78-4ac7-aa76-a408d72bfb0d)) - (pin "2" (uuid 3725c7c6-5c87-48f5-9dd1-b9f5346889b6)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "JP5") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Jumper:SolderJumper_2_Bridged") (at 50.8 123.19 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00006152fdf0) - (property "Reference" "JP4" (at 50.8 117.8052 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "+15V" (at 50.8 120.1166 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (at 50.8 123.19 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 50.8 123.19 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Config" "DNF" (at 50.8 123.19 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "" (at 50.8 123.19 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "" (at 50.8 123.19 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 63eb3707-5808-4ca2-a468-45b642192112)) - (pin "2" (uuid 127e8ae0-181f-4c6f-9693-967e91c2a440)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "JP4") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 59.69 113.03 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00006156d967) - (property "Reference" "#PWR0111" (at 59.69 119.38 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 59.817 117.4242 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 59.69 113.03 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 59.69 113.03 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid cd64db6f-bc3c-4c77-b8c3-22411a6dc20e)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "#PWR0111") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Jumper:SolderJumper_2_Open") (at 50.8 107.95 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00006156e035) - (property "Reference" "JP1" (at 50.8 103.251 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "GND" (at 50.8 105.5624 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm" (at 50.8 107.95 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 50.8 107.95 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Config" "DNF" (at 50.8 107.95 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 891b9f51-a382-434e-8b29-0b20f1c2c032)) - (pin "2" (uuid e739a248-d511-4679-b92e-98ad52d4151a)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "JP1") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Jumper:SolderJumper_2_Bridged") (at 49.53 170.18 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-0000615805b0) - (property "Reference" "JP14" (at 49.53 164.7952 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "-15V" (at 49.53 167.1066 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (at 49.53 170.18 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 49.53 170.18 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Config" "DNF" (at 49.53 170.18 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "" (at 49.53 170.18 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "" (at 49.53 170.18 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 185e88df-9819-475d-aabd-8abdae2993b7)) - (pin "2" (uuid 37be3fe3-5a23-4e8c-8b00-5b8e1b98a7ef)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "JP14") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Jumper:SolderJumper_2_Bridged") (at 49.53 186.69 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-000061580ef2) - (property "Reference" "JP15" (at 49.53 181.3052 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "-15V" (at 49.53 183.6166 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" (at 49.53 186.69 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 49.53 186.69 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Config" "DNF" (at 49.53 186.69 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "" (at 49.53 186.69 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "" (at 49.53 186.69 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 9b800fe7-d67d-4e3e-9554-e8909129d520)) - (pin "2" (uuid c995b93e-573e-41d8-a09c-9468e240752d)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "JP15") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Jumper:SolderJumper_2_Open") (at 49.53 177.8 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-0000615d2f6d) - (property "Reference" "JP2" (at 49.53 173.101 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "+15V" (at 49.53 175.4124 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm" (at 49.53 177.8 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 49.53 177.8 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Config" "DNF" (at 49.53 177.8 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid f8163210-6c92-4fb6-80e8-1b20a5dd7da5)) - (pin "2" (uuid 4fc49bfe-6d6d-447d-b945-90c3d4d5e8f3)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" - (reference "JP2") (unit 1) - ) - ) - ) - ) - - (sheet (at 67.31 110.49) (size 101.6 77.47) (fields_autoplaced) - (stroke (width 0) (type solid)) - (fill (color 0 0 0 0.0000)) - (uuid 00000000-0000-0000-0000-00005b053798) - (property "Sheetname" "Supply_Ref" (at 67.31 109.6514 0) - (effects (font (size 1.524 1.524)) (justify left bottom)) - ) - (property "Sheetfile" "Supply_Ref.kicad_sch" (at 67.31 188.6462 0) - (effects (font (size 1.524 1.524)) (justify left top)) - ) - (pin "-15V" input (at 67.31 170.18 180) - (effects (font (size 1.524 1.524)) (justify left)) - (uuid 52b707bf-b475-4f26-8db5-32f29b061d30) - ) - (pin "-12V" output (at 168.91 129.54 0) - (effects (font (size 1.524 1.524)) (justify right)) - (uuid 79a21f12-f5ec-4728-8b8a-6d525425a0ab) - ) - (pin "10V_ref" output (at 168.91 146.05 0) - (effects (font (size 1.524 1.524)) (justify right)) - (uuid 709dd5bc-b79c-4458-ba34-79bd6c2b8a98) - ) - (pin "SET" output (at 168.91 149.86 0) - (effects (font (size 1.524 1.524)) (justify right)) - (uuid b9a910a6-f47f-4ca0-be22-9b885abc1f2e) - ) - (pin "+15V" input (at 67.31 123.19 180) - (effects (font (size 1.524 1.524)) (justify left)) - (uuid 3172b7e8-9c43-4e51-a665-4f226d1a9b34) - ) - (pin "+12V" output (at 168.91 124.46 0) - (effects (font (size 1.524 1.524)) (justify right)) - (uuid 1e7e3f83-0dec-4861-9997-0019af564372) - ) - (pin "+5V" output (at 168.91 135.89 0) - (effects (font (size 1.524 1.524)) (justify right)) - (uuid 37090374-7b4d-487f-be8c-dde4017dab96) - ) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (page "3")) - ) - ) - ) - - (sheet (at 67.945 21.59) (size 100.965 76.835) (fields_autoplaced) - (stroke (width 0) (type solid)) - (fill (color 0 0 0 0.0000)) - (uuid 00000000-0000-0000-0000-00005b057307) - (property "Sheetname" "Input_Output_Module" (at 67.945 20.7514 0) - (effects (font (size 1.524 1.524)) (justify left bottom)) - ) - (property "Sheetfile" "Input_Output_Module.kicad_sch" (at 67.945 99.1112 0) - (effects (font (size 1.524 1.524)) (justify left top)) - ) - (pin "+12V" input (at 168.91 87.63 0) - (effects (font (size 1.524 1.524)) (justify right)) - (uuid e55124fd-ef19-4e97-80b5-f7e3c5281710) - ) - (pin "-12V" input (at 168.91 81.28 0) - (effects (font (size 1.524 1.524)) (justify right)) - (uuid 99e5aee1-54db-4f22-8bc2-bf723f436646) - ) - (pin "SET" input (at 168.91 60.96 0) - (effects (font (size 1.524 1.524)) (justify right)) - (uuid 89343407-7ac2-4763-9d4c-d7612cf615d9) - ) - (pin "+10V_ref" input (at 168.91 64.77 0) - (effects (font (size 1.524 1.524)) (justify right)) - (uuid c1f37804-3385-4b54-8305-7a46cca1bc24) - ) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" (page "2")) - ) - ) - ) - - (sheet_instances - (path "/" (page "1")) - ) +(kicad_sch + (version 20231120) + (generator "eeschema") + (generator_version "8.0") + (uuid "e63e39d7-6ac0-4ffd-8aa3-1841a4541b55") + (paper "A4") + (title_block + (title "RedPitaya Lockbox") + (date "2024-06-11") + (rev "1.6.3") + (company "Atoms-Photons-Quanta, Institut für Angewandte Physik, TU Darmstadt") + (comment 1 "Tilman Preuschoff") + ) + (lib_symbols + (symbol "Connector:DIN41612_02x32_AC" + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 1.27 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "DIN41612_02x32_AC" + (at 1.27 -43.18 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" "DIN41612 connector, double row (AC), 02x32, script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "DIN41612*2x*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "DIN41612_02x32_AC_1_1" + (rectangle + (start -1.27 -40.513) + (end 0 -40.767) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -37.973) + (end 0 -38.227) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -35.433) + (end 0 -35.687) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -32.893) + (end 0 -33.147) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -30.353) + (end 0 -30.607) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -27.813) + (end 0 -28.067) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -25.273) + (end 0 -25.527) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -22.733) + (end 0 -22.987) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -20.193) + (end 0 -20.447) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -17.653) + (end 0 -17.907) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -15.113) + (end 0 -15.367) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -12.573) + (end 0 -12.827) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -10.033) + (end 0 -10.287) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -7.493) + (end 0 -7.747) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -4.953) + (end 0 -5.207) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -2.413) + (end 0 -2.667) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 0.127) + (end 0 -0.127) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 2.667) + (end 0 2.413) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 5.207) + (end 0 4.953) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 7.747) + (end 0 7.493) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 10.287) + (end 0 10.033) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 12.827) + (end 0 12.573) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 15.367) + (end 0 15.113) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 17.907) + (end 0 17.653) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 20.447) + (end 0 20.193) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 22.987) + (end 0 22.733) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 25.527) + (end 0 25.273) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 28.067) + (end 0 27.813) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 30.607) + (end 0 30.353) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 33.147) + (end 0 32.893) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 35.687) + (end 0 35.433) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 38.227) + (end 0 37.973) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 39.37) + (end 3.81 -41.91) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (rectangle + (start 3.81 -40.513) + (end 2.54 -40.767) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 -37.973) + (end 2.54 -38.227) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 -35.433) + (end 2.54 -35.687) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 -32.893) + (end 2.54 -33.147) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 -30.353) + (end 2.54 -30.607) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 -27.813) + (end 2.54 -28.067) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 -25.273) + (end 2.54 -25.527) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 -22.733) + (end 2.54 -22.987) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 -20.193) + (end 2.54 -20.447) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 -17.653) + (end 2.54 -17.907) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 -15.113) + (end 2.54 -15.367) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 -12.573) + (end 2.54 -12.827) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 -10.033) + (end 2.54 -10.287) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 -7.493) + (end 2.54 -7.747) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 -4.953) + (end 2.54 -5.207) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 -2.413) + (end 2.54 -2.667) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 0.127) + (end 2.54 -0.127) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 2.667) + (end 2.54 2.413) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 5.207) + (end 2.54 4.953) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 7.747) + (end 2.54 7.493) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 10.287) + (end 2.54 10.033) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 12.827) + (end 2.54 12.573) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 15.367) + (end 2.54 15.113) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 17.907) + (end 2.54 17.653) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 20.447) + (end 2.54 20.193) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 22.987) + (end 2.54 22.733) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 25.527) + (end 2.54 25.273) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 28.067) + (end 2.54 27.813) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 30.607) + (end 2.54 30.353) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 33.147) + (end 2.54 32.893) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 35.687) + (end 2.54 35.433) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 38.227) + (end 2.54 37.973) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (pin passive line + (at -5.08 38.1 0) + (length 3.81) + (name "Pin_a1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "a1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 15.24 0) + (length 3.81) + (name "Pin_a10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "a10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 12.7 0) + (length 3.81) + (name "Pin_a11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "a11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 10.16 0) + (length 3.81) + (name "Pin_a12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "a12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 7.62 0) + (length 3.81) + (name "Pin_a13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "a13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 5.08 0) + (length 3.81) + (name "Pin_a14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "a14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 2.54 0) + (length 3.81) + (name "Pin_a15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "a15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 0 0) + (length 3.81) + (name "Pin_a16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "a16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -2.54 0) + (length 3.81) + (name "Pin_a17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "a17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -5.08 0) + (length 3.81) + (name "Pin_a18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "a18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -7.62 0) + (length 3.81) + (name "Pin_a19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "a19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 35.56 0) + (length 3.81) + (name "Pin_a2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "a2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -10.16 0) + (length 3.81) + (name "Pin_a20" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "a20" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -12.7 0) + (length 3.81) + (name "Pin_a21" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "a21" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -15.24 0) + (length 3.81) + (name "Pin_a22" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "a22" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -17.78 0) + (length 3.81) + (name "Pin_a23" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "a23" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -20.32 0) + (length 3.81) + (name "Pin_a24" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "a24" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -22.86 0) + (length 3.81) + (name "Pin_a25" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "a25" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -25.4 0) + (length 3.81) + (name "Pin_a26" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "a26" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -27.94 0) + (length 3.81) + (name "Pin_a27" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "a27" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -30.48 0) + (length 3.81) + (name "Pin_a28" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "a28" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -33.02 0) + (length 3.81) + (name "Pin_a29" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "a29" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 33.02 0) + (length 3.81) + (name "Pin_a3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "a3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -35.56 0) + (length 3.81) + (name "Pin_a30" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "a30" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -38.1 0) + (length 3.81) + (name "Pin_a31" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "a31" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -40.64 0) + (length 3.81) + (name "Pin_a32" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "a32" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 30.48 0) + (length 3.81) + (name "Pin_a4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "a4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 27.94 0) + (length 3.81) + (name "Pin_a5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "a5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 25.4 0) + (length 3.81) + (name "Pin_a6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "a6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 22.86 0) + (length 3.81) + (name "Pin_a7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "a7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 20.32 0) + (length 3.81) + (name "Pin_a8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "a8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 17.78 0) + (length 3.81) + (name "Pin_a9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "a9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 38.1 180) + (length 3.81) + (name "Pin_c1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "c1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 15.24 180) + (length 3.81) + (name "Pin_c10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "c10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 12.7 180) + (length 3.81) + (name "Pin_c11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "c11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 10.16 180) + (length 3.81) + (name "Pin_c12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "c12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 7.62 180) + (length 3.81) + (name "Pin_c13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "c13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 5.08 180) + (length 3.81) + (name "Pin_c14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "c14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 2.54 180) + (length 3.81) + (name "Pin_c15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "c15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 0 180) + (length 3.81) + (name "Pin_c16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "c16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -2.54 180) + (length 3.81) + (name "Pin_c17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "c17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -5.08 180) + (length 3.81) + (name "Pin_c18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "c18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -7.62 180) + (length 3.81) + (name "Pin_c19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "c19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 35.56 180) + (length 3.81) + (name "Pin_c2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "c2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -10.16 180) + (length 3.81) + (name "Pin_c20" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "c20" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -12.7 180) + (length 3.81) + (name "Pin_c21" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "c21" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -15.24 180) + (length 3.81) + (name "Pin_c22" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "c22" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -17.78 180) + (length 3.81) + (name "Pin_c23" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "c23" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -20.32 180) + (length 3.81) + (name "Pin_c24" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "c24" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -22.86 180) + (length 3.81) + (name "Pin_c25" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "c25" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -25.4 180) + (length 3.81) + (name "Pin_c26" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "c26" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -27.94 180) + (length 3.81) + (name "Pin_c27" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "c27" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -30.48 180) + (length 3.81) + (name "Pin_c28" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "c28" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -33.02 180) + (length 3.81) + (name "Pin_c29" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "c29" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 33.02 180) + (length 3.81) + (name "Pin_c3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "c3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -35.56 180) + (length 3.81) + (name "Pin_c30" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "c30" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -38.1 180) + (length 3.81) + (name "Pin_c31" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "c31" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -40.64 180) + (length 3.81) + (name "Pin_c32" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "c32" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 30.48 180) + (length 3.81) + (name "Pin_c4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "c4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 27.94 180) + (length 3.81) + (name "Pin_c5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "c5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 25.4 180) + (length 3.81) + (name "Pin_c6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "c6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 22.86 180) + (length 3.81) + (name "Pin_c7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "c7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 20.32 180) + (length 3.81) + (name "Pin_c8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "c8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 17.78 180) + (length 3.81) + (name "Pin_c9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "c9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Custom_logos:Logo_APQ" + (pin_names + (offset 1.016) + ) + (exclude_from_sim no) + (in_bom no) + (on_board yes) + (property "Reference" "#LOGO" + (at 6.35 6.985 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "Logo_APQ" + (at 6.35 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 7.62 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 7.62 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Atoms - Photons - Quanta" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Enable" "0" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "Logo" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Logo_APQ_0_0" + (text "APQ" + (at 17.78 0 0) + (effects + (font + (size 3.81 3.81) + (bold yes) + ) + ) + ) + ) + (symbol "Logo_APQ_0_1" + (circle + (center 5.08 0) + (radius 0.635) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center 5.08 2.54) + (radius 0.635) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center 7.62 0) + (radius 0.635) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center 7.62 2.54) + (radius 0.635) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center 10.16 2.54) + (radius 0.635) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + ) + (symbol "Logo_APQ_1_1" + (circle + (center 5.08 -2.54) + (radius 0.635) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center 7.62 -2.54) + (radius 0.635) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center 10.16 -2.54) + (radius 0.635) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center 10.16 0) + (radius 0.635) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + ) + ) + (symbol "Custom_logos:Logo_RoHS" + (pin_names + (offset 1.016) + ) + (exclude_from_sim no) + (in_bom no) + (on_board yes) + (property "Reference" "#LOGO" + (at 6.35 6.985 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "Logo_RoHS" + (at 6.35 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "" + (at 7.62 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 7.62 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "RoHS logo, small" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Enable" "0" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "Logo" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Logo_RoHS_1_0" + (text "RoHS" + (at 13.335 0 0) + (effects + (font + (size 3.81 3.81) + (bold yes) + ) + ) + ) + ) + ) + (symbol "Graphic:Logo_Open_Hardware_Small" + (exclude_from_sim no) + (in_bom no) + (on_board no) + (property "Reference" "#SYM" + (at 0 6.985 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "Logo_Open_Hardware_Small" + (at 0 -5.715 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (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" "Open Hardware logo, small" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Enable" "0" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "Logo" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Logo_Open_Hardware_Small_0_1" + (polyline + (pts + (xy 3.3528 -4.3434) (xy 3.302 -4.318) (xy 3.175 -4.2418) (xy 2.9972 -4.1148) (xy 2.7686 -3.9624) + (xy 2.54 -3.81) (xy 2.3622 -3.7084) (xy 2.2352 -3.6068) (xy 2.1844 -3.5814) (xy 2.159 -3.6068) + (xy 2.0574 -3.6576) (xy 1.905 -3.7338) (xy 1.8034 -3.7846) (xy 1.6764 -3.8354) (xy 1.6002 -3.8354) + (xy 1.6002 -3.8354) (xy 1.5494 -3.7338) (xy 1.4732 -3.5306) (xy 1.3462 -3.302) (xy 1.2446 -3.0226) + (xy 1.1176 -2.7178) (xy 0.9652 -2.413) (xy 0.8636 -2.1082) (xy 0.7366 -1.8288) (xy 0.6604 -1.6256) + (xy 0.6096 -1.4732) (xy 0.5842 -1.397) (xy 0.5842 -1.397) (xy 0.6604 -1.3208) (xy 0.7874 -1.2446) + (xy 1.0414 -1.016) (xy 1.2954 -0.6858) (xy 1.4478 -0.3302) (xy 1.524 0.0762) (xy 1.4732 0.4572) + (xy 1.3208 0.8128) (xy 1.0668 1.143) (xy 0.762 1.3716) (xy 0.4064 1.524) (xy 0 1.5748) (xy -0.381 1.5494) + (xy -0.7366 1.397) (xy -1.0668 1.143) (xy -1.2192 0.9906) (xy -1.397 0.6604) (xy -1.524 0.3048) + (xy -1.524 0.2286) (xy -1.4986 -0.1778) (xy -1.397 -0.5334) (xy -1.1938 -0.8636) (xy -0.9144 -1.143) + (xy -0.8636 -1.1684) (xy -0.7366 -1.27) (xy -0.635 -1.3462) (xy -0.5842 -1.397) (xy -1.0668 -2.5908) + (xy -1.143 -2.794) (xy -1.2954 -3.1242) (xy -1.397 -3.4036) (xy -1.4986 -3.6322) (xy -1.5748 -3.7846) + (xy -1.6002 -3.8354) (xy -1.6002 -3.8354) (xy -1.651 -3.8354) (xy -1.7272 -3.81) (xy -1.905 -3.7338) + (xy -2.0066 -3.683) (xy -2.1336 -3.6068) (xy -2.2098 -3.5814) (xy -2.2606 -3.6068) (xy -2.3622 -3.683) + (xy -2.54 -3.81) (xy -2.7686 -3.9624) (xy -2.9718 -4.0894) (xy -3.1496 -4.2164) (xy -3.302 -4.318) + (xy -3.3528 -4.3434) (xy -3.3782 -4.3434) (xy -3.429 -4.318) (xy -3.5306 -4.2164) (xy -3.7084 -4.064) + (xy -3.937 -3.8354) (xy -3.9624 -3.81) (xy -4.1656 -3.6068) (xy -4.318 -3.4544) (xy -4.4196 -3.3274) + (xy -4.445 -3.2766) (xy -4.445 -3.2766) (xy -4.4196 -3.2258) (xy -4.318 -3.0734) (xy -4.2164 -2.8956) + (xy -4.064 -2.667) (xy -3.6576 -2.0828) (xy -3.8862 -1.5494) (xy -3.937 -1.3716) (xy -4.0386 -1.1684) + (xy -4.0894 -1.0414) (xy -4.1148 -0.9652) (xy -4.191 -0.9398) (xy -4.318 -0.9144) (xy -4.5466 -0.8636) + (xy -4.8006 -0.8128) (xy -5.0546 -0.7874) (xy -5.2578 -0.7366) (xy -5.4356 -0.7112) (xy -5.5118 -0.6858) + (xy -5.5118 -0.6858) (xy -5.5372 -0.635) (xy -5.5372 -0.5588) (xy -5.5372 -0.4318) (xy -5.5626 -0.2286) + (xy -5.5626 0.0762) (xy -5.5626 0.127) (xy -5.5372 0.4064) (xy -5.5372 0.635) (xy -5.5372 0.762) + (xy -5.5372 0.8382) (xy -5.5372 0.8382) (xy -5.461 0.8382) (xy -5.3086 0.889) (xy -5.08 0.9144) + (xy -4.826 0.9652) (xy -4.8006 0.9906) (xy -4.5466 1.0414) (xy -4.318 1.0668) (xy -4.1656 1.1176) + (xy -4.0894 1.143) (xy -4.0894 1.143) (xy -4.0386 1.2446) (xy -3.9624 1.4224) (xy -3.8608 1.6256) + (xy -3.7846 1.8288) (xy -3.7084 2.0066) (xy -3.6576 2.159) (xy -3.6322 2.2098) (xy -3.6322 2.2098) + (xy -3.683 2.286) (xy -3.7592 2.413) (xy -3.8862 2.5908) (xy -4.064 2.8194) (xy -4.064 2.8448) + (xy -4.2164 3.0734) (xy -4.3434 3.2512) (xy -4.4196 3.3782) (xy -4.445 3.4544) (xy -4.445 3.4544) + (xy -4.3942 3.5052) (xy -4.2926 3.6322) (xy -4.1148 3.81) (xy -3.937 4.0132) (xy -3.8608 4.064) + (xy -3.6576 4.2926) (xy -3.5052 4.4196) (xy -3.4036 4.4958) (xy -3.3528 4.5212) (xy -3.3528 4.5212) + (xy -3.302 4.4704) (xy -3.1496 4.3688) (xy -2.9718 4.2418) (xy -2.7432 4.0894) (xy -2.7178 4.0894) + (xy -2.4892 3.937) (xy -2.3114 3.81) (xy -2.1844 3.7084) (xy -2.1336 3.683) (xy -2.1082 3.683) + (xy -2.032 3.7084) (xy -1.8542 3.7592) (xy -1.6764 3.8354) (xy -1.4732 3.937) (xy -1.27 4.0132) + (xy -1.143 4.064) (xy -1.0668 4.1148) (xy -1.0668 4.1148) (xy -1.0414 4.191) (xy -1.016 4.3434) + (xy -0.9652 4.572) (xy -0.9144 4.8514) (xy -0.889 4.9022) (xy -0.8382 5.1562) (xy -0.8128 5.3848) + (xy -0.7874 5.5372) (xy -0.762 5.588) (xy -0.7112 5.6134) (xy -0.5842 5.6134) (xy -0.4064 5.6134) + (xy -0.1524 5.6134) (xy 0.0762 5.6134) (xy 0.3302 5.6134) (xy 0.5334 5.6134) (xy 0.6858 5.588) + (xy 0.7366 5.588) (xy 0.7366 5.588) (xy 0.762 5.5118) (xy 0.8128 5.334) (xy 0.8382 5.1054) (xy 0.9144 4.826) + (xy 0.9144 4.7752) (xy 0.9652 4.5212) (xy 1.016 4.2926) (xy 1.0414 4.1402) (xy 1.0668 4.0894) + (xy 1.0668 4.0894) (xy 1.1938 4.0386) (xy 1.3716 3.9624) (xy 1.5748 3.8608) (xy 2.0828 3.6576) + (xy 2.7178 4.0894) (xy 2.7686 4.1402) (xy 2.9972 4.2926) (xy 3.175 4.4196) (xy 3.302 4.4958) (xy 3.3782 4.5212) + (xy 3.3782 4.5212) (xy 3.429 4.4704) (xy 3.556 4.3434) (xy 3.7338 4.191) (xy 3.9116 3.9878) (xy 4.064 3.8354) + (xy 4.2418 3.6576) (xy 4.3434 3.556) (xy 4.4196 3.4798) (xy 4.4196 3.429) (xy 4.4196 3.4036) (xy 4.3942 3.3274) + (xy 4.2926 3.2004) (xy 4.1656 2.9972) (xy 4.0132 2.794) (xy 3.8862 2.5908) (xy 3.7592 2.3876) + (xy 3.6576 2.2352) (xy 3.6322 2.159) (xy 3.6322 2.1336) (xy 3.683 2.0066) (xy 3.7592 1.8288) (xy 3.8608 1.6002) + (xy 4.064 1.1176) (xy 4.3942 1.0414) (xy 4.5974 1.016) (xy 4.8768 0.9652) (xy 5.1308 0.9144) (xy 5.5372 0.8382) + (xy 5.5626 -0.6604) (xy 5.4864 -0.6858) (xy 5.4356 -0.6858) (xy 5.2832 -0.7366) (xy 5.0546 -0.762) + (xy 4.8006 -0.8128) (xy 4.5974 -0.8636) (xy 4.3688 -0.9144) (xy 4.2164 -0.9398) (xy 4.1402 -0.9398) + (xy 4.1148 -0.9652) (xy 4.064 -1.0668) (xy 3.9878 -1.2446) (xy 3.9116 -1.4478) (xy 3.81 -1.651) + (xy 3.7338 -1.8542) (xy 3.683 -2.0066) (xy 3.6576 -2.0828) (xy 3.683 -2.1336) (xy 3.7846 -2.2606) + (xy 3.8862 -2.4638) (xy 4.0386 -2.667) (xy 4.191 -2.8956) (xy 4.318 -3.0734) (xy 4.3942 -3.2004) + (xy 4.445 -3.2766) (xy 4.4196 -3.3274) (xy 4.3434 -3.429) (xy 4.1656 -3.5814) (xy 3.937 -3.8354) + (xy 3.8862 -3.8608) (xy 3.683 -4.064) (xy 3.5306 -4.2164) (xy 3.4036 -4.318) (xy 3.3528 -4.3434) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + ) + ) + (symbol "Jumper:SolderJumper_2_Bridged" + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim yes) + (in_bom no) + (on_board yes) + (property "Reference" "JP" + (at 0 2.032 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "SolderJumper_2_Bridged" + (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" "Solder Jumper, 2-pole, closed/bridged" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "solder jumper SPST" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "SolderJumper*Bridged*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "SolderJumper_2_Bridged_0_1" + (rectangle + (start -0.508 0.508) + (end 0.508 -0.508) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (arc + (start -0.254 1.016) + (mid -1.2656 0) + (end -0.254 -1.016) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -0.254 1.016) + (mid -1.2656 0) + (end -0.254 -1.016) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy -0.254 1.016) (xy -0.254 -1.016) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.254 1.016) (xy 0.254 -1.016) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0.254 -1.016) + (mid 1.2656 0) + (end 0.254 1.016) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0.254 -1.016) + (mid 1.2656 0) + (end 0.254 1.016) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + ) + (symbol "SolderJumper_2_Bridged_1_1" + (pin passive line + (at -3.81 0 0) + (length 2.54) + (name "A" + (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 "B" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Jumper:SolderJumper_2_Open" + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim yes) + (in_bom no) + (on_board yes) + (property "Reference" "JP" + (at 0 2.032 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "SolderJumper_2_Open" + (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" "Solder Jumper, 2-pole, open" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "solder jumper SPST" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "SolderJumper*Open*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "SolderJumper_2_Open_0_1" + (arc + (start -0.254 1.016) + (mid -1.2656 0) + (end -0.254 -1.016) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -0.254 1.016) + (mid -1.2656 0) + (end -0.254 -1.016) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy -0.254 1.016) (xy -0.254 -1.016) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.254 1.016) (xy 0.254 -1.016) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0.254 -1.016) + (mid 1.2656 0) + (end 0.254 1.016) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0.254 -1.016) + (mid 1.2656 0) + (end 0.254 1.016) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + ) + (symbol "SolderJumper_2_Open_1_1" + (pin passive line + (at -3.81 0 0) + (length 2.54) + (name "A" + (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 "B" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Mechanical:MountingHole" + (pin_names + (offset 1.016) + ) + (exclude_from_sim yes) + (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) + ) + ) + ) + ) + (symbol "RedPitaya:RedPitaya_125-14" + (pin_names + (offset 1.524) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "RP" + (at 1.27 34.29 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "RedPitaya_125-14" + (at 12.7 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" "StemLab RedPitaya 14bit" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "RedPitaya_125-14_0_0" + (text "E2" + (at 6.35 34.29 0) + (effects + (font + (size 1.524 1.524) + ) + ) + ) + ) + (symbol "RedPitaya_125-14_0_1" + (rectangle + (start -1.27 -31.623) + (end 0.254 -31.877) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -29.083) + (end 0.254 -29.337) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -26.543) + (end 0.254 -26.797) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -24.003) + (end 0.254 -24.257) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -21.463) + (end 0.254 -21.717) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -18.923) + (end 0.254 -19.177) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -16.383) + (end 0.254 -16.637) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -13.843) + (end 0.254 -14.097) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -11.303) + (end 0.254 -11.557) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -8.763) + (end 0.254 -9.017) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -6.223) + (end 0.254 -6.477) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -3.683) + (end 0.254 -3.937) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -1.143) + (end 0.254 -1.397) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 1.397) + (end 0.254 1.143) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 3.937) + (end 0.254 3.683) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 6.477) + (end 0.254 6.223) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 9.017) + (end 0.254 8.763) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 11.557) + (end 0.254 11.303) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 14.097) + (end 0.254 13.843) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 16.637) + (end 0.254 16.383) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 19.177) + (end 0.254 18.923) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 21.717) + (end 0.254 21.463) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 24.257) + (end 0.254 24.003) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 26.797) + (end 0.254 26.543) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 29.337) + (end 0.254 29.083) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 31.877) + (end 0.254 31.623) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "RedPitaya_125-14_1_1" + (rectangle + (start -1.27 33.02) + (end 10.16 -33.02) + (stroke + (width 0) + (type default) + ) + (fill + (type background) + ) + ) + (pin input line + (at -5.08 31.75 0) + (length 3.81) + (name "+5V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 8.89 0) + (length 3.81) + (name "I2C0_SDA" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 6.35 0) + (length 3.81) + (name "Ext_CM" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 3.81 0) + (length 3.81) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 1.27 0) + (length 3.81) + (name "AI_0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -1.27 0) + (length 3.81) + (name "AI_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -3.81 0) + (length 3.81) + (name "AI_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -6.35 0) + (length 3.81) + (name "AI_3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -8.89 0) + (length 3.81) + (name "AO_0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -11.43 0) + (length 3.81) + (name "AO_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -13.97 0) + (length 3.81) + (name "AO_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 29.21 0) + (length 3.81) + (name "-3.3V" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -16.51 0) + (length 3.81) + (name "AO_3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "20" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -19.05 0) + (length 3.81) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "21" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -21.59 0) + (length 3.81) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "22" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -24.13 0) + (length 3.81) + (name "CLK+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "23" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -26.67 0) + (length 3.81) + (name "CLK-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "24" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -29.21 0) + (length 3.81) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "25" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -31.75 0) + (length 3.81) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "26" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 26.67 0) + (length 3.81) + (name "PS_MIO10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 24.13 0) + (length 3.81) + (name "PS_MIO11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 21.59 0) + (length 3.81) + (name "PS_MIO12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 19.05 0) + (length 3.81) + (name "PS_MIO13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 16.51 0) + (length 3.81) + (name "PS_MIO08" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 13.97 0) + (length 3.81) + (name "PS_MIO09" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 11.43 0) + (length 3.81) + (name "I2C0_SCL" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "power:GND" + (power) + (pin_numbers hide) + (pin_names + (offset 0) hide) + (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) + ) + ) + ) + ) + ) + ) + (symbol "power:PWR_FLAG" + (power) + (pin_numbers hide) + (pin_names + (offset 0) hide) + (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" "Special symbol for telling ERC where power comes from" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "flag power" + (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 "~" + (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) + ) + ) + ) + ) + ) + (junction + (at 248.92 90.17) + (diameter 0) + (color 0 0 0 0) + (uuid "02165243-61a3-4857-84ba-71a77cb9a387") + ) + (junction + (at 54.61 130.81) + (diameter 0) + (color 0 0 0 0) + (uuid "16ded395-a862-4198-b3af-ba8c7fb298bb") + ) + (junction + (at 16.51 158.75) + (diameter 0) + (color 0 0 0 0) + (uuid "21e62af1-0e88-492e-987e-9d753a625af5") + ) + (junction + (at 16.51 143.51) + (diameter 0) + (color 0 0 0 0) + (uuid "23e66461-bcf2-4335-93c2-5c91dfd00187") + ) + (junction + (at 41.91 184.15) + (diameter 0) + (color 0 0 0 0) + (uuid "35fdc1fc-7f14-4878-95b5-04577aac5dee") + ) + (junction + (at 16.51 128.27) + (diameter 0) + (color 0 0 0 0) + (uuid "3934cdea-42c8-4ab1-b1be-2c4978ab08ae") + ) + (junction + (at 54.61 186.69) + (diameter 0) + (color 0 0 0 0) + (uuid "6409c081-55e6-45e9-87cb-465a8b85bf58") + ) + (junction + (at 29.21 181.61) + (diameter 0) + (color 0 0 0 0) + (uuid "77d1b613-3410-472a-89ae-d3fd04062053") + ) + (junction + (at 16.51 151.13) + (diameter 0) + (color 0 0 0 0) + (uuid "78df5e95-dea7-4ed8-b25a-24054b0e2a34") + ) + (junction + (at 44.45 177.8) + (diameter 0) + (color 0 0 0 0) + (uuid "7a4860bd-1138-4b42-b6c7-c77441fd50d4") + ) + (junction + (at 248.92 92.71) + (diameter 0) + (color 0 0 0 0) + (uuid "825c70b0-4860-42b7-97dc-86bfa46e06fd") + ) + (junction + (at 16.51 166.37) + (diameter 0) + (color 0 0 0 0) + (uuid "83b33358-9fd0-4f63-8aea-176ee85421b2") + ) + (junction + (at 60.96 123.19) + (diameter 0) + (color 0 0 0 0) + (uuid "86429512-34f4-4bec-95a6-ad24fb06d586") + ) + (junction + (at 41.91 107.95) + (diameter 0) + (color 0 0 0 0) + (uuid "8c25f3b3-0669-4d41-abe9-efe0c109bce3") + ) + (junction + (at 54.61 123.19) + (diameter 0) + (color 0 0 0 0) + (uuid "975b065a-4fee-4d11-9f2f-b1d40a3629cb") + ) + (junction + (at 16.51 180.34) + (diameter 0) + (color 0 0 0 0) + (uuid "99030c03-63b4-49ba-b5ab-4d56974f7963") + ) + (junction + (at 45.72 107.95) + (diameter 0) + (color 0 0 0 0) + (uuid "9ab63ac1-3ab3-4c51-bd38-9407d96c09bc") + ) + (junction + (at 248.92 82.55) + (diameter 0) + (color 0 0 0 0) + (uuid "9ff4672a-e1a4-4a1e-887d-1b9a3429d278") + ) + (junction + (at 54.61 170.18) + (diameter 0) + (color 0 0 0 0) + (uuid "ab8c3434-03fb-4d30-8c85-107f753db063") + ) + (junction + (at 41.91 186.69) + (diameter 0) + (color 0 0 0 0) + (uuid "bafd7f99-3f0e-43b2-aac3-bdb478eeb5ad") + ) + (junction + (at 16.51 135.89) + (diameter 0) + (color 0 0 0 0) + (uuid "d0dfd7c1-401d-4f64-8463-f4c0813ac28f") + ) + (junction + (at 16.51 173.99) + (diameter 0) + (color 0 0 0 0) + (uuid "e4b8e84c-88a3-4795-9a55-9de16f08e886") + ) + (no_connect + (at 251.46 52.07) + (uuid "0d35483a-0b12-46cc-b9f2-896fd6831779") + ) + (no_connect + (at 251.46 77.47) + (uuid "2bf3f24b-fd30-41a7-a274-9b519491916b") + ) + (no_connect + (at 251.46 67.31) + (uuid "34871042-9d5c-4e29-abdd-a168368c3c22") + ) + (no_connect + (at 251.46 59.69) + (uuid "4412226e-d975-40a2-921f-502ff4129a95") + ) + (no_connect + (at 251.46 85.09) + (uuid "4831966c-bb32-4bc8-a400-0382a02ffa1c") + ) + (no_connect + (at 251.46 54.61) + (uuid "4e66a44f-7fa6-4e16-bf9b-62ec864301a5") + ) + (no_connect + (at 251.46 64.77) + (uuid "53c85970-3e21-4fae-a84f-721cfc0513b5") + ) + (no_connect + (at 251.46 41.91) + (uuid "55992e35-fe7b-468a-9b7a-1e4dc931b904") + ) + (no_connect + (at 251.46 34.29) + (uuid "5740c959-93d8-47fd-8f68-62f0109e753d") + ) + (no_connect + (at 41.91 113.03) + (uuid "60001d66-7d17-42f4-a81f-e8d50335f922") + ) + (no_connect + (at 29.21 113.03) + (uuid "60001d66-7d17-42f4-a81f-e8d50335f923") + ) + (no_connect + (at 251.46 62.23) + (uuid "7447a6e7-8205-46ba-afca-d0fa8f90c95a") + ) + (no_connect + (at 251.46 49.53) + (uuid "9702d639-3b1f-4825-8985-b32b9008503d") + ) + (no_connect + (at 251.46 44.45) + (uuid "a06e8e78-f567-42e6-b645-013b1073ca31") + ) + (no_connect + (at 251.46 72.39) + (uuid "a9ec539a-d80d-40cc-803c-12b6adefe42a") + ) + (no_connect + (at 251.46 31.75) + (uuid "b6bcc3cf-50de-4a33-bc41-678825c1ecf2") + ) + (no_connect + (at 251.46 74.93) + (uuid "c264c438-a475-4ad4-9915-0f1e6ecf3053") + ) + (no_connect + (at 251.46 36.83) + (uuid "c3c93de0-69b1-4a04-8e0b-d78caf487c63") + ) + (no_connect + (at 251.46 87.63) + (uuid "e25ce415-914a-48fe-bf09-324317917b2e") + ) + (no_connect + (at 251.46 46.99) + (uuid "ec9e24d8-d1c5-40e2-9812-dc315d05f470") + ) + (no_connect + (at 251.46 69.85) + (uuid "ef1b4b98-541b-4673-a04f-2043250fc40a") + ) + (no_connect + (at 251.46 39.37) + (uuid "f9865a9f-edb8-49c7-828f-4896e1f3047a") + ) + (no_connect + (at 29.21 130.81) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474b1") + ) + (no_connect + (at 29.21 128.27) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474b2") + ) + (no_connect + (at 41.91 166.37) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474b3") + ) + (no_connect + (at 41.91 163.83) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474b4") + ) + (no_connect + (at 41.91 161.29) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474b5") + ) + (no_connect + (at 41.91 158.75) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474b6") + ) + (no_connect + (at 41.91 156.21) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474b7") + ) + (no_connect + (at 29.21 173.99) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474b8") + ) + (no_connect + (at 29.21 168.91) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474b9") + ) + (no_connect + (at 29.21 171.45) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474ba") + ) + (no_connect + (at 29.21 156.21) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474bb") + ) + (no_connect + (at 29.21 161.29) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474bc") + ) + (no_connect + (at 29.21 153.67) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474bd") + ) + (no_connect + (at 29.21 166.37) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474be") + ) + (no_connect + (at 29.21 158.75) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474bf") + ) + (no_connect + (at 29.21 163.83) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474c0") + ) + (no_connect + (at 41.91 138.43) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474c1") + ) + (no_connect + (at 41.91 135.89) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474c2") + ) + (no_connect + (at 41.91 140.97) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474c3") + ) + (no_connect + (at 41.91 125.73) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474c4") + ) + (no_connect + (at 41.91 123.19) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474c5") + ) + (no_connect + (at 41.91 128.27) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474c6") + ) + (no_connect + (at 41.91 133.35) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474c7") + ) + (no_connect + (at 41.91 130.81) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474c8") + ) + (no_connect + (at 29.21 140.97) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474c9") + ) + (no_connect + (at 29.21 138.43) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474ca") + ) + (no_connect + (at 41.91 176.53) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474cb") + ) + (no_connect + (at 41.91 173.99) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474cc") + ) + (no_connect + (at 41.91 171.45) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474cd") + ) + (no_connect + (at 41.91 168.91) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474ce") + ) + (no_connect + (at 41.91 179.07) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474cf") + ) + (no_connect + (at 41.91 153.67) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474d0") + ) + (no_connect + (at 29.21 133.35) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474d1") + ) + (no_connect + (at 29.21 179.07) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474d2") + ) + (no_connect + (at 29.21 176.53) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474d3") + ) + (no_connect + (at 29.21 135.89) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474d4") + ) + (no_connect + (at 29.21 118.11) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474d5") + ) + (no_connect + (at 41.91 118.11) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474d6") + ) + (no_connect + (at 41.91 120.65) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474d7") + ) + (no_connect + (at 29.21 125.73) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474d8") + ) + (no_connect + (at 29.21 120.65) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474d9") + ) + (no_connect + (at 29.21 123.19) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474da") + ) + (no_connect + (at 29.21 115.57) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474db") + ) + (no_connect + (at 41.91 115.57) + (uuid "fdb96369-82c9-4d10-912e-0c8fc5d474dc") + ) + (wire + (pts + (xy 54.61 115.57) (xy 54.61 123.19) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0147f16a-c952-4891-8f53-a9fb8cddeb8d") + ) + (wire + (pts + (xy 24.13 166.37) (xy 26.67 166.37) + ) + (stroke + (width 0) + (type default) + ) + (uuid "02b9b31b-cd71-48f4-a171-9994b70c1b21") + ) + (wire + (pts + (xy 181.61 64.77) (xy 168.91 64.77) + ) + (stroke + (width 0) + (type default) + ) + (uuid "04c953e5-c101-4fa9-9f14-b581e539207c") + ) + (wire + (pts + (xy 44.45 110.49) (xy 44.45 123.19) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0666d438-e9ba-49ce-a5d1-d1585e224c70") + ) + (wire + (pts + (xy 168.91 149.86) (xy 187.96 149.86) + ) + (stroke + (width 0) + (type default) + ) + (uuid "069fec15-00a7-413f-a6d2-a8fce06850cc") + ) + (wire + (pts + (xy 168.91 60.96) (xy 187.96 60.96) + ) + (stroke + (width 0) + (type default) + ) + (uuid "094231a5-0cb5-42b6-836a-b568ca561e2e") + ) + (wire + (pts + (xy 43.18 111.76) (xy 43.18 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0afc1685-e229-45a5-a6a9-ad99e3a02027") + ) + (wire + (pts + (xy 54.61 130.81) (xy 54.61 133.35) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0d0bb7b2-a6e5-46d2-9492-a1aa6e5a7b2f") + ) + (wire + (pts + (xy 44.45 170.18) (xy 44.45 177.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "120a7b0f-ddfd-4447-85c1-35665465acdb") + ) + (wire + (pts + (xy 177.8 81.28) (xy 168.91 81.28) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1451cd39-cd4d-4869-bbcd-17438f614585") + ) + (wire + (pts + (xy 25.4 144.78) (xy 25.4 135.89) + ) + (stroke + (width 0) + (type default) + ) + (uuid "16b58b11-d827-4372-acd0-54d9f2084bf6") + ) + (wire + (pts + (xy 187.96 149.86) (xy 187.96 60.96) + ) + (stroke + (width 0) + (type default) + ) + (uuid "180e9b3a-ce3b-474f-bcb4-8360322786bb") + ) + (wire + (pts + (xy 27.94 120.65) (xy 24.13 120.65) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1901ff64-3423-49fe-ba40-fa265c9ebadc") + ) + (wire + (pts + (xy 41.91 107.95) (xy 45.72 107.95) + ) + (stroke + (width 0) + (type default) + ) + (uuid "19a26cd4-b92e-4772-8680-ac5db1185a4e") + ) + (wire + (pts + (xy 60.96 123.19) (xy 67.31 123.19) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1e26114e-303b-43ae-baf6-cf8c2cebe731") + ) + (wire + (pts + (xy 16.51 180.34) (xy 16.51 184.15) + ) + (stroke + (width 0) + (type default) + ) + (uuid "23bb2798-d93a-4696-a962-c305c4298a0c") + ) + (wire + (pts + (xy 24.13 158.75) (xy 25.4 158.75) + ) + (stroke + (width 0) + (type default) + ) + (uuid "24b08d8c-0572-4f15-ae42-424a272a58a7") + ) + (wire + (pts + (xy 45.72 115.57) (xy 46.99 115.57) + ) + (stroke + (width 0) + (type default) + ) + (uuid "272e2905-cf51-4bcb-84ba-442555a9d71f") + ) + (wire + (pts + (xy 16.51 158.75) (xy 16.51 166.37) + ) + (stroke + (width 0) + (type default) + ) + (uuid "27ce1dc8-82cc-4deb-9ce9-7bf321beeb7c") + ) + (wire + (pts + (xy 45.72 170.18) (xy 44.45 170.18) + ) + (stroke + (width 0) + (type default) + ) + (uuid "29a3882d-fbe7-4548-b3d4-dda7f3319280") + ) + (wire + (pts + (xy 29.21 143.51) (xy 26.67 143.51) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2e9403c1-bc0d-41a6-80ba-0e92c5977266") + ) + (wire + (pts + (xy 16.51 166.37) (xy 16.51 173.99) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2e9c8204-4ddf-4190-9d2c-510f3181e054") + ) + (wire + (pts + (xy 53.34 177.8) (xy 60.96 177.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "31514da1-28e7-4759-a18f-ce41360f32a8") + ) + (wire + (pts + (xy 29.21 181.61) (xy 26.67 181.61) + ) + (stroke + (width 0) + (type default) + ) + (uuid "316e2c83-28ec-4fc6-817c-c0771121fdc4") + ) + (wire + (pts + (xy 16.51 128.27) (xy 16.51 135.89) + ) + (stroke + (width 0) + (type default) + ) + (uuid "32667662-ae86-4904-b198-3e95f11851bf") + ) + (wire + (pts + (xy 24.13 173.99) (xy 27.94 173.99) + ) + (stroke + (width 0) + (type default) + ) + (uuid "366adcdd-6753-429e-96a6-7b3bff5d839f") + ) + (wire + (pts + (xy 24.13 146.05) (xy 24.13 143.51) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3b91beab-581c-469e-af99-babab0ea70f4") + ) + (wire + (pts + (xy 54.61 123.19) (xy 60.96 123.19) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3dcc657b-55a1-48e0-9667-e01e7b6b08b5") + ) + (wire + (pts + (xy 29.21 107.95) (xy 41.91 107.95) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3dd56af0-3873-4033-9f00-3f3056ebcb44") + ) + (wire + (pts + (xy 248.92 90.17) (xy 248.92 92.71) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3f5fe6b7-98fc-4d3e-9567-f9f7202d1455") + ) + (wire + (pts + (xy 44.45 177.8) (xy 44.45 184.15) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4012c7d3-138e-4fc2-8e51-ff4cd8fa0c0c") + ) + (wire + (pts + (xy 181.61 146.05) (xy 181.61 64.77) + ) + (stroke + (width 0) + (type default) + ) + (uuid "407d8d88-9586-4148-8460-b766ce9bb253") + ) + (wire + (pts + (xy 24.13 148.59) (xy 24.13 151.13) + ) + (stroke + (width 0) + (type default) + ) + (uuid "44c6d339-5129-4890-b712-a38d55c5bb49") + ) + (wire + (pts + (xy 41.91 184.15) (xy 44.45 184.15) + ) + (stroke + (width 0) + (type default) + ) + (uuid "464366d3-00ad-4b31-95c4-f3a103cc531a") + ) + (wire + (pts + (xy 16.51 173.99) (xy 16.51 180.34) + ) + (stroke + (width 0) + (type default) + ) + (uuid "49bbdbb6-e01f-403b-83f1-33fb157240eb") + ) + (wire + (pts + (xy 54.61 170.18) (xy 67.31 170.18) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4a2e1f5e-0628-400a-88be-f59628c22c00") + ) + (wire + (pts + (xy 41.91 151.13) (xy 43.18 151.13) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4f4a895e-80a4-456a-9f56-9eb358c165b2") + ) + (wire + (pts + (xy 25.4 135.89) (xy 24.13 135.89) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5099e5fa-731f-44fa-8866-f4651b87e260") + ) + (wire + (pts + (xy 27.94 111.76) (xy 43.18 111.76) + ) + (stroke + (width 0) + (type default) + ) + (uuid "546f4a14-bcfd-4e98-bac7-144b73a0c10f") + ) + (wire + (pts + (xy 27.94 142.24) (xy 43.18 142.24) + ) + (stroke + (width 0) + (type default) + ) + (uuid "556c3585-e264-4ecc-aa2f-53a14ee7ff67") + ) + (wire + (pts + (xy 26.67 128.27) (xy 24.13 128.27) + ) + (stroke + (width 0) + (type default) + ) + (uuid "56dad91e-ad7f-4d8f-999c-c679bdf00629") + ) + (wire + (pts + (xy 25.4 149.86) (xy 25.4 158.75) + ) + (stroke + (width 0) + (type default) + ) + (uuid "59686ca7-2170-46eb-bf26-92b4849a5c6f") + ) + (wire + (pts + (xy 248.92 82.55) (xy 248.92 90.17) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5cbb5968-dbb5-4b84-864a-ead1cacf75b9") + ) + (wire + (pts + (xy 43.18 152.4) (xy 27.94 152.4) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5ffb3b4b-7652-4af4-839a-2e6de4752496") + ) + (wire + (pts + (xy 238.76 29.21) (xy 251.46 29.21) + ) + (stroke + (width 0) + (type default) + ) + (uuid "62c076a3-d618-44a2-9042-9a08b3576787") + ) + (wire + (pts + (xy 43.18 143.51) (xy 43.18 142.24) + ) + (stroke + (width 0) + (type default) + ) + (uuid "646a9b34-cdca-4861-86a4-aa3e80e0b4ea") + ) + (wire + (pts + (xy 27.94 142.24) (xy 27.94 120.65) + ) + (stroke + (width 0) + (type default) + ) + (uuid "667df18d-7c9e-43aa-b500-d17b882a8258") + ) + (wire + (pts + (xy 16.51 120.65) (xy 16.51 128.27) + ) + (stroke + (width 0) + (type default) + ) + (uuid "67f6e996-3c99-493c-8f6f-e739e2ed5d7a") + ) + (wire + (pts + (xy 251.46 80.01) (xy 248.92 80.01) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6a955fc7-39d9-4c75-9a69-676ca8c0b9b2") + ) + (wire + (pts + (xy 43.18 151.13) (xy 43.18 152.4) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6c11df80-4f13-4fb1-b90a-898ea00ab68f") + ) + (wire + (pts + (xy 41.91 148.59) (xy 43.18 148.59) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6c8d8bd0-e9c4-448d-9b39-55185d044dfc") + ) + (wire + (pts + (xy 54.61 170.18) (xy 53.34 170.18) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6e105729-aba0-497c-a99e-c32d2b3ddb6d") + ) + (wire + (pts + (xy 26.67 143.51) (xy 26.67 128.27) + ) + (stroke + (width 0) + (type default) + ) + (uuid "70649909-981d-4aee-a222-ba7becffb710") + ) + (wire + (pts + (xy 26.67 151.13) (xy 26.67 166.37) + ) + (stroke + (width 0) + (type default) + ) + (uuid "70e410dc-b23c-4f2e-9999-b5c1ddb31050") + ) + (wire + (pts + (xy 251.46 92.71) (xy 248.92 92.71) + ) + (stroke + (width 0) + (type default) + ) + (uuid "746ba970-8279-4e7b-aed3-f28687777c21") + ) + (wire + (pts + (xy 45.72 107.95) (xy 46.99 107.95) + ) + (stroke + (width 0) + (type default) + ) + (uuid "74f7faf4-f39c-4226-b601-5341f12f2216") + ) + (wire + (pts + (xy 43.18 149.86) (xy 25.4 149.86) + ) + (stroke + (width 0) + (type default) + ) + (uuid "74ff337e-910f-4d0f-8ddc-d642f6ef35bb") + ) + (wire + (pts + (xy 54.61 165.1) (xy 54.61 170.18) + ) + (stroke + (width 0) + (type default) + ) + (uuid "78cbdd6c-4878-4cc5-9a58-0e506478e37d") + ) + (wire + (pts + (xy 41.91 110.49) (xy 44.45 110.49) + ) + (stroke + (width 0) + (type default) + ) + (uuid "78f1e95c-30ee-4d12-9b9e-485308899c88") + ) + (wire + (pts + (xy 173.99 124.46) (xy 173.99 87.63) + ) + (stroke + (width 0) + (type default) + ) + (uuid "79993ccb-c268-474d-9299-15e1a0986600") + ) + (wire + (pts + (xy 29.21 181.61) (xy 41.91 181.61) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8716b869-f528-40ae-9e51-8b0a0d24d464") + ) + (wire + (pts + (xy 45.72 107.95) (xy 45.72 115.57) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8a4e5380-ae39-404b-a646-336877cae6fa") + ) + (wire + (pts + (xy 29.21 151.13) (xy 26.67 151.13) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8afe8896-7a35-4d00-bcc5-790cae04b0c2") + ) + (wire + (pts + (xy 44.45 177.8) (xy 45.72 177.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8d55e186-3e11-40e8-a65e-b36a8a00069e") + ) + (wire + (pts + (xy 54.61 170.18) (xy 54.61 186.69) + ) + (stroke + (width 0) + (type default) + ) + (uuid "983c426c-24e0-4c65-ab69-1f1824adc5c6") + ) + (wire + (pts + (xy 43.18 148.59) (xy 43.18 149.86) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9a3b450a-4c67-4bf4-a1a1-11630fc9771e") + ) + (wire + (pts + (xy 26.67 181.61) (xy 26.67 189.23) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9a6f2918-e2ef-427b-b506-9a880a2f258b") + ) + (wire + (pts + (xy 54.61 189.23) (xy 54.61 186.69) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9cf39a2a-0649-4901-96ea-666fe7c9a2e4") + ) + (wire + (pts + (xy 16.51 135.89) (xy 16.51 143.51) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a05d7640-f2f6-4ba7-8c51-5a4af431fc13") + ) + (wire + (pts + (xy 54.61 107.95) (xy 59.69 107.95) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a1242316-6c35-41bf-acfa-72358e1b6d49") + ) + (wire + (pts + (xy 27.94 152.4) (xy 27.94 173.99) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a5812ecc-7a94-4f20-b0c6-8fd19739a103") + ) + (wire + (pts + (xy 16.51 143.51) (xy 16.51 151.13) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a7520ad3-0f8b-4788-92d4-8ffb277041e6") + ) + (wire + (pts + (xy 16.51 151.13) (xy 16.51 158.75) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a795f1ba-cdd5-4cc5-9a52-08586e982934") + ) + (wire + (pts + (xy 29.21 146.05) (xy 24.13 146.05) + ) + (stroke + (width 0) + (type default) + ) + (uuid "adaf5417-93ed-467a-875d-9168ddf8e562") + ) + (wire + (pts + (xy 248.92 80.01) (xy 248.92 82.55) + ) + (stroke + (width 0) + (type default) + ) + (uuid "afb8e687-4a13-41a1-b8c0-89a749e897fe") + ) + (wire + (pts + (xy 43.18 130.81) (xy 46.99 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b0359203-52bc-4c3a-904f-3d2fa2f6b549") + ) + (wire + (pts + (xy 26.67 189.23) (xy 54.61 189.23) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b33be880-a3a2-4116-af57-ddd177cb5171") + ) + (wire + (pts + (xy 168.91 129.54) (xy 177.8 129.54) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b52944e3-8a75-484e-a1ed-437efefda90c") + ) + (wire + (pts + (xy 29.21 186.69) (xy 41.91 186.69) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b727218f-f1f0-4b41-98db-b4240a10f461") + ) + (wire + (pts + (xy 44.45 123.19) (xy 46.99 123.19) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b79689c8-2962-4139-aab2-4c85873c4f87") + ) + (wire + (pts + (xy 248.92 92.71) (xy 248.92 93.98) + ) + (stroke + (width 0) + (type default) + ) + (uuid "bb7f0588-d4d8-44bf-9ebf-3c533fe4d6ae") + ) + (wire + (pts + (xy 29.21 148.59) (xy 24.13 148.59) + ) + (stroke + (width 0) + (type default) + ) + (uuid "becfebd3-67e6-4322-9c3e-cec4c1a09aa0") + ) + (wire + (pts + (xy 43.18 146.05) (xy 43.18 144.78) + ) + (stroke + (width 0) + (type default) + ) + (uuid "bf3161d0-be4d-4dc5-aa55-9bed0b9ee6a8") + ) + (wire + (pts + (xy 43.18 144.78) (xy 25.4 144.78) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c10307e9-9ac0-4a68-bdeb-9a5cfa9e1735") + ) + (wire + (pts + (xy 59.69 107.95) (xy 59.69 113.03) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c1d83899-e380-49f9-a87d-8e78bc089ebf") + ) + (wire + (pts + (xy 20.32 180.34) (xy 16.51 180.34) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c70d9ef3-bfeb-47e0-a1e1-9aeba3da7864") + ) + (wire + (pts + (xy 29.21 110.49) (xy 27.94 110.49) + ) + (stroke + (width 0) + (type default) + ) + (uuid "cf3e497c-415b-45e7-85c9-8b220d4e0239") + ) + (wire + (pts + (xy 168.91 135.89) (xy 238.76 135.89) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d03d949d-a9b5-474a-96dc-eb9a1209522e") + ) + (wire + (pts + (xy 54.61 130.81) (xy 54.61 123.19) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d22e95aa-f3db-4fbc-a331-048a2523233e") + ) + (wire + (pts + (xy 29.21 184.15) (xy 41.91 184.15) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d652d0bd-cf27-43c7-b083-e0736dc66226") + ) + (wire + (pts + (xy 53.34 186.69) (xy 54.61 186.69) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d66d52e1-c81f-43d4-be58-0387e142ff49") + ) + (wire + (pts + (xy 247.65 57.15) (xy 247.65 59.69) + ) + (stroke + (width 0) + (type default) + ) + (uuid "da469d11-a8a4-414b-9449-d151eeaf4853") + ) + (wire + (pts + (xy 168.91 87.63) (xy 173.99 87.63) + ) + (stroke + (width 0) + (type default) + ) + (uuid "dc63e79e-6a73-4404-bc87-ff27daf91ad5") + ) + (wire + (pts + (xy 238.76 135.89) (xy 238.76 29.21) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e108e6ce-145d-4d00-9c0d-2f8554525971") + ) + (wire + (pts + (xy 251.46 90.17) (xy 248.92 90.17) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e10b5627-3247-4c86-b9f6-ef474ca11543") + ) + (wire + (pts + (xy 41.91 186.69) (xy 45.72 186.69) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e2d0d771-8832-4486-b358-984c4d2cb5bb") + ) + (wire + (pts + (xy 41.91 146.05) (xy 43.18 146.05) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e5d54596-c36f-4fb2-a49d-6de015d4cd5a") + ) + (wire + (pts + (xy 168.91 146.05) (xy 181.61 146.05) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e664e896-89c0-40f9-a97b-e90c1cdb4cae") + ) + (wire + (pts + (xy 27.94 110.49) (xy 27.94 111.76) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e7a6adb2-1b9d-45b7-999b-fe833466ebdb") + ) + (wire + (pts + (xy 251.46 82.55) (xy 248.92 82.55) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e8314017-7be6-4011-9179-37449a29b311") + ) + (wire + (pts + (xy 168.91 124.46) (xy 173.99 124.46) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f0b70d08-bab2-483a-8670-079117612214") + ) + (wire + (pts + (xy 251.46 57.15) (xy 247.65 57.15) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f1830a1b-f0cc-47ae-a2c9-679c82032f14") + ) + (wire + (pts + (xy 60.96 177.8) (xy 60.96 123.19) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f4f75f63-fd7f-498d-9afd-7aef29ed93de") + ) + (wire + (pts + (xy 41.91 143.51) (xy 43.18 143.51) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f5a6731b-d91f-4ef1-98f1-c52e6404fd5b") + ) + (wire + (pts + (xy 177.8 129.54) (xy 177.8 81.28) + ) + (stroke + (width 0) + (type default) + ) + (uuid "fc396bd6-fa43-4b24-9a47-baae43bf57e2") + ) + (text "Add a frontpanel label:\n9 mm tape, 8 pt font\nTop row: MAC address\nBottom row: IP address" + (exclude_from_sim no) + (at 22.86 53.34 0) + (effects + (font + (size 1.524 1.524) + ) + (justify left) + ) + (uuid "28dfd970-1e19-4992-b60a-dc14e48686e9") + ) + (text "Add a label\n9 mm tape, 8 pt font\n'Offset removed' to\nthe side of the\nRed Pitaya after removing\nthe resistors (see readme)." + (exclude_from_sim no) + (at 22.86 68.58 0) + (effects + (font + (size 1.524 1.524) + ) + (justify left) + ) + (uuid "6113cc5c-a9e8-44a0-911e-098b0b47e2d8") + ) + (text "Add a revision label to\nthe frontpanel:\n9 mm tape, 16 pt font\nvX.Y.Z" + (exclude_from_sim no) + (at 22.86 39.37 0) + (effects + (font + (size 1.524 1.524) + ) + (justify left) + ) + (uuid "c109235a-5231-48ce-b914-793f5aa0d8c8") + ) + (symbol + (lib_id "power:GND") + (at 16.51 184.15 0) + (mirror y) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b04393c") + (property "Reference" "#PWR01" + (at 16.51 190.5 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 16.51 187.96 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 16.51 184.15 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 16.51 184.15 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 16.51 184.15 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "d02cc305-cc9d-4a81-9683-c30ba7989ea7") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "#PWR01") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:DIN41612_02x32_AC") + (at 36.83 146.05 0) + (mirror y) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b08a8e7") + (property "Reference" "J1" + (at 34.29 101.6 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "C64AC" + (at 36.83 104.14 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Connector_DIN:DIN41612_C_2x32_Male_Horizontal_THT" + (at 36.83 146.05 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 36.83 146.05 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 36.83 146.05 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Config" "" + (at 36.83 146.05 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Harting" + (at 36.83 146.05 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "09031646921" + (at 36.83 146.05 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "a1" + (uuid "8b534e69-456b-4cad-b5ce-665608c61961") + ) + (pin "a10" + (uuid "d5677776-07da-4607-89a3-29e9ec2c2c7d") + ) + (pin "a11" + (uuid "d7c653cb-0c05-4d88-98d6-0282a68eb630") + ) + (pin "a12" + (uuid "581b02e0-e61c-4e78-b948-a79ce3a4d8f3") + ) + (pin "a13" + (uuid "1634ee39-46f2-475a-b9a1-ec8467b66ff6") + ) + (pin "a14" + (uuid "bd4dbb77-75b7-4033-9e46-670b72b8140f") + ) + (pin "a15" + (uuid "d4dec449-c6c8-492c-9e64-09b292ebe822") + ) + (pin "a16" + (uuid "ab0024d5-402e-4e56-82ec-29f4ad53b73e") + ) + (pin "a17" + (uuid "632d804a-27bc-438a-90ef-4d8ebe08945c") + ) + (pin "a18" + (uuid "b1127c53-98c3-4069-8743-6befcd602a8a") + ) + (pin "a19" + (uuid "2ce9edef-a163-482b-ba8f-bdca1edee352") + ) + (pin "a2" + (uuid "3b2e0f02-e66f-464d-83c6-b26ab4e99a3e") + ) + (pin "a20" + (uuid "80e00c51-d22d-43c8-8784-ae53b747630c") + ) + (pin "a21" + (uuid "1a79a7b5-ce85-4adf-babf-91a1fcf480ce") + ) + (pin "a22" + (uuid "1ce57e8c-7f2c-4397-bca9-337651896c59") + ) + (pin "a23" + (uuid "f00d0817-c78d-4508-8fa2-e15c3b6095ae") + ) + (pin "a24" + (uuid "ae84c1e4-8478-4ec1-bdee-a6bf97b13690") + ) + (pin "a25" + (uuid "c38a270e-8014-4f7f-95fb-497d6c9f81f8") + ) + (pin "a26" + (uuid "431c3cd3-1678-41f3-bc33-6bfb6fb5e0d2") + ) + (pin "a27" + (uuid "0d57a78e-c281-4950-bb58-77ab01d2c7ae") + ) + (pin "a28" + (uuid "406d0ee2-0cc9-4bb0-a718-7d3e1775caad") + ) + (pin "a29" + (uuid "534aa35a-5c4a-48d4-8b5d-461128f29024") + ) + (pin "a3" + (uuid "a9389eb5-6d75-4da8-b221-7db9aeefe372") + ) + (pin "a30" + (uuid "59593f0c-ea82-4828-b3b8-470e29dfaf00") + ) + (pin "a31" + (uuid "7a072cd0-bef7-42ad-af5b-a7afe6c1e728") + ) + (pin "a32" + (uuid "6e1a84dc-fe7c-4f6c-a5a1-ece4e49045ec") + ) + (pin "a4" + (uuid "cb8d6eff-9119-4ea3-9541-19f2c2c10846") + ) + (pin "a5" + (uuid "f386ec2e-8ae0-4b3d-9d67-3a04973f78d7") + ) + (pin "a6" + (uuid "43d25633-9b19-4233-8fdd-6586937d324b") + ) + (pin "a7" + (uuid "3251795e-8989-4ac5-aa8d-b55f87b1fa8d") + ) + (pin "a8" + (uuid "14e39794-242c-461b-a49b-2b7e2ad3e9ab") + ) + (pin "a9" + (uuid "e0045b9d-438f-4f0d-97a4-14df0335d230") + ) + (pin "c1" + (uuid "6779fb5e-d940-44c2-8c45-2f1cd6b3181e") + ) + (pin "c10" + (uuid "ad9ca0ad-3269-4ffc-9b41-58617965eb4f") + ) + (pin "c11" + (uuid "603ba4aa-2d7c-45cb-85f0-f4bafae03017") + ) + (pin "c12" + (uuid "0a506d7c-02a1-42b5-bfe8-f630e6517908") + ) + (pin "c13" + (uuid "0b6391a8-c6be-4c37-ac38-083687545ad5") + ) + (pin "c14" + (uuid "91119c3a-552e-40a2-870e-f2604b748610") + ) + (pin "c15" + (uuid "bd25e8be-5042-4330-81ab-6a695a3efc7b") + ) + (pin "c16" + (uuid "1881ee6b-e89a-45be-8dba-08ac8da8d421") + ) + (pin "c17" + (uuid "2a29333b-544d-45bd-ab1c-3caa755bb91b") + ) + (pin "c18" + (uuid "1eab5e18-b235-48f0-9bb9-061fe7466379") + ) + (pin "c19" + (uuid "8a32a130-c3b6-4a05-98dd-430cd89e621d") + ) + (pin "c2" + (uuid "832ea245-ca87-4c5b-82af-1f35a8c967c6") + ) + (pin "c20" + (uuid "64898c35-bc3d-4d3e-ab8e-1d60f7f61c6c") + ) + (pin "c21" + (uuid "ffa88755-a684-4db4-a2b4-b1ec332bd3ed") + ) + (pin "c22" + (uuid "e4cddd3f-9343-4c39-b294-960f59cb2011") + ) + (pin "c23" + (uuid "046c822f-e951-44d9-974f-fb7085b57e47") + ) + (pin "c24" + (uuid "7718a5d6-7086-4a08-a33f-d85eb268a232") + ) + (pin "c25" + (uuid "c19050c4-7d6a-4b22-b56b-9c462cf8a294") + ) + (pin "c26" + (uuid "0df20d20-32c6-4676-9ddd-472fb0c2162d") + ) + (pin "c27" + (uuid "1f11c281-4998-491f-a9b1-8ce2883335d6") + ) + (pin "c28" + (uuid "266aae62-4ee8-4d3e-961c-53c1bdb5bc9b") + ) + (pin "c29" + (uuid "5cd8773c-7835-49d1-8fde-3ea9024ae7fa") + ) + (pin "c3" + (uuid "ee275799-18fa-4b07-ada6-d81617b4b74a") + ) + (pin "c30" + (uuid "9d5b4081-3274-4844-82f1-88b115d39b64") + ) + (pin "c31" + (uuid "8265f945-e1a9-44bb-8812-a354ef4bb04a") + ) + (pin "c32" + (uuid "f3fecd24-50c3-414b-8664-942c8c33dfd9") + ) + (pin "c4" + (uuid "8719f728-2cd9-41b7-ad83-3e39df580683") + ) + (pin "c5" + (uuid "f083a3b8-2301-4957-97d4-f73c37799666") + ) + (pin "c6" + (uuid "54141429-dcfe-4711-8f14-9f43c4a7ab10") + ) + (pin "c7" + (uuid "83e19f85-c31f-4b65-a7e6-f69bb44a3d62") + ) + (pin "c8" + (uuid "cb801b67-8c0f-406f-9ffe-10940a798405") + ) + (pin "c9" + (uuid "2dd715eb-c247-4eed-bef6-ccc8c2842229") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "J1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "RedPitaya:RedPitaya_125-14") + (at 256.54 60.96 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b08c1e4") + (property "Reference" "RP1" + (at 257.81 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "RedPitaya_125-14" + (at 269.24 60.96 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "custom:RedPitaya_125-14" + (at 256.54 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 256.54 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 256.54 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Connector" "" + (at 256.54 60.96 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "MFN" "Samtec" + (at 256.54 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "ESQ-113-44-T-D" + (at 256.54 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "abd4c054-d160-4afc-b89e-b064f61a6cea") + ) + (pin "10" + (uuid "09e82a9f-32b9-4326-900a-862357a2ea7c") + ) + (pin "11" + (uuid "f85a4bde-99f2-4f51-928c-1f553dd022aa") + ) + (pin "12" + (uuid "019d61e2-bf1a-4047-b5a9-974b28aff016") + ) + (pin "13" + (uuid "9d95b8f3-588c-423a-a07a-b95b70ba9d49") + ) + (pin "14" + (uuid "a74ffe89-bd13-46eb-90cd-fb9cb675cf61") + ) + (pin "15" + (uuid "5dc857cd-69b3-436f-ad40-03b225e423ed") + ) + (pin "16" + (uuid "609e0431-c538-4704-ab44-158d282922d9") + ) + (pin "17" + (uuid "61752aa6-823c-4e63-b613-8b9f06732137") + ) + (pin "18" + (uuid "f56942d2-f2dd-4002-85b3-b44088bf0801") + ) + (pin "19" + (uuid "7613171f-3d57-481f-a1f5-cf9b2078ce47") + ) + (pin "2" + (uuid "055f145f-3e4c-4281-8b0f-f3d61b11ab08") + ) + (pin "20" + (uuid "2cd68df6-eab0-4ec6-9cf3-87c015589f4f") + ) + (pin "21" + (uuid "4a254cfa-756d-4a64-871a-abf85f95be9f") + ) + (pin "22" + (uuid "b1207068-10aa-44f2-9526-6baa91a18194") + ) + (pin "23" + (uuid "e7917d8a-9d97-473c-b894-cbe27055469e") + ) + (pin "24" + (uuid "6d37ffc9-52b8-45dd-a615-c574fc16e30b") + ) + (pin "25" + (uuid "117e7080-234f-49cb-bea2-1e181ff0e17a") + ) + (pin "26" + (uuid "7b99f74e-8289-47ea-9158-50583fc655b8") + ) + (pin "3" + (uuid "f2c7ee2b-c1f3-4524-b6b3-63bf4782962a") + ) + (pin "4" + (uuid "b638166f-0060-44dd-a55c-2c3552103d50") + ) + (pin "5" + (uuid "94b11e4d-97ae-4c11-ad6d-df8bfbb756cc") + ) + (pin "6" + (uuid "e7174582-b05a-452c-91ec-a0dfcf85fc19") + ) + (pin "7" + (uuid "7416917b-8e27-400b-b454-648aaffe3d1b") + ) + (pin "8" + (uuid "e47ce8d3-40b8-43b8-a4ea-d6136cf72842") + ) + (pin "9" + (uuid "7d986bfe-1ce2-4135-bac0-ccf8ca415bf0") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "RP1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 247.65 59.69 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b08c62b") + (property "Reference" "#PWR02" + (at 247.65 66.04 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 247.65 63.5 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 247.65 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 247.65 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 247.65 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "c7337743-ac3c-4cb5-b4c2-84cf3c1958da") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "#PWR02") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 248.92 93.98 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b08c643") + (property "Reference" "#PWR03" + (at 248.92 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 248.92 97.79 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 248.92 93.98 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 248.92 93.98 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 248.92 93.98 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "" + (at 248.92 93.98 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "" + (at 248.92 93.98 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "c8c7a5da-f7b2-4a52-9ef7-2cd708cf2c0e") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "#PWR03") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:PWR_FLAG") + (at 54.61 165.1 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005d8e1324") + (property "Reference" "#FLG0101" + (at 54.61 163.195 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "PWR_FLAG" + (at 54.61 160.7058 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 54.61 165.1 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 54.61 165.1 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 54.61 165.1 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "b5a90c87-8ff1-4dbd-9e50-a52d990a9095") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "#FLG0101") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:PWR_FLAG") + (at 54.61 133.35 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005d8e172b") + (property "Reference" "#FLG0102" + (at 54.61 135.255 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "PWR_FLAG" + (at 54.61 137.7442 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 54.61 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 54.61 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 54.61 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "78203551-e76d-45b2-9e72-4337233f1450") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "#FLG0102") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:PWR_FLAG") + (at 20.32 180.34 270) + (mirror x) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005d8e195f") + (property "Reference" "#FLG0103" + (at 22.225 180.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "PWR_FLAG" + (at 24.7142 180.34 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 20.32 180.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 20.32 180.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 20.32 180.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "8ffa9520-5ba4-4ac1-a18d-174b008f8b80") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "#FLG0103") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Custom_logos:Logo_APQ") + (at 243.84 171.45 0) + (unit 1) + (exclude_from_sim no) + (in_bom no) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005f6d3841") + (property "Reference" "LOGO1" + (at 250.19 164.465 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "Logo_APQ" + (at 250.19 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "custom:APQ-Logo" + (at 251.46 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 251.46 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 243.84 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "" + (at 243.84 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "" + (at 243.84 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Enable" "0" + (at 243.84 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "LOGO1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Graphic:Logo_Open_Hardware_Small") + (at 276.86 173.99 0) + (unit 1) + (exclude_from_sim no) + (in_bom no) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005f6d62f6") + (property "Reference" "LOGO2" + (at 276.86 167.005 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "Logo_Open_Hardware_Small" + (at 276.86 179.705 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "Symbol:OSHW-Logo_5.7x6mm_SilkScreen" + (at 276.86 173.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 276.86 173.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 276.86 173.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "" + (at 276.86 173.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "" + (at 276.86 173.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Enable" "0" + (at 276.86 173.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "LOGO2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Mechanical:MountingHole") + (at 265.43 133.35 0) + (unit 1) + (exclude_from_sim yes) + (in_bom no) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005f6d8b6d") + (property "Reference" "H1" + (at 267.97 132.08 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MountingHole" + (at 267.97 134.62 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "MountingHole:MountingHole_2.7mm_M2.5" + (at 265.43 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 265.43 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 265.43 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Config" "DNF" + (at 265.43 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "H1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Mechanical:MountingHole") + (at 265.43 138.43 0) + (unit 1) + (exclude_from_sim yes) + (in_bom no) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005f6d8e2d") + (property "Reference" "H2" + (at 267.97 137.16 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MountingHole" + (at 267.97 139.7 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "MountingHole:MountingHole_2.7mm_M2.5" + (at 265.43 138.43 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 265.43 138.43 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 265.43 138.43 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Config" "DNF" + (at 265.43 138.43 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "H2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Custom_logos:Logo_RoHS") + (at 223.52 171.45 0) + (unit 1) + (exclude_from_sim no) + (in_bom no) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005f70d043") + (property "Reference" "LOGO3" + (at 229.87 164.465 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "Logo_RoHS" + (at 229.87 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "Symbol:RoHS-Logo_6mm_SilkScreen" + (at 231.14 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 231.14 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 223.52 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "" + (at 223.52 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "" + (at 223.52 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Sim.Enable" "0" + (at 223.52 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "LOGO3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Jumper:SolderJumper_2_Bridged") + (at 20.32 120.65 0) + (mirror y) + (unit 1) + (exclude_from_sim yes) + (in_bom no) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-0000614b49d3") + (property "Reference" "JP6" + (at 20.32 115.2652 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "GND" + (at 20.32 117.5766 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (at 20.32 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 20.32 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 20.32 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Config" "DNF" + (at 20.32 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "" + (at 20.32 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "" + (at 20.32 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "1ace960f-743d-4336-9cc3-ceb066bf1d33") + ) + (pin "2" + (uuid "62f3a1ec-ab57-4298-95f2-d6257c1f4a8e") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "JP6") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Jumper:SolderJumper_2_Bridged") + (at 20.32 166.37 0) + (mirror y) + (unit 1) + (exclude_from_sim yes) + (in_bom no) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-0000614ba1f4") + (property "Reference" "JP13" + (at 20.32 160.9852 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "GND" + (at 20.32 163.2966 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (at 20.32 166.37 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 20.32 166.37 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 20.32 166.37 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Config" "DNF" + (at 20.32 166.37 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "" + (at 20.32 166.37 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "" + (at 20.32 166.37 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "778358f1-d890-4570-b263-0ba880374c24") + ) + (pin "2" + (uuid "bdfc4715-c6ee-47ec-8978-077838963a54") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "JP13") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Jumper:SolderJumper_2_Bridged") + (at 20.32 173.99 0) + (mirror y) + (unit 1) + (exclude_from_sim yes) + (in_bom no) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-0000614ba49d") + (property "Reference" "JP12" + (at 20.32 168.6052 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "GND" + (at 20.32 170.9166 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (at 20.32 173.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 20.32 173.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 20.32 173.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Config" "DNF" + (at 20.32 173.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "" + (at 20.32 173.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "" + (at 20.32 173.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "fdc9e098-f47a-40b1-b119-fdd36450518a") + ) + (pin "2" + (uuid "37a2e058-4e7f-4124-9985-c9b0e8794c7c") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "JP12") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Jumper:SolderJumper_2_Bridged") + (at 20.32 128.27 0) + (mirror y) + (unit 1) + (exclude_from_sim yes) + (in_bom no) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-0000614ba6fe") + (property "Reference" "JP7" + (at 20.32 122.8852 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "GND" + (at 20.32 125.1966 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (at 20.32 128.27 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 20.32 128.27 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 20.32 128.27 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Config" "DNF" + (at 20.32 128.27 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "" + (at 20.32 128.27 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "" + (at 20.32 128.27 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "bf4f644f-37c9-4218-a290-e2c2d3919971") + ) + (pin "2" + (uuid "10646a81-94b5-4f91-9067-310e0b6c2d1e") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "JP7") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Jumper:SolderJumper_2_Bridged") + (at 20.32 151.13 0) + (mirror y) + (unit 1) + (exclude_from_sim yes) + (in_bom no) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-0000614ba937") + (property "Reference" "JP11" + (at 20.32 145.7452 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "GND" + (at 20.32 148.0566 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (at 20.32 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 20.32 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 20.32 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Config" "DNF" + (at 20.32 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "" + (at 20.32 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "" + (at 20.32 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "90c0fa20-44ec-4b05-bc6c-c9f7716a8dc8") + ) + (pin "2" + (uuid "380b4184-be37-4c29-9aa1-ab97832ed532") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "JP11") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Jumper:SolderJumper_2_Bridged") + (at 20.32 158.75 0) + (mirror y) + (unit 1) + (exclude_from_sim yes) + (in_bom no) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-0000614baac4") + (property "Reference" "JP10" + (at 20.32 153.3652 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "GND" + (at 20.32 155.6766 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (at 20.32 158.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 20.32 158.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 20.32 158.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Config" "DNF" + (at 20.32 158.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "" + (at 20.32 158.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "" + (at 20.32 158.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "4824ad47-6a52-4d66-b09f-c6df2c0c1e81") + ) + (pin "2" + (uuid "1f783e1b-8141-4726-92ac-fc26fdcfa76a") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "JP10") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Jumper:SolderJumper_2_Bridged") + (at 20.32 135.89 0) + (mirror y) + (unit 1) + (exclude_from_sim yes) + (in_bom no) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-0000614bacb5") + (property "Reference" "JP8" + (at 20.32 130.5052 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "GND" + (at 20.32 132.8166 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (at 20.32 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 20.32 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 20.32 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Config" "DNF" + (at 20.32 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "" + (at 20.32 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "" + (at 20.32 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "ea2e9556-eb60-4c9e-8c3a-42120dd4be64") + ) + (pin "2" + (uuid "2028bd78-d4e0-464f-984a-1e27d08ab0a3") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "JP8") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Jumper:SolderJumper_2_Bridged") + (at 20.32 143.51 0) + (mirror y) + (unit 1) + (exclude_from_sim yes) + (in_bom no) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-0000614bb04c") + (property "Reference" "JP9" + (at 20.32 138.1252 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "GND" + (at 20.32 140.4366 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (at 20.32 143.51 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 20.32 143.51 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 20.32 143.51 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Config" "DNF" + (at 20.32 143.51 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "" + (at 20.32 143.51 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "" + (at 20.32 143.51 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "e710a727-f75a-4126-9931-646ba46d7cb6") + ) + (pin "2" + (uuid "ebd9e0ad-df50-4b74-bedd-37587913175a") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "JP9") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Jumper:SolderJumper_2_Bridged") + (at 50.8 115.57 0) + (unit 1) + (exclude_from_sim yes) + (in_bom no) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-0000615158e2") + (property "Reference" "JP3" + (at 50.8 110.1852 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "+15V" + (at 50.8 112.4966 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (at 50.8 115.57 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 50.8 115.57 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 50.8 115.57 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Config" "DNF" + (at 50.8 115.57 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "" + (at 50.8 115.57 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "" + (at 50.8 115.57 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "5e113b49-30c2-4c92-a6e5-a73aa5905c47") + ) + (pin "2" + (uuid "fd73dd67-2076-4ce2-8acc-416f3fd36d1e") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "JP3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Jumper:SolderJumper_2_Bridged") + (at 50.8 130.81 0) + (unit 1) + (exclude_from_sim yes) + (in_bom no) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00006152eb89") + (property "Reference" "JP5" + (at 50.8 125.4252 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "+15V" + (at 50.8 127.7366 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (at 50.8 130.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 50.8 130.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 50.8 130.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Config" "DNF" + (at 50.8 130.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "" + (at 50.8 130.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "" + (at 50.8 130.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "4398c5b1-bd78-4ac7-aa76-a408d72bfb0d") + ) + (pin "2" + (uuid "3725c7c6-5c87-48f5-9dd1-b9f5346889b6") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "JP5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Jumper:SolderJumper_2_Bridged") + (at 50.8 123.19 0) + (unit 1) + (exclude_from_sim yes) + (in_bom no) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00006152fdf0") + (property "Reference" "JP4" + (at 50.8 117.8052 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "+15V" + (at 50.8 120.1166 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (at 50.8 123.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 50.8 123.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 50.8 123.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Config" "DNF" + (at 50.8 123.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "" + (at 50.8 123.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "" + (at 50.8 123.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "63eb3707-5808-4ca2-a468-45b642192112") + ) + (pin "2" + (uuid "127e8ae0-181f-4c6f-9693-967e91c2a440") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "JP4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 59.69 113.03 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00006156d967") + (property "Reference" "#PWR0111" + (at 59.69 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 59.817 117.4242 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 59.69 113.03 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 59.69 113.03 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 59.69 113.03 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "" + (at 59.69 113.03 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "" + (at 59.69 113.03 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "cd64db6f-bc3c-4c77-b8c3-22411a6dc20e") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "#PWR0111") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Jumper:SolderJumper_2_Open") + (at 50.8 107.95 0) + (unit 1) + (exclude_from_sim yes) + (in_bom no) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00006156e035") + (property "Reference" "JP1" + (at 50.8 103.251 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "GND" + (at 50.8 105.5624 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm" + (at 50.8 107.95 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 50.8 107.95 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 50.8 107.95 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Config" "DNF" + (at 50.8 107.95 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "891b9f51-a382-434e-8b29-0b20f1c2c032") + ) + (pin "2" + (uuid "e739a248-d511-4679-b92e-98ad52d4151a") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "JP1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Jumper:SolderJumper_2_Bridged") + (at 49.53 170.18 0) + (unit 1) + (exclude_from_sim yes) + (in_bom no) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-0000615805b0") + (property "Reference" "JP14" + (at 49.53 164.7952 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "-15V" + (at 49.53 167.1066 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (at 49.53 170.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 49.53 170.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 49.53 170.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Config" "DNF" + (at 49.53 170.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "" + (at 49.53 170.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "" + (at 49.53 170.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "185e88df-9819-475d-aabd-8abdae2993b7") + ) + (pin "2" + (uuid "37be3fe3-5a23-4e8c-8b00-5b8e1b98a7ef") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "JP14") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Jumper:SolderJumper_2_Bridged") + (at 49.53 186.69 0) + (unit 1) + (exclude_from_sim yes) + (in_bom no) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-000061580ef2") + (property "Reference" "JP15" + (at 49.53 181.3052 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "-15V" + (at 49.53 183.6166 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm" + (at 49.53 186.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 49.53 186.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 49.53 186.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Config" "DNF" + (at 49.53 186.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "" + (at 49.53 186.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "" + (at 49.53 186.69 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "9b800fe7-d67d-4e3e-9554-e8909129d520") + ) + (pin "2" + (uuid "c995b93e-573e-41d8-a09c-9468e240752d") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "JP15") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Jumper:SolderJumper_2_Open") + (at 49.53 177.8 0) + (unit 1) + (exclude_from_sim yes) + (in_bom no) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-0000615d2f6d") + (property "Reference" "JP2" + (at 49.53 173.101 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "+15V" + (at 49.53 175.4124 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm" + (at 49.53 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 49.53 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 49.53 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Config" "DNF" + (at 49.53 177.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "f8163210-6c92-4fb6-80e8-1b20a5dd7da5") + ) + (pin "2" + (uuid "4fc49bfe-6d6d-447d-b945-90c3d4d5e8f3") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (reference "JP2") + (unit 1) + ) + ) + ) + ) + (sheet + (at 67.31 110.49) + (size 101.6 77.47) + (fields_autoplaced yes) + (stroke + (width 0) + (type solid) + ) + (fill + (color 0 0 0 0.0000) + ) + (uuid "00000000-0000-0000-0000-00005b053798") + (property "Sheetname" "Supply_Ref" + (at 67.31 109.6514 0) + (effects + (font + (size 1.524 1.524) + ) + (justify left bottom) + ) + ) + (property "Sheetfile" "Supply_Ref.kicad_sch" + (at 67.31 188.6462 0) + (effects + (font + (size 1.524 1.524) + ) + (justify left top) + ) + ) + (pin "-15V" input + (at 67.31 170.18 180) + (effects + (font + (size 1.524 1.524) + ) + (justify left) + ) + (uuid "52b707bf-b475-4f26-8db5-32f29b061d30") + ) + (pin "-12V" output + (at 168.91 129.54 0) + (effects + (font + (size 1.524 1.524) + ) + (justify right) + ) + (uuid "79a21f12-f5ec-4728-8b8a-6d525425a0ab") + ) + (pin "10V_ref" output + (at 168.91 146.05 0) + (effects + (font + (size 1.524 1.524) + ) + (justify right) + ) + (uuid "709dd5bc-b79c-4458-ba34-79bd6c2b8a98") + ) + (pin "SET" output + (at 168.91 149.86 0) + (effects + (font + (size 1.524 1.524) + ) + (justify right) + ) + (uuid "b9a910a6-f47f-4ca0-be22-9b885abc1f2e") + ) + (pin "+15V" input + (at 67.31 123.19 180) + (effects + (font + (size 1.524 1.524) + ) + (justify left) + ) + (uuid "3172b7e8-9c43-4e51-a665-4f226d1a9b34") + ) + (pin "+12V" output + (at 168.91 124.46 0) + (effects + (font + (size 1.524 1.524) + ) + (justify right) + ) + (uuid "1e7e3f83-0dec-4861-9997-0019af564372") + ) + (pin "+5V" output + (at 168.91 135.89 0) + (effects + (font + (size 1.524 1.524) + ) + (justify right) + ) + (uuid "37090374-7b4d-487f-be8c-dde4017dab96") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (page "3") + ) + ) + ) + ) + (sheet + (at 67.945 21.59) + (size 100.965 76.835) + (fields_autoplaced yes) + (stroke + (width 0) + (type solid) + ) + (fill + (color 0 0 0 0.0000) + ) + (uuid "00000000-0000-0000-0000-00005b057307") + (property "Sheetname" "Input_Output_Module" + (at 67.945 20.7514 0) + (effects + (font + (size 1.524 1.524) + ) + (justify left bottom) + ) + ) + (property "Sheetfile" "Input_Output_Module.kicad_sch" + (at 67.945 99.1112 0) + (effects + (font + (size 1.524 1.524) + ) + (justify left top) + ) + ) + (pin "+12V" input + (at 168.91 87.63 0) + (effects + (font + (size 1.524 1.524) + ) + (justify right) + ) + (uuid "e55124fd-ef19-4e97-80b5-f7e3c5281710") + ) + (pin "-12V" input + (at 168.91 81.28 0) + (effects + (font + (size 1.524 1.524) + ) + (justify right) + ) + (uuid "99e5aee1-54db-4f22-8bc2-bf723f436646") + ) + (pin "SET" input + (at 168.91 60.96 0) + (effects + (font + (size 1.524 1.524) + ) + (justify right) + ) + (uuid "89343407-7ac2-4763-9d4c-d7612cf615d9") + ) + (pin "+10V_ref" input + (at 168.91 64.77 0) + (effects + (font + (size 1.524 1.524) + ) + (justify right) + ) + (uuid "c1f37804-3385-4b54-8305-7a46cca1bc24") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55" + (page "2") + ) + ) + ) + ) + (sheet_instances + (path "/" + (page "1") + ) + ) ) diff --git a/pcb/KiCad/Supply_Ref.kicad_sch b/pcb/KiCad/Supply_Ref.kicad_sch index a10b112..9e07acc 100644 --- a/pcb/KiCad/Supply_Ref.kicad_sch +++ b/pcb/KiCad/Supply_Ref.kicad_sch @@ -1,3361 +1,9334 @@ -(kicad_sch (version 20230121) (generator eeschema) - - (uuid f202141e-c20d-4cac-b016-06a44f2ecce8) - - (paper "A4") - - (title_block - (title "RedPitaya Lockbox") - (date "2023-11-03") - (rev "1.6.2") - (company "Atoms-Photons-Quanta, Institut für Angewandte Physik, TU Darmstadt") - (comment 1 "Tilman Preuschoff") - ) - - (lib_symbols - (symbol "Connector:TestPoint" (pin_numbers hide) (pin_names (offset 0.762) hide) (in_bom yes) (on_board yes) - (property "Reference" "TP" (at 0 6.858 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "TestPoint" (at 0 5.08 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 5.08 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 5.08 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "test point tp" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "test point" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "Pin* Test*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "TestPoint_0_1" - (circle (center 0 3.302) (radius 0.762) - (stroke (width 0) (type default)) - (fill (type none)) - ) - ) - (symbol "TestPoint_1_1" - (pin passive line (at 0 0 90) (length 2.54) - (name "1" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Device:C_Polarized_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes) - (property "Reference" "C" (at 0.254 1.778 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "C_Polarized_Small" (at 0.254 -2.032 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "cap capacitor" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Polarized capacitor, small symbol" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "CP_*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "C_Polarized_Small_0_1" - (rectangle (start -1.524 -0.3048) (end 1.524 -0.6858) - (stroke (width 0) (type default)) - (fill (type outline)) - ) - (rectangle (start -1.524 0.6858) (end 1.524 0.3048) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -1.27 1.524) - (xy -0.762 1.524) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -1.016 1.27) - (xy -1.016 1.778) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - ) - (symbol "C_Polarized_Small_1_1" - (pin passive line (at 0 2.54 270) (length 1.8542) - (name "~" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 0 -2.54 90) (length 1.8542) - (name "~" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes) - (property "Reference" "C" (at 0.254 1.778 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "C_Small" (at 0.254 -2.032 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "capacitor cap" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Unpolarized capacitor, small symbol" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "C_*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "C_Small_0_1" - (polyline - (pts - (xy -1.524 -0.508) - (xy 1.524 -0.508) - ) - (stroke (width 0.3302) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -1.524 0.508) - (xy 1.524 0.508) - ) - (stroke (width 0.3048) (type default)) - (fill (type none)) - ) - ) - (symbol "C_Small_1_1" - (pin passive line (at 0 2.54 270) (length 2.032) - (name "~" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 0 -2.54 90) (length 2.032) - (name "~" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Device:D_Schottky" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) - (property "Reference" "D" (at 0 2.54 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "D_Schottky" (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) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "diode Schottky" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Schottky diode" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "D_Schottky_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 none)) - ) - (polyline - (pts - (xy -1.905 0.635) - (xy -1.905 1.27) - (xy -1.27 1.27) - (xy -1.27 -1.27) - (xy -0.635 -1.27) - (xy -0.635 -0.635) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - ) - (symbol "D_Schottky_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)))) - ) - ) - ) - (symbol "Device:D_TVS" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) - (property "Reference" "D" (at 0 2.54 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "D_TVS" (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) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "diode TVS thyrector" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Bidirectional transient-voltage-suppression diode" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "D_TVS_0_1" - (polyline - (pts - (xy 1.27 0) - (xy -1.27 0) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 0.508 1.27) - (xy 0 1.27) - (xy 0 -1.27) - (xy -0.508 -1.27) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -2.54 1.27) - (xy -2.54 -1.27) - (xy 2.54 1.27) - (xy 2.54 -1.27) - (xy -2.54 1.27) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - ) - (symbol "D_TVS_1_1" - (pin passive line (at -3.81 0 0) (length 2.54) - (name "A1" (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 "A2" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Device:FerriteBead_Small" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) - (property "Reference" "FB" (at 1.905 1.27 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "FerriteBead_Small" (at 1.905 -1.27 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "" (at -1.778 0 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "L ferrite bead inductor filter" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Ferrite bead, small symbol" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "Inductor_* L_* *Ferrite*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "FerriteBead_Small_0_1" - (polyline - (pts - (xy 0 -1.27) - (xy 0 -0.7874) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 0 0.889) - (xy 0 1.2954) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -1.8288 0.2794) - (xy -1.1176 1.4986) - (xy 1.8288 -0.2032) - (xy 1.1176 -1.4224) - (xy -1.8288 0.2794) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - ) - (symbol "FerriteBead_Small_1_1" - (pin passive line (at 0 2.54 270) (length 1.27) - (name "~" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 0 -2.54 90) (length 1.27) - (name "~" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Device:L_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes) - (property "Reference" "L" (at 0.762 1.016 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "L_Small" (at 0.762 -1.016 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "inductor choke coil reactor magnetic" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Inductor, small symbol" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "L_Small_0_1" - (arc (start 0 -2.032) (mid 0.5058 -1.524) (end 0 -1.016) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (arc (start 0 -1.016) (mid 0.5058 -0.508) (end 0 0) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (arc (start 0 0) (mid 0.5058 0.508) (end 0 1.016) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (arc (start 0 1.016) (mid 0.5058 1.524) (end 0 2.032) - (stroke (width 0) (type default)) - (fill (type none)) - ) - ) - (symbol "L_Small_1_1" - (pin passive line (at 0 2.54 270) (length 0.508) - (name "~" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 0 -2.54 90) (length 0.508) - (name "~" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Device:RFShield_OnePiece" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) - (property "Reference" "J" (at 0 5.08 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "RFShield_OnePiece" (at 0 2.54 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 0 -2.54 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 0 -2.54 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "RF EMI shielding cabinet" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "One-piece EMI RF shielding cabinet" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "RFShield_OnePiece_0_1" - (polyline - (pts - (xy -15.24 -5.08) - (xy -15.24 -2.54) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -15.24 -1.27) - (xy -15.24 1.27) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -15.24 2.54) - (xy -15.24 5.08) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -12.7 7.62) - (xy -10.16 7.62) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -10.16 -7.62) - (xy -12.7 -7.62) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -6.35 -7.62) - (xy -8.89 -7.62) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -6.35 7.62) - (xy -8.89 7.62) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -2.54 -7.62) - (xy -5.08 -7.62) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -2.54 7.62) - (xy -5.08 7.62) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -1.27 -7.62) - (xy 1.27 -7.62) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 1.27 7.62) - (xy -1.27 7.62) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 2.54 -7.62) - (xy 5.08 -7.62) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 5.08 7.62) - (xy 2.54 7.62) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 6.35 -7.62) - (xy 8.89 -7.62) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 8.89 7.62) - (xy 6.35 7.62) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 10.16 -7.62) - (xy 12.7 -7.62) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 12.7 7.62) - (xy 10.16 7.62) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 15.24 -5.08) - (xy 15.24 -2.54) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 15.24 -1.27) - (xy 15.24 1.27) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 15.24 2.54) - (xy 15.24 5.08) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -15.24 6.35) - (xy -15.24 7.62) - (xy -13.97 7.62) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -13.97 -7.62) - (xy -15.24 -7.62) - (xy -15.24 -6.35) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 13.97 -7.62) - (xy 15.24 -7.62) - (xy 15.24 -6.35) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 15.24 6.35) - (xy 15.24 7.62) - (xy 13.97 7.62) - ) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - ) - (symbol "RFShield_OnePiece_1_1" - (pin passive line (at 0 -10.16 90) (length 2.54) - (name "Shield" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Device:R_Potentiometer" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) - (property "Reference" "RV" (at -4.445 0 90) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "R_Potentiometer" (at -2.54 0 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "resistor variable" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Potentiometer" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "Potentiometer*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "R_Potentiometer_0_1" - (polyline - (pts - (xy 2.54 0) - (xy 1.524 0) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 1.143 0) - (xy 2.286 0.508) - (xy 2.286 -0.508) - (xy 1.143 0) - ) - (stroke (width 0) (type default)) - (fill (type outline)) - ) - (rectangle (start 1.016 2.54) (end -1.016 -2.54) - (stroke (width 0.254) (type default)) - (fill (type none)) - ) - ) - (symbol "R_Potentiometer_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 3.81 0 180) (length 1.27) - (name "2" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 0 -3.81 90) (length 1.27) - (name "3" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes) - (property "Reference" "R" (at 0.762 0.508 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "R_Small" (at 0.762 -1.016 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "R resistor" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Resistor, small symbol" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "R_*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "R_Small_0_1" - (rectangle (start -0.762 1.778) (end 0.762 -1.778) - (stroke (width 0.2032) (type default)) - (fill (type none)) - ) - ) - (symbol "R_Small_1_1" - (pin passive line (at 0 2.54 270) (length 0.762) - (name "~" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 0 -2.54 90) (length 0.762) - (name "~" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "LinearTechnology:LT1236-10" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) - (property "Reference" "U" (at 6.35 -1.27 0) - (effects (font (size 1.524 1.524))) - ) - (property "Value" "LT1236-10" (at 0 8.89 0) - (effects (font (size 1.524 1.524))) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "Datasheet" "" (at 0 0 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "ki_description" "10V Precision Reference" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "LT1236-10_1_1" - (rectangle (start -7.62 7.62) (end 7.62 0) - (stroke (width 0) (type default)) - (fill (type background)) - ) - (pin no_connect line (at -6.35 -2.54 90) (length 2.54) hide - (name "NC" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at -12.7 5.08 0) (length 5.08) - (name "Vin" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin no_connect line (at -3.81 -2.54 90) (length 2.54) hide - (name "NC" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at 0 -5.08 90) (length 5.08) - (name "GND" (effects (font (size 1.27 1.27)))) - (number "4" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 12.7 2.54 180) (length 5.08) - (name "Trim" (effects (font (size 1.27 1.27)))) - (number "5" (effects (font (size 1.27 1.27)))) - ) - (pin power_out line (at 12.7 5.08 180) (length 5.08) - (name "Vout" (effects (font (size 1.27 1.27)))) - (number "6" (effects (font (size 1.27 1.27)))) - ) - (pin no_connect line (at 3.81 -2.54 90) (length 2.54) hide - (name "NC" (effects (font (size 1.27 1.27)))) - (number "7" (effects (font (size 1.27 1.27)))) - ) - (pin no_connect line (at -10.16 1.27 0) (length 2.54) hide - (name "NC" (effects (font (size 1.27 1.27)))) - (number "8" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "LinearTechnology:LT8610" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) - (property "Reference" "U" (at -8.89 41.91 0) - (effects (font (size 1.524 1.524))) - ) - (property "Value" "LT8610" (at -6.35 44.45 0) - (effects (font (size 1.524 1.524))) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "Datasheet" "" (at 0 0 0) - (effects (font (size 1.524 1.524)) hide) - ) - (symbol "LT8610_1_0" - (rectangle (start -10.16 40.64) (end 10.16 6.35) - (stroke (width 0) (type default)) - (fill (type background)) - ) - ) - (symbol "LT8610_1_1" - (pin input line (at -13.97 21.59 0) (length 3.81) - (name "SYNC" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 13.97 26.67 180) (length 3.81) hide - (name "SW" (effects (font (size 1.27 1.27)))) - (number "10" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 13.97 26.67 180) (length 3.81) hide - (name "SW" (effects (font (size 1.27 1.27)))) - (number "11" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 13.97 38.1 180) (length 3.81) - (name "BST" (effects (font (size 1.27 1.27)))) - (number "12" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -13.97 11.43 0) (length 3.81) - (name "INTVcc" (effects (font (size 1.27 1.27)))) - (number "13" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 13.97 21.59 180) (length 3.81) - (name "BIAS" (effects (font (size 1.27 1.27)))) - (number "14" (effects (font (size 1.27 1.27)))) - ) - (pin output line (at -13.97 26.67 0) (length 3.81) - (name "PG" (effects (font (size 1.27 1.27)))) - (number "15" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 13.97 16.51 180) (length 3.81) - (name "FB" (effects (font (size 1.27 1.27)))) - (number "16" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 5.08 2.54 90) (length 3.81) - (name "GND" (effects (font (size 1.27 1.27)))) - (number "17" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -13.97 16.51 0) (length 3.81) - (name "TR/SS" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 2.54 90) (length 3.81) - (name "RT" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -13.97 31.75 0) (length 3.81) - (name "EN/UV" (effects (font (size 1.27 1.27)))) - (number "4" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -13.97 38.1 0) (length 3.81) - (name "Vin" (effects (font (size 1.27 1.27)))) - (number "5" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -13.97 38.1 0) (length 3.81) hide - (name "Vin" (effects (font (size 1.27 1.27)))) - (number "6" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 0 2.54 90) (length 3.81) - (name "PGND" (effects (font (size 1.27 1.27)))) - (number "7" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 0 2.54 90) (length 3.81) hide - (name "PGND" (effects (font (size 1.27 1.27)))) - (number "8" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 13.97 26.67 180) (length 3.81) - (name "SW" (effects (font (size 1.27 1.27)))) - (number "9" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Regulator_Linear:LT3045xMSE" (in_bom yes) (on_board yes) - (property "Reference" "U" (at -6.35 6.35 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "LT3045xMSE" (at 1.27 6.35 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Package_SO:MSOP-12-1EP_3x4mm_P0.65mm_EP1.65x2.85mm" (at 0 8.255 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "https://www.analog.com/media/en/technical-documentation/data-sheets/3045fa.pdf" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "linear voltage regulator low-noise" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "500mA, Adjustable, Ultralow Noise, Ultrahigh PSRR Linear Regulator, MSOP-12" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "MSOP*1EP*3x4mm*P0.65mm*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "LT3045xMSE_0_1" - (rectangle (start -7.62 5.08) (end 7.62 -7.62) - (stroke (width 0.254) (type default)) - (fill (type background)) - ) - ) - (symbol "LT3045xMSE_1_1" - (pin power_in line (at -10.16 2.54 0) (length 2.54) - (name "IN" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 10.16 0 180) (length 2.54) - (name "OUTS" (effects (font (size 1.27 1.27)))) - (number "10" (effects (font (size 1.27 1.27)))) - ) - (pin power_out line (at 10.16 2.54 180) (length 2.54) - (name "OUT" (effects (font (size 1.27 1.27)))) - (number "11" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 10.16 2.54 180) (length 2.54) hide - (name "OUT" (effects (font (size 1.27 1.27)))) - (number "12" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 0 -10.16 90) (length 2.54) hide - (name "GND" (effects (font (size 1.27 1.27)))) - (number "13" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -10.16 2.54 0) (length 2.54) hide - (name "IN" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -10.16 2.54 0) (length 2.54) hide - (name "IN" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -10.16 0 0) (length 2.54) - (name "EN/UV" (effects (font (size 1.27 1.27)))) - (number "4" (effects (font (size 1.27 1.27)))) - ) - (pin open_collector line (at 10.16 -5.08 180) (length 2.54) - (name "PG" (effects (font (size 1.27 1.27)))) - (number "5" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -10.16 -2.54 0) (length 2.54) - (name "ILIM" (effects (font (size 1.27 1.27)))) - (number "6" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 10.16 -2.54 180) (length 2.54) - (name "PGFB" (effects (font (size 1.27 1.27)))) - (number "7" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -10.16 -5.08 0) (length 2.54) - (name "SET" (effects (font (size 1.27 1.27)))) - (number "8" (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 "9" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Regulator_Linear:LT3094xMSE" (in_bom yes) (on_board yes) - (property "Reference" "U" (at -6.35 8.89 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "LT3094xMSE" (at 1.27 8.89 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Package_SO:MSOP-12-1EP_3x4mm_P0.65mm_EP1.65x2.85mm" (at 0 10.795 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "https://www.analog.com/media/en/technical-documentation/data-sheets/LT3094.pdf" (at 0 2.54 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "linear negative voltage regulator low-noise" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "-500mA, Adjustable, Ultralow Noise, Ultrahigh PSRR RF Negative Linear Regulator, MSOP-12" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "MSOP*1EP*3x4mm*P0.65mm*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "LT3094xMSE_0_0" - (pin passive line (at 10.16 5.08 180) (length 2.54) hide - (name "OUT" (effects (font (size 1.27 1.27)))) - (number "12" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -10.16 5.08 0) (length 2.54) hide - (name "IN" (effects (font (size 1.27 1.27)))) - (number "13" (effects (font (size 1.27 1.27)))) - ) - ) - (symbol "LT3094xMSE_0_1" - (rectangle (start 7.62 7.62) (end -7.62 -7.62) - (stroke (width 0.254) (type default)) - (fill (type background)) - ) - ) - (symbol "LT3094xMSE_1_1" - (pin power_in line (at -10.16 5.08 0) (length 2.54) - (name "IN" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 10.16 2.54 180) (length 2.54) - (name "OUTS" (effects (font (size 1.27 1.27)))) - (number "10" (effects (font (size 1.27 1.27)))) - ) - (pin power_out line (at 10.16 5.08 180) (length 2.54) - (name "OUT" (effects (font (size 1.27 1.27)))) - (number "11" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -10.16 5.08 0) (length 2.54) hide - (name "IN" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -10.16 2.54 0) (length 2.54) - (name "EN/UV" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - (pin open_collector line (at -10.16 0 0) (length 2.54) - (name "PG" (effects (font (size 1.27 1.27)))) - (number "4" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 10.16 0 180) (length 2.54) - (name "PGFB" (effects (font (size 1.27 1.27)))) - (number "5" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 10.16 -2.54 180) (length 2.54) - (name "ILIM" (effects (font (size 1.27 1.27)))) - (number "6" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -10.16 -2.54 0) (length 2.54) - (name "VIOC" (effects (font (size 1.27 1.27)))) - (number "7" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -10.16 -5.08 0) (length 2.54) - (name "SET" (effects (font (size 1.27 1.27)))) - (number "8" (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 "9" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) - (property "Reference" "#PWR" (at 0 -6.35 0) - (effects (font (size 1.27 1.27)) hide) - ) - (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) - ) - (property "Datasheet" "" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "global power" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "GND_0_1" - (polyline - (pts - (xy 0 0) - (xy 0 -1.27) - (xy 1.27 -1.27) - (xy 0 -2.54) - (xy -1.27 -1.27) - (xy 0 -1.27) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - ) - (symbol "GND_1_1" - (pin power_in line (at 0 0 270) (length 0) hide - (name "GND" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - ) - ) - ) - - (junction (at 232.41 35.56) (diameter 0) (color 0 0 0 0) - (uuid 0445eef5-6ece-4d22-b3d3-216927ad6010) - ) - (junction (at 116.84 146.05) (diameter 0) (color 0 0 0 0) - (uuid 0ae82096-0994-4fb0-9a2a-d4ac4804abac) - ) - (junction (at 60.96 161.29) (diameter 0) (color 0 0 0 0) - (uuid 0cc45b5b-96b3-4284-9cae-a3a9e324a916) - ) - (junction (at 198.12 46.99) (diameter 0) (color 0 0 0 0) - (uuid 1171ce37-6ad7-4662-bb68-5592c945ebf3) - ) - (junction (at 85.09 176.53) (diameter 0) (color 0 0 0 0) - (uuid 1f8b2c0c-b042-4e2e-80f6-4959a27b238f) - ) - (junction (at 58.42 66.04) (diameter 0) (color 0 0 0 0) - (uuid 20b6fe7a-255d-43c3-b8ed-a153a57a359e) - ) - (junction (at 29.21 92.71) (diameter 0) (color 0 0 0 0) - (uuid 23589bbe-626c-4c13-a63c-26793b5ac723) - ) - (junction (at 29.21 66.04) (diameter 0) (color 0 0 0 0) - (uuid 25bc3602-3fb4-4a04-94e3-21ba22562c24) - ) - (junction (at 39.37 38.1) (diameter 0) (color 0 0 0 0) - (uuid 3b992cb3-c68b-4a86-8b08-220a5527ce46) - ) - (junction (at 114.3 38.1) (diameter 0) (color 0 0 0 0) - (uuid 3eba78c0-f09c-4d8a-8fcc-9365cb1b4ccf) - ) - (junction (at 80.01 176.53) (diameter 0) (color 0 0 0 0) - (uuid 4a850cb6-bb24-4274-a902-e49f34f0a0e3) - ) - (junction (at 116.84 151.13) (diameter 0) (color 0 0 0 0) - (uuid 4b03e854-02fe-44cc-bece-f8268b7cae54) - ) - (junction (at 64.77 66.04) (diameter 0) (color 0 0 0 0) - (uuid 55cea513-8fa6-4e89-8488-e9f86dd46aab) - ) - (junction (at 39.37 92.71) (diameter 0) (color 0 0 0 0) - (uuid 5bb303ab-7fea-41ae-90d2-2d8f6cedf6d5) - ) - (junction (at 49.53 134.62) (diameter 0) (color 0 0 0 0) - (uuid 5fc9acb6-6dbb-4598-825b-4b9e7c4c67c4) - ) - (junction (at 52.07 66.04) (diameter 0) (color 0 0 0 0) - (uuid 6781326c-6e0d-4753-8f28-0f5c687e01f9) - ) - (junction (at 52.07 92.71) (diameter 0) (color 0 0 0 0) - (uuid 6a4bad38-b71d-4950-b5e9-45e31bd5f9db) - ) - (junction (at 64.77 92.71) (diameter 0) (color 0 0 0 0) - (uuid 73cca0a6-14c0-4d43-bed2-5ef19f0a4138) - ) - (junction (at 93.98 66.04) (diameter 0) (color 0 0 0 0) - (uuid 74c7f4da-a927-4aa9-8a65-21556e2a3846) - ) - (junction (at 29.21 38.1) (diameter 0) (color 0 0 0 0) - (uuid 7544713a-5722-4529-b55e-93558f472e81) - ) - (junction (at 181.61 35.56) (diameter 0) (color 0 0 0 0) - (uuid 79770cd5-32d7-429a-8248-0d9e6212231a) - ) - (junction (at 102.87 176.53) (diameter 0) (color 0 0 0 0) - (uuid 79e31048-072a-4a40-a625-26bb0b5f046b) - ) - (junction (at 69.85 134.62) (diameter 0) (color 0 0 0 0) - (uuid 7c04618d-9115-4179-b234-a8faf854ea92) - ) - (junction (at 114.3 66.04) (diameter 0) (color 0 0 0 0) - (uuid 9390234f-bf3f-46cd-b6a0-8a438ec76e9f) - ) - (junction (at 55.88 66.04) (diameter 0) (color 0 0 0 0) - (uuid 9745385f-953d-4c48-9d05-7d8da7f8c50a) - ) - (junction (at 217.17 35.56) (diameter 0) (color 0 0 0 0) - (uuid 98914cc3-56fe-40bb-820a-3d157225c145) - ) - (junction (at 78.74 66.04) (diameter 0) (color 0 0 0 0) - (uuid 98c78427-acd5-4f90-9ad6-9f61c4809aec) - ) - (junction (at 59.69 134.62) (diameter 0) (color 0 0 0 0) - (uuid 998b7fa5-31a5-472e-9572-49d5226d6098) - ) - (junction (at 99.06 38.1) (diameter 0) (color 0 0 0 0) - (uuid 9b274d8f-ee13-420f-8126-083ba17d513e) - ) - (junction (at 121.92 146.05) (diameter 0) (color 0 0 0 0) - (uuid 9f80220c-1612-4589-b9ca-a5579617bdb8) - ) - (junction (at 39.37 66.04) (diameter 0) (color 0 0 0 0) - (uuid a07b6b2b-7179-4297-b163-5e47ffbe76d3) - ) - (junction (at 105.41 38.1) (diameter 0) (color 0 0 0 0) - (uuid aec7ebf0-d1d4-40f8-9c1b-90328cfb3f62) - ) - (junction (at 90.17 176.53) (diameter 0) (color 0 0 0 0) - (uuid b4300db7-1220-431a-b7c3-2edbdf8fa6fc) - ) - (junction (at 105.41 92.71) (diameter 0) (color 0 0 0 0) - (uuid b70421f2-a305-47ab-9429-5b2d70e93721) - ) - (junction (at 102.87 156.21) (diameter 0) (color 0 0 0 0) - (uuid b873bc5d-a9af-4bd9-afcb-87ce4d417120) - ) - (junction (at 102.87 165.1) (diameter 0) (color 0 0 0 0) - (uuid c04386e0-b49e-4fff-b380-675af13a62cb) - ) - (junction (at 105.41 66.04) (diameter 0) (color 0 0 0 0) - (uuid c094494a-f6f7-43fc-a007-4951484ddf3a) - ) - (junction (at 64.77 54.61) (diameter 0) (color 0 0 0 0) - (uuid cc4b7d79-6927-4c11-b583-0aab77ebd037) - ) - (junction (at 121.92 66.04) (diameter 0) (color 0 0 0 0) - (uuid ccc4cc25-ac17-45ef-825c-e079951ffb21) - ) - (junction (at 52.07 38.1) (diameter 0) (color 0 0 0 0) - (uuid dbba0eba-b1d1-4c70-b61d-9659ab97cea9) - ) - (junction (at 100.33 92.71) (diameter 0) (color 0 0 0 0) - (uuid de446c61-c9d2-4098-b2d0-04a2b98f6c71) - ) - (junction (at 38.1 134.62) (diameter 0) (color 0 0 0 0) - (uuid e4aa537c-eb9d-4dbb-ac87-fae46af42391) - ) - (junction (at 102.87 146.05) (diameter 0) (color 0 0 0 0) - (uuid e7bb7815-0d52-4bb8-b29a-8cf960bd2905) - ) - (junction (at 64.77 74.93) (diameter 0) (color 0 0 0 0) - (uuid eab7ae51-9516-4256-9a65-d4bad0210bbb) - ) - (junction (at 57.15 38.1) (diameter 0) (color 0 0 0 0) - (uuid f3c6326e-4550-4baf-bc0f-22e9ca273e14) - ) - (junction (at 116.84 156.21) (diameter 0) (color 0 0 0 0) - (uuid fef37e8b-0ff0-4da2-8a57-acaf19551d1a) - ) - - (no_connect (at 71.12 146.05) (uuid 1bdd5841-68b7-42e2-9447-cbdb608d8a08)) - (no_connect (at 210.82 38.1) (uuid 66218487-e316-4467-9eba-79d4626ab24e)) - (no_connect (at 68.58 87.63) (uuid 6eb069b2-6f39-4c1e-b379-abaf12e28719)) - (no_connect (at 68.58 85.09) (uuid 99c07feb-543d-488a-a1f8-bdc0f5f75508)) - (no_connect (at 88.9 45.72) (uuid ab89e396-047d-496c-aa08-acc65730e3ae)) - (no_connect (at 71.12 151.13) (uuid aeb03be9-98f0-43f6-9432-1bb35aa04bab)) - - (wire (pts (xy 58.42 66.04) (xy 64.77 66.04)) - (stroke (width 0) (type default)) - (uuid 0048f6af-51ae-4c48-ae7e-7d4f6c153481) - ) - (wire (pts (xy 102.87 156.21) (xy 109.22 156.21)) - (stroke (width 0) (type default)) - (uuid 011ee658-718d-416a-85fd-961729cd1ee5) - ) - (wire (pts (xy 58.42 63.5) (xy 58.42 66.04)) - (stroke (width 0) (type default)) - (uuid 0351df45-d042-41d4-ba35-88092c7be2fc) - ) - (wire (pts (xy 109.22 165.1) (xy 102.87 165.1)) - (stroke (width 0) (type default)) - (uuid 03c7f780-fc1b-487a-b30d-567d6c09fdc8) - ) - (wire (pts (xy 181.61 46.99) (xy 198.12 46.99)) - (stroke (width 0) (type default)) - (uuid 076046ab-4b56-4060-b8d9-0d80806d0277) - ) - (wire (pts (xy 39.37 92.71) (xy 52.07 92.71)) - (stroke (width 0) (type default)) - (uuid 07d160b6-23e1-4aa0-95cb-440482e6fc15) - ) - (wire (pts (xy 88.9 40.64) (xy 99.06 40.64)) - (stroke (width 0) (type default)) - (uuid 0e1ed1c5-7428-4dc7-b76e-49b2d5f8177d) - ) - (wire (pts (xy 59.69 134.62) (xy 59.69 135.89)) - (stroke (width 0) (type default)) - (uuid 0f31f11f-c374-4640-b9a4-07bbdba8d354) - ) - (wire (pts (xy 102.87 134.62) (xy 102.87 138.43)) - (stroke (width 0) (type default)) - (uuid 0f324b67-75ef-407f-8dbc-3c1fc5c2abba) - ) - (wire (pts (xy 121.92 153.67) (xy 121.92 156.21)) - (stroke (width 0) (type default)) - (uuid 0fafc6b9-fd35-4a55-9270-7a8e7ce3cb13) - ) - (wire (pts (xy 110.49 146.05) (xy 116.84 146.05)) - (stroke (width 0) (type default)) - (uuid 0fdc6f30-77bc-4e9b-8665-c8aa9acf5bf9) - ) - (wire (pts (xy 80.01 175.26) (xy 80.01 176.53)) - (stroke (width 0) (type default)) - (uuid 109caac1-5036-4f23-9a66-f569d871501b) - ) - (wire (pts (xy 78.74 50.8) (xy 78.74 66.04)) - (stroke (width 0) (type default)) - (uuid 15fe8f3d-6077-4e0e-81d0-8ec3f4538981) - ) - (wire (pts (xy 105.41 38.1) (xy 105.41 40.64)) - (stroke (width 0) (type default)) - (uuid 186037a3-8b8a-4c5c-ada0-bee25e0ae29a) - ) - (wire (pts (xy 57.15 134.62) (xy 59.69 134.62)) - (stroke (width 0) (type default)) - (uuid 18b7e157-ae67-48ad-bd7c-9fef6fe45b22) - ) - (wire (pts (xy 114.3 38.1) (xy 121.92 38.1)) - (stroke (width 0) (type default)) - (uuid 18d11f32-e1a6-4f29-8e3c-0bfeb07299bd) - ) - (wire (pts (xy 198.12 45.72) (xy 198.12 46.99)) - (stroke (width 0) (type default)) - (uuid 196a8dd5-5fd6-4c7f-ae4a-0104bd82e61b) - ) - (wire (pts (xy 71.12 161.29) (xy 68.58 161.29)) - (stroke (width 0) (type default)) - (uuid 19b0959e-a79b-43b2-a5ad-525ced7e9131) - ) - (wire (pts (xy 114.3 38.1) (xy 114.3 46.99)) - (stroke (width 0) (type default)) - (uuid 1b983025-da7a-45c2-88fe-f343699d1a18) - ) - (wire (pts (xy 64.77 54.61) (xy 64.77 58.42)) - (stroke (width 0) (type default)) - (uuid 1b9e7776-7f7c-4dc1-a708-9a30d9075f3e) - ) - (wire (pts (xy 116.84 151.13) (xy 99.06 151.13)) - (stroke (width 0) (type default)) - (uuid 1c68b844-c861-46b7-b734-0242168a4220) - ) - (wire (pts (xy 99.06 38.1) (xy 99.06 40.64)) - (stroke (width 0) (type default)) - (uuid 1da2b7da-9a7a-47f4-a946-a74aff96013e) - ) - (wire (pts (xy 52.07 38.1) (xy 57.15 38.1)) - (stroke (width 0) (type default)) - (uuid 1f9ae101-c652-4998-a503-17aedf3d5746) - ) - (wire (pts (xy 116.84 165.1) (xy 114.3 165.1)) - (stroke (width 0) (type default)) - (uuid 224768bc-6009-43ba-aa4a-70cbaa15b5a3) - ) - (wire (pts (xy 80.01 176.53) (xy 85.09 176.53)) - (stroke (width 0) (type default)) - (uuid 22bb6c80-05a9-4d89-98b0-f4c23fe6c1ce) - ) - (wire (pts (xy 88.9 38.1) (xy 99.06 38.1)) - (stroke (width 0) (type default)) - (uuid 240e5dac-6242-47a5-bbef-f76d11c715c0) - ) - (wire (pts (xy 39.37 38.1) (xy 52.07 38.1)) - (stroke (width 0) (type default)) - (uuid 24b72b0d-63b8-4e06-89d0-e94dcf39a600) - ) - (wire (pts (xy 29.21 92.71) (xy 39.37 92.71)) - (stroke (width 0) (type default)) - (uuid 283c990c-ae5a-4e41-a3ad-b40ca29fe90e) - ) - (wire (pts (xy 105.41 92.71) (xy 105.41 96.52)) - (stroke (width 0) (type default)) - (uuid 28e6c5f4-1793-47ea-8068-190ae9ed0a06) - ) - (wire (pts (xy 58.42 66.04) (xy 58.42 68.58)) - (stroke (width 0) (type default)) - (uuid 29bb7297-26fb-4776-9266-2355d022bab0) - ) - (wire (pts (xy 121.92 146.05) (xy 125.73 146.05)) - (stroke (width 0) (type default)) - (uuid 2b5a9ad3-7ec4-447d-916c-47adf5f9674f) - ) - (wire (pts (xy 69.85 134.62) (xy 71.12 134.62)) - (stroke (width 0) (type default)) - (uuid 2db910a0-b943-40b4-b81f-068ba5265f56) - ) - (wire (pts (xy 60.96 176.53) (xy 80.01 176.53)) - (stroke (width 0) (type default)) - (uuid 31540a7e-dc9e-4e4d-96b1-dab15efa5f4b) - ) - (wire (pts (xy 105.41 45.72) (xy 105.41 66.04)) - (stroke (width 0) (type default)) - (uuid 35a9f71f-ba35-47f6-814e-4106ac36c51e) - ) - (wire (pts (xy 78.74 66.04) (xy 78.74 77.47)) - (stroke (width 0) (type default)) - (uuid 36d783e7-096f-4c97-9672-7e08c083b87b) - ) - (wire (pts (xy 105.41 90.17) (xy 105.41 92.71)) - (stroke (width 0) (type default)) - (uuid 377e1400-5253-43a3-a6fc-e5139c31c1d3) - ) - (wire (pts (xy 93.98 85.09) (xy 93.98 66.04)) - (stroke (width 0) (type default)) - (uuid 38057efb-0775-4971-8d61-1604845558c8) - ) - (wire (pts (xy 68.58 45.72) (xy 64.77 45.72)) - (stroke (width 0) (type default)) - (uuid 389ba585-b204-43ab-9e02-a53537a0fba2) - ) - (wire (pts (xy 217.17 35.56) (xy 232.41 35.56)) - (stroke (width 0) (type default)) - (uuid 3b686d17-1000-4762-ba31-589d599a3edf) - ) - (wire (pts (xy 49.53 134.62) (xy 52.07 134.62)) - (stroke (width 0) (type default)) - (uuid 3f8a5430-68a9-4732-9b89-4e00dd8ae219) - ) - (wire (pts (xy 116.84 146.05) (xy 116.84 151.13)) - (stroke (width 0) (type default)) - (uuid 4107d40a-e5df-4255-aacc-13f9928e090c) - ) - (wire (pts (xy 38.1 134.62) (xy 41.91 134.62)) - (stroke (width 0) (type default)) - (uuid 42ff012d-5eb7-42b9-bb45-415cf26799c6) - ) - (wire (pts (xy 29.21 38.1) (xy 29.21 49.53)) - (stroke (width 0) (type default)) - (uuid 44ec7c0d-cbe9-4ccf-8efc-eaa4f7b61175) - ) - (wire (pts (xy 88.9 43.18) (xy 92.71 43.18)) - (stroke (width 0) (type default)) - (uuid 453819cf-4fd5-4d03-ae44-6b0051a4b481) - ) - (wire (pts (xy 29.21 66.04) (xy 39.37 66.04)) - (stroke (width 0) (type default)) - (uuid 4a54c707-7b6f-4a3d-a74d-5e3526114aba) - ) - (wire (pts (xy 29.21 73.66) (xy 29.21 66.04)) - (stroke (width 0) (type default)) - (uuid 4aa97874-2fd2-414c-b381-9420384c2fd8) - ) - (wire (pts (xy 114.3 54.61) (xy 114.3 66.04)) - (stroke (width 0) (type default)) - (uuid 53e34696-241f-47e5-a477-f469335c8a61) - ) - (wire (pts (xy 116.84 156.21) (xy 116.84 165.1)) - (stroke (width 0) (type default)) - (uuid 593b8647-0095-46cc-ba23-3cf2a86edb5e) - ) - (wire (pts (xy 88.9 87.63) (xy 93.98 87.63)) - (stroke (width 0) (type default)) - (uuid 5a315704-1534-4feb-aa43-2fbf16bcc400) - ) - (wire (pts (xy 52.07 66.04) (xy 52.07 85.09)) - (stroke (width 0) (type default)) - (uuid 5b0a5a46-7b51-4262-a80e-d33dd1806615) - ) - (wire (pts (xy 68.58 82.55) (xy 64.77 82.55)) - (stroke (width 0) (type default)) - (uuid 5c1bf256-7652-47ec-a0e3-f4c9e18b3725) - ) - (wire (pts (xy 57.15 38.1) (xy 68.58 38.1)) - (stroke (width 0) (type default)) - (uuid 5c30b9b4-3014-4f50-9329-27a539b67e01) - ) - (wire (pts (xy 52.07 44.45) (xy 52.07 66.04)) - (stroke (width 0) (type default)) - (uuid 5ca4be1c-537e-4a4a-b344-d0c8ffde8546) - ) - (wire (pts (xy 100.33 92.71) (xy 105.41 92.71)) - (stroke (width 0) (type default)) - (uuid 60aa0ce8-9d0e-48ca-bbf9-866403979e9b) - ) - (wire (pts (xy 105.41 38.1) (xy 114.3 38.1)) - (stroke (width 0) (type default)) - (uuid 6241e6d3-a754-45b6-9f7c-e43019b93226) - ) - (wire (pts (xy 121.92 143.51) (xy 121.92 146.05)) - (stroke (width 0) (type default)) - (uuid 626679e8-6101-4722-ac57-5b8d9dab4c8b) - ) - (wire (pts (xy 58.42 74.93) (xy 64.77 74.93)) - (stroke (width 0) (type default)) - (uuid 644ae9fc-3c8e-4089-866e-a12bf371c3e9) - ) - (wire (pts (xy 55.88 66.04) (xy 58.42 66.04)) - (stroke (width 0) (type default)) - (uuid 65094104-90c2-405a-a481-f4eee3a0ca98) - ) - (wire (pts (xy 64.77 45.72) (xy 64.77 54.61)) - (stroke (width 0) (type default)) - (uuid 68074a7c-627a-4e3f-84eb-a992a6ad1bbc) - ) - (wire (pts (xy 102.87 175.26) (xy 102.87 176.53)) - (stroke (width 0) (type default)) - (uuid 6b7c1048-12b6-46b2-b762-fa3ad30472dd) - ) - (wire (pts (xy 39.37 38.1) (xy 39.37 48.26)) - (stroke (width 0) (type default)) - (uuid 6c3b916b-de1c-47c7-b5a1-64b9dced61c8) - ) - (wire (pts (xy 38.1 134.62) (xy 38.1 135.89)) - (stroke (width 0) (type default)) - (uuid 6d1d60ff-408a-47a7-892f-c5cf9ef6ca75) - ) - (wire (pts (xy 90.17 170.18) (xy 90.17 176.53)) - (stroke (width 0) (type default)) - (uuid 700e8b73-5976-423f-a3f3-ab3d9f3e9760) - ) - (wire (pts (xy 88.9 85.09) (xy 93.98 85.09)) - (stroke (width 0) (type default)) - (uuid 71a6945f-a3fb-4751-8132-4ae3d1f3b272) - ) - (wire (pts (xy 102.87 176.53) (xy 102.87 179.07)) - (stroke (width 0) (type default)) - (uuid 72508b1f-1505-46cb-9d37-2081c5a12aca) - ) - (wire (pts (xy 64.77 66.04) (xy 64.77 68.58)) - (stroke (width 0) (type default)) - (uuid 72b36951-3ec7-4569-9c88-cf9b4afe1cae) - ) - (wire (pts (xy 58.42 54.61) (xy 64.77 54.61)) - (stroke (width 0) (type default)) - (uuid 736d7afc-d7c8-48d7-941a-45dc784d57a0) - ) - (wire (pts (xy 121.92 146.05) (xy 121.92 148.59)) - (stroke (width 0) (type default)) - (uuid 752417ee-7d0b-4ac8-a22c-26669881a2ab) - ) - (wire (pts (xy 29.21 78.74) (xy 29.21 92.71)) - (stroke (width 0) (type default)) - (uuid 7760a75a-d74b-4185-b34e-cbc7b2c339b6) - ) - (wire (pts (xy 102.87 146.05) (xy 105.41 146.05)) - (stroke (width 0) (type default)) - (uuid 7a74c4b1-6243-4a12-85a2-bc41d346e7aa) - ) - (wire (pts (xy 55.88 43.18) (xy 55.88 66.04)) - (stroke (width 0) (type default)) - (uuid 7b44bea5-6530-4a9c-9313-0a61827a601a) - ) - (wire (pts (xy 252.73 152.4) (xy 252.73 153.67)) - (stroke (width 0) (type default)) - (uuid 7d0dab95-9e7a-486e-a1d7-fc48860fd57d) - ) - (wire (pts (xy 102.87 165.1) (xy 102.87 170.18)) - (stroke (width 0) (type default)) - (uuid 7d76d925-f900-42af-a03f-bb32d2381b09) - ) - (wire (pts (xy 85.09 176.53) (xy 90.17 176.53)) - (stroke (width 0) (type default)) - (uuid 802c2dc3-ca9f-491e-9d66-7893e89ac34c) - ) - (wire (pts (xy 121.92 66.04) (xy 121.92 68.58)) - (stroke (width 0) (type default)) - (uuid 8087f566-a94d-4bbc-985b-e49ee7762296) - ) - (wire (pts (xy 88.9 92.71) (xy 100.33 92.71)) - (stroke (width 0) (type default)) - (uuid 814763c2-92e5-4a2c-941c-9bbd073f6e87) - ) - (wire (pts (xy 102.87 143.51) (xy 102.87 146.05)) - (stroke (width 0) (type default)) - (uuid 8195a7cf-4576-44dd-9e0e-ee048fdb93dd) - ) - (wire (pts (xy 39.37 80.01) (xy 39.37 92.71)) - (stroke (width 0) (type default)) - (uuid 8199bd75-314e-4018-90d9-69707de2c7b2) - ) - (wire (pts (xy 39.37 66.04) (xy 39.37 55.88)) - (stroke (width 0) (type default)) - (uuid 844d7d7a-b386-45a8-aaf6-bf41bbcb43b5) - ) - (wire (pts (xy 58.42 54.61) (xy 58.42 58.42)) - (stroke (width 0) (type default)) - (uuid 84e5506c-143e-495f-9aa4-d3a71622f213) - ) - (wire (pts (xy 55.88 43.18) (xy 68.58 43.18)) - (stroke (width 0) (type default)) - (uuid 853ee787-6e2c-4f32-bc75-6c17337dd3d5) - ) - (wire (pts (xy 29.21 38.1) (xy 39.37 38.1)) - (stroke (width 0) (type default)) - (uuid 869d6302-ae22-478f-9723-3feacbb12eef) - ) - (wire (pts (xy 217.17 35.56) (xy 217.17 38.1)) - (stroke (width 0) (type default)) - (uuid 88610282-a92d-4c3d-917a-ea95d59e0759) - ) - (wire (pts (xy 60.96 176.53) (xy 60.96 161.29)) - (stroke (width 0) (type default)) - (uuid 8c1605f9-6c91-4701-96bf-e753661d5e23) - ) - (wire (pts (xy 64.77 66.04) (xy 78.74 66.04)) - (stroke (width 0) (type default)) - (uuid 8eea310c-891f-4ed5-ad8f-9a346ea5070b) - ) - (wire (pts (xy 123.19 66.04) (xy 121.92 66.04)) - (stroke (width 0) (type default)) - (uuid 91932657-485f-403e-9b3a-6524daa75a04) - ) - (wire (pts (xy 52.07 38.1) (xy 52.07 39.37)) - (stroke (width 0) (type default)) - (uuid 9269324a-e4d4-4f1e-9a6e-847d4b99d2a7) - ) - (wire (pts (xy 59.69 134.62) (xy 69.85 134.62)) - (stroke (width 0) (type default)) - (uuid 96de0051-7945-413a-9219-1ab367546962) - ) - (wire (pts (xy 210.82 35.56) (xy 217.17 35.56)) - (stroke (width 0) (type default)) - (uuid 99332785-d9f1-4363-9377-26ddc18e6d2c) - ) - (wire (pts (xy 241.3 43.18) (xy 236.22 43.18)) - (stroke (width 0) (type default)) - (uuid 9b6bb172-1ac4-440a-ac75-c1917d9d59c7) - ) - (wire (pts (xy 57.15 38.1) (xy 57.15 40.64)) - (stroke (width 0) (type default)) - (uuid 9cb12cc8-7f1a-4a01-9256-c119f11a8a02) - ) - (wire (pts (xy 114.3 66.04) (xy 121.92 66.04)) - (stroke (width 0) (type default)) - (uuid 9e813ec2-d4ce-4e2e-b379-c6fedb4c45db) - ) - (wire (pts (xy 93.98 66.04) (xy 105.41 66.04)) - (stroke (width 0) (type default)) - (uuid 9f1ebb0b-b103-40a2-b12f-fe480ac966e8) - ) - (wire (pts (xy 49.53 134.62) (xy 49.53 135.89)) - (stroke (width 0) (type default)) - (uuid a53767ed-bb28-4f90-abe0-e0ea734812a4) - ) - (wire (pts (xy 52.07 66.04) (xy 39.37 66.04)) - (stroke (width 0) (type default)) - (uuid a62609cd-29b7-4918-b97d-7b2404ba61cf) - ) - (wire (pts (xy 24.13 92.71) (xy 29.21 92.71)) - (stroke (width 0) (type default)) - (uuid a6738794-75ae-48a6-8949-ed8717400d71) - ) - (wire (pts (xy 64.77 90.17) (xy 64.77 92.71)) - (stroke (width 0) (type default)) - (uuid ac632927-ef4b-405e-8586-5e03e52e75ea) - ) - (wire (pts (xy 100.33 90.17) (xy 100.33 92.71)) - (stroke (width 0) (type default)) - (uuid ae18e2f9-e6d1-4e30-84be-2f74448ce1be) - ) - (wire (pts (xy 88.9 90.17) (xy 100.33 90.17)) - (stroke (width 0) (type default)) - (uuid ae77c3c8-1144-468e-ad5b-a0b4090735bd) - ) - (wire (pts (xy 181.61 43.18) (xy 181.61 46.99)) - (stroke (width 0) (type default)) - (uuid b0271cdd-de22-4bf4-8f55-fc137cfbd4ec) - ) - (wire (pts (xy 64.77 92.71) (xy 68.58 92.71)) - (stroke (width 0) (type default)) - (uuid b42430aa-e0c1-412b-b086-dd78fa9624b2) - ) - (wire (pts (xy 33.02 134.62) (xy 38.1 134.62)) - (stroke (width 0) (type default)) - (uuid b6135480-ace6-42b2-9c47-856ef57cded1) - ) - (wire (pts (xy 24.13 38.1) (xy 29.21 38.1)) - (stroke (width 0) (type default)) - (uuid b78cb2c1-ae4b-4d9b-acd8-d7fe342342f2) - ) - (wire (pts (xy 114.3 156.21) (xy 116.84 156.21)) - (stroke (width 0) (type default)) - (uuid b9bb0e73-161a-4d06-b6eb-a9f66d8a95f5) - ) - (wire (pts (xy 64.77 90.17) (xy 68.58 90.17)) - (stroke (width 0) (type default)) - (uuid bd59445d-26f8-493b-b919-42a7c4846f45) - ) - (wire (pts (xy 181.61 35.56) (xy 185.42 35.56)) - (stroke (width 0) (type default)) - (uuid bde95c06-433a-4c03-bc48-e3abcdb4e054) - ) - (wire (pts (xy 105.41 66.04) (xy 105.41 85.09)) - (stroke (width 0) (type default)) - (uuid c3b3d7f4-943f-4cff-b180-87ef3e1bcbff) - ) - (wire (pts (xy 99.06 38.1) (xy 105.41 38.1)) - (stroke (width 0) (type default)) - (uuid c4cab9c5-d6e5-4660-b910-603a51b56783) - ) - (wire (pts (xy 99.06 156.21) (xy 102.87 156.21)) - (stroke (width 0) (type default)) - (uuid c76d4423-ef1b-4a6f-8176-33d65f2877bb) - ) - (wire (pts (xy 57.15 40.64) (xy 68.58 40.64)) - (stroke (width 0) (type default)) - (uuid c7e7067c-5f5e-48d8-ab59-df26f9b35863) - ) - (wire (pts (xy 105.41 92.71) (xy 115.57 92.71)) - (stroke (width 0) (type default)) - (uuid c8a44971-63c1-4a19-879d-b6647b2dc08d) - ) - (wire (pts (xy 232.41 35.56) (xy 232.41 39.37)) - (stroke (width 0) (type default)) - (uuid cebb9021-66d3-4116-98d4-5e6f3c1552be) - ) - (wire (pts (xy 64.77 73.66) (xy 64.77 74.93)) - (stroke (width 0) (type default)) - (uuid d0d2eee9-31f6-44fa-8149-ebb4dc2dc0dc) - ) - (wire (pts (xy 64.77 82.55) (xy 64.77 74.93)) - (stroke (width 0) (type default)) - (uuid d1d9f1cc-8e43-494f-9307-73266aff1e2c) - ) - (wire (pts (xy 52.07 90.17) (xy 52.07 92.71)) - (stroke (width 0) (type default)) - (uuid d22a5755-2f54-47b8-a9ac-611b6e5106b3) - ) - (wire (pts (xy 99.06 134.62) (xy 102.87 134.62)) - (stroke (width 0) (type default)) - (uuid d2d7bea6-0c22-495f-8666-323b30e03150) - ) - (wire (pts (xy 232.41 35.56) (xy 241.3 35.56)) - (stroke (width 0) (type default)) - (uuid d9a3981c-883f-4797-87dd-8a458d85bfa5) - ) - (wire (pts (xy 105.41 35.56) (xy 105.41 38.1)) - (stroke (width 0) (type default)) - (uuid da6f4122-0ecc-496f-b0fd-e4abef534976) - ) - (wire (pts (xy 99.06 146.05) (xy 102.87 146.05)) - (stroke (width 0) (type default)) - (uuid e0f06b5c-de63-4833-a591-ca9e19217a35) - ) - (wire (pts (xy 175.26 35.56) (xy 181.61 35.56)) - (stroke (width 0) (type default)) - (uuid e17e6c0e-7e5b-43f0-ad48-0a2760b45b04) - ) - (wire (pts (xy 78.74 66.04) (xy 93.98 66.04)) - (stroke (width 0) (type default)) - (uuid e1aadc94-9cae-418b-ac0a-28f8dc144fb9) - ) - (wire (pts (xy 29.21 54.61) (xy 29.21 66.04)) - (stroke (width 0) (type default)) - (uuid e1b88aa4-d887-4eea-83ff-5c009f4390c4) - ) - (wire (pts (xy 64.77 63.5) (xy 64.77 66.04)) - (stroke (width 0) (type default)) - (uuid e472dac4-5b65-4920-b8b2-6065d140a69d) - ) - (wire (pts (xy 69.85 134.62) (xy 69.85 140.97)) - (stroke (width 0) (type default)) - (uuid e4d2f565-25a0-48c6-be59-f4bf31ad2558) - ) - (wire (pts (xy 181.61 38.1) (xy 181.61 35.56)) - (stroke (width 0) (type default)) - (uuid e4e20505-1208-4100-a4aa-676f50844c06) - ) - (wire (pts (xy 69.85 140.97) (xy 71.12 140.97)) - (stroke (width 0) (type default)) - (uuid e502d1d5-04b0-4d4b-b5c3-8c52d09668e7) - ) - (wire (pts (xy 85.09 170.18) (xy 85.09 176.53)) - (stroke (width 0) (type default)) - (uuid e5203297-b913-4288-a576-12a92185cb52) - ) - (wire (pts (xy 71.12 156.21) (xy 68.58 156.21)) - (stroke (width 0) (type default)) - (uuid e67b9f8c-019b-4145-98a4-96545f6bb128) - ) - (wire (pts (xy 52.07 92.71) (xy 64.77 92.71)) - (stroke (width 0) (type default)) - (uuid e9932893-fbd4-4f73-bf53-957a83c70ab2) - ) - (wire (pts (xy 52.07 66.04) (xy 55.88 66.04)) - (stroke (width 0) (type default)) - (uuid ea486ae2-d4eb-4431-85cb-2b5a9e761911) - ) - (wire (pts (xy 39.37 72.39) (xy 39.37 66.04)) - (stroke (width 0) (type default)) - (uuid ebca7c5e-ae52-43e5-ac6c-69a96a9a5b24) - ) - (wire (pts (xy 116.84 151.13) (xy 116.84 156.21)) - (stroke (width 0) (type default)) - (uuid ed8a7f02-cf05-41d0-97b4-4388ef205e73) - ) - (wire (pts (xy 58.42 73.66) (xy 58.42 74.93)) - (stroke (width 0) (type default)) - (uuid ee41cb8e-512d-41d2-81e1-3c50fff32aeb) - ) - (wire (pts (xy 90.17 176.53) (xy 102.87 176.53)) - (stroke (width 0) (type default)) - (uuid eed466bf-cd88-4860-9abf-41a594ca08bd) - ) - (wire (pts (xy 60.96 156.21) (xy 63.5 156.21)) - (stroke (width 0) (type default)) - (uuid f1447ad6-651c-45be-a2d6-33bddf672c2c) - ) - (wire (pts (xy 232.41 46.99) (xy 232.41 57.15)) - (stroke (width 0) (type default)) - (uuid f1782535-55f4-4299-bd4f-6f51b0b7259c) - ) - (wire (pts (xy 116.84 146.05) (xy 121.92 146.05)) - (stroke (width 0) (type default)) - (uuid f1e619ac-5067-41df-8384-776ec70a6093) - ) - (wire (pts (xy 198.12 46.99) (xy 198.12 49.53)) - (stroke (width 0) (type default)) - (uuid f357ddb5-3f44-43b0-b00d-d64f5c62ba4a) - ) - (wire (pts (xy 105.41 66.04) (xy 114.3 66.04)) - (stroke (width 0) (type default)) - (uuid f64497d1-1d62-44a4-8e5e-6fba4ebc969a) - ) - (wire (pts (xy 63.5 161.29) (xy 60.96 161.29)) - (stroke (width 0) (type default)) - (uuid f6c644f4-3036-41a6-9e14-2c08c079c6cd) - ) - (wire (pts (xy 102.87 156.21) (xy 102.87 165.1)) - (stroke (width 0) (type default)) - (uuid f7667b23-296e-4362-a7e3-949632c8954b) - ) - (wire (pts (xy 60.96 161.29) (xy 60.96 156.21)) - (stroke (width 0) (type default)) - (uuid f8bd6470-fafd-47f2-8ed5-9449988187ce) - ) - (wire (pts (xy 46.99 134.62) (xy 49.53 134.62)) - (stroke (width 0) (type default)) - (uuid f9403623-c00c-4b71-bc5c-d763ff009386) - ) - - (text "Connect 10k-trimpot:\nVishay 534B1103JC" (at 234.95 50.8 0) - (effects (font (size 1.524 1.524)) (justify left bottom)) - (uuid 2b529b81-6f8e-4786-b650-da5c23d6c7ed) - ) - - (hierarchical_label "+15V" (shape input) (at 33.02 134.62 180) (fields_autoplaced) - (effects (font (size 1.524 1.524)) (justify right)) - (uuid 03e29079-9140-4699-aec9-035e4f63162c) - ) - (hierarchical_label "+5V" (shape output) (at 125.73 146.05 0) (fields_autoplaced) - (effects (font (size 1.524 1.524)) (justify left)) - (uuid 0f05e415-1c33-4edd-89f9-4463269484aa) - ) - (hierarchical_label "+12V" (shape output) (at 121.92 38.1 0) (fields_autoplaced) - (effects (font (size 1.524 1.524)) (justify left)) - (uuid 2194fa87-ee11-4c2a-ac7d-f8a50c433b6d) - ) - (hierarchical_label "+15V" (shape input) (at 24.13 38.1 180) (fields_autoplaced) - (effects (font (size 1.524 1.524)) (justify right)) - (uuid 36a7a440-daa3-4902-b143-21669ae13270) - ) - (hierarchical_label "+15V" (shape input) (at 92.71 43.18 0) (fields_autoplaced) - (effects (font (size 1.524 1.524)) (justify left)) - (uuid 3e5cf107-5fe2-4672-949e-ce890e774227) - ) - (hierarchical_label "10V_ref" (shape output) (at 241.3 35.56 0) (fields_autoplaced) - (effects (font (size 1.524 1.524)) (justify left)) - (uuid 4c28b40e-c491-4f27-aec8-9120120d1b3a) - ) - (hierarchical_label "-15V" (shape input) (at 24.13 92.71 180) (fields_autoplaced) - (effects (font (size 1.524 1.524)) (justify right)) - (uuid 5150e971-02b8-403c-abe7-16a067f053d6) - ) - (hierarchical_label "-15V" (shape input) (at 93.98 87.63 0) (fields_autoplaced) - (effects (font (size 1.524 1.524)) (justify left)) - (uuid 61eaca7e-e23a-4616-981f-f1746e051b27) - ) - (hierarchical_label "-12V" (shape output) (at 115.57 92.71 0) (fields_autoplaced) - (effects (font (size 1.524 1.524)) (justify left)) - (uuid b7944ed5-490a-4894-939d-8d976448ff1d) - ) - (hierarchical_label "+12V" (shape input) (at 175.26 35.56 180) (fields_autoplaced) - (effects (font (size 1.524 1.524)) (justify right)) - (uuid e61e48c8-2693-46c5-9234-2d7b0c086b44) - ) - (hierarchical_label "SET" (shape output) (at 241.3 43.18 0) (fields_autoplaced) - (effects (font (size 1.524 1.524)) (justify left)) - (uuid fc9dc928-aa70-481e-af14-14ab0a638df1) - ) - - (symbol (lib_id "Device:C_Small") (at 52.07 87.63 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b054b90) - (property "Reference" "C4" (at 52.324 85.852 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "10u" (at 52.324 89.662 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" (at 52.07 87.63 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 52.07 87.63 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Taiyo Yuden" (at 52.07 87.63 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "GMK325BJ106MN-T" (at 52.07 87.63 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid a4cd8c69-2e6c-4e06-9010-1acb722fbd46)) - (pin "2" (uuid 755ec021-528e-4493-99b4-197d8699447f)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "C4") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R_Small") (at 64.77 60.96 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b054c38) - (property "Reference" "R1" (at 65.532 60.452 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "121k" (at 65.532 61.976 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 64.77 60.96 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 64.77 60.96 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Susumu" (at 64.77 60.96 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "RR0816P-1213-D-09D" (at 64.77 60.96 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 8f9f0312-a6da-44a7-9598-9e2034eb733d)) - (pin "2" (uuid 7ba59bbf-c7d0-435d-8273-5aa1d7f3b8a2)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "R1") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C_Small") (at 58.42 71.12 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b054c4b) - (property "Reference" "C9" (at 58.674 69.342 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "100n" (at 58.674 73.152 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_SMD:C_1206_3216Metric" (at 58.42 71.12 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 58.42 71.12 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "KEMET" (at 58.42 71.12 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "C1206C104K3GEC7210" (at 58.42 71.12 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid dbb13b1e-989e-4557-9034-dc152cfe341e)) - (pin "2" (uuid 5a30ba7c-bc1e-4fda-91d0-69fdb034ba0c)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "C9") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "LinearTechnology:LT8610") (at 85.09 172.72 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b0ada64) - (property "Reference" "U6" (at 76.2 130.81 0) - (effects (font (size 1.524 1.524))) - ) - (property "Value" "LT8610" (at 78.74 128.27 0) - (effects (font (size 1.524 1.524))) - ) - (property "Footprint" "Package_SO:MSOP-16-1EP_3x4.039mm_P0.5mm_EP1.651x2.845mm" (at 85.09 172.72 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "Datasheet" "" (at 85.09 172.72 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "MFN" "Analog Devices" (at 85.09 172.72 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "LT8610EMSE#PBF" (at 85.09 172.72 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 57c9ff08-1242-4aec-9c1d-c4148332469b)) - (pin "10" (uuid a28781bf-a30f-45a3-a62f-4223427e99bb)) - (pin "11" (uuid eb704bba-b0fe-461b-914f-adac5d2d4f73)) - (pin "12" (uuid 8e71bbc6-fdb8-4e8a-bb2d-459b2950824e)) - (pin "13" (uuid a6d9fe07-74f1-453e-9b71-c7eb8bbf8012)) - (pin "14" (uuid ef8dbda2-18ee-4089-9072-fcdcaff4ad05)) - (pin "15" (uuid 196de597-b27e-4294-b02d-4857beecbd69)) - (pin "16" (uuid d5e8ecca-ec2d-4f63-aa4f-9844d6ae6a02)) - (pin "17" (uuid 9faae3fc-22e7-4475-98e1-cdc9bb414201)) - (pin "2" (uuid b41f0a60-c04e-4329-9d23-febe0772aebc)) - (pin "3" (uuid 39aa3321-0941-4b4e-9381-09d060f8e005)) - (pin "4" (uuid 3249cfd9-c579-4701-932e-6f4ee1ed0b42)) - (pin "5" (uuid 606111c7-7e2d-4cf1-b74a-0edb41c5417f)) - (pin "6" (uuid 29b9a0e5-0d4a-427b-b6bb-7001dc45a4f7)) - (pin "7" (uuid 1cc187f8-eccc-4731-bab6-fe316f042d7d)) - (pin "8" (uuid 97f68ca3-a6e6-4df8-bb83-bbd9b1f88258)) - (pin "9" (uuid d75139c9-6bbf-4bff-a021-8da65b8dbc4a)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "U6") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C_Small") (at 38.1 138.43 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b0ae6a5) - (property "Reference" "C1" (at 38.354 136.652 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "4.7u" (at 38.354 140.462 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (at 38.1 138.43 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 38.1 138.43 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Wurth Electronics" (at 38.1 138.43 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "885012107013" (at 38.1 138.43 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 74ed0eda-50ab-4573-b735-6618cab127a4)) - (pin "2" (uuid 17044c77-81ff-4883-854b-1e9ae86345dd)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "C1") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C_Small") (at 66.04 156.21 90) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b0ae9b6) - (property "Reference" "C6" (at 64.262 155.956 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "10n" (at 68.072 155.956 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 66.04 156.21 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 66.04 156.21 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Murata Electronics" (at 66.04 156.21 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "GRM1885C1H103JA01D" (at 66.04 156.21 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 2c47ee7f-cce9-4170-9b8e-63a86e5349b8)) - (pin "2" (uuid a948e7d6-964b-45a4-9755-16fae8e3d3e6)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "C6") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C_Small") (at 66.04 161.29 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b0aea0f) - (property "Reference" "C7" (at 67.818 161.544 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "1u" (at 64.008 161.544 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (at 66.04 161.29 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 66.04 161.29 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Taiyo Yuden" (at 66.04 161.29 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "UMK212B7105KG-T" (at 66.04 161.29 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 27fb32ec-fd6f-4c9f-9b67-4ef789a458a6)) - (pin "2" (uuid 388c6a47-1f62-4c73-8f76-760c4b8852ec)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "C7") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C_Small") (at 111.76 165.1 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b0aeff1) - (property "Reference" "C16" (at 113.538 165.354 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "10p" (at 109.728 165.354 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 111.76 165.1 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 111.76 165.1 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Wurth Electronics" (at 111.76 165.1 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "885012006051" (at 111.76 165.1 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 90596f6f-56e1-467d-95a1-673fc402addb)) - (pin "2" (uuid ad362c4a-d6fc-42f8-b835-58c29e5853e6)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "C16") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R_Small") (at 80.01 172.72 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b0af358) - (property "Reference" "R5" (at 80.772 172.212 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "52.3k" (at 80.772 173.736 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 80.01 172.72 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 80.01 172.72 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Susumu" (at 80.01 172.72 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "RR0816P-5232-D-70C" (at 80.01 172.72 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid c5ffde6b-5847-429b-85ba-1be95d28c756)) - (pin "2" (uuid 518a3875-a78a-460c-b783-de70a8155894)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "R5") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R_Small") (at 102.87 172.72 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b0af3b3) - (property "Reference" "R13" (at 103.632 172.212 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "243k" (at 103.632 173.736 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 102.87 172.72 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 102.87 172.72 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Susumu" (at 102.87 172.72 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "RR0816P-2433-D-38D" (at 102.87 172.72 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid a1fa6193-abe0-4159-b133-4939b22d07b0)) - (pin "2" (uuid cde48d42-2fd7-4cc2-a4cb-00dec865dd15)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "R13") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R_Small") (at 111.76 156.21 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b0af408) - (property "Reference" "R15" (at 112.268 156.972 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "1M" (at 110.744 156.972 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 111.76 156.21 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 111.76 156.21 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Panasonic" (at 111.76 156.21 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "ERJ-3RED1004V" (at 111.76 156.21 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid cf0ee854-7874-4fb1-98ed-ce2f7a980ab8)) - (pin "2" (uuid ae3e27f4-026a-44e0-818d-6b524095dd17)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "R15") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:L_Small") (at 107.95 146.05 90) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b0af459) - (property "Reference" "L3" (at 106.68 148.59 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "4.7u" (at 109.22 151.13 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "custom:Coilcraft_MSS1278T" (at 107.95 146.05 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 107.95 146.05 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Coilcraft" (at 107.95 146.05 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "MSS1278T-472MLD" (at 107.95 146.05 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 7abb16f0-1883-49d5-8967-d115b1455d42)) - (pin "2" (uuid 1cd37efe-ca57-45a4-a971-e28ac0e2e0d3)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "L3") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:L_Small") (at 54.61 134.62 90) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b0affc6) - (property "Reference" "L2" (at 53.594 133.858 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "4.7u" (at 55.626 133.858 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "custom:Coilcraft_MSS1278T" (at 54.61 134.62 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 54.61 134.62 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Coilcraft" (at 54.61 134.62 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "MSS1278T-472MLD" (at 54.61 134.62 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid d82f5c5a-5c2d-4d1c-831d-3be626f3b177)) - (pin "2" (uuid ef073808-3ab3-4fb4-9ee1-a380f88529c0)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "L2") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:FerriteBead_Small") (at 44.45 134.62 90) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b0b0023) - (property "Reference" "FB1" (at 43.18 132.08 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "TDK MPZ2012S221A" (at 45.72 132.08 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Inductor_SMD:L_0805_2012Metric" (at 44.45 136.398 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 44.45 134.62 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "TDK" (at 44.45 134.62 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "MPZ2012S221AT000" (at 44.45 134.62 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 00a22675-8675-4776-b59b-31b0f244fa71)) - (pin "2" (uuid 8ebcb119-131b-4650-a6e0-c0955a371394)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "FB1") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 38.1 140.97 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b0b0080) - (property "Reference" "#PWR0101" (at 38.1 147.32 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 38.1 144.78 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 38.1 140.97 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 38.1 140.97 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 8f1f7229-a366-419d-9edc-906ebbb682ab)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "#PWR0101") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 49.53 140.97 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b0b00d4) - (property "Reference" "#PWR0102" (at 49.53 147.32 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 49.53 144.78 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 49.53 140.97 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 49.53 140.97 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 73189310-63a8-424c-a390-09693fc402cf)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "#PWR0102") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 59.69 140.97 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b0b0128) - (property "Reference" "#PWR0103" (at 59.69 147.32 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 59.69 144.78 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 59.69 140.97 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 59.69 140.97 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 8114c9f3-ed51-4102-9150-fd382ee54128)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "#PWR0103") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 102.87 179.07 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b0b097c) - (property "Reference" "#PWR0104" (at 102.87 185.42 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 102.87 182.88 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 102.87 179.07 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 102.87 179.07 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid d6b0053e-3d68-42e8-97d8-ede94b1a6ef6)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "#PWR0104") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C_Small") (at 121.92 151.13 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b0b772c) - (property "Reference" "C20" (at 122.174 149.352 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "47u" (at 122.174 153.162 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" (at 121.92 151.13 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 121.92 151.13 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Taiyo Yuden" (at 121.92 151.13 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "EMK325BJ476MM-P" (at 121.92 151.13 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 41b13946-31dc-40af-b088-8539b36aaf7a)) - (pin "2" (uuid 3c18ea44-9e7e-488f-b914-5f3b9b143cb5)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "C20") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:RFShield_OnePiece") (at 252.73 142.24 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005b0d8bf4) - (property "Reference" "J9" (at 252.73 137.16 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "RF_Shield_One_Piece" (at 252.73 139.7 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "custom:Laird_Technologies_BMI-S-107_44.37x44.37mm" (at 252.73 144.78 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 252.73 144.78 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Wurth Electronics" (at 252.73 142.24 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "36907406S" (at 252.73 142.24 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Config" "" (at 252.73 142.24 0) - (effects (font (size 1.524 1.524)) hide) - ) - (pin "1" (uuid 209b428c-f384-4919-ad6a-fc6c51b48199)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "J9") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C_Small") (at 58.42 60.96 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005c1a9735) - (property "Reference" "C8" (at 58.674 59.182 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "100n" (at 58.674 62.992 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_SMD:C_1206_3216Metric" (at 58.42 60.96 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 58.42 60.96 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "KEMET" (at 58.42 60.96 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "C1206C104K3GEC7210" (at 58.42 60.96 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 46e158f9-2818-4c30-ad09-fb09761f1742)) - (pin "2" (uuid 4573e092-4d0f-4dae-90a1-fdd47ced0109)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "C8") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C_Small") (at 181.61 40.64 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005c1a9da5) - (property "Reference" "C21" (at 181.864 38.862 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "100n" (at 181.864 42.672 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_SMD:C_1206_3216Metric" (at 181.61 40.64 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 181.61 40.64 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "KEMET" (at 181.61 40.64 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "C1206C104K3GEC7210" (at 181.61 40.64 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 365ed3cb-7e08-4ae0-9c29-86de7736352c)) - (pin "2" (uuid e9b77d19-bb11-4539-a35f-e8a2e3241589)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "C21") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C_Small") (at 52.07 41.91 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005c1bb058) - (property "Reference" "C3" (at 52.324 40.132 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "10u" (at 52.324 43.942 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" (at 52.07 41.91 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 52.07 41.91 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Taiyo Yuden" (at 52.07 41.91 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "GMK325BJ106MN-T" (at 52.07 41.91 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 5f0db6fd-5092-485f-9f2b-d19c03fbefd5)) - (pin "2" (uuid e6400616-cf24-473c-93bf-41f9a01f60c6)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "C3") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C_Small") (at 105.41 43.18 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005c1bb114) - (property "Reference" "C12" (at 105.664 41.402 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "10u" (at 105.664 45.212 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" (at 105.41 43.18 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 105.41 43.18 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Taiyo Yuden" (at 105.41 43.18 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "GMK325BJ106MN-T" (at 105.41 43.18 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid d7591539-35c0-438a-96e5-8bed233d8a47)) - (pin "2" (uuid 90269f7c-a94e-41a8-83bc-1361a8ac10b2)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "C12") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C_Small") (at 105.41 87.63 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005c1bb1d1) - (property "Reference" "C13" (at 105.664 85.852 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "10u" (at 105.664 89.662 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" (at 105.41 87.63 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 105.41 87.63 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Taiyo Yuden" (at 105.41 87.63 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "GMK325BJ106MN-T" (at 105.41 87.63 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid d1653dfe-9eda-40bb-83d1-5451f6c865f1)) - (pin "2" (uuid 5748097c-d657-4822-997b-db1c684ca1ab)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "C13") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C_Small") (at 49.53 138.43 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005c1bd28c) - (property "Reference" "C2" (at 49.784 136.652 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "4.7u" (at 49.784 140.462 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (at 49.53 138.43 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 49.53 138.43 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Wurth Electronics" (at 49.53 138.43 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "885012107013" (at 49.53 138.43 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid fd758066-e711-4d2b-9e4e-99d194fd19c7)) - (pin "2" (uuid afbb8590-5b7c-4f3a-9207-82d55d9bd1e6)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "C2") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C_Small") (at 59.69 138.43 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005c1bd316) - (property "Reference" "C5" (at 59.944 136.652 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "4.7u" (at 59.944 140.462 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (at 59.69 138.43 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 59.69 138.43 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Wurth Electronics" (at 59.69 138.43 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "885012107013" (at 59.69 138.43 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 805e8519-bbd0-4f40-9076-3f3a61530be0)) - (pin "2" (uuid 805fed2c-ae6e-47ad-afdc-4c9d1320b9bc)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "C5") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C_Small") (at 102.87 140.97 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005c2275b7) - (property "Reference" "C11" (at 103.124 139.192 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "100n" (at 103.124 143.002 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (at 102.87 140.97 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 102.87 140.97 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Kemet" (at 102.87 140.97 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "C0603C104K5RECAUTO" (at 102.87 140.97 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 1e2f3ffd-77d1-4f41-a112-bfb7c0242cb0)) - (pin "2" (uuid c96f9b04-85b8-4867-bdd1-e2de3492db9a)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "C11") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Connector:TestPoint") (at 121.92 143.51 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005c2285af) - (property "Reference" "TP4" (at 119.38 140.97 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "+5V" (at 124.46 140.97 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "TestPoint:TestPoint_THTPad_D1.5mm_Drill0.7mm" (at 121.92 143.51 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 121.92 143.51 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Config" "DNF" (at 121.92 143.51 0) - (effects (font (size 1.524 1.524)) hide) - ) - (pin "1" (uuid d266ee53-a3b5-41d8-be8a-34727e9cdf4b)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "TP4") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Connector:TestPoint") (at 105.41 96.52 180) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005c22864c) - (property "Reference" "TP2" (at 105.41 101.6 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "-12V" (at 102.87 96.52 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "TestPoint:TestPoint_THTPad_D1.5mm_Drill0.7mm" (at 105.41 96.52 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 105.41 96.52 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Config" "DNF" (at 105.41 96.52 0) - (effects (font (size 1.524 1.524)) hide) - ) - (pin "1" (uuid 57412ce3-ecb6-42cc-ae3b-e037e8cf969a)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "TP2") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Connector:TestPoint") (at 105.41 35.56 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005c228744) - (property "Reference" "TP1" (at 105.41 30.48 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "+12V" (at 107.95 35.56 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "TestPoint:TestPoint_THTPad_D1.5mm_Drill0.7mm" (at 105.41 35.56 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 105.41 35.56 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Config" "DNF" (at 105.41 35.56 0) - (effects (font (size 1.524 1.524)) hide) - ) - (pin "1" (uuid 8db3024a-ea8f-4cb8-8536-8010620bc38a)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "TP1") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Connector:TestPoint") (at 123.19 66.04 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005c229a96) - (property "Reference" "TP3" (at 130.048 66.04 90) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "TestPoint" (at 128.27 66.04 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Footprint" "TestPoint:TestPoint_THTPad_D1.5mm_Drill0.7mm" (at 123.19 71.12 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 123.19 71.12 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Config" "DNF" (at 123.19 66.04 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "MFN" "" (at 123.19 66.04 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "" (at 123.19 66.04 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid bc18bc85-3c2b-4659-851b-0b157aec0d5a)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "TP3") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R_Small") (at 64.77 71.12 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005ccf58a1) - (property "Reference" "R2" (at 65.532 70.612 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "121k" (at 65.532 72.136 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric" (at 64.77 71.12 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 64.77 71.12 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Susumu" (at 64.77 71.12 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "RR0816P-1213-D-09D" (at 64.77 71.12 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 4078cd1e-3bfd-4833-9973-967baf421539)) - (pin "2" (uuid 35a62a6a-d780-4de6-8d8f-210f9f6c15eb)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "R2") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Connector:TestPoint") (at 217.17 38.1 180) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005ccf668f) - (property "Reference" "TP5" (at 217.17 44.45 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "+10V" (at 216.535 46.355 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "TestPoint:TestPoint_THTPad_D1.5mm_Drill0.7mm" (at 217.17 38.1 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 217.17 38.1 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Config" "DNF" (at 217.17 38.1 0) - (effects (font (size 1.524 1.524)) hide) - ) - (pin "1" (uuid 24b7710f-04fd-4786-9d99-23328f32ec19)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "TP5") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "LinearTechnology:LT1236-10") (at 198.12 40.64 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005cd3a02b) - (property "Reference" "U3" (at 204.47 41.91 0) - (effects (font (size 1.524 1.524))) - ) - (property "Value" "LT1236-10" (at 198.12 31.75 0) - (effects (font (size 1.524 1.524))) - ) - (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (at 198.12 40.64 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "Datasheet" "" (at 198.12 40.64 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "MFN" "Analog Devices" (at 198.12 40.64 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "LT1236ACS8-10#PBF" (at 198.12 40.64 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Alternative" "LT1236CIS8-10#PBF" (at 198.12 40.64 0) - (effects (font (size 1.524 1.524)) hide) - ) - (pin "1" (uuid b3610904-434d-408e-97da-8841ed566774)) - (pin "2" (uuid aa2cc136-57ad-4ca7-b810-43dd40673ff3)) - (pin "3" (uuid 4776475c-59c6-42ac-9d24-2bfcabb42178)) - (pin "4" (uuid 6954c717-12ca-412f-baa6-413d8c3f62e8)) - (pin "5" (uuid 229fb7d2-6c48-4120-ab8f-3a4cdfead7a0)) - (pin "6" (uuid 1530708c-e682-4209-ab3c-158be97f2db5)) - (pin "7" (uuid 4c17a5de-a215-4a42-9763-ccbc70100be2)) - (pin "8" (uuid d009f50e-b3e0-4064-aebd-64e5951a1d18)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "U3") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Regulator_Linear:LT3045xMSE") (at 78.74 40.64 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005cd407e5) - (property "Reference" "U1" (at 78.74 31.75 0) - (effects (font (size 1.524 1.524))) - ) - (property "Value" "LT3045EMSE" (at 88.9 31.75 0) - (effects (font (size 1.524 1.524))) - ) - (property "Footprint" "Package_SO:MSOP-12-1EP_3x4mm_P0.65mm_EP1.65x2.85mm" (at 78.74 32.385 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "https://www.analog.com/media/en/technical-documentation/data-sheets/3045fa.pdf" (at 78.74 40.64 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Linear Technology" (at 97.79 49.53 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "LT3045EMSE#PBF" (at 78.74 40.64 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 569bde64-78a1-4044-9007-30f0cb451707)) - (pin "10" (uuid adc0315d-ef3c-487a-9203-5bae700f7135)) - (pin "11" (uuid b48a9b82-0534-483a-aa49-da9804d39991)) - (pin "12" (uuid a9a97bbf-af55-4d01-a985-8d98ddde1fac)) - (pin "13" (uuid c625af96-d2fd-4ca7-ad1e-dbc3386b86c6)) - (pin "2" (uuid 173a4fe0-74d8-41ba-aacd-82f87a967a34)) - (pin "3" (uuid 5688752d-aa03-492e-b9a1-884fc9edcb10)) - (pin "4" (uuid 0d58fe4c-518d-46b0-9aa3-07ce954bd652)) - (pin "5" (uuid cd6c0189-d003-4535-9bcf-c3ca22142ab9)) - (pin "6" (uuid dc50893b-31d3-4789-b901-e1bcb1f4629b)) - (pin "7" (uuid a2a2cdbe-2c31-4041-9bd9-b30baadd56a5)) - (pin "8" (uuid f98750c9-4733-44fc-81ad-abfb0939cc0d)) - (pin "9" (uuid a20050a8-9ccf-4fa1-b19b-358d8fc6621e)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "U1") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Regulator_Linear:LT3094xMSE") (at 78.74 87.63 0) (mirror x) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005cd42b69) - (property "Reference" "U2" (at 78.74 96.52 0) - (effects (font (size 1.524 1.524))) - ) - (property "Value" "LT3094EMSE" (at 88.9 96.52 0) - (effects (font (size 1.524 1.524))) - ) - (property "Footprint" "Package_SO:MSOP-12-1EP_3x4mm_P0.65mm_EP1.65x2.85mm" (at 78.74 98.425 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "https://www.analog.com/media/en/technical-documentation/data-sheets/LT3094.pdf" (at 78.74 90.17 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Analog Devices" (at 97.79 78.74 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "PN" "LT3094EMSE#PBF" (at 78.74 87.63 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "12" (uuid ed953e91-9a60-4dae-b49b-63d249138507)) - (pin "13" (uuid 58a223ac-1dd4-46cf-a57f-114fdc5994a2)) - (pin "1" (uuid 2831cf47-6c42-484f-8070-fad2a42bfce1)) - (pin "10" (uuid 556c49a3-3861-4eeb-bed7-30a5aebf5526)) - (pin "11" (uuid 443167d1-7c9e-4c4b-abc9-f3338629d2f5)) - (pin "2" (uuid 990ef446-8a1d-4c1f-b112-ebf09706cc51)) - (pin "3" (uuid 86485391-7129-427d-9413-ae6407a731ce)) - (pin "4" (uuid b114d2a6-84d0-4fa4-9a8d-0e202c30ded6)) - (pin "5" (uuid 3e2d3f76-094b-49b4-a5cd-807b83bb7b80)) - (pin "6" (uuid 87efc960-fc20-4947-aae8-fb6b9c89ea87)) - (pin "7" (uuid a1d2be55-704b-491a-9ece-1cdec25fb54d)) - (pin "8" (uuid acc6b9af-0124-466b-81f2-31e0fdbf312a)) - (pin "9" (uuid dca8c8d1-a3bb-4c0c-8593-6b1490a0e357)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "U2") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:R_Potentiometer") (at 232.41 43.18 0) (mirror x) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005d6da79f) - (property "Reference" "RV1" (at 230.632 44.3484 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Value" "10k" (at 230.632 42.037 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Footprint" "Connector_Molex:Molex_KK-254_AE-6410-03A_1x03_P2.54mm_Vertical" (at 232.41 43.18 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 232.41 43.18 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Molex" (at 232.41 43.18 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "22-23-2031" (at 232.41 43.18 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Config" "" (at 232.41 43.18 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 1a037295-398f-4c16-8ab1-ad301322a09b)) - (pin "2" (uuid b0f77368-6f83-4ffb-a98f-1290e36335c6)) - (pin "3" (uuid bcda5e57-e8ce-491e-9430-bcaae0de92df)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "RV1") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 232.41 57.15 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005d6db37f) - (property "Reference" "#PWR0105" (at 232.41 63.5 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 232.537 61.5442 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 232.41 57.15 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 232.41 57.15 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 950889fb-cb23-42d5-843c-f9b127eb1937)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "#PWR0105") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 121.92 68.58 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005d6f0c11) - (property "Reference" "#PWR0107" (at 121.92 74.93 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 122.047 72.9742 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 121.92 68.58 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 121.92 68.58 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid af16c235-daf6-45da-87da-282c77df4f5b)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "#PWR0107") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 121.92 156.21 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005d713633) - (property "Reference" "#PWR0108" (at 121.92 162.56 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 122.047 160.6042 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 121.92 156.21 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 121.92 156.21 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 027f2d50-0327-42b6-84e8-f5308b4bed48)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "#PWR0108") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 198.12 49.53 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005d71d9e6) - (property "Reference" "#PWR0109" (at 198.12 55.88 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 198.247 53.9242 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 198.12 49.53 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 198.12 49.53 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 2e32f3d4-ea5e-4b26-b1e0-b9d0ecf2b9ba)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "#PWR0109") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "power:GND") (at 252.73 153.67 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-00005d72147a) - (property "Reference" "#PWR0110" (at 252.73 160.02 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 252.857 158.0642 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 252.73 153.67 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 252.73 153.67 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 4e990780-0f4d-4ef8-ab3f-3a3087d25350)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "#PWR0110") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:D_Schottky") (at 114.3 50.8 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-000061675730) - (property "Reference" "D1" (at 116.332 49.6316 90) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "BAT54" (at 116.332 51.943 90) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Diode_SMD:D_SOD-323" (at 114.3 50.8 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 114.3 50.8 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Panjit" (at 114.3 50.8 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "BAT54WS_R1_00001" (at 114.3 50.8 90) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 965dc679-456e-4572-8a7a-3039d1431541)) - (pin "2" (uuid 674524c8-cb60-4210-b796-b0465b28bd29)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "D1") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:D_TVS") (at 39.37 52.07 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-000061e66d74) - (property "Reference" "D2" (at 41.402 50.9016 90) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "SMBJ40CA" (at 41.402 53.213 90) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Diode_SMD:D_SMB" (at 39.37 52.07 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 39.37 52.07 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Bourns" (at 39.37 52.07 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "SMBJ40CA-QH" (at 39.37 52.07 90) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 5aac9dfb-fe55-409c-b8f1-9b0d7ab70665)) - (pin "2" (uuid 99449361-d03e-457e-9be0-7c32acac015d)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "D2") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:D_TVS") (at 39.37 76.2 270) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-000061e67517) - (property "Reference" "D3" (at 41.402 75.0316 90) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "SMBJ40CA" (at 41.402 77.343 90) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Diode_SMD:D_SMB" (at 39.37 76.2 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 39.37 76.2 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Bourns" (at 39.37 76.2 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "SMBJ40CA-QH" (at 39.37 76.2 90) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 84722048-cac8-4bc1-9386-5a0b528ec6c7)) - (pin "2" (uuid d255d867-8ae1-47cb-8bdd-6b5c37bd0833)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "D3") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C_Polarized_Small") (at 29.21 52.07 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-000061e832ac) - (property "Reference" "C28" (at 31.4452 50.9016 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "100u" (at 31.4452 53.213 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_THT:CP_Radial_D6.3mm_P2.50mm" (at 29.21 52.07 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 29.21 52.07 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Nichicon" (at 29.21 52.07 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "UHV1V101MED" (at 29.21 52.07 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 3043c09a-18bc-49e7-befd-d9adddf4c485)) - (pin "2" (uuid 2837a8eb-95e7-4359-b039-97511b25b631)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "C28") (unit 1) - ) - ) - ) - ) - - (symbol (lib_id "Device:C_Polarized_Small") (at 29.21 76.2 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) - (uuid 00000000-0000-0000-0000-000061e83ad8) - (property "Reference" "C29" (at 31.4452 75.0316 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "100u" (at 31.4452 77.343 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_THT:CP_Radial_D6.3mm_P2.50mm" (at 29.21 76.2 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 29.21 76.2 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "MFN" "Nichicon" (at 29.21 76.2 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "PN" "UHV1V101MED" (at 29.21 76.2 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 60d8f299-2224-4fcb-baf9-ff610498825c)) - (pin "2" (uuid 5e154095-3aa2-4d70-8130-741b42440ea9)) - (instances - (project "RedPitaya_Lockbox" - (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" - (reference "C29") (unit 1) - ) - ) - ) - ) +(kicad_sch + (version 20231120) + (generator "eeschema") + (generator_version "8.0") + (uuid "f202141e-c20d-4cac-b016-06a44f2ecce8") + (paper "A4") + (title_block + (title "RedPitaya Lockbox") + (date "2024-06-11") + (rev "1.6.3") + (company "Atoms-Photons-Quanta, Institut für Angewandte Physik, TU Darmstadt") + (comment 1 "Tilman Preuschoff") + ) + (lib_symbols + (symbol "Connector:TestPoint" + (pin_numbers hide) + (pin_names + (offset 0.762) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "TP" + (at 0 6.858 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "TestPoint" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 5.08 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 5.08 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "test point" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "test point tp" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Pin* Test*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "TestPoint_0_1" + (circle + (center 0 3.302) + (radius 0.762) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "TestPoint_1_1" + (pin passive line + (at 0 0 90) + (length 2.54) + (name "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:C_Polarized_Small" + (pin_numbers hide) + (pin_names + (offset 0.254) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "C" + (at 0.254 1.778 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "C_Polarized_Small" + (at 0.254 -2.032 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (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" "Polarized capacitor, small symbol" + (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_Small_0_1" + (rectangle + (start -1.524 -0.3048) + (end 1.524 -0.6858) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start -1.524 0.6858) + (end 1.524 0.3048) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 1.524) (xy -0.762 1.524) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.016 1.27) (xy -1.016 1.778) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "C_Polarized_Small_1_1" + (pin passive line + (at 0 2.54 270) + (length 1.8542) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -2.54 90) + (length 1.8542) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:C_Small" + (pin_numbers hide) + (pin_names + (offset 0.254) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "C" + (at 0.254 1.778 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "C_Small" + (at 0.254 -2.032 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (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" "Unpolarized capacitor, small symbol" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "capacitor cap" + (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_Small_0_1" + (polyline + (pts + (xy -1.524 -0.508) (xy 1.524 -0.508) + ) + (stroke + (width 0.3302) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.524 0.508) (xy 1.524 0.508) + ) + (stroke + (width 0.3048) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "C_Small_1_1" + (pin passive line + (at 0 2.54 270) + (length 2.032) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -2.54 90) + (length 2.032) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:D_Schottky" + (pin_numbers hide) + (pin_names + (offset 1.016) hide) + (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" "D_Schottky" + (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" "Schottky diode" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "diode Schottky" + (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 "D_Schottky_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 none) + ) + ) + (polyline + (pts + (xy -1.905 0.635) (xy -1.905 1.27) (xy -1.27 1.27) (xy -1.27 -1.27) (xy -0.635 -1.27) (xy -0.635 -0.635) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "D_Schottky_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) + ) + ) + ) + ) + ) + ) + (symbol "Device:D_TVS" + (pin_numbers hide) + (pin_names + (offset 1.016) hide) + (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" "D_TVS" + (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" "Bidirectional transient-voltage-suppression diode" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "diode TVS thyrector" + (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 "D_TVS_0_1" + (polyline + (pts + (xy 1.27 0) (xy -1.27 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.508 1.27) (xy 0 1.27) (xy 0 -1.27) (xy -0.508 -1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 1.27) (xy -2.54 -1.27) (xy 2.54 1.27) (xy 2.54 -1.27) (xy -2.54 1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "D_TVS_1_1" + (pin passive line + (at -3.81 0 0) + (length 2.54) + (name "A1" + (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 "A2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:FerriteBead_Small" + (pin_numbers hide) + (pin_names + (offset 0) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "FB" + (at 1.905 1.27 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "FerriteBead_Small" + (at 1.905 -1.27 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at -1.778 0 90) + (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" "Ferrite bead, small symbol" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "L ferrite bead inductor filter" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Inductor_* L_* *Ferrite*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "FerriteBead_Small_0_1" + (polyline + (pts + (xy 0 -1.27) (xy 0 -0.7874) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 0.889) (xy 0 1.2954) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.8288 0.2794) (xy -1.1176 1.4986) (xy 1.8288 -0.2032) (xy 1.1176 -1.4224) (xy -1.8288 0.2794) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "FerriteBead_Small_1_1" + (pin passive line + (at 0 2.54 270) + (length 1.27) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -2.54 90) + (length 1.27) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:L_Small" + (pin_numbers hide) + (pin_names + (offset 0.254) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "L" + (at 0.762 1.016 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "L_Small" + (at 0.762 -1.016 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (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, small symbol" + (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_Small_0_1" + (arc + (start 0 -2.032) + (mid 0.5058 -1.524) + (end 0 -1.016) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 -1.016) + (mid 0.5058 -0.508) + (end 0 0) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 0) + (mid 0.5058 0.508) + (end 0 1.016) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 1.016) + (mid 0.5058 1.524) + (end 0 2.032) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "L_Small_1_1" + (pin passive line + (at 0 2.54 270) + (length 0.508) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -2.54 90) + (length 0.508) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:RFShield_OnePiece" + (pin_names + (offset 1.016) + ) + (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" "RFShield_OnePiece" + (at 0 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "One-piece EMI RF shielding cabinet" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "RF EMI shielding cabinet" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "RFShield_OnePiece_0_1" + (polyline + (pts + (xy -15.24 -5.08) (xy -15.24 -2.54) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -15.24 -1.27) (xy -15.24 1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -15.24 2.54) (xy -15.24 5.08) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -12.7 7.62) (xy -10.16 7.62) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -10.16 -7.62) (xy -12.7 -7.62) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -6.35 -7.62) (xy -8.89 -7.62) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -6.35 7.62) (xy -8.89 7.62) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 -7.62) (xy -5.08 -7.62) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 7.62) (xy -5.08 7.62) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -7.62) (xy 1.27 -7.62) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 7.62) (xy -1.27 7.62) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 2.54 -7.62) (xy 5.08 -7.62) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 5.08 7.62) (xy 2.54 7.62) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 6.35 -7.62) (xy 8.89 -7.62) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 8.89 7.62) (xy 6.35 7.62) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 10.16 -7.62) (xy 12.7 -7.62) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 12.7 7.62) (xy 10.16 7.62) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 15.24 -5.08) (xy 15.24 -2.54) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 15.24 -1.27) (xy 15.24 1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 15.24 2.54) (xy 15.24 5.08) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -15.24 6.35) (xy -15.24 7.62) (xy -13.97 7.62) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -13.97 -7.62) (xy -15.24 -7.62) (xy -15.24 -6.35) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 13.97 -7.62) (xy 15.24 -7.62) (xy 15.24 -6.35) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 15.24 6.35) (xy 15.24 7.62) (xy 13.97 7.62) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "RFShield_OnePiece_1_1" + (pin passive line + (at 0 -10.16 90) + (length 2.54) + (name "Shield" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:R_Potentiometer" + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "RV" + (at -4.445 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "R_Potentiometer" + (at -2.54 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" "Potentiometer" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "resistor variable" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Potentiometer*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "R_Potentiometer_0_1" + (polyline + (pts + (xy 2.54 0) (xy 1.524 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.143 0) (xy 2.286 0.508) (xy 2.286 -0.508) (xy 1.143 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 1.016 2.54) + (end -1.016 -2.54) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "R_Potentiometer_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 3.81 0 180) + (length 1.27) + (name "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 1.27) + (name "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:R_Small" + (pin_numbers hide) + (pin_names + (offset 0.254) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "R" + (at 0.762 0.508 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "R_Small" + (at 0.762 -1.016 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (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, small symbol" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "R resistor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "R_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "R_Small_0_1" + (rectangle + (start -0.762 1.778) + (end 0.762 -1.778) + (stroke + (width 0.2032) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "R_Small_1_1" + (pin passive line + (at 0 2.54 270) + (length 0.762) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -2.54 90) + (length 0.762) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "LinearTechnology:LT1236-10" + (pin_names + (offset 1.016) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at 6.35 -1.27 0) + (effects + (font + (size 1.524 1.524) + ) + ) + ) + (property "Value" "LT1236-10" + (at 0 8.89 0) + (effects + (font + (size 1.524 1.524) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "Description" "10V Precision Reference" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "LT1236-10_1_1" + (rectangle + (start -7.62 7.62) + (end 7.62 0) + (stroke + (width 0) + (type default) + ) + (fill + (type background) + ) + ) + (pin no_connect line + (at -6.35 -2.54 90) + (length 2.54) hide + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -12.7 5.08 0) + (length 5.08) + (name "Vin" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at -3.81 -2.54 90) + (length 2.54) hide + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 -5.08 90) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 12.7 2.54 180) + (length 5.08) + (name "Trim" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_out line + (at 12.7 5.08 180) + (length 5.08) + (name "Vout" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 3.81 -2.54 90) + (length 2.54) hide + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at -10.16 1.27 0) + (length 2.54) hide + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Regulator_Linear:LT3045xMSE" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -6.35 6.35 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "LT3045xMSE" + (at 1.27 6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_SO:MSOP-12-1EP_3x4mm_P0.65mm_EP1.65x2.85mm" + (at 0 8.255 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.analog.com/media/en/technical-documentation/data-sheets/3045fa.pdf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "500mA, Adjustable, Ultralow Noise, Ultrahigh PSRR Linear Regulator, MSOP-12" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "linear voltage regulator low-noise" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "MSOP*1EP*3x4mm*P0.65mm*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "LT3045xMSE_0_1" + (rectangle + (start -7.62 5.08) + (end 7.62 -7.62) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + ) + (symbol "LT3045xMSE_1_1" + (pin power_in line + (at -10.16 2.54 0) + (length 2.54) + (name "IN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 10.16 0 180) + (length 2.54) + (name "OUTS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_out line + (at 10.16 2.54 180) + (length 2.54) + (name "OUT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 10.16 2.54 180) + (length 2.54) hide + (name "OUT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -10.16 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 2.54 0) + (length 2.54) hide + (name "IN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 2.54 0) + (length 2.54) hide + (name "IN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -10.16 0 0) + (length 2.54) + (name "EN/UV" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at 10.16 -5.08 180) + (length 2.54) + (name "PG" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 -2.54 0) + (length 2.54) + (name "ILIM" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 10.16 -2.54 180) + (length 2.54) + (name "PGFB" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 -5.08 0) + (length 2.54) + (name "SET" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (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 "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Regulator_Linear:LT3094xMSE" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -6.35 8.89 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "LT3094xMSE" + (at 1.27 8.89 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_SO:MSOP-12-1EP_3x4mm_P0.65mm_EP1.65x2.85mm" + (at 0 10.795 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.analog.com/media/en/technical-documentation/data-sheets/LT3094.pdf" + (at 0 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "-500mA, Adjustable, Ultralow Noise, Ultrahigh PSRR RF Negative Linear Regulator, MSOP-12" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "linear negative voltage regulator low-noise" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "MSOP*1EP*3x4mm*P0.65mm*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "LT3094xMSE_0_0" + (pin passive line + (at 10.16 5.08 180) + (length 2.54) hide + (name "OUT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 5.08 0) + (length 2.54) hide + (name "IN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (symbol "LT3094xMSE_0_1" + (rectangle + (start 7.62 7.62) + (end -7.62 -7.62) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + ) + (symbol "LT3094xMSE_1_1" + (pin power_in line + (at -10.16 5.08 0) + (length 2.54) + (name "IN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 10.16 2.54 180) + (length 2.54) + (name "OUTS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_out line + (at 10.16 5.08 180) + (length 2.54) + (name "OUT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 5.08 0) + (length 2.54) hide + (name "IN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -10.16 2.54 0) + (length 2.54) + (name "EN/UV" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at -10.16 0 0) + (length 2.54) + (name "PG" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 10.16 0 180) + (length 2.54) + (name "PGFB" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 10.16 -2.54 180) + (length 2.54) + (name "ILIM" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 -2.54 0) + (length 2.54) + (name "VIOC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -10.16 -5.08 0) + (length 2.54) + (name "SET" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (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 "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Regulator_Switching:LT8610" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -8.89 8.89 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "LT8610" + (at 6.858 8.636 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_SO:MSOP-16-1EP_3x4.039mm_P0.5mm_EP1.651x2.845mm_ThermalVias" + (at 0 -12.7 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.analog.com/media/en/technical-documentation/data-sheets/lt8610.pdf" + (at 0 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "42V, 2.5A Synchronous Step-Down Regulator with 2.5uA Quiescent Current, MSOP-16" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "high efficiency speed synchronous monolithic buck step-down switching regulator 42V 2.5A" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "MSOP*16*1EP*3x4.039mm*P0.5mm*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "LT8610_0_1" + (rectangle + (start -10.16 7.62) + (end 10.16 -7.62) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + ) + (symbol "LT8610_1_1" + (pin input line + (at -12.7 0 0) + (length 2.54) + (name "SYNC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 12.7 -2.54 180) + (length 2.54) hide + (name "SW" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 12.7 -2.54 180) + (length 2.54) hide + (name "SW" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 12.7 0 180) + (length 2.54) + (name "BST" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 12.7 2.54 180) + (length 2.54) + (name "INTVcc" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 12.7 5.08 180) + (length 2.54) + (name "BIAS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin open_collector line + (at -12.7 2.54 0) + (length 2.54) + (name "PG" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 12.7 -5.08 180) + (length 2.54) + (name "FB" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -10.16 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -12.7 -2.54 0) + (length 2.54) + (name "TR/SS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -12.7 -5.08 0) + (length 2.54) + (name "RT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -12.7 5.08 0) + (length 2.54) + (name "EN/UV" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 10.16 270) + (length 2.54) + (name "VIN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 10.16 270) + (length 2.54) hide + (name "VIN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (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 "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -10.16 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 12.7 -2.54 180) + (length 2.54) + (name "SW" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "power:GND" + (power) + (pin_numbers hide) + (pin_names + (offset 0) hide) + (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) + ) + ) + ) + ) + ) + ) + (symbol "power:PWR_FLAG" + (power) + (pin_numbers hide) + (pin_names + (offset 0) hide) + (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" "Special symbol for telling ERC where power comes from" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "flag power" + (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 "~" + (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) + ) + ) + ) + ) + ) + (junction + (at 215.9 35.56) + (diameter 0) + (color 0 0 0 0) + (uuid "0445eef5-6ece-4d22-b3d3-216927ad6010") + ) + (junction + (at 181.61 46.99) + (diameter 0) + (color 0 0 0 0) + (uuid "1171ce37-6ad7-4662-bb68-5592c945ebf3") + ) + (junction + (at 113.03 167.64) + (diameter 0) + (color 0 0 0 0) + (uuid "1737cf66-d2b3-4d27-b784-d7fd06ed52b2") + ) + (junction + (at 58.42 66.04) + (diameter 0) + (color 0 0 0 0) + (uuid "20b6fe7a-255d-43c3-b8ed-a153a57a359e") + ) + (junction + (at 85.09 168.91) + (diameter 0) + (color 0 0 0 0) + (uuid "23105410-7b04-4a0d-b4e2-b699f21fe37c") + ) + (junction + (at 29.21 92.71) + (diameter 0) + (color 0 0 0 0) + (uuid "23589bbe-626c-4c13-a63c-26793b5ac723") + ) + (junction + (at 29.21 66.04) + (diameter 0) + (color 0 0 0 0) + (uuid "25bc3602-3fb4-4a04-94e3-21ba22562c24") + ) + (junction + (at 66.04 168.91) + (diameter 0) + (color 0 0 0 0) + (uuid "26b8e5e8-c35a-4074-8434-7bcb05df86d6") + ) + (junction + (at 99.06 158.75) + (diameter 0) + (color 0 0 0 0) + (uuid "27bf261d-8547-475a-9494-a5c779d8f942") + ) + (junction + (at 62.23 129.54) + (diameter 0) + (color 0 0 0 0) + (uuid "2845a690-fcb4-42e3-976f-79621edaef65") + ) + (junction + (at 138.43 156.21) + (diameter 0) + (color 0 0 0 0) + (uuid "36f3b5b6-5323-4f16-b0d7-a7469cee5107") + ) + (junction + (at 39.37 38.1) + (diameter 0) + (color 0 0 0 0) + (uuid "3b992cb3-c68b-4a86-8b08-220a5527ce46") + ) + (junction + (at 114.3 38.1) + (diameter 0) + (color 0 0 0 0) + (uuid "3eba78c0-f09c-4d8a-8fcc-9365cb1b4ccf") + ) + (junction + (at 59.69 129.54) + (diameter 0) + (color 0 0 0 0) + (uuid "54b864e2-00ea-4ec5-a160-615b6ea70236") + ) + (junction + (at 64.77 66.04) + (diameter 0) + (color 0 0 0 0) + (uuid "55cea513-8fa6-4e89-8488-e9f86dd46aab") + ) + (junction + (at 39.37 92.71) + (diameter 0) + (color 0 0 0 0) + (uuid "5bb303ab-7fea-41ae-90d2-2d8f6cedf6d5") + ) + (junction + (at 49.53 129.54) + (diameter 0) + (color 0 0 0 0) + (uuid "5fc9acb6-6dbb-4598-825b-4b9e7c4c67c4") + ) + (junction + (at 52.07 66.04) + (diameter 0) + (color 0 0 0 0) + (uuid "6781326c-6e0d-4753-8f28-0f5c687e01f9") + ) + (junction + (at 52.07 92.71) + (diameter 0) + (color 0 0 0 0) + (uuid "6a4bad38-b71d-4950-b5e9-45e31bd5f9db") + ) + (junction + (at 64.77 92.71) + (diameter 0) + (color 0 0 0 0) + (uuid "73cca0a6-14c0-4d43-bed2-5ef19f0a4138") + ) + (junction + (at 99.06 167.64) + (diameter 0) + (color 0 0 0 0) + (uuid "73f55111-522e-485d-94b8-36acf5ff9cbc") + ) + (junction + (at 93.98 66.04) + (diameter 0) + (color 0 0 0 0) + (uuid "74c7f4da-a927-4aa9-8a65-21556e2a3846") + ) + (junction + (at 29.21 38.1) + (diameter 0) + (color 0 0 0 0) + (uuid "7544713a-5722-4529-b55e-93558f472e81") + ) + (junction + (at 165.1 35.56) + (diameter 0) + (color 0 0 0 0) + (uuid "79770cd5-32d7-429a-8248-0d9e6212231a") + ) + (junction + (at 110.49 156.21) + (diameter 0) + (color 0 0 0 0) + (uuid "84c233c1-783e-4507-90bc-f0b61f6b1d48") + ) + (junction + (at 114.3 66.04) + (diameter 0) + (color 0 0 0 0) + (uuid "9390234f-bf3f-46cd-b6a0-8a438ec76e9f") + ) + (junction + (at 55.88 66.04) + (diameter 0) + (color 0 0 0 0) + (uuid "9745385f-953d-4c48-9d05-7d8da7f8c50a") + ) + (junction + (at 123.19 156.21) + (diameter 0) + (color 0 0 0 0) + (uuid "97bda0b4-1e7d-4508-bac7-a50310e93308") + ) + (junction + (at 200.66 35.56) + (diameter 0) + (color 0 0 0 0) + (uuid "98914cc3-56fe-40bb-820a-3d157225c145") + ) + (junction + (at 78.74 66.04) + (diameter 0) + (color 0 0 0 0) + (uuid "98c78427-acd5-4f90-9ad6-9f61c4809aec") + ) + (junction + (at 99.06 38.1) + (diameter 0) + (color 0 0 0 0) + (uuid "9b274d8f-ee13-420f-8126-083ba17d513e") + ) + (junction + (at 39.37 66.04) + (diameter 0) + (color 0 0 0 0) + (uuid "a07b6b2b-7179-4297-b163-5e47ffbe76d3") + ) + (junction + (at 105.41 38.1) + (diameter 0) + (color 0 0 0 0) + (uuid "aec7ebf0-d1d4-40f8-9c1b-90328cfb3f62") + ) + (junction + (at 85.09 140.97) + (diameter 0) + (color 0 0 0 0) + (uuid "b4feb2a8-75c2-4019-b8d3-42ab40efc0c3") + ) + (junction + (at 105.41 92.71) + (diameter 0) + (color 0 0 0 0) + (uuid "b70421f2-a305-47ab-9429-5b2d70e93721") + ) + (junction + (at 105.41 66.04) + (diameter 0) + (color 0 0 0 0) + (uuid "c094494a-f6f7-43fc-a007-4951484ddf3a") + ) + (junction + (at 64.77 54.61) + (diameter 0) + (color 0 0 0 0) + (uuid "cc4b7d79-6927-4c11-b583-0aab77ebd037") + ) + (junction + (at 121.92 66.04) + (diameter 0) + (color 0 0 0 0) + (uuid "ccc4cc25-ac17-45ef-825c-e079951ffb21") + ) + (junction + (at 52.07 38.1) + (diameter 0) + (color 0 0 0 0) + (uuid "dbba0eba-b1d1-4c70-b61d-9659ab97cea9") + ) + (junction + (at 100.33 92.71) + (diameter 0) + (color 0 0 0 0) + (uuid "de446c61-c9d2-4098-b2d0-04a2b98f6c71") + ) + (junction + (at 38.1 129.54) + (diameter 0) + (color 0 0 0 0) + (uuid "e4aa537c-eb9d-4dbb-ac87-fae46af42391") + ) + (junction + (at 64.77 74.93) + (diameter 0) + (color 0 0 0 0) + (uuid "eab7ae51-9516-4256-9a65-d4bad0210bbb") + ) + (junction + (at 57.15 38.1) + (diameter 0) + (color 0 0 0 0) + (uuid "f3c6326e-4550-4baf-bc0f-22e9ca273e14") + ) + (no_connect + (at 72.39 153.67) + (uuid "51f91e5c-2796-44d0-8a8f-7c11114bfc6e") + ) + (no_connect + (at 72.39 151.13) + (uuid "597b97bc-6215-4c52-84d5-dd3f11b8e406") + ) + (no_connect + (at 194.31 38.1) + (uuid "66218487-e316-4467-9eba-79d4626ab24e") + ) + (no_connect + (at 68.58 87.63) + (uuid "6eb069b2-6f39-4c1e-b379-abaf12e28719") + ) + (no_connect + (at 68.58 85.09) + (uuid "99c07feb-543d-488a-a1f8-bdc0f5f75508") + ) + (no_connect + (at 88.9 45.72) + (uuid "ab89e396-047d-496c-aa08-acc65730e3ae") + ) + (wire + (pts + (xy 58.42 66.04) (xy 64.77 66.04) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0048f6af-51ae-4c48-ae7e-7d4f6c153481") + ) + (wire + (pts + (xy 58.42 63.5) (xy 58.42 66.04) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0351df45-d042-41d4-ba35-88092c7be2fc") + ) + (wire + (pts + (xy 101.6 153.67) (xy 101.6 152.4) + ) + (stroke + (width 0) + (type default) + ) + (uuid "04478d0c-2de0-4d5b-90ab-f3305373b263") + ) + (wire + (pts + (xy 110.49 152.4) (xy 110.49 156.21) + ) + (stroke + (width 0) + (type default) + ) + (uuid "04a18809-2902-492c-bd05-9f7b7e58e155") + ) + (wire + (pts + (xy 59.69 160.02) (xy 59.69 156.21) + ) + (stroke + (width 0) + (type default) + ) + (uuid "05e62c58-e830-4c59-b3dc-91de9c71ed93") + ) + (wire + (pts + (xy 66.04 161.29) (xy 66.04 158.75) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0692b170-3a06-4a10-9e1c-109344ec2f95") + ) + (wire + (pts + (xy 165.1 46.99) (xy 181.61 46.99) + ) + (stroke + (width 0) + (type default) + ) + (uuid "076046ab-4b56-4060-b8d9-0d80806d0277") + ) + (wire + (pts + (xy 39.37 92.71) (xy 52.07 92.71) + ) + (stroke + (width 0) + (type default) + ) + (uuid "07d160b6-23e1-4aa0-95cb-440482e6fc15") + ) + (wire + (pts + (xy 88.9 40.64) (xy 99.06 40.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0e1ed1c5-7428-4dc7-b76e-49b2d5f8177d") + ) + (wire + (pts + (xy 100.33 132.08) (xy 106.68 132.08) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0f0fd22b-b351-464e-9109-99f7481bacdb") + ) + (wire + (pts + (xy 59.69 129.54) (xy 59.69 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0f31f11f-c374-4640-b9a4-07bbdba8d354") + ) + (wire + (pts + (xy 100.33 151.13) (xy 100.33 132.08) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0f6c88a7-da3b-423d-b719-1547baf03a59") + ) + (wire + (pts + (xy 85.09 163.83) (xy 85.09 168.91) + ) + (stroke + (width 0) + (type default) + ) + (uuid "13e3dda8-848d-45ea-9833-77bcfeb18474") + ) + (wire + (pts + (xy 110.49 156.21) (xy 114.3 156.21) + ) + (stroke + (width 0) + (type default) + ) + (uuid "13e6a2ab-58f0-4677-939f-549ec92316db") + ) + (wire + (pts + (xy 106.68 138.43) (xy 106.68 139.7) + ) + (stroke + (width 0) + (type default) + ) + (uuid "14561473-5e0b-4c0a-856c-867482fed417") + ) + (wire + (pts + (xy 78.74 50.8) (xy 78.74 66.04) + ) + (stroke + (width 0) + (type default) + ) + (uuid "15fe8f3d-6077-4e0e-81d0-8ec3f4538981") + ) + (wire + (pts + (xy 105.41 38.1) (xy 105.41 40.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "186037a3-8b8a-4c5c-ada0-bee25e0ae29a") + ) + (wire + (pts + (xy 57.15 129.54) (xy 59.69 129.54) + ) + (stroke + (width 0) + (type default) + ) + (uuid "18b7e157-ae67-48ad-bd7c-9fef6fe45b22") + ) + (wire + (pts + (xy 114.3 38.1) (xy 121.92 38.1) + ) + (stroke + (width 0) + (type default) + ) + (uuid "18d11f32-e1a6-4f29-8e3c-0bfeb07299bd") + ) + (wire + (pts + (xy 181.61 45.72) (xy 181.61 46.99) + ) + (stroke + (width 0) + (type default) + ) + (uuid "196a8dd5-5fd6-4c7f-ae4a-0104bd82e61b") + ) + (wire + (pts + (xy 114.3 38.1) (xy 114.3 46.99) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1b983025-da7a-45c2-88fe-f343699d1a18") + ) + (wire + (pts + (xy 64.77 54.61) (xy 64.77 58.42) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1b9e7776-7f7c-4dc1-a708-9a30d9075f3e") + ) + (wire + (pts + (xy 99.06 38.1) (xy 99.06 40.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1da2b7da-9a7a-47f4-a946-a74aff96013e") + ) + (wire + (pts + (xy 52.07 38.1) (xy 57.15 38.1) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1f9ae101-c652-4998-a503-17aedf3d5746") + ) + (wire + (pts + (xy 66.04 158.75) (xy 72.39 158.75) + ) + (stroke + (width 0) + (type default) + ) + (uuid "219024d3-8086-4c14-8944-38b312219e0f") + ) + (wire + (pts + (xy 88.9 38.1) (xy 99.06 38.1) + ) + (stroke + (width 0) + (type default) + ) + (uuid "240e5dac-6242-47a5-bbef-f76d11c715c0") + ) + (wire + (pts + (xy 39.37 38.1) (xy 52.07 38.1) + ) + (stroke + (width 0) + (type default) + ) + (uuid "24b72b0d-63b8-4e06-89d0-e94dcf39a600") + ) + (wire + (pts + (xy 29.21 92.71) (xy 39.37 92.71) + ) + (stroke + (width 0) + (type default) + ) + (uuid "283c990c-ae5a-4e41-a3ad-b40ca29fe90e") + ) + (wire + (pts + (xy 105.41 92.71) (xy 105.41 96.52) + ) + (stroke + (width 0) + (type default) + ) + (uuid "28e6c5f4-1793-47ea-8068-190ae9ed0a06") + ) + (wire + (pts + (xy 58.42 66.04) (xy 58.42 68.58) + ) + (stroke + (width 0) + (type default) + ) + (uuid "29bb7297-26fb-4776-9266-2355d022bab0") + ) + (wire + (pts + (xy 138.43 153.67) (xy 138.43 156.21) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2ff3f9bf-fbc3-443a-9446-3f9358fc23da") + ) + (wire + (pts + (xy 105.41 45.72) (xy 105.41 66.04) + ) + (stroke + (width 0) + (type default) + ) + (uuid "35a9f71f-ba35-47f6-814e-4106ac36c51e") + ) + (wire + (pts + (xy 78.74 66.04) (xy 78.74 77.47) + ) + (stroke + (width 0) + (type default) + ) + (uuid "36d783e7-096f-4c97-9672-7e08c083b87b") + ) + (wire + (pts + (xy 105.41 90.17) (xy 105.41 92.71) + ) + (stroke + (width 0) + (type default) + ) + (uuid "377e1400-5253-43a3-a6fc-e5139c31c1d3") + ) + (wire + (pts + (xy 93.98 85.09) (xy 93.98 66.04) + ) + (stroke + (width 0) + (type default) + ) + (uuid "38057efb-0775-4971-8d61-1604845558c8") + ) + (wire + (pts + (xy 68.58 45.72) (xy 64.77 45.72) + ) + (stroke + (width 0) + (type default) + ) + (uuid "389ba585-b204-43ab-9e02-a53537a0fba2") + ) + (wire + (pts + (xy 71.12 148.59) (xy 71.12 140.97) + ) + (stroke + (width 0) + (type default) + ) + (uuid "392ea9d0-9a7f-4113-9503-12f51e5750d2") + ) + (wire + (pts + (xy 200.66 35.56) (xy 215.9 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3b686d17-1000-4762-ba31-589d599a3edf") + ) + (wire + (pts + (xy 123.19 167.64) (xy 113.03 167.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3bc13aba-43db-461d-809e-b22898d810ec") + ) + (wire + (pts + (xy 49.53 129.54) (xy 52.07 129.54) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3f8a5430-68a9-4732-9b89-4e00dd8ae219") + ) + (wire + (pts + (xy 38.1 129.54) (xy 41.91 129.54) + ) + (stroke + (width 0) + (type default) + ) + (uuid "42ff012d-5eb7-42b9-bb45-415cf26799c6") + ) + (wire + (pts + (xy 29.21 38.1) (xy 29.21 49.53) + ) + (stroke + (width 0) + (type default) + ) + (uuid "44ec7c0d-cbe9-4ccf-8efc-eaa4f7b61175") + ) + (wire + (pts + (xy 88.9 43.18) (xy 92.71 43.18) + ) + (stroke + (width 0) + (type default) + ) + (uuid "453819cf-4fd5-4d03-ae44-6b0051a4b481") + ) + (wire + (pts + (xy 59.69 156.21) (xy 72.39 156.21) + ) + (stroke + (width 0) + (type default) + ) + (uuid "46394e21-5c3f-435d-874a-c99251ea87ef") + ) + (wire + (pts + (xy 29.21 66.04) (xy 39.37 66.04) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4a54c707-7b6f-4a3d-a74d-5e3526114aba") + ) + (wire + (pts + (xy 29.21 73.66) (xy 29.21 66.04) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4aa97874-2fd2-414c-b381-9420384c2fd8") + ) + (wire + (pts + (xy 71.12 140.97) (xy 85.09 140.97) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4c54462e-2b9f-4b2d-9dd4-af9f7ef0ec15") + ) + (wire + (pts + (xy 97.79 148.59) (xy 123.19 148.59) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4e941f3d-1d09-4e45-8e2a-a9c1d77e6851") + ) + (wire + (pts + (xy 138.43 163.83) (xy 138.43 165.1) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4ea8cb62-c4bc-4655-8e26-8427293ebef3") + ) + (wire + (pts + (xy 114.3 54.61) (xy 114.3 66.04) + ) + (stroke + (width 0) + (type default) + ) + (uuid "53e34696-241f-47e5-a477-f469335c8a61") + ) + (wire + (pts + (xy 123.19 148.59) (xy 123.19 156.21) + ) + (stroke + (width 0) + (type default) + ) + (uuid "53e57647-5aec-4cbd-872f-f3707a203f10") + ) + (wire + (pts + (xy 88.9 87.63) (xy 93.98 87.63) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5a315704-1534-4feb-aa43-2fbf16bcc400") + ) + (wire + (pts + (xy 52.07 66.04) (xy 52.07 85.09) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5b0a5a46-7b51-4262-a80e-d33dd1806615") + ) + (wire + (pts + (xy 68.58 82.55) (xy 64.77 82.55) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5c1bf256-7652-47ec-a0e3-f4c9e18b3725") + ) + (wire + (pts + (xy 57.15 38.1) (xy 68.58 38.1) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5c30b9b4-3014-4f50-9329-27a539b67e01") + ) + (wire + (pts + (xy 52.07 44.45) (xy 52.07 66.04) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5ca4be1c-537e-4a4a-b344-d0c8ffde8546") + ) + (wire + (pts + (xy 59.69 168.91) (xy 66.04 168.91) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5d3b9aec-8d59-4be7-9313-9db8fdd4c93f") + ) + (wire + (pts + (xy 62.23 129.54) (xy 59.69 129.54) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5e411aca-93a7-4443-a11c-5987492a6645") + ) + (wire + (pts + (xy 59.69 165.1) (xy 59.69 168.91) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5f6624dd-f123-44dc-9e12-f7f3b816abb6") + ) + (wire + (pts + (xy 100.33 92.71) (xy 105.41 92.71) + ) + (stroke + (width 0) + (type default) + ) + (uuid "60aa0ce8-9d0e-48ca-bbf9-866403979e9b") + ) + (wire + (pts + (xy 105.41 38.1) (xy 114.3 38.1) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6241e6d3-a754-45b6-9f7c-e43019b93226") + ) + (wire + (pts + (xy 58.42 74.93) (xy 64.77 74.93) + ) + (stroke + (width 0) + (type default) + ) + (uuid "644ae9fc-3c8e-4089-866e-a12bf371c3e9") + ) + (wire + (pts + (xy 55.88 66.04) (xy 58.42 66.04) + ) + (stroke + (width 0) + (type default) + ) + (uuid "65094104-90c2-405a-a481-f4eee3a0ca98") + ) + (wire + (pts + (xy 106.68 132.08) (xy 106.68 133.35) + ) + (stroke + (width 0) + (type default) + ) + (uuid "660a6bad-b80e-4345-86f4-8a18124d0370") + ) + (wire + (pts + (xy 64.77 45.72) (xy 64.77 54.61) + ) + (stroke + (width 0) + (type default) + ) + (uuid "68074a7c-627a-4e3f-84eb-a992a6ad1bbc") + ) + (wire + (pts + (xy 39.37 38.1) (xy 39.37 48.26) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6c3b916b-de1c-47c7-b5a1-64b9dced61c8") + ) + (wire + (pts + (xy 38.1 129.54) (xy 38.1 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6d1d60ff-408a-47a7-892f-c5cf9ef6ca75") + ) + (wire + (pts + (xy 123.19 156.21) (xy 123.19 167.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6d8b5a35-e2be-435b-b983-f8ed18ab4859") + ) + (wire + (pts + (xy 88.9 85.09) (xy 93.98 85.09) + ) + (stroke + (width 0) + (type default) + ) + (uuid "71a6945f-a3fb-4751-8132-4ae3d1f3b272") + ) + (wire + (pts + (xy 64.77 66.04) (xy 64.77 68.58) + ) + (stroke + (width 0) + (type default) + ) + (uuid "72b36951-3ec7-4569-9c88-cf9b4afe1cae") + ) + (wire + (pts + (xy 58.42 54.61) (xy 64.77 54.61) + ) + (stroke + (width 0) + (type default) + ) + (uuid "736d7afc-d7c8-48d7-941a-45dc784d57a0") + ) + (wire + (pts + (xy 29.21 78.74) (xy 29.21 92.71) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7760a75a-d74b-4185-b34e-cbc7b2c339b6") + ) + (wire + (pts + (xy 105.41 167.64) (xy 99.06 167.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7a2af8fa-5864-4d61-858c-75a3dccad7d9") + ) + (wire + (pts + (xy 55.88 43.18) (xy 55.88 66.04) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7b44bea5-6530-4a9c-9313-0a61827a601a") + ) + (wire + (pts + (xy 252.73 152.4) (xy 252.73 153.67) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7d0dab95-9e7a-486e-a1d7-fc48860fd57d") + ) + (wire + (pts + (xy 121.92 66.04) (xy 121.92 68.58) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8087f566-a94d-4bbc-985b-e49ee7762296") + ) + (wire + (pts + (xy 88.9 92.71) (xy 100.33 92.71) + ) + (stroke + (width 0) + (type default) + ) + (uuid "814763c2-92e5-4a2c-941c-9bbd073f6e87") + ) + (wire + (pts + (xy 39.37 80.01) (xy 39.37 92.71) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8199bd75-314e-4018-90d9-69707de2c7b2") + ) + (wire + (pts + (xy 85.09 143.51) (xy 85.09 140.97) + ) + (stroke + (width 0) + (type default) + ) + (uuid "829de8b3-f011-405b-a9c7-08b0c34d03fd") + ) + (wire + (pts + (xy 39.37 66.04) (xy 39.37 55.88) + ) + (stroke + (width 0) + (type default) + ) + (uuid "844d7d7a-b386-45a8-aaf6-bf41bbcb43b5") + ) + (wire + (pts + (xy 58.42 54.61) (xy 58.42 58.42) + ) + (stroke + (width 0) + (type default) + ) + (uuid "84e5506c-143e-495f-9aa4-d3a71622f213") + ) + (wire + (pts + (xy 55.88 43.18) (xy 68.58 43.18) + ) + (stroke + (width 0) + (type default) + ) + (uuid "853ee787-6e2c-4f32-bc75-6c17337dd3d5") + ) + (wire + (pts + (xy 29.21 38.1) (xy 39.37 38.1) + ) + (stroke + (width 0) + (type default) + ) + (uuid "869d6302-ae22-478f-9723-3feacbb12eef") + ) + (wire + (pts + (xy 200.66 35.56) (xy 200.66 38.1) + ) + (stroke + (width 0) + (type default) + ) + (uuid "88610282-a92d-4c3d-917a-ea95d59e0759") + ) + (wire + (pts + (xy 99.06 175.26) (xy 99.06 176.53) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8aac8994-ba2d-42d5-a775-884eaaa4a108") + ) + (wire + (pts + (xy 99.06 158.75) (xy 97.79 158.75) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8dc94018-f802-42c8-a528-df0b05b5a246") + ) + (wire + (pts + (xy 64.77 66.04) (xy 78.74 66.04) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8eea310c-891f-4ed5-ad8f-9a346ea5070b") + ) + (wire + (pts + (xy 123.19 66.04) (xy 121.92 66.04) + ) + (stroke + (width 0) + (type default) + ) + (uuid "91932657-485f-403e-9b3a-6524daa75a04") + ) + (wire + (pts + (xy 52.07 38.1) (xy 52.07 39.37) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9269324a-e4d4-4f1e-9a6e-847d4b99d2a7") + ) + (wire + (pts + (xy 97.79 156.21) (xy 110.49 156.21) + ) + (stroke + (width 0) + (type default) + ) + (uuid "955f74c3-86fc-4d87-bd4b-81c0b39dfb8f") + ) + (wire + (pts + (xy 99.06 158.75) (xy 105.41 158.75) + ) + (stroke + (width 0) + (type default) + ) + (uuid "97492c5e-cb0f-43c7-b6a2-a5aa7ad2edbb") + ) + (wire + (pts + (xy 194.31 35.56) (xy 200.66 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "99332785-d9f1-4363-9377-26ddc18e6d2c") + ) + (wire + (pts + (xy 62.23 128.27) (xy 62.23 129.54) + ) + (stroke + (width 0) + (type default) + ) + (uuid "99a644a8-c511-44ea-9277-ab57e3d40315") + ) + (wire + (pts + (xy 219.71 45.72) (xy 224.79 45.72) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9b6bb172-1ac4-440a-ac75-c1917d9d59c7") + ) + (wire + (pts + (xy 57.15 38.1) (xy 57.15 40.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9cb12cc8-7f1a-4a01-9256-c119f11a8a02") + ) + (wire + (pts + (xy 113.03 167.64) (xy 110.49 167.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9d9f1586-582e-4cf5-af1d-c7bbaceccd69") + ) + (wire + (pts + (xy 114.3 66.04) (xy 121.92 66.04) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9e813ec2-d4ce-4e2e-b379-c6fedb4c45db") + ) + (wire + (pts + (xy 93.98 66.04) (xy 105.41 66.04) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9f1ebb0b-b103-40a2-b12f-fe480ac966e8") + ) + (wire + (pts + (xy 72.39 148.59) (xy 71.12 148.59) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9fed61b4-068e-4db4-bd12-dd8ce9957517") + ) + (wire + (pts + (xy 99.06 158.75) (xy 99.06 167.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a496cf71-7e38-48e8-9594-90668d17433c") + ) + (wire + (pts + (xy 49.53 129.54) (xy 49.53 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a53767ed-bb28-4f90-abe0-e0ea734812a4") + ) + (wire + (pts + (xy 52.07 66.04) (xy 39.37 66.04) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a62609cd-29b7-4918-b97d-7b2404ba61cf") + ) + (wire + (pts + (xy 24.13 92.71) (xy 29.21 92.71) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a6738794-75ae-48a6-8949-ed8717400d71") + ) + (wire + (pts + (xy 64.77 90.17) (xy 64.77 92.71) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ac632927-ef4b-405e-8586-5e03e52e75ea") + ) + (wire + (pts + (xy 100.33 90.17) (xy 100.33 92.71) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ae18e2f9-e6d1-4e30-84be-2f74448ce1be") + ) + (wire + (pts + (xy 88.9 90.17) (xy 100.33 90.17) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ae77c3c8-1144-468e-ad5b-a0b4090735bd") + ) + (wire + (pts + (xy 165.1 43.18) (xy 165.1 46.99) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b0271cdd-de22-4bf4-8f55-fc137cfbd4ec") + ) + (wire + (pts + (xy 101.6 152.4) (xy 102.87 152.4) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b163c8b6-51f2-49d1-86bb-f537294b0a58") + ) + (wire + (pts + (xy 64.77 92.71) (xy 68.58 92.71) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b42430aa-e0c1-412b-b086-dd78fa9624b2") + ) + (wire + (pts + (xy 113.03 158.75) (xy 113.03 167.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b49fe76d-fd67-40fe-988c-c62788a63a6e") + ) + (wire + (pts + (xy 33.02 129.54) (xy 38.1 129.54) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b6135480-ace6-42b2-9c47-856ef57cded1") + ) + (wire + (pts + (xy 24.13 38.1) (xy 29.21 38.1) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b78cb2c1-ae4b-4d9b-acd8-d7fe342342f2") + ) + (wire + (pts + (xy 64.77 90.17) (xy 68.58 90.17) + ) + (stroke + (width 0) + (type default) + ) + (uuid "bd59445d-26f8-493b-b919-42a7c4846f45") + ) + (wire + (pts + (xy 165.1 35.56) (xy 168.91 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "bde95c06-433a-4c03-bc48-e3abcdb4e054") + ) + (wire + (pts + (xy 66.04 168.91) (xy 85.09 168.91) + ) + (stroke + (width 0) + (type default) + ) + (uuid "be63b5a9-3485-4813-96ff-8b4bbcd5567d") + ) + (wire + (pts + (xy 105.41 66.04) (xy 105.41 85.09) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c3b3d7f4-943f-4cff-b180-87ef3e1bcbff") + ) + (wire + (pts + (xy 107.95 152.4) (xy 110.49 152.4) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c42623e0-54d7-4b12-a12f-0256bbd3a677") + ) + (wire + (pts + (xy 99.06 38.1) (xy 105.41 38.1) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c4cab9c5-d6e5-4660-b910-603a51b56783") + ) + (wire + (pts + (xy 57.15 40.64) (xy 68.58 40.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c7e7067c-5f5e-48d8-ab59-df26f9b35863") + ) + (wire + (pts + (xy 105.41 92.71) (xy 115.57 92.71) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c8a44971-63c1-4a19-879d-b6647b2dc08d") + ) + (wire + (pts + (xy 138.43 156.21) (xy 138.43 158.75) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c8b66d8a-d2e2-4b6a-a046-4020be381ba6") + ) + (wire + (pts + (xy 119.38 156.21) (xy 123.19 156.21) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c9d60ccf-f253-4b98-9e17-7e22a6ce389f") + ) + (wire + (pts + (xy 66.04 166.37) (xy 66.04 168.91) + ) + (stroke + (width 0) + (type default) + ) + (uuid "caba99f1-9313-42f3-9b3d-a74c855c054f") + ) + (wire + (pts + (xy 85.09 140.97) (xy 85.09 129.54) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ce6ee49e-7721-4e42-b339-55dc5a91900f") + ) + (wire + (pts + (xy 215.9 35.56) (xy 215.9 41.91) + ) + (stroke + (width 0) + (type default) + ) + (uuid "cebb9021-66d3-4116-98d4-5e6f3c1552be") + ) + (wire + (pts + (xy 64.77 73.66) (xy 64.77 74.93) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d0d2eee9-31f6-44fa-8149-ebb4dc2dc0dc") + ) + (wire + (pts + (xy 64.77 82.55) (xy 64.77 74.93) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d1d9f1cc-8e43-494f-9307-73266aff1e2c") + ) + (wire + (pts + (xy 52.07 90.17) (xy 52.07 92.71) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d22a5755-2f54-47b8-a9ac-611b6e5106b3") + ) + (wire + (pts + (xy 215.9 35.56) (xy 224.79 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d9a3981c-883f-4797-87dd-8a458d85bfa5") + ) + (wire + (pts + (xy 105.41 35.56) (xy 105.41 38.1) + ) + (stroke + (width 0) + (type default) + ) + (uuid "da6f4122-0ecc-496f-b0fd-e4abef534976") + ) + (wire + (pts + (xy 85.09 168.91) (xy 85.09 170.18) + ) + (stroke + (width 0) + (type default) + ) + (uuid "daa89b51-3591-40ca-a1fe-15a10360d770") + ) + (wire + (pts + (xy 123.19 156.21) (xy 138.43 156.21) + ) + (stroke + (width 0) + (type default) + ) + (uuid "db14b8d1-2dac-4f68-a921-9f5b6a7c1434") + ) + (wire + (pts + (xy 158.75 35.56) (xy 165.1 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e17e6c0e-7e5b-43f0-ad48-0a2760b45b04") + ) + (wire + (pts + (xy 78.74 66.04) (xy 93.98 66.04) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e1aadc94-9cae-418b-ac0a-28f8dc144fb9") + ) + (wire + (pts + (xy 29.21 54.61) (xy 29.21 66.04) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e1b88aa4-d887-4eea-83ff-5c009f4390c4") + ) + (wire + (pts + (xy 97.79 153.67) (xy 101.6 153.67) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e2e52d3d-694a-4fa1-a82e-ab39ce22a1f3") + ) + (wire + (pts + (xy 64.77 63.5) (xy 64.77 66.04) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e472dac4-5b65-4920-b8b2-6065d140a69d") + ) + (wire + (pts + (xy 165.1 38.1) (xy 165.1 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e4e20505-1208-4100-a4aa-676f50844c06") + ) + (wire + (pts + (xy 52.07 92.71) (xy 64.77 92.71) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e9932893-fbd4-4f73-bf53-957a83c70ab2") + ) + (wire + (pts + (xy 52.07 66.04) (xy 55.88 66.04) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ea486ae2-d4eb-4431-85cb-2b5a9e761911") + ) + (wire + (pts + (xy 39.37 72.39) (xy 39.37 66.04) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ebca7c5e-ae52-43e5-ac6c-69a96a9a5b24") + ) + (wire + (pts + (xy 62.23 129.54) (xy 85.09 129.54) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ed8d42e2-37ba-4dc8-94a5-6884e00209f5") + ) + (wire + (pts + (xy 58.42 73.66) (xy 58.42 74.93) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ee41cb8e-512d-41d2-81e1-3c50fff32aeb") + ) + (wire + (pts + (xy 99.06 167.64) (xy 99.06 170.18) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f11ad91f-4df0-49ec-b2ed-e6e1e9a10392") + ) + (wire + (pts + (xy 215.9 49.53) (xy 215.9 57.15) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f1782535-55f4-4299-bd4f-6f51b0b7259c") + ) + (wire + (pts + (xy 181.61 46.99) (xy 181.61 49.53) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f357ddb5-3f44-43b0-b00d-d64f5c62ba4a") + ) + (wire + (pts + (xy 105.41 66.04) (xy 114.3 66.04) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f64497d1-1d62-44a4-8e5e-6fba4ebc969a") + ) + (wire + (pts + (xy 97.79 151.13) (xy 100.33 151.13) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f8251c97-848a-40c2-bc40-bbdcd9af7a08") + ) + (wire + (pts + (xy 138.43 156.21) (xy 142.24 156.21) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f8fffe07-24db-4c4b-a59d-09120774fdda") + ) + (wire + (pts + (xy 46.99 129.54) (xy 49.53 129.54) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f9403623-c00c-4b71-bc5c-d763ff009386") + ) + (wire + (pts + (xy 110.49 158.75) (xy 113.03 158.75) + ) + (stroke + (width 0) + (type default) + ) + (uuid "fff0af80-8318-4087-9060-180c1e9569d3") + ) + (text "Connect 10k-trimpot:\nVishay 534B1103JC" + (exclude_from_sim no) + (at 252.73 45.72 0) + (effects + (font + (size 1.524 1.524) + ) + (justify left) + ) + (uuid "2b529b81-6f8e-4786-b650-da5c23d6c7ed") + ) + (text "S, green wire" + (exclude_from_sim no) + (at 232.41 45.72 0) + (effects + (font + (size 1.524 1.524) + ) + (justify left) + ) + (uuid "bcea8536-f568-4f61-94cd-521f3d041ea0") + ) + (text "Clockwise (CW), black wire" + (exclude_from_sim no) + (at 217.17 52.07 0) + (effects + (font + (size 1.524 1.524) + ) + (justify left) + ) + (uuid "c230e347-949d-4322-9bc6-097d0ba8d24a") + ) + (text "Note: Pin 1 and 3 in the schematic does not (!)\nmatch pin 1 and 3 on the Vishay pots. They are\nreverted. Do check CW and CCW as they do match." + (exclude_from_sim no) + (at 219.71 59.69 0) + (effects + (font + (size 1.524 1.524) + ) + (justify left) + ) + (uuid "d669a9dc-3df9-4ed1-8678-83decbb4a452") + ) + (text "Counterclockwise (CW), yellow wire" + (exclude_from_sim no) + (at 217.17 39.37 0) + (effects + (font + (size 1.524 1.524) + ) + (justify left) + ) + (uuid "ee851235-286a-4ed5-8def-9c3b6abe3d0f") + ) + (hierarchical_label "+15V" + (shape input) + (at 33.02 129.54 180) + (fields_autoplaced yes) + (effects + (font + (size 1.524 1.524) + ) + (justify right) + ) + (uuid "03e29079-9140-4699-aec9-035e4f63162c") + ) + (hierarchical_label "+12V" + (shape output) + (at 121.92 38.1 0) + (fields_autoplaced yes) + (effects + (font + (size 1.524 1.524) + ) + (justify left) + ) + (uuid "2194fa87-ee11-4c2a-ac7d-f8a50c433b6d") + ) + (hierarchical_label "+15V" + (shape input) + (at 24.13 38.1 180) + (fields_autoplaced yes) + (effects + (font + (size 1.524 1.524) + ) + (justify right) + ) + (uuid "36a7a440-daa3-4902-b143-21669ae13270") + ) + (hierarchical_label "+15V" + (shape input) + (at 92.71 43.18 0) + (fields_autoplaced yes) + (effects + (font + (size 1.524 1.524) + ) + (justify left) + ) + (uuid "3e5cf107-5fe2-4672-949e-ce890e774227") + ) + (hierarchical_label "10V_ref" + (shape output) + (at 224.79 35.56 0) + (fields_autoplaced yes) + (effects + (font + (size 1.524 1.524) + ) + (justify left) + ) + (uuid "4c28b40e-c491-4f27-aec8-9120120d1b3a") + ) + (hierarchical_label "+5V" + (shape output) + (at 142.24 156.21 0) + (fields_autoplaced yes) + (effects + (font + (size 1.524 1.524) + ) + (justify left) + ) + (uuid "5131449d-477d-49b0-85a5-2344038b72cf") + ) + (hierarchical_label "-15V" + (shape input) + (at 24.13 92.71 180) + (fields_autoplaced yes) + (effects + (font + (size 1.524 1.524) + ) + (justify right) + ) + (uuid "5150e971-02b8-403c-abe7-16a067f053d6") + ) + (hierarchical_label "-15V" + (shape input) + (at 93.98 87.63 0) + (fields_autoplaced yes) + (effects + (font + (size 1.524 1.524) + ) + (justify left) + ) + (uuid "61eaca7e-e23a-4616-981f-f1746e051b27") + ) + (hierarchical_label "-12V" + (shape output) + (at 115.57 92.71 0) + (fields_autoplaced yes) + (effects + (font + (size 1.524 1.524) + ) + (justify left) + ) + (uuid "b7944ed5-490a-4894-939d-8d976448ff1d") + ) + (hierarchical_label "+12V" + (shape input) + (at 158.75 35.56 180) + (fields_autoplaced yes) + (effects + (font + (size 1.524 1.524) + ) + (justify right) + ) + (uuid "e61e48c8-2693-46c5-9234-2d7b0c086b44") + ) + (hierarchical_label "SET" + (shape output) + (at 224.79 45.72 0) + (fields_autoplaced yes) + (effects + (font + (size 1.524 1.524) + ) + (justify left) + ) + (uuid "fc9dc928-aa70-481e-af14-14ab0a638df1") + ) + (symbol + (lib_id "Device:C_Small") + (at 52.07 87.63 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b054b90") + (property "Reference" "C4" + (at 52.324 85.852 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10u" + (at 52.324 89.662 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" + (at 52.07 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 52.07 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 52.07 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Taiyo Yuden" + (at 52.07 87.63 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "GMK325BJ106MN-T" + (at 52.07 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "a4cd8c69-2e6c-4e06-9010-1acb722fbd46") + ) + (pin "2" + (uuid "755ec021-528e-4493-99b4-197d8699447f") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "C4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R_Small") + (at 64.77 60.96 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b054c38") + (property "Reference" "R1" + (at 65.532 60.452 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "121k" + (at 65.532 61.976 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 64.77 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 64.77 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 64.77 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Susumu" + (at 64.77 60.96 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "RR0816P-1213-D-09D" + (at 64.77 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "8f9f0312-a6da-44a7-9598-9e2034eb733d") + ) + (pin "2" + (uuid "7ba59bbf-c7d0-435d-8273-5aa1d7f3b8a2") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "R1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Small") + (at 58.42 71.12 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b054c4b") + (property "Reference" "C9" + (at 58.674 69.342 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100n" + (at 58.674 73.152 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_1206_3216Metric" + (at 58.42 71.12 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 58.42 71.12 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 58.42 71.12 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "KEMET" + (at 58.42 71.12 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "C1206C104K3GEC7210" + (at 58.42 71.12 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "dbb13b1e-989e-4557-9034-dc152cfe341e") + ) + (pin "2" + (uuid "5a30ba7c-bc1e-4fda-91d0-69fdb034ba0c") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "C9") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Small") + (at 38.1 133.35 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b0ae6a5") + (property "Reference" "C1" + (at 38.354 131.572 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "4.7u" + (at 38.354 135.382 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 38.1 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 38.1 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 38.1 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Wurth Electronics" + (at 38.1 133.35 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "885012107013" + (at 38.1 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "74ed0eda-50ab-4573-b735-6618cab127a4") + ) + (pin "2" + (uuid "17044c77-81ff-4883-854b-1e9ae86345dd") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "C1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:L_Small") + (at 54.61 129.54 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b0affc6") + (property "Reference" "L2" + (at 53.594 128.778 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "4.7u" + (at 55.626 128.778 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Inductor_SMD:L_Coilcraft_MSS1278T-XXX" + (at 54.61 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 54.61 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 54.61 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Coilcraft" + (at 54.61 129.54 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "MSS1278T-472MLD" + (at 54.61 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "d82f5c5a-5c2d-4d1c-831d-3be626f3b177") + ) + (pin "2" + (uuid "ef073808-3ab3-4fb4-9ee1-a380f88529c0") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "L2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:FerriteBead_Small") + (at 44.45 129.54 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b0b0023") + (property "Reference" "FB1" + (at 43.18 127 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "TDK MPZ2012S221A" + (at 45.72 127 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Inductor_SMD:L_0805_2012Metric" + (at 44.45 131.318 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 44.45 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 44.45 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "TDK" + (at 44.45 129.54 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "MPZ2012S221AT000" + (at 44.45 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "00a22675-8675-4776-b59b-31b0f244fa71") + ) + (pin "2" + (uuid "8ebcb119-131b-4650-a6e0-c0955a371394") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "FB1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 38.1 135.89 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b0b0080") + (property "Reference" "#PWR0101" + (at 38.1 142.24 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 38.1 139.7 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 38.1 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 38.1 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 38.1 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "8f1f7229-a366-419d-9edc-906ebbb682ab") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "#PWR0101") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 49.53 135.89 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b0b00d4") + (property "Reference" "#PWR0102" + (at 49.53 142.24 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 49.53 139.7 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 49.53 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 49.53 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 49.53 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "73189310-63a8-424c-a390-09693fc402cf") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "#PWR0102") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 59.69 135.89 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b0b0128") + (property "Reference" "#PWR0103" + (at 59.69 142.24 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 59.69 139.7 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 59.69 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 59.69 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 59.69 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "8114c9f3-ed51-4102-9150-fd382ee54128") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "#PWR0103") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:RFShield_OnePiece") + (at 252.73 142.24 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005b0d8bf4") + (property "Reference" "J9" + (at 252.73 137.16 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "RF_Shield_One_Piece" + (at 252.73 139.7 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "custom:Laird_Technologies_BMI-S-107_44.37x44.37mm" + (at 252.73 144.78 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 252.73 144.78 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 252.73 142.24 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Wurth Electronics" + (at 252.73 142.24 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "36907406S" + (at 252.73 142.24 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Config" "" + (at 252.73 142.24 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "209b428c-f384-4919-ad6a-fc6c51b48199") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "J9") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Small") + (at 58.42 60.96 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005c1a9735") + (property "Reference" "C8" + (at 58.674 59.182 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100n" + (at 58.674 62.992 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_1206_3216Metric" + (at 58.42 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 58.42 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 58.42 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "KEMET" + (at 58.42 60.96 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "C1206C104K3GEC7210" + (at 58.42 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "46e158f9-2818-4c30-ad09-fb09761f1742") + ) + (pin "2" + (uuid "4573e092-4d0f-4dae-90a1-fdd47ced0109") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "C8") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Small") + (at 165.1 40.64 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005c1a9da5") + (property "Reference" "C21" + (at 165.354 38.862 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100n" + (at 165.354 42.672 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_1206_3216Metric" + (at 165.1 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 165.1 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 165.1 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "KEMET" + (at 165.1 40.64 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "C1206C104K3GEC7210" + (at 165.1 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "365ed3cb-7e08-4ae0-9c29-86de7736352c") + ) + (pin "2" + (uuid "e9b77d19-bb11-4539-a35f-e8a2e3241589") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "C21") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Small") + (at 52.07 41.91 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005c1bb058") + (property "Reference" "C3" + (at 52.324 40.132 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10u" + (at 52.324 43.942 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" + (at 52.07 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 52.07 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 52.07 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Taiyo Yuden" + (at 52.07 41.91 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "GMK325BJ106MN-T" + (at 52.07 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "5f0db6fd-5092-485f-9f2b-d19c03fbefd5") + ) + (pin "2" + (uuid "e6400616-cf24-473c-93bf-41f9a01f60c6") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "C3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Small") + (at 105.41 43.18 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005c1bb114") + (property "Reference" "C12" + (at 105.664 41.402 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10u" + (at 105.664 45.212 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" + (at 105.41 43.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 105.41 43.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 105.41 43.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Taiyo Yuden" + (at 105.41 43.18 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "GMK325BJ106MN-T" + (at 105.41 43.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "d7591539-35c0-438a-96e5-8bed233d8a47") + ) + (pin "2" + (uuid "90269f7c-a94e-41a8-83bc-1361a8ac10b2") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "C12") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Small") + (at 105.41 87.63 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005c1bb1d1") + (property "Reference" "C13" + (at 105.664 85.852 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10u" + (at 105.664 89.662 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" + (at 105.41 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 105.41 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 105.41 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Taiyo Yuden" + (at 105.41 87.63 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "GMK325BJ106MN-T" + (at 105.41 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "d1653dfe-9eda-40bb-83d1-5451f6c865f1") + ) + (pin "2" + (uuid "5748097c-d657-4822-997b-db1c684ca1ab") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "C13") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Small") + (at 49.53 133.35 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005c1bd28c") + (property "Reference" "C2" + (at 49.784 131.572 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "4.7u" + (at 49.784 135.382 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 49.53 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 49.53 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 49.53 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Wurth Electronics" + (at 49.53 133.35 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "885012107013" + (at 49.53 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "fd758066-e711-4d2b-9e4e-99d194fd19c7") + ) + (pin "2" + (uuid "afbb8590-5b7c-4f3a-9207-82d55d9bd1e6") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "C2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Small") + (at 59.69 133.35 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005c1bd316") + (property "Reference" "C5" + (at 59.944 131.572 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "4.7u" + (at 59.944 135.382 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 59.69 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 59.69 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 59.69 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Wurth Electronics" + (at 59.69 133.35 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "885012107013" + (at 59.69 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "805e8519-bbd0-4f40-9076-3f3a61530be0") + ) + (pin "2" + (uuid "805fed2c-ae6e-47ad-afdc-4c9d1320b9bc") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "C5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:TestPoint") + (at 105.41 96.52 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005c22864c") + (property "Reference" "TP2" + (at 105.41 101.6 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "-12V" + (at 102.87 96.52 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "TestPoint:TestPoint_THTPad_D1.5mm_Drill0.7mm" + (at 105.41 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 105.41 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 105.41 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Config" "DNF" + (at 105.41 96.52 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "57412ce3-ecb6-42cc-ae3b-e037e8cf969a") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "TP2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:TestPoint") + (at 105.41 35.56 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005c228744") + (property "Reference" "TP1" + (at 105.41 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "+12V" + (at 107.95 35.56 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "TestPoint:TestPoint_THTPad_D1.5mm_Drill0.7mm" + (at 105.41 35.56 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 105.41 35.56 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 105.41 35.56 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Config" "DNF" + (at 105.41 35.56 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "8db3024a-ea8f-4cb8-8536-8010620bc38a") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "TP1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:TestPoint") + (at 123.19 66.04 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005c229a96") + (property "Reference" "TP3" + (at 130.048 66.04 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "TestPoint" + (at 128.27 66.04 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "TestPoint:TestPoint_THTPad_D1.5mm_Drill0.7mm" + (at 123.19 71.12 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 123.19 71.12 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 123.19 66.04 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Config" "DNF" + (at 123.19 66.04 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "MFN" "" + (at 123.19 66.04 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "" + (at 123.19 66.04 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "bc18bc85-3c2b-4659-851b-0b157aec0d5a") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "TP3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R_Small") + (at 64.77 71.12 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005ccf58a1") + (property "Reference" "R2" + (at 65.532 70.612 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "121k" + (at 65.532 72.136 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 64.77 71.12 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 64.77 71.12 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 64.77 71.12 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Susumu" + (at 64.77 71.12 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "RR0816P-1213-D-09D" + (at 64.77 71.12 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "4078cd1e-3bfd-4833-9973-967baf421539") + ) + (pin "2" + (uuid "35a62a6a-d780-4de6-8d8f-210f9f6c15eb") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "R2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:TestPoint") + (at 200.66 38.1 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005ccf668f") + (property "Reference" "TP5" + (at 200.66 44.45 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "+10V" + (at 200.025 46.355 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "TestPoint:TestPoint_THTPad_D1.5mm_Drill0.7mm" + (at 200.66 38.1 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 200.66 38.1 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 200.66 38.1 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Config" "DNF" + (at 200.66 38.1 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "24b7710f-04fd-4786-9d99-23328f32ec19") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "TP5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "LinearTechnology:LT1236-10") + (at 181.61 40.64 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005cd3a02b") + (property "Reference" "U3" + (at 187.96 41.91 0) + (effects + (font + (size 1.524 1.524) + ) + ) + ) + (property "Value" "LT1236-10" + (at 181.61 31.75 0) + (effects + (font + (size 1.524 1.524) + ) + ) + ) + (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" + (at 181.61 40.64 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 181.61 40.64 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 181.61 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Analog Devices" + (at 181.61 40.64 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "LT1236ACS8-10#PBF" + (at 181.61 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Alternative" "LT1236CIS8-10#PBF" + (at 181.61 40.64 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "b3610904-434d-408e-97da-8841ed566774") + ) + (pin "2" + (uuid "aa2cc136-57ad-4ca7-b810-43dd40673ff3") + ) + (pin "3" + (uuid "4776475c-59c6-42ac-9d24-2bfcabb42178") + ) + (pin "4" + (uuid "6954c717-12ca-412f-baa6-413d8c3f62e8") + ) + (pin "5" + (uuid "229fb7d2-6c48-4120-ab8f-3a4cdfead7a0") + ) + (pin "6" + (uuid "1530708c-e682-4209-ab3c-158be97f2db5") + ) + (pin "7" + (uuid "4c17a5de-a215-4a42-9763-ccbc70100be2") + ) + (pin "8" + (uuid "d009f50e-b3e0-4064-aebd-64e5951a1d18") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "U3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Regulator_Linear:LT3045xMSE") + (at 78.74 40.64 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005cd407e5") + (property "Reference" "U1" + (at 78.74 31.75 0) + (effects + (font + (size 1.524 1.524) + ) + ) + ) + (property "Value" "LT3045EMSE" + (at 88.9 31.75 0) + (effects + (font + (size 1.524 1.524) + ) + ) + ) + (property "Footprint" "Package_SO:MSOP-12-1EP_3x4mm_P0.65mm_EP1.65x2.85mm" + (at 78.74 32.385 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.analog.com/media/en/technical-documentation/data-sheets/3045fa.pdf" + (at 78.74 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 78.74 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Linear Technology" + (at 97.79 49.53 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "LT3045EMSE#PBF" + (at 78.74 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "569bde64-78a1-4044-9007-30f0cb451707") + ) + (pin "10" + (uuid "adc0315d-ef3c-487a-9203-5bae700f7135") + ) + (pin "11" + (uuid "b48a9b82-0534-483a-aa49-da9804d39991") + ) + (pin "12" + (uuid "a9a97bbf-af55-4d01-a985-8d98ddde1fac") + ) + (pin "13" + (uuid "c625af96-d2fd-4ca7-ad1e-dbc3386b86c6") + ) + (pin "2" + (uuid "173a4fe0-74d8-41ba-aacd-82f87a967a34") + ) + (pin "3" + (uuid "5688752d-aa03-492e-b9a1-884fc9edcb10") + ) + (pin "4" + (uuid "0d58fe4c-518d-46b0-9aa3-07ce954bd652") + ) + (pin "5" + (uuid "cd6c0189-d003-4535-9bcf-c3ca22142ab9") + ) + (pin "6" + (uuid "dc50893b-31d3-4789-b901-e1bcb1f4629b") + ) + (pin "7" + (uuid "a2a2cdbe-2c31-4041-9bd9-b30baadd56a5") + ) + (pin "8" + (uuid "f98750c9-4733-44fc-81ad-abfb0939cc0d") + ) + (pin "9" + (uuid "a20050a8-9ccf-4fa1-b19b-358d8fc6621e") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "U1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Regulator_Linear:LT3094xMSE") + (at 78.74 87.63 0) + (mirror x) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005cd42b69") + (property "Reference" "U2" + (at 78.74 96.52 0) + (effects + (font + (size 1.524 1.524) + ) + ) + ) + (property "Value" "LT3094EMSE" + (at 88.9 96.52 0) + (effects + (font + (size 1.524 1.524) + ) + ) + ) + (property "Footprint" "Package_SO:MSOP-12-1EP_3x4mm_P0.65mm_EP1.65x2.85mm" + (at 78.74 98.425 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.analog.com/media/en/technical-documentation/data-sheets/LT3094.pdf" + (at 78.74 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 78.74 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Analog Devices" + (at 97.79 78.74 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "LT3094EMSE#PBF" + (at 78.74 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "12" + (uuid "ed953e91-9a60-4dae-b49b-63d249138507") + ) + (pin "13" + (uuid "58a223ac-1dd4-46cf-a57f-114fdc5994a2") + ) + (pin "1" + (uuid "2831cf47-6c42-484f-8070-fad2a42bfce1") + ) + (pin "10" + (uuid "556c49a3-3861-4eeb-bed7-30a5aebf5526") + ) + (pin "11" + (uuid "443167d1-7c9e-4c4b-abc9-f3338629d2f5") + ) + (pin "2" + (uuid "990ef446-8a1d-4c1f-b112-ebf09706cc51") + ) + (pin "3" + (uuid "86485391-7129-427d-9413-ae6407a731ce") + ) + (pin "4" + (uuid "b114d2a6-84d0-4fa4-9a8d-0e202c30ded6") + ) + (pin "5" + (uuid "3e2d3f76-094b-49b4-a5cd-807b83bb7b80") + ) + (pin "6" + (uuid "87efc960-fc20-4947-aae8-fb6b9c89ea87") + ) + (pin "7" + (uuid "a1d2be55-704b-491a-9ece-1cdec25fb54d") + ) + (pin "8" + (uuid "acc6b9af-0124-466b-81f2-31e0fdbf312a") + ) + (pin "9" + (uuid "dca8c8d1-a3bb-4c0c-8593-6b1490a0e357") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "U2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R_Potentiometer") + (at 215.9 45.72 0) + (mirror x) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005d6da79f") + (property "Reference" "RV1" + (at 214.122 46.8884 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "10k" + (at 214.122 44.577 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "Connector_Molex:Molex_KK-254_AE-6410-03A_1x03_P2.54mm_Vertical" + (at 215.9 45.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 215.9 45.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 215.9 45.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Molex" + (at 215.9 45.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "22-23-2031" + (at 215.9 45.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Config" "" + (at 215.9 45.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "1a037295-398f-4c16-8ab1-ad301322a09b") + ) + (pin "2" + (uuid "b0f77368-6f83-4ffb-a98f-1290e36335c6") + ) + (pin "3" + (uuid "bcda5e57-e8ce-491e-9430-bcaae0de92df") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "RV1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 215.9 57.15 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005d6db37f") + (property "Reference" "#PWR0105" + (at 215.9 63.5 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 216.027 61.5442 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 215.9 57.15 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 215.9 57.15 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 215.9 57.15 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "950889fb-cb23-42d5-843c-f9b127eb1937") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "#PWR0105") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 121.92 68.58 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005d6f0c11") + (property "Reference" "#PWR0107" + (at 121.92 74.93 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 122.047 72.9742 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 121.92 68.58 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 121.92 68.58 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 121.92 68.58 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "af16c235-daf6-45da-87da-282c77df4f5b") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "#PWR0107") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 181.61 49.53 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005d71d9e6") + (property "Reference" "#PWR0109" + (at 181.61 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 181.737 53.9242 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 181.61 49.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 181.61 49.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 181.61 49.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "2e32f3d4-ea5e-4b26-b1e0-b9d0ecf2b9ba") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "#PWR0109") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 252.73 153.67 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-00005d72147a") + (property "Reference" "#PWR0110" + (at 252.73 160.02 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 252.857 158.0642 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 252.73 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 252.73 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 252.73 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "4e990780-0f4d-4ef8-ab3f-3a3087d25350") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "#PWR0110") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:D_Schottky") + (at 114.3 50.8 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-000061675730") + (property "Reference" "D1" + (at 116.332 49.6316 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "BAT54" + (at 116.332 51.943 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Diode_SMD:D_SOD-323" + (at 114.3 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 114.3 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 114.3 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Panjit" + (at 114.3 50.8 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "BAT54WS_R1_00001" + (at 114.3 50.8 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "965dc679-456e-4572-8a7a-3039d1431541") + ) + (pin "2" + (uuid "674524c8-cb60-4210-b796-b0465b28bd29") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "D1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:D_TVS") + (at 39.37 52.07 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-000061e66d74") + (property "Reference" "D2" + (at 41.402 50.9016 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "SMBJ40CA" + (at 41.402 53.213 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Diode_SMD:D_SMB" + (at 39.37 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 39.37 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 39.37 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Bourns" + (at 39.37 52.07 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "SMBJ40CA-QH" + (at 39.37 52.07 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "5aac9dfb-fe55-409c-b8f1-9b0d7ab70665") + ) + (pin "2" + (uuid "99449361-d03e-457e-9be0-7c32acac015d") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "D2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:D_TVS") + (at 39.37 76.2 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-000061e67517") + (property "Reference" "D3" + (at 41.402 75.0316 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "SMBJ40CA" + (at 41.402 77.343 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Diode_SMD:D_SMB" + (at 39.37 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 39.37 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 39.37 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Bourns" + (at 39.37 76.2 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "SMBJ40CA-QH" + (at 39.37 76.2 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "84722048-cac8-4bc1-9386-5a0b528ec6c7") + ) + (pin "2" + (uuid "d255d867-8ae1-47cb-8bdd-6b5c37bd0833") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "D3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Polarized_Small") + (at 29.21 52.07 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-000061e832ac") + (property "Reference" "C28" + (at 31.4452 50.9016 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100u" + (at 31.4452 53.213 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_THT:CP_Radial_D6.3mm_P2.50mm" + (at 29.21 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 29.21 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 29.21 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Nichicon" + (at 29.21 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "UHV1V101MED" + (at 29.21 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "3043c09a-18bc-49e7-befd-d9adddf4c485") + ) + (pin "2" + (uuid "2837a8eb-95e7-4359-b039-97511b25b631") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "C28") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Polarized_Small") + (at 29.21 76.2 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "00000000-0000-0000-0000-000061e83ad8") + (property "Reference" "C29" + (at 31.4452 75.0316 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100u" + (at 31.4452 77.343 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_THT:CP_Radial_D6.3mm_P2.50mm" + (at 29.21 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 29.21 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 29.21 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Nichicon" + (at 29.21 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "UHV1V101MED" + (at 29.21 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "60d8f299-2224-4fcb-baf9-ff610498825c") + ) + (pin "2" + (uuid "5e154095-3aa2-4d70-8130-741b42440ea9") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "C29") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Small") + (at 138.43 161.29 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "10ba1241-7331-48ca-8d86-4837e8c4adf9") + (property "Reference" "C20" + (at 138.684 159.512 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "47u" + (at 138.684 163.322 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_1210_3225Metric" + (at 138.43 161.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 138.43 161.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 138.43 161.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Taiyo Yuden" + (at 138.43 161.29 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "EMK325BJ476MM-P" + (at 138.43 161.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "57b439a7-ff7c-4e0c-ac93-43df53360516") + ) + (pin "2" + (uuid "a1a87100-ac9f-4f65-8c9a-7bc6b5157f37") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "C20") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R_Small") + (at 107.95 158.75 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "175f2b90-3b83-4e62-bee5-efbaa5985a1e") + (property "Reference" "R15" + (at 108.458 159.512 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "1M" + (at 106.934 159.512 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 107.95 158.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 107.95 158.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 107.95 158.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Panasonic" + (at 107.95 158.75 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "ERJ-3RED1004V" + (at 107.95 158.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "0979e434-5580-4b4d-bb21-d677e2509ad5") + ) + (pin "2" + (uuid "966e4710-ae61-4e3d-94dd-bd5d8eb0df92") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "R15") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Small") + (at 59.69 162.56 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "1f70e0f0-ae09-4a93-bc0d-3593e5e22b62") + (property "Reference" "C6" + (at 59.436 164.338 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10n" + (at 59.436 160.528 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 59.69 162.56 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 59.69 162.56 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 59.69 162.56 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Murata Electronics" + (at 59.69 162.56 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "GRM1885C1H103JA01D" + (at 59.69 162.56 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "a92ca469-43a9-4b7c-ae64-029841787c33") + ) + (pin "2" + (uuid "99097a29-90fe-4381-a1c8-bf6da50cde64") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "C6") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:TestPoint") + (at 138.43 153.67 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "4d3c1996-cb8b-450e-b4a4-dc613505151c") + (property "Reference" "TP4" + (at 135.89 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "+5V" + (at 140.97 151.13 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "TestPoint:TestPoint_THTPad_D1.5mm_Drill0.7mm" + (at 138.43 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 138.43 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 138.43 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Config" "DNF" + (at 138.43 153.67 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "494dcf9f-bde3-4bd1-9b36-6a31c9f32a54") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "TP4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Small") + (at 105.41 152.4 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "58c7e967-a994-467a-b97f-e6d59b9f5c83") + (property "Reference" "C11" + (at 103.632 152.146 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100n" + (at 107.442 152.146 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 105.41 152.4 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 105.41 152.4 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 105.41 152.4 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Kemet" + (at 105.41 152.4 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "C0603C104K5RECAUTO" + (at 105.41 152.4 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "2e200a8c-9d7c-4d60-9403-4008cac45361") + ) + (pin "2" + (uuid "39a12d04-98f8-4d34-9d5f-3cf9d97d9d5e") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "C11") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 85.09 170.18 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "62ebd845-8f20-4a46-a96b-59bec8a762d3") + (property "Reference" "#PWR04" + (at 85.09 176.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 85.09 173.99 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 85.09 170.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 85.09 170.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 85.09 170.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "ce805738-d37b-471f-8507-ab945f586b58") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "#PWR04") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:PWR_FLAG") + (at 62.23 128.27 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "77be5125-423b-459b-830a-7aabc255681c") + (property "Reference" "#FLG01" + (at 62.23 126.365 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "PWR_FLAG" + (at 62.23 123.19 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 62.23 128.27 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 62.23 128.27 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Special symbol for telling ERC where power comes from" + (at 62.23 128.27 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "dc9ad700-d09b-40c8-b90b-2d1d7f6cf461") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "#FLG01") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Small") + (at 106.68 135.89 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "781f0c7c-fcbe-4423-869a-34df8976d2d0") + (property "Reference" "C7" + (at 106.934 134.112 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "1u" + (at 106.934 137.922 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" + (at 106.68 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 106.68 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 106.68 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Taiyo Yuden" + (at 106.68 135.89 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "UMK212B7105KG-T" + (at 106.68 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "52825f4a-93fc-42ee-8e99-45df2be1e575") + ) + (pin "2" + (uuid "5cb38668-d69e-4b80-9c66-c13de8e2dd68") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "C7") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:L_Small") + (at 116.84 156.21 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "8257e3a6-385d-4475-8f58-b9b5b2fc8f2a") + (property "Reference" "L3" + (at 115.57 158.75 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "4.7u" + (at 118.11 161.29 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Inductor_SMD:L_Coilcraft_MSS1278T-XXX" + (at 116.84 156.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 116.84 156.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 116.84 156.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Coilcraft" + (at 116.84 156.21 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "MSS1278T-472MLD" + (at 116.84 156.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "ec91b699-0c34-4dbd-9c7d-c5c9ba253c1f") + ) + (pin "2" + (uuid "cdca2902-80df-4ebf-bdf3-737ff5c51e66") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "L3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 106.68 139.7 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "8dacbdb3-db3c-4ea3-9d05-b0dd0e10fe53") + (property "Reference" "#PWR07" + (at 106.68 146.05 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 106.807 144.0942 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 106.68 139.7 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 106.68 139.7 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 106.68 139.7 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "49a3f696-f3af-41c2-a95a-bef31cc3a08e") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "#PWR07") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R_Small") + (at 66.04 163.83 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "bf78b1ac-f0d2-47ee-a7a9-9f0c39779c1c") + (property "Reference" "R5" + (at 66.802 163.322 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "52.3k" + (at 66.802 164.846 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 66.04 163.83 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 66.04 163.83 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 66.04 163.83 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Susumu" + (at 66.04 163.83 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "RR0816P-5232-D-70C" + (at 66.04 163.83 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "cbbb79f9-c092-4a35-9b24-08c857b24722") + ) + (pin "2" + (uuid "cee78bf8-adad-4448-b63b-98430d3cb9bb") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "R5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 99.06 176.53 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "d08d8719-cae0-4a46-bdcd-05a98eabbe0c") + (property "Reference" "#PWR06" + (at 99.06 182.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 99.06 180.34 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 99.06 176.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 99.06 176.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 99.06 176.53 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "c73f714a-094c-418e-a056-d448c3c9f68e") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "#PWR06") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Regulator_Switching:LT8610") + (at 85.09 153.67 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "d41d33f0-e1ab-4717-aff0-da5188d9c96a") + (property "Reference" "U6" + (at 87.2841 140.97 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "LT8610" + (at 87.2841 143.51 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_SO:MSOP-16-1EP_3x4.039mm_P0.5mm_EP1.651x2.845mm" + (at 85.09 166.37 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.analog.com/media/en/technical-documentation/data-sheets/lt8610.pdf" + (at 85.09 160.02 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "42V, 2.5A Synchronous Step-Down Regulator with 2.5uA Quiescent Current, MSOP-16" + (at 85.09 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "" + (at 85.09 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "PN" "" + (at 85.09 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "7" + (uuid "12620956-a4c0-46d7-bec3-18ee3f17b50c") + ) + (pin "17" + (uuid "a99a97cd-239d-4e78-a729-08415fb45da1") + ) + (pin "4" + (uuid "3cdef4cd-b86e-46fb-9119-99e8fc83b594") + ) + (pin "16" + (uuid "7133c627-62ea-4fdb-a6cc-190e3b0244b1") + ) + (pin "10" + (uuid "a095c37a-91e2-4b62-9026-c0334f642415") + ) + (pin "1" + (uuid "8a1df2eb-8e0a-4628-b9e1-7d1ea9a78e2f") + ) + (pin "11" + (uuid "4b7b562f-dc9e-4dfc-8903-0224a5e171c6") + ) + (pin "13" + (uuid "33f56cb1-868f-4b66-93de-3cf31709035d") + ) + (pin "6" + (uuid "5f024ebc-2c9f-457e-a416-4555de4f0aa9") + ) + (pin "12" + (uuid "39538c7a-b532-49fc-82bd-9319d2f3e2e2") + ) + (pin "5" + (uuid "5d995db3-560f-4b0c-9980-fa4f7e606af2") + ) + (pin "3" + (uuid "2596a29a-a8bc-4d3f-b33f-c0cd9dc7e0be") + ) + (pin "15" + (uuid "e78995d9-09e1-4a63-bdc0-244c86e52f5e") + ) + (pin "14" + (uuid "15dfbc27-b187-4503-a08e-d88e6da11c73") + ) + (pin "2" + (uuid "3fb374a5-3c51-44fd-a999-6788da9ab9d8") + ) + (pin "8" + (uuid "c14c3838-8c86-45a0-9a34-dca03205a235") + ) + (pin "9" + (uuid "2e625f8c-102c-459c-9a8a-a466ec54ce69") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "U6") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C_Small") + (at 107.95 167.64 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "efa57d14-9e75-4419-aa78-afdad4527733") + (property "Reference" "C16" + (at 109.728 167.894 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10p" + (at 105.918 167.894 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 107.95 167.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 107.95 167.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 107.95 167.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Wurth Electronics" + (at 107.95 167.64 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "885012006051" + (at 107.95 167.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "da35c2fb-e7db-4e59-b472-587449a3260b") + ) + (pin "2" + (uuid "05acddd8-adf2-44b2-b0f9-02c924e0d3c7") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "C16") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 138.43 165.1 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "f5650f80-3696-4e89-8e17-cc7ee5011242") + (property "Reference" "#PWR05" + (at 138.43 171.45 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 138.557 169.4942 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 138.43 165.1 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 138.43 165.1 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 138.43 165.1 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "4eaf241a-6706-4c81-8d15-5f2ac6b18956") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "#PWR05") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R_Small") + (at 99.06 172.72 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "feb1b031-377e-46b5-b6a4-4bf26f5087d1") + (property "Reference" "R13" + (at 99.822 172.212 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "243k" + (at 99.822 173.736 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 99.06 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 99.06 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 99.06 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "MFN" "Susumu" + (at 99.06 172.72 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "PN" "RR0816P-2433-D-38D" + (at 99.06 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "88079579-87ff-4db2-8ade-66af394485c5") + ) + (pin "2" + (uuid "197faac5-90e9-4466-8f4d-fcbe2805cda8") + ) + (instances + (project "RedPitaya_Lockbox" + (path "/e63e39d7-6ac0-4ffd-8aa3-1841a4541b55/00000000-0000-0000-0000-00005b053798" + (reference "R13") + (unit 1) + ) + ) + ) + ) ) diff --git a/pcb/KiCad/config.kibot.yaml b/pcb/KiCad/config.kibot.yaml index ceb6a4a..e2b1195 100644 --- a/pcb/KiCad/config.kibot.yaml +++ b/pcb/KiCad/config.kibot.yaml @@ -2,17 +2,15 @@ kibot: version: 1 preflight: - run_drc: true - run_erc: true update_xml: true - ignore_unconnected: false - filters: - - filter: 'Custom 3D models were added to the footprints' - error: lib_footprint_mismatch - regex: 'SMA_Amphenol_132134_Vertical|Coilcraft_MSS1278T|MSOP-12-1EP_3x4mm_P0.65mm_EP1.65x2.85mm|MSOP-16-1EP_3x4.039mm_P0.5mm_EP1.651x2.845mm|DIN41612_C_2x32_Male_Horizontal_THT' - - filter: 'Solder jumper do not work well with zone fills' - error: clearance - regex: '(?s)Polygon.*Zone' # (?s) = enable dotall mode + drc: + ignore_unconnected: false + filters: + - filter: 'The coilcraft MSS1278T footprint is only available in KiCad 8.0.3+' + error: lib_footprint_issues + regex: 'L_Coilcraft_MSS1278T-XXX' + erc: + enabled: true variants: - name: 'default' @@ -54,11 +52,11 @@ outputs: - 'B.Silkscreen' - 'F.Mask' - 'B.Mask' + - 'User.Comments' + - 'User.Drawings' - 'Edge.Cuts' - 'F.Fab' - 'B.Fab' - - 'User.Comments' - - 'User.Drawings' - name: 'excellon_drill' comment: 'Create the Excellon drill files to go with the Gerber files' @@ -94,7 +92,7 @@ outputs: options: format: CSV conf: 'bom.ini' - output: '%sp_%I_%sr_(%V).%x' # Note: The %v replacement is broken, so use _(%V) for now + output: '%f_%I_%sr_(%V).%x' # Note: The %v replacement is broken, so use _(%V) for now output_id: 'bom' # Used for the %I expansion int the output file name - name: 'iBOM' @@ -105,7 +103,7 @@ outputs: dark_mode: false blacklist: 'LOGO*,TP*,H*' extra_fields: 'PN' - output: '%sp_%I_%sr%v.%x' + output: '%f_%I_%sr%v.%x' highlight_pin1: true output_id: 'ibom' # Used for the %I expansion int the output file name @@ -115,7 +113,7 @@ outputs: dir: schematics options: title: "+ (%V variant)" - output: '%I%v.%x' + output: '%f_%I_%sr%v.%x' output_id: 'schematics' # Used for the %I expansion int the output file name - name: 'compress_bom' @@ -137,7 +135,7 @@ outputs: files: - from_output: gerbers - from_output: excellon_drill - output: '%I.%x' + output: '%I%v.%x' output_id: 'gerbers' # Used for the %I expansion int the output file name - name: 'compress_position' diff --git a/pcb/KiCad/footprints.pretty/BNC_angled.kicad_mod b/pcb/KiCad/footprints.pretty/BNC_angled.kicad_mod deleted file mode 100644 index ec6397e..0000000 --- a/pcb/KiCad/footprints.pretty/BNC_angled.kicad_mod +++ /dev/null @@ -1,55 +0,0 @@ -(module BNC_angled (layer F.Cu) (tedit 59EFEB62) - (descr "BNC connector, Tyco 1-1337543-0") - (fp_text reference **REF (at -8.68 -7 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value **VAL (at 0 14) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start -7.4 -13.7) (end -7.4 0) (layer F.Fab) (width 0.1)) - (fp_line (start 7.4 -13.7) (end -7.4 -13.7) (layer F.Fab) (width 0.1)) - (fp_line (start 7.4 0) (end 7.4 -13.7) (layer F.Fab) (width 0.1)) - (fp_line (start -7.4 0) (end 7.4 0) (layer F.Fab) (width 0.1)) - (fp_line (start -6.4 1.2) (end 6.4 0.5) (layer F.Fab) (width 0.1)) - (fp_line (start -6.4 5.2) (end 6.4 4.5) (layer F.Fab) (width 0.1)) - (fp_line (start -6.4 4.2) (end 6.4 3.5) (layer F.Fab) (width 0.1)) - (fp_line (start -6.4 2.2) (end 6.4 1.5) (layer F.Fab) (width 0.1)) - (fp_line (start -6.4 3.2) (end 6.4 2.5) (layer F.Fab) (width 0.1)) - (fp_line (start -6.4 7.2) (end 6.4 6.5) (layer F.Fab) (width 0.1)) - (fp_line (start -6.4 6.2) (end 6.4 5.5) (layer F.Fab) (width 0.1)) - (fp_line (start -6.4 8.2) (end 6.4 7.5) (layer F.Fab) (width 0.1)) - (fp_line (start -6.4 9.2) (end 6.4 8.5) (layer F.Fab) (width 0.1)) - (fp_line (start 6.4 9.2) (end 6.4 0) (layer F.Fab) (width 0.1)) - (fp_line (start -6.4 9.2) (end -6.4 0) (layer F.Fab) (width 0.1)) - (fp_line (start 4.8 21.2) (end 4.8 9.2) (layer F.Fab) (width 0.1)) - (fp_line (start -4.8 21.2) (end -4.8 9.2) (layer F.Fab) (width 0.1)) - (fp_line (start -4.8 21.2) (end 4.8 21.2) (layer F.Fab) (width 0.1)) - (fp_line (start -6.4 9.2) (end 6.4 9.2) (layer F.Fab) (width 0.1)) - (fp_line (start 7.4 0) (end 7.4 -13.7) (layer F.SilkS) (width 0.12)) - (fp_line (start -7.4 -13.7) (end -7.4 0) (layer F.SilkS) (width 0.12)) - (fp_line (start -7.4 -13.7) (end 7.4 -13.7) (layer F.SilkS) (width 0.12)) - (fp_line (start -7.4 0) (end 7.4 0) (layer F.SilkS) (width 0.12)) - (fp_circle (center 0 16.9) (end 1 16.9) (layer F.Fab) (width 0.1)) - (fp_line (start -7.9 -14.2) (end 7.9 -14.2) (layer F.CrtYd) (width 0.05)) - (fp_line (start 7.9 -14.2) (end 7.9 0) (layer F.CrtYd) (width 0.05)) - (fp_line (start -7.9 -14.2) (end -7.9 0) (layer F.CrtYd) (width 0.05)) - (fp_line (start 7.9 0) (end 10 0) (layer F.CrtYd) (width 0.05)) - (fp_line (start 10 0) (end 10 21.7) (layer F.CrtYd) (width 0.05)) - (fp_line (start 10 21.7) (end -10 21.7) (layer F.CrtYd) (width 0.05)) - (fp_line (start -10 21.7) (end -10 0) (layer F.CrtYd) (width 0.05)) - (fp_line (start -10 0) (end -7.9 0) (layer F.CrtYd) (width 0.05)) - (pad 1 thru_hole circle (at 0 -12.38) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 2 thru_hole circle (at 2.54 -12.38) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad "" thru_hole circle (at 5.08 -7.3) (size 3 3) (drill 2.2) (layers *.Cu *.Mask)) - (pad "" thru_hole circle (at -5.08 -7.3) (size 3 3) (drill 2.2) (layers *.Cu *.Mask)) - (model walter/conn_rf/bnc_90_1-1337543-0.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - (model ${KIPRJMOD}/footprints.3dshapes/bnc_90_1-1337543-0.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) -) diff --git a/pcb/KiCad/footprints.pretty/Coilcraft_MSS1278T.kicad_mod b/pcb/KiCad/footprints.pretty/Coilcraft_MSS1278T.kicad_mod deleted file mode 100644 index 59247b2..0000000 --- a/pcb/KiCad/footprints.pretty/Coilcraft_MSS1278T.kicad_mod +++ /dev/null @@ -1,37 +0,0 @@ -(module Coilcraft_MSS1278T (layer F.Cu) (tedit 5B0D753B) - (descr "Choke, SMD, 12x12mm 8mm height") - (tags "Choke SMD") - (attr smd) - (fp_text reference REF** (at 0 -7.4) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value L_12x12mm_h8mm (at 0 7.6) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text user %R (at 0 0) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 6.3 3.3) (end 6.3 6.3) (layer F.SilkS) (width 0.12)) - (fp_line (start 6.3 6.3) (end -6.3 6.3) (layer F.SilkS) (width 0.12)) - (fp_line (start -6.3 6.3) (end -6.3 3.3) (layer F.SilkS) (width 0.12)) - (fp_line (start -6.3 -3.3) (end -6.3 -6.3) (layer F.SilkS) (width 0.12)) - (fp_line (start -6.3 -6.3) (end 6.3 -6.3) (layer F.SilkS) (width 0.12)) - (fp_line (start 6.3 -6.3) (end 6.3 -3.3) (layer F.SilkS) (width 0.12)) - (fp_line (start -6.86 -6.6) (end 6.86 -6.6) (layer F.CrtYd) (width 0.05)) - (fp_line (start 6.86 -6.6) (end 6.86 6.6) (layer F.CrtYd) (width 0.05)) - (fp_line (start 6.86 6.6) (end -6.86 6.6) (layer F.CrtYd) (width 0.05)) - (fp_line (start -6.86 6.6) (end -6.86 -6.6) (layer F.CrtYd) (width 0.05)) - (fp_line (start -6.2 3.3) (end -6.2 6.2) (layer F.Fab) (width 0.1)) - (fp_line (start -6.2 6.2) (end 6.2 6.2) (layer F.Fab) (width 0.1)) - (fp_line (start 6.2 6.2) (end 6.2 3.3) (layer F.Fab) (width 0.1)) - (fp_line (start 6.2 -6.2) (end -6.2 -6.2) (layer F.Fab) (width 0.1)) - (fp_line (start -6.2 -6.2) (end -6.2 -3.3) (layer F.Fab) (width 0.1)) - (fp_line (start 6.2 -6.2) (end 6.2 -3.3) (layer F.Fab) (width 0.1)) - (pad 1 smd rect (at -4.25 0) (size 4 5.5) (layers F.Cu F.Paste F.Mask)) - (pad 2 smd rect (at 4.25 0) (size 4 5.5) (layers F.Cu F.Paste F.Mask)) - (model ${KISYS3DMOD}/Inductors_SMD.3dshapes/L_12x12mm_h8mm.wrl - (at (xyz 0 0 0)) - (scale (xyz 4 4 4)) - (rotate (xyz 0 0 0)) - ) -) diff --git a/pcb/KiCad/footprints.pretty/DFN-14-1EP_3x4mm_Pitch0.5mm_2Pads.kicad_mod b/pcb/KiCad/footprints.pretty/DFN-14-1EP_3x4mm_Pitch0.5mm_2Pads.kicad_mod deleted file mode 100644 index 2e96e62..0000000 --- a/pcb/KiCad/footprints.pretty/DFN-14-1EP_3x4mm_Pitch0.5mm_2Pads.kicad_mod +++ /dev/null @@ -1,47 +0,0 @@ -(module Custom_footprints:DFN-14-1EP_3x4mm_Pitch0.5mm_2Pads (layer F.Cu) (tedit 59585EBD) - (descr "DE Package; 14-Lead Plastic DFN (4mm x 3mm) (see Linear Technology DFN_14_05-08-1708.pdf)") - (tags "DFN 0.5") - (attr smd) - (fp_text reference U1 (at 0 -3.05) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value LT3032-X (at 0 3.05) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start -1.875 -2.125) (end 1.1 -2.125) (layer F.SilkS) (width 0.15)) - (fp_line (start -1.1 2.125) (end 1.1 2.125) (layer F.SilkS) (width 0.15)) - (fp_line (start -2.05 2.3) (end 2.05 2.3) (layer F.CrtYd) (width 0.05)) - (fp_line (start -2.05 -2.3) (end 2.05 -2.3) (layer F.CrtYd) (width 0.05)) - (fp_line (start 2.05 -2.3) (end 2.05 2.3) (layer F.CrtYd) (width 0.05)) - (fp_line (start -2.05 -2.3) (end -2.05 2.3) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.5 -1) (end -0.5 -2) (layer F.Fab) (width 0.15)) - (fp_line (start -1.5 2) (end -1.5 -1) (layer F.Fab) (width 0.15)) - (fp_line (start 1.5 2) (end -1.5 2) (layer F.Fab) (width 0.15)) - (fp_line (start 1.5 -2) (end 1.5 2) (layer F.Fab) (width 0.15)) - (fp_line (start -0.5 -2) (end 1.5 -2) (layer F.Fab) (width 0.15)) - (pad 16 smd rect (at 0 1.1) (size 1.65 1.07) (layers F.Cu F.Mask) - (solder_paste_margin_ratio -0.2)) - (pad 14 smd rect (at 1.45 -1.5) (size 0.7 0.25) (layers F.Cu F.Mask)) - (pad 13 smd rect (at 1.45 -1) (size 0.7 0.25) (layers F.Cu F.Mask)) - (pad 12 smd rect (at 1.45 -0.5) (size 0.7 0.25) (layers F.Cu F.Mask)) - (pad 11 smd rect (at 1.45 0) (size 0.7 0.25) (layers F.Cu F.Mask)) - (pad 10 smd rect (at 1.45 0.5) (size 0.7 0.25) (layers F.Cu F.Mask)) - (pad 9 smd rect (at 1.45 1) (size 0.7 0.25) (layers F.Cu F.Mask)) - (pad 8 smd rect (at 1.45 1.5) (size 0.7 0.25) (layers F.Cu F.Mask)) - (pad 7 smd rect (at -1.45 1.5) (size 0.7 0.25) (layers F.Cu F.Mask)) - (pad 6 smd rect (at -1.45 1) (size 0.7 0.25) (layers F.Cu F.Mask)) - (pad 5 smd rect (at -1.45 0.5) (size 0.7 0.25) (layers F.Cu F.Mask)) - (pad 4 smd rect (at -1.45 0) (size 0.7 0.25) (layers F.Cu F.Mask)) - (pad 3 smd rect (at -1.45 -0.5) (size 0.7 0.25) (layers F.Cu F.Mask)) - (pad 2 smd rect (at -1.45 -1) (size 0.7 0.25) (layers F.Cu F.Mask)) - (pad 1 smd rect (at -1.45 -1.5) (size 0.7 0.25) (layers F.Cu F.Mask)) - (pad 15 smd rect (at -0.4125 -1.245) (size 0.825 0.89) (layers F.Cu F.Mask)) - (pad 15 smd rect (at 0.4125 -1.245) (size 0.825 0.89) (layers F.Cu F.Mask)) - (pad 15 smd rect (at 0.4125 -0.355) (size 0.825 0.89) (layers F.Cu F.Mask)) - (pad 15 smd rect (at -0.4125 -0.355) (size 0.825 0.89) (layers F.Cu F.Mask)) - (model Housings_DFN_QFN.3dshapes/DFN-14-1EP_3x4mm_Pitch0.5mm.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) -) diff --git a/pcb/KiCad/footprints.pretty/Eurocard_Case_Connector.kicad_mod b/pcb/KiCad/footprints.pretty/Eurocard_Case_Connector.kicad_mod deleted file mode 100644 index 45e8f32..0000000 --- a/pcb/KiCad/footprints.pretty/Eurocard_Case_Connector.kicad_mod +++ /dev/null @@ -1,10 +0,0 @@ -(module Eurocard_Case_Connector (layer F.Cu) (tedit 5B193BF0) - (fp_text reference J4 (at 0 0.5) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value Case (at 0 -1.8) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (pad 1 smd rect (at 0 0) (size 159 1.5) (layers F.Cu F.Paste F.Mask) - (zone_connect 2)) -) diff --git a/pcb/KiCad/footprints.pretty/L_12x12mm_h8mm.kicad_mod b/pcb/KiCad/footprints.pretty/L_12x12mm_h8mm.kicad_mod deleted file mode 100644 index 8ad3139..0000000 --- a/pcb/KiCad/footprints.pretty/L_12x12mm_h8mm.kicad_mod +++ /dev/null @@ -1,37 +0,0 @@ -(module L_12x12mm_h8mm (layer F.Cu) (tedit 5B0D753B) - (descr "Choke, SMD, 12x12mm 8mm height") - (tags "Choke SMD") - (attr smd) - (fp_text reference REF** (at 0 -7.4) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value L_12x12mm_h8mm (at 0 7.6) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text user %R (at 0 0) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 6.3 3.3) (end 6.3 6.3) (layer F.SilkS) (width 0.12)) - (fp_line (start 6.3 6.3) (end -6.3 6.3) (layer F.SilkS) (width 0.12)) - (fp_line (start -6.3 6.3) (end -6.3 3.3) (layer F.SilkS) (width 0.12)) - (fp_line (start -6.3 -3.3) (end -6.3 -6.3) (layer F.SilkS) (width 0.12)) - (fp_line (start -6.3 -6.3) (end 6.3 -6.3) (layer F.SilkS) (width 0.12)) - (fp_line (start 6.3 -6.3) (end 6.3 -3.3) (layer F.SilkS) (width 0.12)) - (fp_line (start -6.86 -6.6) (end 6.86 -6.6) (layer F.CrtYd) (width 0.05)) - (fp_line (start 6.86 -6.6) (end 6.86 6.6) (layer F.CrtYd) (width 0.05)) - (fp_line (start 6.86 6.6) (end -6.86 6.6) (layer F.CrtYd) (width 0.05)) - (fp_line (start -6.86 6.6) (end -6.86 -6.6) (layer F.CrtYd) (width 0.05)) - (fp_line (start -6.2 3.3) (end -6.2 6.2) (layer F.Fab) (width 0.1)) - (fp_line (start -6.2 6.2) (end 6.2 6.2) (layer F.Fab) (width 0.1)) - (fp_line (start 6.2 6.2) (end 6.2 3.3) (layer F.Fab) (width 0.1)) - (fp_line (start 6.2 -6.2) (end -6.2 -6.2) (layer F.Fab) (width 0.1)) - (fp_line (start -6.2 -6.2) (end -6.2 -3.3) (layer F.Fab) (width 0.1)) - (fp_line (start 6.2 -6.2) (end 6.2 -3.3) (layer F.Fab) (width 0.1)) - (pad 1 smd rect (at -4.25 0) (size 4 5.5) (layers F.Cu F.Paste F.Mask)) - (pad 2 smd rect (at 4.25 0) (size 4 5.5) (layers F.Cu F.Paste F.Mask)) - (model ${KISYS3DMOD}/Inductors_SMD.3dshapes/L_12x12mm_h8mm.wrl - (at (xyz 0 0 0)) - (scale (xyz 4 4 4)) - (rotate (xyz 0 0 0)) - ) -) diff --git a/pcb/KiCad/footprints.pretty/QSOP-16_EP_3.9x4.9mm_Pitch0.635mm.kicad_mod b/pcb/KiCad/footprints.pretty/QSOP-16_EP_3.9x4.9mm_Pitch0.635mm.kicad_mod deleted file mode 100644 index b880d27..0000000 --- a/pcb/KiCad/footprints.pretty/QSOP-16_EP_3.9x4.9mm_Pitch0.635mm.kicad_mod +++ /dev/null @@ -1,47 +0,0 @@ -(module QSOP-16_EP_3.9x4.9mm_Pitch0.635mm (layer F.Cu) (tedit 5C6B1D00) - (descr "16-Lead Plastic Shrink Small Outline Narrow Body (QR)-.150\" Body [QSOP] (see Microchip Packaging Specification 00000049BS.pdf)") - (tags "SSOP 0.635") - (attr smd) - (fp_text reference REF** (at 0 -3.5) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value QSOP-16_EP_3.9x4.9mm_Pitch0.635mm (at 0 3.5) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start -0.95 -2.45) (end 1.95 -2.45) (layer F.Fab) (width 0.15)) - (fp_line (start 1.95 -2.45) (end 1.95 2.45) (layer F.Fab) (width 0.15)) - (fp_line (start 1.95 2.45) (end -1.95 2.45) (layer F.Fab) (width 0.15)) - (fp_line (start -1.95 2.45) (end -1.95 -1.45) (layer F.Fab) (width 0.15)) - (fp_line (start -1.95 -1.45) (end -0.95 -2.45) (layer F.Fab) (width 0.15)) - (fp_line (start -3.7 -2.85) (end -3.7 2.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start 3.7 -2.85) (end 3.7 2.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start -3.7 -2.85) (end 3.7 -2.85) (layer F.CrtYd) (width 0.05)) - (fp_line (start -3.7 2.8) (end 3.7 2.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start -1.8543 2.675) (end 1.8543 2.675) (layer F.SilkS) (width 0.15)) - (fp_line (start -3.525 -2.725) (end 1.8586 -2.725) (layer F.SilkS) (width 0.15)) - (fp_text user %R (at 0 0) (layer F.Fab) - (effects (font (size 0.7 0.7) (thickness 0.15))) - ) - (pad 1 smd rect (at -2.6543 -2.2225) (size 1.6 0.41) (layers F.Cu F.Paste F.Mask)) - (pad 2 smd rect (at -2.6543 -1.5875) (size 1.6 0.41) (layers F.Cu F.Paste F.Mask)) - (pad 3 smd rect (at -2.6543 -0.9525) (size 1.6 0.41) (layers F.Cu F.Paste F.Mask)) - (pad 4 smd rect (at -2.6543 -0.3175) (size 1.6 0.41) (layers F.Cu F.Paste F.Mask)) - (pad 5 smd rect (at -2.6543 0.3175) (size 1.6 0.41) (layers F.Cu F.Paste F.Mask)) - (pad 6 smd rect (at -2.6543 0.9525) (size 1.6 0.41) (layers F.Cu F.Paste F.Mask)) - (pad 7 smd rect (at -2.6543 1.5875) (size 1.6 0.41) (layers F.Cu F.Paste F.Mask)) - (pad 8 smd rect (at -2.6543 2.2225) (size 1.6 0.41) (layers F.Cu F.Paste F.Mask)) - (pad 9 smd rect (at 2.6543 2.2225) (size 1.6 0.41) (layers F.Cu F.Paste F.Mask)) - (pad 10 smd rect (at 2.6543 1.5875) (size 1.6 0.41) (layers F.Cu F.Paste F.Mask)) - (pad 11 smd rect (at 2.6543 0.9525) (size 1.6 0.41) (layers F.Cu F.Paste F.Mask)) - (pad 12 smd rect (at 2.6543 0.3175) (size 1.6 0.41) (layers F.Cu F.Paste F.Mask)) - (pad 13 smd rect (at 2.6543 -0.3175) (size 1.6 0.41) (layers F.Cu F.Paste F.Mask)) - (pad 14 smd rect (at 2.6543 -0.9525) (size 1.6 0.41) (layers F.Cu F.Paste F.Mask)) - (pad 15 smd rect (at 2.6543 -1.5875) (size 1.6 0.41) (layers F.Cu F.Paste F.Mask)) - (pad 16 smd rect (at 2.6543 -2.2225) (size 1.6 0.41) (layers F.Cu F.Paste F.Mask)) - (pad 17 smd rect (at 0 0.03) (size 1.75 2.3) (layers F.Cu F.Paste F.Mask)) - (model ${KISYS3DMOD}/Housings_SSOP.3dshapes/QSOP-16_3.9x4.9mm_Pitch0.635mm.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) -) diff --git a/pcb/KiCad/footprints.pretty/SAMTEC_ESQ-113-44-T-D.kicad_mod b/pcb/KiCad/footprints.pretty/SAMTEC_ESQ-113-44-T-D.kicad_mod deleted file mode 100644 index 93433b2..0000000 --- a/pcb/KiCad/footprints.pretty/SAMTEC_ESQ-113-44-T-D.kicad_mod +++ /dev/null @@ -1,53 +0,0 @@ - -(module SAMTEC_ESQ-113-44-T-D (layer F.Cu) (tedit 6183E2A5) - (descr "") - (fp_text reference REF** (at -29.83 -5.63 0) (layer F.SilkS) - (effects (font (size 1.0 1.0) (thickness 0.15))) - ) - (fp_text value SAMTEC_ESQ-113-44-T-D (at -19.67 3.07 0) (layer F.Fab) - (effects (font (size 1.0 1.0) (thickness 0.15))) - ) - (pad 01 thru_hole rect (at 0.0 0.0) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)) - (pad 02 thru_hole circle (at 0.0 -2.54) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)) - (pad 03 thru_hole circle (at -2.54 0.0) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)) - (pad 04 thru_hole circle (at -2.54 -2.54) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)) - (pad 05 thru_hole circle (at -5.08 0.0) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)) - (pad 06 thru_hole circle (at -5.08 -2.54) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)) - (pad 07 thru_hole circle (at -7.62 0.0) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)) - (pad 08 thru_hole circle (at -7.62 -2.54) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)) - (pad 09 thru_hole circle (at -10.16 0.0) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)) - (pad 10 thru_hole circle (at -10.16 -2.54) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)) - (pad 11 thru_hole circle (at -12.7 0.0) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)) - (pad 12 thru_hole circle (at -12.7 -2.54) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)) - (pad 13 thru_hole circle (at -15.24 0.0) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)) - (pad 14 thru_hole circle (at -15.24 -2.54) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)) - (pad 15 thru_hole circle (at -17.78 0.0) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)) - (pad 16 thru_hole circle (at -17.78 -2.54) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)) - (pad 17 thru_hole circle (at -20.32 0.0) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)) - (pad 18 thru_hole circle (at -20.32 -2.54) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)) - (pad 19 thru_hole circle (at -22.86 0.0) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)) - (pad 20 thru_hole circle (at -22.86 -2.54) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)) - (pad 21 thru_hole circle (at -25.4 0.0) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)) - (pad 22 thru_hole circle (at -25.4 -2.54) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)) - (pad 23 thru_hole circle (at -27.94 0.0) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)) - (pad 24 thru_hole circle (at -27.94 -2.54) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)) - (pad 25 thru_hole circle (at -30.48 0.0) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)) - (pad 26 thru_hole circle (at -30.48 -2.54) (size 1.37 1.37) (drill 1.02) (layers *.Cu *.Mask)) - (fp_line (start -32.005 1.205) (end -32.005 -3.745) (layer F.Fab) (width 0.1)) - (fp_line (start -32.005 -3.745) (end 1.525 -3.745) (layer F.Fab) (width 0.1)) - (fp_line (start 1.525 -3.745) (end 1.525 1.205) (layer F.Fab) (width 0.1)) - (fp_line (start 1.525 1.205) (end -32.005 1.205) (layer F.Fab) (width 0.1)) - (fp_line (start -32.005 1.205) (end -32.005 -3.745) (layer F.Fab) (width 0.1)) - (fp_line (start -32.005 -3.745) (end 1.525 -3.745) (layer F.Fab) (width 0.1)) - (fp_line (start 1.525 -3.745) (end 1.525 1.205) (layer F.Fab) (width 0.1)) - (fp_line (start -32.005 1.205) (end -32.005 -3.745) (layer F.SilkS) (width 0.2)) - (fp_line (start 1.525 -3.745) (end 1.525 1.205) (layer F.SilkS) (width 0.2)) - (fp_line (start 1.525 -3.745) (end -32.005 -3.745) (layer F.SilkS) (width 0.2)) - (fp_line (start 1.525 1.205) (end -32.005 1.205) (layer F.SilkS) (width 0.2)) - (fp_line (start -32.255 1.455) (end -32.255 -3.995) (layer F.CrtYd) (width 0.05)) - (fp_line (start -32.255 -3.995) (end 1.775 -3.995) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.775 -3.995) (end 1.775 1.455) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.775 1.455) (end -32.255 1.455) (layer F.CrtYd) (width 0.05)) - (fp_circle (center 2.175 0.0) (end 2.275 0.0) (layer F.SilkS) (width 0.2)) - (fp_circle (center 2.175 0.0) (end 2.275 0.0) (layer F.Fab) (width 0.2)) -) \ No newline at end of file diff --git a/pcb/KiCad/footprints.pretty/USB_MICRO.kicad_mod b/pcb/KiCad/footprints.pretty/USB_MICRO.kicad_mod deleted file mode 100644 index 5fcae2a..0000000 --- a/pcb/KiCad/footprints.pretty/USB_MICRO.kicad_mod +++ /dev/null @@ -1,61 +0,0 @@ -(module USB_MICRO (layer F.Cu) (tedit 58AA8D01) - (fp_text reference REF** (at 0 2.02) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value VAL** (at 0 3.29) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start 4.09956 0.59988) (end 4.24942 0.45002) (layer F.Fab) (width 0.0508)) - (fp_line (start 4.09956 0.59988) (end 3.64998 0.1503) (layer F.Fab) (width 0.0508)) - (fp_line (start 3.64998 0.1503) (end 3.64998 0.00044) (layer F.Fab) (width 0.0508)) - (fp_line (start -4.24942 0.45002) (end -4.09956 0.59988) (layer F.Fab) (width 0.0508)) - (fp_line (start -4.09956 0.59988) (end -3.64998 0.1503) (layer F.Fab) (width 0.0508)) - (fp_line (start -3.64998 0.1503) (end -3.64998 0.00044) (layer F.Fab) (width 0.0508)) - (fp_line (start 3.79984 0.00044) (end 4.24942 0.45002) (layer F.Fab) (width 0.0508)) - (fp_line (start -3.79984 0.00044) (end -4.24942 0.45002) (layer F.Fab) (width 0.0508)) - (fp_line (start 1.99914 0) (end 3.8 0) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.00152 0) (end 1 0) (layer F.SilkS) (width 0.12)) - (fp_line (start -3.79984 0) (end -1.99898 0) (layer F.SilkS) (width 0.12)) - (fp_arc (start -3.20108 0.35) (end -3.20108 0.59892) (angle 90) (layer F.Fab) (width 0.0508)) - (fp_arc (start 3.2004 0.3) (end 3.44932 0.3) (angle 90) (layer F.Fab) (width 0.0508)) - (fp_line (start 1.99858 0.55) (end 3.2 0.55) (layer F.Fab) (width 0.0508)) - (fp_line (start -1.00076 0.55) (end 1.00076 0.55) (layer F.Fab) (width 0.0508)) - (fp_line (start -3.2004 0.6) (end -1.99898 0.6) (layer F.Fab) (width 0.0508)) - (fp_line (start -3.79984 -4.4511) (end -3.8 -3.15) (layer F.SilkS) (width 0.12)) - (fp_line (start 3.79984 -4.4511) (end 3.8 -3.15) (layer F.SilkS) (width 0.12)) - (fp_arc (start -3.44932 -4.4511) (end -3.79984 -4.4511) (angle 90) (layer F.SilkS) (width 0.12)) - (fp_arc (start 3.44932 -4.4511) (end 3.44932 -4.79908) (angle 90) (layer F.SilkS) (width 0.12)) - (fp_line (start -3.45 -4.8) (end -2.9 -4.8) (layer F.SilkS) (width 0.12)) - (fp_line (start 3.44932 -4.79908) (end 2.9 -4.8) (layer F.SilkS) (width 0.12)) - (fp_line (start -3.45 -3.15) (end -3.45 -4.8) (layer F.SilkS) (width 0.12)) - (fp_line (start 3.45 -3.15) (end 3.44932 -4.79908) (layer F.SilkS) (width 0.12)) - (fp_line (start -3.44932 -0.54966) (end 3.44932 -0.54966) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.94996 -2.94996) (end 0.94996 -2.94996) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.94996 -2.94996) (end 0.94996 -1.05004) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.94996 -1.05004) (end -0.94996 -1.05004) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.94996 -1.05004) (end -0.94996 -2.94996) (layer F.SilkS) (width 0.12)) - (fp_line (start 3.45 -0.55) (end 3.45 0.3) (layer F.Fab) (width 0.05)) - (fp_line (start -3.45 0.35) (end -3.45 -0.55) (layer F.Fab) (width 0.05)) - (fp_line (start -4.55 -5.6) (end 4.55 -5.6) (layer F.CrtYd) (width 0.05)) - (fp_line (start 4.55 -5.6) (end 4.55 0.75) (layer F.CrtYd) (width 0.05)) - (fp_line (start 4.55 0.75) (end -4.55 0.75) (layer F.CrtYd) (width 0.05)) - (fp_line (start -4.55 0.75) (end -4.55 -5.6) (layer F.CrtYd) (width 0.05)) - (fp_line (start 3.45 -1.05) (end 3.45 -0.55) (layer F.SilkS) (width 0.12)) - (fp_line (start 3.8 -1.05) (end 3.8 0) (layer F.SilkS) (width 0.12)) - (fp_line (start -3.45 -0.55) (end -3.45 -1.05) (layer F.SilkS) (width 0.12)) - (fp_line (start -3.8 -1.05) (end -3.8 0) (layer F.SilkS) (width 0.12)) - (pad 1 smd rect (at -1.3 -4.675) (size 0.4 1.35) (layers F.Cu F.Paste F.Mask)) - (pad 2 smd rect (at -0.65 -4.675) (size 0.4 1.35) (layers F.Cu F.Paste F.Mask)) - (pad 3 smd rect (at 0 -4.675) (size 0.4 1.35) (layers F.Cu F.Paste F.Mask)) - (pad 4 smd rect (at 0.65 -4.675) (size 0.4 1.35) (layers F.Cu F.Paste F.Mask)) - (pad 5 smd rect (at 1.3 -4.675) (size 0.4 1.35) (layers F.Cu F.Paste F.Mask)) - (pad 6 thru_hole oval (at -3.625 -2.1) (size 1.4 1.8) (drill oval 0.7 1.1) (layers *.Cu *.Mask F.SilkS)) - (pad 6 thru_hole oval (at 3.625 -2.1) (size 1.4 1.8) (drill oval 0.7 1.1) (layers *.Cu *.Mask F.SilkS)) - (pad "" thru_hole circle (at -2.425 -4.75) (size 0.7 0.7) (drill 0.7) (layers *.Cu *.Mask F.SilkS)) - (pad "" thru_hole circle (at 2.425 -4.75) (size 0.7 0.7) (drill 0.7) (layers *.Cu *.Mask F.SilkS)) - (model ab2_usb/AB2_USB_MICRO_SMD.x3d - (at (xyz 0 0 0)) - (scale (xyz 0.3937 0.3937 0.3937)) - (rotate (xyz 0 0 0)) - ) -) diff --git a/pcb/KiCad/libraries/Linear Technology.kicad_sym b/pcb/KiCad/libraries/Linear Technology.kicad_sym index 0ee9a49..4ba7c0d 100644 --- a/pcb/KiCad/libraries/Linear Technology.kicad_sym +++ b/pcb/KiCad/libraries/Linear Technology.kicad_sym @@ -1,1633 +1,213 @@ -(kicad_symbol_lib (version 20220914) (generator kicad_symbol_editor) - (symbol "AD688" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) - (property "Reference" "U" (at -20.32 -1.27 90) - (effects (font (size 1.524 1.524))) - ) - (property "Value" "AD688" (at -20.32 -10.16 90) - (effects (font (size 1.524 1.524))) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "Datasheet" "" (at 0 0 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "ki_description" "High Precision +-10V Reference" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "AD688_0_1" - (rectangle (start 21.59 15.24) (end -17.78 -15.24) - (stroke (width 0) (type default)) - (fill (type none)) - ) - ) - (symbol "AD688_1_1" - (pin input line (at 26.67 10.16 180) (length 5.08) - (name "+10V_FORCE" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 6.35 -20.32 90) (length 5.08) - (name "BAL_ADJ" (effects (font (size 1.27 1.27)))) - (number "12" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 11.43 -20.32 90) (length 5.08) - (name "A4" (effects (font (size 1.27 1.27)))) - (number "13" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 26.67 5.08 180) (length 5.08) - (name "-10V_SENSE" (effects (font (size 1.27 1.27)))) - (number "14" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 26.67 0 180) (length 5.08) - (name "-10V_FORCE" (effects (font (size 1.27 1.27)))) - (number "15" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 26.67 -10.16 180) (length 5.08) - (name "-Vs" (effects (font (size 1.27 1.27)))) - (number "16" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 26.67 -5.08 180) (length 5.08) - (name "+Vs" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 6.35 20.32 270) (length 5.08) - (name "+10V_SENSE" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 1.27 20.32 270) (length 5.08) - (name "A3" (effects (font (size 1.27 1.27)))) - (number "4" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -8.89 -20.32 90) (length 5.08) - (name "GAIN_ADJ" (effects (font (size 1.27 1.27)))) - (number "5" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -3.81 20.32 270) (length 5.08) - (name "V_HIGH" (effects (font (size 1.27 1.27)))) - (number "6" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -8.89 20.32 270) (length 5.08) - (name "NOISE_RED" (effects (font (size 1.27 1.27)))) - (number "7" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 1.27 -20.32 90) (length 5.08) - (name "V_LOW" (effects (font (size 1.27 1.27)))) - (number "8" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -3.81 -20.32 90) (length 5.08) - (name "GND" (effects (font (size 1.27 1.27)))) - (number "9" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "LM399" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) - (property "Reference" "U" (at -9.144 8.636 0) - (effects (font (size 1.524 1.524))) - ) - (property "Value" "LM399" (at 8.636 -8.128 0) - (effects (font (size 1.524 1.524))) - ) - (property "Footprint" "" (at 0 -1.27 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "Datasheet" "" (at 0 -1.27 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "ki_keywords" "Reference" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Precision Reference, 6.95V" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "TO-46 LM399" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "LM399_0_1" - (rectangle (start -7.366 6.35) (end 9.652 -6.35) - (stroke (width 0) (type default)) - (fill (type background)) - ) - (circle (center -3.81 -3.81) (radius 0.254) - (stroke (width 0) (type default)) - (fill (type outline)) - ) - (polyline - (pts - (xy -3.81 -3.81) - (xy -3.81 -6.35) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -3.81 -3.81) - (xy -1.016 -3.81) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 1.016 -3.81) - (xy 3.81 -3.81) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 1.016 -3.048) - (xy 1.016 -4.572) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 3.81 -3.81) - (xy 3.81 -6.35) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 3.81 -3.81) - (xy 3.81 0.254) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 3.81 2.286) - (xy 3.81 6.35) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy -1.016 -2.794) - (xy -1.016 -4.826) - (xy 1.016 -3.81) - (xy -1.016 -2.794) - ) - (stroke (width 0) (type default)) - (fill (type outline)) - ) - (polyline - (pts - (xy 2.794 2.032) - (xy 3.048 2.286) - (xy 4.572 2.286) - (xy 4.826 2.54) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (polyline - (pts - (xy 4.826 0.254) - (xy 2.794 0.254) - (xy 3.81 2.286) - (xy 4.826 0.254) - ) - (stroke (width 0) (type default)) - (fill (type outline)) - ) - (polyline - (pts - (xy -3.81 6.35) - (xy -3.81 5.334) - (xy -2.794 5.334) - (xy -2.794 3.302) - (xy -4.826 3.302) - (xy -4.826 1.27) - (xy -2.794 1.27) - (xy -2.794 -0.762) - (xy -4.826 -0.762) - (xy -4.826 -2.794) - (xy -3.81 -2.794) - (xy -3.81 -3.81) - ) - (stroke (width 0) (type default)) - (fill (type none)) - ) - (circle (center 3.81 -3.81) (radius 0.254) - (stroke (width 0) (type default)) - (fill (type outline)) - ) - ) - (symbol "LM399_1_1" - (pin passive line (at 3.81 11.43 270) (length 5.08) - (name "~" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 3.81 -11.43 90) (length 5.08) - (name "~" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -3.81 11.43 270) (length 5.08) - (name "~" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -3.81 -11.43 90) (length 5.08) - (name "~" (effects (font (size 1.27 1.27)))) - (number "4" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "LT1236-10" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) - (property "Reference" "U" (at 6.35 -1.27 0) - (effects (font (size 1.524 1.524))) - ) - (property "Value" "LT1236-10" (at 0 8.89 0) - (effects (font (size 1.524 1.524))) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "Datasheet" "" (at 0 0 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "ki_description" "10V Precision Reference" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "LT1236-10_1_1" - (rectangle (start -7.62 7.62) (end 7.62 0) - (stroke (width 0) (type default)) - (fill (type background)) - ) - (pin no_connect line (at -6.35 -2.54 90) (length 2.54) hide - (name "NC" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at -12.7 5.08 0) (length 5.08) - (name "Vin" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin no_connect line (at -3.81 -2.54 90) (length 2.54) hide - (name "NC" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at 0 -5.08 90) (length 5.08) - (name "GND" (effects (font (size 1.27 1.27)))) - (number "4" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 12.7 2.54 180) (length 5.08) - (name "Trim" (effects (font (size 1.27 1.27)))) - (number "5" (effects (font (size 1.27 1.27)))) - ) - (pin power_out line (at 12.7 5.08 180) (length 5.08) - (name "Vout" (effects (font (size 1.27 1.27)))) - (number "6" (effects (font (size 1.27 1.27)))) - ) - (pin no_connect line (at 3.81 -2.54 90) (length 2.54) hide - (name "NC" (effects (font (size 1.27 1.27)))) - (number "7" (effects (font (size 1.27 1.27)))) - ) - (pin no_connect line (at -10.16 1.27 0) (length 2.54) hide - (name "NC" (effects (font (size 1.27 1.27)))) - (number "8" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "LT1568" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) - (property "Reference" "U" (at 0 -13.97 0) - (effects (font (size 1.524 1.524))) - ) - (property "Value" "LT1568" (at 0 15.24 0) - (effects (font (size 1.524 1.524))) - ) - (property "Footprint" "" (at 1.27 -1.27 0) - (effects (font (size 1.524 1.524))) - ) - (property "Datasheet" "" (at 1.27 -1.27 0) - (effects (font (size 1.524 1.524))) - ) - (property "ki_keywords" "Filter, Low Noise" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Very Low Noise, High Frequency Active RC, Filter Building Block" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "SSOP-16" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "LT1568_0_1" - (rectangle (start -8.89 11.43) (end 8.89 -11.43) - (stroke (width 0) (type default)) - (fill (type background)) - ) - (pin output line (at -13.97 1.27 0) (length 5.08) - (name "OUTA" (effects (font (size 1.27 1.27)))) - (number "4" (effects (font (size 1.27 1.27)))) - ) - (pin output line (at -13.97 -1.27 0) (length 5.08) - (name "~{OUTA}" (effects (font (size 1.27 1.27)))) - (number "5" (effects (font (size 1.27 1.27)))) - ) - ) - (symbol "LT1568_1_1" - (pin power_in line (at -13.97 8.89 0) (length 5.08) - (name "V+" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 13.97 -6.35 180) (length 5.08) - (name "~{EN}" (effects (font (size 1.27 1.27)))) - (number "10" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 13.97 -3.81 180) (length 5.08) - (name "GNDB" (effects (font (size 1.27 1.27)))) - (number "11" (effects (font (size 1.27 1.27)))) - ) - (pin output line (at 13.97 -1.27 180) (length 5.08) - (name "~{OUTB}" (effects (font (size 1.27 1.27)))) - (number "12" (effects (font (size 1.27 1.27)))) - ) - (pin output line (at 13.97 1.27 180) (length 5.08) - (name "OUTB" (effects (font (size 1.27 1.27)))) - (number "13" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 13.97 3.81 180) (length 5.08) - (name "SB" (effects (font (size 1.27 1.27)))) - (number "14" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 13.97 6.35 180) (length 5.08) - (name "INVB" (effects (font (size 1.27 1.27)))) - (number "15" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at 13.97 8.89 180) (length 5.08) - (name "V+" (effects (font (size 1.27 1.27)))) - (number "16" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -13.97 6.35 0) (length 5.08) - (name "INVA" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -13.97 3.81 0) (length 5.08) - (name "SA" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -13.97 -3.81 0) (length 5.08) - (name "GNDA" (effects (font (size 1.27 1.27)))) - (number "6" (effects (font (size 1.27 1.27)))) - ) - (pin no_connect line (at -13.97 -6.35 0) (length 5.08) hide - (name "NC" (effects (font (size 1.27 1.27)))) - (number "7" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at -13.97 -8.89 0) (length 5.08) - (name "V-" (effects (font (size 1.27 1.27)))) - (number "8" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at 13.97 -8.89 180) (length 5.08) - (name "V-" (effects (font (size 1.27 1.27)))) - (number "9" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "LT1994" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) - (property "Reference" "U" (at 7.62 7.62 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "LT1994" (at 3.81 -7.62 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "" (at 0 -2.54 0) - (effects (font (size 1.27 1.27))) - ) - (property "Datasheet" "http://cds.linear.com/docs/en/datasheet/1994fb.pdf" (at 0 -2.54 0) - (effects (font (size 1.27 1.27))) - ) - (property "ki_keywords" "Low noise, Fully Differential" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Low Noise, Low Distortion Fully Differential Input/Output Amplifier/Driver" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "DFN MSOP" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "LT1994_0_0" - (text " SHDN" (at 2.54 -1.27 900) - (effects (font (size 0.762 0.762))) - ) - (text "+" (at -3.81 5.08 0) - (effects (font (size 1.27 1.27))) - ) - (text "-" (at -3.81 -5.08 0) - (effects (font (size 1.27 1.27))) - ) - (text "V+" (at 0 3.175 900) - (effects (font (size 1.27 1.27))) - ) - (text "V-" (at 0 -3.175 900) - (effects (font (size 1.27 1.27))) - ) - (text "Vocm" (at -1.905 0 0) - (effects (font (size 1.27 1.27))) - ) - ) - (symbol "LT1994_0_1" - (polyline - (pts - (xy -5.08 7.62) - (xy -5.08 -7.62) - (xy 10.16 0) - (xy -5.08 7.62) - ) - (stroke (width 0.254) (type default)) - (fill (type background)) - ) - ) - (symbol "LT1994_1_1" - (pin input line (at -7.62 -5.08 0) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 0 0) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at 0 7.62 270) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - (pin output line (at 12.7 2.54 180) (length 7.62) - (name "~" (effects (font (size 1.27 1.27)))) - (number "4" (effects (font (size 1.27 1.27)))) - ) - (pin output inverted (at 12.7 -2.54 180) (length 7.62) - (name "~" (effects (font (size 1.27 1.27)))) - (number "5" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at 0 -7.62 90) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "6" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 2.54 -6.35 90) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "7" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 5.08 0) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "8" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "LT3024EFE" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) - (property "Reference" "U" (at 0 26.67 0) - (effects (font (size 1.524 1.524))) - ) - (property "Value" "LT3024EFE" (at 10.16 26.67 0) - (effects (font (size 1.524 1.524))) - ) - (property "Footprint" "Housings_SSOP:TSSOP-16-1EP_4.4x5mm_Pitch0.65mm" (at 0 30.48 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "Datasheet" "https://cds.linear.com/docs/en/datasheet/3024fa.pdf" (at 0 26.67 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "MFN" "Linear Technology" (at 19.05 -26.67 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "MFP" "LT3024EFE" (at 15.24 -30.48 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "ki_keywords" "LDO, low noise, Dual output" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Dual 100mA/500mA Low Dropout, Low Noise, Micropower Regulator" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "TSSOP-16-1EP*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "LT3024EFE_0_1" - (rectangle (start -13.97 24.13) (end 13.97 -24.13) - (stroke (width 0) (type default)) - (fill (type background)) - ) - ) - (symbol "LT3024EFE_1_1" - (pin power_out line (at 0 -29.21 90) (length 5.08) - (name "GND" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 19.05 -20.32 180) (length 5.08) - (name "ADJ2" (effects (font (size 1.27 1.27)))) - (number "10" (effects (font (size 1.27 1.27)))) - ) - (pin power_out line (at 0 -29.21 90) (length 5.08) hide - (name "GND" (effects (font (size 1.27 1.27)))) - (number "11" (effects (font (size 1.27 1.27)))) - ) - (pin input inverted (at -19.05 16.51 0) (length 5.08) - (name "~{SHDN}" (effects (font (size 1.27 1.27)))) - (number "11" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at -19.05 21.59 0) (length 5.08) - (name "IN" (effects (font (size 1.27 1.27)))) - (number "12" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at -19.05 21.59 0) (length 5.08) hide - (name "IN" (effects (font (size 1.27 1.27)))) - (number "13" (effects (font (size 1.27 1.27)))) - ) - (pin input inverted (at -19.05 19.05 0) (length 5.08) - (name "~{SHDN1}" (effects (font (size 1.27 1.27)))) - (number "14" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 19.05 7.62 180) (length 5.08) - (name "ADJ1" (effects (font (size 1.27 1.27)))) - (number "16" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at 0 -29.21 90) (length 5.08) hide - (name "GND" (effects (font (size 1.27 1.27)))) - (number "16" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 19.05 10.16 180) (length 5.08) - (name "BYP1" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin power_out line (at 19.05 20.32 180) (length 5.08) - (name "OUT1" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - (pin power_out line (at 19.05 20.32 180) (length 5.08) hide - (name "OUT1" (effects (font (size 1.27 1.27)))) - (number "4" (effects (font (size 1.27 1.27)))) - ) - (pin power_out line (at 19.05 -7.62 180) (length 5.08) - (name "OUT2" (effects (font (size 1.27 1.27)))) - (number "6" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 19.05 -17.78 180) (length 5.08) - (name "BYP2" (effects (font (size 1.27 1.27)))) - (number "7" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at 0 -29.21 90) (length 5.08) hide - (name "GND" (effects (font (size 1.27 1.27)))) - (number "8" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at 0 -29.21 90) (length 5.08) hide - (name "GND" (effects (font (size 1.27 1.27)))) - (number "9" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "LT3032" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) - (property "Reference" "U" (at 0 16.51 0) - (effects (font (size 1.524 1.524))) - ) - (property "Value" "LT3032" (at 10.16 16.51 0) - (effects (font (size 1.524 1.524))) - ) - (property "Footprint" "" (at 0 20.32 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "Datasheet" "https://cds.linear.com/docs/en/datasheet/3032ff.pdf" (at 0 16.51 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "MFN" "Linear Technology" (at 19.05 -15.24 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "MFP" "LT3032" (at 15.24 -19.05 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "ki_keywords" "LDO, low noise, dual, postive, negative" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Dual 150mA, Positive/Negative Low Noise, Low Dropout Linear Regulator" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "LT3032_0_1" - (rectangle (start -13.97 13.97) (end 13.97 -12.7) - (stroke (width 0) (type default)) - (fill (type background)) - ) - ) - (symbol "LT3032_1_1" - (pin power_out line (at 19.05 8.89 180) (length 5.08) - (name "OUTP" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin input inverted (at -19.05 -3.81 0) (length 5.08) - (name "~{SHDNN}" (effects (font (size 1.27 1.27)))) - (number "10" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 19.05 -6.35 180) (length 5.08) - (name "BYPN" (effects (font (size 1.27 1.27)))) - (number "11" (effects (font (size 1.27 1.27)))) - ) - (pin input inverted (at -19.05 3.81 0) (length 5.08) - (name "~{SHDNP}" (effects (font (size 1.27 1.27)))) - (number "12" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at -19.05 8.89 0) (length 5.08) - (name "INP" (effects (font (size 1.27 1.27)))) - (number "14" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at 0 -17.78 90) (length 5.08) - (name "GND" (effects (font (size 1.27 1.27)))) - (number "15" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at -19.05 -8.89 0) (length 5.08) hide - (name "INN" (effects (font (size 1.27 1.27)))) - (number "16" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 19.05 3.81 180) (length 5.08) - (name "ADJP" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 19.05 6.35 180) (length 5.08) - (name "BYPP" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at 0 -17.78 90) (length 5.08) hide - (name "~" (effects (font (size 1.27 1.27)))) - (number "4" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at 0 -17.78 90) (length 5.08) hide - (name "~" (effects (font (size 1.27 1.27)))) - (number "5" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at -19.05 -8.89 0) (length 5.08) - (name "INN" (effects (font (size 1.27 1.27)))) - (number "6" (effects (font (size 1.27 1.27)))) - ) - (pin power_out line (at 19.05 -8.89 180) (length 5.08) - (name "OUTN" (effects (font (size 1.27 1.27)))) - (number "7" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 19.05 -3.81 180) (length 5.08) - (name "ADJN" (effects (font (size 1.27 1.27)))) - (number "8" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at -19.05 -8.89 0) (length 5.08) hide - (name "INN" (effects (font (size 1.27 1.27)))) - (number "9" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "LT3032-X" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) - (property "Reference" "U" (at 0 16.51 0) - (effects (font (size 1.524 1.524))) - ) - (property "Value" "LT3032-X" (at 10.16 16.51 0) - (effects (font (size 1.524 1.524))) - ) - (property "Footprint" "" (at 0 20.32 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "Datasheet" "https://cds.linear.com/docs/en/datasheet/3032ff.pdf" (at 0 16.51 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "MFN" "Linear Technology" (at 19.05 -15.24 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "MFP" "LT3032" (at 15.24 -19.05 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "ki_keywords" "LDO, low noise, dual, postive, negative, fixed" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Dual 150mA, Positive/Negative Low Noise, Low Dropout Linear Regulator, Fixed Output" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "LT3032-X_0_1" - (rectangle (start -13.97 13.97) (end 13.97 -12.7) - (stroke (width 0) (type default)) - (fill (type background)) - ) - ) - (symbol "LT3032-X_1_1" - (pin power_out line (at 19.05 8.89 180) (length 5.08) - (name "OUTP" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin input inverted (at -19.05 -3.81 0) (length 5.08) - (name "~{SHDNN}" (effects (font (size 1.27 1.27)))) - (number "10" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 19.05 -6.35 180) (length 5.08) - (name "BYPN" (effects (font (size 1.27 1.27)))) - (number "11" (effects (font (size 1.27 1.27)))) - ) - (pin input inverted (at -19.05 3.81 0) (length 5.08) - (name "~{SHDNP}" (effects (font (size 1.27 1.27)))) - (number "12" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at -19.05 8.89 0) (length 5.08) - (name "INP" (effects (font (size 1.27 1.27)))) - (number "14" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at 0 -17.78 90) (length 5.08) - (name "GND" (effects (font (size 1.27 1.27)))) - (number "15" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at -19.05 -8.89 0) (length 5.08) hide - (name "INN" (effects (font (size 1.27 1.27)))) - (number "16" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 19.05 6.35 180) (length 5.08) - (name "BYPP" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at 0 -17.78 90) (length 5.08) hide - (name "~" (effects (font (size 1.27 1.27)))) - (number "4" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at 0 -17.78 90) (length 5.08) hide - (name "~" (effects (font (size 1.27 1.27)))) - (number "5" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at -19.05 -8.89 0) (length 5.08) - (name "INN" (effects (font (size 1.27 1.27)))) - (number "6" (effects (font (size 1.27 1.27)))) - ) - (pin power_out line (at 19.05 -8.89 180) (length 5.08) - (name "OUTN" (effects (font (size 1.27 1.27)))) - (number "7" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at -19.05 -8.89 0) (length 5.08) hide - (name "INN" (effects (font (size 1.27 1.27)))) - (number "9" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "LT3045EDD" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) - (property "Reference" "U" (at 0 8.89 0) - (effects (font (size 1.524 1.524))) - ) - (property "Value" "LT3045EDD" (at 10.16 8.89 0) - (effects (font (size 1.524 1.524))) - ) - (property "Footprint" "Housings_DFN_QFN:DFN-10-1EP_3x3mm_Pitch0.5mm" (at 0 12.7 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "Datasheet" "https://cds.linear.com/docs/en/datasheet/3045f.pdf" (at 0 8.89 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "MFN" "Linear Technology" (at 19.05 -8.89 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "MFP" "LT3045EDD" (at 15.24 -12.7 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "ki_keywords" "LDO, low noise, high PSRR" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "20V, 500mA, Ultralow Noise, Ultrahigh PSRR Linear Regulator, DFN Package" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "DFN*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "LT3045EDD_0_1" - (rectangle (start -13.97 6.35) (end 13.97 -6.35) - (stroke (width 0) (type default)) - (fill (type background)) - ) - ) - (symbol "LT3045EDD_1_1" - (pin power_in line (at -19.05 2.54 0) (length 5.08) - (name "IN" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin power_out line (at 19.05 2.54 180) (length 5.08) - (name "OUT" (effects (font (size 1.27 1.27)))) - (number "10" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 0 -11.43 90) (length 5.08) hide - (name "PAD" (effects (font (size 1.27 1.27)))) - (number "11" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at -19.05 2.54 0) (length 5.08) hide - (name "IN2" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -19.05 0 0) (length 5.08) - (name "EN/UV" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - (pin output line (at 19.05 -2.54 180) (length 5.08) - (name "PG" (effects (font (size 1.27 1.27)))) - (number "4" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 6.35 -11.43 90) (length 5.08) - (name "ILIM" (effects (font (size 1.27 1.27)))) - (number "5" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -19.05 -2.54 0) (length 5.08) - (name "PGFB" (effects (font (size 1.27 1.27)))) - (number "6" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -6.35 -11.43 90) (length 5.08) - (name "SET" (effects (font (size 1.27 1.27)))) - (number "7" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at 0 -11.43 90) (length 5.08) - (name "GND" (effects (font (size 1.27 1.27)))) - (number "8" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 19.05 0 180) (length 5.08) - (name "OUTS" (effects (font (size 1.27 1.27)))) - (number "9" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "LT3045EMSE" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) - (property "Reference" "U" (at 0 8.89 0) - (effects (font (size 1.524 1.524))) - ) - (property "Value" "LT3045EMSE" (at 10.16 8.89 0) - (effects (font (size 1.524 1.524))) - ) - (property "Footprint" "Housings_SSOP:MSOP-12-1EP_3x4mm_Pitch0.65mm" (at 0 12.7 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "Datasheet" "https://cds.linear.com/docs/en/datasheet/3045f.pdf" (at 0 8.89 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "MFN" "Linear Technology" (at 19.05 -8.89 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "MFP" "LT3045EMSE" (at 15.24 -12.7 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "ki_keywords" "LDO, low noise, high PSRR" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "20V, 500mA, Ultralow Noise, Ultrahigh PSRR Linear Regulator, MSOP Package" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "MSOP*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "LT3045EMSE_0_1" - (rectangle (start -13.97 6.35) (end 13.97 -6.35) - (stroke (width 0) (type default)) - (fill (type background)) - ) - ) - (symbol "LT3045EMSE_1_1" - (pin power_in line (at -19.05 2.54 0) (length 5.08) - (name "IN" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 19.05 0 180) (length 5.08) - (name "OUTS" (effects (font (size 1.27 1.27)))) - (number "10" (effects (font (size 1.27 1.27)))) - ) - (pin power_out line (at 19.05 2.54 180) (length 5.08) - (name "OUT" (effects (font (size 1.27 1.27)))) - (number "11" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 19.05 2.54 180) (length 5.08) hide - (name "OUT" (effects (font (size 1.27 1.27)))) - (number "12" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 0 -11.43 90) (length 5.08) hide - (name "GND" (effects (font (size 1.27 1.27)))) - (number "13" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at -19.05 2.54 0) (length 5.08) hide - (name "IN" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at -19.05 2.54 0) (length 5.08) hide - (name "IN" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -19.05 0 0) (length 5.08) - (name "EN/UV" (effects (font (size 1.27 1.27)))) - (number "4" (effects (font (size 1.27 1.27)))) - ) - (pin output line (at 19.05 -2.54 180) (length 5.08) - (name "PG" (effects (font (size 1.27 1.27)))) - (number "5" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 6.35 -11.43 90) (length 5.08) - (name "ILIM" (effects (font (size 1.27 1.27)))) - (number "6" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -19.05 -2.54 0) (length 5.08) - (name "PGFB" (effects (font (size 1.27 1.27)))) - (number "7" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -6.35 -11.43 90) (length 5.08) - (name "SET" (effects (font (size 1.27 1.27)))) - (number "8" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at 0 -11.43 90) (length 5.08) - (name "GND" (effects (font (size 1.27 1.27)))) - (number "9" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "LT3090EDD" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) - (property "Reference" "U" (at 0 8.89 0) - (effects (font (size 1.524 1.524))) - ) - (property "Value" "LT3090EDD" (at 10.16 8.89 0) - (effects (font (size 1.524 1.524))) - ) - (property "Footprint" "Housings_DFN_QFN:DFN-10-1EP_3x3mm_Pitch0.5mm" (at 0 12.7 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "Datasheet" "" (at 0 8.89 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "MFN" "Linear Technology" (at 19.05 -8.89 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "MFP" "LT3090EDD" (at 15.24 -12.7 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "ki_description" "–36V, 600mA Negative Linear Regulator with Programmable Current Limit" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "DFN*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "LT3090EDD_0_1" - (rectangle (start -13.97 6.35) (end 13.97 -6.35) - (stroke (width 0) (type default)) - (fill (type background)) - ) - ) - (symbol "LT3090EDD_1_1" - (pin input line (at -19.05 2.54 0) (length 5.08) - (name "IN" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin power_out line (at 19.05 2.54 180) (length 5.08) - (name "OUT" (effects (font (size 1.27 1.27)))) - (number "10" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -19.05 2.54 0) (length 5.08) hide - (name "PAD" (effects (font (size 1.27 1.27)))) - (number "11" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -19.05 2.54 0) (length 5.08) hide - (name "PAD" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -19.05 0 0) (length 5.08) - (name "ILIM" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -6.35 11.43 270) (length 5.08) - (name "IMONP" (effects (font (size 1.27 1.27)))) - (number "4" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 6.35 -11.43 90) (length 5.08) - (name "IMONN" (effects (font (size 1.27 1.27)))) - (number "5" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -19.05 -2.54 0) (length 5.08) - (name "SHDN" (effects (font (size 1.27 1.27)))) - (number "6" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -6.35 -11.43 90) (length 5.08) - (name "SET" (effects (font (size 1.27 1.27)))) - (number "7" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at 0 -11.43 90) (length 5.08) - (name "GND" (effects (font (size 1.27 1.27)))) - (number "8" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 19.05 2.54 180) (length 5.08) hide - (name "OUT" (effects (font (size 1.27 1.27)))) - (number "9" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "LT3094EMSE" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) - (property "Reference" "U" (at 0 8.89 0) - (effects (font (size 1.524 1.524))) - ) - (property "Value" "LT3094EMSE" (at 10.16 8.89 0) - (effects (font (size 1.524 1.524))) - ) - (property "Footprint" "Housings_SSOP:MSOP-12-1EP_3x4mm_Pitch0.65mm" (at 0 12.7 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "Datasheet" "https://cds.linear.com/docs/en/datasheet/3045f.pdf" (at 0 8.89 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "MFN" "Linear Technology" (at 19.05 -8.89 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "MFP" "LT3094EMSE" (at 15.24 -12.7 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "ki_keywords" "LDO, low noise, high PSRR" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "–20V, 500mA, Ultralow Noise, Ultrahigh PSRR Negative Linear Regulator" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "MSOP*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "LT3094EMSE_0_1" - (rectangle (start -13.97 6.35) (end 13.97 -6.35) - (stroke (width 0) (type default)) - (fill (type background)) - ) - ) - (symbol "LT3094EMSE_1_1" - (pin power_in line (at -19.05 2.54 0) (length 5.08) - (name "IN" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 19.05 0 180) (length 5.08) - (name "OUTS" (effects (font (size 1.27 1.27)))) - (number "10" (effects (font (size 1.27 1.27)))) - ) - (pin power_out line (at 19.05 2.54 180) (length 5.08) - (name "OUT" (effects (font (size 1.27 1.27)))) - (number "11" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 19.05 2.54 180) (length 5.08) hide - (name "OUT" (effects (font (size 1.27 1.27)))) - (number "12" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -19.05 2.54 0) (length 5.08) hide - (name "IN" (effects (font (size 1.27 1.27)))) - (number "13" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -19.05 2.54 0) (length 5.08) hide - (name "IN" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -19.05 0 0) (length 5.08) - (name "EN/UV" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - (pin output line (at 19.05 -2.54 180) (length 5.08) - (name "PG" (effects (font (size 1.27 1.27)))) - (number "4" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -19.05 -2.54 0) (length 5.08) - (name "PGFB" (effects (font (size 1.27 1.27)))) - (number "5" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 6.35 -11.43 90) (length 5.08) - (name "ILIM" (effects (font (size 1.27 1.27)))) - (number "6" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -19.05 -5.08 0) (length 5.08) - (name "VIOC" (effects (font (size 1.27 1.27)))) - (number "7" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -6.35 -11.43 90) (length 5.08) - (name "SET" (effects (font (size 1.27 1.27)))) - (number "8" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at 0 -11.43 90) (length 5.08) - (name "GND" (effects (font (size 1.27 1.27)))) - (number "9" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "LT6232" (in_bom yes) (on_board yes) - (property "Reference" "U" (at 0 5.08 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "LT6232" (at 0 -5.08 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "" (at -1.27 2.54 0) - (effects (font (size 1.27 1.27))) - ) - (property "Datasheet" "http://cds.linear.com/docs/en/datasheet/623012fc.pdf" (at 1.27 5.08 0) - (effects (font (size 1.27 1.27))) - ) - (property "ki_locked" "" (at 0 0 0) - (effects (font (size 1.27 1.27))) - ) - (property "ki_keywords" "AmpliOp, Rail-to-Rail, Low Noise" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "215MHz, Rail-to-Rail Output, 1.1nV/√Hz, 3.5mA Op Amp" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "SOIC* DIP* TSSOP* SSOP* MSOP*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "LT6232_0_1" - (polyline - (pts - (xy -5.08 5.08) - (xy 5.08 0) - (xy -5.08 -5.08) - (xy -5.08 5.08) - ) - (stroke (width 0.254) (type default)) - (fill (type background)) - ) - ) - (symbol "LT6232_1_1" - (pin output line (at 7.62 0 180) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 -2.54 0) (length 2.54) - (name "-" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 2.54 0) (length 2.54) - (name "+" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - ) - (symbol "LT6232_2_1" - (pin input line (at -7.62 2.54 0) (length 2.54) - (name "+" (effects (font (size 1.27 1.27)))) - (number "5" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 -2.54 0) (length 2.54) - (name "-" (effects (font (size 1.27 1.27)))) - (number "6" (effects (font (size 1.27 1.27)))) - ) - (pin output line (at 7.62 0 180) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "7" (effects (font (size 1.27 1.27)))) - ) - ) - (symbol "LT6232_3_1" - (pin output line (at 7.62 0 180) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "10" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 -2.54 0) (length 2.54) - (name "-" (effects (font (size 1.27 1.27)))) - (number "11" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 2.54 0) (length 2.54) - (name "+" (effects (font (size 1.27 1.27)))) - (number "12" (effects (font (size 1.27 1.27)))) - ) - ) - (symbol "LT6232_4_1" - (pin input line (at -7.62 2.54 0) (length 2.54) - (name "+" (effects (font (size 1.27 1.27)))) - (number "14" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 -2.54 0) (length 2.54) - (name "-" (effects (font (size 1.27 1.27)))) - (number "15" (effects (font (size 1.27 1.27)))) - ) - (pin output line (at 7.62 0 180) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "16" (effects (font (size 1.27 1.27)))) - ) - ) - (symbol "LT6232_5_1" - (pin power_in line (at -2.54 -7.62 90) (length 3.81) - (name "V-" (effects (font (size 1.27 1.27)))) - (number "13" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at -2.54 7.62 270) (length 3.81) - (name "V+" (effects (font (size 1.27 1.27)))) - (number "4" (effects (font (size 1.27 1.27)))) - ) - (pin no_connect line (at 0 -6.35 90) (length 3.81) hide - (name "~" (effects (font (size 1.27 1.27)))) - (number "8" (effects (font (size 1.27 1.27)))) - ) - (pin no_connect line (at 0 6.35 270) (length 3.81) hide - (name "~" (effects (font (size 1.27 1.27)))) - (number "9" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "LT8610" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) - (property "Reference" "U" (at -8.89 41.91 0) - (effects (font (size 1.524 1.524))) - ) - (property "Value" "LT8610" (at -6.35 44.45 0) - (effects (font (size 1.524 1.524))) - ) - (property "Footprint" "" (at 0 0 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "Datasheet" "" (at 0 0 0) - (effects (font (size 1.524 1.524)) hide) - ) - (symbol "LT8610_1_0" - (rectangle (start -10.16 40.64) (end 10.16 6.35) - (stroke (width 0) (type default)) - (fill (type background)) - ) - ) - (symbol "LT8610_1_1" - (pin input line (at -13.97 21.59 0) (length 3.81) - (name "SYNC" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 13.97 26.67 180) (length 3.81) hide - (name "SW" (effects (font (size 1.27 1.27)))) - (number "10" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 13.97 26.67 180) (length 3.81) hide - (name "SW" (effects (font (size 1.27 1.27)))) - (number "11" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 13.97 38.1 180) (length 3.81) - (name "BST" (effects (font (size 1.27 1.27)))) - (number "12" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -13.97 11.43 0) (length 3.81) - (name "INTVcc" (effects (font (size 1.27 1.27)))) - (number "13" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 13.97 21.59 180) (length 3.81) - (name "BIAS" (effects (font (size 1.27 1.27)))) - (number "14" (effects (font (size 1.27 1.27)))) - ) - (pin output line (at -13.97 26.67 0) (length 3.81) - (name "PG" (effects (font (size 1.27 1.27)))) - (number "15" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 13.97 16.51 180) (length 3.81) - (name "FB" (effects (font (size 1.27 1.27)))) - (number "16" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 5.08 2.54 90) (length 3.81) - (name "GND" (effects (font (size 1.27 1.27)))) - (number "17" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -13.97 16.51 0) (length 3.81) - (name "TR/SS" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 2.54 90) (length 3.81) - (name "RT" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -13.97 31.75 0) (length 3.81) - (name "EN/UV" (effects (font (size 1.27 1.27)))) - (number "4" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -13.97 38.1 0) (length 3.81) - (name "Vin" (effects (font (size 1.27 1.27)))) - (number "5" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -13.97 38.1 0) (length 3.81) hide - (name "Vin" (effects (font (size 1.27 1.27)))) - (number "6" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 0 2.54 90) (length 3.81) - (name "PGND" (effects (font (size 1.27 1.27)))) - (number "7" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 0 2.54 90) (length 3.81) hide - (name "PGND" (effects (font (size 1.27 1.27)))) - (number "8" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 13.97 26.67 180) (length 3.81) - (name "SW" (effects (font (size 1.27 1.27)))) - (number "9" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "LTC1563-2" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) - (property "Reference" "U" (at 0 -13.97 0) - (effects (font (size 1.524 1.524))) - ) - (property "Value" "LTC1563-2" (at 0 15.24 0) - (effects (font (size 1.524 1.524))) - ) - (property "Footprint" "" (at 1.27 -1.27 0) - (effects (font (size 1.524 1.524))) - ) - (property "Datasheet" "http://cds.linear.com/docs/en/datasheet/156323fa.pdf" (at 1.27 -1.27 0) - (effects (font (size 1.524 1.524))) - ) - (property "ki_keywords" "Filter, Low Noise" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Very Low Noise, High Frequency Active RC, Filter Building Block" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "SSOP-16" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "LTC1563-2_0_1" - (rectangle (start -8.89 11.43) (end 8.89 -11.43) - (stroke (width 0) (type default)) - (fill (type background)) - ) - (pin input line (at -13.97 1.27 0) (length 5.08) - (name "INVA" (effects (font (size 1.27 1.27)))) - (number "4" (effects (font (size 1.27 1.27)))) - ) - (pin no_connect line (at -13.97 -1.27 0) (length 5.08) - (name "NC" (effects (font (size 1.27 1.27)))) - (number "5" (effects (font (size 1.27 1.27)))) - ) - ) - (symbol "LTC1563-2_1_1" - (pin input line (at -13.97 8.89 0) (length 5.08) - (name "~{LP}" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin no_connect line (at 13.97 -6.35 180) (length 5.08) - (name "NC" (effects (font (size 1.27 1.27)))) - (number "10" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 13.97 -3.81 180) (length 5.08) - (name "SB" (effects (font (size 1.27 1.27)))) - (number "11" (effects (font (size 1.27 1.27)))) - ) - (pin no_connect line (at 13.97 -1.27 180) (length 5.08) - (name "NC" (effects (font (size 1.27 1.27)))) - (number "12" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 13.97 1.27 180) (length 5.08) - (name "INVB" (effects (font (size 1.27 1.27)))) - (number "13" (effects (font (size 1.27 1.27)))) - ) - (pin no_connect line (at 13.97 3.81 180) (length 5.08) - (name "NC" (effects (font (size 1.27 1.27)))) - (number "14" (effects (font (size 1.27 1.27)))) - ) - (pin output line (at 13.97 6.35 180) (length 5.08) - (name "LPB" (effects (font (size 1.27 1.27)))) - (number "15" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at 13.97 8.89 180) (length 5.08) - (name "V+" (effects (font (size 1.27 1.27)))) - (number "16" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -13.97 6.35 0) (length 5.08) - (name "SA" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin no_connect line (at -13.97 3.81 0) (length 5.08) - (name "NC" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - (pin output line (at -13.97 -3.81 0) (length 5.08) - (name "LPA" (effects (font (size 1.27 1.27)))) - (number "6" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -13.97 -6.35 0) (length 5.08) - (name "AGND" (effects (font (size 1.27 1.27)))) - (number "7" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at -13.97 -8.89 0) (length 5.08) - (name "V-" (effects (font (size 1.27 1.27)))) - (number "8" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 13.97 -8.89 180) (length 5.08) - (name "~{EN}" (effects (font (size 1.27 1.27)))) - (number "9" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "LTC2057" (in_bom yes) (on_board yes) - (property "Reference" "U" (at 3.81 5.08 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "LTC2057" (at 3.81 -5.08 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "" (at -1.27 2.54 0) - (effects (font (size 1.27 1.27))) - ) - (property "Datasheet" "http://cds.linear.com/docs/en/datasheet/623012fc.pdf" (at 1.27 5.08 0) - (effects (font (size 1.27 1.27))) - ) - (property "MFN" "Linear Technology" (at 15.24 7.62 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "MFP" "LTC2057" (at 10.16 10.16 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "ki_keywords" "AmpliOp, Rail-to-Rail, Low Noise" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "215MHz, Rail-to-Rail Output, 1.1nV/√Hz, 3.5mA Op Amp" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "SOIC* MSOP8* DFN*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "LTC2057_0_1" - (polyline - (pts - (xy -5.08 5.08) - (xy 5.08 0) - (xy -5.08 -5.08) - (xy -5.08 5.08) - ) - (stroke (width 0.254) (type default)) - (fill (type background)) - ) - (pin input inverted (at 0 -6.35 90) (length 3.81) - (name "~{SD}" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at -2.54 -7.62 90) (length 3.81) - (name "V-" (effects (font (size 1.27 1.27)))) - (number "4" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at -2.54 7.62 270) (length 3.81) - (name "V+" (effects (font (size 1.27 1.27)))) - (number "7" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 0 6.35 270) (length 3.81) - (name "~" (effects (font (size 1.27 1.27)))) - (number "8" (effects (font (size 1.27 1.27)))) - ) - ) - (symbol "LTC2057_1_1" - (pin input line (at -7.62 -2.54 0) (length 2.54) - (name "-" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 2.54 0) (length 2.54) - (name "+" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - (pin output line (at 7.62 0 180) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "6" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "LTC2057(MSOP-10)" (in_bom yes) (on_board yes) - (property "Reference" "U" (at 6.35 6.35 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "LTC2057(MSOP-10)" (at 3.81 -5.08 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Housings_SSOP:MSOP-10_3x3mm_Pitch0.5mm" (at 0 15.24 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "http://cds.linear.com/docs/en/datasheet/623012fc.pdf" (at 1.27 5.08 0) - (effects (font (size 1.27 1.27))) - ) - (property "MFN" "Linear Technology" (at 16.51 8.89 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "MFP" "LTC2057IMS" (at 12.7 11.43 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "ki_keywords" "AmpliOp, Rail-to-Rail, Low Noise" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "215MHz, Rail-to-Rail Output, 1.1nV/√Hz, 3.5mA Op Amp" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "SOIC* DIP* TSSOP* SSOP* MSOP*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "LTC2057(MSOP-10)_0_1" - (polyline - (pts - (xy -5.08 5.08) - (xy 5.08 0) - (xy -5.08 -5.08) - (xy -5.08 5.08) - ) - (stroke (width 0.254) (type default)) - (fill (type background)) - ) - (pin input line (at 0 6.35 270) (length 3.81) - (name "~" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin input inverted (at 0 -6.35 90) (length 3.81) - (name "~{SD}" (effects (font (size 1.27 1.27)))) - (number "10" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 2.54 5.08 270) (length 3.81) - (name "~" (effects (font (size 1.27 1.27)))) - (number "4" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at -2.54 -7.62 90) (length 3.81) - (name "V-" (effects (font (size 1.27 1.27)))) - (number "5" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at -2.54 7.62 270) (length 3.81) - (name "V+" (effects (font (size 1.27 1.27)))) - (number "8" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 2.54 -5.08 90) (length 3.81) - (name "~" (effects (font (size 1.27 1.27)))) - (number "9" (effects (font (size 1.27 1.27)))) - ) - ) - (symbol "LTC2057(MSOP-10)_1_1" - (pin input line (at -7.62 -2.54 0) (length 2.54) - (name "-" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 2.54 0) (length 2.54) - (name "+" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - (pin output line (at 7.62 0 180) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "6" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "LTC6269" (pin_names (offset 0.254)) (in_bom yes) (on_board yes) - (property "Reference" "U" (at 0 3.81 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "LTC6269" (at 0 -3.81 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "" (at -2.54 1.27 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "analog-dev/op275.pdf" (at 0 3.81 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "ampliop" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Dual Op amp (low power)" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "DIP*W7.62mm* SOIC*3.9x4.9mm*Pitch1.27mm* SOP* LFCSP*" (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "LTC6269_0_1" - (polyline - (pts - (xy -5.08 5.08) - (xy 5.08 0) - (xy -5.08 -5.08) - (xy -5.08 5.08) - ) - (stroke (width 0.254) (type default)) - (fill (type background)) - ) - (pin power_in line (at -2.54 7.62 270) (length 3.81) - (name "V+" (effects (font (size 1.27 1.27)))) - (number "10" (effects (font (size 1.27 1.27)))) - ) - (pin output line (at -2.54 -7.62 90) (length 2.54) - (name "V-" (effects (font (size 1.27 1.27)))) - (number "4" (effects (font (size 1.27 1.27)))) - ) - ) - (symbol "LTC6269_1_1" - (pin output line (at 7.62 0 180) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin output line (at -2.54 -7.62 90) (length 2.54) hide - (name "V-" (effects (font (size 1.27 1.27)))) - (number "11" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 -2.54 0) (length 2.54) - (name "-" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 2.54 0) (length 2.54) - (name "+" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 0 -7.62 90) (length 5.08) - (name "SD" (effects (font (size 1.27 1.27)))) - (number "5" (effects (font (size 1.27 1.27)))) - ) - ) - (symbol "LTC6269_2_1" - (pin output line (at -2.54 -7.62 90) (length 2.54) hide - (name "V-" (effects (font (size 1.27 1.27)))) - (number "11" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 0 -7.62 90) (length 5.08) - (name "SD" (effects (font (size 1.27 1.27)))) - (number "6" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 2.54 0) (length 2.54) - (name "+" (effects (font (size 1.27 1.27)))) - (number "7" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 -2.54 0) (length 2.54) - (name "-" (effects (font (size 1.27 1.27)))) - (number "8" (effects (font (size 1.27 1.27)))) - ) - (pin output line (at 7.62 0 180) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "9" (effects (font (size 1.27 1.27)))) - ) - ) - ) +(kicad_symbol_lib + (version 20231120) + (generator "kicad_symbol_editor") + (generator_version "8.0") + (symbol "LT1236-10" + (pin_names + (offset 1.016) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at 6.35 -1.27 0) + (effects + (font + (size 1.524 1.524) + ) + ) + ) + (property "Value" "LT1236-10" + (at 0 8.89 0) + (effects + (font + (size 1.524 1.524) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.524 1.524) + ) + (hide yes) + ) + ) + (property "Description" "10V Precision Reference" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "LT1236-10_1_1" + (rectangle + (start -7.62 7.62) + (end 7.62 0) + (stroke + (width 0) + (type default) + ) + (fill + (type background) + ) + ) + (pin no_connect line + (at -6.35 -2.54 90) + (length 2.54) hide + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -12.7 5.08 0) + (length 5.08) + (name "Vin" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at -3.81 -2.54 90) + (length 2.54) hide + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 -5.08 90) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 12.7 2.54 180) + (length 5.08) + (name "Trim" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_out line + (at 12.7 5.08 180) + (length 5.08) + (name "Vout" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 3.81 -2.54 90) + (length 2.54) hide + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at -10.16 1.27 0) + (length 2.54) hide + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) ) diff --git a/pcb/KiCad/libraries/Texas_Instruments.kicad_sym b/pcb/KiCad/libraries/Texas_Instruments.kicad_sym index 9edd6d2..81fa658 100644 --- a/pcb/KiCad/libraries/Texas_Instruments.kicad_sym +++ b/pcb/KiCad/libraries/Texas_Instruments.kicad_sym @@ -1,235 +1,223 @@ -(kicad_symbol_lib (version 20211014) (generator kicad_symbol_editor) - (symbol "BUF634" (in_bom yes) (on_board yes) - (property "Reference" "U" (id 0) (at 5.08 2.54 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "BUF634" (id 1) (at 5.08 -2.54 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "" (id 2) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (id 3) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Field4" "1" (id 4) (at 0 0 0) - (effects (font (size 1.27 1.27))) - ) - (property "ki_description" "250mA, High-Speed Buffer" (id 5) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "BUF634_0_1" - (polyline - (pts - (xy 5.08 0) - (xy -5.08 5.08) - (xy -5.08 -5.08) - (xy 5.08 0) - ) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type background)) - ) - (pin power_in line (at -2.54 -7.62 90) (length 3.81) - (name "V-" (effects (font (size 1.27 1.27)))) - (number "4" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at -2.54 7.62 270) (length 3.81) - (name "V+" (effects (font (size 1.27 1.27)))) - (number "7" (effects (font (size 1.27 1.27)))) - ) - ) - (symbol "BUF634_1_1" - (pin passive inverted (at 2.54 -7.62 90) (length 6.35) - (name "BW" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin no_connect line (at 0 5.08 270) (length 2.54) hide - (name "" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 0 0) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - (pin no_connect line (at 5.08 2.54 270) (length 2.54) hide - (name "" (effects (font (size 1.27 1.27)))) - (number "5" (effects (font (size 1.27 1.27)))) - ) - (pin output line (at 7.62 0 180) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "6" (effects (font (size 1.27 1.27)))) - ) - (pin no_connect line (at 2.54 3.81 270) (length 2.54) hide - (name "" (effects (font (size 1.27 1.27)))) - (number "8" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "OPA1602" (in_bom yes) (on_board yes) - (property "Reference" "U" (id 0) (at 0 5.08 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "OPA1602" (id 1) (at 0 -5.08 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm" (id 2) (at 0 -6.985 0) - (effects (font (size 1.27 1.27)) (justify left) hide) - ) - (property "Datasheet" "" (id 3) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "ampliop Power OpAMP" (id 4) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "High-Performance,Bipolar-InputAUDIOOPERATIONALAMPLIFIERS" (id 5) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "OPA1602_0_1" - (polyline - (pts - (xy -5.08 5.08) - (xy 5.08 0) - (xy -5.08 -5.08) - (xy -5.08 5.08) - ) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type background)) - ) - ) - (symbol "OPA1602_1_1" - (pin output line (at 7.62 0 180) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 -2.54 0) (length 2.54) - (name "-" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 2.54 0) (length 2.54) - (name "+" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at -2.54 -6.35 90) (length 2.54) - (name "V-" (effects (font (size 1.27 1.27)))) - (number "4" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at -2.54 6.35 270) (length 2.54) - (name "V+" (effects (font (size 1.27 1.27)))) - (number "8" (effects (font (size 1.27 1.27)))) - ) - ) - (symbol "OPA1602_2_1" - (pin input line (at -7.62 2.54 0) (length 2.54) - (name "+" (effects (font (size 1.27 1.27)))) - (number "5" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 -2.54 0) (length 2.54) - (name "-" (effects (font (size 1.27 1.27)))) - (number "6" (effects (font (size 1.27 1.27)))) - ) - (pin output line (at 7.62 0 180) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "7" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "OPA1604" (in_bom yes) (on_board yes) - (property "Reference" "U" (id 0) (at 0 5.08 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "OPA1604" (id 1) (at 0 -5.08 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Housings_SOIC:SOIC-16W_5.3x10.2mm_Pitch1.27mm" (id 2) (at -1.27 2.54 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (id 3) (at 1.27 5.08 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "AmpliOp" (id 4) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "High-Performance,Bipolar-Input AUDIOOPERATIONALAMPLIFIERS" (id 5) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "Housings_SOIC:SOIC-16W_5.3x10.2mm_Pitch1.27mm" (id 6) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "OPA1604_0_1" - (polyline - (pts - (xy -5.08 5.08) - (xy 5.08 0) - (xy -5.08 -5.08) - (xy -5.08 5.08) - ) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type background)) - ) - ) - (symbol "OPA1604_1_1" - (pin output line (at 7.62 0 180) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at -2.54 -6.35 90) (length 2.54) - (name "V-" (effects (font (size 1.27 1.27)))) - (number "11" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 -2.54 0) (length 2.54) - (name "-" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 2.54 0) (length 2.54) - (name "+" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at -2.54 6.35 270) (length 2.54) - (name "V+" (effects (font (size 1.27 1.27)))) - (number "4" (effects (font (size 1.27 1.27)))) - ) - ) - (symbol "OPA1604_2_1" - (pin input line (at -7.62 2.54 0) (length 2.54) - (name "+" (effects (font (size 1.27 1.27)))) - (number "5" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 -2.54 0) (length 2.54) - (name "-" (effects (font (size 1.27 1.27)))) - (number "6" (effects (font (size 1.27 1.27)))) - ) - (pin output line (at 7.62 0 180) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "7" (effects (font (size 1.27 1.27)))) - ) - ) - (symbol "OPA1604_3_1" - (pin input line (at -7.62 2.54 0) (length 2.54) - (name "+" (effects (font (size 1.27 1.27)))) - (number "10" (effects (font (size 1.27 1.27)))) - ) - (pin output line (at 7.62 0 180) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "8" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 -2.54 0) (length 2.54) - (name "-" (effects (font (size 1.27 1.27)))) - (number "9" (effects (font (size 1.27 1.27)))) - ) - ) - (symbol "OPA1604_4_1" - (pin input line (at -7.62 2.54 0) (length 2.54) - (name "+" (effects (font (size 1.27 1.27)))) - (number "12" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 -2.54 0) (length 2.54) - (name "-" (effects (font (size 1.27 1.27)))) - (number "13" (effects (font (size 1.27 1.27)))) - ) - (pin output line (at 7.62 0 180) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "14" (effects (font (size 1.27 1.27)))) - ) - ) - ) +(kicad_symbol_lib + (version 20231120) + (generator "kicad_symbol_editor") + (generator_version "8.0") + (symbol "BUF634" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at 5.08 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "BUF634" + (at 5.08 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (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" "250mA, High-Speed Buffer" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Field4" "1" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (symbol "BUF634_0_1" + (polyline + (pts + (xy 5.08 0) (xy -5.08 5.08) (xy -5.08 -5.08) (xy 5.08 0) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (pin power_in line + (at -2.54 -7.62 90) + (length 3.81) + (name "V-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -2.54 7.62 270) + (length 3.81) + (name "V+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (symbol "BUF634_1_1" + (pin passive inverted + (at 2.54 -7.62 90) + (length 6.35) + (name "BW" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 0 5.08 270) + (length 2.54) hide + (name "" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -7.62 0 0) + (length 2.54) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 5.08 2.54 270) + (length 2.54) hide + (name "" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 7.62 0 180) + (length 2.54) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 2.54 3.81 270) + (length 2.54) hide + (name "" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) )