diff --git a/.github/workflows/build_push.yml b/.github/workflows/build_push.yml index 67329e5..bd89eb4 100644 --- a/.github/workflows/build_push.yml +++ b/.github/workflows/build_push.yml @@ -96,20 +96,24 @@ jobs: with: sketch-names: MarauderOTA.ino arduino-board-fqbn: esp32:esp32:esp32s2 - platform-url: https://github.com/espressif/arduino-esp32/releases/download/2.0.0-rc1/package_esp32_dev_index.json + platform-url: https://github.com/espressif/arduino-esp32/releases/download/2.0.3/package_esp32_dev_index.json - name: Replace SD lib run: | - rm -rf /home/runner/.arduino15/packages/esp32/hardware/esp32/2.0.0-rc1/libraries/SD - cp -R /home/runner/work/ESP32Marauder/ESP32Marauder/2.0.4arduino-esp32/libraries/SD /home/runner/.arduino15/packages/esp32/hardware/esp32/2.0.0-rc1/libraries/SD - ls -la /home/runner/.arduino15/packages/esp32/hardware/esp32/2.0.0-rc1/libraries/SD + rm -rf /home/runner/.arduino15/packages/esp32/hardware/esp32/2.0.3/libraries/SD + cp -R /home/runner/work/ESP32Marauder/ESP32Marauder/2.0.4arduino-esp32/libraries/SD /home/runner/.arduino15/packages/esp32/hardware/esp32/2.0.3/libraries/SD + ls -la /home/runner/.arduino15/packages/esp32/hardware/esp32/2.0.3/libraries/SD - name: Modify platform.txt run: | echo "Chicken" for i in $(find /home/runner/.arduino15/packages/esp32/hardware/esp32/ -name "platform.txt"); do + sed -i 's/compiler.c.elf.libs.esp32c3=/compiler.c.elf.libs.esp32c3=-zmuldefs /' "$i" + sed -i 's/compiler.c.elf.libs.esp32s3=/compiler.c.elf.libs.esp32s3=-zmuldefs /' "$i" sed -i 's/compiler.c.elf.libs.esp32s2=/compiler.c.elf.libs.esp32s2=-zmuldefs /' "$i" sed -i 's/compiler.c.elf.libs.esp32=/compiler.c.elf.libs.esp32=-zmuldefs /' "$i" + cat "$i" | grep compiler.c.elf.libs.esp32c3 + cat "$i" | grep compiler.c.elf.libs.esp32s3 cat "$i" | grep compiler.c.elf.libs.esp32s2 cat "$i" | grep compiler.c.elf.libs.esp32 done @@ -118,15 +122,24 @@ jobs: uses: ArminJo/arduino-test-compile@v3.2.0 with: sketch-names: esp32_marauder.ino - arduino-board-fqbn: esp32:esp32:esp32s2:PartitionScheme=min_spiffs,FlashSize=16M,PSRAM=enabled - #platform-url: https://github.com/espressif/arduino-esp32/releases/download/2.0.0-rc1/package_esp32_dev_index.json + arduino-board-fqbn: esp32:esp32:esp32s2:PartitionScheme=min_spiffs,FlashSize=4M,PSRAM=enabled extra-arduino-cli-args: "--warnings none" - #extra-arduino-lib-install-args: "-zmuldefs" - name: Rename Marauder Flipper bin run: | mv ./esp32_marauder/build/esp32.esp32.esp32s2/esp32_marauder.ino.bin ./esp32_marauder/build/esp32.esp32.esp32s2/esp32_marauder.flipper.bin + - name: Build Marauder for Flipper Zero Multi Board + uses: ArminJo/arduino-test-compile@v3.2.0 + with: + sketch-names: esp32_marauder.ino + arduino-board-fqbn: esp32:esp32:esp32s3:PartitionScheme=min_spiffs,FlashSize=8M,PSRAM=enabled + extra-arduino-cli-args: "--warnings none" + + - name: Rename Marauder Multi Board bin + run: | + mv ./esp32_marauder/build/esp32.esp32.esp32s2/esp32_marauder.ino.bin ./esp32_marauder/build/esp32.esp32.esp32s2/esp32_marauder.multiboardS3.bin + - name: Configure TFT_eSPI and configs.h for OG Marauder run: | pwd @@ -145,9 +158,7 @@ jobs: with: sketch-names: esp32_marauder.ino arduino-board-fqbn: esp32:esp32:d32:PartitionScheme=min_spiffs - #platform-url: https://github.com/espressif/arduino-esp32/releases/download/2.0.0-rc1/package_esp32_dev_index.json extra-arduino-cli-args: "--warnings none" - #extra-arduino-lib-install-args: "-zmuldefs" - name: Rename OG Marauder bin run: | @@ -169,9 +180,7 @@ jobs: with: sketch-names: esp32_marauder.ino arduino-board-fqbn: esp32:esp32:d32:PartitionScheme=min_spiffs - #platform-url: https://github.com/espressif/arduino-esp32/releases/download/2.0.0-rc1/package_esp32_dev_index.json extra-arduino-cli-args: "--warnings none" - #extra-arduino-lib-install-args: "-zmuldefs" - name: Rename v6 Marauder bin run: | @@ -193,9 +202,7 @@ jobs: with: sketch-names: esp32_marauder.ino arduino-board-fqbn: esp32:esp32:d32:PartitionScheme=min_spiffs - #platform-url: https://github.com/espressif/arduino-esp32/releases/download/2.0.0-rc1/package_esp32_dev_index.json extra-arduino-cli-args: "--warnings none" - #extra-arduino-lib-install-args: "-zmuldefs" - name: Rename Marauder Kit bin run: | @@ -217,9 +224,7 @@ jobs: with: sketch-names: esp32_marauder.ino arduino-board-fqbn: esp32:esp32:d32:PartitionScheme=min_spiffs - #platform-url: https://github.com/espressif/arduino-esp32/releases/download/2.0.0-rc1/package_esp32_dev_index.json extra-arduino-cli-args: "--warnings none" - #extra-arduino-lib-install-args: "-zmuldefs" - name: Rename Marauder Mini bin run: | @@ -236,6 +241,13 @@ jobs: path: ./esp32_marauder/build/esp32.esp32.esp32s2/esp32_marauder.flipper.bin retention-days: 5 + - name: 'Upload MultiboardS3 Artifact' + uses: actions/upload-artifact@v3 + with: + name: esp32_marauder.multiboardS3.bin + path: ./esp32_marauder/build/esp32.esp32.esp32s3/esp32_marauder.multiboardS3.bin + retention-days: 5 + - name: 'Upload OG Artifact' uses: actions/upload-artifact@v3 with: @@ -286,6 +298,17 @@ jobs: asset_name: esp32_marauder.flipper.bin asset_content_type: application/bin + - name: Upload MultiboardS3 Asset + id: upload-flipper-release-asset + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ steps.create_release.outputs.upload_url }} + asset_path: ./esp32_marauder/build/esp32.esp32.esp32s3/esp32_marauder.mutliboardS3.bin + asset_name: esp32_marauder.mutliboardS3.bin + asset_content_type: application/bin + - name: Upload OG Asset id: upload-og-release-asset uses: actions/upload-release-asset@v1 diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..ce11f59 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,24 @@ +[submodule "esp32_marauder/libraries/lv_arduino"] + path = esp32_marauder/libraries/lv_arduino + url = git@github.com:lvgl/lv_arduino.git +[submodule "esp32_marauder/libraries/LinkedList"] + path = esp32_marauder/libraries/LinkedList + url = git@github.com:ivanseidel/LinkedList.git +[submodule "esp32_marauder/libraries/TFT_eSPI"] + path = esp32_marauder/libraries/TFT_eSPI + url = git@github.com:justcallmekoko/TFT_eSPI.git +[submodule "esp32_marauder/libraries/JPEGDecoder"] + path = esp32_marauder/libraries/JPEGDecoder + url = git@github.com:Bodmer/JPEGDecoder.git +[submodule "esp32_marauder/libraries/NimBLE-Arduino"] + path = esp32_marauder/libraries/NimBLE-Arduino + url = git@github.com:h2zero/NimBLE-Arduino.git +[submodule "esp32_marauder/libraries/Adafruit_NeoPixel"] + path = esp32_marauder/libraries/Adafruit_NeoPixel + url = git@github.com:adafruit/Adafruit_NeoPixel.git +[submodule "esp32_marauder/libraries/ArduinoJson"] + path = esp32_marauder/libraries/ArduinoJson + url = git@github.com:bblanchon/ArduinoJson.git +[submodule "esp32_marauder/libraries/SwitchLib"] + path = esp32_marauder/libraries/SwitchLib + url = git@github.com:justcallmekoko/SwitchLib.git diff --git a/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/3220-10-0300-00.lib b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/3220-10-0300-00.lib new file mode 100644 index 0000000..0500b34 --- /dev/null +++ b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/3220-10-0300-00.lib @@ -0,0 +1,35 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +#SamacSys ECAD Model 3220-10-0300-00 +#/13184465/987070/2.49/10/3/Connector +DEF 3220-10-0300-00 J 0 30 Y Y 1 F N +F0 "J" 750 300 50 H V L CNN +F1 "3220-10-0300-00" 750 200 50 H V L CNN +F2 "322010030000" 750 100 50 H I L CNN +F3 "http://www.cnctech.us/pdfs/3220-XX-0300-00-TR_.PDF" 750 0 50 H I L CNN +F4 "Conn Shrouded Header (4 Sides) HDR 10 POS 1.27mm Solder ST SMD" 750 -100 50 H I L CNN "Description" +F5 "5.45" 750 -200 50 H I L CNN "Height" +F6 "CNC Tech" 750 -300 50 H I L CNN "Manufacturer_Name" +F7 "3220-10-0300-00" 750 -400 50 H I L CNN "Manufacturer_Part_Number" +F8 "" 750 -500 50 H I L CNN "Mouser Part Number" +F9 "" 750 -600 50 H I L CNN "Mouser Price/Stock" +F10 "3220-10-0300-00" 750 -700 50 H I L CNN "Arrow Part Number" +F11 "https://www.arrow.com/en/products/3220-10-0300-00/cnc-tech-llc?region=nac" 750 -800 50 H I L CNN "Arrow Price/Stock" +F12 "" 750 -900 50 H I L CNN "Mouser Testing Part Number" +F13 "" 750 -1000 50 H I L CNN "Mouser Testing Price/Stock" +DRAW +X 1 1 0 0 200 R 50 50 0 0 P +X 2 2 900 0 200 L 50 50 0 0 P +X 3 3 0 -100 200 R 50 50 0 0 P +X 4 4 900 -100 200 L 50 50 0 0 P +X 5 5 0 -200 200 R 50 50 0 0 P +X 6 6 900 -200 200 L 50 50 0 0 P +X 7 7 0 -300 200 R 50 50 0 0 P +X 8 8 900 -300 200 L 50 50 0 0 P +X 9 9 0 -400 200 R 50 50 0 0 P +X 10 10 900 -400 200 L 50 50 0 0 P +P 5 0 1 6 200 100 700 100 700 -500 200 -500 200 100 N +ENDDRAW +ENDDEF +# +#End Library diff --git a/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/322010030000.kicad_mod b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/322010030000.kicad_mod new file mode 100644 index 0000000..c1c46a9 --- /dev/null +++ b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/322010030000.kicad_mod @@ -0,0 +1,47 @@ +(module "322010030000" (layer F.Cu) + (descr "3220-10-0300-00-1") + (tags "Connector") + (attr smd) + (fp_text reference J** (at 0.000 -0) (layer F.SilkS) + (effects (font (size 1.27 1.27) (thickness 0.254))) + ) + (fp_text user %R (at 0.000 -0) (layer F.Fab) + (effects (font (size 1.27 1.27) (thickness 0.254))) + ) + (fp_text value "322010030000" (at 0.000 -0) (layer F.SilkS) hide + (effects (font (size 1.27 1.27) (thickness 0.254))) + ) + (fp_line (start -6.35 -2.5) (end 6.35 -2.5) (layer F.Fab) (width 0.1)) + (fp_line (start 6.35 -2.5) (end 6.35 2.5) (layer F.Fab) (width 0.1)) + (fp_line (start 6.35 2.5) (end -6.35 2.5) (layer F.Fab) (width 0.1)) + (fp_line (start -6.35 2.5) (end -6.35 -2.5) (layer F.Fab) (width 0.1)) + (fp_line (start -7.35 -4.15) (end 7.35 -4.15) (layer F.CrtYd) (width 0.1)) + (fp_line (start 7.35 -4.15) (end 7.35 4.15) (layer F.CrtYd) (width 0.1)) + (fp_line (start 7.35 4.15) (end -7.35 4.15) (layer F.CrtYd) (width 0.1)) + (fp_line (start -7.35 4.15) (end -7.35 -4.15) (layer F.CrtYd) (width 0.1)) + (fp_line (start -3.4 -2.5) (end -6.35 -2.5) (layer F.SilkS) (width 0.2)) + (fp_line (start -6.35 -2.5) (end -6.35 2.5) (layer F.SilkS) (width 0.2)) + (fp_line (start -6.35 2.5) (end -3.4 2.5) (layer F.SilkS) (width 0.2)) + (fp_line (start -2.6 3.6) (end -2.6 3.6) (layer F.SilkS) (width 0.1)) + (fp_line (start -2.5 3.6) (end -2.5 3.6) (layer F.SilkS) (width 0.1)) + (fp_line (start 3.4 -2.5) (end 6.35 -2.5) (layer F.SilkS) (width 0.2)) + (fp_line (start 6.35 -2.5) (end 6.35 2.5) (layer F.SilkS) (width 0.2)) + (fp_line (start 6.35 2.5) (end 3.4 2.5) (layer F.SilkS) (width 0.2)) + (fp_arc (start -2.55 3.6) (end -2.600 3.6) (angle -180) (layer F.SilkS) (width 0.1)) + (fp_arc (start -2.55 3.6) (end -2.500 3.6) (angle -180) (layer F.SilkS) (width 0.1)) + (pad 1 smd rect (at -2.540 1.765 0) (size 0.650 2.770) (layers F.Cu F.Paste F.Mask)) + (pad 2 smd rect (at -2.540 -1.765 0) (size 0.650 2.770) (layers F.Cu F.Paste F.Mask)) + (pad 3 smd rect (at -1.270 1.765 0) (size 0.650 2.770) (layers F.Cu F.Paste F.Mask)) + (pad 4 smd rect (at -1.270 -1.765 0) (size 0.650 2.770) (layers F.Cu F.Paste F.Mask)) + (pad 5 smd rect (at 0.000 1.765 0) (size 0.650 2.770) (layers F.Cu F.Paste F.Mask)) + (pad 6 smd rect (at 0.000 -1.765 0) (size 0.650 2.770) (layers F.Cu F.Paste F.Mask)) + (pad 7 smd rect (at 1.270 1.765 0) (size 0.650 2.770) (layers F.Cu F.Paste F.Mask)) + (pad 8 smd rect (at 1.270 -1.765 0) (size 0.650 2.770) (layers F.Cu F.Paste F.Mask)) + (pad 9 smd rect (at 2.540 1.765 0) (size 0.650 2.770) (layers F.Cu F.Paste F.Mask)) + (pad 10 smd rect (at 2.540 -1.765 0) (size 0.650 2.770) (layers F.Cu F.Paste F.Mask)) + (model 3220-10-0300-00.stp + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) +) diff --git a/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/503398-1892.kicad_mod b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/503398-1892.kicad_mod new file mode 100644 index 0000000..b45b972 --- /dev/null +++ b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/503398-1892.kicad_mod @@ -0,0 +1,51 @@ +(module "503398-1892" (layer F.Cu) + (descr "503398-1892") + (tags "Connector") + (attr smd) + (fp_text reference J** (at 5.996 8.167) (layer F.SilkS) + (effects (font (size 1.27 1.27) (thickness 0.254))) + ) + (fp_text user %R (at 5.996 8.167) (layer F.Fab) + (effects (font (size 1.27 1.27) (thickness 0.254))) + ) + (fp_text value "503398-1892" (at 5.996 8.167) (layer F.SilkS) hide + (effects (font (size 1.27 1.27) (thickness 0.254))) + ) + (fp_line (start 0 0) (end 0 14.05) (layer F.Fab) (width 0.2)) + (fp_line (start 0 14.05) (end 13.1 14.05) (layer F.Fab) (width 0.2)) + (fp_line (start 13.1 14.05) (end 13.1 0) (layer F.Fab) (width 0.2)) + (fp_line (start 0 0) (end 2.849 0) (layer F.Fab) (width 0.2)) + (fp_line (start 13.1 0) (end 12.474 0) (layer F.Fab) (width 0.2)) + (fp_line (start 12.474 0) (end 12.474 2.42) (layer F.Fab) (width 0.2)) + (fp_line (start 12.474 2.42) (end 3.554 2.42) (layer F.Fab) (width 0.2)) + (fp_line (start 2.849 0) (end 3.554 2.42) (layer F.Fab) (width 0.2)) + (fp_line (start 0 0) (end 2.849 0) (layer F.SilkS) (width 0.2)) + (fp_line (start 2.849 0) (end 3.554 2.42) (layer F.SilkS) (width 0.2)) + (fp_line (start 3.554 2.42) (end 12.109 2.42) (layer F.SilkS) (width 0.2)) + (fp_line (start 13.1 3.65) (end 13.1 10.65) (layer F.SilkS) (width 0.2)) + (fp_line (start 0 2.65) (end 0 10.648) (layer F.SilkS) (width 0.2)) + (fp_line (start 13.1 0) (end 12.474 0) (layer F.SilkS) (width 0.2)) + (fp_line (start 7.5 14.05) (end 12.3 14.05) (layer F.SilkS) (width 0.2)) + (fp_line (start 3.15 14.05) (end 5.8 14.05) (layer F.SilkS) (width 0.2)) + (fp_line (start 0.74 14.05) (end 1.6 14.05) (layer F.SilkS) (width 0.2)) + (fp_circle (center 4.116 0.356) (end 4.116 0.41057) (layer F.SilkS) (width 0.2)) + (pad 1 smd rect (at 4.17 1.4 0) (size 0.7 1.1) (layers F.Cu F.Paste F.Mask)) + (pad 2 smd rect (at 5.27 1.4 0) (size 0.7 1.1) (layers F.Cu F.Paste F.Mask)) + (pad 3 smd rect (at 6.37 1.4 0) (size 0.7 1.1) (layers F.Cu F.Paste F.Mask)) + (pad 4 smd rect (at 7.47 1.4 0) (size 0.7 1.1) (layers F.Cu F.Paste F.Mask)) + (pad 5 smd rect (at 8.57 1.4 0) (size 0.7 1.1) (layers F.Cu F.Paste F.Mask)) + (pad 6 smd rect (at 9.67 1.4 0) (size 0.7 1.1) (layers F.Cu F.Paste F.Mask)) + (pad 7 smd rect (at 10.77 1.4 0) (size 0.7 1.1) (layers F.Cu F.Paste F.Mask)) + (pad 8 smd rect (at 11.87 1.4 0) (size 0.7 1.1) (layers F.Cu F.Paste F.Mask)) + (pad 9 smd rect (at 2.38 13.865 0) (size 0.9 0.93) (layers F.Cu F.Paste F.Mask)) + (pad 10 smd rect (at 6.645 13.94 90) (size 0.78 1.05) (layers F.Cu F.Paste F.Mask)) + (pad 11 smd rect (at 13.03 12.665 0) (size 0.7 3.33) (layers F.Cu F.Paste F.Mask)) + (pad 12 smd rect (at 12.95 1.9 0) (size 0.86 2.8) (layers F.Cu F.Paste F.Mask)) + (pad 13 smd rect (at 0.29 1.415 0) (size 1.14 1.83) (layers F.Cu F.Paste F.Mask)) + (pad 14 smd rect (at 0.07 12.665 0) (size 0.7 3.33) (layers F.Cu F.Paste F.Mask)) + (model 503398-1892.stp + (at (xyz 0.25787402325728 -0.31968503486453 0.02362204818275)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) +) diff --git a/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/503398-1892.lib b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/503398-1892.lib new file mode 100644 index 0000000..82d2ac0 --- /dev/null +++ b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/503398-1892.lib @@ -0,0 +1,35 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +#SamacSys ECAD Model 503398-1892 +#/269057/987070/2.49/10/4/Connector +DEF 503398-1892 J 0 30 Y Y 1 F N +F0 "J" 1550 300 50 H V L CNN +F1 "503398-1892" 1550 200 50 H V L CNN +F2 "503398-1892" 1550 100 50 H I L CNN +F3 "http://www.molex.com/webdocs/datasheets/pdf/en-us//5033981892_MEMORY_CARD_SOCKET.pdf" 1550 0 50 H I L CNN +F4 "MicroSD SMT Push-Push 1.28mm height MicroSD SMT Push-Push 1.28mm height" 1550 -100 50 H I L CNN "Description" +F5 "" 1550 -200 50 H I L CNN "Height" +F6 "Molex" 1550 -300 50 H I L CNN "Manufacturer_Name" +F7 "503398-1892" 1550 -400 50 H I L CNN "Manufacturer_Part_Number" +F8 "538-503398-1892" 1550 -500 50 H I L CNN "Mouser Part Number" +F9 "https://www.mouser.co.uk/ProductDetail/Molex/503398-1892?qs=b0v8CoHHvSMxV%252BW12iKaSg%3D%3D" 1550 -600 50 H I L CNN "Mouser Price/Stock" +F10 "" 1550 -700 50 H I L CNN "Arrow Part Number" +F11 "" 1550 -800 50 H I L CNN "Arrow Price/Stock" +F12 "" 1550 -900 50 H I L CNN "Mouser Testing Part Number" +F13 "" 1550 -1000 50 H I L CNN "Mouser Testing Price/Stock" +DRAW +X DAT2 1 0 0 200 R 50 50 0 0 P +X CD/DAT3 2 0 -100 200 R 50 50 0 0 P +X CMD 3 0 -200 200 R 50 50 0 0 P +X VDD 4 0 -300 200 R 50 50 0 0 P +X CLK 5 0 -400 200 R 50 50 0 0 P +X VSS 6 1700 0 200 L 50 50 0 0 P +X DAT0 7 1700 -100 200 L 50 50 0 0 P +X DAT1 8 1700 -200 200 L 50 50 0 0 P +X DETECT_LEVER 9 1700 -300 200 L 50 50 0 0 P +X DETECT_SWITCH 10 1700 -400 200 L 50 50 0 0 P +P 5 0 1 6 200 100 1500 100 1500 -500 200 -500 200 100 N +ENDDRAW +ENDDEF +# +#End Library diff --git a/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/CAPC1005X55N.kicad_mod b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/CAPC1005X55N.kicad_mod new file mode 100644 index 0000000..8e0f217 --- /dev/null +++ b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/CAPC1005X55N.kicad_mod @@ -0,0 +1,29 @@ +(module "CAPC1005X55N" (layer F.Cu) + (descr "CC0402") + (tags "Capacitor") + (attr smd) + (fp_text reference C** (at 0 0) (layer F.SilkS) + (effects (font (size 1.27 1.27) (thickness 0.254))) + ) + (fp_text user %R (at 0 0) (layer F.Fab) + (effects (font (size 1.27 1.27) (thickness 0.254))) + ) + (fp_text value "CAPC1005X55N" (at 0 0) (layer F.SilkS) hide + (effects (font (size 1.27 1.27) (thickness 0.254))) + ) + (fp_line (start -0.91 -0.46) (end 0.91 -0.46) (layer F.CrtYd) (width 0.05)) + (fp_line (start 0.91 -0.46) (end 0.91 0.46) (layer F.CrtYd) (width 0.05)) + (fp_line (start 0.91 0.46) (end -0.91 0.46) (layer F.CrtYd) (width 0.05)) + (fp_line (start -0.91 0.46) (end -0.91 -0.46) (layer F.CrtYd) (width 0.05)) + (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer F.Fab) (width 0.1)) + (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer F.Fab) (width 0.1)) + (pad 1 smd rect (at -0.46 0 0) (size 0.6 0.62) (layers F.Cu F.Paste F.Mask)) + (pad 2 smd rect (at 0.46 0 0) (size 0.6 0.62) (layers F.Cu F.Paste F.Mask)) + (model CC0402KRX7R7BB104.stp + (at (xyz -0.020472440193957 -0.011023622094177 0)) + (scale (xyz 1 1 1)) + (rotate (xyz -90 0 0)) + ) +) diff --git a/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/CAPC1005X60N.kicad_mod b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/CAPC1005X60N.kicad_mod new file mode 100644 index 0000000..4f8f76f --- /dev/null +++ b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/CAPC1005X60N.kicad_mod @@ -0,0 +1,29 @@ +(module "CAPC1005X60N" (layer F.Cu) + (descr "CL05A105KA5NQNC") + (tags "Capacitor") + (attr smd) + (fp_text reference C** (at 0 0) (layer F.SilkS) + (effects (font (size 1.27 1.27) (thickness 0.254))) + ) + (fp_text user %R (at 0 0) (layer F.Fab) + (effects (font (size 1.27 1.27) (thickness 0.254))) + ) + (fp_text value "CAPC1005X60N" (at 0 0) (layer F.SilkS) hide + (effects (font (size 1.27 1.27) (thickness 0.254))) + ) + (fp_line (start -0.92 -0.47) (end 0.92 -0.47) (layer F.CrtYd) (width 0.05)) + (fp_line (start 0.92 -0.47) (end 0.92 0.47) (layer F.CrtYd) (width 0.05)) + (fp_line (start 0.92 0.47) (end -0.92 0.47) (layer F.CrtYd) (width 0.05)) + (fp_line (start -0.92 0.47) (end -0.92 -0.47) (layer F.CrtYd) (width 0.05)) + (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer F.Fab) (width 0.1)) + (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer F.Fab) (width 0.1)) + (pad 1 smd rect (at -0.46 0 0) (size 0.62 0.64) (layers F.Cu F.Paste F.Mask)) + (pad 2 smd rect (at 0.46 0 0) (size 0.62 0.64) (layers F.Cu F.Paste F.Mask)) + (model CL05A105KA5NQNC.stp + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) +) diff --git a/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/CC0402KRX7R7BB104.lib b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/CC0402KRX7R7BB104.lib new file mode 100644 index 0000000..0d24f56 --- /dev/null +++ b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/CC0402KRX7R7BB104.lib @@ -0,0 +1,30 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +#SamacSys ECAD Model CC0402KRX7R7BB104 +#/319043/987070/2.49/2/4/Capacitor +DEF CC0402KRX7R7BB104 C 0 30 Y Y 1 F N +F0 "C" 350 250 50 H V L CNN +F1 "CC0402KRX7R7BB104" 350 150 50 H V L CNN +F2 "CAPC1005X55N" 350 50 50 H I L CNN +F3 "http://www.datasheets360.com/pdf/-5354154806277341459" 350 -50 50 H I L CNN +F4 "Cap 100nF 16V 0402 SMD 10% X7R Phycomp 100nF Multilayer Ceramic Capacitor (MLCC) 16 V dc +/-10% X7R dielectric Standard max op. temp. +125C" 350 -150 50 H I L CNN "Description" +F5 "0.55" 350 -250 50 H I L CNN "Height" +F6 "KEMET" 350 -350 50 H I L CNN "Manufacturer_Name" +F7 "CC0402KRX7R7BB104" 350 -450 50 H I L CNN "Manufacturer_Part_Number" +F8 "603-CC402KRX7R7BB104" 350 -550 50 H I L CNN "Mouser Part Number" +F9 "https://www.mouser.co.uk/ProductDetail/YAGEO/CC0402KRX7R7BB104?qs=AgBp2OyFlx%252BSOyhfyS7hpw%3D%3D" 350 -650 50 H I L CNN "Mouser Price/Stock" +F10 "CC0402KRX7R7BB104" 350 -750 50 H I L CNN "Arrow Part Number" +F11 "https://www.arrow.com/en/products/cc0402krx7r7bb104/yageo?region=nac" 350 -850 50 H I L CNN "Arrow Price/Stock" +F12 "" 350 -950 50 H I L CNN "Mouser Testing Part Number" +F13 "" 350 -1050 50 H I L CNN "Mouser Testing Price/Stock" +DRAW +X ~ 1 0 0 200 R 50 50 0 0 P +X ~ 2 500 0 200 L 50 50 0 0 P +P 2 0 1 6 220 100 220 -100 N +P 2 0 1 6 280 100 280 -100 N +P 2 0 1 6 200 0 220 0 N +P 2 0 1 6 280 0 300 0 N +ENDDRAW +ENDDEF +# +#End Library diff --git a/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/CL05A105KA5NQNC.lib b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/CL05A105KA5NQNC.lib new file mode 100644 index 0000000..6ca9ce5 --- /dev/null +++ b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/CL05A105KA5NQNC.lib @@ -0,0 +1,30 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +#SamacSys ECAD Model CL05A105KA5NQNC +#/1601150/987070/2.49/2/3/Capacitor +DEF CL05A105KA5NQNC C 0 30 Y Y 1 F N +F0 "C" 350 250 50 H V L CNN +F1 "CL05A105KA5NQNC" 350 150 50 H V L CNN +F2 "CAPC1005X60N" 350 50 50 H I L CNN +F3 "https://www.arrow.com/en/products/cl05a105ka5nqnc/samsung-electro-mechanics" 350 -50 50 H I L CNN +F4 "Cap Ceramic 1uF 25V X5R 10% Pad SMD 0402 85C T/R" 350 -150 50 H I L CNN "Description" +F5 "0.6" 350 -250 50 H I L CNN "Height" +F6 "Samsung Electro-Mechanics" 350 -350 50 H I L CNN "Manufacturer_Name" +F7 "CL05A105KA5NQNC" 350 -450 50 H I L CNN "Manufacturer_Part_Number" +F8 "187-CL05A105KA5NQNC" 350 -550 50 H I L CNN "Mouser Part Number" +F9 "https://www.mouser.co.uk/ProductDetail/Samsung-Electro-Mechanics/CL05A105KA5NQNC?qs=X6jEic%2FHinDIeFgZnm60Lw%3D%3D" 350 -650 50 H I L CNN "Mouser Price/Stock" +F10 "CL05A105KA5NQNC" 350 -750 50 H I L CNN "Arrow Part Number" +F11 "https://www.arrow.com/en/products/cl05a105ka5nqnc/samsung-electro-mechanics?region=europe" 350 -850 50 H I L CNN "Arrow Price/Stock" +F12 "" 350 -950 50 H I L CNN "Mouser Testing Part Number" +F13 "" 350 -1050 50 H I L CNN "Mouser Testing Price/Stock" +DRAW +X ~ 1 0 0 200 R 50 50 0 0 P +X ~ 2 500 0 200 L 50 50 0 0 P +P 2 0 1 6 220 100 220 -100 N +P 2 0 1 6 280 100 280 -100 N +P 2 0 1 6 200 0 220 0 N +P 2 0 1 6 280 0 300 0 N +ENDDRAW +ENDDEF +# +#End Library diff --git a/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/CL05B104KO5NNNC.lib b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/CL05B104KO5NNNC.lib new file mode 100644 index 0000000..93d55a9 --- /dev/null +++ b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/CL05B104KO5NNNC.lib @@ -0,0 +1,30 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +#SamacSys ECAD Model CL05B104KO5NNNC +#/563787/987070/2.49/2/3/Capacitor +DEF CL05B104KO5NNNC C 0 30 Y Y 1 F N +F0 "C" 350 250 50 H V L CNN +F1 "CL05B104KO5NNNC" 350 150 50 H V L CNN +F2 "CAPC1005X55N" 350 50 50 H I L CNN +F3 "https://datasheet.datasheetarchive.com/originals/distributors/Datasheets-DGA10/2408147.pdf" 350 -50 50 H I L CNN +F4 "Samsung Electro-Mechanics CL05B104KO5NNNC 100nF Multilayer Ceramic Capacitor MLCC 16V dc +/-10% Tolerance SMD" 350 -150 50 H I L CNN "Description" +F5 "0.55" 350 -250 50 H I L CNN "Height" +F6 "Samsung Electro-Mechanics" 350 -350 50 H I L CNN "Manufacturer_Name" +F7 "CL05B104KO5NNNC" 350 -450 50 H I L CNN "Manufacturer_Part_Number" +F8 "187-CL05B104KO5NNNC" 350 -550 50 H I L CNN "Mouser Part Number" +F9 "https://www.mouser.co.uk/ProductDetail/Samsung-Electro-Mechanics/CL05B104KO5NNNC?qs=hqM3L16%252BxlfT2SKOuAUq6Q%3D%3D" 350 -650 50 H I L CNN "Mouser Price/Stock" +F10 "CL05B104KO5NNNC" 350 -750 50 H I L CNN "Arrow Part Number" +F11 "https://www.arrow.com/en/products/cl05b104ko5nnnc/samsung-electro-mechanics?region=europe" 350 -850 50 H I L CNN "Arrow Price/Stock" +F12 "" 350 -950 50 H I L CNN "Mouser Testing Part Number" +F13 "" 350 -1050 50 H I L CNN "Mouser Testing Price/Stock" +DRAW +X ~ 1 0 0 200 R 50 50 0 0 P +X ~ 2 500 0 200 L 50 50 0 0 P +P 2 0 1 6 220 100 220 -100 N +P 2 0 1 6 280 100 280 -100 N +P 2 0 1 6 200 0 220 0 N +P 2 0 1 6 280 0 300 0 N +ENDDRAW +ENDDEF +# +#End Library diff --git a/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/DZ254S-11-10-48.lib b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/DZ254S-11-10-48.lib new file mode 100644 index 0000000..7b4a5d4 --- /dev/null +++ b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/DZ254S-11-10-48.lib @@ -0,0 +1,35 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +#SamacSys ECAD Model DZ254S-11-10-48 +#/17126707/987070/2.49/10/0/Connector +DEF DZ254S-11-10-48 J 0 30 Y Y 1 F N +F0 "J" 750 300 50 H V L CNN +F1 "DZ254S-11-10-48" 750 200 50 H V L CNN +F2 "HUSRSP10W66P254_2500X250X850P" 750 100 50 H I L CNN +F3 "https://datasheet.lcsc.com/lcsc/2209141730_DEALON-DZ254S-11-10-48_C5160793.pdf" 750 0 50 H I L CNN +F4 "Brick nogging Square Pins 1 10 2.54mm 1x10P SMD,P=2.54mm() Pin Headers ROHS" 750 -100 50 H I L CNN "Description" +F5 "" 750 -200 50 H I L CNN "Height" +F6 "DEALON" 750 -300 50 H I L CNN "Manufacturer_Name" +F7 "DZ254S-11-10-48" 750 -400 50 H I L CNN "Manufacturer_Part_Number" +F8 "" 750 -500 50 H I L CNN "Mouser Part Number" +F9 "" 750 -600 50 H I L CNN "Mouser Price/Stock" +F10 "" 750 -700 50 H I L CNN "Arrow Part Number" +F11 "" 750 -800 50 H I L CNN "Arrow Price/Stock" +F12 "" 750 -900 50 H I L CNN "Mouser Testing Part Number" +F13 "" 750 -1000 50 H I L CNN "Mouser Testing Price/Stock" +DRAW +X 1 1 0 0 200 R 50 50 0 0 P +X 2 2 0 -100 200 R 50 50 0 0 P +X 3 3 0 -200 200 R 50 50 0 0 P +X 4 4 0 -300 200 R 50 50 0 0 P +X 5 5 0 -400 200 R 50 50 0 0 P +X 6 6 900 0 200 L 50 50 0 0 P +X 7 7 900 -100 200 L 50 50 0 0 P +X 8 8 900 -200 200 L 50 50 0 0 P +X 9 9 900 -300 200 L 50 50 0 0 P +X 10 10 900 -400 200 L 50 50 0 0 P +P 5 0 1 6 200 100 700 100 700 -500 200 -500 200 100 N +ENDDRAW +ENDDEF +# +#End Library diff --git a/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/ESP32-WROOM-32E-N4.lib b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/ESP32-WROOM-32E-N4.lib new file mode 100644 index 0000000..9af2deb --- /dev/null +++ b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/ESP32-WROOM-32E-N4.lib @@ -0,0 +1,72 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +#SamacSys ECAD Model ESP32-WROOM-32E-N4 +#/15884694/987070/2.49/47/4/Integrated Circuit +DEF ESP32-WROOM-32E-N4 IC 0 30 Y Y 1 F N +F0 "IC" 1350 300 50 H V L CNN +F1 "ESP32-WROOM-32E-N4" 1350 200 50 H V L CNN +F2 "ESP32WROOM32EN4" 1350 100 50 H I L CNN +F3 "https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32e_esp32-wroom-32ue_datasheet_en.pdf" 1350 0 50 H I L CNN +F4 "RX TXRX MOD WIFI TRACE ANT SMD" 1350 -100 50 H I L CNN "Description" +F5 "3.25" 1350 -200 50 H I L CNN "Height" +F6 "Espressif Systems" 1350 -300 50 H I L CNN "Manufacturer_Name" +F7 "ESP32-WROOM-32E-N4" 1350 -400 50 H I L CNN "Manufacturer_Part_Number" +F8 "356-ESP32WRM32E132PH" 1350 -500 50 H I L CNN "Mouser Part Number" +F9 "https://www.mouser.co.uk/ProductDetail/Espressif-Systems/ESP32-WROOM-32E-N4?qs=Li%252BoUPsLEnsPzTWsi%252BRMgQ%3D%3D" 1350 -600 50 H I L CNN "Mouser Price/Stock" +F10 "" 1350 -700 50 H I L CNN "Arrow Part Number" +F11 "" 1350 -800 50 H I L CNN "Arrow Price/Stock" +F12 "" 1350 -900 50 H I L CNN "Mouser Testing Part Number" +F13 "" 1350 -1000 50 H I L CNN "Mouser Testing Price/Stock" +DRAW +X GND_1 1 0 0 200 R 50 50 0 0 P +X 3V3 2 0 -100 200 R 50 50 0 0 P +X EN 3 0 -200 200 R 50 50 0 0 P +X SENSOR_VP 4 0 -300 200 R 50 50 0 0 P +X SENSOR_VN 5 0 -400 200 R 50 50 0 0 P +X IO34 6 0 -500 200 R 50 50 0 0 P +X IO35 7 0 -600 200 R 50 50 0 0 P +X IO32 8 0 -700 200 R 50 50 0 0 P +X IO33 9 0 -800 200 R 50 50 0 0 P +X IO25 10 0 -900 200 R 50 50 0 0 P +X IO26 11 0 -1000 200 R 50 50 0 0 P +X IO27 12 0 -1100 200 R 50 50 0 0 P +X IO14 13 0 -1200 200 R 50 50 0 0 P +X IO12 14 0 -1300 200 R 50 50 0 0 P +X GND_2 15 0 -1400 200 R 50 50 0 0 P +X IO13 16 0 -1500 200 R 50 50 0 0 P +X NC_1 17 0 -1600 200 R 50 50 0 0 P +X NC_2 18 0 -1700 200 R 50 50 0 0 P +X NC_3 19 0 -1800 200 R 50 50 0 0 P +X NC_4 20 0 -1900 200 R 50 50 0 0 P +X NC_5 21 0 -2000 200 R 50 50 0 0 P +X NC_6 22 0 -2100 200 R 50 50 0 0 P +X IO15 23 0 -2200 200 R 50 50 0 0 P +X IO2 24 0 -2300 200 R 50 50 0 0 P +X IO0 25 1500 0 200 L 50 50 0 0 P +X IO4 26 1500 -100 200 L 50 50 0 0 P +X IO16 27 1500 -200 200 L 50 50 0 0 P +X IO17 28 1500 -300 200 L 50 50 0 0 P +X IO5 29 1500 -400 200 L 50 50 0 0 P +X IO18 30 1500 -500 200 L 50 50 0 0 P +X IO19 31 1500 -600 200 L 50 50 0 0 P +X NC_7 32 1500 -700 200 L 50 50 0 0 P +X IO21 33 1500 -800 200 L 50 50 0 0 P +X RXD0 34 1500 -900 200 L 50 50 0 0 P +X TXD0 35 1500 -1000 200 L 50 50 0 0 P +X IO22 36 1500 -1100 200 L 50 50 0 0 P +X IO23 37 1500 -1200 200 L 50 50 0 0 P +X GND_3 38 1500 -1300 200 L 50 50 0 0 P +X GND_4 39 1500 -1400 200 L 50 50 0 0 P +X GND_5 40 1500 -1500 200 L 50 50 0 0 P +X GND_6 41 1500 -1600 200 L 50 50 0 0 P +X GND_7 42 1500 -1700 200 L 50 50 0 0 P +X GND_8 43 1500 -1800 200 L 50 50 0 0 P +X GND_9 44 1500 -1900 200 L 50 50 0 0 P +X GND_10 45 1500 -2000 200 L 50 50 0 0 P +X GND_11 46 1500 -2100 200 L 50 50 0 0 P +X GND_12 47 1500 -2200 200 L 50 50 0 0 P +P 5 0 1 6 200 100 1300 100 1300 -2400 200 -2400 200 100 N +ENDDRAW +ENDDEF +# +#End Library diff --git a/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/ESP32WROOM32EN4.kicad_mod b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/ESP32WROOM32EN4.kicad_mod new file mode 100644 index 0000000..eeee706 --- /dev/null +++ b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/ESP32WROOM32EN4.kicad_mod @@ -0,0 +1,85 @@ +(module "ESP32WROOM32EN4" (layer F.Cu) + (descr "ESP32-WROOM-32E-N4-1") + (tags "Integrated Circuit") + (attr smd) + (fp_text reference IC** (at 0.000 0.25) (layer F.SilkS) + (effects (font (size 1.27 1.27) (thickness 0.254))) + ) + (fp_text user %R (at 0.000 0.25) (layer F.Fab) + (effects (font (size 1.27 1.27) (thickness 0.254))) + ) + (fp_text value "ESP32WROOM32EN4" (at 0.000 0.25) (layer F.SilkS) hide + (effects (font (size 1.27 1.27) (thickness 0.254))) + ) + (fp_line (start -9 12.75) (end 9 12.75) (layer F.Fab) (width 0.1)) + (fp_line (start 9 12.75) (end 9 -12.75) (layer F.Fab) (width 0.1)) + (fp_line (start 9 -12.75) (end -9 -12.75) (layer F.Fab) (width 0.1)) + (fp_line (start -9 -12.75) (end -9 12.75) (layer F.Fab) (width 0.1)) + (fp_line (start -10.5 -13.75) (end 10.5 -13.75) (layer F.CrtYd) (width 0.1)) + (fp_line (start 10.5 -13.75) (end 10.5 14.25) (layer F.CrtYd) (width 0.1)) + (fp_line (start 10.5 14.25) (end -10.5 14.25) (layer F.CrtYd) (width 0.1)) + (fp_line (start -10.5 14.25) (end -10.5 -13.75) (layer F.CrtYd) (width 0.1)) + (fp_line (start -9 -6) (end -9 -12.75) (layer F.SilkS) (width 0.2)) + (fp_line (start -9 -12.75) (end 9 -12.75) (layer F.SilkS) (width 0.2)) + (fp_line (start 9 -12.75) (end 9 -6) (layer F.SilkS) (width 0.2)) + (fp_line (start 9 12) (end 9 12.75) (layer F.SilkS) (width 0.2)) + (fp_line (start 9 12.75) (end 6.5 12.75) (layer F.SilkS) (width 0.2)) + (fp_line (start -6.5 12.75) (end -9 12.75) (layer F.SilkS) (width 0.2)) + (fp_line (start -9 12.75) (end -9 12) (layer F.SilkS) (width 0.2)) + (fp_line (start -10.1 -5.26) (end -10.1 -5.26) (layer F.SilkS) (width 0.1)) + (fp_line (start -10 -5.26) (end -10 -5.26) (layer F.SilkS) (width 0.1)) + (fp_arc (start -10.05 -5.26) (end -10.100 -5.26) (angle -180) (layer F.SilkS) (width 0.1)) + (fp_arc (start -10.05 -5.26) (end -10.000 -5.26) (angle -180) (layer F.SilkS) (width 0.1)) + (pad 1 smd rect (at -8.750 -5.26 90) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 2 smd rect (at -8.750 -3.99 90) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 3 smd rect (at -8.750 -2.72 90) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 4 smd rect (at -8.750 -1.45 90) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 5 smd rect (at -8.750 -0.18 90) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 6 smd rect (at -8.750 1.09 90) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 7 smd rect (at -8.750 2.36 90) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 8 smd rect (at -8.750 3.63 90) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 9 smd rect (at -8.750 4.9 90) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 10 smd rect (at -8.750 6.17 90) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 11 smd rect (at -8.750 7.44 90) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 12 smd rect (at -8.750 8.71 90) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 13 smd rect (at -8.750 9.98 90) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 14 smd rect (at -8.750 11.25 90) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 15 smd rect (at -5.715 12.5 0) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 16 smd rect (at -4.445 12.5 0) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 17 smd rect (at -3.175 12.5 0) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 18 smd rect (at -1.905 12.5 0) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 19 smd rect (at -0.635 12.5 0) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 20 smd rect (at 0.635 12.5 0) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 21 smd rect (at 1.905 12.5 0) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 22 smd rect (at 3.175 12.5 0) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 23 smd rect (at 4.445 12.5 0) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 24 smd rect (at 5.715 12.5 0) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 25 smd rect (at 8.750 11.25 90) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 26 smd rect (at 8.750 9.98 90) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 27 smd rect (at 8.750 8.71 90) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 28 smd rect (at 8.750 7.44 90) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 29 smd rect (at 8.750 6.17 90) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 30 smd rect (at 8.750 4.9 90) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 31 smd rect (at 8.750 3.63 90) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 32 smd rect (at 8.750 2.36 90) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 33 smd rect (at 8.750 1.09 90) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 34 smd rect (at 8.750 -0.18 90) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 35 smd rect (at 8.750 -1.45 90) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 36 smd rect (at 8.750 -2.72 90) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 37 smd rect (at 8.750 -3.99 90) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 38 smd rect (at 8.750 -5.26 90) (size 0.900 1.500) (layers F.Cu F.Paste F.Mask)) + (pad 39 smd rect (at -2.900 1.06 90) (size 0.900 0.900) (layers F.Cu F.Paste F.Mask)) + (pad 40 smd rect (at -2.900 2.46 90) (size 0.900 0.900) (layers F.Cu F.Paste F.Mask)) + (pad 41 smd rect (at -2.900 3.86 90) (size 0.900 0.900) (layers F.Cu F.Paste F.Mask)) + (pad 42 smd rect (at -1.500 3.86 90) (size 0.900 0.900) (layers F.Cu F.Paste F.Mask)) + (pad 43 smd rect (at -0.100 3.86 90) (size 0.900 0.900) (layers F.Cu F.Paste F.Mask)) + (pad 44 smd rect (at -0.100 2.46 90) (size 0.900 0.900) (layers F.Cu F.Paste F.Mask)) + (pad 45 smd rect (at -0.100 1.06 90) (size 0.900 0.900) (layers F.Cu F.Paste F.Mask)) + (pad 46 smd rect (at -1.500 1.06 90) (size 0.900 0.900) (layers F.Cu F.Paste F.Mask)) + (pad 47 smd rect (at -1.500 2.46 90) (size 0.900 0.900) (layers F.Cu F.Paste F.Mask)) + (model ESP32-WROOM-32E-N4.stp + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) +) diff --git a/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/HUSRSP10W66P254_2500X250X850P.kicad_mod b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/HUSRSP10W66P254_2500X250X850P.kicad_mod new file mode 100644 index 0000000..b3e71fb --- /dev/null +++ b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/HUSRSP10W66P254_2500X250X850P.kicad_mod @@ -0,0 +1,39 @@ +(module "HUSRSP10W66P254_2500X250X850P" (layer F.Cu) + (descr "DZ254S-11-10-48") + (tags "Connector") + (attr smd) + (fp_text reference J** (at 0 0) (layer F.SilkS) + (effects (font (size 1.27 1.27) (thickness 0.254))) + ) + (fp_text user %R (at 0 0) (layer F.Fab) + (effects (font (size 1.27 1.27) (thickness 0.254))) + ) + (fp_text value "HUSRSP10W66P254_2500X250X850P" (at 0 0) (layer F.SilkS) hide + (effects (font (size 1.27 1.27) (thickness 0.254))) + ) + (fp_line (start -12.75 -4.01) (end 12.75 -4.01) (layer F.CrtYd) (width 0.05)) + (fp_line (start 12.75 -4.01) (end 12.75 4.01) (layer F.CrtYd) (width 0.05)) + (fp_line (start 12.75 4.01) (end -12.75 4.01) (layer F.CrtYd) (width 0.05)) + (fp_line (start -12.75 4.01) (end -12.75 -4.01) (layer F.CrtYd) (width 0.05)) + (fp_line (start -12.5 -1.25) (end 12.5 -1.25) (layer F.Fab) (width 0.1)) + (fp_line (start 12.5 -1.25) (end 12.5 1.25) (layer F.Fab) (width 0.1)) + (fp_line (start 12.5 1.25) (end -12.5 1.25) (layer F.Fab) (width 0.1)) + (fp_line (start -12.5 1.25) (end -12.5 -1.25) (layer F.Fab) (width 0.1)) + (fp_line (start -12.5 1.25) (end -12.5 -3.76) (layer F.SilkS) (width 0.2)) + (fp_line (start 12.5 1.25) (end 12.5 -1.25) (layer F.SilkS) (width 0.2)) + (pad 1 smd rect (at -11.43 -1.04 0) (size 0.96 5.44) (layers F.Cu F.Paste F.Mask)) + (pad 2 smd rect (at -8.89 1.04 0) (size 0.96 5.44) (layers F.Cu F.Paste F.Mask)) + (pad 3 smd rect (at -6.35 -1.04 0) (size 0.96 5.44) (layers F.Cu F.Paste F.Mask)) + (pad 4 smd rect (at -3.81 1.04 0) (size 0.96 5.44) (layers F.Cu F.Paste F.Mask)) + (pad 5 smd rect (at -1.27 -1.04 0) (size 0.96 5.44) (layers F.Cu F.Paste F.Mask)) + (pad 6 smd rect (at 1.27 1.04 0) (size 0.96 5.44) (layers F.Cu F.Paste F.Mask)) + (pad 7 smd rect (at 3.81 -1.04 0) (size 0.96 5.44) (layers F.Cu F.Paste F.Mask)) + (pad 8 smd rect (at 6.35 1.04 0) (size 0.96 5.44) (layers F.Cu F.Paste F.Mask)) + (pad 9 smd rect (at 8.89 -1.04 0) (size 0.96 5.44) (layers F.Cu F.Paste F.Mask)) + (pad 10 smd rect (at 11.43 1.04 0) (size 0.96 5.44) (layers F.Cu F.Paste F.Mask)) + (model DZ254S-11-10-48.stp + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) +) diff --git a/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/HUSRSP8W66P254_2000X250X850P.kicad_mod b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/HUSRSP8W66P254_2000X250X850P.kicad_mod new file mode 100644 index 0000000..f2a9ca7 --- /dev/null +++ b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/HUSRSP8W66P254_2000X250X850P.kicad_mod @@ -0,0 +1,37 @@ +(module "HUSRSP8W66P254_2000X250X850P" (layer F.Cu) + (descr "X6511WVS-08H-C60D48R2") + (tags "Connector") + (attr smd) + (fp_text reference J** (at 0 0) (layer F.SilkS) + (effects (font (size 1.27 1.27) (thickness 0.254))) + ) + (fp_text user %R (at 0 0) (layer F.Fab) + (effects (font (size 1.27 1.27) (thickness 0.254))) + ) + (fp_text value "HUSRSP8W66P254_2000X250X850P" (at 0 0) (layer F.SilkS) hide + (effects (font (size 1.27 1.27) (thickness 0.254))) + ) + (fp_line (start -10.25 -4.01) (end 10.25 -4.01) (layer F.CrtYd) (width 0.05)) + (fp_line (start 10.25 -4.01) (end 10.25 4.01) (layer F.CrtYd) (width 0.05)) + (fp_line (start 10.25 4.01) (end -10.25 4.01) (layer F.CrtYd) (width 0.05)) + (fp_line (start -10.25 4.01) (end -10.25 -4.01) (layer F.CrtYd) (width 0.05)) + (fp_line (start -10 -1.25) (end 10 -1.25) (layer F.Fab) (width 0.1)) + (fp_line (start 10 -1.25) (end 10 1.25) (layer F.Fab) (width 0.1)) + (fp_line (start 10 1.25) (end -10 1.25) (layer F.Fab) (width 0.1)) + (fp_line (start -10 1.25) (end -10 -1.25) (layer F.Fab) (width 0.1)) + (fp_line (start -10 1.25) (end -10 -3.76) (layer F.SilkS) (width 0.2)) + (fp_line (start 10 1.25) (end 10 -1.25) (layer F.SilkS) (width 0.2)) + (pad 1 smd rect (at -8.89 -1.04 0) (size 0.96 5.44) (layers F.Cu F.Paste F.Mask)) + (pad 2 smd rect (at -6.35 1.04 0) (size 0.96 5.44) (layers F.Cu F.Paste F.Mask)) + (pad 3 smd rect (at -3.81 -1.04 0) (size 0.96 5.44) (layers F.Cu F.Paste F.Mask)) + (pad 4 smd rect (at -1.27 1.04 0) (size 0.96 5.44) (layers F.Cu F.Paste F.Mask)) + (pad 5 smd rect (at 1.27 -1.04 0) (size 0.96 5.44) (layers F.Cu F.Paste F.Mask)) + (pad 6 smd rect (at 3.81 1.04 0) (size 0.96 5.44) (layers F.Cu F.Paste F.Mask)) + (pad 7 smd rect (at 6.35 -1.04 0) (size 0.96 5.44) (layers F.Cu F.Paste F.Mask)) + (pad 8 smd rect (at 8.89 1.04 0) (size 0.96 5.44) (layers F.Cu F.Paste F.Mask)) + (model X6511WVS-08H-C60D48R2.stp + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) +) diff --git a/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/RC0402FR-0710KL.lib b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/RC0402FR-0710KL.lib new file mode 100644 index 0000000..da445f7 --- /dev/null +++ b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/RC0402FR-0710KL.lib @@ -0,0 +1,27 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +#SamacSys ECAD Model RC0402FR-0710KL +#/541505/987070/2.49/2/3/Resistor +DEF RC0402FR-0710KL R 0 30 Y Y 1 F N +F0 "R" 550 250 50 H V L CNN +F1 "RC0402FR-0710KL" 550 150 50 H V L CNN +F2 "RESC1005X40N" 550 50 50 H I L CNN +F3 "https://datasheet.datasheetarchive.com/originals/distributors/Datasheets_SAMA/902f9e387b938f871d31120f5fc1d65e.pdf" 550 -50 50 H I L CNN +F4 "YAGEO (PHYCOMP) - RC0402FR-0710KL. - RES, THICK FILM, 10K, 1%, 0.0625W, 0402" 550 -150 50 H I L CNN "Description" +F5 "0.4" 550 -250 50 H I L CNN "Height" +F6 "KEMET" 550 -350 50 H I L CNN "Manufacturer_Name" +F7 "RC0402FR-0710KL" 550 -450 50 H I L CNN "Manufacturer_Part_Number" +F8 "603-RC0402FR-0710KL" 550 -550 50 H I L CNN "Mouser Part Number" +F9 "https://www.mouser.co.uk/ProductDetail/YAGEO/RC0402FR-0710KL?qs=I1mnnYJTTsxUoNwrUsQExA%3D%3D" 550 -650 50 H I L CNN "Mouser Price/Stock" +F10 "RC0402FR-0710KL" 550 -750 50 H I L CNN "Arrow Part Number" +F11 "https://www.arrow.com/en/products/rc0402fr-0710kl/yageo?region=europe" 550 -850 50 H I L CNN "Arrow Price/Stock" +F12 "" 550 -950 50 H I L CNN "Mouser Testing Part Number" +F13 "" 550 -1050 50 H I L CNN "Mouser Testing Price/Stock" +DRAW +X ~ 1 0 0 200 R 50 50 0 0 P +X ~ 2 700 0 200 L 50 50 0 0 P +P 5 0 1 6 200 50 500 50 500 -50 200 -50 200 50 N +ENDDRAW +ENDDEF +# +#End Library diff --git a/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/RC0402FR-07220RL.lib b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/RC0402FR-07220RL.lib new file mode 100644 index 0000000..3cc861d --- /dev/null +++ b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/RC0402FR-07220RL.lib @@ -0,0 +1,27 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +#SamacSys ECAD Model RC0402FR-07220RL +#/349197/987070/2.49/2/5/Resistor +DEF RC0402FR-07220RL R 0 30 Y Y 1 F N +F0 "R" 550 250 50 H V L CNN +F1 "RC0402FR-07220RL" 550 150 50 H V L CNN +F2 "RESC1005X40N" 550 50 50 H I L CNN +F3 "https://datasheet.datasheetarchive.com/originals/distributors/Datasheets_SAMA/902f9e387b938f871d31120f5fc1d65e.pdf" 550 -50 50 H I L CNN +F4 "YAGEO (PHYCOMP) - RC0402FR-07220RL - RES, THICK FILM, 220R, 1%, 0.063W, 0402" 550 -150 50 H I L CNN "Description" +F5 "0.4" 550 -250 50 H I L CNN "Height" +F6 "KEMET" 550 -350 50 H I L CNN "Manufacturer_Name" +F7 "RC0402FR-07220RL" 550 -450 50 H I L CNN "Manufacturer_Part_Number" +F8 "603-RC0402FR-07220RL" 550 -550 50 H I L CNN "Mouser Part Number" +F9 "https://www.mouser.co.uk/ProductDetail/YAGEO/RC0402FR-07220RL?qs=UOUeRUa%252B8Wkw9iNOZEwgHw%3D%3D" 550 -650 50 H I L CNN "Mouser Price/Stock" +F10 "RC0402FR-07220RL" 550 -750 50 H I L CNN "Arrow Part Number" +F11 "https://www.arrow.com/en/products/rc0402fr-07220rl/yageo?region=nac" 550 -850 50 H I L CNN "Arrow Price/Stock" +F12 "" 550 -950 50 H I L CNN "Mouser Testing Part Number" +F13 "" 550 -1050 50 H I L CNN "Mouser Testing Price/Stock" +DRAW +X ~ 1 0 0 200 R 50 50 0 0 P +X ~ 2 700 0 200 L 50 50 0 0 P +P 5 0 1 6 200 50 500 50 500 -50 200 -50 200 50 N +ENDDRAW +ENDDEF +# +#End Library diff --git a/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/RESC1005X40N.kicad_mod b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/RESC1005X40N.kicad_mod new file mode 100644 index 0000000..653ab90 --- /dev/null +++ b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/RESC1005X40N.kicad_mod @@ -0,0 +1,29 @@ +(module "RESC1005X40N" (layer F.Cu) + (descr "RC0402") + (tags "Resistor") + (attr smd) + (fp_text reference R** (at 0 0) (layer F.SilkS) + (effects (font (size 1.27 1.27) (thickness 0.254))) + ) + (fp_text user %R (at 0 0) (layer F.Fab) + (effects (font (size 1.27 1.27) (thickness 0.254))) + ) + (fp_text value "RESC1005X40N" (at 0 0) (layer F.SilkS) hide + (effects (font (size 1.27 1.27) (thickness 0.254))) + ) + (fp_line (start -1.175 -0.55) (end 1.175 -0.55) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.175 -0.55) (end 1.175 0.55) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.175 0.55) (end -1.175 0.55) (layer F.CrtYd) (width 0.05)) + (fp_line (start -1.175 0.55) (end -1.175 -0.55) (layer F.CrtYd) (width 0.05)) + (fp_line (start -0.5 -0.25) (end 0.5 -0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 0.5 -0.25) (end 0.5 0.25) (layer F.Fab) (width 0.1)) + (fp_line (start 0.5 0.25) (end -0.5 0.25) (layer F.Fab) (width 0.1)) + (fp_line (start -0.5 0.25) (end -0.5 -0.25) (layer F.Fab) (width 0.1)) + (pad 1 smd rect (at -0.55 0 90) (size 0.6 0.75) (layers F.Cu F.Paste F.Mask)) + (pad 2 smd rect (at 0.55 0 90) (size 0.6 0.75) (layers F.Cu F.Paste F.Mask)) + (model RC0402FR-07220RL.stp + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) +) diff --git a/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/SKRPABE010.kicad_mod b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/SKRPABE010.kicad_mod new file mode 100644 index 0000000..7069537 --- /dev/null +++ b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/SKRPABE010.kicad_mod @@ -0,0 +1,40 @@ +(module "SKRPABE010" (layer F.Cu) + (descr "SKRPABE010-1") + (tags "Switch") + (attr smd) + (fp_text reference S** (at 0.000 -0) (layer F.SilkS) + (effects (font (size 1.27 1.27) (thickness 0.254))) + ) + (fp_text user %R (at 0.000 -0) (layer F.Fab) + (effects (font (size 1.27 1.27) (thickness 0.254))) + ) + (fp_text value "SKRPABE010" (at 0.000 -0) (layer F.SilkS) hide + (effects (font (size 1.27 1.27) (thickness 0.254))) + ) + (fp_line (start -2.1 -1.6) (end 2.1 -1.6) (layer F.Fab) (width 0.2)) + (fp_line (start 2.1 -1.6) (end 2.1 1.6) (layer F.Fab) (width 0.2)) + (fp_line (start 2.1 1.6) (end -2.1 1.6) (layer F.Fab) (width 0.2)) + (fp_line (start -2.1 1.6) (end -2.1 -1.6) (layer F.Fab) (width 0.2)) + (fp_line (start -3.6 -2.6) (end 3.6 -2.6) (layer F.CrtYd) (width 0.1)) + (fp_line (start 3.6 -2.6) (end 3.6 2.6) (layer F.CrtYd) (width 0.1)) + (fp_line (start 3.6 2.6) (end -3.6 2.6) (layer F.CrtYd) (width 0.1)) + (fp_line (start -3.6 2.6) (end -3.6 -2.6) (layer F.CrtYd) (width 0.1)) + (fp_line (start -1.2 -1.6) (end 1.2 -1.6) (layer F.SilkS) (width 0.1)) + (fp_line (start -1.2 1.6) (end 1.2 1.6) (layer F.SilkS) (width 0.1)) + (fp_line (start -2.1 -0.4) (end -2.1 0.4) (layer F.SilkS) (width 0.1)) + (fp_line (start 2.1 -0.4) (end 2.1 0.4) (layer F.SilkS) (width 0.1)) + (fp_line (start -3 -1) (end -3 -1) (layer F.SilkS) (width 0.1)) + (fp_line (start -3 -1) (end -3 -1) (layer F.SilkS) (width 0.2)) + (fp_line (start -3.2 -1) (end -3.2 -1) (layer F.SilkS) (width 0.2)) + (fp_arc (start -3.1 -1) (end -3.000 -1) (angle -180) (layer F.SilkS) (width 0.2)) + (fp_arc (start -3.1 -1) (end -3.200 -1) (angle -180) (layer F.SilkS) (width 0.2)) + (pad 1 smd rect (at -2.075 -1.075 90) (size 0.650 1.050) (layers F.Cu F.Paste F.Mask)) + (pad 2 smd rect (at 2.075 -1.075 90) (size 0.650 1.050) (layers F.Cu F.Paste F.Mask)) + (pad 3 smd rect (at -2.075 1.075 90) (size 0.650 1.050) (layers F.Cu F.Paste F.Mask)) + (pad 4 smd rect (at 2.075 1.075 90) (size 0.650 1.050) (layers F.Cu F.Paste F.Mask)) + (model SKRPABE010.stp + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) +) diff --git a/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/SKRPABE010.lib b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/SKRPABE010.lib new file mode 100644 index 0000000..e3a0309 --- /dev/null +++ b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/SKRPABE010.lib @@ -0,0 +1,29 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +#SamacSys ECAD Model SKRPABE010 +#/13010270/987070/2.49/4/0/Switch +DEF SKRPABE010 S 0 30 Y Y 1 F N +F0 "S" 950 300 50 H V L CNN +F1 "SKRPABE010" 950 200 50 H V L CNN +F2 "SKRPABE010" 950 100 50 H I L CNN +F3 "https://datasheet.lcsc.com/szlcsc/ALPS-Electric-SKRPABE010_C115360.pdf" 950 0 50 H I L CNN +F4 "Switch Tactile N.O. SPST Button J-Bend 0.05A 16VDC 1.57N SMD Automotive T/R" 950 -100 50 H I L CNN "Description" +F5 "2.5" 950 -200 50 H I L CNN "Height" +F6 "ALPS Electric" 950 -300 50 H I L CNN "Manufacturer_Name" +F7 "SKRPABE010" 950 -400 50 H I L CNN "Manufacturer_Part_Number" +F8 "688-SKRPAB" 950 -500 50 H I L CNN "Mouser Part Number" +F9 "https://www.mouser.co.uk/ProductDetail/Alps-Alpine/SKRPABE010?qs=m0BA540hBPe1GpcSf%2FZ5Yw%3D%3D" 950 -600 50 H I L CNN "Mouser Price/Stock" +F10 "" 950 -700 50 H I L CNN "Arrow Part Number" +F11 "" 950 -800 50 H I L CNN "Arrow Price/Stock" +F12 "" 950 -900 50 H I L CNN "Mouser Testing Part Number" +F13 "" 950 -1000 50 H I L CNN "Mouser Testing Price/Stock" +DRAW +X NO_1 1 0 0 200 R 50 50 0 0 P +X NO_2 2 1100 0 200 L 50 50 0 0 P +X NO_3 3 0 -100 200 R 50 50 0 0 P +X NO_4 4 1100 -100 200 L 50 50 0 0 P +P 5 0 1 6 200 100 900 100 900 -200 200 -200 200 100 N +ENDDRAW +ENDDEF +# +#End Library diff --git a/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/WS2812B-2020.lib b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/WS2812B-2020.lib new file mode 100644 index 0000000..e09ab12 --- /dev/null +++ b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/WS2812B-2020.lib @@ -0,0 +1,29 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +#SamacSys ECAD Model WS2812B-2020 +#/13449884/987070/2.49/4/4/LED (Multiple) +DEF WS2812B-2020 LED 0 30 Y Y 1 F N +F0 "LED" 850 300 50 H V L CNN +F1 "WS2812B-2020" 850 200 50 H V L CNN +F2 "WS2812B2020" 850 100 50 H I L CNN +F3 "https://www.alldatasheet.com/datasheet-pdf/pdf/1134522/WORLDSEMI/WS2812B-2020.html" 850 0 50 H I L CNN +F4 "LED; SMD; 2020; RGB; 2x2x0.84mm; 3.75.3V; Lens: transparent; 2kHz" 850 -100 50 H I L CNN "Description" +F5 "0.84" 850 -200 50 H I L CNN "Height" +F6 "Worldsemi" 850 -300 50 H I L CNN "Manufacturer_Name" +F7 "WS2812B-2020" 850 -400 50 H I L CNN "Manufacturer_Part_Number" +F8 "" 850 -500 50 H I L CNN "Mouser Part Number" +F9 "" 850 -600 50 H I L CNN "Mouser Price/Stock" +F10 "" 850 -700 50 H I L CNN "Arrow Part Number" +F11 "" 850 -800 50 H I L CNN "Arrow Price/Stock" +F12 "" 850 -900 50 H I L CNN "Mouser Testing Part Number" +F13 "" 850 -1000 50 H I L CNN "Mouser Testing Price/Stock" +DRAW +X DO 1 1000 -100 200 L 50 50 0 0 P +X GND 2 1000 0 200 L 50 50 0 0 P +X DI 3 0 0 200 R 50 50 0 0 P +X VDD 4 0 -100 200 R 50 50 0 0 P +P 5 0 1 6 200 100 800 100 800 -200 200 -200 200 100 N +ENDDRAW +ENDDEF +# +#End Library diff --git a/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/WS2812B2020.kicad_mod b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/WS2812B2020.kicad_mod new file mode 100644 index 0000000..6ebbee5 --- /dev/null +++ b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/WS2812B2020.kicad_mod @@ -0,0 +1,35 @@ +(module "WS2812B2020" (layer F.Cu) + (descr "WS2812B-2020-2") + (tags "LED (Multiple)") + (attr smd) + (fp_text reference LED** (at 0.000 -0) (layer F.SilkS) + (effects (font (size 1.27 1.27) (thickness 0.254))) + ) + (fp_text user %R (at 0.000 -0) (layer F.Fab) + (effects (font (size 1.27 1.27) (thickness 0.254))) + ) + (fp_text value "WS2812B2020" (at 0.000 -0) (layer F.SilkS) hide + (effects (font (size 1.27 1.27) (thickness 0.254))) + ) + (fp_line (start -1.1 -1) (end 1.1 -1) (layer F.Fab) (width 0.2)) + (fp_line (start 1.1 -1) (end 1.1 1) (layer F.Fab) (width 0.2)) + (fp_line (start 1.1 1) (end -1.1 1) (layer F.Fab) (width 0.2)) + (fp_line (start -1.1 1) (end -1.1 -1) (layer F.Fab) (width 0.2)) + (fp_line (start -2.265 -2) (end 2.265 -2) (layer F.CrtYd) (width 0.1)) + (fp_line (start 2.265 -2) (end 2.265 2) (layer F.CrtYd) (width 0.1)) + (fp_line (start 2.265 2) (end -2.265 2) (layer F.CrtYd) (width 0.1)) + (fp_line (start -2.265 2) (end -2.265 -2) (layer F.CrtYd) (width 0.1)) + (fp_line (start 1.4 1.4) (end 1.4 1.4) (layer F.SilkS) (width 0.1)) + (fp_line (start 1.4 1.3) (end 1.4 1.3) (layer F.SilkS) (width 0.1)) + (fp_arc (start 1.4 1.35) (end 1.400 1.4) (angle -180) (layer F.SilkS) (width 0.1)) + (fp_arc (start 1.4 1.35) (end 1.400 1.3) (angle -180) (layer F.SilkS) (width 0.1)) + (pad 1 smd rect (at 0.915 0.55 90) (size 0.700 0.700) (layers F.Cu F.Paste F.Mask)) + (pad 2 smd rect (at 0.915 -0.55 90) (size 0.700 0.700) (layers F.Cu F.Paste F.Mask)) + (pad 3 smd rect (at -0.915 -0.55 90) (size 0.700 0.700) (layers F.Cu F.Paste F.Mask)) + (pad 4 smd rect (at -0.915 0.55 90) (size 0.700 0.700) (layers F.Cu F.Paste F.Mask)) + (model WS2812B-2020.stp + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) +) diff --git a/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/X6511WVS-08H-C60D48R2.lib b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/X6511WVS-08H-C60D48R2.lib new file mode 100644 index 0000000..e9f0599 --- /dev/null +++ b/PCBs/FlipperZero/WiFi-Devboard-Pro/Libraries/X6511WVS-08H-C60D48R2.lib @@ -0,0 +1,33 @@ +EESchema-LIBRARY Version 2.3 +#encoding utf-8 +#SamacSys ECAD Model X6511WVS-08H-C60D48R2 +#/17126700/987070/2.49/8/0/Connector +DEF X6511WVS-08H-C60D48R2 J 0 30 Y Y 1 F N +F0 "J" 650 300 50 H V L CNN +F1 "X6511WVS-08H-C60D48R2" 650 200 50 H V L CNN +F2 "HUSRSP8W66P254_2000X250X850P" 650 100 50 H I L CNN +F3 "https://datasheet.lcsc.com/lcsc/2110100430_XKB-Connectivity-X6511WVS-08H-C60D48R2_C2883765.pdf" 650 0 50 H I L CNN +F4 "Gold 250V 3A Brick nogging Square Pins 2.5mm 260 6mm -40~ 105 1 8 2.54mm Black Brass 1x8P SMD,P=2.54mm() Pin Headers ROHS" 650 -100 50 H I L CNN "Description" +F5 "" 650 -200 50 H I L CNN "Height" +F6 "XKB Connectivity" 650 -300 50 H I L CNN "Manufacturer_Name" +F7 "X6511WVS-08H-C60D48R2" 650 -400 50 H I L CNN "Manufacturer_Part_Number" +F8 "" 650 -500 50 H I L CNN "Mouser Part Number" +F9 "" 650 -600 50 H I L CNN "Mouser Price/Stock" +F10 "" 650 -700 50 H I L CNN "Arrow Part Number" +F11 "" 650 -800 50 H I L CNN "Arrow Price/Stock" +F12 "" 650 -900 50 H I L CNN "Mouser Testing Part Number" +F13 "" 650 -1000 50 H I L CNN "Mouser Testing Price/Stock" +DRAW +X 1 1 0 0 200 R 50 50 0 0 P +X 2 2 0 -100 200 R 50 50 0 0 P +X 3 3 0 -200 200 R 50 50 0 0 P +X 4 4 0 -300 200 R 50 50 0 0 P +X 5 5 800 0 200 L 50 50 0 0 P +X 6 6 800 -100 200 L 50 50 0 0 P +X 7 7 800 -200 200 L 50 50 0 0 P +X 8 8 800 -300 200 L 50 50 0 0 P +P 5 0 1 6 200 100 600 100 600 -400 200 -400 200 100 N +ENDDRAW +ENDDEF +# +#End Library diff --git a/PCBs/FlipperZero/WiFi-Devboard-Pro/PCB-layout-export.dxf b/PCBs/FlipperZero/WiFi-Devboard-Pro/PCB-layout-export.dxf new file mode 100644 index 0000000..dbae94f --- /dev/null +++ b/PCBs/FlipperZero/WiFi-Devboard-Pro/PCB-layout-export.dxf @@ -0,0 +1,4660 @@ +0 +SECTION +2 +HEADER +9 +$INSUNITS +70 +4 +9 +$ACADVER +1 +AC1014 +9 +$HANDSEED +5 +FFFF +0 +ENDSEC +0 +SECTION +2 +TABLES +0 +TABLE +2 +VPORT +5 +8 +100 +AcDbSymbolTable +0 +ENDTAB +0 +TABLE +2 +LTYPE +5 +5 +100 +AcDbSymbolTable +0 +LTYPE +5 +14 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord +2 +BYBLOCK +70 +0 +0 +LTYPE +5 +15 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord +2 +BYLAYER +70 +0 +0 +ENDTAB +0 +TABLE +2 +LAYER +5 +2 +100 +AcDbSymbolTable +70 +2 +0 +LAYER +5 +50 +100 +AcDbSymbolTableRecord +100 +AcDbLayerTableRecord +2 +0 +70 +0 +6 +CONTINUOUS +0 +ENDTAB +0 +TABLE +2 +STYLE +5 +3 +100 +AcDbSymbolTable +70 +1 +0 +STYLE +5 +11 +100 +AcDbSymbolTableRecord +100 +AcDbTextStyleTableRecord +2 +STANDARD +70 +0 +0 +ENDTAB +0 +TABLE +2 +VIEW +5 +6 +100 +AcDbSymbolTable +70 +0 +0 +ENDTAB +0 +TABLE +2 +UCS +5 +7 +100 +AcDbSymbolTable +70 +0 +0 +ENDTAB +0 +TABLE +2 +APPID +5 +9 +100 +AcDbSymbolTable +70 +2 +0 +APPID +5 +12 +100 +AcDbSymbolTableRecord +100 +AcDbRegAppTableRecord +2 +ACAD +70 +0 +0 +ENDTAB +0 +TABLE +2 +DIMSTYLE +5 +A +100 +AcDbSymbolTable +70 +1 +0 +ENDTAB +0 +TABLE +2 +BLOCK_RECORD +5 +1 +100 +AcDbSymbolTable +70 +1 +0 +BLOCK_RECORD +5 +1F +100 +AcDbSymbolTableRecord +100 +AcDbBlockTableRecord +2 +*MODEL_SPACE +0 +BLOCK_RECORD +5 +1B +100 +AcDbSymbolTableRecord +100 +AcDbBlockTableRecord +2 +*PAPER_SPACE +0 +ENDTAB +0 +ENDSEC +0 +SECTION +2 +BLOCKS +0 +BLOCK +5 +20 +100 +AcDbEntity +100 +AcDbBlockBegin +2 +*MODEL_SPACE +0 +ENDBLK +5 +21 +100 +AcDbEntity +100 +AcDbBlockEnd +0 +BLOCK +5 +1C +100 +AcDbEntity +100 +AcDbBlockBegin +2 +*PAPER_SPACE +0 +ENDBLK +5 +1D +100 +AcDbEntity +100 +AcDbBlockEnd +0 +ENDSEC +0 +SECTION +2 +ENTITIES +0 +CIRCLE +5 +100 +100 +AcDbEntity +8 +0 +100 +AcDbCircle +10 +-30.325000000000006 +20 +-10.450000000074875 +30 +0 +40 +1.0999999999999985 +210 +0 +220 +-0 +230 +1 +0 +LWPOLYLINE +5 +101 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +56 +70 +1 +43 +0.0 +10 +-27.325000000000003 +20 +-19.50000000000777 +42 +0.41421356237309048 +10 +-26.325000000000003 +20 +-20.50000000000777 +10 +0.99999999999998312 +20 +-20.50000000000777 +42 +-0.99999999999999989 +10 +2.9999999999999849 +20 +-20.50000000000777 +10 +3.5399999999999832 +20 +-20.50000000000777 +42 +-0.99999999999999989 +10 +5.5399999999999849 +20 +-20.50000000000777 +10 +6.0799999999999832 +20 +-20.50000000000777 +42 +-0.99999999999999989 +10 +8.0799999999999841 +20 +-20.50000000000777 +10 +8.6199999999999815 +20 +-20.50000000000777 +42 +-0.99999999999999989 +10 +10.619999999999983 +20 +-20.50000000000777 +10 +11.159999999999981 +20 +-20.50000000000777 +42 +-0.99999999999999989 +10 +13.159999999999982 +20 +-20.50000000000777 +10 +13.699999999999982 +20 +-20.50000000000777 +42 +-0.99999999999999989 +10 +15.699999999999983 +20 +-20.50000000000777 +10 +16.239999999999981 +20 +-20.50000000000777 +42 +-0.99999999999999989 +10 +18.239999999999984 +20 +-20.50000000000777 +10 +18.77999999999998 +20 +-20.50000000000777 +42 +-0.99999999999999989 +10 +20.77999999999998 +20 +-20.50000000000777 +10 +21.319999999999983 +20 +-20.50000000000777 +42 +-0.99999999999999989 +10 +23.319999999999986 +20 +-20.50000000000777 +10 +23.859999999999985 +20 +-20.50000000000778 +42 +-0.99999999999999989 +10 +25.859999999999985 +20 +-20.50000000000777 +10 +26.399999999999984 +20 +-20.50000000000777 +42 +-0.99999999999999989 +10 +28.399999999999984 +20 +-20.50000000000777 +10 +44.634999999999998 +20 +-20.50000000000777 +42 +0.41421356237309243 +10 +45.634999999999991 +20 +-19.50000000000777 +10 +45.634999999999991 +20 +-1.4000000001419766 +42 +0.41421356237310375 +10 +44.634999999999991 +20 +-0.40000000014197706 +10 +28.399999999999984 +20 +-0.40000000014198117 +42 +-0.99999999999999989 +10 +26.399999999999984 +20 +-0.40000000014197673 +10 +25.859999999999985 +20 +-0.4000000001419724 +42 +-0.99999999999999989 +10 +23.859999999999985 +20 +-0.40000000014197673 +10 +23.319999999999986 +20 +-0.40000000014198117 +42 +-0.99999999999999989 +10 +21.319999999999983 +20 +-0.40000000014197673 +10 +20.77999999999998 +20 +-0.40000000014197906 +42 +-0.99999999999999989 +10 +18.77999999999998 +20 +-0.40000000014197673 +10 +18.239999999999984 +20 +-0.40000000014197684 +42 +-0.99999999999999989 +10 +16.239999999999981 +20 +-0.40000000014197673 +10 +15.699999999999983 +20 +-0.40000000014197684 +42 +-0.99999999999999989 +10 +13.699999999999982 +20 +-0.40000000014197673 +10 +13.159999999999982 +20 +-0.40000000014197684 +42 +-0.99999999999999989 +10 +11.159999999999981 +20 +-0.40000000014197673 +10 +10.619999999999983 +20 +-0.40000000014197684 +42 +-0.99999999999999989 +10 +8.6199999999999815 +20 +-0.40000000014197673 +10 +8.0799999999999841 +20 +-0.40000000014197684 +42 +-0.99999999999999989 +10 +6.0799999999999832 +20 +-0.40000000014197673 +10 +5.5399999999999849 +20 +-0.40000000014197684 +42 +-0.99999999999999989 +10 +3.5399999999999832 +20 +-0.40000000014197673 +10 +2.9999999999999849 +20 +-0.40000000014197684 +42 +-0.99999999999999989 +10 +0.99999999999998312 +20 +-0.40000000014197673 +10 +-26.325000000000003 +20 +-0.40000000014197679 +42 +0.41421356237309304 +10 +-27.324999999999999 +20 +-1.4000000001419768 +10 +-27.324999999999999 +20 +-7.9500000000748745 +10 +-30.325000000000006 +20 +-7.9500000000748736 +42 +0.99999999999999989 +10 +-30.325000000000006 +20 +-12.950000000074876 +10 +-27.324999999999999 +20 +-12.950000000070325 +0 +LWPOLYLINE +5 +102 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +38.682499999999997 +20 +-7.4245000000000019 +10 +38.047499999999999 +20 +-7.4245000000000019 +10 +38.047499999999999 +20 +-5.6084000000000023 +10 +38.682499999999997 +20 +-5.6084000000000023 +0 +LWPOLYLINE +5 +103 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +33.602499999999999 +20 +-7.4245000000000019 +10 +32.967500000000001 +20 +-7.4245000000000019 +10 +32.967500000000001 +20 +-5.6084000000000023 +10 +33.602499999999999 +20 +-5.6084000000000023 +0 +LWPOLYLINE +5 +104 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +28.522499999999997 +20 +-7.4245000000000019 +10 +27.887499999999999 +20 +-7.4245000000000019 +10 +27.887499999999996 +20 +-5.6084000000000023 +10 +28.522499999999994 +20 +-5.6084000000000023 +0 +LWPOLYLINE +5 +105 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +22.807499999999997 +20 +-5.6084000000000023 +10 +23.442499999999995 +20 +-5.6084000000000023 +10 +23.442499999999995 +20 +-7.4245000000000028 +10 +22.807499999999994 +20 +-7.4245000000000019 +0 +LWPOLYLINE +5 +106 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +60 +70 +1 +43 +0.0 +10 +36.987646968374158 +20 +-7.2340000000000018 +10 +37.202353031625847 +20 +-7.2340000000000018 +10 +37.348999999999997 +20 +-6.9800000000000022 +10 +39.634999999999998 +20 +-6.9800000000000022 +10 +39.634999999999998 +20 +-9.5200000000000014 +10 +37.348999999999997 +20 +-9.5200000000000014 +10 +37.202353031625833 +20 +-9.2660000000000018 +10 +36.987646968374158 +20 +-9.2660000000000018 +10 +36.841000000000001 +20 +-9.5200000000000014 +10 +34.808999999999997 +20 +-9.5200000000000014 +10 +34.662353031625841 +20 +-9.2660000000000018 +10 +34.447646968374158 +20 +-9.2660000000000018 +10 +34.300999999999995 +20 +-9.5200000000000014 +10 +32.268999999999998 +20 +-9.5200000000000014 +10 +32.122353031625835 +20 +-9.2660000000000018 +10 +31.907646968374163 +20 +-9.2660000000000018 +10 +31.760999999999999 +20 +-9.5200000000000014 +10 +29.728999999999999 +20 +-9.5200000000000014 +10 +29.582353031625832 +20 +-9.2660000000000018 +10 +29.367646968374164 +20 +-9.2660000000000018 +10 +29.221 +20 +-9.5200000000000014 +10 +27.188999999999997 +20 +-9.5200000000000014 +10 +27.042353031625833 +20 +-9.2660000000000018 +10 +26.827646968374161 +20 +-9.2660000000000018 +10 +26.680999999999997 +20 +-9.5200000000000014 +10 +24.649000000000001 +20 +-9.5200000000000014 +10 +24.502353031625837 +20 +-9.2660000000000018 +10 +24.287646968374158 +20 +-9.2660000000000018 +10 +24.140999999999995 +20 +-9.5200000000000014 +10 +22.109000000000002 +20 +-9.5200000000000014 +10 +21.962353031625842 +20 +-9.2660000000000018 +10 +21.747646968374159 +20 +-9.2660000000000018 +10 +21.600999999999999 +20 +-9.5200000000000014 +10 +19.314999999999998 +20 +-9.5200000000000014 +10 +19.314999999999998 +20 +-6.9800000000000022 +10 +21.600999999999999 +20 +-6.9800000000000022 +10 +21.747646968374159 +20 +-7.2340000000000018 +10 +21.962353031625845 +20 +-7.2340000000000018 +10 +22.109000000000002 +20 +-6.9800000000000022 +10 +24.140999999999998 +20 +-6.9800000000000022 +10 +24.287646968374155 +20 +-7.2340000000000018 +10 +24.502353031625837 +20 +-7.2340000000000018 +10 +24.649000000000001 +20 +-6.9800000000000022 +10 +26.680999999999997 +20 +-6.9800000000000022 +10 +26.827646968374161 +20 +-7.2340000000000018 +10 +27.042353031625836 +20 +-7.2340000000000018 +10 +27.189000000000007 +20 +-6.9800000000000022 +10 +29.221 +20 +-6.9800000000000022 +10 +29.367646968374167 +20 +-7.2340000000000018 +10 +29.582353031625832 +20 +-7.2340000000000018 +10 +29.728999999999996 +20 +-6.9800000000000022 +10 +31.760999999999999 +20 +-6.9800000000000022 +10 +31.907646968374159 +20 +-7.2340000000000018 +10 +32.122353031625842 +20 +-7.2340000000000018 +10 +32.268999999999998 +20 +-6.9800000000000022 +10 +34.300999999999995 +20 +-6.9800000000000022 +10 +34.447646968374158 +20 +-7.2340000000000018 +10 +34.662353031625834 +20 +-7.2340000000000018 +10 +34.808999999999997 +20 +-6.9800000000000022 +10 +36.841000000000001 +20 +-6.9800000000000022 +0 +LWPOLYLINE +5 +107 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +36.142499999999998 +20 +-10.8916 +10 +35.5075 +20 +-10.8916 +10 +35.5075 +20 +-9.0755000000000017 +10 +36.142499999999998 +20 +-9.0755000000000017 +0 +LWPOLYLINE +5 +108 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +31.0625 +20 +-10.8916 +10 +30.427499999999995 +20 +-10.8916 +10 +30.427499999999995 +20 +-9.0755000000000017 +10 +31.0625 +20 +-9.0755000000000017 +0 +LWPOLYLINE +5 +109 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +25.347499999999997 +20 +-9.0755000000000017 +10 +25.982499999999998 +20 +-9.0755000000000017 +10 +25.982499999999998 +20 +-10.8916 +10 +25.347499999999997 +20 +-10.8916 +0 +LWPOLYLINE +5 +110 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +20.267499999999998 +20 +-9.0755000000000017 +10 +20.902499999999996 +20 +-9.0755000000000017 +10 +20.902499999999996 +20 +-10.8916 +10 +20.267499999999998 +20 +-10.8916 +0 +LWPOLYLINE +5 +111 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +3.1225000000000014 +20 +-7.4245000000000019 +10 +2.4875000000000003 +20 +-7.4245000000000019 +10 +2.4875000000000003 +20 +-5.6084000000000023 +10 +3.1225000000000014 +20 +-5.6084000000000023 +0 +LWPOLYLINE +5 +112 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +-1.9574999999999998 +20 +-7.4245000000000019 +10 +-2.5925000000000011 +20 +-7.4245000000000019 +10 +-2.5925000000000011 +20 +-5.6084000000000023 +10 +-1.9574999999999998 +20 +-5.6084000000000023 +0 +LWPOLYLINE +5 +113 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +-7.0374999999999996 +20 +-7.4245000000000019 +10 +-7.6724999999999977 +20 +-7.4245000000000019 +10 +-7.6724999999999977 +20 +-5.6084000000000023 +10 +-7.0374999999999996 +20 +-5.6084000000000023 +0 +LWPOLYLINE +5 +114 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +-12.117500000000001 +20 +-7.4245000000000019 +10 +-12.7525 +20 +-7.4245000000000019 +10 +-12.7525 +20 +-5.6084000000000023 +10 +-12.117500000000001 +20 +-5.6084000000000023 +0 +LWPOLYLINE +5 +115 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +-17.8325 +20 +-5.6084000000000023 +10 +-17.197500000000002 +20 +-5.6084000000000023 +10 +-17.197500000000002 +20 +-7.4245000000000028 +10 +-17.8325 +20 +-7.4245000000000019 +0 +LWPOLYLINE +5 +116 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +76 +70 +1 +43 +0.0 +10 +1.4276469683741566 +20 +-7.2340000000000018 +10 +1.6423530316258406 +20 +-7.2340000000000018 +10 +1.7889999999999984 +20 +-6.9800000000000022 +10 +4.0749999999999993 +20 +-6.9800000000000022 +10 +4.0749999999999993 +20 +-9.5200000000000014 +10 +1.7889999999999984 +20 +-9.5200000000000014 +10 +1.6423530316258406 +20 +-9.2660000000000018 +10 +1.4276469683741566 +20 +-9.2660000000000018 +10 +1.2809999999999999 +20 +-9.5200000000000014 +10 +-0.75099999999999945 +20 +-9.5200000000000014 +10 +-0.89764696837415725 +20 +-9.2660000000000018 +10 +-1.1123530316258412 +20 +-9.2660000000000018 +10 +-1.2590000000000001 +20 +-9.5200000000000014 +10 +-3.2909999999999995 +20 +-9.5200000000000014 +10 +-3.4376469683741573 +20 +-9.2660000000000018 +10 +-3.6523530316258408 +20 +-9.2660000000000018 +10 +-3.7989999999999995 +20 +-9.5200000000000014 +10 +-5.8309999999999995 +20 +-9.5200000000000014 +10 +-5.9776469683741578 +20 +-9.2660000000000018 +10 +-6.1923530316258333 +20 +-9.2660000000000018 +10 +-6.3389999999999986 +20 +-9.5200000000000014 +10 +-8.3709999999999987 +20 +-9.5200000000000014 +10 +-8.5176469683741622 +20 +-9.2660000000000018 +10 +-8.7323530316258342 +20 +-9.2660000000000018 +10 +-8.8789999999999996 +20 +-9.5200000000000014 +10 +-10.911 +20 +-9.5200000000000014 +10 +-11.057646968374165 +20 +-9.2660000000000018 +10 +-11.27235303162584 +20 +-9.2660000000000018 +10 +-11.418999999999999 +20 +-9.5200000000000014 +10 +-13.451000000000001 +20 +-9.5200000000000014 +10 +-13.597646968374157 +20 +-9.2660000000000018 +10 +-13.812353031625843 +20 +-9.2660000000000018 +10 +-13.959 +20 +-9.5200000000000014 +10 +-15.991 +20 +-9.5200000000000014 +10 +-16.13764696837416 +20 +-9.2660000000000018 +10 +-16.352353031625842 +20 +-9.2660000000000018 +10 +-16.498999999999999 +20 +-9.5200000000000014 +10 +-18.530999999999999 +20 +-9.5200000000000014 +10 +-18.677646968374155 +20 +-9.2660000000000018 +10 +-18.892353031625841 +20 +-9.2660000000000018 +10 +-19.038999999999998 +20 +-9.5200000000000014 +10 +-21.325000000000003 +20 +-9.5200000000000014 +10 +-21.325000000000003 +20 +-6.9800000000000022 +10 +-19.039000000000001 +20 +-6.9800000000000022 +10 +-18.892353031625841 +20 +-7.2340000000000018 +10 +-18.677646968374159 +20 +-7.2340000000000018 +10 +-18.530999999999999 +20 +-6.9800000000000022 +10 +-16.498999999999999 +20 +-6.9800000000000022 +10 +-16.352353031625842 +20 +-7.2340000000000018 +10 +-16.137646968374156 +20 +-7.2340000000000018 +10 +-15.991 +20 +-6.9800000000000022 +10 +-13.959000000000001 +20 +-6.9800000000000022 +10 +-13.812353031625841 +20 +-7.2340000000000018 +10 +-13.597646968374157 +20 +-7.2340000000000018 +10 +-13.451000000000002 +20 +-6.9800000000000022 +10 +-11.418999999999999 +20 +-6.9800000000000022 +10 +-11.27235303162584 +20 +-7.2340000000000018 +10 +-11.057646968374165 +20 +-7.2340000000000018 +10 +-10.910999999999992 +20 +-6.9800000000000022 +10 +-8.8789999999999996 +20 +-6.9800000000000022 +10 +-8.7323530316258307 +20 +-7.2340000000000018 +10 +-8.5176469683741658 +20 +-7.2340000000000018 +10 +-8.3710000000000004 +20 +-6.9800000000000022 +10 +-6.3389999999999977 +20 +-6.9800000000000022 +10 +-6.1923530316258377 +20 +-7.2340000000000018 +10 +-5.9776469683741587 +20 +-7.2340000000000018 +10 +-5.8309999999999995 +20 +-6.9800000000000022 +10 +-3.798999999999999 +20 +-6.9800000000000022 +10 +-3.6523530316258412 +20 +-7.2340000000000018 +10 +-3.4376469683741577 +20 +-7.2340000000000018 +10 +-3.2909999999999995 +20 +-6.9800000000000022 +10 +-1.2590000000000001 +20 +-6.9800000000000022 +10 +-1.1123530316258412 +20 +-7.2340000000000018 +10 +-0.89764696837415725 +20 +-7.2340000000000018 +10 +-0.75099999999999945 +20 +-6.9800000000000022 +10 +1.281000000000001 +20 +-6.9800000000000022 +0 +LWPOLYLINE +5 +117 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +-15.292500000000002 +20 +-9.0755000000000017 +10 +-14.657500000000001 +20 +-9.0755000000000017 +10 +-14.657499999999999 +20 +-10.8916 +10 +-15.2925 +20 +-10.8916 +0 +LWPOLYLINE +5 +118 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +-20.372500000000002 +20 +-9.0755000000000017 +10 +-19.737500000000001 +20 +-9.0755000000000017 +10 +-19.737500000000001 +20 +-10.8916 +10 +-20.372500000000002 +20 +-10.8916 +0 +LWPOLYLINE +5 +119 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +-9.5775000000000006 +20 +-10.8916 +10 +-10.212499999999999 +20 +-10.8916 +10 +-10.212499999999999 +20 +-9.0755000000000017 +10 +-9.5775000000000006 +20 +-9.0755000000000017 +0 +LWPOLYLINE +5 +120 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +-4.4974999999999996 +20 +-10.8916 +10 +-5.1325000000000003 +20 +-10.8916 +10 +-5.1325000000000003 +20 +-9.0755000000000017 +10 +-4.4975000000000005 +20 +-9.0755000000000017 +0 +LWPOLYLINE +5 +121 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +0.58249999999999913 +20 +-10.8916 +10 +-0.052499999999999769 +20 +-10.8916 +10 +-0.052499999999999769 +20 +-9.0755000000000017 +10 +0.58249999999999913 +20 +-9.0755000000000017 +0 +LWPOLYLINE +5 +122 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +13.579999999999991 +20 +-12.164500000074874 +10 +13.579999999999991 +20 +-8.7355000000748735 +10 +7.2299999999999915 +20 +-8.7355000000748735 +10 +7.2299999999999933 +20 +-12.164500000074874 +0 +LWPOLYLINE +5 +123 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +12.741799999999994 +20 +-12.126400000074874 +10 +12.741799999999994 +20 +-13.371000000074872 +10 +13.148199999999994 +20 +-13.371000000074872 +10 +13.148199999999992 +20 +-12.126400000074874 +0 +LWPOLYLINE +5 +124 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +11.471799999999995 +20 +-12.126400000074874 +10 +11.471799999999995 +20 +-13.371000000074872 +10 +11.878199999999994 +20 +-13.371000000074872 +10 +11.878199999999994 +20 +-12.126400000074874 +0 +LWPOLYLINE +5 +125 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +10.201799999999995 +20 +-12.126400000074874 +10 +10.201799999999995 +20 +-13.371000000074872 +10 +10.608199999999995 +20 +-13.371000000074872 +10 +10.608199999999995 +20 +-12.126400000074874 +0 +LWPOLYLINE +5 +126 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +8.9317999999999937 +20 +-12.126400000074874 +10 +8.9317999999999937 +20 +-13.371000000074872 +10 +9.3381999999999934 +20 +-13.371000000074872 +10 +9.3381999999999934 +20 +-12.126400000074874 +0 +LWPOLYLINE +5 +127 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +8.0681999999999938 +20 +-13.371000000074872 +10 +8.0681999999999938 +20 +-12.126400000074874 +10 +7.6617999999999933 +20 +-12.126400000074874 +10 +7.6617999999999933 +20 +-13.371000000074872 +0 +LWPOLYLINE +5 +128 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +12.741799999999994 +20 +-7.5290000000748725 +10 +12.741799999999994 +20 +-8.7736000000748717 +10 +13.148199999999994 +20 +-8.7736000000748717 +10 +13.148199999999992 +20 +-7.5290000000748725 +0 +LWPOLYLINE +5 +129 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +11.471799999999995 +20 +-7.5290000000748725 +10 +11.471799999999995 +20 +-8.7736000000748717 +10 +11.878199999999994 +20 +-8.7736000000748717 +10 +11.878199999999994 +20 +-7.5290000000748725 +0 +LWPOLYLINE +5 +130 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +10.201799999999995 +20 +-7.5290000000748725 +10 +10.201799999999995 +20 +-8.7736000000748717 +10 +10.608199999999995 +20 +-8.7736000000748717 +10 +10.608199999999995 +20 +-7.5290000000748725 +0 +LWPOLYLINE +5 +131 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +8.9317999999999937 +20 +-7.5290000000748725 +10 +8.9317999999999937 +20 +-8.7736000000748717 +10 +9.3381999999999934 +20 +-8.7736000000748717 +10 +9.3381999999999934 +20 +-7.5290000000748725 +0 +LWPOLYLINE +5 +132 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +8.0681999999999938 +20 +-8.7736000000748717 +10 +8.0681999999999938 +20 +-7.5290000000748725 +10 +7.6617999999999933 +20 +-7.5290000000748725 +10 +7.6617999999999933 +20 +-8.7736000000748717 +0 +LWPOLYLINE +5 +133 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +6 +70 +1 +43 +0.0 +10 +4.7749999999999968 +20 +-5.9000000001419819 +10 +4.7749999999999968 +20 +-5.7550000001419823 +10 +4.7749999999999968 +20 +-5.1950000001419818 +10 +4.7749999999999968 +20 +-3.6050000001419811 +10 +4.7749999999999968 +20 +-3.0450000001419819 +10 +4.7749999999999977 +20 +-2.9000000001419819 +0 +LWPOLYLINE +5 +134 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +3 +70 +1 +43 +0.0 +10 +4.7249999999999961 +20 +-2.8133974597635367 +42 +0.13165249758739164 +10 +4.674999999999998 +20 +-2.8000000001419822 +42 +-0.41421356237312429 +10 +4.7749999999999968 +20 +-2.9000000001419917 +42 +0.267949192431154 +0 +LWPOLYLINE +5 +135 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +0.6749999999999956 +20 +-2.8000000001419814 +10 +1.3149999999999964 +20 +-2.8000000001419814 +10 +4.0349999999999966 +20 +-2.8000000001419818 +10 +4.6749999999999972 +20 +-2.8000000001419818 +0 +LWPOLYLINE +5 +136 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +3 +70 +1 +43 +0.0 +10 +0.6749999999999956 +20 +-2.8000000001419818 +42 +0.13165249758740535 +10 +0.62499999999999667 +20 +-2.8133974597635367 +42 +0.2679491924311444 +10 +0.57500000000000207 +20 +-2.900000000141981 +42 +-0.41421356237312962 +0 +LWPOLYLINE +5 +137 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +6 +70 +1 +43 +0.0 +10 +0.57499999999999607 +20 +-5.1950000001419818 +10 +0.57499999999999574 +20 +-5.7550000001419823 +10 +0.57499999999999529 +20 +-5.9000000001419819 +10 +0.57499999999999618 +20 +-2.900000000141981 +10 +0.5749999999999964 +20 +-3.0450000001419815 +10 +0.57499999999999596 +20 +-3.6050000001419806 +0 +LWPOLYLINE +5 +138 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +4.6749999999999972 +20 +-6.0000000001419815 +10 +4.0349999999999966 +20 +-6.0000000001419815 +10 +1.3149999999999962 +20 +-6.0000000001419815 +10 +0.67499999999999505 +20 +-6.0000000001419815 +0 +LWPOLYLINE +5 +139 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +3 +70 +1 +43 +0.0 +10 +0.62499999999999611 +20 +-5.9866025405204262 +42 +0.13165249758739303 +10 +0.67499999999999505 +20 +-6.0000000001419806 +42 +-0.41421356237313078 +10 +0.57499999999999574 +20 +-5.9000000001419695 +42 +0.2679491924311585 +0 +LWPOLYLINE +5 +140 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +6 +70 +1 +43 +0.0 +10 +0.57500000000000051 +20 +-17.295000000007768 +10 +0.57500000000000018 +20 +-17.85500000000777 +10 +0.57499999999999996 +20 +-18.00000000000777 +10 +0.57500000000000073 +20 +-15.00000000000777 +10 +0.57500000000000051 +20 +-15.145000000007771 +10 +0.57500000000000018 +20 +-15.705000000007772 +0 +LWPOLYLINE +5 +141 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +3 +70 +1 +43 +0.0 +10 +0.62500000000000089 +20 +-18.086602540386213 +42 +0.13165249758739303 +10 +0.67499999999999982 +20 +-18.100000000007771 +42 +-0.41421356237312756 +10 +0.57500000000000051 +20 +-18.000000000007759 +42 +0.26794919243115545 +0 +LWPOLYLINE +5 +142 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +4.6750000000000016 +20 +-18.100000000007771 +10 +4.035000000000001 +20 +-18.100000000007771 +10 +1.3150000000000006 +20 +-18.100000000007771 +10 +0.67499999999999982 +20 +-18.100000000007771 +0 +LWPOLYLINE +5 +143 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +3 +70 +1 +43 +0.0 +10 +4.6750000000000016 +20 +-18.100000000007771 +42 +0.1316524975874048 +10 +4.7250000000000005 +20 +-18.086602540386213 +42 +0.26794919243114151 +10 +4.7749999999999941 +20 +-18.00000000000777 +42 +-0.4142135623731259 +0 +LWPOLYLINE +5 +144 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +6 +70 +1 +43 +0.0 +10 +4.7750000000000012 +20 +-18.00000000000777 +10 +4.7750000000000012 +20 +-17.85500000000777 +10 +4.7750000000000012 +20 +-17.295000000007768 +10 +4.7750000000000012 +20 +-15.705000000007772 +10 +4.7750000000000012 +20 +-15.145000000007771 +10 +4.7750000000000012 +20 +-15.000000000007772 +0 +LWPOLYLINE +5 +145 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +3 +70 +1 +43 +0.0 +10 +4.7250000000000005 +20 +-14.913397459629326 +42 +0.13165249758739303 +10 +4.6750000000000016 +20 +-14.900000000007774 +42 +-0.41421356237312756 +10 +4.7750000000000004 +20 +-15.000000000007782 +42 +0.26794919243115545 +0 +LWPOLYLINE +5 +146 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +0.67499999999999982 +20 +-14.900000000007772 +10 +1.3150000000000006 +20 +-14.900000000007772 +10 +4.035000000000001 +20 +-14.900000000007768 +10 +4.6750000000000016 +20 +-14.900000000007768 +0 +LWPOLYLINE +5 +147 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +3 +70 +1 +43 +0.0 +10 +0.67499999999999982 +20 +-14.900000000007772 +42 +0.1316524975874048 +10 +0.62500000000000089 +20 +-14.913397459629326 +42 +0.26794919243114151 +10 +0.57500000000000684 +20 +-15.000000000007772 +42 +-0.4142135623731259 +0 +LWPOLYLINE +5 +148 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +12 +70 +1 +43 +0.0 +10 +3.6549999999999971 +20 +-11.550000000074874 +10 +3.9049999999999976 +20 +-11.550000000074874 +10 +3.904999999999998 +20 +-9.3500000000748749 +10 +3.6549999999999976 +20 +-9.3500000000748749 +42 +-0.99999999999999989 +10 +3.1549999999999971 +20 +-9.3500000000748713 +10 +2.654999999999998 +20 +-9.3500000000748749 +42 +-0.99999999999999989 +10 +2.154999999999998 +20 +-9.3500000000748713 +10 +1.9049999999999978 +20 +-9.3500000000748731 +10 +1.9049999999999971 +20 +-11.550000000074874 +10 +2.1549999999999967 +20 +-11.550000000074874 +42 +-0.99999999999999989 +10 +2.6549999999999976 +20 +-11.550000000074874 +10 +3.1549999999999976 +20 +-11.550000000074874 +42 +-0.99999999999999989 +0 +LWPOLYLINE +5 +149 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +156 +70 +1 +43 +0.0 +10 +-2.1950000000000691 +20 +-15.715000000074848 +10 +-1.7450000000000676 +20 +-15.715000000074843 +10 +-1.7450000000000676 +20 +-15.345000000074847 +10 +-2.1950000000000691 +20 +-15.345000000074849 +10 +-2.1950000000000709 +20 +-14.445000000074849 +10 +-1.7450000000000654 +20 +-14.445000000074845 +10 +-1.7450000000000676 +20 +-14.075000000074848 +10 +-2.1950000000000669 +20 +-14.075000000074851 +10 +-2.1950000000000709 +20 +-13.175000000074848 +10 +-1.7450000000000643 +20 +-13.175000000074848 +10 +-1.7450000000000665 +20 +-12.805000000074848 +10 +-2.195000000000066 +20 +-12.805000000074852 +10 +-2.19500000000007 +20 +-11.90500000007485 +10 +-1.7450000000000621 +20 +-11.905000000074848 +10 +-1.7450000000000665 +20 +-11.53500000007485 +10 +-2.195000000000066 +20 +-11.535000000074852 +10 +-2.19500000000007 +20 +-10.635000000074852 +10 +-1.7450000000000621 +20 +-10.63500000007485 +10 +-1.7450000000000643 +20 +-10.265000000074853 +10 +-2.195000000000066 +20 +-10.265000000074856 +10 +-2.1950000000000678 +20 +-9.3650000000748541 +10 +-1.7450000000000621 +20 +-9.3650000000748506 +10 +-1.7450000000000665 +20 +-8.9950000000748531 +10 +-2.1950000000000633 +20 +-8.9950000000748567 +10 +-2.19500000000007 +20 +-8.0950000000748563 +10 +-1.7450000000000665 +20 +-8.0950000000748545 +10 +-1.7450000000000687 +20 +-7.7250000000748553 +10 +-2.1950000000000678 +20 +-7.7250000000748571 +10 +-2.19500000000007 +20 +-6.8250000000748567 +10 +-1.7450000000000632 +20 +-6.825000000074855 +10 +-1.7450000000000654 +20 +-6.4550000000748575 +10 +-2.1950000000000647 +20 +-6.4550000000748611 +10 +-2.1950000000000687 +20 +-5.5550000000748589 +10 +-1.7450000000000632 +20 +-5.5550000000748572 +10 +-1.7450000000000654 +20 +-5.1850000000748588 +10 +-2.1950000000000647 +20 +-5.1850000000748615 +10 +-2.1950000000000687 +20 +-4.2850000000748611 +10 +-1.7450000000000609 +20 +-4.2850000000748603 +10 +-1.7450000000000783 +20 +-1.4500000000748732 +10 +-2.7950000000000563 +20 +-1.4500000000748758 +10 +-2.7950000000000541 +20 +-1.9000000000748667 +10 +-3.6950000000000527 +20 +-1.9000000000748696 +10 +-3.6950000000000571 +20 +-1.4500000000748674 +10 +-4.0650000000000563 +20 +-1.450000000074867 +10 +-4.0650000000000546 +20 +-1.9000000000748658 +10 +-4.9650000000000558 +20 +-1.9000000000748696 +10 +-4.9650000000000594 +20 +-1.4500000000748687 +10 +-5.3350000000000586 +20 +-1.4500000000748681 +10 +-5.3350000000000541 +20 +-1.9000000000748658 +10 +-6.2350000000000545 +20 +-1.9000000000748685 +10 +-6.2350000000000572 +20 +-1.4500000000748674 +10 +-6.6050000000000564 +20 +-1.450000000074867 +10 +-6.6050000000000537 +20 +-1.9000000000748658 +10 +-7.505000000000055 +20 +-1.9000000000748696 +10 +-7.5050000000000585 +20 +-1.4500000000748652 +10 +-7.8750000000000551 +20 +-1.4500000000748647 +10 +-7.8750000000000542 +20 +-1.9000000000748658 +10 +-8.7750000000000554 +20 +-1.9000000000748685 +10 +-8.775000000000059 +20 +-1.4500000000748696 +10 +-9.1450000000000564 +20 +-1.450000000074867 +10 +-9.1450000000000529 +20 +-1.9000000000748645 +10 +-10.045000000000055 +20 +-1.9000000000748696 +10 +-10.045000000000057 +20 +-1.4500000000748687 +10 +-10.415000000000054 +20 +-1.4500000000748681 +10 +-10.415000000000052 +20 +-1.9000000000748667 +10 +-11.315000000000053 +20 +-1.9000000000748696 +10 +-11.315000000000058 +20 +-1.4500000000748674 +10 +-11.685000000000054 +20 +-1.4500000000748658 +10 +-11.685000000000052 +20 +-1.9000000000748645 +10 +-12.585000000000054 +20 +-1.9000000000748696 +10 +-12.585000000000059 +20 +-1.4500000000748687 +10 +-12.955000000000057 +20 +-1.450000000074867 +10 +-12.955000000000052 +20 +-1.9000000000748645 +10 +-13.855000000000055 +20 +-1.9000000000748685 +10 +-13.855000000000059 +20 +-1.4500000000748674 +10 +-14.225000000000055 +20 +-1.4500000000748658 +10 +-14.225000000000055 +20 +-1.9000000000748645 +10 +-15.125000000000055 +20 +-1.9000000000748696 +10 +-15.12500000000006 +20 +-1.4500000000748665 +10 +-15.495000000000056 +20 +-1.450000000074867 +10 +-15.495000000000053 +20 +-1.9000000000748622 +10 +-16.395000000000056 +20 +-1.9000000000748685 +10 +-16.39500000000006 +20 +-1.4500000000748696 +10 +-16.765000000000054 +20 +-1.4500000000748658 +10 +-16.765000000000054 +20 +-1.9000000000748645 +10 +-17.665000000000056 +20 +-1.9000000000748707 +10 +-17.665000000000056 +20 +-1.4500000000748687 +10 +-18.035000000000057 +20 +-1.450000000074867 +10 +-18.035000000000053 +20 +-1.9000000000748658 +10 +-18.935000000000059 +20 +-1.9000000000748696 +10 +-18.935000000000059 +20 +-1.4500000000748665 +10 +-19.305000000000053 +20 +-1.4500000000748658 +10 +-19.305000000000053 +20 +-1.9000000000748645 +10 +-20.205000000000055 +20 +-1.9000000000748696 +10 +-20.205000000000059 +20 +-1.4500000000748696 +10 +-27.245000000000058 +20 +-1.4500000000749087 +10 +-27.244999999999962 +20 +-19.450000000074844 +10 +-20.205000000000055 +20 +-19.450000000074809 +10 +-20.205000000000055 +20 +-19.000000000074845 +10 +-19.30500000000006 +20 +-19.000000000074841 +10 +-19.305000000000057 +20 +-19.450000000074844 +10 +-18.935000000000059 +20 +-19.450000000074844 +10 +-18.935000000000059 +20 +-19.000000000074845 +10 +-18.035000000000057 +20 +-19.000000000074838 +10 +-18.035000000000057 +20 +-19.450000000074844 +10 +-17.665000000000056 +20 +-19.450000000074844 +10 +-17.665000000000063 +20 +-19.000000000074845 +10 +-16.765000000000057 +20 +-19.000000000074841 +10 +-16.765000000000057 +20 +-19.450000000074844 +10 +-16.39500000000006 +20 +-19.450000000074844 +10 +-16.39500000000006 +20 +-19.000000000074845 +10 +-15.495000000000058 +20 +-19.000000000074841 +10 +-15.495000000000056 +20 +-19.450000000074844 +10 +-15.125000000000057 +20 +-19.450000000074844 +10 +-15.125000000000062 +20 +-19.000000000074845 +10 +-14.225000000000058 +20 +-19.000000000074841 +10 +-14.225000000000056 +20 +-19.450000000074848 +10 +-13.855000000000059 +20 +-19.450000000074841 +10 +-13.855000000000059 +20 +-19.000000000074845 +10 +-12.955000000000057 +20 +-19.000000000074841 +10 +-12.955000000000055 +20 +-19.450000000074844 +10 +-12.585000000000058 +20 +-19.450000000074844 +10 +-12.585000000000059 +20 +-19.000000000074845 +10 +-11.685000000000059 +20 +-19.000000000074838 +10 +-11.685000000000056 +20 +-19.450000000074844 +10 +-11.315000000000055 +20 +-19.450000000074844 +10 +-11.31500000000006 +20 +-19.000000000074845 +10 +-10.415000000000056 +20 +-19.000000000074838 +10 +-10.415000000000054 +20 +-19.450000000074848 +10 +-10.045000000000057 +20 +-19.450000000074841 +10 +-10.045000000000062 +20 +-19.000000000074845 +10 +-9.1450000000000582 +20 +-19.000000000074841 +10 +-9.1450000000000546 +20 +-19.450000000074844 +10 +-8.775000000000059 +20 +-19.450000000074844 +10 +-8.775000000000059 +20 +-19.000000000074845 +10 +-7.8750000000000577 +20 +-19.000000000074841 +10 +-7.8750000000000551 +20 +-19.450000000074844 +10 +-7.5050000000000576 +20 +-19.450000000074841 +10 +-7.5050000000000594 +20 +-19.000000000074845 +10 +-6.6050000000000599 +20 +-19.000000000074841 +10 +-6.6050000000000564 +20 +-19.450000000074844 +10 +-6.2350000000000607 +20 +-19.450000000074844 +10 +-6.2350000000000616 +20 +-19.000000000074845 +10 +-5.3350000000000595 +20 +-19.000000000074841 +10 +-5.335000000000055 +20 +-19.450000000074844 +10 +-4.9650000000000594 +20 +-19.450000000074844 +10 +-4.9650000000000603 +20 +-19.000000000074845 +10 +-4.0650000000000608 +20 +-19.000000000074841 +10 +-4.0650000000000563 +20 +-19.450000000074848 +10 +-3.6950000000000593 +20 +-19.450000000074844 +10 +-3.6950000000000616 +20 +-19.000000000074845 +10 +-2.7950000000000585 +20 +-19.000000000074838 +10 +-2.7950000000000541 +20 +-19.450000000074848 +10 +-1.7450000000000609 +20 +-19.450000000074837 +10 +-1.745000000000076 +20 +-16.615000000074843 +10 +-2.1950000000000647 +20 +-16.615000000074851 +0 +LWPOLYLINE +5 +150 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +89 +70 +1 +43 +0.0 +10 +45.534999999999989 +20 +-16.640000000074888 +42 +0.41421356237309503 +10 +45.234999999999985 +20 +-16.340000000074888 +10 +42.785000000009994 +20 +-16.340000000074902 +42 +-0.41421356237309503 +10 +42.48500000000999 +20 +-16.040000000074901 +10 +42.48500000000999 +20 +-7.5400000000748868 +42 +-0.32362759600315366 +10 +42.690961596699317 +20 +-7.2551197117031254 +10 +44.220931357814393 +20 +-6.750079807827623 +42 +-0.079878216421926579 +10 +44.283623626689995 +20 +-6.7400000000748639 +10 +45.064999999999998 +20 +-6.7400000000748861 +42 +0.41421356237308204 +10 +45.264999999999986 +20 +-6.5400000000748904 +10 +45.264999999999993 +20 +-5.8500000000748997 +42 +-0.41421356237312978 +10 +45.414999999999992 +20 +-5.7000000000748994 +10 +45.484999999829995 +20 +-5.700000000074894 +10 +45.484999999829995 +20 +-4.6700000000748965 +10 +44.984999999999992 +20 +-4.6700000000748689 +42 +-0.35639339825220362 +10 +44.936010225035545 +20 +-4.63000009752104 +10 +43.503989795192496 +20 +-4.6299999984246911 +42 +-0.35639396818323227 +10 +43.454999999999998 +20 +-4.6700000000748707 +10 +43.325710678119989 +20 +-4.6700000000748743 +42 +-0.1989123672327926 +10 +43.290355339080662 +20 +-4.6553553391541955 +10 +42.819644660960691 +20 +-4.1846446610542083 +42 +-0.1989123675267698 +10 +42.805 +20 +-4.1492893219748677 +10 +42.804999999999993 +20 +-4.0900000000748804 +10 +37.134999999999991 +20 +-4.0900000000748795 +10 +37.134999999999991 +20 +-4.1845836544748671 +10 +37.279583654339994 +20 +-4.1845836544748671 +10 +37.741066017177978 +20 +-4.6460660172969028 +42 +-0.19891236737963941 +10 +37.784999999999997 +20 +-4.752132034474883 +10 +37.784999999999997 +20 +-5.8900000000748953 +42 +-0.41421356237309503 +10 +37.484999999999992 +20 +-6.190000000074896 +10 +36.374999672379992 +20 +-6.1900000000748792 +42 +-0.41421356237308693 +10 +36.17499967237999 +20 +-5.9900000000748754 +10 +36.174999672379997 +20 +-5.9200000140748799 +10 +35.474999672379994 +20 +-5.9200000140748799 +10 +35.474999672379994 +20 +-5.9400000000748676 +10 +35.274999672379991 +20 +-5.9400000000748676 +10 +35.274999672379998 +20 +-5.705786110074893 +10 +34.799213562379997 +20 +-5.2300000000748881 +10 +34.334999999999994 +20 +-5.2300000000748881 +10 +34.334999999999994 +20 +-5.0300000000748746 +10 +36.284999999999989 +20 +-5.0300000000748915 +42 +-0.41421356237310969 +10 +36.484999999999992 +20 +-5.2300000000748881 +10 +36.484999999999992 +20 +-5.7600000000748963 +42 +0.41421356237309503 +10 +36.634999999999991 +20 +-5.9100000000748967 +10 +37.234999999999992 +20 +-5.9100000000748665 +42 +0.41421356237310375 +10 +37.384999999999998 +20 +-5.7600000000748963 +10 +37.384999999999991 +20 +-5.1171067812748916 +42 +0.19891236737965862 +10 +37.238553390593268 +20 +-4.7635533906816168 +10 +36.763578643759992 +20 +-4.2885786438748852 +42 +0.19891236741640153 +10 +36.622157287519997 +20 +-4.2300000000748881 +10 +34.334999999999994 +20 +-4.2300000000748907 +10 +34.334999999999994 +20 +-4.0900000000748804 +10 +31.905000000001991 +20 +-4.0900000000748795 +10 +31.905000000001991 +20 +-4.1000000000748926 +42 +-0.41421356237312756 +10 +31.805000000001993 +20 +-4.2000000000748923 +10 +31.655000000001991 +20 +-4.2000000000748905 +10 +31.655000000001991 +20 +-4.8000000000748777 +10 +31.805000000001993 +20 +-4.8000000000748759 +42 +-0.41421356237312756 +10 +31.905000000001991 +20 +-4.9000000000748756 +10 +31.905000000001991 +20 +-4.9500000000748834 +42 +-0.41421356237312756 +10 +31.805000000001993 +20 +-5.050000000074883 +10 +31.755000000001989 +20 +-5.0500000000748813 +10 +31.755000000001989 +20 +-5.3500000000748926 +10 +32.255000000001992 +20 +-5.3500000000748917 +42 +-0.41421356237312429 +10 +32.355000000001993 +20 +-5.4500000000748905 +10 +32.355000000001993 +20 +-7.150000000074872 +42 +-0.41421356237312429 +10 +32.255000000001992 +20 +-7.2500000000748717 +10 +31.755000000001989 +20 +-7.2500000000748699 +10 +31.755000000001989 +20 +-8.9500000000748869 +10 +32.72201157472999 +20 +-8.9500000000748869 +42 +-0.34725864946839036 +10 +32.819289162562015 +20 +-9.0268252097720136 +10 +33.22190395357255 +20 +-10.716825209774271 +42 +-0.48449594350688591 +10 +33.124626365739985 +20 +-10.840000000074889 +10 +31.755000000001989 +20 +-10.84000000007487 +10 +31.755000000001989 +20 +-15.890000000074895 +10 +31.805000000001993 +20 +-15.890000000074879 +42 +-0.41421356237314055 +10 +31.905000000001991 +20 +-15.990000000074875 +10 +31.905000000001994 +20 +-16.040000000074901 +42 +-0.41421356237314055 +10 +31.805000000001993 +20 +-16.140000000074902 +10 +31.655000000001991 +20 +-16.140000000074881 +10 +31.655000000001991 +20 +-16.740000000074886 +10 +31.805000000001993 +20 +-16.74000000007489 +42 +-0.41421356237314055 +10 +31.905000000001991 +20 +-16.840000000074884 +10 +31.905000000001991 +20 +-16.850000000074896 +10 +39.184999999999995 +20 +-16.850000000074896 +42 +-0.41421356237312756 +10 +39.284999999999989 +20 +-16.750000000074895 +10 +41.684999999999981 +20 +-16.750000000074895 +42 +-0.41421356237310802 +10 +41.784999999999989 +20 +-16.850000000074896 +10 +45.534999999999997 +20 +-16.850000000074896 +0 +LWPOLYLINE +5 +151 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +25 +70 +1 +43 +0.0 +10 +34.534999999999989 +20 +-3.940000000074857 +10 +31.805000000001993 +20 +-3.9400000000748565 +10 +31.834289322226841 +20 +-3.940000000074857 +10 +31.875710678425992 +20 +-3.9400000000748654 +10 +31.905000000001991 +20 +-3.940000000074857 +10 +34.334999999999994 +20 +-3.9400000000748752 +10 +37.134999999999991 +20 +-3.9400000000748574 +10 +42.804999999999993 +20 +-3.9400000000748752 +10 +42.704999999999991 +20 +-3.940000000074857 +10 +39.667287565549998 +20 +-3.9400000000748565 +10 +39.601143782777108 +20 +-3.9400000000748747 +10 +39.534999999999989 +20 +-3.9400000000748747 +10 +37.534999999999989 +20 +-3.940000000074857 +10 +37.468856217227085 +20 +-3.9400000000748747 +10 +37.402712434449995 +20 +-3.9400000000748747 +10 +36.384999999999991 +20 +-3.940000000074857 +10 +36.284999999999997 +20 +-3.940000000074857 +10 +36.184999999999988 +20 +-3.940000000074857 +10 +35.884999999999991 +20 +-3.940000000074857 +10 +35.784999999999997 +20 +-3.940000000074857 +10 +35.684999999999995 +20 +-3.940000000074857 +10 +34.884999999999991 +20 +-3.940000000074857 +10 +34.784999999999997 +20 +-3.940000000074857 +10 +34.684999999999988 +20 +-3.940000000074857 +10 +34.634999999999991 +20 +-3.940000000074857 +0 +LWPOLYLINE +5 +152 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +2 +70 +1 +43 +0.0 +10 +39.084999999999994 +20 +-3.9400000000748747 +10 +39.184999999999988 +20 +-3.9400000000748747 +0 +LWPOLYLINE +5 +153 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +39.084999999999994 +20 +-3.9400000000748747 +10 +37.984999999999985 +20 +-3.940000000074857 +10 +37.884999999999998 +20 +-3.940000000074857 +10 +37.984999999999985 +20 +-3.940000000074857 +0 +LWPOLYLINE +5 +154 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +2 +70 +1 +43 +0.0 +10 +41.684999999999988 +20 +-3.9400000000748747 +10 +41.784999999999989 +20 +-3.9400000000748747 +0 +LWPOLYLINE +5 +155 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +41.684999999999988 +20 +-3.9400000000748747 +10 +40.284999999999997 +20 +-3.940000000074857 +10 +40.184999999999995 +20 +-3.940000000074857 +10 +40.284999999999997 +20 +-3.940000000074857 +0 +LWPOLYLINE +5 +156 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +27 +70 +1 +43 +0.0 +10 +31.605000000001986 +20 +-8.9500000000748692 +10 +31.605000000001986 +20 +-7.2500000000748699 +10 +31.605000000001986 +20 +-7.1500000000748543 +10 +31.605000000001986 +20 +-5.4500000000748727 +10 +31.605000000001986 +20 +-5.3500000000748731 +10 +31.605000000001986 +20 +-5.0500000000748813 +10 +31.605000000001986 +20 +-5.3500000000748731 +10 +31.605000000001986 +20 +-7.1500000000748543 +10 +31.605000000001986 +20 +-7.2500000000748699 +10 +31.605000000001986 +20 +-7.3500000000748855 +10 +31.605000000001986 +20 +-9.5500000000748742 +10 +31.605000000001986 +20 +-9.6500000000748738 +10 +31.605000000001986 +20 +-9.7500000000748521 +10 +31.605000000001986 +20 +-12.390000000074863 +10 +31.605000000001986 +20 +-12.490000000074863 +10 +31.605000000001986 +20 +-12.590000000074859 +10 +31.605000000001986 +20 +-12.940000000074861 +10 +31.605000000001986 +20 +-13.04000000007486 +10 +31.605000000001986 +20 +-13.140000000074874 +10 +31.605000000001986 +20 +-13.540000000074883 +10 +31.605000000001986 +20 +-13.640000000074883 +10 +31.605000000001986 +20 +-13.740000000074861 +10 +31.605000000001986 +20 +-15.590000000074866 +10 +31.605000000001986 +20 +-15.890000000074885 +10 +31.605000000001986 +20 +-10.84000000007487 +10 +31.605000000001986 +20 +-10.740000000074872 +10 +31.605000000001986 +20 +-9.050000000074867 +0 +LWPOLYLINE +5 +157 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +31.605000000001986 +20 +-7.6500000000748614 +10 +31.605000000001986 +20 +-8.5500000000748599 +10 +31.605000000001986 +20 +-8.6500000000748596 +10 +31.605000000001986 +20 +-8.5500000000748599 +0 +LWPOLYLINE +5 +158 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +2 +70 +1 +43 +0.0 +10 +31.605000000001986 +20 +-7.6500000000748614 +10 +31.605000000001986 +20 +-7.5500000000748795 +0 +LWPOLYLINE +5 +159 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +2 +70 +1 +43 +0.0 +10 +31.605000000001986 +20 +-14.410000000074845 +10 +31.605000000001986 +20 +-14.310000000074883 +0 +LWPOLYLINE +5 +160 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +31.605000000001986 +20 +-14.410000000074845 +10 +31.605000000001986 +20 +-15.410000000074859 +10 +31.605000000001986 +20 +-15.510000000074859 +10 +31.605000000001986 +20 +-15.410000000074859 +0 +LWPOLYLINE +5 +161 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +44 +70 +1 +43 +0.0 +10 +39.184999999999988 +20 +-17.000000000074866 +10 +31.905000000001991 +20 +-17.000000000074866 +10 +31.875710678224149 +20 +-17.000000000074849 +10 +31.83428932219099 +20 +-17.000000000074856 +10 +31.805000000001993 +20 +-17.000000000074849 +10 +34.534999999999989 +20 +-17.000000000074849 +10 +34.634999999999991 +20 +-17.000000000074849 +10 +34.684999999999995 +20 +-17.000000000074849 +10 +34.784999999999982 +20 +-17.000000000074849 +10 +34.884999999999991 +20 +-17.000000000074849 +10 +35.684999999999995 +20 +-17.000000000074849 +10 +35.784999999999989 +20 +-17.000000000074849 +10 +35.884999999999991 +20 +-17.000000000074849 +10 +35.984999999999992 +20 +-17.000000000074849 +10 +35.884999999999991 +20 +-17.000000000074849 +10 +34.884999999999991 +20 +-17.000000000074849 +10 +34.784999999999982 +20 +-17.000000000074849 +10 +34.884999999999991 +20 +-17.000000000074849 +10 +35.884999999999991 +20 +-17.000000000074849 +10 +36.334999999999987 +20 +-17.000000000074849 +10 +36.434999999999988 +20 +-17.000000000074849 +10 +36.534999999999997 +20 +-17.000000000074849 +10 +37.402712434449995 +20 +-17.000000000074849 +10 +37.468856217228499 +20 +-17.000000000074866 +10 +37.534999999999989 +20 +-17.000000000074866 +10 +39.534999999999989 +20 +-17.000000000074849 +10 +39.601143782778514 +20 +-17.000000000074866 +10 +39.667287565549991 +20 +-17.000000000074866 +10 +42.185501256289996 +20 +-17.000000000074849 +10 +42.28550125628999 +20 +-17.000000000074849 +10 +42.385501256289984 +20 +-17.000000000074849 +10 +42.434999999999988 +20 +-17.000000000074849 +10 +42.534999999999989 +20 +-17.000000000074849 +10 +44.934999999999988 +20 +-17.000000000074849 +10 +45.434999999999988 +20 +-17.000000000074849 +10 +45.634999999999984 +20 +-17.000000000074866 +10 +45.584999999990671 +20 +-17.000000000074849 +10 +45.534999999999989 +20 +-17.000000000074849 +10 +41.784999999999989 +20 +-17.000000000074866 +10 +41.684999999999988 +20 +-17.000000000074866 +10 +40.284999999999997 +20 +-17.000000000074849 +10 +40.185501256289335 +20 +-17.000000000074866 +10 +40.086002512579988 +20 +-17.000000000074849 +10 +39.284999999999989 +20 +-17.000000000074866 +0 +LWPOLYLINE +5 +162 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +10 +70 +1 +43 +0.0 +10 +37.984999999999985 +20 +-17.000000000074849 +10 +38.584999999999994 +20 +-17.000000000074849 +10 +38.684999999999988 +20 +-17.000000000074849 +10 +37.684999999999995 +20 +-17.000000000074849 +10 +37.584999999999994 +20 +-17.000000000074849 +10 +37.684999999999995 +20 +-17.000000000074849 +10 +38.684999999999988 +20 +-17.000000000074849 +10 +38.784999999999989 +20 +-17.000000000074849 +10 +38.684999999999988 +20 +-17.000000000074849 +10 +38.584999999999994 +20 +-17.000000000074849 +0 +LWPOLYLINE +5 +163 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +2 +70 +1 +43 +0.0 +10 +37.984999999999985 +20 +-17.000000000074849 +10 +37.884999999999991 +20 +-17.000000000074866 +0 +LWPOLYLINE +5 +164 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +4 +70 +1 +43 +0.0 +10 +34.384999999999991 +20 +-17.000000000074866 +10 +34.084999999999994 +20 +-17.000000000074866 +10 +33.984999999999992 +20 +-17.000000000074849 +10 +34.084999999999994 +20 +-17.000000000074866 +0 +LWPOLYLINE +5 +165 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +2 +70 +1 +43 +0.0 +10 +34.484999999999992 +20 +-17.000000000074849 +10 +34.384999999999991 +20 +-17.000000000074866 +0 +LWPOLYLINE +5 +166 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +6 +70 +1 +43 +0.0 +10 +43.684999999999988 +20 +-17.000000000074849 +10 +43.584999999999994 +20 +-17.000000000074866 +10 +42.984999999999985 +20 +-17.000000000074849 +10 +42.884999999999991 +20 +-17.000000000074866 +10 +42.984999999999985 +20 +-17.000000000074849 +10 +43.584999999999994 +20 +-17.000000000074866 +0 +LWPOLYLINE +5 +167 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +5 +70 +1 +43 +0.0 +10 +45.634999999999991 +20 +-4.6700000000748787 +10 +45.634999999999991 +20 +-5.700000000074894 +10 +45.634999999999991 +20 +-5.8000000000748742 +10 +45.634999999999991 +20 +-6.420000000074868 +10 +45.634999999999991 +20 +-6.5200000000748677 +0 +ENDSEC +0 +SECTION +2 +OBJECTS +0 +DICTIONARY +5 +C +100 +AcDbDictionary +3 +ACAD_GROUP +350 +D +3 +ACAD_MLINESTYLE +350 +17 +0 +DICTIONARY +5 +D +100 +AcDbDictionary +0 +DICTIONARY +5 +1A +330 +C +100 +AcDbDictionary +0 +DICTIONARY +5 +17 +100 +AcDbDictionary +0 +ENDSEC +0 +EOF diff --git a/PCBs/FlipperZero/WiFi-Devboard-Pro/WiFi-Devboard-Pro-backups/WiFi-Devboard-Pro-2022-11-30_181218.zip b/PCBs/FlipperZero/WiFi-Devboard-Pro/WiFi-Devboard-Pro-backups/WiFi-Devboard-Pro-2022-11-30_181218.zip new file mode 100644 index 0000000..361071e Binary files /dev/null and b/PCBs/FlipperZero/WiFi-Devboard-Pro/WiFi-Devboard-Pro-backups/WiFi-Devboard-Pro-2022-11-30_181218.zip differ diff --git a/PCBs/FlipperZero/WiFi-Devboard-Pro/WiFi-Devboard-Pro-backups/WiFi-Devboard-Pro-2022-12-07_184744.zip b/PCBs/FlipperZero/WiFi-Devboard-Pro/WiFi-Devboard-Pro-backups/WiFi-Devboard-Pro-2022-12-07_184744.zip new file mode 100644 index 0000000..a2dc756 Binary files /dev/null and b/PCBs/FlipperZero/WiFi-Devboard-Pro/WiFi-Devboard-Pro-backups/WiFi-Devboard-Pro-2022-12-07_184744.zip differ diff --git a/PCBs/FlipperZero/WiFi-Devboard-Pro/WiFi-Devboard-Pro.kicad_pcb b/PCBs/FlipperZero/WiFi-Devboard-Pro/WiFi-Devboard-Pro.kicad_pcb index 28b47a1..3f61a8b 100644 --- a/PCBs/FlipperZero/WiFi-Devboard-Pro/WiFi-Devboard-Pro.kicad_pcb +++ b/PCBs/FlipperZero/WiFi-Devboard-Pro/WiFi-Devboard-Pro.kicad_pcb @@ -1,2 +1,1636 @@ -(kicad_pcb (version 20211014) (generator pcbnew) -) \ No newline at end of file +(kicad_pcb (version 20211014) (generator pcbnew) + + (general + (thickness 1.6) + ) + + (paper "A4") + (layers + (0 "F.Cu" signal) + (31 "B.Cu" signal) + (32 "B.Adhes" user "B.Adhesive") + (33 "F.Adhes" user "F.Adhesive") + (34 "B.Paste" user) + (35 "F.Paste" user) + (36 "B.SilkS" user "B.Silkscreen") + (37 "F.SilkS" user "F.Silkscreen") + (38 "B.Mask" user) + (39 "F.Mask" user) + (40 "Dwgs.User" user "User.Drawings") + (41 "Cmts.User" user "User.Comments") + (42 "Eco1.User" user "User.Eco1") + (43 "Eco2.User" user "User.Eco2") + (44 "Edge.Cuts" user) + (45 "Margin" user) + (46 "B.CrtYd" user "B.Courtyard") + (47 "F.CrtYd" user "F.Courtyard") + (48 "B.Fab" user) + (49 "F.Fab" user) + (50 "User.1" user) + (51 "User.2" user) + (52 "User.3" user) + (53 "User.4" user) + (54 "User.5" user) + (55 "User.6" user) + (56 "User.7" user) + (57 "User.8" user) + (58 "User.9" user) + ) + + (setup + (pad_to_mask_clearance 0) + (pcbplotparams + (layerselection 0x00010fc_ffffffff) + (disableapertmacros false) + (usegerberextensions false) + (usegerberattributes true) + (usegerberadvancedattributes true) + (creategerberjobfile true) + (svguseinch false) + (svgprecision 6) + (excludeedgelayer true) + (plotframeref false) + (viasonmask false) + (mode 1) + (useauxorigin false) + (hpglpennumber 1) + (hpglpenspeed 20) + (hpglpendiameter 15.000000) + (dxfpolygonmode true) + (dxfimperialunits true) + (dxfusepcbnewfont true) + (psnegative false) + (psa4output false) + (plotreference true) + (plotvalue true) + (plotinvisibletext false) + (sketchpadsonfab false) + (subtractmaskfromsilk false) + (outputformat 1) + (mirror false) + (drillshape 1) + (scaleselection 1) + (outputdirectory "") + ) + ) + + (net 0 "") + + (gr_line (start 125.01 101.39) (end 124.042988 101.39) (layer "Dwgs.User") (width 0.1) (tstamp 00614f02-5f74-445d-b8a3-482b8dcb3aea)) + (gr_line (start 171.89 108.44) (end 171.89 108.89) (layer "Dwgs.User") (width 0.1) (tstamp 0091242a-bd9b-46a6-8cd0-cc81fa5db24e)) + (gr_line (start 151.99 93.045) (end 151.99 94.635) (layer "Dwgs.User") (width 0.1) (tstamp 029d749e-2289-4769-a0ce-e768bbda0cd0)) + (gr_line (start 173.9625 102.9155) (end 174.5975 102.9155) (layer "Dwgs.User") (width 0.1) (tstamp 02bac189-ce88-4201-a986-e602f9553dc1)) + (gr_line (start 113.18 93.34) (end 113.08 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 02c7928f-d09e-4c42-87ef-b558687617a0)) + (gr_line (start 175.296 103.36) (end 173.264 103.36) (layer "Dwgs.User") (width 0.1) (tstamp 0339f2f9-1d07-4033-b6d0-c95452f524c6)) + (gr_arc (start 124.51 104.99) (mid 124.439289 104.960711) (end 124.41 104.89) (layer "Dwgs.User") (width 0.1) (tstamp 03de85dc-b128-49ac-8b1c-15f0b91dca0a)) + (gr_line (start 165.644 100.82) (end 167.676 100.82) (layer "Dwgs.User") (width 0.1) (tstamp 03f16627-7ce3-4e9a-9706-778678e98c1c)) + (gr_line (start 158.51 96.265) (end 158.96 96.265) (layer "Dwgs.User") (width 0.1) (tstamp 0432af54-cd35-4c3c-88e6-bbc1a7d2c6b4)) + (gr_line (start 178.09 103.36) (end 175.804 103.36) (layer "Dwgs.User") (width 0.1) (tstamp 04f09747-54bd-4ccb-936d-3baa80652154)) + (gr_line (start 135.017353 103.106) (end 134.802647 103.106) (layer "Dwgs.User") (width 0.1) (tstamp 056c9c13-522f-449c-84bd-83c95f6465a1)) + (gr_line (start 158.7225 102.9155) (end 159.3575 102.9155) (layer "Dwgs.User") (width 0.1) (tstamp 056f9cb3-715f-434f-b47c-815c372d9a5b)) + (gr_arc (start 111.5 103.8) (mid 111.558579 103.658579) (end 111.7 103.6) (layer "Dwgs.User") (width 0.1) (tstamp 05a3fd88-c58e-4323-96ff-70847ec682b8)) + (gr_line (start 156.19 94.635) (end 156.19 93.045) (layer "Dwgs.User") (width 0.1) (tstamp 05b39569-aaa4-4273-9b2f-9e1c6ca4bf60)) + (gr_line (start 175.7 91.34) (end 174.8 91.34) (layer "Dwgs.User") (width 0.1) (tstamp 060a9d78-785b-4e95-9f27-c70c9bd79368)) + (gr_line (start 144.8868 96.969) (end 144.8868 98.2136) (layer "Dwgs.User") (width 0.1) (tstamp 066e1992-d763-4a9e-8986-82a289c6f7d3)) + (gr_line (start 113.96 106.25) (end 119.63 106.25) (layer "Dwgs.User") (width 0.1) (tstamp 067b3699-1a46-41cc-9c7c-3cbbde83e2fb)) + (gr_line (start 156.8175 99.4484) (end 156.8175 101.2645) (layer "Dwgs.User") (width 0.1) (tstamp 06bccb0b-2f4b-4092-834b-3871294199da)) + (gr_line (start 167.676 100.82) (end 167.822647 101.074) (layer "Dwgs.User") (width 0.1) (tstamp 07678248-0774-49ca-a377-01b7e220adb6)) + (gr_arc (start 156.09 92.24) (mid 156.115882 92.243407) (end 156.14 92.253397) (layer "Dwgs.User") (width 0.1) (tstamp 07e7e87d-9255-44b7-964c-2876bb9fc44d)) + (gr_line (start 165.54 90.89) (end 165.54 91.34) (layer "Dwgs.User") (width 0.1) (tstamp 07ea9fe0-fccf-4161-ae79-4bb53994d273)) + (gr_line (start 176.07 90.89) (end 175.7 90.89) (layer "Dwgs.User") (width 0.1) (tstamp 0816bee4-5935-4741-bd0f-c370f413b02b)) + (gr_line (start 111.83 93.34) (end 111.33 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 0862a9b0-7459-4a5b-8ff5-5feddf0d18fe)) + (gr_line (start 122.102647 103.106) (end 121.956 103.36) (layer "Dwgs.User") (width 0.1) (tstamp 093c99d2-6e87-428b-a172-e8573afe4705)) + (gr_line (start 175.657353 103.106) (end 175.442647 103.106) (layer "Dwgs.User") (width 0.1) (tstamp 09986a87-49c2-4491-b1b1-87dfad52ab95)) + (gr_line (start 125.01 94.45) (end 124.96 94.45) (layer "Dwgs.User") (width 0.1) (tstamp 0a2b5435-df6f-448f-96cd-9db62b5b9e70)) + (gr_line (start 122.38 93.34) (end 122.68 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 0aed48c5-a79a-4a41-bde0-89e9736637c1)) + (gr_line (start 118.08 93.34) (end 119.08 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 0bedad37-3e3c-4266-b4c1-07c7e3d0463e)) + (gr_line (start 175.442647 103.106) (end 175.296 103.36) (layer "Dwgs.User") (width 0.1) (tstamp 0c190730-a9e0-4c4a-8e33-74ee97fb990f)) + (gr_arc (start 154.11 100.99) (mid 154.36 100.74) (end 154.61 100.99) (layer "Dwgs.User") (width 0.1) (tstamp 0da7e2aa-d9f3-4593-ac1b-d89c546ab178)) + (gr_line (start 153.61 100.99) (end 154.11 100.99) (layer "Dwgs.User") (width 0.1) (tstamp 0daddb18-1491-4767-9ffd-66c8a8ce3cbd)) + (gr_line (start 170.99 108.89) (end 170.99 108.44) (layer "Dwgs.User") (width 0.1) (tstamp 0de56762-ce56-43f6-b2d4-e1179688ff91)) + (gr_line (start 178.09 100.82) (end 178.09 103.36) (layer "Dwgs.User") (width 0.1) (tstamp 0e37a1ae-bf06-4c70-ae4c-e7cee553b0b3)) + (gr_line (start 120.88 93.34) (end 120.43 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 0e4017fd-02b7-4b3e-b764-397cfccac2d2)) + (gr_line (start 124.86 93.34) (end 124.889289 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 0ea92114-4add-4ede-abc4-5938831a4fe1)) + (gr_line (start 152.73 92.24) (end 155.45 92.24) (layer "Dwgs.User") (width 0.1) (tstamp 0ecfe0e1-844f-49ac-b5dc-cd55b19a7c78)) + (gr_line (start 170.577353 103.106) (end 170.362647 103.106) (layer "Dwgs.User") (width 0.1) (tstamp 0f262423-d4d1-4f04-805d-93d3f5b41978)) + (gr_line (start 149.1032 98.2136) (end 149.1032 96.969) (layer "Dwgs.User") (width 0.1) (tstamp 0fa241a2-e684-4224-bccf-feed816795b0)) + (gr_line (start 125.16 100.79) (end 125.16 100.69) (layer "Dwgs.User") (width 0.1) (tstamp 0fe1f74e-4cc8-412d-b8bc-832159a1ad3e)) + (gr_line (start 164.64 90.89) (end 164.27 90.89) (layer "Dwgs.User") (width 0.1) (tstamp 101131db-475d-4275-89d4-ac43ee9a25d5)) + (gr_line (start 163.37 108.44) (end 164.27 108.44) (layer "Dwgs.User") (width 0.1) (tstamp 1087999d-983e-42bf-b325-b81c766947cc)) + (gr_line (start 132.624 103.36) (end 132.477353 103.106) (layer "Dwgs.User") (width 0.1) (tstamp 10d4acf9-eb07-4704-a954-054e4658f650)) + (gr_line (start 170.362647 101.074) (end 170.577353 101.074) (layer "Dwgs.User") (width 0.1) (tstamp 10e85d49-8c1d-4e38-920c-77246389daec)) + (gr_line (start 171.89 90.89) (end 171.89 91.34) (layer "Dwgs.User") (width 0.1) (tstamp 115c2483-0d3d-4658-9c56-55683456b2f9)) + (gr_line (start 113.08 93.34) (end 113.18 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 1292b9fb-45f9-4291-9d3e-a52497cdea91)) + (gr_line (start 158.96 100.075) (end 158.96 100.975) (layer "Dwgs.User") (width 0.1) (tstamp 12fc5fae-2589-481a-9c5c-1325ed3bb3b8)) + (gr_line (start 171.89 91.34) (end 170.99 91.34) (layer "Dwgs.User") (width 0.1) (tstamp 133e4738-5308-4c8f-a278-ff3a4b573a42)) + (gr_arc (start 111.5 104.49) (mid 111.456066 104.596066) (end 111.35 104.64) (layer "Dwgs.User") (width 0.1) (tstamp 134ebdd2-d265-4b1a-8213-3e042a51f566)) + (gr_line (start 167.676 103.36) (end 165.644 103.36) (layer "Dwgs.User") (width 0.1) (tstamp 135dc062-d77d-4089-9b0c-b888ac79f63d)) + (gr_line (start 129.576 100.82) (end 129.722647 101.074) (layer "Dwgs.User") (width 0.1) (tstamp 141d55e7-f9fa-486e-a08c-0c5785aa9581)) + (gr_line (start 118.78 93.34) (end 118.18 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 146b4319-9474-44ef-b1d5-69dbae1dd3b4)) + (gr_line (start 164.27 91.34) (end 163.37 91.34) (layer "Dwgs.User") (width 0.1) (tstamp 15849db9-220e-4afd-b7a0-07e5cbc925e5)) + (gr_line (start 125.16 103.09) (end 125.16 103.19) (layer "Dwgs.User") (width 0.1) (tstamp 15b3207d-6547-4224-a45d-823705a30761)) + (gr_line (start 158.96 97.535) (end 158.96 98.435) (layer "Dwgs.User") (width 0.1) (tstamp 1641185a-e805-403b-b872-eb3450148cc8)) + (gr_line (start 134.802647 101.074) (end 135.017353 101.074) (layer "Dwgs.User") (width 0.1) (tstamp 16e7dd30-8a60-41e6-8325-60db1ff50bda)) + (gr_line (start 145.2932 98.2136) (end 145.2932 96.969) (layer "Dwgs.User") (width 0.1) (tstamp 16fbbcc3-471d-4df7-bd39-383fab759fde)) + (gr_line (start 172.26 90.89) (end 171.89 90.89) (layer "Dwgs.User") (width 0.1) (tstamp 1807c891-5ccf-491b-b7cb-6605d0030f30)) + (gr_line (start 154.86 98.79) (end 154.61 98.79) (layer "Dwgs.User") (width 0.1) (tstamp 180f785b-776f-4bd7-9484-793776580425)) + (gr_line (start 165.282647 101.074) (end 165.497353 101.074) (layer "Dwgs.User") (width 0.1) (tstamp 181135d6-242b-4baf-94b0-054802ef6df0)) + (gr_line (start 132.116 103.36) (end 130.084 103.36) (layer "Dwgs.User") (width 0.1) (tstamp 18282a1a-7012-465b-b257-9994d1176f23)) + (gr_arc (start 119.526447 105.576447) (mid 119.418063 105.414235) (end 119.38 105.222893) (layer "Dwgs.User") (width 0.1) (tstamp 199f157d-6f84-41da-be4c-6e21ffdc4f00)) + (gr_line (start 125.16 94.45) (end 125.16 99.5) (layer "Dwgs.User") (width 0.1) (tstamp 19b27451-36d1-4db8-a770-a2f4704d803b)) + (gr_line (start 118.18 93.34) (end 118.78 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 1a15fd52-148b-4d62-9349-832a33a996d2)) + (gr_line (start 119.416 100.82) (end 119.562647 101.074) (layer "Dwgs.User") (width 0.1) (tstamp 1a65f33c-7c56-44cc-9cf1-6ac54f672e8b)) + (gr_line (start 168.45 108.44) (end 169.35 108.44) (layer "Dwgs.User") (width 0.1) (tstamp 1ba339fd-3eed-4093-adef-1f8b6939e3c2)) + (gr_line (start 168.08 108.89) (end 168.45 108.89) (layer "Dwgs.User") (width 0.1) (tstamp 1cdb9155-c146-40d9-bead-b709bf7a6467)) + (gr_line (start 158.51 101.345) (end 158.96 101.345) (layer "Dwgs.User") (width 0.1) (tstamp 1d052412-811d-4384-b62d-b10970534fb5)) + (gr_line (start 124.930711 93.34) (end 124.96 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 1d4ec9d6-b4f1-4935-a655-c469bc01feb9)) + (gr_line (start 155.337353 101.074) (end 155.484 100.82) (layer "Dwgs.User") (width 0.1) (tstamp 1d5c7df0-522c-4a10-9a69-07abea9a1183)) + (gr_line (start 144.0232 102.811) (end 144.0232 101.5664) (layer "Dwgs.User") (width 0.1) (tstamp 1dc423f3-1741-4cb4-aa3d-a702d125d769)) + (gr_line (start 121.49 104.4) (end 121.49 104.634214) (layer "Dwgs.User") (width 0.1) (tstamp 1e153892-978d-4400-8801-39c4a5561d8b)) + (gr_line (start 129.937353 103.106) (end 129.722647 103.106) (layer "Dwgs.User") (width 0.1) (tstamp 1e9dcbc0-ed04-41e3-9512-fbb37cd7d179)) + (gr_line (start 152.09 92.24) (end 152.73 92.24) (layer "Dwgs.User") (width 0.1) (tstamp 1eea39a5-2762-4e3a-8c74-b0e5bc37cc89)) + (gr_line (start 122.08 93.34) (end 121.98 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 206ace7c-6dae-4c64-b30f-758119e57387)) + (gr_line (start 130.7825 99.4484) (end 131.4175 99.4484) (layer "Dwgs.User") (width 0.1) (tstamp 2097c02a-9419-426d-a010-cdecd44e7e36)) + (gr_line (start 120.98 106.4) (end 121.08 106.4) (layer "Dwgs.User") (width 0.1) (tstamp 20a43104-38cb-4a67-8590-5917234169dc)) + (gr_line (start 164.4375 102.9155) (end 164.4375 104.7316) (layer "Dwgs.User") (width 0.1) (tstamp 2103272c-7211-4351-8c30-d9ee75c2fa7e)) + (gr_line (start 157.662647 101.074) (end 157.877353 101.074) (layer "Dwgs.User") (width 0.1) (tstamp 211ba5f5-6627-4b10-b9d4-2b719a124b05)) + (gr_line (start 162.742647 101.074) (end 162.957353 101.074) (layer "Dwgs.User") (width 0.1) (tstamp 2143a25a-25e8-4e2e-9312-ce2f7400ce5a)) + (gr_line (start 156.09 107.54) (end 155.45 107.54) (layer "Dwgs.User") (width 0.1) (tstamp 218239a9-f46b-4a60-abfb-8e61afe4c024)) + (gr_line (start 126.3375 101.2645) (end 125.7025 101.2645) (layer "Dwgs.User") (width 0.1) (tstamp 21846961-2a78-4e46-8242-5b4de77ca82d)) + (gr_line (start 158.96 106.055) (end 158.51 106.055) (layer "Dwgs.User") (width 0.1) (tstamp 21de29f1-55e6-491f-9b72-2d0cf15d30d9)) + (gr_line (start 118.88 93.34) (end 118.78 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 21fe1bc1-d1c8-4902-93fe-7cb124f6bf69)) + (gr_line (start 125.16 104.99) (end 125.16 103.19) (layer "Dwgs.User") (width 0.1) (tstamp 2223eeb5-aa83-44a0-a53a-f71aacabab9c)) + (gr_line (start 174.5975 102.9155) (end 174.5975 104.7316) (layer "Dwgs.User") (width 0.1) (tstamp 226e6848-5ca6-48e1-bb24-ee9637a3e720)) + (gr_line (start 159.3575 102.9155) (end 159.3575 104.7316) (layer "Dwgs.User") (width 0.1) (tstamp 22785b00-396f-44a8-8e08-62628c54033a)) + (gr_line (start 173.16 108.44) (end 173.16 108.89) (layer "Dwgs.User") (width 0.1) (tstamp 22e92cb2-fddd-4edc-a5bc-370417db5793)) + (gr_line (start 132.624 100.82) (end 134.656 100.82) (layer "Dwgs.User") (width 0.1) (tstamp 22f315f8-0151-4d27-8242-3486735e4932)) + (gr_line (start 118.78 93.34) (end 118.88 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 231482ff-1119-4860-be3c-5d6a4f33d8bb)) + (gr_line (start 122.68 93.34) (end 122.38 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 2367e08a-8f8d-4bc0-b6ce-e2a4cddd902f)) + (gr_line (start 124.642647 101.074) (end 124.857353 101.074) (layer "Dwgs.User") (width 0.1) (tstamp 23714fc1-59db-4500-9d38-af86ea69fe3f)) + (gr_line (start 118.08 93.34) (end 117.98 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 239e2fad-43c2-4c5d-b01d-958b74c9d73b)) + (gr_line (start 177.1375 101.2645) (end 176.5025 101.2645) (layer "Dwgs.User") (width 0.1) (tstamp 23b2684a-2e45-4486-8777-c94a6d847baf)) + (gr_line (start 166.9775 99.4484) (end 166.9775 101.2645) (layer "Dwgs.User") (width 0.1) (tstamp 2415f537-fa6d-4c04-bd97-00b9f7ab939d)) + (gr_line (start 124.496 103.36) (end 122.464 103.36) (layer "Dwgs.User") (width 0.1) (tstamp 245afab8-87c2-4797-af78-aa00d5229c94)) + (gr_line (start 125.16 103.09) (end 125.16 102.99) (layer "Dwgs.User") (width 0.1) (tstamp 2498638f-f5bc-47e0-a9d3-49191018a41a)) + (gr_arc (start 156.14 92.253397) (mid 156.176603 92.29) (end 156.19 92.34) (layer "Dwgs.User") (width 0.1) (tstamp 24b42847-745f-4b13-9d2d-3ca8b56bc9de)) + (gr_arc (start 120.48 105.31) (mid 120.338579 105.251421) (end 120.28 105.11) (layer "Dwgs.User") (width 0.1) (tstamp 25f3023a-0b40-4b57-b672-1aea8836d4eb)) + (gr_line (start 174.8 90.89) (end 174.43 90.89) (layer "Dwgs.User") (width 0.1) (tstamp 260c26af-1e30-4624-94a4-7cbfebc53f93)) + (gr_line (start 125.01 105.29) (end 125.01 104.99) (layer "Dwgs.User") (width 0.1) (tstamp 2621aeaa-9788-4950-9c8a-57743e174960)) + (gr_arc (start 124.96 105.54) (mid 124.889289 105.510711) (end 124.86 105.44) (layer "Dwgs.User") (width 0.1) (tstamp 26c50088-80ff-43fa-a13b-801600e7555b)) + (gr_line (start 155.122647 103.106) (end 154.976 103.36) (layer "Dwgs.User") (width 0.1) (tstamp 26cd24ad-dc7e-4f22-8cf0-d09179b0d265)) + (gr_line (start 149.1032 102.811) (end 149.1032 101.5664) (layer "Dwgs.User") (width 0.1) (tstamp 27101d2b-1f80-4d40-be5b-78bdcb31c291)) + (gr_line (start 161.73 91.34) (end 160.83 91.34) (layer "Dwgs.User") (width 0.1) (tstamp 2733a655-db42-498b-a705-184e4fe256a3)) + (gr_line (start 115.08 106.4) (end 116.48 106.4) (layer "Dwgs.User") (width 0.1) (tstamp 279cd597-6735-4af4-af86-33cfd2693447)) + (gr_line (start 160.202647 103.106) (end 160.056 103.36) (layer "Dwgs.User") (width 0.1) (tstamp 27fc8656-6226-4381-8e8c-fcbb6b9cbbc0)) + (gr_line (start 165.497353 103.106) (end 165.282647 103.106) (layer "Dwgs.User") (width 0.1) (tstamp 2904c703-ae82-4d76-85d3-cfc7aa518669)) + (gr_line (start 120.58 106.4) (end 120.88 106.4) (layer "Dwgs.User") (width 0.1) (tstamp 29af8fa6-318a-4068-993d-88e7a24f7791)) + (gr_line (start 129.722647 103.106) (end 129.576 103.36) (layer "Dwgs.User") (width 0.1) (tstamp 29ba223f-0062-42d7-819b-390aa3bcacc3)) + (gr_line (start 158.51 90.89) (end 158.51 93.725) (layer "Dwgs.User") (width 0.1) (tstamp 29ec1054-96e5-4371-8fe7-f31c027b27f9)) + (gr_arc (start 152.09 107.54) (mid 152.019289 107.510711) (end 151.99 107.44) (layer "Dwgs.User") (width 0.1) (tstamp 2aa21e55-25c6-4cf4-bd8a-94f164963f6d)) + (gr_line (start 151.99 107.295) (end 151.99 107.44) (layer "Dwgs.User") (width 0.1) (tstamp 2adf9a42-71f2-422d-9815-628bfa0df6ad)) + (gr_line (start 158.96 98.805) (end 158.96 99.705) (layer "Dwgs.User") (width 0.1) (tstamp 2b3b0810-cd1d-48a1-a104-fe015cf2af3c)) + (gr_line (start 174.8 91.34) (end 174.8 90.89) (layer "Dwgs.User") (width 0.1) (tstamp 2b5ef57e-9829-4c8c-a772-0c450fa178e8)) + (gr_line (start 120.38 106.4) (end 120.48 106.4) (layer "Dwgs.User") (width 0.1) (tstamp 2bf286a9-8d8a-4f20-af25-6a1b3ef01eaf)) + (gr_arc (start 156.14 107.526603) (mid 156.115882 107.536593) (end 156.09 107.54) (layer "Dwgs.User") (width 0.1) (tstamp 2c6fedfa-d124-4a32-aaf9-1170178a9e41)) + (gr_line (start 111.33 93.34) (end 111.13 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 2c73e00f-5d35-4d88-becf-fdafa0c411c7)) + (gr_line (start 176.07 91.34) (end 176.07 90.89) (layer "Dwgs.User") (width 0.1) (tstamp 2ca7d35c-f03b-45eb-bc5e-72292d02981d)) + (gr_line (start 156.09 104.34) (end 152.09 104.34) (layer "Dwgs.User") (width 0.1) (tstamp 2d54211d-88b2-466c-9078-d1f5c442f872)) + (gr_line (start 125.16 96.6) (end 125.16 94.75) (layer "Dwgs.User") (width 0.1) (tstamp 2d950027-8eed-46d2-abb8-2762744219c2)) + (gr_line (start 173.53 90.89) (end 173.16 90.89) (layer "Dwgs.User") (width 0.1) (tstamp 2d9bce5f-b18b-47a2-9654-99086bc7c8ca)) + (gr_line (start 119.63 106.25) (end 119.63 106.155416) (layer "Dwgs.User") (width 0.1) (tstamp 2dd2edde-b79d-4ec7-87aa-5955ab5302f8)) + (gr_line (start 145.2932 101.5664) (end 144.8868 101.5664) (layer "Dwgs.User") (width 0.1) (tstamp 2dd9a5be-3aa9-4cf6-850b-b3df04cedb00)) + (gr_line (start 148.6968 102.811) (end 149.1032 102.811) (layer "Dwgs.User") (width 0.1) (tstamp 2e7f3dd4-50ff-427a-80eb-8563e69a085c)) + (gr_line (start 114.98 106.4) (end 115.08 106.4) (layer "Dwgs.User") (width 0.1) (tstamp 2e955124-6939-410c-81be-086896fd0cd7)) + (gr_line (start 153.6425 104.7316) (end 153.6425 102.9155) (layer "Dwgs.User") (width 0.1) (tstamp 2eb44e1a-4042-4ea6-aca2-4836a6ec84e9)) + (gr_line (start 125.16 103.19) (end 125.16 103.09) (layer "Dwgs.User") (width 0.1) (tstamp 2f1a67f5-44b6-4eb7-b122-776c3e081dbc)) + (gr_line (start 154.2775 102.9155) (end 154.2775 104.7316) (layer "Dwgs.User") (width 0.1) (tstamp 2f21cb60-1df5-4469-8858-6fe21b88fa8a)) + (gr_line (start 143.6168 102.811) (end 144.0232 102.811) (layer "Dwgs.User") (width 0.1) (tstamp 2f389684-fc2a-46a1-b11d-5ff1e4efe356)) + (gr_line (start 173.53 108.89) (end 173.53 108.44) (layer "Dwgs.User") (width 0.1) (tstamp 2f51df0b-67e2-48cd-baf9-810701c16be9)) + (gr_line (start 137.45 103.36) (end 135.164 103.36) (layer "Dwgs.User") (width 0.1) (tstamp 2f5f8e07-82d7-4697-8ac1-989270a8e323)) + (gr_line (start 151.99 104.44) (end 151.99 104.585) (layer "Dwgs.User") (width 0.1) (tstamp 2fb7c72d-0d63-4df2-879e-15ff023fd1c7)) + (gr_line (start 157.877353 101.074) (end 158.024 100.82) (layer "Dwgs.User") (width 0.1) (tstamp 306245f6-c9a6-4171-8c7a-27ad4c131cc8)) + (gr_line (start 156.19 104.44) (end 156.19 107.44) (layer "Dwgs.User") (width 0.1) (tstamp 3097fea7-46a7-47a9-9cae-e148c8b5c995)) + (gr_line (start 125.16 101.39) (end 125.16 103.09) (layer "Dwgs.User") (width 0.1) (tstamp 314fcc6b-e3a4-4081-8c91-6170b707f3b4)) + (gr_line (start 120.78 93.34) (end 120.88 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 31e8e591-b069-4d14-81fb-1e93e03fe645)) + (gr_line (start 170.99 108.44) (end 171.89 108.44) (layer "Dwgs.User") (width 0.1) (tstamp 31f320f8-9fca-458c-80c9-a63045dda05e)) + (gr_line (start 163.37 90.89) (end 163 90.89) (layer "Dwgs.User") (width 0.1) (tstamp 31fb150b-1634-44a3-bbf0-4f27407886b5)) + (gr_line (start 167.18 90.89) (end 166.81 90.89) (layer "Dwgs.User") (width 0.1) (tstamp 32152384-5f30-4790-a5a7-40a77da6c53b)) + (gr_line (start 177.1375 99.4484) (end 177.1375 101.2645) (layer "Dwgs.User") (width 0.1) (tstamp 32a2f93b-16df-4770-bc80-527fdb2ae15f)) + (gr_line (start 111.28 105.67) (end 111.78 105.67) (layer "Dwgs.User") (width 0.1) (tstamp 32f61989-73fd-4834-bc42-216f4a71d9ad)) + (gr_line (start 122.43 106.25) (end 124.86 106.25) (layer "Dwgs.User") (width 0.1) (tstamp 33112a1f-3ef4-4453-945b-eafb5950befb)) + (gr_line (start 158.96 103.885) (end 158.96 104.785) (layer "Dwgs.User") (width 0.1) (tstamp 331e4b06-587c-447e-bea7-ab3ccd3f7d67)) + (gr_line (start 120.88 106.4) (end 120.98 106.4) (layer "Dwgs.User") (width 0.1) (tstamp 3334571c-c306-4b79-9192-949abe8085c3)) + (gr_line (start 151.99 104.585) (end 151.99 105.145) (layer "Dwgs.User") (width 0.1) (tstamp 346289f5-7fed-42d0-915e-ef27086b0782)) + (gr_line (start 170.99 90.89) (end 170.62 90.89) (layer "Dwgs.User") (width 0.1) (tstamp 3472ac51-2496-4774-b525-ca48b4eac389)) + (gr_line (start 121.88 93.34) (end 120.88 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 34937f78-0cd7-450b-8935-ad6822032278)) + (gr_line (start 165.54 91.34) (end 164.64 91.34) (layer "Dwgs.User") (width 0.1) (tstamp 34f494d3-f727-4e92-b04b-bb02d398ea06)) + (gr_line (start 123.945711 101.313175) (end 123.543096 99.623175) (layer "Dwgs.User") (width 0.1) (tstamp 35318ab5-9d7c-4bdd-a72a-c62185738587)) + (gr_line (start 176.97 108.89) (end 184.01 108.89) (layer "Dwgs.User") (width 0.1) (tstamp 3585a139-cfc6-4b57-99ce-0163d84caa4b)) + (gr_line (start 160.564 103.36) (end 160.417353 103.106) (layer "Dwgs.User") (width 0.1) (tstamp 35fc5917-85ed-430a-af29-e1aaa9fddb54)) + (gr_line (start 152.73 95.44) (end 152.09 95.44) (layer "Dwgs.User") (width 0.1) (tstamp 36e55dc7-b8dd-4b75-aa11-1a977430e4af)) + (gr_line (start 156.19 93.045) (end 156.19 92.485) (layer "Dwgs.User") (width 0.1) (tstamp 379db743-d2de-4c85-9575-f43ed26c5e74)) + (gr_line (start 162.1 108.44) (end 163 108.44) (layer "Dwgs.User") (width 0.1) (tstamp 37a423bc-f22b-4f78-8391-c64cc41bfdd6)) + (gr_line (start 130.7825 101.2645) (end 130.7825 99.4484) (layer "Dwgs.User") (width 0.1) (tstamp 38559462-8913-458e-9fcc-77f1adc4f527)) + (gr_line (start 127.397353 103.106) (end 127.182647 103.106) (layer "Dwgs.User") (width 0.1) (tstamp 388986aa-d9a5-485c-b2a5-20f9608e57de)) + (gr_line (start 118.08 93.34) (end 118.18 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 38cc4717-2b78-451d-a8e8-c30858d9cd68)) + (gr_line (start 173.16 108.89) (end 173.53 108.89) (layer "Dwgs.User") (width 0.1) (tstamp 38de0c27-43f9-4d0c-b62d-48e6b8ab2200)) + (gr_line (start 118.78 106.4) (end 117.68 106.4) (layer "Dwgs.User") (width 0.1) (tstamp 38f1f681-d503-49fe-ab87-4225bebb7b32)) + (gr_line (start 165.91 108.89) (end 165.91 108.44) (layer "Dwgs.User") (width 0.1) (tstamp 3915f1cf-e224-42a7-8e50-b5aa000e1dd3)) + (gr_line (start 159.56 90.89) (end 158.51 90.89) (layer "Dwgs.User") (width 0.1) (tstamp 393f0e56-c2d5-4ea4-8463-50265bc94d2d)) + (gr_line (start 170.724 103.36) (end 170.577353 103.106) (layer "Dwgs.User") (width 0.1) (tstamp 39527c7c-05aa-4994-8d55-39b3fd9e47ff)) + (gr_arc (start 124.042988 101.39) (mid 123.981016 101.368473) (end 123.945711 101.313175) (layer "Dwgs.User") (width 0.1) (tstamp 39d4d534-3997-4fb4-b0b6-d0e644ff29b2)) + (gr_line (start 118.18 93.34) (end 118.08 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 39e0f00a-b805-421f-8ed9-5c24ef6aaebe)) + (gr_line (start 125.16 102.69) (end 125.16 101.79) (layer "Dwgs.User") (width 0.1) (tstamp 3a04ac0e-2ee8-4210-b45b-490cd2425450)) + (gr_line (start 158.51 103.515) (end 158.51 103.885) (layer "Dwgs.User") (width 0.1) (tstamp 3a07246e-3a61-43dd-8b09-0bdf03c3e6f3)) + (gr_line (start 168.08 91.34) (end 167.18 91.34) (layer "Dwgs.User") (width 0.1) (tstamp 3a43f2ef-4839-435a-bede-c90252339a51)) + (gr_line (start 117.163856 106.4) (end 117.23 106.4) (layer "Dwgs.User") (width 0.1) (tstamp 3a9c4d0d-b8e3-4e3b-8868-df708ade9fd9)) + (gr_line (start 143.6168 96.969) (end 143.6168 98.2136) (layer "Dwgs.User") (width 0.1) (tstamp 3ae98a70-72b8-4d72-8f0c-ecef7b1ca6d6)) + (gr_line (start 127.544 103.36) (end 127.397353 103.106) (layer "Dwgs.User") (width 0.1) (tstamp 3aed5f29-363b-4eca-a21e-756b68fe8f23)) + (gr_line (start 119.777353 101.074) (end 119.924 100.82) (layer "Dwgs.User") (width 0.1) (tstamp 3b0df787-46aa-47b2-a11b-96df99f09a2e)) + (gr_line (start 160.83 90.89) (end 160.46 90.89) (layer "Dwgs.User") (width 0.1) (tstamp 3b6b0ef8-cb49-4806-a385-9d93130ffdc0)) + (gr_line (start 119.362288 106.4) (end 120.38 106.4) (layer "Dwgs.User") (width 0.1) (tstamp 3b8985d9-c9ce-4e5c-9b0f-dabde5c52713)) + (gr_line (start 160.202647 101.074) (end 160.417353 101.074) (layer "Dwgs.User") (width 0.1) (tstamp 3be5bd27-9454-4a5f-b633-97d435ecd4be)) + (gr_line (start 135.164 100.82) (end 137.45 100.82) (layer "Dwgs.User") (width 0.1) (tstamp 3c6ce34b-07ed-4efb-887e-8dcc88f1612e)) + (gr_line (start 122.102647 101.074) (end 122.317353 101.074) (layer "Dwgs.User") (width 0.1) (tstamp 3d219812-261f-4741-b119-3a36b9052a99)) + (gr_line (start 115.08 93.34) (end 116.48 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 3db2b854-567f-4631-b764-bc8442698c9a)) + (gr_line (start 158.51 97.165) (end 158.51 97.535) (layer "Dwgs.User") (width 0.1) (tstamp 3e63fcaa-261d-4d3c-a5b9-9e80616e71a6)) + (gr_line (start 167.18 108.44) (end 168.08 108.44) (layer "Dwgs.User") (width 0.1) (tstamp 3e93cc50-fa1e-445b-8e48-b92594ec9006)) + (gr_line (start 128.8775 102.9155) (end 128.8775 104.7316) (layer "Dwgs.User") (width 0.1) (tstamp 3f2f1aeb-24f2-4597-bbb9-54b12c752d6f)) + (gr_line (start 154.976 103.36) (end 152.69 103.36) (layer "Dwgs.User") (width 0.1) (tstamp 3f473a8d-2328-4446-9e36-aaf72c0dfceb)) + (gr_line (start 156.1825 99.4484) (end 156.8175 99.4484) (layer "Dwgs.User") (width 0.1) (tstamp 3f787304-0f09-428f-9615-a178d53b5ed2)) + (gr_line (start 164.64 108.44) (end 165.54 108.44) (layer "Dwgs.User") (width 0.1) (tstamp 4055fe96-6cd0-4098-a3eb-28bdaf898065)) + (gr_line (start 121.88 93.34) (end 121.08 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 407396c7-a5e2-4ecf-b616-5f9c7dafa52b)) + (gr_line (start 121.956 103.36) (end 119.924 103.36) (layer "Dwgs.User") (width 0.1) (tstamp 40f2d922-dc77-4165-a4ba-77aa54d0f1fa)) + (gr_line (start 158.51 100.075) (end 158.96 100.075) (layer "Dwgs.User") (width 0.1) (tstamp 41456f29-a703-4d12-85d0-c21ea7c0a452)) + (gr_line (start 124.642647 103.106) (end 124.496 103.36) (layer "Dwgs.User") (width 0.1) (tstamp 435960f9-5f02-4a62-b70b-90c1310d341d)) + (gr_line (start 124.86 94.35) (end 124.86 94.3) (layer "Dwgs.User") (width 0.1) (tstamp 4373547b-d3a9-4735-9a12-7e388d4b1d9d)) + (gr_line (start 113.78 93.34) (end 113.18 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 4373f5d0-1e9d-489b-aa26-9288beeb8cb3)) + (gr_line (start 174.5975 104.7316) (end 173.9625 104.7316) (layer "Dwgs.User") (width 0.1) (tstamp 43d030b0-c46c-4448-bc9e-987f12c7559d)) + (gr_line (start 125.16 97.2) (end 125.16 96.8) (layer "Dwgs.User") (width 0.1) (tstamp 43d1f199-f4ee-4683-993f-3ccce3985416)) + (gr_line (start 158.51 104.785) (end 158.51 105.155) (layer "Dwgs.User") (width 0.1) (tstamp 441f9c55-be25-4fae-8b9b-6a71ad3b0b86)) + (gr_line (start 170.724 100.82) (end 172.756 100.82) (layer "Dwgs.User") (width 0.1) (tstamp 45005e12-36a9-4853-a83d-a87ffad800b4)) + (gr_line (start 119.08 93.34) (end 119.18 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 45108c5b-3874-4f53-b99e-7b06655c64f6)) + (gr_line (start 122.43 105.31) (end 120.48 105.31) (layer "Dwgs.User") (width 0.1) (tstamp 453a77ad-fac0-4cd4-9fca-6e04f8cfa3e5)) + (gr_line (start 155.337353 103.106) (end 155.122647 103.106) (layer "Dwgs.User") (width 0.1) (tstamp 45580b2c-f853-4bae-b48d-8b2b7a8c9649)) + (gr_line (start 132.477353 103.106) (end 132.262647 103.106) (layer "Dwgs.User") (width 0.1) (tstamp 4572eec0-5fb0-46c6-89b0-d3341f37f9b8)) + (gr_line (start 124.889289 106.4) (end 124.86 106.4) (layer "Dwgs.User") (width 0.1) (tstamp 45d251bd-4b8c-43e0-a1a3-865b3e4a5a83)) + (gr_line (start 152.86 100.99) (end 153.11 100.99) (layer "Dwgs.User") (width 0.1) (tstamp 465b9a35-7fb3-44cf-baad-d436034be791)) + (gr_line (start 152.09 104.34) (end 152.73 104.34) (layer "Dwgs.User") (width 0.1) (tstamp 4660c6bf-e69d-4a4d-bdfe-d125b039e05b)) + (gr_line (start 117.163856 93.34) (end 117.097712 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 4669b17e-5fae-4b5d-94be-7208bcd71fb5)) + (gr_line (start 111.35 104.64) (end 111.28 104.64) (layer "Dwgs.User") (width 0.1) (tstamp 46988679-cc79-4024-bbc1-b1f167609765)) + (gr_line (start 157.662647 103.106) (end 157.516 103.36) (layer "Dwgs.User") (width 0.1) (tstamp 47d22e24-7c7f-4617-a22e-884660a7a8ff)) + (gr_line (start 113.18 93.34) (end 113.78 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 485ee4d3-27de-4a80-88eb-91e13dbef2a5)) + (gr_line (start 111.5 103.8) (end 111.5 104.49) (layer "Dwgs.User") (width 0.1) (tstamp 48c77641-1046-44b0-bae8-52da953ea633)) + (gr_line (start 117.68 106.4) (end 117.58 106.4) (layer "Dwgs.User") (width 0.1) (tstamp 494350ab-d17d-4de3-8b96-f15451154d6a)) + (gr_line (start 132.262647 103.106) (end 132.116 103.36) (layer "Dwgs.User") (width 0.1) (tstamp 497283dc-5316-4045-8e79-68a8bb50f4f5)) + (gr_line (start 117.48 93.59) (end 115.08 93.59) (layer "Dwgs.User") (width 0.1) (tstamp 49bc590d-585a-47df-bda3-e46f7daa6990)) + (gr_line (start 169.72 108.89) (end 169.72 108.44) (layer "Dwgs.User") (width 0.1) (tstamp 4a333138-062a-4541-87e1-d6ef03b1e3dd)) + (gr_line (start 119.23 106.4) (end 119.296144 106.4) (layer "Dwgs.User") (width 0.1) (tstamp 4b325ae5-e73e-4571-bbb6-af750e7a58b8)) + (gr_line (start 151.99 95.195) (end 151.99 95.34) (layer "Dwgs.User") (width 0.1) (tstamp 4b64ce61-cd9f-4068-855a-a918a6209675)) + (gr_line (start 173.53 108.44) (end 174.43 108.44) (layer "Dwgs.User") (width 0.1) (tstamp 4ccb0e93-36f7-4d7b-baba-2457a90267b7)) + (gr_line (start 124.889289 93.34) (end 124.930711 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 4cfa277c-b6f4-4575-8b74-ea83242e8813)) + (gr_line (start 124.86 106.4) (end 122.43 106.4) (layer "Dwgs.User") (width 0.1) (tstamp 4d8a27f3-5994-4c02-859b-09c0a8d34a6d)) + (gr_line (start 132.116 100.82) (end 132.262647 101.074) (layer "Dwgs.User") (width 0.1) (tstamp 4dee428b-9873-45f7-9e00-b3849b95bf1c)) + (gr_line (start 111.23 93.49) (end 111.23 93.7) (layer "Dwgs.User") (width 0.1) (tstamp 4e3d105c-3308-491c-a0aa-594e6247a479)) + (gr_line (start 125.16 95.93) (end 125.16 96.03) (layer "Dwgs.User") (width 0.1) (tstamp 4e647fa9-4baf-493a-891e-373b7bb90db1)) + (gr_line (start 147.8332 96.969) (end 147.4268 96.969) (layer "Dwgs.User") (width 0.1) (tstamp 4e9a87a3-418a-43a4-a902-c2e3103424a6)) + (gr_line (start 125.16 96.03) (end 125.16 95.93) (layer "Dwgs.User") (width 0.1) (tstamp 4ea989fb-9cda-4210-89d1-fe153727e40c)) + (gr_line (start 143.185 101.6045) (end 149.535 101.6045) (layer "Dwgs.User") (width 0.1) (tstamp 4f5c185a-e11b-4d82-a8bc-b9689c9c633b)) + (gr_line (start 160.83 91.34) (end 160.83 90.89) (layer "Dwgs.User") (width 0.1) (tstamp 5006a2d1-be56-41dc-888f-67fb86bea03b)) + (gr_line (start 158.51 98.805) (end 158.96 98.805) (layer "Dwgs.User") (width 0.1) (tstamp 50e82998-94a9-4b38-a960-5b276fe8586e)) + (gr_line (start 117.58 106.4) (end 117.68 106.4) (layer "Dwgs.User") (width 0.1) (tstamp 51153875-01b9-46f2-8b14-6306c8586588)) + (gr_line (start 124.51 103.09) (end 125.01 103.09) (layer "Dwgs.User") (width 0.1) (tstamp 51854738-fa9c-4052-b2b8-d2dde367270a)) + (gr_line (start 125.16 102.99) (end 125.16 100.79) (layer "Dwgs.User") (width 0.1) (tstamp 5199ad7b-ab84-4971-9df3-53270a0a37ba)) + (gr_line (start 176.5025 99.4484) (end 177.1375 99.4484) (layer "Dwgs.User") (width 0.1) (tstamp 51aef7ea-783f-44d5-8cab-9faf10da9064)) + (gr_line (start 158.51 106.055) (end 158.51 108.89) (layer "Dwgs.User") (width 0.1) (tstamp 51c3e3cc-739b-4bac-a271-7f779051de39)) + (gr_line (start 134.802647 103.106) (end 134.656 103.36) (layer "Dwgs.User") (width 0.1) (tstamp 51e38831-b6fe-409b-99e0-ea87fc114c30)) + (gr_line (start 143.6168 101.5664) (end 143.6168 102.811) (layer "Dwgs.User") (width 0.1) (tstamp 525775d5-0e6e-4c76-b5ab-199b2e54ac41)) + (gr_line (start 165.91 108.44) (end 166.81 108.44) (layer "Dwgs.User") (width 0.1) (tstamp 5289bc61-7716-4d1c-91dd-03b886b4760f)) + (gr_line (start 120.43 93.34) (end 120.33 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 52ee041e-391d-486f-9b84-abdb5d15db1c)) + (gr_line (start 125.004 103.36) (end 124.857353 103.106) (layer "Dwgs.User") (width 0.1) (tstamp 53450cca-0496-4005-a7ef-5b1ae88fa402)) + (gr_line (start 119.924 103.36) (end 119.777353 103.106) (layer "Dwgs.User") (width 0.1) (tstamp 53ca97d4-db85-46f1-866a-72ac5fba2bbf)) + (gr_line (start 125.7025 101.2645) (end 125.7025 99.4484) (layer "Dwgs.User") (width 0.1) (tstamp 5404664b-083c-4ae7-9324-834241f1df76)) + (gr_arc (start 124.96 94.45) (mid 124.889289 94.420711) (end 124.86 94.35) (layer "Dwgs.User") (width 0.1) (tstamp 55b6b040-a746-4424-a5b4-1f45a1d15120)) + (gr_line (start 151.99 105.145) (end 151.99 106.735) (layer "Dwgs.User") (width 0.1) (tstamp 55baceed-f7d9-4d73-84e4-b06c780623b7)) + (gr_line (start 120.88 93.34) (end 121.88 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 564f1f04-6ff3-46a0-97e8-50ef7acc139d)) + (gr_line (start 146.5632 96.969) (end 146.1568 96.969) (layer "Dwgs.User") (width 0.1) (tstamp 56ff2288-13d4-4098-a5c7-84a24b2613d1)) + (gr_line (start 125.16 97.85) (end 125.16 97.75) (layer "Dwgs.User") (width 0.1) (tstamp 578b9c3f-045a-4830-a037-9fe8cd94bc66)) + (gr_line (start 165.54 108.89) (end 165.91 108.89) (layer "Dwgs.User") (width 0.1) (tstamp 57a35f7e-1eec-4bce-82d8-651d3f20ac22)) + (gr_line (start 118.0825 102.9155) (end 118.7175 102.9155) (layer "Dwgs.User") (width 0.1) (tstamp 57be4481-578e-480a-b137-dcb8fd95babf)) + (gr_arc (start 119.023934 105.693934) (mid 118.991429 105.645269) (end 118.98 105.587868) (layer "Dwgs.User") (width 0.1) (tstamp 57f6b820-62fa-4d98-887a-d2a380a76964)) + (gr_line (start 122.23 106.4) (end 124.96 106.4) (layer "Dwgs.User") (width 0.1) (tstamp 5821604d-5ceb-420a-b7e4-ba8f3233a4b7)) + (gr_line (start 146.5632 101.5664) (end 146.1568 101.5664) (layer "Dwgs.User") (width 0.1) (tstamp 582bf52d-f931-4c83-b941-f1087e1fcfee)) + (gr_line (start 169.35 91.34) (end 168.45 91.34) (layer "Dwgs.User") (width 0.1) (tstamp 584970dc-5538-419b-b998-8d8d4ada798f)) + (gr_line (start 119.28 104.15) (end 120.39 104.15) (layer "Dwgs.User") (width 0.1) (tstamp 5879090f-e6ed-48e6-a17d-670ffa2c5461)) + (gr_line (start 120.98 93.34) (end 120.88 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 58b8f6af-04ea-4eb0-addd-d814725f2fe4)) + (gr_line (start 176.5025 101.2645) (end 176.5025 99.4484) (layer "Dwgs.User") (width 0.1) (tstamp 58d7fa4b-9912-4b07-bc12-5c063b15dc64)) + (gr_line (start 121.88 93.34) (end 121.98 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 5939629d-2bb5-4863-83b9-27abfaf3eac4)) + (gr_line (start 154.86 100.99) (end 154.86 98.79) (layer "Dwgs.User") (width 0.1) (tstamp 5985ca3b-83e7-485c-a804-db4e4c6c7fcd)) + (gr_line (start 171.89 108.89) (end 172.26 108.89) (layer "Dwgs.User") (width 0.1) (tstamp 59e71b82-fd2c-4d50-9aac-2d0df67acc80)) + (gr_line (start 164.27 108.44) (end 164.27 108.89) (layer "Dwgs.User") (width 0.1) (tstamp 5a43f40c-f75b-4db3-8642-220e4b806437)) + (gr_line (start 114.479499 93.34) (end 114.379499 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 5a8f98be-3861-4e9a-bd06-b6217ad585d8)) + (gr_line (start 170.216 103.36) (end 168.184 103.36) (layer "Dwgs.User") (width 0.1) (tstamp 5add257c-7316-4000-a2a3-e6a8c316ab9c)) + (gr_line (start 124.41 104.89) (end 124.41 103.19) (layer "Dwgs.User") (width 0.1) (tstamp 5af0907a-cc5c-4a2d-827a-e091ca759470)) + (gr_line (start 159.56 108.44) (end 160.46 108.44) (layer "Dwgs.User") (width 0.1) (tstamp 5b3893c6-e4cc-4fa9-be23-63d62d12d2ee)) + (gr_line (start 144.0232 96.969) (end 143.6168 96.969) (layer "Dwgs.User") (width 0.1) (tstamp 5b77bfad-fdd5-4e7d-86ed-ad21fd1ee4e0)) + (gr_line (start 129.937353 101.074) (end 130.084 100.82) (layer "Dwgs.User") (width 0.1) (tstamp 5c6b1739-bddf-40c7-873c-328e9672302a)) + (gr_line (start 173.16 90.89) (end 173.16 91.34) (layer "Dwgs.User") (width 0.1) (tstamp 5cfef867-dff5-4abc-9cf1-6fa8f45eaef2)) + (gr_line (start 161.73 108.44) (end 161.73 108.89) (layer "Dwgs.User") (width 0.1) (tstamp 5cff2459-d275-4803-8fa2-8289cb689a75)) + (gr_line (start 122.43 105.11) (end 122.43 105.31) (layer "Dwgs.User") (width 0.1) (tstamp 5d0be09d-133e-4cac-b0d8-fd336835cc6c)) + (gr_line (start 158.51 103.885) (end 158.96 103.885) (layer "Dwgs.User") (width 0.1) (tstamp 5d580eb5-0e83-488b-a0fd-a803c630f551)) + (gr_line (start 145.2932 96.969) (end 144.8868 96.969) (layer "Dwgs.User") (width 0.1) (tstamp 5d82a0b1-5c8e-42d0-8222-7c4b7e42e518)) + (gr_line (start 116.48 106.4) (end 115.08 106.4) (layer "Dwgs.User") (width 0.1) (tstamp 5daca09e-60a3-4181-a1f0-19c5300b582a)) + (gr_arc (start 111.53 94) (mid 111.317868 93.912132) (end 111.23 93.7) (layer "Dwgs.User") (width 0.1) (tstamp 5e066231-f8d2-43bf-bff3-80c6fb0c9c86)) + (gr_line (start 174.43 108.44) (end 174.43 108.89) (layer "Dwgs.User") (width 0.1) (tstamp 5e182438-6e6f-45ba-bef5-6be708805673)) + (gr_line (start 124.86 93.5) (end 124.86 93.49) (layer "Dwgs.User") (width 0.1) (tstamp 5e3ca9e8-0260-4e6b-9246-fb1c6934f35f)) + (gr_line (start 152.73 104.34) (end 155.45 104.34) (layer "Dwgs.User") (width 0.1) (tstamp 5e40bd00-596e-4595-8afb-832031e7cd39)) + (gr_line (start 168.184 100.82) (end 170.216 100.82) (layer "Dwgs.User") (width 0.1) (tstamp 5e5cd445-0654-433f-a688-b9a23b9e5558)) + (gr_line (start 121.2575 101.2645) (end 120.6225 101.2645) (layer "Dwgs.User") (width 0.1) (tstamp 5ed661fa-d25a-413c-8f9b-894484c176c8)) + (gr_line (start 174.43 108.89) (end 174.8 108.89) (layer "Dwgs.User") (width 0.1) (tstamp 5ed8deae-e8d8-451d-b355-245f684ec0f6)) + (gr_line (start 122.317353 103.106) (end 122.102647 103.106) (layer "Dwgs.User") (width 0.1) (tstamp 5ee97714-8ad8-47a4-bd70-3ebc8406c7b5)) + (gr_line (start 147.4268 101.5664) (end 147.4268 102.811) (layer "Dwgs.User") (width 0.1) (tstamp 5f10ab2e-0baa-42eb-b877-7c3c9e704ef3)) + (gr_line (start 170.62 108.89) (end 170.99 108.89) (layer "Dwgs.User") (width 0.1) (tstamp 5ff98705-cf67-403d-b0a1-4c57aba0bbdc)) + (gr_line (start 160.417353 101.074) (end 160.564 100.82) (layer "Dwgs.User") (width 0.1) (tstamp 60e6d176-aade-439f-80d8-764c13ba9024)) + (gr_line (start 155.484 103.36) (end 155.337353 103.106) (layer "Dwgs.User") (width 0.1) (tstamp 6109efee-34d5-4820-b2f1-2e5974922f54)) + (gr_line (start 111.53 94) (end 113.98 94) (layer "Dwgs.User") (width 0.1) (tstamp 61dc775a-14c7-4cce-be48-c5d6e8045697)) + (gr_line (start 125.16 99.5) (end 125.16 99.6) (layer "Dwgs.User") (width 0.1) (tstamp 61e76907-90d9-4f86-b582-ad651e60aa0c)) + (gr_line (start 161.73 108.89) (end 162.1 108.89) (layer "Dwgs.User") (width 0.1) (tstamp 620fd31f-1d7e-453a-874c-5731a4bbc505)) + (gr_arc (start 113.439289 105.67) (mid 113.458426 105.673803) (end 113.474645 105.684645) (layer "Dwgs.User") (width 0.1) (tstamp 6228b587-c759-4f5a-aee2-44d44c696a08)) + (gr_line (start 117.68 106.4) (end 118.78 106.4) (layer "Dwgs.User") (width 0.1) (tstamp 622fea85-fc3a-49dd-a4af-3bfd36c6693d)) + (gr_line (start 169.72 108.44) (end 170.62 108.44) (layer "Dwgs.User") (width 0.1) (tstamp 62681247-dfee-4fe9-a797-fef33eb74a7f)) + (gr_line (start 125.01 104.99) (end 124.51 104.99) (layer "Dwgs.User") (width 0.1) (tstamp 62a86672-b56e-46bd-bc25-5c0442dd543c)) + (gr_line (start 124.96 93.34) (end 122.23 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 62faf466-a5e1-4997-954a-e3f3f47e0a99)) + (gr_line (start 120.88 93.34) (end 120.78 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 633a5fce-b259-449f-9fbe-80229fc70017)) + (gr_line (start 163.8025 102.9155) (end 164.4375 102.9155) (layer "Dwgs.User") (width 0.1) (tstamp 6356fe97-06cd-4a4b-b2f2-2e98498da4a1)) + (gr_arc (start 113.945355 106.155355) (mid 113.95619 106.171577) (end 113.96 106.190711) (layer "Dwgs.User") (width 0.1) (tstamp 638492c1-39c4-4e69-a3a1-232b324e5b21)) + (gr_line (start 119.23 93.34) (end 117.23 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 6388b06e-af5c-405f-b16c-ee4225810f35)) + (gr_line (start 121.98 93.34) (end 121.88 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 64272f01-95d4-4c13-ba7c-3f30a36f0035)) + (gr_line (start 120.59 104.42) (end 121.29 104.42) (layer "Dwgs.User") (width 0.1) (tstamp 649e27c1-a08d-4446-a16b-cdabdc592f17)) + (gr_line (start 119.38 104.58) (end 119.38 105.222893) (layer "Dwgs.User") (width 0.1) (tstamp 651c91fd-ec54-4600-b738-56cbf235205c)) + (gr_line (start 160.83 108.89) (end 160.83 108.44) (layer "Dwgs.User") (width 0.1) (tstamp 659d7e05-6d30-4048-9451-144bfa6ef129)) + (gr_line (start 147.4268 102.811) (end 147.8332 102.811) (layer "Dwgs.User") (width 0.1) (tstamp 65fd9534-1b91-42a6-8ecd-7a42d8ae4ade)) + (gr_line (start 121.49 104.634214) (end 121.965786 105.11) (layer "Dwgs.User") (width 0.1) (tstamp 660190eb-2890-4958-8da2-d63590e8e03c)) + (gr_arc (start 114.28 102.8) (mid 114.223117 102.975768) (end 114.074038 103.08488) (layer "Dwgs.User") (width 0.1) (tstamp 6640c556-30bc-4fc7-a797-35ec65cf0f77)) + (gr_line (start 161.2625 99.4484) (end 161.8975 99.4484) (layer "Dwgs.User") (width 0.1) (tstamp 665ff082-de8d-4434-bdea-5354e7d0b15e)) + (gr_line (start 155.45 95.44) (end 152.73 95.44) (layer "Dwgs.User") (width 0.1) (tstamp 66615e91-3e7a-41a3-a5de-d8915c5cd486)) + (gr_line (start 146.1568 102.811) (end 146.5632 102.811) (layer "Dwgs.User") (width 0.1) (tstamp 66cddf54-c141-4b9d-b300-069491227c2d)) + (gr_line (start 176.97 91.34) (end 176.07 91.34) (layer "Dwgs.User") (width 0.1) (tstamp 6792a032-9256-487f-aa0b-8c689e242f4e)) + (gr_line (start 168.8825 102.9155) (end 169.5175 102.9155) (layer "Dwgs.User") (width 0.1) (tstamp 67ab6325-5225-42ee-86cc-5aee5e01efce)) + (gr_line (start 156.19 95.195) (end 156.19 94.635) (layer "Dwgs.User") (width 0.1) (tstamp 67cd1818-ab6d-4ba5-a3d8-70afbf35fabc)) + (gr_line (start 125.004 100.82) (end 127.036 100.82) (layer "Dwgs.User") (width 0.1) (tstamp 684dd321-c877-439a-a4d1-bec26f55cf89)) + (gr_line (start 128.2425 104.7316) (end 128.2425 102.9155) (layer "Dwgs.User") (width 0.1) (tstamp 68617ba5-42bf-490f-8799-0863bd897117)) + (gr_line (start 158.024 100.82) (end 160.056 100.82) (layer "Dwgs.User") (width 0.1) (tstamp 6884c1b4-ba74-400a-b15a-2bf546c04e73)) + (gr_line (start 135.8625 101.2645) (end 135.8625 99.4484) (layer "Dwgs.User") (width 0.1) (tstamp 68d49974-bc49-4d87-a030-93a7fa8ebeb6)) + (gr_line (start 158.51 95.895) (end 158.51 96.265) (layer "Dwgs.User") (width 0.1) (tstamp 6933eb41-d471-4ac8-9862-a876011c4773)) + (gr_line (start 161.2625 101.2645) (end 161.2625 99.4484) (layer "Dwgs.User") (width 0.1) (tstamp 6a787b26-86fe-4c4f-b92f-6381c95ee933)) + (gr_line (start 157.877353 103.106) (end 157.662647 103.106) (layer "Dwgs.User") (width 0.1) (tstamp 6b24a7a2-717b-4448-a40d-7886a2ed3d71)) + (gr_line (start 131.4175 101.2645) (end 130.7825 101.2645) (layer "Dwgs.User") (width 0.1) (tstamp 6b4ca676-3379-4b8d-a1e2-e3fc88dc7cd2)) + (gr_line (start 170.99 91.34) (end 170.99 90.89) (layer "Dwgs.User") (width 0.1) (tstamp 6bcc4470-6fe4-4c8d-ba29-7eeb8005d7fa)) + (gr_line (start 163.104 100.82) (end 165.136 100.82) (layer "Dwgs.User") (width 0.1) (tstamp 6bd7efd5-74f5-4b09-8bb7-5762073a2f78)) + (gr_line (start 111.13 103.82) (end 111.13 105.67) (layer "Dwgs.User") (width 0.1) (tstamp 6c1bd5d9-fec6-47a5-aae3-ae852ddca055)) + (gr_line (start 111.18 93.34) (end 111.23 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 6cd7c58d-b03d-4db3-ab50-a7d7e7c1e928)) + (gr_line (start 143.185 98.1755) (end 143.185 101.6045) (layer "Dwgs.User") (width 0.1) (tstamp 6d259b3b-196b-4e6b-acdf-fc3e09319776)) + (gr_line (start 156.19 107.295) (end 156.19 106.735) (layer "Dwgs.User") (width 0.1) (tstamp 6e4bbe2c-1e2d-4539-b6d8-5d5edc57b4de)) + (gr_line (start 125.16 102.79) (end 125.16 102.69) (layer "Dwgs.User") (width 0.1) (tstamp 6eaf44a5-2bb8-4e84-ae85-e082a57042dd)) + (gr_line (start 160.056 100.82) (end 160.202647 101.074) (layer "Dwgs.User") (width 0.1) (tstamp 6ec69bf0-bd27-4e31-8522-71d586cb9b08)) + (gr_line (start 120.59 104.35) (end 120.59 104.42) (layer "Dwgs.User") (width 0.1) (tstamp 6f172490-e7c3-45a0-aafa-f94d5c12df3c)) + (gr_line (start 158.96 105.155) (end 158.96 106.055) (layer "Dwgs.User") (width 0.1) (tstamp 6f4bbdb8-5bb2-4c5f-b604-50c819181981)) + (gr_line (start 163 91.34) (end 162.1 91.34) (layer "Dwgs.User") (width 0.1) (tstamp 6f9f8538-0b96-4eb3-a978-1c7439c0e8bf)) + (gr_line (start 125.16 97.95) (end 125.16 97.85) (layer "Dwgs.User") (width 0.1) (tstamp 6fc49b93-842f-4814-8ca6-1e11c16fa8fa)) + (gr_arc (start 156.09 104.34) (mid 156.115882 104.343407) (end 156.14 104.353397) (layer "Dwgs.User") (width 0.1) (tstamp 6fe48f1e-4227-4f41-a8f4-0e7ec51a11e0)) + (gr_line (start 162.957353 103.106) (end 162.742647 103.106) (layer "Dwgs.User") (width 0.1) (tstamp 7048b6de-9faa-47a1-99c5-b74e17a09a6e)) + (gr_line (start 160.564 100.82) (end 162.596 100.82) (layer "Dwgs.User") (width 0.1) (tstamp 7056f785-c3a5-4410-b6bb-e5d4b16e698a)) + (gr_line (start 144.8868 102.811) (end 145.2932 102.811) (layer "Dwgs.User") (width 0.1) (tstamp 70852beb-7102-4701-922b-9248dc6321b9)) + (gr_line (start 121.88 106.4) (end 121.98 106.4) (layer "Dwgs.User") (width 0.1) (tstamp 70b4eaa4-61ff-4379-b06d-623ca05164b1)) + (gr_line (start 175.7 108.89) (end 176.07 108.89) (layer "Dwgs.User") (width 0.1) (tstamp 7131ee3d-de36-4b6f-a391-6695d97d81c2)) + (gr_line (start 169.5175 104.7316) (end 168.8825 104.7316) (layer "Dwgs.User") (width 0.1) (tstamp 716698ac-ed16-401e-958b-a147596def51)) + (gr_line (start 163 108.44) (end 163 108.89) (layer "Dwgs.User") (width 0.1) (tstamp 7279a0ce-75b5-4d17-adea-e5e9949407a6)) + (gr_line (start 117.98 93.34) (end 118.08 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 72941de6-4056-41a3-be67-7819992eeaa3)) + (gr_line (start 113.474645 105.684645) (end 113.945355 106.155355) (layer "Dwgs.User") (width 0.1) (tstamp 72f86fac-1de9-4853-b551-bbe9529da2a3)) + (gr_line (start 149.535 98.1755) (end 143.185 98.1755) (layer "Dwgs.User") (width 0.1) (tstamp 73cb09ad-e380-49f3-bc9d-038b1104bc93)) + (gr_line (start 166.3425 99.4484) (end 166.9775 99.4484) (layer "Dwgs.User") (width 0.1) (tstamp 748d63ca-ef14-4e90-85ec-56619f2bea16)) + (gr_line (start 172.902647 103.106) (end 172.756 103.36) (layer "Dwgs.User") (width 0.1) (tstamp 74b09255-300b-41bc-a348-4c1575c49b6b)) + (gr_line (start 135.164 103.36) (end 135.017353 103.106) (layer "Dwgs.User") (width 0.1) (tstamp 74e18c92-61e9-4154-8a7c-dfbd4a946e5e)) + (gr_line (start 116.678997 93.34) (end 117.48 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 75640a86-c7da-4929-8b77-923b3c6bee6b)) + (gr_line (start 161.8975 101.2645) (end 161.2625 101.2645) (layer "Dwgs.User") (width 0.1) (tstamp 7594fd2b-c5d9-4333-9f70-e53128d27c5a)) + (gr_line (start 144.8868 101.5664) (end 144.8868 102.811) (layer "Dwgs.User") (width 0.1) (tstamp 759bd0f6-2646-44e7-94e8-5efbb41acb61)) + (gr_line (start 120.23 93.34) (end 119.362288 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 769ea560-2289-4ed4-9a90-b0dea97e737b)) + (gr_line (start 113.96 106.4) (end 114.06 106.4) (layer "Dwgs.User") (width 0.1) (tstamp 76bf3f12-008a-4a13-b216-e7dae9728db6)) + (gr_line (start 158.51 99.705) (end 158.51 100.075) (layer "Dwgs.User") (width 0.1) (tstamp 774bd91e-6eb9-41ae-a7fd-20b88a031e1c)) + (gr_line (start 148.6968 101.5664) (end 148.6968 102.811) (layer "Dwgs.User") (width 0.1) (tstamp 775b50f1-c021-45e5-b4f4-3da4bfa305be)) + (gr_line (start 164.64 108.89) (end 164.64 108.44) (layer "Dwgs.User") (width 0.1) (tstamp 77697486-3706-446b-b0dc-99c11e5b6fb4)) + (gr_line (start 123.1625 104.7316) (end 123.1625 102.9155) (layer "Dwgs.User") (width 0.1) (tstamp 777a7d71-7105-4515-9e2c-011e98c36c8b)) + (gr_line (start 168.037353 101.074) (end 168.184 100.82) (layer "Dwgs.User") (width 0.1) (tstamp 77a09c2e-107d-4a82-95c7-b222303ba715)) + (gr_arc (start 117.58 93.49) (mid 117.550711 93.560711) (end 117.48 93.59) (layer "Dwgs.User") (width 0.1) (tstamp 77f01482-1a0d-408c-a0b8-f389b6fedc82)) + (gr_line (start 121.29 104.42) (end 121.29 104.4) (layer "Dwgs.User") (width 0.1) (tstamp 783d99f0-9b1b-482f-8119-337c4a520061)) + (gr_arc (start 115.08 93.59) (mid 115.009289 93.560711) (end 114.98 93.49) (layer "Dwgs.User") (width 0.1) (tstamp 78aafe37-8da2-4652-8543-18ebef8d21dc)) + (gr_line (start 125.16 97.4) (end 125.16 97.3) (layer "Dwgs.User") (width 0.1) (tstamp 7915db52-1f07-44c7-b796-c7fc1aca7b67)) + (gr_line (start 122.13 93.34) (end 122.08 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 791f08b2-190f-425b-84e1-3aec99a46611)) + (gr_line (start 124.96 106.4) (end 124.930711 106.4) (layer "Dwgs.User") (width 0.1) (tstamp 7924cdcb-45b3-439a-a58e-4e78f2ff9e7a)) + (gr_arc (start 113.98 94) (mid 114.192132 94.087868) (end 114.28 94.3) (layer "Dwgs.User") (width 0.1) (tstamp 7a6f4622-4213-4c81-84d2-b9b224d2a864)) + (gr_line (start 120.13 104.43) (end 119.53 104.43) (layer "Dwgs.User") (width 0.1) (tstamp 7a961303-0ee0-4514-9c41-71f7612da80d)) + (gr_line (start 122.38 93.34) (end 122.28 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 7ae39c29-5978-4de8-b0d8-d1c366a90b03)) + (gr_line (start 158.96 104.785) (end 158.51 104.785) (layer "Dwgs.User") (width 0.1) (tstamp 7aec2799-4000-4098-a752-1bed4b75fdcf)) + (gr_line (start 162.596 103.36) (end 160.564 103.36) (layer "Dwgs.User") (width 0.1) (tstamp 7af1455e-5ab2-4286-8c74-1c6dee563208)) + (gr_line (start 146.5632 98.2136) (end 146.5632 96.969) (layer "Dwgs.User") (width 0.1) (tstamp 7af171ef-c1a8-4817-ac3c-eb72938c314e)) + (gr_line (start 127.036 100.82) (end 127.182647 101.074) (layer "Dwgs.User") (width 0.1) (tstamp 7af2029e-2b92-4284-9c35-cc656514173c)) + (gr_line (start 122.23 93.34) (end 122.13 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 7afec855-ed33-4dd1-8a74-3d2203c81740)) + (gr_line (start 165.136 103.36) (end 163.104 103.36) (layer "Dwgs.User") (width 0.1) (tstamp 7b08b6d2-d7a0-45d0-95d4-d9dfb9198b27)) + (gr_line (start 111.13 105.67) (end 111.13 104.64) (layer "Dwgs.User") (width 0.1) (tstamp 7b52fe8c-70c2-40ad-a3fc-6605c636d0aa)) + (gr_line (start 119.562647 103.106) (end 119.416 103.36) (layer "Dwgs.User") (width 0.1) (tstamp 7c11a07f-525c-45a7-9ad1-361ea90615cc)) + (gr_line (start 111.13 103.92) (end 111.13 103.82) (layer "Dwgs.User") (width 0.1) (tstamp 7c2084e9-3b2e-4e85-bb04-4d1893a867c2)) + (gr_line (start 116.48 106.4) (end 116.58 106.4) (layer "Dwgs.User") (width 0.1) (tstamp 7c2c7978-0926-492c-8e3d-93ac33c3f226)) + (gr_line (start 119.924 100.82) (end 121.956 100.82) (layer "Dwgs.User") (width 0.1) (tstamp 7d6807f0-5c24-4921-bebf-780c435de47a)) + (gr_line (start 158.024 103.36) (end 157.877353 103.106) (layer "Dwgs.User") (width 0.1) (tstamp 7dc50517-93ab-4193-ac41-8278ba10e249)) + (gr_line (start 122.28 93.34) (end 122.38 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 7ddf1699-d6ad-4845-a07e-3473cde5e6f7)) + (gr_line (start 158.96 99.705) (end 158.51 99.705) (layer "Dwgs.User") (width 0.1) (tstamp 7de935c6-9119-4940-8080-9aaeda4f0cdd)) + (gr_line (start 172.756 103.36) (end 170.724 103.36) (layer "Dwgs.User") (width 0.1) (tstamp 7e60f163-8805-4bc8-82a5-453da20ba1a2)) + (gr_line (start 136.4975 99.4484) (end 136.4975 101.2645) (layer "Dwgs.User") (width 0.1) (tstamp 7e72304a-4161-4a22-8d65-75ee76dcdf69)) + (gr_line (start 120.6225 99.4484) (end 121.2575 99.4484) (layer "Dwgs.User") (width 0.1) (tstamp 7e97b323-0f13-4745-becc-fa60e39b31ab)) + (gr_line (start 149.535 101.6045) (end 149.535 98.1755) (layer "Dwgs.User") (width 0.1) (tstamp 7f093f1d-323b-4b4e-b33a-3f6815b22768)) + (gr_arc (start 113.26101 105.71) (mid 113.278377 105.68127) (end 113.31 105.67) (layer "Dwgs.User") (width 0.1) (tstamp 7f180349-2cf1-4faf-8ede-f82101d0fa01)) + (gr_line (start 158.96 98.435) (end 158.51 98.435) (layer "Dwgs.User") (width 0.1) (tstamp 7f8f1c43-60e8-4996-bc14-4119dfb0064e)) + (gr_line (start 117.48 93.34) (end 117.58 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 7ff53ce7-3b96-4229-89d1-8f8a87153527)) + (gr_line (start 133.3225 102.9155) (end 133.9575 102.9155) (layer "Dwgs.User") (width 0.1) (tstamp 8020425b-e9f3-495c-818a-7f5fd22a8d70)) + (gr_line (start 157.516 100.82) (end 157.662647 101.074) (layer "Dwgs.User") (width 0.1) (tstamp 80215c98-408c-4508-93c7-1e56cf06a8a8)) + (gr_arc (start 112.544069 103.58992) (mid 112.513125 103.59746) (end 112.481376 103.6) (layer "Dwgs.User") (width 0.1) (tstamp 80cb90dd-8449-449f-bec1-5e371021e295)) + (gr_line (start 119.63 106.4) (end 113.96 106.4) (layer "Dwgs.User") (width 0.1) (tstamp 80cc6be9-668a-4344-9b65-0659b9071698)) + (gr_line (start 165.497353 101.074) (end 165.644 100.82) (layer "Dwgs.User") (width 0.1) (tstamp 811d06c8-e35a-4323-8e51-11882cc1e2ee)) + (gr_line (start 121.98 93.34) (end 121.88 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 814df96b-3bb6-4126-aa8c-e8b33dded25a)) + (gr_line (start 122.68 93.34) (end 122.78 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 81b5884f-0b53-4d9c-bd56-68349a70cfdc)) + (gr_line (start 168.45 91.34) (end 168.45 90.89) (layer "Dwgs.User") (width 0.1) (tstamp 825fbe04-7d0f-48c0-b196-0082d6b05859)) + (gr_line (start 148.6968 98.2136) (end 149.1032 98.2136) (layer "Dwgs.User") (width 0.1) (tstamp 836c1b72-6495-4f81-a125-58f0f7d787c2)) + (gr_line (start 160.46 90.89) (end 160.46 91.34) (layer "Dwgs.User") (width 0.1) (tstamp 838ac53b-3ec1-4b97-9af6-c64a64ade18e)) + (gr_line (start 158.51 100.975) (end 158.51 101.345) (layer "Dwgs.User") (width 0.1) (tstamp 84a6c803-a4ac-48df-95fb-6930cca4e25e)) + (gr_line (start 168.184 103.36) (end 168.037353 103.106) (layer "Dwgs.User") (width 0.1) (tstamp 84b3d674-c896-4b45-8754-206b7ffab72a)) + (gr_line (start 156.19 105.145) (end 156.19 104.585) (layer "Dwgs.User") (width 0.1) (tstamp 84f23cc9-9d15-4bf2-9356-88729f7800a5)) + (gr_line (start 166.81 108.44) (end 166.81 108.89) (layer "Dwgs.User") (width 0.1) (tstamp 85322b6b-1523-4ed9-b09b-510e91ab3a2d)) + (gr_line (start 172.26 108.89) (end 172.26 108.44) (layer "Dwgs.User") (width 0.1) (tstamp 857af45d-9795-41a2-9845-b5953516cc70)) + (gr_line (start 169.72 90.89) (end 169.35 90.89) (layer "Dwgs.User") (width 0.1) (tstamp 85ce4d4c-d093-4323-9a04-70d33e2d6c7e)) + (gr_line (start 114.06 106.4) (end 117.097712 106.4) (layer "Dwgs.User") (width 0.1) (tstamp 878a2718-59d9-4c03-a97a-b08c3d833cb9)) + (gr_line (start 113.78 93.34) (end 113.88 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 88070912-713c-4330-af62-557ab402d00d)) + (gr_line (start 151.99 106.735) (end 151.99 107.295) (layer "Dwgs.User") (width 0.1) (tstamp 88071c39-7478-4d42-a0c9-ea227d61f16f)) + (gr_line (start 160.46 108.89) (end 160.83 108.89) (layer "Dwgs.User") (width 0.1) (tstamp 885fe160-5562-498c-ba18-9f416e1d87d2)) + (gr_line (start 149.1032 101.5664) (end 148.6968 101.5664) (layer "Dwgs.User") (width 0.1) (tstamp 888c6fdf-c198-440a-97af-035b863dc875)) + (gr_line (start 128.8775 104.7316) (end 128.2425 104.7316) (layer "Dwgs.User") (width 0.1) (tstamp 88d47af8-f385-41c3-a158-4c2020d5a72a)) + (gr_line (start 121.29 104.4) (end 121.49 104.4) (layer "Dwgs.User") (width 0.1) (tstamp 8967a184-9ee6-4ceb-8e38-09ca452dd23c)) + (gr_line (start 125.16 104.89) (end 125.16 104.99) (layer "Dwgs.User") (width 0.1) (tstamp 899f4c1a-985b-472e-a9b0-465d356ef34c)) + (gr_line (start 173.264 103.36) (end 173.117353 103.106) (layer "Dwgs.User") (width 0.1) (tstamp 8a68ab9f-49b9-4556-9773-ed86cd9bea27)) + (gr_arc (start 152.04 92.253397) (mid 152.064118 92.243407) (end 152.09 92.24) (layer "Dwgs.User") (width 0.1) (tstamp 8b14e97f-a7f6-455f-85ae-a0954b928855)) + (gr_line (start 121.2575 99.4484) (end 121.2575 101.2645) (layer "Dwgs.User") (width 0.1) (tstamp 8b31a9ad-c09d-47b9-beaa-1384fac3ffb7)) + (gr_line (start 123.1625 102.9155) (end 123.7975 102.9155) (layer "Dwgs.User") (width 0.1) (tstamp 8baf31fa-31f2-4e84-ad86-348df774f617)) + (gr_line (start 156.19 104.585) (end 156.19 104.44) (layer "Dwgs.User") (width 0.1) (tstamp 8bb2ea49-8b54-4a72-9f61-f9dccb873903)) + (gr_line (start 158.96 94.625) (end 158.51 94.625) (layer "Dwgs.User") (width 0.1) (tstamp 8c1a53c3-eda8-4cf7-9683-1f61b02265f4)) + (gr_line (start 125.16 94.93) (end 125.16 95.93) (layer "Dwgs.User") (width 0.1) (tstamp 8cd8d6bd-0601-49fc-9009-a437af9b27c1)) + (gr_line (start 158.51 105.155) (end 158.96 105.155) (layer "Dwgs.User") (width 0.1) (tstamp 8d1c6119-4f8d-41bb-ac26-14b7b55b90f2)) + (gr_line (start 170.62 91.34) (end 169.72 91.34) (layer "Dwgs.User") (width 0.1) (tstamp 8d2043d0-1e2a-47a8-b40c-1d3c6b8242cf)) + (gr_line (start 176.97 90.89) (end 176.97 91.34) (layer "Dwgs.User") (width 0.1) (tstamp 8d6a069f-4023-40e5-b77a-c447eb7c2730)) + (gr_line (start 149.1032 96.969) (end 148.6968 96.969) (layer "Dwgs.User") (width 0.1) (tstamp 8da81810-0dba-4c36-b58c-934ee2c0935b)) + (gr_line (start 123.640374 99.5) (end 125.01 99.5) (layer "Dwgs.User") (width 0.1) (tstamp 8db28752-04fe-4bac-819e-f19842492596)) + (gr_arc (start 124.96 93.6) (mid 124.889289 93.570711) (end 124.86 93.5) (layer "Dwgs.User") (width 0.1) (tstamp 8dd226d8-66bc-4019-937b-c4493e60bf0c)) + (gr_line (start 184.01 108.89) (end 184.01 90.89) (layer "Dwgs.User") (width 0.1) (tstamp 8e2a2f6b-8167-4ac5-b2a6-8fefc2e5007d)) + (gr_line (start 119.526447 105.576447) (end 120.001421 106.051421) (layer "Dwgs.User") (width 0.1) (tstamp 8e865536-7e57-40b8-97a2-c3d4b4b14caf)) + (gr_line (start 125.11 93.6) (end 124.96 93.6) (layer "Dwgs.User") (width 0.1) (tstamp 8e94704d-ee0e-4c50-8651-4c244ec28f0b)) + (gr_line (start 119.18 93.34) (end 119.08 93.34) (layer "Dwgs.User") (width 0.1) (tstamp 8e9472d5-2e62-43cd-b888-fa5c05783852)) + (gr_line (start 119.296144 106.4) (end 119.362288 106.4) (layer "Dwgs.User") (width 0.1) (tstamp 8e99653b-c67d-4ba5-a650-293257580275)) + (gr_line (start 154.976 100.82) (end 155.122647 101.074) (layer "Dwgs.User") (width 0.1) (tstamp 8fe07dfe-267e-4da8-ab2a-a7d656544a34)) + (gr_arc (start 152.09 95.44) (mid 152.019289 95.410711) (end 151.99 95.34) (layer "Dwgs.User") (width 0.1) (tstamp 9110f47f-a990-4603-9888-a44e93a8108c)) + (gr_line (start 135.8625 99.4484) (end 136.4975 99.4484) (layer "Dwgs.User") (width 0.1) (tstamp 917dba0e-1b1e-4fc1-b97b-7105df526305)) + (gr_line (start 118.7175 102.9155) (end 118.7175 104.7316) (layer "Dwgs.User") (width 0.1) (tstamp 9180d7c2-ce82-4cd5-b2d5-d944586fb090)) + (gr_line (start 158.51 98.435) (end 158.51 98.805) (layer "Dwgs.User") (width 0.1) (tstamp 918a6a26-88ff-465a-a552-2e52adce8a03)) + (gr_arc (start 124.86 106.24) (mid 124.889289 106.169289) (end 124.96 106.14) (layer "Dwgs.User") (width 0.1) (tstamp 91c9976e-33f3-4776-850e-36ee5d251977)) + (gr_line (start 176.07 108.89) (end 176.07 108.44) (layer "Dwgs.User") (width 0.1) (tstamp 91d0ac33-7c52-4428-ba83-8720a383522c)) + (gr_line (start 158.51 94.625) (end 158.51 94.995) (layer "Dwgs.User") (width 0.1) (tstamp 91d49aaf-5758-42d3-9e51-e9b2b8cd5c5c)) + (gr_line (start 172.26 108.44) (end 173.16 108.44) (layer "Dwgs.User") (width 0.1) (tstamp 92f9a7fe-12b9-455c-b3cb-646f2e8901ef)) + (gr_line (start 162.1 108.89) (end 162.1 108.44) (layer "Dwgs.User") (width 0.1) (tstamp 932b167d-ddab-4c71-b0d5-3168e84d05b6)) + (gr_line (start 158.51 108.89) (end 159.56 108.89) (layer "Dwgs.User") (width 0.1) (tstamp 93b57547-14ef-426b-8dd7-720b4647ee08)) + (gr_line (start 146.1568 96.969) (end 146.1568 98.2136) (layer "Dwgs.User") (width 0.1) (tstamp 93ef09ab-58f4-40ee-8d2b-6370d66890c0)) + (gr_line (start 117.13 103.36) (end 117.13 100.82) (layer "Dwgs.User") (width 0.1) (tstamp 9569f35a-5d83-4bd3-8b6f-04dd6bf8bb08)) + (gr_arc (start 156.19 95.34) (mid 156.176602 95.39) (end 156.14 95.426603) (layer "Dwgs.User") (width 0.1) (tstamp 95b18c49-20bf-4d9f-b3e3-cebdbf176759)) + (gr_line (start 153.11 98.79) (end 152.86 98.79) (layer "Dwgs.User") (width 0.1) (tstamp 965e9f3d-a63a-4e76-b8e8-1c3bcdc42f90)) + (gr_line (start 124.86 105.44) (end 124.86 105.39) (layer "Dwgs.User") (width 0.1) (tstamp 979784e6-6813-4ec3-b827-3fde402e007b)) + (gr_line (start 124.96 106.14) (end 125.11 106.14) (layer "Dwgs.User") (width 0.1) (tstamp 97c50482-6541-4532-8eba-6810ebff5ba3)) + (gr_line (start 172.0575 101.2645) (end 171.4225 101.2645) (layer "Dwgs.User") (width 0.1) (tstamp 97c58935-8898-41d5-af6f-2caecb03bd8b)) + (gr_line (start 125.16 100.59) (end 125.16 97.95) (layer "Dwgs.User") (width 0.1) (tstamp 97db2584-9d07-47ab-a55c-f2cbce602789)) + (gr_line (start 158.96 103.515) (end 158.51 103.515) (layer "Dwgs.User") (width 0.1) (tstamp 97e1f64a-ea8c-4ff4-8e5c-27686d0544c1)) + (gr_line (start 111.13 104.54) (end 111.13 103.92) (layer "Dwgs.User") (width 0.1) (tstamp 980b19d6-0b6e-4e93-8693-7a08045bf388)) + (gr_line (start 161.8975 99.4484) (end 161.8975 101.2645) (layer "Dwgs.User") (width 0.1) (tstamp 98155800-78e7-48e2-b416-a5948d22b132)) + (gr_line (start 126.3375 99.4484) (end 126.3375 101.2645) (layer "Dwgs.User") (width 0.1) (tstamp 988c23bd-6bf9-4ea3-a1d5-3f5ff466a45e)) + (gr_line (start 160.056 103.36) (end 158.024 103.36) (layer "Dwgs.User") (width 0.1) (tstamp 98e246fc-6637-419f-a1a8-e2b22f10addf)) + (gr_line (start 165.91 91.34) (end 165.91 90.89) (layer "Dwgs.User") (width 0.1) (tstamp 98fdaaa4-ab6c-4567-b372-3bc94fd81e5f)) + (gr_line (start 155.45 92.24) (end 156.09 92.24) (layer "Dwgs.User") (width 0.1) (tstamp 98ff4f6d-a60b-43b0-818a-c3cd573da89f)) + (gr_line (start 160.46 108.44) (end 160.46 108.89) (layer "Dwgs.User") (width 0.1) (tstamp 99f42b58-88eb-419e-9dff-f13059ef50e4)) + (gr_line (start 134.656 100.82) (end 134.802647 101.074) (layer "Dwgs.User") (width 0.1) (tstamp 99fae41c-2f63-4408-bdc3-75a6970f2a0d)) + (gr_line (start 119.416 103.36) (end 117.13 103.36) (layer "Dwgs.User") (width 0.1) (tstamp 9a0f5593-2efd-4f52-bc76-f583ab6c95eb)) + (gr_line (start 184.01 90.89) (end 176.97 90.89) (layer "Dwgs.User") (width 0.1) (tstamp 9aa4051b-5d8e-420b-bd92-028862775303)) + (gr_line (start 155.45 104.34) (end 156.09 104.34) (layer "Dwgs.User") (width 0.1) (tstamp 9b5bbbea-ca45-4da3-962b-10accf46ad7c)) + (gr_line (start 121.956 100.82) (end 122.102647 101.074) (layer "Dwgs.User") (width 0.1) (tstamp 9b9495fa-3f87-4963-9a1b-e0a11c6e50cd)) + (gr_line (start 113.96 106.190711) (end 113.96 106.25) (layer "Dwgs.User") (width 0.1) (tstamp 9bbfc9f6-2a80-4dea-9ff5-2759035e5aa6)) + (gr_line (start 167.822647 103.106) (end 167.676 103.36) (layer "Dwgs.User") (width 0.1) (tstamp 9bf41a0b-ea8e-4983-9913-df79ab0696ea)) + (gr_line (start 119.63 106.155416) (end 119.485416 106.155416) (layer "Dwgs.User") (width 0.1) (tstamp 9bf78976-ad42-44da-b016-b92a04213a48)) + (gr_arc (start 156.19 95.34) (mid 156.160711 95.410711) (end 156.09 95.44) (layer "Dwgs.User") (width 0.1) (tstamp 9c162611-d326-45c2-97a0-d5c1a6e19742)) + (gr_line (start 127.544 100.82) (end 129.576 100.82) (layer "Dwgs.User") (width 0.1) (tstamp 9c476165-300e-4e08-a354-4288b203c377)) + (gr_line (start 168.08 90.89) (end 168.08 91.34) (layer "Dwgs.User") (width 0.1) (tstamp 9c81b9e4-c3e8-4c27-acdb-80b385e836a7)) + (gr_line (start 172.26 91.34) (end 172.26 90.89) (layer "Dwgs.User") (width 0.1) (tstamp 9d460f71-ca89-4f90-b952-20c79bec7158)) + (gr_line (start 124.86 106.25) (end 124.86 106.24) (layer "Dwgs.User") (width 0.1) (tstamp 9d48d597-b34c-4d62-95c8-00458414359f)) + (gr_line (start 147.8332 102.811) (end 147.8332 101.5664) (layer "Dwgs.User") (width 0.1) (tstamp 9dffc0da-762b-42b7-80b1-72a451bb294f)) + (gr_arc (start 111.78 105.67) (mid 111.811623 105.68127) (end 111.82899 105.71) (layer "Dwgs.User") (width 0.1) (tstamp 9e494106-9748-4063-aab8-1d81407059de)) + (gr_line (start 168.45 90.89) (end 168.08 90.89) (layer "Dwgs.User") (width 0.1) (tstamp 9e72b1b6-3005-465f-b29c-9fb2358144c7)) + (gr_line (start 124.496 100.82) (end 124.642647 101.074) (layer "Dwgs.User") (width 0.1) (tstamp 9ea636a1-ff23-411e-b275-b6f4b33edb43)) + (gr_line (start 174.8 108.89) (end 174.8 108.44) (layer "Dwgs.User") (width 0.1) (tstamp 9fa8af66-62ad-41ac-afee-78344131d7e2)) + (gr_line (start 114.074038 103.08488) (end 112.544069 103.58992) (layer "Dwgs.User") (width 0.1) (tstamp a18da1d6-412f-494b-867d-28a1d0ab5318)) + (gr_line (start 127.036 103.36) (end 125.004 103.36) (layer "Dwgs.User") (width 0.1) (tstamp a1df41ee-57e8-4cf8-a863-aa2ac7fada82)) + (gr_line (start 172.756 100.82) (end 172.902647 101.074) (layer "Dwgs.User") (width 0.1) (tstamp a2596afc-a768-4a7c-9191-a7e735f775bd)) + (gr_line (start 173.53 91.34) (end 173.53 90.89) (layer "Dwgs.User") (width 0.1) (tstamp a277cb94-54f4-4201-9b19-13124e8120b4)) + (gr_line (start 158.96 96.265) (end 158.96 97.165) (layer "Dwgs.User") (width 0.1) (tstamp a28887cd-2bdd-4ab6-b51e-99cd821ad1c9)) + (gr_line (start 125.16 101.29) (end 125.16 101.39) (layer "Dwgs.User") (width 0.1) (tstamp a2c9cbc7-7eac-476f-b409-1772289f1cc4)) + (gr_line (start 158.96 102.615) (end 158.96 103.515) (layer "Dwgs.User") (width 0.1) (tstamp a2d16f16-08e6-4947-a6d1-6d787ead02c9)) + (gr_line (start 125.11 94.2) (end 125.11 93.6) (layer "Dwgs.User") (width 0.1) (tstamp a3300d9e-5df3-4330-94ad-c751f1cdcdcb)) + (gr_arc (start 124.86 94.3) (mid 124.889289 94.229289) (end 124.96 94.2) (layer "Dwgs.User") (width 0.1) (tstamp a345cb5a-bcc4-40ab-9689-42a3820311de)) + (gr_line (start 133.9575 102.9155) (end 133.9575 104.7316) (layer "Dwgs.User") (width 0.1) (tstamp a382881d-447e-4c02-8a48-4f80e0b390fe)) + (gr_line (start 152.86 98.79) (end 152.86 100.99) (layer "Dwgs.User") (width 0.1) (tstamp a3ab1103-5095-446b-a5db-e9210387a84b)) + (gr_line (start 127.397353 101.074) (end 127.544 100.82) (layer "Dwgs.User") (width 0.1) (tstamp a3f3a018-6a6b-4914-95d4-b6f25692820f)) + (gr_line (start 168.45 108.89) (end 168.45 108.44) (layer "Dwgs.User") (width 0.1) (tstamp a4d622ec-e75f-4ce0-9338-865fac55dc34)) + (gr_line (start 136.4975 101.2645) (end 135.8625 101.2645) (layer "Dwgs.User") (width 0.1) (tstamp a500369a-3292-46a6-8a64-7c1bf6098bda)) + (gr_line (start 114.23 93.34) (end 111.83 93.34) (layer "Dwgs.User") (width 0.1) (tstamp a593f909-65fb-4700-bd27-abc51f135083)) + (gr_line (start 120.6225 101.2645) (end 120.6225 99.4484) (layer "Dwgs.User") (width 0.1) (tstamp a6d8eddd-c1b7-4ec6-be66-ae5ff2fbee45)) + (gr_line (start 117.097712 93.34) (end 114.579499 93.34) (layer "Dwgs.User") (width 0.1) (tstamp a74d645f-303f-41ae-8029-4f5b19b6a1a3)) + (gr_line (start 159.56 108.89) (end 159.56 108.44) (layer "Dwgs.User") (width 0.1) (tstamp a7f09cc9-2878-4daf-b4fb-2ce63103f4de)) + (gr_line (start 165.91 90.89) (end 165.54 90.89) (layer "Dwgs.User") (width 0.1) (tstamp a86ebb7d-c08b-41a3-932e-4967a39ce5f9)) + (gr_line (start 166.81 108.89) (end 167.18 108.89) (layer "Dwgs.User") (width 0.1) (tstamp a889c295-2d25-4852-8cf9-7f4cc11f3612)) + (gr_line (start 151.99 92.485) (end 151.99 93.045) (layer "Dwgs.User") (width 0.1) (tstamp a899f147-0456-4c4c-a26b-178ed678750a)) + (gr_line (start 133.9575 104.7316) (end 133.3225 104.7316) (layer "Dwgs.User") (width 0.1) (tstamp a8d0f58f-0f06-444b-8a1a-c732d79b81a2)) + (gr_line (start 147.8332 101.5664) (end 147.4268 101.5664) (layer "Dwgs.User") (width 0.1) (tstamp a8e78b6b-5175-49a4-b7f2-c08b88186745)) + (gr_line (start 119.362288 93.34) (end 119.296144 93.34) (layer "Dwgs.User") (width 0.1) (tstamp a9020c88-312f-49d4-af97-70066f9a1449)) + (gr_line (start 117.13 100.82) (end 119.416 100.82) (layer "Dwgs.User") (width 0.1) (tstamp a95d1158-4fd7-4b29-842d-f674925ed1fa)) + (gr_line (start 120.48 106.4) (end 120.58 106.4) (layer "Dwgs.User") (width 0.1) (tstamp a96d0fd6-c2d2-48a1-b455-757422534d73)) + (gr_line (start 122.317353 101.074) (end 122.464 100.82) (layer "Dwgs.User") (width 0.1) (tstamp a991215c-d7f8-4d74-b4fb-3a6d0eed12fe)) + (gr_line (start 122.464 100.82) (end 124.496 100.82) (layer "Dwgs.User") (width 0.1) (tstamp a9d015c2-a71b-46ad-b3a4-6eea7301ee51)) + (gr_arc (start 119.38 104.58) (mid 119.423934 104.473934) (end 119.53 104.43) (layer "Dwgs.User") (width 0.1) (tstamp aa1a0bd5-2e16-4ae4-84c6-ff71de2d0c53)) + (gr_line (start 163.104 103.36) (end 162.957353 103.106) (layer "Dwgs.User") (width 0.1) (tstamp aa4294ff-e846-499a-a8cf-1632eb69d9c0)) + (gr_line (start 154.11 98.79) (end 153.61 98.79) (layer "Dwgs.User") (width 0.1) (tstamp aa939002-c65a-4bc5-8b33-1d5bc4c91f9d)) + (gr_line (start 175.7 108.44) (end 175.7 108.89) (layer "Dwgs.User") (width 0.1) (tstamp aa95d6eb-61a1-46de-9823-1ac851e53563)) + (gr_line (start 122.08 106.4) (end 122.13 106.4) (layer "Dwgs.User") (width 0.1) (tstamp aaf14fa5-bc5e-4b91-b0fb-212df5ce1861)) + (gr_line (start 113.31 105.67) (end 113.439289 105.67) (layer "Dwgs.User") (width 0.1) (tstamp abaf0800-b23b-4bb1-9bdf-6551a3604128)) + (gr_arc (start 120.142843 106.11) (mid 120.066297 106.09479) (end 120.001421 106.051421) (layer "Dwgs.User") (width 0.1) (tstamp acbae352-7edb-481c-9de1-1fbd99403011)) + (gr_line (start 169.35 90.89) (end 169.35 91.34) (layer "Dwgs.User") (width 0.1) (tstamp accfea22-0220-4bfc-bc57-88d0ba04c651)) + (gr_line (start 117.23 93.34) (end 117.163856 93.34) (layer "Dwgs.User") (width 0.1) (tstamp ad1c7d30-fa47-47fd-bb07-e836ca23dcc6)) + (gr_line (start 158.96 100.975) (end 158.51 100.975) (layer "Dwgs.User") (width 0.1) (tstamp adcccd0e-f5ea-4c83-bd8f-8b220d307709)) + (gr_line (start 122.13 106.4) (end 122.23 106.4) (layer "Dwgs.User") (width 0.1) (tstamp adda719e-cc0a-4a85-b429-67f8b39774f5)) + (gr_line (start 118.88 106.4) (end 118.78 106.4) (layer "Dwgs.User") (width 0.1) (tstamp ae113a97-dd90-42bf-96ea-bb92e7431ac6)) + (gr_line (start 119.562647 101.074) (end 119.777353 101.074) (layer "Dwgs.User") (width 0.1) (tstamp aed6fd45-9008-49c0-8589-6686d15e36cc)) + (gr_line (start 111.82899 105.71) (end 113.26101 105.71) (layer "Dwgs.User") (width 0.1) (tstamp af4061e0-2fb3-421c-9efe-82e8563650d9)) + (gr_line (start 118.98 105.587868) (end 118.98 104.45) (layer "Dwgs.User") (width 0.1) (tstamp b04080e5-2876-4809-b8eb-6b6d5549c662)) + (gr_line (start 144.0232 101.5664) (end 143.6168 101.5664) (layer "Dwgs.User") (width 0.1) (tstamp b0c1f62a-b351-48b8-ac88-59c1c4ffa2ff)) + (gr_line (start 171.4225 101.2645) (end 171.4225 99.4484) (layer "Dwgs.User") (width 0.1) (tstamp b10dfd5a-5d78-45f7-bb38-39704568a3b6)) + (gr_line (start 158.96 102.245) (end 158.51 102.245) (layer "Dwgs.User") (width 0.1) (tstamp b11ebd64-c9c7-457c-8a22-c5fed71aadd1)) + (gr_line (start 174.8 108.44) (end 175.7 108.44) (layer "Dwgs.User") (width 0.1) (tstamp b1dad93c-ba77-40bd-9b75-65e2d6f9b5a1)) + (gr_line (start 167.822647 101.074) (end 168.037353 101.074) (layer "Dwgs.User") (width 0.1) (tstamp b1ef00bc-27fd-4f4a-a155-1b738e608b48)) + (gr_line (start 120.28 105.11) (end 120.28 104.58) (layer "Dwgs.User") (width 0.1) (tstamp b217b8c4-9da3-40f9-a62d-8788048abf37)) + (gr_line (start 115.08 106.4) (end 114.98 106.4) (layer "Dwgs.User") (width 0.1) (tstamp b39d7b4a-582f-449b-82fa-4a80df318fb1)) + (gr_line (start 151.99 95.34) (end 151.99 92.34) (layer "Dwgs.User") (width 0.1) (tstamp b3d79b21-e9ec-46a6-9b4b-229c9984a42a)) + (gr_line (start 165.644 103.36) (end 165.497353 103.106) (layer "Dwgs.User") (width 0.1) (tstamp b3f487ff-b47c-4488-ba8c-08e7b412da21)) + (gr_line (start 176.07 108.44) (end 176.97 108.44) (layer "Dwgs.User") (width 0.1) (tstamp b4180bb0-8dc9-48ec-9931-26e9377a82e1)) + (gr_line (start 125.16 99.6) (end 125.16 101.29) (layer "Dwgs.User") (width 0.1) (tstamp b48e1e47-217a-4f46-9867-a25c61e99a99)) + (gr_line (start 125.11 105.54) (end 124.96 105.54) (layer "Dwgs.User") (width 0.1) (tstamp b4d5ac25-a764-4661-8e59-75c6a5d8b7e8)) + (gr_line (start 166.9775 101.2645) (end 166.3425 101.2645) (layer "Dwgs.User") (width 0.1) (tstamp b75ad8c5-9f55-49ef-9af8-7ab1b11ab9d4)) + (gr_line (start 154.61 100.99) (end 154.86 100.99) (layer "Dwgs.User") (width 0.1) (tstamp b7c70258-e563-4ab0-a10c-bab04504f68f)) + (gr_line (start 160.46 91.34) (end 159.56 91.34) (layer "Dwgs.User") (width 0.1) (tstamp b7d17bac-1e38-46d5-a98a-e0926b878e04)) + (gr_line (start 111.23 93.34) (end 114.98 93.34) (layer "Dwgs.User") (width 0.1) (tstamp b7f2850c-f58b-4cf9-8802-41c268c3767e)) + (gr_arc (start 120.13 104.43) (mid 120.236066 104.473934) (end 120.28 104.58) (layer "Dwgs.User") (width 0.1) (tstamp b85d8111-c66c-4649-8ef3-173324d8dc2f)) + (gr_line (start 162.1 90.89) (end 161.73 90.89) (layer "Dwgs.User") (width 0.1) (tstamp b908b981-26a7-43ab-bb19-96137e6f2a5a)) + (gr_line (start 129.722647 101.074) (end 129.937353 101.074) (layer "Dwgs.User") (width 0.1) (tstamp b910f5a9-203b-4617-b055-34ba181d7395)) + (gr_line (start 116.579499 93.34) (end 116.678997 93.34) (layer "Dwgs.User") (width 0.1) (tstamp b92befd8-ceb5-44db-8e92-e20bd1c458d5)) + (gr_line (start 122.78 93.34) (end 122.68 93.34) (layer "Dwgs.User") (width 0.1) (tstamp b92fa812-e3bc-485d-a2c8-52969ffa6bfa)) + (gr_line (start 125.16 102.69) (end 125.16 102.79) (layer "Dwgs.User") (width 0.1) (tstamp b9f78253-7769-4896-9d90-a085649a16bc)) + (gr_line (start 175.804 100.82) (end 178.09 100.82) (layer "Dwgs.User") (width 0.1) (tstamp ba033dd1-a5e2-4136-b71b-d0a1cef6fc1f)) + (gr_line (start 151.99 92.34) (end 151.99 92.485) (layer "Dwgs.User") (width 0.1) (tstamp ba659ad4-f6ac-4fc8-b519-f7116425af73)) + (gr_line (start 163.8025 104.7316) (end 163.8025 102.9155) (layer "Dwgs.User") (width 0.1) (tstamp bace1c82-95a6-4669-a7e7-5bc2416e7e84)) + (gr_line (start 135.017353 101.074) (end 135.164 100.82) (layer "Dwgs.User") (width 0.1) (tstamp bad15ef1-4174-4239-b07e-7b1abace56d9)) + (gr_line (start 144.0232 98.2136) (end 144.0232 96.969) (layer "Dwgs.User") (width 0.1) (tstamp bad86c5b-550c-459d-ae24-5ea963bd342c)) + (gr_line (start 119.08 93.34) (end 118.08 93.34) (layer "Dwgs.User") (width 0.1) (tstamp bb2fdfc9-f8f7-4d99-a460-31e1e9e1906f)) + (gr_line (start 129.576 103.36) (end 127.544 103.36) (layer "Dwgs.User") (width 0.1) (tstamp bc0c4d76-7073-443a-8935-0c1edc20eb60)) + (gr_line (start 158.96 93.725) (end 158.96 94.625) (layer "Dwgs.User") (width 0.1) (tstamp bc234a96-8e81-44f9-b2e6-4514c92af46f)) + (gr_line (start 119.296144 93.34) (end 119.23 93.34) (layer "Dwgs.User") (width 0.1) (tstamp bc35943f-a590-4110-881f-43b94dc3ef60)) + (gr_line (start 154.2775 104.7316) (end 153.6425 104.7316) (layer "Dwgs.User") (width 0.1) (tstamp bdf0e688-b15d-45d8-a79c-81e4aaf38323)) + (gr_line (start 169.35 108.89) (end 169.72 108.89) (layer "Dwgs.User") (width 0.1) (tstamp beb82a37-d3f9-4faf-8a12-3d7cff00e7e0)) + (gr_arc (start 152.04 107.526603) (mid 152.003397 107.49) (end 151.99 107.44) (layer "Dwgs.User") (width 0.1) (tstamp bf14984d-f9cd-45a2-a01c-a06d3ed0e284)) + (gr_line (start 158.51 94.995) (end 158.96 94.995) (layer "Dwgs.User") (width 0.1) (tstamp bf562497-0a71-4eb8-8045-49f675de552e)) + (gr_line (start 120.33 93.34) (end 120.23 93.34) (layer "Dwgs.User") (width 0.1) (tstamp bfb98b57-4773-47e2-9d39-fe5066822d93)) + (gr_line (start 125.7025 99.4484) (end 126.3375 99.4484) (layer "Dwgs.User") (width 0.1) (tstamp c034fa22-c359-4a30-b345-2b159807ba6c)) + (gr_line (start 158.51 102.245) (end 158.51 102.615) (layer "Dwgs.User") (width 0.1) (tstamp c09f8970-d399-4978-b7bf-c426fa2f915a)) + (gr_line (start 163.37 91.34) (end 163.37 90.89) (layer "Dwgs.User") (width 0.1) (tstamp c0cb9ac4-a13f-4ce2-8aea-f334c934d5b3)) + (gr_line (start 125.16 94.93) (end 125.16 94.83) (layer "Dwgs.User") (width 0.1) (tstamp c0eb397c-0f0a-48f2-a4a7-a39c38857565)) + (gr_line (start 113.88 93.34) (end 113.78 93.34) (layer "Dwgs.User") (width 0.1) (tstamp c1081fbd-567b-4a0a-902e-d6bb89cf65dc)) + (gr_line (start 132.477353 101.074) (end 132.624 100.82) (layer "Dwgs.User") (width 0.1) (tstamp c148c1ef-0e9d-4e98-93bb-63ce4325ce1d)) + (gr_line (start 170.216 100.82) (end 170.362647 101.074) (layer "Dwgs.User") (width 0.1) (tstamp c15462ce-d862-47c0-8d02-faaa43912ad5)) + (gr_line (start 167.18 108.89) (end 167.18 108.44) (layer "Dwgs.User") (width 0.1) (tstamp c217d968-abfe-45cc-8ff9-0996be5bc8c7)) + (gr_line (start 125.16 101.69) (end 125.16 101.79) (layer "Dwgs.User") (width 0.1) (tstamp c256589d-83d1-4f06-a2eb-b3eee59a3f04)) + (gr_line (start 116.48 93.34) (end 116.579499 93.34) (layer "Dwgs.User") (width 0.1) (tstamp c2c03574-5377-4324-aee9-f32dc2ee76d8)) + (gr_line (start 164.64 91.34) (end 164.64 90.89) (layer "Dwgs.User") (width 0.1) (tstamp c36e7618-99ac-4188-82ad-148b9401ee0f)) + (gr_line (start 124.857353 103.106) (end 124.642647 103.106) (layer "Dwgs.User") (width 0.1) (tstamp c41835e2-2b20-4f99-a85d-b1859480e6e6)) + (gr_line (start 168.037353 103.106) (end 167.822647 103.106) (layer "Dwgs.User") (width 0.1) (tstamp c4a3c708-c9b1-415d-ade1-45ed1cc0c8de)) + (gr_line (start 158.51 97.535) (end 158.96 97.535) (layer "Dwgs.User") (width 0.1) (tstamp c564e755-48d6-44b3-a4f6-ab960a5df536)) + (gr_line (start 153.6425 102.9155) (end 154.2775 102.9155) (layer "Dwgs.User") (width 0.1) (tstamp c5c59683-c7c2-4b4e-928e-13e0f78a5fa5)) + (gr_line (start 125.16 94.75) (end 125.16 94.45) (layer "Dwgs.User") (width 0.1) (tstamp c6765903-bc36-44e7-9cb8-22f731f64003)) + (gr_line (start 173.16 91.34) (end 172.26 91.34) (layer "Dwgs.User") (width 0.1) (tstamp c6f64293-5e29-4afa-8644-d8f9ea3d34e8)) + (gr_line (start 125.01 103.09) (end 125.01 101.39) (layer "Dwgs.User") (width 0.1) (tstamp c7d063b0-344e-43df-a36a-e52b467e2d0c)) + (gr_arc (start 156.14 95.426603) (mid 156.115882 95.436593) (end 156.09 95.44) (layer "Dwgs.User") (width 0.1) (tstamp c7db6f12-37a4-4f57-ae11-a85dc3d9a3a4)) + (gr_line (start 176.97 108.44) (end 176.97 108.89) (layer "Dwgs.User") (width 0.1) (tstamp c89b3dc0-3882-490a-b628-aad226ceaf7d)) + (gr_line (start 145.2932 102.811) (end 145.2932 101.5664) (layer "Dwgs.User") (width 0.1) (tstamp c8b3bfbd-79b7-4863-9ae7-79b3f077a5ad)) + (gr_line (start 114.379499 93.34) (end 114.33 93.34) (layer "Dwgs.User") (width 0.1) (tstamp c8e996cd-46bc-414d-bd5b-ed4d35049e19)) + (gr_arc (start 120.39 104.15) (mid 120.531421 104.208579) (end 120.59 104.35) (layer "Dwgs.User") (width 0.1) (tstamp c92ed306-89e5-432e-9a6e-eb8c5772ee7a)) + (gr_line (start 132.262647 101.074) (end 132.477353 101.074) (layer "Dwgs.User") (width 0.1) (tstamp c96c3a49-3f05-45b3-9f34-07e1339feb50)) + (gr_line (start 162.957353 101.074) (end 163.104 100.82) (layer "Dwgs.User") (width 0.1) (tstamp c9a3c459-3ae2-4228-8c64-9130d340c1be)) + (gr_arc (start 153.61 98.79) (mid 153.36 99.04) (end 153.11 98.79) (layer "Dwgs.User") (width 0.1) (tstamp c9a96d3d-0de1-42f4-91c4-77ed8c428365)) + (gr_line (start 111.13 104.64) (end 111.13 104.54) (layer "Dwgs.User") (width 0.1) (tstamp ca099dbc-569b-4f41-bf2b-7fd5a230ebfd)) + (gr_line (start 111.13 93.34) (end 111.18 93.34) (layer "Dwgs.User") (width 0.1) (tstamp ca23c7b9-efd5-48e1-a126-b6d8dbdfb631)) + (gr_line (start 120.142843 106.11) (end 122.43 106.11) (layer "Dwgs.User") (width 0.1) (tstamp ca6bed28-5471-4a76-b6aa-41bb1fbae087)) + (gr_line (start 174.43 90.89) (end 174.43 91.34) (layer "Dwgs.User") (width 0.1) (tstamp ca9b4264-1527-4eb9-9c4a-0f8f3219656b)) + (gr_line (start 159.56 91.34) (end 159.56 90.89) (layer "Dwgs.User") (width 0.1) (tstamp caaf1f33-3031-4927-a17d-4cf530ad7fd5)) + (gr_line (start 125.16 97.75) (end 125.16 97.4) (layer "Dwgs.User") (width 0.1) (tstamp cad3b6e3-3bb4-4763-abef-63fde40972bf)) + (gr_arc (start 153.11 100.99) (mid 153.36 100.74) (end 153.61 100.99) (layer "Dwgs.User") (width 0.1) (tstamp cb23e2e7-de0c-4a6a-9419-1c472c13f509)) + (gr_line (start 163 90.89) (end 163 91.34) (layer "Dwgs.User") (width 0.1) (tstamp cb65e3b7-af7c-4e91-bec7-ee202fea2815)) + (gr_line (start 124.930711 106.4) (end 124.889289 106.4) (layer "Dwgs.User") (width 0.1) (tstamp cc268aca-4ea7-4c71-a771-346b177957a8)) + (gr_line (start 156.19 107.44) (end 156.19 107.295) (layer "Dwgs.User") (width 0.1) (tstamp cc4a02a5-f906-413a-8c0e-7a4399db78ee)) + (gr_line (start 173.264 100.82) (end 175.296 100.82) (layer "Dwgs.User") (width 0.1) (tstamp cca964ad-d64e-4c84-a05a-4b48498db544)) + (gr_line (start 168.08 108.44) (end 168.08 108.89) (layer "Dwgs.User") (width 0.1) (tstamp ccdcd4fd-03cc-4196-93ad-841bb5ede2f5)) + (gr_line (start 125.01 99.5) (end 125.01 94.45) (layer "Dwgs.User") (width 0.1) (tstamp ccf8ec35-bf77-4453-a4d1-8a3097a3a3a3)) + (gr_line (start 158.96 94.995) (end 158.96 95.895) (layer "Dwgs.User") (width 0.1) (tstamp cd4406c8-1d31-4759-9e62-d689d76eb5ee)) + (gr_line (start 125.16 104.99) (end 125.16 105.29) (layer "Dwgs.User") (width 0.1) (tstamp ce1420d2-2748-4ed6-89ac-721f9b8252dd)) + (gr_line (start 167.18 91.34) (end 167.18 90.89) (layer "Dwgs.User") (width 0.1) (tstamp ce81dad1-984f-418b-94c3-c50892ce4eaf)) + (gr_arc (start 152.09 107.54) (mid 152.064118 107.536593) (end 152.04 107.526603) (layer "Dwgs.User") (width 0.1) (tstamp cebe7807-269a-438d-9ce8-7474a1e8d4b1)) + (gr_line (start 125.16 101.79) (end 125.16 101.69) (layer "Dwgs.User") (width 0.1) (tstamp cf7be387-da08-4d97-a3e9-4ac4123d2c0a)) + (gr_line (start 157.516 103.36) (end 155.484 103.36) (layer "Dwgs.User") (width 0.1) (tstamp cfc3b2fc-1257-4353-9902-85cb6291fba4)) + (gr_line (start 161.73 90.89) (end 161.73 91.34) (layer "Dwgs.User") (width 0.1) (tstamp d05ca12a-32d4-4c55-95ec-69bfada58ba7)) + (gr_line (start 117.097712 106.4) (end 117.163856 106.4) (layer "Dwgs.User") (width 0.1) (tstamp d0da5fea-7bb8-466a-808d-a285a956d318)) + (gr_line (start 172.902647 101.074) (end 173.117353 101.074) (layer "Dwgs.User") (width 0.1) (tstamp d1cf4093-87af-4b49-8879-3ac410551bfc)) + (gr_line (start 124.857353 101.074) (end 125.004 100.82) (layer "Dwgs.User") (width 0.1) (tstamp d1dfa0d9-6085-48b0-8c67-e7d0c2f5ffb4)) + (gr_line (start 164.27 108.89) (end 164.64 108.89) (layer "Dwgs.User") (width 0.1) (tstamp d253b606-c6d4-4ab5-bb6d-97f4b72f210a)) + (gr_line (start 162.1 91.34) (end 162.1 90.89) (layer "Dwgs.User") (width 0.1) (tstamp d2551b77-8cbc-4e7a-af3b-fc16fb61dc91)) + (gr_line (start 158.96 95.895) (end 158.51 95.895) (layer "Dwgs.User") (width 0.1) (tstamp d2711918-afcc-4a2b-9377-d1e27a7930b4)) + (gr_line (start 125.16 100.69) (end 125.16 100.59) (layer "Dwgs.User") (width 0.1) (tstamp d2d5f057-3d3f-4824-ba53-bea972f61938)) + (gr_line (start 123.7975 102.9155) (end 123.7975 104.7316) (layer "Dwgs.User") (width 0.1) (tstamp d2eb360b-2bc4-4408-a8b3-07959277e262)) + (gr_line (start 147.8332 98.2136) (end 147.8332 96.969) (layer "Dwgs.User") (width 0.1) (tstamp d2f6c7ec-fb14-4c80-b507-e05e76c13bdf)) + (gr_line (start 170.362647 103.106) (end 170.216 103.36) (layer "Dwgs.User") (width 0.1) (tstamp d2f717ee-b5b0-430b-b4ae-27d4ab833fc2)) + (gr_line (start 173.117353 101.074) (end 173.264 100.82) (layer "Dwgs.User") (width 0.1) (tstamp d3262cbf-1f75-4047-bb3d-01b21ddbafa6)) + (gr_line (start 119.777353 103.106) (end 119.562647 103.106) (layer "Dwgs.User") (width 0.1) (tstamp d43221d1-87f4-4ac1-9c13-f0572b2d8d4f)) + (gr_line (start 175.296 100.82) (end 175.442647 101.074) (layer "Dwgs.User") (width 0.1) (tstamp d44cf594-638f-424d-936a-6e9ed7c314ce)) + (gr_line (start 158.51 102.615) (end 158.96 102.615) (layer "Dwgs.User") (width 0.1) (tstamp d4512ec7-3389-4b56-9e8b-bdbd8a828957)) + (gr_line (start 123.7975 104.7316) (end 123.1625 104.7316) (layer "Dwgs.User") (width 0.1) (tstamp d4a14347-f106-4fab-9c3e-cd8a875c683c)) + (gr_line (start 171.4225 99.4484) (end 172.0575 99.4484) (layer "Dwgs.User") (width 0.1) (tstamp d4afa5e8-9757-447e-9a26-66d5df023d71)) + (gr_line (start 144.8868 98.2136) (end 145.2932 98.2136) (layer "Dwgs.User") (width 0.1) (tstamp d4bb1d66-04fd-4536-a2d7-b63f444dbb57)) + (gr_line (start 147.4268 96.969) (end 147.4268 98.2136) (layer "Dwgs.User") (width 0.1) (tstamp d51ba27b-8ed7-4eca-b0be-3ba1363dff58)) + (gr_line (start 127.182647 103.106) (end 127.036 103.36) (layer "Dwgs.User") (width 0.1) (tstamp d62b9747-f33c-4238-945e-0988aa465b71)) + (gr_line (start 118.7175 104.7316) (end 118.0825 104.7316) (layer "Dwgs.User") (width 0.1) (tstamp d6359131-a990-459a-850e-6c100e2b0fca)) + (gr_line (start 156.1825 101.2645) (end 156.1825 99.4484) (layer "Dwgs.User") (width 0.1) (tstamp d6707dd1-1c60-4d7e-8bf8-d81571e173bf)) + (gr_line (start 172.0575 99.4484) (end 172.0575 101.2645) (layer "Dwgs.User") (width 0.1) (tstamp d6ba3164-fde5-407c-b20d-e6bb69620a1b)) + (gr_line (start 130.084 100.82) (end 132.116 100.82) (layer "Dwgs.User") (width 0.1) (tstamp d7208a74-6fe9-46b0-b74b-3a9c1ced3fc4)) + (gr_line (start 162.742647 103.106) (end 162.596 103.36) (layer "Dwgs.User") (width 0.1) (tstamp d7ca4669-23a4-4571-85ab-fbd03c4b29b9)) + (gr_line (start 118.0825 104.7316) (end 118.0825 102.9155) (layer "Dwgs.User") (width 0.1) (tstamp d854e56c-a962-466d-bce7-bfb3c9c54498)) + (gr_line (start 122.43 106.11) (end 122.43 106.25) (layer "Dwgs.User") (width 0.1) (tstamp d8e5be0d-d98f-406a-bb3b-e2b68228703b)) + (gr_line (start 124.86 93.49) (end 117.58 93.49) (layer "Dwgs.User") (width 0.1) (tstamp d8f7259d-0682-4c60-95f0-ad48cc844b79)) + (gr_line (start 169.72 91.34) (end 169.72 90.89) (layer "Dwgs.User") (width 0.1) (tstamp d916b305-a832-4de9-944b-164deaf38300)) + (gr_line (start 156.09 95.44) (end 155.45 95.44) (layer "Dwgs.User") (width 0.1) (tstamp d926cf39-414a-4944-b6d1-f15d112b5842)) + (gr_line (start 125.16 97.3) (end 125.16 97.2) (layer "Dwgs.User") (width 0.1) (tstamp d93d269d-5381-4718-9ad0-eea6c95f2fda)) + (gr_line (start 152.69 100.82) (end 154.976 100.82) (layer "Dwgs.User") (width 0.1) (tstamp d9486185-1c1d-4547-bd7d-6cdded6e4187)) + (gr_line (start 127.182647 101.074) (end 127.397353 101.074) (layer "Dwgs.User") (width 0.1) (tstamp d9995dd7-4a06-4a52-9152-cf099c9e9707)) + (gr_line (start 169.5175 102.9155) (end 169.5175 104.7316) (layer "Dwgs.User") (width 0.1) (tstamp d9c9046c-34c5-4cac-9cb3-760e2219db2a)) + (gr_line (start 156.09 92.24) (end 152.09 92.24) (layer "Dwgs.User") (width 0.1) (tstamp d9e64fec-799c-44df-859d-e1ddb2b2b9a0)) + (gr_line (start 124.96 105.29) (end 125.01 105.29) (layer "Dwgs.User") (width 0.1) (tstamp dad8a6e3-ca6f-4733-9963-045950c983e5)) + (gr_line (start 125.11 106.14) (end 125.11 105.54) (layer "Dwgs.User") (width 0.1) (tstamp db84bba8-3ab8-4ee7-bbef-fc720fdb5fb7)) + (gr_line (start 152.73 107.54) (end 152.09 107.54) (layer "Dwgs.User") (width 0.1) (tstamp dc121f4e-0673-4834-a909-ead2af2c069f)) + (gr_line (start 155.45 107.54) (end 152.73 107.54) (layer "Dwgs.User") (width 0.1) (tstamp dc13dc22-84a0-4f1c-b185-bc18995f27cf)) + (gr_line (start 160.83 108.44) (end 161.73 108.44) (layer "Dwgs.User") (width 0.1) (tstamp dc588c3d-5206-4af5-96df-dc33e470667e)) + (gr_line (start 170.62 108.44) (end 170.62 108.89) (layer "Dwgs.User") (width 0.1) (tstamp dc6a9fd0-8a12-4e12-ba4e-7f59c3508f44)) + (gr_line (start 125.16 96.7) (end 125.16 96.6) (layer "Dwgs.User") (width 0.1) (tstamp dca3b52c-6cfb-46fe-8a89-560fb218906c)) + (gr_line (start 152.09 107.54) (end 156.09 107.54) (layer "Dwgs.User") (width 0.1) (tstamp dca493a0-6eda-488f-a002-b8342b37cfb9)) + (gr_line (start 168.8825 104.7316) (end 168.8825 102.9155) (layer "Dwgs.User") (width 0.1) (tstamp dcc8b3c7-e00a-4c96-92c3-7cf68574fa70)) + (gr_line (start 163 108.89) (end 163.37 108.89) (layer "Dwgs.User") (width 0.1) (tstamp dd1edec3-c7ba-4ffa-8ee5-8e55b6e96e86)) + (gr_line (start 173.117353 103.106) (end 172.902647 103.106) (layer "Dwgs.User") (width 0.1) (tstamp dd5d8675-d91a-46c9-a0f4-ca5bb7941f9f)) + (gr_line (start 152.09 95.44) (end 156.09 95.44) (layer "Dwgs.User") (width 0.1) (tstamp dd70541c-ed72-41a4-b278-03a490cbdaf1)) + (gr_line (start 174.43 91.34) (end 173.53 91.34) (layer "Dwgs.User") (width 0.1) (tstamp dd7274bb-36be-4baa-903e-939c1f1b99f6)) + (gr_line (start 159.3575 104.7316) (end 158.7225 104.7316) (layer "Dwgs.User") (width 0.1) (tstamp dde2f451-a39d-4356-be48-b264625a1f92)) + (gr_line (start 151.99 94.635) (end 151.99 95.195) (layer "Dwgs.User") (width 0.1) (tstamp df5d2842-95e0-4dc7-91e0-af6aa7f859bb)) + (gr_line (start 114.98 93.49) (end 111.23 93.49) (layer "Dwgs.User") (width 0.1) (tstamp e01103b1-667c-4bf0-b447-ad1d0f4d8e00)) + (gr_line (start 130.084 103.36) (end 129.937353 103.106) (layer "Dwgs.User") (width 0.1) (tstamp e02aa7f6-3311-45f9-a392-49d8927cbc6a)) + (gr_line (start 175.7 90.89) (end 175.7 91.34) (layer "Dwgs.User") (width 0.1) (tstamp e06f99ab-70c9-48e0-9786-de35bc5b9bdc)) + (gr_arc (start 152.04 95.426603) (mid 152.003397 95.39) (end 151.99 95.34) (layer "Dwgs.User") (width 0.1) (tstamp e0a5752b-7977-4fe6-89e3-7b0cd68f3242)) + (gr_line (start 134.656 103.36) (end 132.624 103.36) (layer "Dwgs.User") (width 0.1) (tstamp e0c493ec-d4a1-42a2-9d32-6efc5916ca66)) + (gr_line (start 121.98 106.4) (end 122.08 106.4) (layer "Dwgs.User") (width 0.1) (tstamp e1e9dd9e-df2b-4b75-b02e-38146938802b)) + (gr_line (start 125.16 96.8) (end 125.16 96.7) (layer "Dwgs.User") (width 0.1) (tstamp e239469c-9034-4436-88b6-92607b1872a3)) + (gr_arc (start 118.98 104.45) (mid 119.067868 104.237868) (end 119.28 104.15) (layer "Dwgs.User") (width 0.1) (tstamp e23e042d-8f92-4013-8975-7e4b18e4c81f)) + (gr_line (start 164.27 90.89) (end 164.27 91.34) (layer "Dwgs.User") (width 0.1) (tstamp e2438ac6-18fb-4b36-bec6-4ea332ad0f99)) + (gr_line (start 158.96 101.345) (end 158.96 102.245) (layer "Dwgs.User") (width 0.1) (tstamp e294d04e-3720-4cda-b63e-078484e0733c)) + (gr_line (start 131.4175 99.4484) (end 131.4175 101.2645) (layer "Dwgs.User") (width 0.1) (tstamp e3401cc1-8833-4b9f-9419-4adbb09db133)) + (gr_line (start 166.81 90.89) (end 166.81 91.34) (layer "Dwgs.User") (width 0.1) (tstamp e37b0ec1-e6e0-41cc-abe1-ad47cc32e2d2)) + (gr_line (start 166.81 91.34) (end 165.91 91.34) (layer "Dwgs.User") (width 0.1) (tstamp e48d619a-e38f-4825-9d22-87e3b38d9c99)) + (gr_line (start 124.96 94.2) (end 125.11 94.2) (layer "Dwgs.User") (width 0.1) (tstamp e4e5efbf-5f6e-47bb-b454-0f7ee3ed75bc)) + (gr_line (start 158.51 93.725) (end 158.96 93.725) (layer "Dwgs.User") (width 0.1) (tstamp e62f9cc5-f046-442e-9360-e5ca54404aa5)) + (gr_line (start 118.78 106.4) (end 118.88 106.4) (layer "Dwgs.User") (width 0.1) (tstamp e65c2eb9-e95a-44ea-ab2b-9e65a76fb5f9)) + (gr_line (start 156.19 92.34) (end 156.19 95.34) (layer "Dwgs.User") (width 0.1) (tstamp e67cf9e7-1746-4856-8edd-555e3682799f)) + (gr_line (start 166.3425 101.2645) (end 166.3425 99.4484) (layer "Dwgs.User") (width 0.1) (tstamp e701a39e-8bd3-440b-8d4a-26c336209834)) + (gr_arc (start 151.99 92.34) (mid 152.019289 92.269289) (end 152.09 92.24) (layer "Dwgs.User") (width 0.1) (tstamp e710d65f-4900-4930-9990-68422a72b78f)) + (gr_arc (start 156.09 92.24) (mid 156.160711 92.269289) (end 156.19 92.34) (layer "Dwgs.User") (width 0.1) (tstamp e7e186e0-cb0c-4704-816f-05a9b3696b56)) + (gr_line (start 111.28 104.64) (end 111.28 105.67) (layer "Dwgs.User") (width 0.1) (tstamp e8276875-e9c3-4942-8dc8-97d96e3f05f5)) + (gr_line (start 114.98 93.34) (end 115.08 93.34) (layer "Dwgs.User") (width 0.1) (tstamp e8530ead-dfd3-493b-9a95-dadf905bde55)) + (gr_line (start 121.08 93.34) (end 120.98 93.34) (layer "Dwgs.User") (width 0.1) (tstamp e873deca-9d09-405a-95a4-80d6995b5991)) + (gr_line (start 125.16 103.19) (end 125.16 104.89) (layer "Dwgs.User") (width 0.1) (tstamp e8be39d5-6d33-44d1-b22d-658056cfaa92)) + (gr_line (start 175.804 103.36) (end 175.657353 103.106) (layer "Dwgs.User") (width 0.1) (tstamp e8c88107-4c00-44bc-b07f-5c8bcb21af78)) + (gr_line (start 148.6968 96.969) (end 148.6968 98.2136) (layer "Dwgs.User") (width 0.1) (tstamp ea31f51c-3f0e-4e37-9fd4-9e1b1b7d7784)) + (gr_line (start 112.481376 103.6) (end 111.7 103.6) (layer "Dwgs.User") (width 0.1) (tstamp ea399d10-1f30-4eb9-af71-91adeba50151)) + (gr_line (start 125.16 101.79) (end 125.16 102.69) (layer "Dwgs.User") (width 0.1) (tstamp ea6915c8-6017-425c-9a4e-41c153c8dabe)) + (gr_line (start 116.58 106.4) (end 116.48 106.4) (layer "Dwgs.User") (width 0.1) (tstamp ea84d6c1-7995-47e1-9817-9e2e1b9b4529)) + (gr_line (start 165.282647 103.106) (end 165.136 103.36) (layer "Dwgs.User") (width 0.1) (tstamp eaed3b7c-c5dc-4575-9b71-e56338e01b38)) + (gr_line (start 146.5632 102.811) (end 146.5632 101.5664) (layer "Dwgs.User") (width 0.1) (tstamp eb15020f-39fa-457e-8bb2-2cd2948845ca)) + (gr_arc (start 156.19 107.44) (mid 156.160711 107.510711) (end 156.09 107.54) (layer "Dwgs.User") (width 0.1) (tstamp ebb76e06-409d-47e2-b43c-bf014de25a3d)) + (gr_line (start 175.657353 101.074) (end 175.804 100.82) (layer "Dwgs.User") (width 0.1) (tstamp ebcfdf36-110d-4f79-9de0-e4fcd76c1d6e)) + (gr_line (start 165.54 108.44) (end 165.54 108.89) (layer "Dwgs.User") (width 0.1) (tstamp ec4fc551-9561-4ff0-a309-1fd93dc95354)) + (gr_line (start 147.4268 98.2136) (end 147.8332 98.2136) (layer "Dwgs.User") (width 0.1) (tstamp ec620b77-8919-4285-a6c0-f21b0acac14b)) + (gr_line (start 158.96 97.165) (end 158.51 97.165) (layer "Dwgs.User") (width 0.1) (tstamp ed456be0-07b8-43ac-86b3-64162a4bcc9a)) + (gr_arc (start 124.86 105.39) (mid 124.889289 105.319289) (end 124.96 105.29) (layer "Dwgs.User") (width 0.1) (tstamp edaa690e-7366-4177-92ba-daa3f297ce1e)) + (gr_line (start 114.33 93.34) (end 114.23 93.34) (layer "Dwgs.User") (width 0.1) (tstamp edc4c457-3ea2-4523-ae95-caa82d496aba)) + (gr_line (start 155.484 100.82) (end 157.516 100.82) (layer "Dwgs.User") (width 0.1) (tstamp ee19307b-ab88-4d6f-9dfb-4149660b5a08)) + (gr_line (start 122.464 103.36) (end 122.317353 103.106) (layer "Dwgs.User") (width 0.1) (tstamp ee19a334-b72e-4d54-9a8e-a742ee56e7f1)) + (gr_line (start 169.35 108.44) (end 169.35 108.89) (layer "Dwgs.User") (width 0.1) (tstamp ee823590-ecbd-4107-bb1f-1a309e1b21af)) + (gr_line (start 117.23 106.4) (end 119.23 106.4) (layer "Dwgs.User") (width 0.1) (tstamp eec6f1b0-e4aa-49f8-b4a3-e9424cd19e76)) + (gr_arc (start 123.543096 99.623175) (mid 123.561896 99.538014) (end 123.640374 99.5) (layer "Dwgs.User") (width 0.1) (tstamp ef36da6c-b409-4756-be92-54a96426032e)) + (gr_line (start 173.9625 104.7316) (end 173.9625 102.9155) (layer "Dwgs.User") (width 0.1) (tstamp f0305a19-1293-46c9-9810-aa49b8dab8a4)) + (gr_line (start 125.16 94.83) (end 125.16 94.93) (layer "Dwgs.User") (width 0.1) (tstamp f157df02-fcb0-4ae7-85ca-bfc4444eda90)) + (gr_line (start 165.136 100.82) (end 165.282647 101.074) (layer "Dwgs.User") (width 0.1) (tstamp f1926e02-3170-4727-853e-1c4f3bbf137d)) + (gr_line (start 164.4375 104.7316) (end 163.8025 104.7316) (layer "Dwgs.User") (width 0.1) (tstamp f238640e-3401-420a-ac31-a433f268cbfc)) + (gr_arc (start 156.19 107.44) (mid 156.176602 107.49) (end 156.14 107.526603) (layer "Dwgs.User") (width 0.1) (tstamp f263cfd5-7b24-4140-97ba-078a691115b5)) + (gr_arc (start 156.14 104.353397) (mid 156.176603 104.39) (end 156.19 104.44) (layer "Dwgs.User") (width 0.1) (tstamp f3300c0f-bc1d-4506-88a5-7b5425daafbe)) + (gr_line (start 125.16 105.29) (end 125.16 104.99) (layer "Dwgs.User") (width 0.1) (tstamp f35f3ca6-627a-459d-ac6f-93bc55931ba4)) + (gr_line (start 117.58 93.34) (end 124.86 93.34) (layer "Dwgs.User") (width 0.1) (tstamp f3dab665-64fc-433e-8a62-3743b891ab83)) + (gr_line (start 163.37 108.89) (end 163.37 108.44) (layer "Dwgs.User") (width 0.1) (tstamp f48726b8-0a84-4a45-918f-9908a36bbb39)) + (gr_line (start 160.417353 103.106) (end 160.202647 103.106) (layer "Dwgs.User") (width 0.1) (tstamp f50237bb-f9c4-46da-b66f-024d10bb7b7e)) + (gr_line (start 119.485416 106.155416) (end 119.023934 105.693934) (layer "Dwgs.User") (width 0.1) (tstamp f5496577-1f0e-43c4-b7b1-d474695074a1)) + (gr_line (start 156.8175 101.2645) (end 156.1825 101.2645) (layer "Dwgs.User") (width 0.1) (tstamp f603df29-ba7f-4366-8b24-7592d4086934)) + (gr_line (start 125.16 95.93) (end 125.16 94.93) (layer "Dwgs.User") (width 0.1) (tstamp f64aa569-ea55-4736-9c96-3bfc2b30ccbd)) + (gr_arc (start 152.09 95.44) (mid 152.064118 95.436593) (end 152.04 95.426603) (layer "Dwgs.User") (width 0.1) (tstamp f64ffca7-3c88-48d2-8d78-4bd7ec67bd1b)) + (gr_line (start 170.62 90.89) (end 170.62 91.34) (layer "Dwgs.User") (width 0.1) (tstamp f69e205d-71f1-4bed-8e46-d37fa1b7672f)) + (gr_line (start 133.3225 104.7316) (end 133.3225 102.9155) (layer "Dwgs.User") (width 0.1) (tstamp f75ad864-f096-4907-b31d-1a5733db4331)) + (gr_line (start 146.1568 101.5664) (end 146.1568 102.811) (layer "Dwgs.User") (width 0.1) (tstamp f7aa75c5-0bfb-4814-b8eb-5f8a9a128aa9)) + (gr_line (start 137.45 100.82) (end 137.45 103.36) (layer "Dwgs.User") (width 0.1) (tstamp f8371471-4211-4368-9dd3-157e5ded70c0)) + (gr_line (start 114.28 94.3) (end 114.28 102.8) (layer "Dwgs.User") (width 0.1) (tstamp f86cba30-221c-4482-a722-9565a7604bea)) + (gr_arc (start 151.99 92.34) (mid 152.003398 92.29) (end 152.04 92.253397) (layer "Dwgs.User") (width 0.1) (tstamp f8dfbcec-1704-46b0-8ba3-862aa1011c94)) + (gr_line (start 175.442647 101.074) (end 175.657353 101.074) (layer "Dwgs.User") (width 0.1) (tstamp f90672d0-2ca8-4eaf-98ba-17042306fced)) + (gr_line (start 143.6168 98.2136) (end 144.0232 98.2136) (layer "Dwgs.User") (width 0.1) (tstamp f930fa91-6adf-4e04-b42b-e0932fc06543)) + (gr_line (start 121.08 106.4) (end 121.88 106.4) (layer "Dwgs.User") (width 0.1) (tstamp fa18dae7-2fb1-4387-a3c1-308ca16c5c1d)) + (gr_line (start 114.579499 93.34) (end 114.479499 93.34) (layer "Dwgs.User") (width 0.1) (tstamp fa2a5346-d622-407d-8ea5-af43140584bc)) + (gr_line (start 156.19 106.735) (end 156.19 105.145) (layer "Dwgs.User") (width 0.1) (tstamp fa5d9c89-54e0-49e6-a404-29eddf2326d4)) + (gr_line (start 158.7225 104.7316) (end 158.7225 102.9155) (layer "Dwgs.User") (width 0.1) (tstamp fa7a662e-0f2e-4762-a1b6-993570cda4cb)) + (gr_line (start 162.596 100.82) (end 162.742647 101.074) (layer "Dwgs.User") (width 0.1) (tstamp fa93048a-0287-417c-a157-84428f11f7dd)) + (gr_line (start 128.2425 102.9155) (end 128.8775 102.9155) (layer "Dwgs.User") (width 0.1) (tstamp fad34361-5673-4b6b-8616-ccc33cd00c24)) + (gr_line (start 122.43 106.4) (end 119.63 106.4) (layer "Dwgs.User") (width 0.1) (tstamp fb070305-7327-4d47-aaa2-52c1d26471d3)) + (gr_line (start 146.1568 98.2136) (end 146.5632 98.2136) (layer "Dwgs.User") (width 0.1) (tstamp fb07492c-d4ca-4a78-b92a-c3b14ed44b3f)) + (gr_line (start 151.99 107.44) (end 151.99 104.44) (layer "Dwgs.User") (width 0.1) (tstamp fb9b0b15-c800-4199-a9df-1e999ba6a70c)) + (gr_line (start 155.122647 101.074) (end 155.337353 101.074) (layer "Dwgs.User") (width 0.1) (tstamp fd04ef58-75d9-44e8-b553-d9bff716e067)) + (gr_arc (start 156.09 104.34) (mid 156.160711 104.369289) (end 156.19 104.44) (layer "Dwgs.User") (width 0.1) (tstamp fd087f5c-4502-4ee7-8af3-5178468c0f00)) + (gr_line (start 152.69 103.36) (end 152.69 100.82) (layer "Dwgs.User") (width 0.1) (tstamp fd41e0a0-0c45-4beb-acb0-15535c603bb5)) + (gr_arc (start 154.61 98.79) (mid 154.36 99.04) (end 154.11 98.79) (layer "Dwgs.User") (width 0.1) (tstamp fe3862ad-c819-4b65-9e75-6bbc512422a7)) + (gr_arc (start 124.41 103.19) (mid 124.439289 103.119289) (end 124.51 103.09) (layer "Dwgs.User") (width 0.1) (tstamp fed927fe-eafb-4471-ac5d-756725ea174d)) + (gr_line (start 156.19 92.485) (end 156.19 92.34) (layer "Dwgs.User") (width 0.1) (tstamp feea9af2-e998-45d6-8a1e-4e08486a5acb)) + (gr_line (start 156.19 95.34) (end 156.19 95.195) (layer "Dwgs.User") (width 0.1) (tstamp ff3e9ca9-6dc0-4496-aebe-20f4a6d61445)) + (gr_line (start 121.965786 105.11) (end 122.43 105.11) (layer "Dwgs.User") (width 0.1) (tstamp ff5ead9b-37b8-4bc9-9ac4-39775f57c6cf)) + (gr_line (start 170.577353 101.074) (end 170.724 100.82) (layer "Dwgs.User") (width 0.1) (tstamp ffadf13e-d327-4e72-a129-20b1a691d829)) + (gr_arc (start 112.13 109.94) (mid 111.422893 109.647107) (end 111.13 108.94) (layer "Edge.Cuts") (width 0.1) (tstamp 0a3cbae7-b160-4bf5-bc29-b843867e2bbd)) + (gr_arc (start 153.225 89.84) (mid 152.225 90.84) (end 151.225 89.84) (layer "Edge.Cuts") (width 0.1) (tstamp 0f6ca36b-4e91-4d2e-9f6d-1a233014754f)) + (gr_line (start 132.905 109.94) (end 133.445 109.94) (layer "Edge.Cuts") (width 0.1) (tstamp 116dcb13-d6f5-40e1-b835-53753121c5b4)) + (gr_line (start 130.905 89.84) (end 130.365 89.84) (layer "Edge.Cuts") (width 0.1) (tstamp 162f154d-2c07-4117-86f4-e015b02985f7)) + (gr_line (start 184.09 108.94) (end 184.09 102.39) (layer "Edge.Cuts") (width 0.1) (tstamp 1947ea8e-3ea5-493b-ab1c-4e8c5a675398)) + (gr_arc (start 130.905 109.94) (mid 131.905 108.94) (end 132.905 109.94) (layer "Edge.Cuts") (width 0.1) (tstamp 27907456-675f-4372-8456-3255fdd1a95d)) + (gr_arc (start 153.765 109.94) (mid 154.765 108.94) (end 155.765 109.94) (layer "Edge.Cuts") (width 0.1) (tstamp 291cc86e-d7a1-4f14-983b-0e47c854bfea)) + (gr_arc (start 148.685 109.94) (mid 149.685 108.94) (end 150.685 109.94) (layer "Edge.Cuts") (width 0.1) (tstamp 29d94e71-4a82-4acd-a9a6-3ce8158eea40)) + (gr_line (start 148.145 109.94) (end 148.685 109.94) (layer "Edge.Cuts") (width 0.1) (tstamp 2b3e8080-6e59-452f-841b-e804bf3dea49)) + (gr_line (start 184.09 97.39) (end 184.09 90.84) (layer "Edge.Cuts") (width 0.1) (tstamp 42460404-dc50-4148-9d5f-cac0b90af438)) + (gr_line (start 128.365 89.84) (end 112.13 89.84) (layer "Edge.Cuts") (width 0.1) (tstamp 48afede4-072d-4812-9a6d-de4cc719bbfc)) + (gr_line (start 145.605 109.94) (end 146.145 109.94) (layer "Edge.Cuts") (width 0.1) (tstamp 4c181c82-3856-46b2-8d6b-7ada0b0e0dbd)) + (gr_line (start 141.065 89.84) (end 140.525 89.84) (layer "Edge.Cuts") (width 0.1) (tstamp 4f483546-5fe1-407e-aca5-4726d4b59bdf)) + (gr_arc (start 184.09 108.94) (mid 183.797107 109.647107) (end 183.09 109.94) (layer "Edge.Cuts") (width 0.1) (tstamp 5356313d-c6c9-4e43-8779-7f5954c39660)) + (gr_line (start 183.09 89.84) (end 155.765 89.84) (layer "Edge.Cuts") (width 0.1) (tstamp 552d2777-af2b-41ec-a31e-cd43b7c8490e)) + (gr_arc (start 151.225 109.94) (mid 152.225 108.94) (end 153.225 109.94) (layer "Edge.Cuts") (width 0.1) (tstamp 55682d2e-622c-420d-9c4c-b25e379c0cee)) + (gr_arc (start 111.13 90.84) (mid 111.422893 90.132893) (end 112.13 89.84) (layer "Edge.Cuts") (width 0.1) (tstamp 67f80db7-ac30-4dde-8bf8-915428d171ed)) + (gr_circle (center 187.09 99.89) (end 188.19 99.89) (layer "Edge.Cuts") (width 0.1) (fill none) (tstamp 692dffb0-eeb3-460d-80d8-8bd9541d6d51)) + (gr_arc (start 146.145 109.94) (mid 147.145 108.94) (end 148.145 109.94) (layer "Edge.Cuts") (width 0.1) (tstamp 6a680daf-5077-4fe1-a6fb-381b32e17c20)) + (gr_line (start 133.445 89.84) (end 132.905 89.84) (layer "Edge.Cuts") (width 0.1) (tstamp 6d5bf990-e87a-4829-a61f-8ea7b3162465)) + (gr_line (start 151.225 89.84) (end 150.685 89.84) (layer "Edge.Cuts") (width 0.1) (tstamp 702bcc4a-1260-4306-a7ef-df0173640909)) + (gr_line (start 111.13 90.84) (end 111.13 108.94) (layer "Edge.Cuts") (width 0.1) (tstamp 7055685d-2e9b-46e1-bc20-a497c53cfccc)) + (gr_line (start 146.145 89.84) (end 145.605 89.84) (layer "Edge.Cuts") (width 0.1) (tstamp 7075a498-5749-4f19-ba7d-9b8161486d1a)) + (gr_line (start 153.225 109.94) (end 153.765 109.94) (layer "Edge.Cuts") (width 0.1) (tstamp 708c8a34-f258-4554-8b50-7818f1e46fec)) + (gr_arc (start 187.09 97.39) (mid 189.59 99.89) (end 187.09 102.39) (layer "Edge.Cuts") (width 0.1) (tstamp 7b2e7361-0d1f-4a92-a4d0-dd4722c9bc0c)) + (gr_line (start 140.525 109.94) (end 141.065 109.94) (layer "Edge.Cuts") (width 0.1) (tstamp 7e469a82-52a7-4eb1-be03-bc9c0642b27e)) + (gr_arc (start 143.065 89.84) (mid 142.065 90.84) (end 141.065 89.84) (layer "Edge.Cuts") (width 0.1) (tstamp 8106e159-fb99-406c-bc50-06500718779d)) + (gr_arc (start 183.09 89.84) (mid 183.797107 90.132893) (end 184.09 90.84) (layer "Edge.Cuts") (width 0.1) (tstamp 8af22483-6986-4db8-a478-e3da735ace71)) + (gr_arc (start 155.765 89.84) (mid 154.765 90.84) (end 153.765 89.84) (layer "Edge.Cuts") (width 0.1) (tstamp 8ce025a1-9853-4cfa-8a57-0f90476397e9)) + (gr_line (start 135.445 109.94) (end 135.985 109.94) (layer "Edge.Cuts") (width 0.1) (tstamp 9397f066-146e-4896-a893-48ef11276451)) + (gr_arc (start 143.605 109.94) (mid 144.605 108.94) (end 145.605 109.94) (layer "Edge.Cuts") (width 0.1) (tstamp 95b7f2da-98e3-4cce-ac19-d396a7cb212b)) + (gr_arc (start 137.985 89.84) (mid 136.985 90.84) (end 135.985 89.84) (layer "Edge.Cuts") (width 0.1) (tstamp 9e70a67e-a0cb-4ed7-a04f-451f35eb0aa2)) + (gr_line (start 143.065 109.94) (end 143.605 109.94) (layer "Edge.Cuts") (width 0.1) (tstamp a39b3356-a010-429a-a766-68905309a2a8)) + (gr_arc (start 133.445 109.94) (mid 134.445 108.94) (end 135.445 109.94) (layer "Edge.Cuts") (width 0.1) (tstamp a49b3da8-6010-4095-aa91-6b927d37e1a9)) + (gr_arc (start 130.365 89.84) (mid 129.365 90.84) (end 128.365 89.84) (layer "Edge.Cuts") (width 0.1) (tstamp a7d728a2-9639-442c-9b0f-3544c5006fbb)) + (gr_arc (start 140.525 89.84) (mid 139.525 90.84) (end 138.525 89.84) (layer "Edge.Cuts") (width 0.1) (tstamp adad9755-afe1-4118-bfb8-41d502969aa3)) + (gr_arc (start 135.985 109.94) (mid 136.985 108.94) (end 137.985 109.94) (layer "Edge.Cuts") (width 0.1) (tstamp aff84b5c-8e56-466e-b662-9df2e66e5713)) + (gr_arc (start 128.365 109.94) (mid 129.365 108.94) (end 130.365 109.94) (layer "Edge.Cuts") (width 0.1) (tstamp b85d2401-b9b9-4c27-b2e2-c9d9ab116d00)) + (gr_line (start 184.09 102.39) (end 187.09 102.39) (layer "Edge.Cuts") (width 0.1) (tstamp be9bd86b-4cd5-4bd2-a31b-b062107d2a54)) + (gr_arc (start 132.905 89.84) (mid 131.905 90.84) (end 130.905 89.84) (layer "Edge.Cuts") (width 0.1) (tstamp c5500aa7-533e-4660-a458-6bb3014c7d4e)) + (gr_line (start 143.605 89.84) (end 143.065 89.84) (layer "Edge.Cuts") (width 0.1) (tstamp c815f8c2-60a3-41e6-9457-b1a6b30692c1)) + (gr_arc (start 145.605 89.84) (mid 144.605 90.84) (end 143.605 89.84) (layer "Edge.Cuts") (width 0.1) (tstamp cd5e5396-17e0-450e-8b9a-002266132cf2)) + (gr_line (start 137.985 109.94) (end 138.525 109.94) (layer "Edge.Cuts") (width 0.1) (tstamp d22db607-bea2-4c52-8eb6-eb70b4714d8e)) + (gr_line (start 130.365 109.94) (end 130.905 109.94) (layer "Edge.Cuts") (width 0.1) (tstamp d50411b2-0b2f-41b7-bf8d-fb8f1d6295a1)) + (gr_arc (start 148.145 89.84) (mid 147.145 90.84) (end 146.145 89.84) (layer "Edge.Cuts") (width 0.1) (tstamp d6487266-4010-40c8-82a0-ce8d241c85c6)) + (gr_arc (start 135.445 89.84) (mid 134.445 90.84) (end 133.445 89.84) (layer "Edge.Cuts") (width 0.1) (tstamp d6d675b8-f9ac-4030-acc8-a357acd0a266)) + (gr_arc (start 138.525 109.94) (mid 139.525 108.94) (end 140.525 109.94) (layer "Edge.Cuts") (width 0.1) (tstamp d8ac61b3-a533-4f15-9856-f7b341d352a1)) + (gr_line (start 148.685 89.84) (end 148.145 89.84) (layer "Edge.Cuts") (width 0.1) (tstamp dcff4fe4-a296-4fc0-a12d-bb6b3501faf2)) + (gr_line (start 153.765 89.84) (end 153.225 89.84) (layer "Edge.Cuts") (width 0.1) (tstamp e13a898a-5de8-4d94-a80e-b064cdd01fc8)) + (gr_line (start 138.525 89.84) (end 137.985 89.84) (layer "Edge.Cuts") (width 0.1) (tstamp e29ecb3b-bdd4-4ff6-80c6-b91117ba47bf)) + (gr_arc (start 141.065 109.94) (mid 142.065 108.94) (end 143.065 109.94) (layer "Edge.Cuts") (width 0.1) (tstamp e50812bf-0199-4ce8-96e2-2acd9a19f7c3)) + (gr_line (start 155.765 109.94) (end 183.09 109.94) (layer "Edge.Cuts") (width 0.1) (tstamp efd7d119-139b-46c7-a740-b97f28a1acd9)) + (gr_arc (start 150.685 89.84) (mid 149.685 90.84) (end 148.685 89.84) (layer "Edge.Cuts") (width 0.1) (tstamp f081c5ee-2d7c-454a-ae5e-f89b6ddc1d26)) + (gr_line (start 135.985 89.84) (end 135.445 89.84) (layer "Edge.Cuts") (width 0.1) (tstamp f52f1267-ef72-4576-80d0-5917f82db729)) + (gr_line (start 187.09 97.39) (end 184.09 97.39) (layer "Edge.Cuts") (width 0.1) (tstamp f9bc0e2e-b866-4474-96af-9520a16e439e)) + (gr_line (start 112.13 109.94) (end 128.365 109.94) (layer "Edge.Cuts") (width 0.1) (tstamp fdc927f3-9ea5-4abb-b957-1dbde7dca836)) + (gr_line (start 150.685 109.94) (end 151.225 109.94) (layer "Edge.Cuts") (width 0.1) (tstamp fe776f0b-ee51-486d-9e06-f8f16374a646)) + + (group "" (id 97973004-ab59-4480-8ec1-1121dd7cf977) + (members + 00614f02-5f74-445d-b8a3-482b8dcb3aea + 0091242a-bd9b-46a6-8cd0-cc81fa5db24e + 029d749e-2289-4769-a0ce-e768bbda0cd0 + 02bac189-ce88-4201-a986-e602f9553dc1 + 02c7928f-d09e-4c42-87ef-b558687617a0 + 0339f2f9-1d07-4033-b6d0-c95452f524c6 + 03de85dc-b128-49ac-8b1c-15f0b91dca0a + 03f16627-7ce3-4e9a-9706-778678e98c1c + 0432af54-cd35-4c3c-88e6-bbc1a7d2c6b4 + 04f09747-54bd-4ccb-936d-3baa80652154 + 056c9c13-522f-449c-84bd-83c95f6465a1 + 056f9cb3-715f-434f-b47c-815c372d9a5b + 05a3fd88-c58e-4323-96ff-70847ec682b8 + 05b39569-aaa4-4273-9b2f-9e1c6ca4bf60 + 060a9d78-785b-4e95-9f27-c70c9bd79368 + 066e1992-d763-4a9e-8986-82a289c6f7d3 + 067b3699-1a46-41cc-9c7c-3cbbde83e2fb + 06bccb0b-2f4b-4092-834b-3871294199da + 07678248-0774-49ca-a377-01b7e220adb6 + 07e7e87d-9255-44b7-964c-2876bb9fc44d + 07ea9fe0-fccf-4161-ae79-4bb53994d273 + 0816bee4-5935-4741-bd0f-c370f413b02b + 0862a9b0-7459-4a5b-8ff5-5feddf0d18fe + 093c99d2-6e87-428b-a172-e8573afe4705 + 09986a87-49c2-4491-b1b1-87dfad52ab95 + 0a2b5435-df6f-448f-96cd-9db62b5b9e70 + 0a3cbae7-b160-4bf5-bc29-b843867e2bbd + 0aed48c5-a79a-4a41-bde0-89e9736637c1 + 0bedad37-3e3c-4266-b4c1-07c7e3d0463e + 0c190730-a9e0-4c4a-8e33-74ee97fb990f + 0da7e2aa-d9f3-4593-ac1b-d89c546ab178 + 0daddb18-1491-4767-9ffd-66c8a8ce3cbd + 0de56762-ce56-43f6-b2d4-e1179688ff91 + 0e37a1ae-bf06-4c70-ae4c-e7cee553b0b3 + 0e4017fd-02b7-4b3e-b764-397cfccac2d2 + 0ea92114-4add-4ede-abc4-5938831a4fe1 + 0ecfe0e1-844f-49ac-b5dc-cd55b19a7c78 + 0f262423-d4d1-4f04-805d-93d3f5b41978 + 0f6ca36b-4e91-4d2e-9f6d-1a233014754f + 0fa241a2-e684-4224-bccf-feed816795b0 + 0fe1f74e-4cc8-412d-b8bc-832159a1ad3e + 101131db-475d-4275-89d4-ac43ee9a25d5 + 1087999d-983e-42bf-b325-b81c766947cc + 10d4acf9-eb07-4704-a954-054e4658f650 + 10e85d49-8c1d-4e38-920c-77246389daec + 115c2483-0d3d-4658-9c56-55683456b2f9 + 116dcb13-d6f5-40e1-b835-53753121c5b4 + 1292b9fb-45f9-4291-9d3e-a52497cdea91 + 12fc5fae-2589-481a-9c5c-1325ed3bb3b8 + 133e4738-5308-4c8f-a278-ff3a4b573a42 + 134ebdd2-d265-4b1a-8213-3e042a51f566 + 135dc062-d77d-4089-9b0c-b888ac79f63d + 141d55e7-f9fa-486e-a08c-0c5785aa9581 + 146b4319-9474-44ef-b1d5-69dbae1dd3b4 + 15849db9-220e-4afd-b7a0-07e5cbc925e5 + 15b3207d-6547-4224-a45d-823705a30761 + 162f154d-2c07-4117-86f4-e015b02985f7 + 1641185a-e805-403b-b872-eb3450148cc8 + 16e7dd30-8a60-41e6-8325-60db1ff50bda + 16fbbcc3-471d-4df7-bd39-383fab759fde + 1807c891-5ccf-491b-b7cb-6605d0030f30 + 180f785b-776f-4bd7-9484-793776580425 + 181135d6-242b-4baf-94b0-054802ef6df0 + 18282a1a-7012-465b-b257-9994d1176f23 + 1947ea8e-3ea5-493b-ab1c-4e8c5a675398 + 199f157d-6f84-41da-be4c-6e21ffdc4f00 + 19b27451-36d1-4db8-a770-a2f4704d803b + 1a15fd52-148b-4d62-9349-832a33a996d2 + 1a65f33c-7c56-44cc-9cf1-6ac54f672e8b + 1ba339fd-3eed-4093-adef-1f8b6939e3c2 + 1cdb9155-c146-40d9-bead-b709bf7a6467 + 1d052412-811d-4384-b62d-b10970534fb5 + 1d4ec9d6-b4f1-4935-a655-c469bc01feb9 + 1d5c7df0-522c-4a10-9a69-07abea9a1183 + 1dc423f3-1741-4cb4-aa3d-a702d125d769 + 1e153892-978d-4400-8801-39c4a5561d8b + 1e9dcbc0-ed04-41e3-9512-fbb37cd7d179 + 1eea39a5-2762-4e3a-8c74-b0e5bc37cc89 + 206ace7c-6dae-4c64-b30f-758119e57387 + 2097c02a-9419-426d-a010-cdecd44e7e36 + 20a43104-38cb-4a67-8590-5917234169dc + 2103272c-7211-4351-8c30-d9ee75c2fa7e + 211ba5f5-6627-4b10-b9d4-2b719a124b05 + 2143a25a-25e8-4e2e-9312-ce2f7400ce5a + 218239a9-f46b-4a60-abfb-8e61afe4c024 + 21846961-2a78-4e46-8242-5b4de77ca82d + 21de29f1-55e6-491f-9b72-2d0cf15d30d9 + 21fe1bc1-d1c8-4902-93fe-7cb124f6bf69 + 2223eeb5-aa83-44a0-a53a-f71aacabab9c + 226e6848-5ca6-48e1-bb24-ee9637a3e720 + 22785b00-396f-44a8-8e08-62628c54033a + 22e92cb2-fddd-4edc-a5bc-370417db5793 + 22f315f8-0151-4d27-8242-3486735e4932 + 231482ff-1119-4860-be3c-5d6a4f33d8bb + 2367e08a-8f8d-4bc0-b6ce-e2a4cddd902f + 23714fc1-59db-4500-9d38-af86ea69fe3f + 239e2fad-43c2-4c5d-b01d-958b74c9d73b + 23b2684a-2e45-4486-8777-c94a6d847baf + 2415f537-fa6d-4c04-bd97-00b9f7ab939d + 245afab8-87c2-4797-af78-aa00d5229c94 + 2498638f-f5bc-47e0-a9d3-49191018a41a + 24b42847-745f-4b13-9d2d-3ca8b56bc9de + 25f3023a-0b40-4b57-b672-1aea8836d4eb + 260c26af-1e30-4624-94a4-7cbfebc53f93 + 2621aeaa-9788-4950-9c8a-57743e174960 + 26c50088-80ff-43fa-a13b-801600e7555b + 26cd24ad-dc7e-4f22-8cf0-d09179b0d265 + 27101d2b-1f80-4d40-be5b-78bdcb31c291 + 2733a655-db42-498b-a705-184e4fe256a3 + 27907456-675f-4372-8456-3255fdd1a95d + 279cd597-6735-4af4-af86-33cfd2693447 + 27fc8656-6226-4381-8e8c-fcbb6b9cbbc0 + 2904c703-ae82-4d76-85d3-cfc7aa518669 + 291cc86e-d7a1-4f14-983b-0e47c854bfea + 29af8fa6-318a-4068-993d-88e7a24f7791 + 29ba223f-0062-42d7-819b-390aa3bcacc3 + 29d94e71-4a82-4acd-a9a6-3ce8158eea40 + 29ec1054-96e5-4371-8fe7-f31c027b27f9 + 2aa21e55-25c6-4cf4-bd8a-94f164963f6d + 2adf9a42-71f2-422d-9815-628bfa0df6ad + 2b3b0810-cd1d-48a1-a104-fe015cf2af3c + 2b3e8080-6e59-452f-841b-e804bf3dea49 + 2b5ef57e-9829-4c8c-a772-0c450fa178e8 + 2bf286a9-8d8a-4f20-af25-6a1b3ef01eaf + 2c6fedfa-d124-4a32-aaf9-1170178a9e41 + 2c73e00f-5d35-4d88-becf-fdafa0c411c7 + 2ca7d35c-f03b-45eb-bc5e-72292d02981d + 2d54211d-88b2-466c-9078-d1f5c442f872 + 2d950027-8eed-46d2-abb8-2762744219c2 + 2d9bce5f-b18b-47a2-9654-99086bc7c8ca + 2dd2edde-b79d-4ec7-87aa-5955ab5302f8 + 2dd9a5be-3aa9-4cf6-850b-b3df04cedb00 + 2e7f3dd4-50ff-427a-80eb-8563e69a085c + 2e955124-6939-410c-81be-086896fd0cd7 + 2eb44e1a-4042-4ea6-aca2-4836a6ec84e9 + 2f1a67f5-44b6-4eb7-b122-776c3e081dbc + 2f21cb60-1df5-4469-8858-6fe21b88fa8a + 2f389684-fc2a-46a1-b11d-5ff1e4efe356 + 2f51df0b-67e2-48cd-baf9-810701c16be9 + 2f5f8e07-82d7-4697-8ac1-989270a8e323 + 2fb7c72d-0d63-4df2-879e-15ff023fd1c7 + 306245f6-c9a6-4171-8c7a-27ad4c131cc8 + 3097fea7-46a7-47a9-9cae-e148c8b5c995 + 314fcc6b-e3a4-4081-8c91-6170b707f3b4 + 31e8e591-b069-4d14-81fb-1e93e03fe645 + 31f320f8-9fca-458c-80c9-a63045dda05e + 31fb150b-1634-44a3-bbf0-4f27407886b5 + 32152384-5f30-4790-a5a7-40a77da6c53b + 32a2f93b-16df-4770-bc80-527fdb2ae15f + 32f61989-73fd-4834-bc42-216f4a71d9ad + 33112a1f-3ef4-4453-945b-eafb5950befb + 331e4b06-587c-447e-bea7-ab3ccd3f7d67 + 3334571c-c306-4b79-9192-949abe8085c3 + 346289f5-7fed-42d0-915e-ef27086b0782 + 3472ac51-2496-4774-b525-ca48b4eac389 + 34937f78-0cd7-450b-8935-ad6822032278 + 34f494d3-f727-4e92-b04b-bb02d398ea06 + 35318ab5-9d7c-4bdd-a72a-c62185738587 + 3585a139-cfc6-4b57-99ce-0163d84caa4b + 35fc5917-85ed-430a-af29-e1aaa9fddb54 + 36e55dc7-b8dd-4b75-aa11-1a977430e4af + 379db743-d2de-4c85-9575-f43ed26c5e74 + 37a423bc-f22b-4f78-8391-c64cc41bfdd6 + 38559462-8913-458e-9fcc-77f1adc4f527 + 388986aa-d9a5-485c-b2a5-20f9608e57de + 38cc4717-2b78-451d-a8e8-c30858d9cd68 + 38de0c27-43f9-4d0c-b62d-48e6b8ab2200 + 38f1f681-d503-49fe-ab87-4225bebb7b32 + 3915f1cf-e224-42a7-8e50-b5aa000e1dd3 + 393f0e56-c2d5-4ea4-8463-50265bc94d2d + 39527c7c-05aa-4994-8d55-39b3fd9e47ff + 39d4d534-3997-4fb4-b0b6-d0e644ff29b2 + 39e0f00a-b805-421f-8ed9-5c24ef6aaebe + 3a04ac0e-2ee8-4210-b45b-490cd2425450 + 3a07246e-3a61-43dd-8b09-0bdf03c3e6f3 + 3a43f2ef-4839-435a-bede-c90252339a51 + 3a9c4d0d-b8e3-4e3b-8868-df708ade9fd9 + 3ae98a70-72b8-4d72-8f0c-ecef7b1ca6d6 + 3aed5f29-363b-4eca-a21e-756b68fe8f23 + 3b0df787-46aa-47b2-a11b-96df99f09a2e + 3b6b0ef8-cb49-4806-a385-9d93130ffdc0 + 3b8985d9-c9ce-4e5c-9b0f-dabde5c52713 + 3be5bd27-9454-4a5f-b633-97d435ecd4be + 3c6ce34b-07ed-4efb-887e-8dcc88f1612e + 3d219812-261f-4741-b119-3a36b9052a99 + 3db2b854-567f-4631-b764-bc8442698c9a + 3e63fcaa-261d-4d3c-a5b9-9e80616e71a6 + 3e93cc50-fa1e-445b-8e48-b92594ec9006 + 3f2f1aeb-24f2-4597-bbb9-54b12c752d6f + 3f473a8d-2328-4446-9e36-aaf72c0dfceb + 3f787304-0f09-428f-9615-a178d53b5ed2 + 4055fe96-6cd0-4098-a3eb-28bdaf898065 + 407396c7-a5e2-4ecf-b616-5f9c7dafa52b + 40f2d922-dc77-4165-a4ba-77aa54d0f1fa + 41456f29-a703-4d12-85d0-c21ea7c0a452 + 42460404-dc50-4148-9d5f-cac0b90af438 + 435960f9-5f02-4a62-b70b-90c1310d341d + 4373547b-d3a9-4735-9a12-7e388d4b1d9d + 4373f5d0-1e9d-489b-aa26-9288beeb8cb3 + 43d030b0-c46c-4448-bc9e-987f12c7559d + 43d1f199-f4ee-4683-993f-3ccce3985416 + 441f9c55-be25-4fae-8b9b-6a71ad3b0b86 + 45005e12-36a9-4853-a83d-a87ffad800b4 + 45108c5b-3874-4f53-b99e-7b06655c64f6 + 453a77ad-fac0-4cd4-9fca-6e04f8cfa3e5 + 45580b2c-f853-4bae-b48d-8b2b7a8c9649 + 4572eec0-5fb0-46c6-89b0-d3341f37f9b8 + 45d251bd-4b8c-43e0-a1a3-865b3e4a5a83 + 465b9a35-7fb3-44cf-baad-d436034be791 + 4660c6bf-e69d-4a4d-bdfe-d125b039e05b + 4669b17e-5fae-4b5d-94be-7208bcd71fb5 + 46988679-cc79-4024-bbc1-b1f167609765 + 47d22e24-7c7f-4617-a22e-884660a7a8ff + 485ee4d3-27de-4a80-88eb-91e13dbef2a5 + 48afede4-072d-4812-9a6d-de4cc719bbfc + 48c77641-1046-44b0-bae8-52da953ea633 + 494350ab-d17d-4de3-8b96-f15451154d6a + 497283dc-5316-4045-8e79-68a8bb50f4f5 + 49bc590d-585a-47df-bda3-e46f7daa6990 + 4a333138-062a-4541-87e1-d6ef03b1e3dd + 4b325ae5-e73e-4571-bbb6-af750e7a58b8 + 4b64ce61-cd9f-4068-855a-a918a6209675 + 4c181c82-3856-46b2-8d6b-7ada0b0e0dbd + 4ccb0e93-36f7-4d7b-baba-2457a90267b7 + 4cfa277c-b6f4-4575-8b74-ea83242e8813 + 4d8a27f3-5994-4c02-859b-09c0a8d34a6d + 4dee428b-9873-45f7-9e00-b3849b95bf1c + 4e3d105c-3308-491c-a0aa-594e6247a479 + 4e647fa9-4baf-493a-891e-373b7bb90db1 + 4e9a87a3-418a-43a4-a902-c2e3103424a6 + 4ea989fb-9cda-4210-89d1-fe153727e40c + 4f483546-5fe1-407e-aca5-4726d4b59bdf + 4f5c185a-e11b-4d82-a8bc-b9689c9c633b + 5006a2d1-be56-41dc-888f-67fb86bea03b + 50e82998-94a9-4b38-a960-5b276fe8586e + 51153875-01b9-46f2-8b14-6306c8586588 + 51854738-fa9c-4052-b2b8-d2dde367270a + 5199ad7b-ab84-4971-9df3-53270a0a37ba + 51aef7ea-783f-44d5-8cab-9faf10da9064 + 51c3e3cc-739b-4bac-a271-7f779051de39 + 51e38831-b6fe-409b-99e0-ea87fc114c30 + 525775d5-0e6e-4c76-b5ab-199b2e54ac41 + 5289bc61-7716-4d1c-91dd-03b886b4760f + 52ee041e-391d-486f-9b84-abdb5d15db1c + 53450cca-0496-4005-a7ef-5b1ae88fa402 + 5356313d-c6c9-4e43-8779-7f5954c39660 + 53ca97d4-db85-46f1-866a-72ac5fba2bbf + 5404664b-083c-4ae7-9324-834241f1df76 + 552d2777-af2b-41ec-a31e-cd43b7c8490e + 55682d2e-622c-420d-9c4c-b25e379c0cee + 55b6b040-a746-4424-a5b4-1f45a1d15120 + 55baceed-f7d9-4d73-84e4-b06c780623b7 + 564f1f04-6ff3-46a0-97e8-50ef7acc139d + 56ff2288-13d4-4098-a5c7-84a24b2613d1 + 578b9c3f-045a-4830-a037-9fe8cd94bc66 + 57a35f7e-1eec-4bce-82d8-651d3f20ac22 + 57be4481-578e-480a-b137-dcb8fd95babf + 57f6b820-62fa-4d98-887a-d2a380a76964 + 5821604d-5ceb-420a-b7e4-ba8f3233a4b7 + 582bf52d-f931-4c83-b941-f1087e1fcfee + 584970dc-5538-419b-b998-8d8d4ada798f + 5879090f-e6ed-48e6-a17d-670ffa2c5461 + 58b8f6af-04ea-4eb0-addd-d814725f2fe4 + 58d7fa4b-9912-4b07-bc12-5c063b15dc64 + 5939629d-2bb5-4863-83b9-27abfaf3eac4 + 5985ca3b-83e7-485c-a804-db4e4c6c7fcd + 59e71b82-fd2c-4d50-9aac-2d0df67acc80 + 5a43f40c-f75b-4db3-8642-220e4b806437 + 5a8f98be-3861-4e9a-bd06-b6217ad585d8 + 5add257c-7316-4000-a2a3-e6a8c316ab9c + 5af0907a-cc5c-4a2d-827a-e091ca759470 + 5b3893c6-e4cc-4fa9-be23-63d62d12d2ee + 5b77bfad-fdd5-4e7d-86ed-ad21fd1ee4e0 + 5c6b1739-bddf-40c7-873c-328e9672302a + 5cfef867-dff5-4abc-9cf1-6fa8f45eaef2 + 5cff2459-d275-4803-8fa2-8289cb689a75 + 5d0be09d-133e-4cac-b0d8-fd336835cc6c + 5d580eb5-0e83-488b-a0fd-a803c630f551 + 5d82a0b1-5c8e-42d0-8222-7c4b7e42e518 + 5daca09e-60a3-4181-a1f0-19c5300b582a + 5e066231-f8d2-43bf-bff3-80c6fb0c9c86 + 5e182438-6e6f-45ba-bef5-6be708805673 + 5e3ca9e8-0260-4e6b-9246-fb1c6934f35f + 5e40bd00-596e-4595-8afb-832031e7cd39 + 5e5cd445-0654-433f-a688-b9a23b9e5558 + 5ed661fa-d25a-413c-8f9b-894484c176c8 + 5ed8deae-e8d8-451d-b355-245f684ec0f6 + 5ee97714-8ad8-47a4-bd70-3ebc8406c7b5 + 5f10ab2e-0baa-42eb-b877-7c3c9e704ef3 + 5ff98705-cf67-403d-b0a1-4c57aba0bbdc + 60e6d176-aade-439f-80d8-764c13ba9024 + 6109efee-34d5-4820-b2f1-2e5974922f54 + 61dc775a-14c7-4cce-be48-c5d6e8045697 + 61e76907-90d9-4f86-b582-ad651e60aa0c + 620fd31f-1d7e-453a-874c-5731a4bbc505 + 6228b587-c759-4f5a-aee2-44d44c696a08 + 622fea85-fc3a-49dd-a4af-3bfd36c6693d + 62681247-dfee-4fe9-a797-fef33eb74a7f + 62a86672-b56e-46bd-bc25-5c0442dd543c + 62faf466-a5e1-4997-954a-e3f3f47e0a99 + 633a5fce-b259-449f-9fbe-80229fc70017 + 6356fe97-06cd-4a4b-b2f2-2e98498da4a1 + 638492c1-39c4-4e69-a3a1-232b324e5b21 + 6388b06e-af5c-405f-b16c-ee4225810f35 + 64272f01-95d4-4c13-ba7c-3f30a36f0035 + 649e27c1-a08d-4446-a16b-cdabdc592f17 + 651c91fd-ec54-4600-b738-56cbf235205c + 659d7e05-6d30-4048-9451-144bfa6ef129 + 65fd9534-1b91-42a6-8ecd-7a42d8ae4ade + 660190eb-2890-4958-8da2-d63590e8e03c + 6640c556-30bc-4fc7-a797-35ec65cf0f77 + 665ff082-de8d-4434-bdea-5354e7d0b15e + 66615e91-3e7a-41a3-a5de-d8915c5cd486 + 66cddf54-c141-4b9d-b300-069491227c2d + 6792a032-9256-487f-aa0b-8c689e242f4e + 67ab6325-5225-42ee-86cc-5aee5e01efce + 67cd1818-ab6d-4ba5-a3d8-70afbf35fabc + 67f80db7-ac30-4dde-8bf8-915428d171ed + 684dd321-c877-439a-a4d1-bec26f55cf89 + 68617ba5-42bf-490f-8799-0863bd897117 + 6884c1b4-ba74-400a-b15a-2bf546c04e73 + 68d49974-bc49-4d87-a030-93a7fa8ebeb6 + 692dffb0-eeb3-460d-80d8-8bd9541d6d51 + 6933eb41-d471-4ac8-9862-a876011c4773 + 6a680daf-5077-4fe1-a6fb-381b32e17c20 + 6a787b26-86fe-4c4f-b92f-6381c95ee933 + 6b24a7a2-717b-4448-a40d-7886a2ed3d71 + 6b4ca676-3379-4b8d-a1e2-e3fc88dc7cd2 + 6bcc4470-6fe4-4c8d-ba29-7eeb8005d7fa + 6bd7efd5-74f5-4b09-8bb7-5762073a2f78 + 6c1bd5d9-fec6-47a5-aae3-ae852ddca055 + 6cd7c58d-b03d-4db3-ab50-a7d7e7c1e928 + 6d259b3b-196b-4e6b-acdf-fc3e09319776 + 6d5bf990-e87a-4829-a61f-8ea7b3162465 + 6e4bbe2c-1e2d-4539-b6d8-5d5edc57b4de + 6eaf44a5-2bb8-4e84-ae85-e082a57042dd + 6ec69bf0-bd27-4e31-8522-71d586cb9b08 + 6f172490-e7c3-45a0-aafa-f94d5c12df3c + 6f4bbdb8-5bb2-4c5f-b604-50c819181981 + 6f9f8538-0b96-4eb3-a978-1c7439c0e8bf + 6fc49b93-842f-4814-8ca6-1e11c16fa8fa + 6fe48f1e-4227-4f41-a8f4-0e7ec51a11e0 + 702bcc4a-1260-4306-a7ef-df0173640909 + 7048b6de-9faa-47a1-99c5-b74e17a09a6e + 7055685d-2e9b-46e1-bc20-a497c53cfccc + 7056f785-c3a5-4410-b6bb-e5d4b16e698a + 7075a498-5749-4f19-ba7d-9b8161486d1a + 70852beb-7102-4701-922b-9248dc6321b9 + 708c8a34-f258-4554-8b50-7818f1e46fec + 70b4eaa4-61ff-4379-b06d-623ca05164b1 + 7131ee3d-de36-4b6f-a391-6695d97d81c2 + 716698ac-ed16-401e-958b-a147596def51 + 7279a0ce-75b5-4d17-adea-e5e9949407a6 + 72941de6-4056-41a3-be67-7819992eeaa3 + 72f86fac-1de9-4853-b551-bbe9529da2a3 + 73cb09ad-e380-49f3-bc9d-038b1104bc93 + 748d63ca-ef14-4e90-85ec-56619f2bea16 + 74b09255-300b-41bc-a348-4c1575c49b6b + 74e18c92-61e9-4154-8a7c-dfbd4a946e5e + 75640a86-c7da-4929-8b77-923b3c6bee6b + 7594fd2b-c5d9-4333-9f70-e53128d27c5a + 759bd0f6-2646-44e7-94e8-5efbb41acb61 + 769ea560-2289-4ed4-9a90-b0dea97e737b + 76bf3f12-008a-4a13-b216-e7dae9728db6 + 774bd91e-6eb9-41ae-a7fd-20b88a031e1c + 775b50f1-c021-45e5-b4f4-3da4bfa305be + 77697486-3706-446b-b0dc-99c11e5b6fb4 + 777a7d71-7105-4515-9e2c-011e98c36c8b + 77a09c2e-107d-4a82-95c7-b222303ba715 + 77f01482-1a0d-408c-a0b8-f389b6fedc82 + 783d99f0-9b1b-482f-8119-337c4a520061 + 78aafe37-8da2-4652-8543-18ebef8d21dc + 7915db52-1f07-44c7-b796-c7fc1aca7b67 + 791f08b2-190f-425b-84e1-3aec99a46611 + 7924cdcb-45b3-439a-a58e-4e78f2ff9e7a + 7a6f4622-4213-4c81-84d2-b9b224d2a864 + 7a961303-0ee0-4514-9c41-71f7612da80d + 7ae39c29-5978-4de8-b0d8-d1c366a90b03 + 7aec2799-4000-4098-a752-1bed4b75fdcf + 7af1455e-5ab2-4286-8c74-1c6dee563208 + 7af171ef-c1a8-4817-ac3c-eb72938c314e + 7af2029e-2b92-4284-9c35-cc656514173c + 7afec855-ed33-4dd1-8a74-3d2203c81740 + 7b08b6d2-d7a0-45d0-95d4-d9dfb9198b27 + 7b2e7361-0d1f-4a92-a4d0-dd4722c9bc0c + 7b52fe8c-70c2-40ad-a3fc-6605c636d0aa + 7c11a07f-525c-45a7-9ad1-361ea90615cc + 7c2084e9-3b2e-4e85-bb04-4d1893a867c2 + 7c2c7978-0926-492c-8e3d-93ac33c3f226 + 7d6807f0-5c24-4921-bebf-780c435de47a + 7dc50517-93ab-4193-ac41-8278ba10e249 + 7ddf1699-d6ad-4845-a07e-3473cde5e6f7 + 7de935c6-9119-4940-8080-9aaeda4f0cdd + 7e469a82-52a7-4eb1-be03-bc9c0642b27e + 7e60f163-8805-4bc8-82a5-453da20ba1a2 + 7e72304a-4161-4a22-8d65-75ee76dcdf69 + 7e97b323-0f13-4745-becc-fa60e39b31ab + 7f093f1d-323b-4b4e-b33a-3f6815b22768 + 7f180349-2cf1-4faf-8ede-f82101d0fa01 + 7f8f1c43-60e8-4996-bc14-4119dfb0064e + 7ff53ce7-3b96-4229-89d1-8f8a87153527 + 8020425b-e9f3-495c-818a-7f5fd22a8d70 + 80215c98-408c-4508-93c7-1e56cf06a8a8 + 80cb90dd-8449-449f-bec1-5e371021e295 + 80cc6be9-668a-4344-9b65-0659b9071698 + 8106e159-fb99-406c-bc50-06500718779d + 811d06c8-e35a-4323-8e51-11882cc1e2ee + 814df96b-3bb6-4126-aa8c-e8b33dded25a + 81b5884f-0b53-4d9c-bd56-68349a70cfdc + 825fbe04-7d0f-48c0-b196-0082d6b05859 + 836c1b72-6495-4f81-a125-58f0f7d787c2 + 838ac53b-3ec1-4b97-9af6-c64a64ade18e + 84a6c803-a4ac-48df-95fb-6930cca4e25e + 84b3d674-c896-4b45-8754-206b7ffab72a + 84f23cc9-9d15-4bf2-9356-88729f7800a5 + 85322b6b-1523-4ed9-b09b-510e91ab3a2d + 857af45d-9795-41a2-9845-b5953516cc70 + 85ce4d4c-d093-4323-9a04-70d33e2d6c7e + 878a2718-59d9-4c03-a97a-b08c3d833cb9 + 88070912-713c-4330-af62-557ab402d00d + 88071c39-7478-4d42-a0c9-ea227d61f16f + 885fe160-5562-498c-ba18-9f416e1d87d2 + 888c6fdf-c198-440a-97af-035b863dc875 + 88d47af8-f385-41c3-a158-4c2020d5a72a + 8967a184-9ee6-4ceb-8e38-09ca452dd23c + 899f4c1a-985b-472e-a9b0-465d356ef34c + 8a68ab9f-49b9-4556-9773-ed86cd9bea27 + 8af22483-6986-4db8-a478-e3da735ace71 + 8b14e97f-a7f6-455f-85ae-a0954b928855 + 8b31a9ad-c09d-47b9-beaa-1384fac3ffb7 + 8baf31fa-31f2-4e84-ad86-348df774f617 + 8bb2ea49-8b54-4a72-9f61-f9dccb873903 + 8c1a53c3-eda8-4cf7-9683-1f61b02265f4 + 8cd8d6bd-0601-49fc-9009-a437af9b27c1 + 8ce025a1-9853-4cfa-8a57-0f90476397e9 + 8d1c6119-4f8d-41bb-ac26-14b7b55b90f2 + 8d2043d0-1e2a-47a8-b40c-1d3c6b8242cf + 8d6a069f-4023-40e5-b77a-c447eb7c2730 + 8da81810-0dba-4c36-b58c-934ee2c0935b + 8db28752-04fe-4bac-819e-f19842492596 + 8dd226d8-66bc-4019-937b-c4493e60bf0c + 8e2a2f6b-8167-4ac5-b2a6-8fefc2e5007d + 8e865536-7e57-40b8-97a2-c3d4b4b14caf + 8e94704d-ee0e-4c50-8651-4c244ec28f0b + 8e9472d5-2e62-43cd-b888-fa5c05783852 + 8e99653b-c67d-4ba5-a650-293257580275 + 8fe07dfe-267e-4da8-ab2a-a7d656544a34 + 9110f47f-a990-4603-9888-a44e93a8108c + 917dba0e-1b1e-4fc1-b97b-7105df526305 + 9180d7c2-ce82-4cd5-b2d5-d944586fb090 + 918a6a26-88ff-465a-a552-2e52adce8a03 + 91c9976e-33f3-4776-850e-36ee5d251977 + 91d0ac33-7c52-4428-ba83-8720a383522c + 91d49aaf-5758-42d3-9e51-e9b2b8cd5c5c + 92f9a7fe-12b9-455c-b3cb-646f2e8901ef + 932b167d-ddab-4c71-b0d5-3168e84d05b6 + 9397f066-146e-4896-a893-48ef11276451 + 93b57547-14ef-426b-8dd7-720b4647ee08 + 93ef09ab-58f4-40ee-8d2b-6370d66890c0 + 9569f35a-5d83-4bd3-8b6f-04dd6bf8bb08 + 95b18c49-20bf-4d9f-b3e3-cebdbf176759 + 95b7f2da-98e3-4cce-ac19-d396a7cb212b + 965e9f3d-a63a-4e76-b8e8-1c3bcdc42f90 + 979784e6-6813-4ec3-b827-3fde402e007b + 97c50482-6541-4532-8eba-6810ebff5ba3 + 97c58935-8898-41d5-af6f-2caecb03bd8b + 97db2584-9d07-47ab-a55c-f2cbce602789 + 97e1f64a-ea8c-4ff4-8e5c-27686d0544c1 + 980b19d6-0b6e-4e93-8693-7a08045bf388 + 98155800-78e7-48e2-b416-a5948d22b132 + 988c23bd-6bf9-4ea3-a1d5-3f5ff466a45e + 98e246fc-6637-419f-a1a8-e2b22f10addf + 98fdaaa4-ab6c-4567-b372-3bc94fd81e5f + 98ff4f6d-a60b-43b0-818a-c3cd573da89f + 99f42b58-88eb-419e-9dff-f13059ef50e4 + 99fae41c-2f63-4408-bdc3-75a6970f2a0d + 9a0f5593-2efd-4f52-bc76-f583ab6c95eb + 9aa4051b-5d8e-420b-bd92-028862775303 + 9b5bbbea-ca45-4da3-962b-10accf46ad7c + 9b9495fa-3f87-4963-9a1b-e0a11c6e50cd + 9bbfc9f6-2a80-4dea-9ff5-2759035e5aa6 + 9bf41a0b-ea8e-4983-9913-df79ab0696ea + 9bf78976-ad42-44da-b016-b92a04213a48 + 9c162611-d326-45c2-97a0-d5c1a6e19742 + 9c476165-300e-4e08-a354-4288b203c377 + 9c81b9e4-c3e8-4c27-acdb-80b385e836a7 + 9d460f71-ca89-4f90-b952-20c79bec7158 + 9d48d597-b34c-4d62-95c8-00458414359f + 9dffc0da-762b-42b7-80b1-72a451bb294f + 9e494106-9748-4063-aab8-1d81407059de + 9e70a67e-a0cb-4ed7-a04f-451f35eb0aa2 + 9e72b1b6-3005-465f-b29c-9fb2358144c7 + 9ea636a1-ff23-411e-b275-b6f4b33edb43 + 9fa8af66-62ad-41ac-afee-78344131d7e2 + a18da1d6-412f-494b-867d-28a1d0ab5318 + a1df41ee-57e8-4cf8-a863-aa2ac7fada82 + a2596afc-a768-4a7c-9191-a7e735f775bd + a277cb94-54f4-4201-9b19-13124e8120b4 + a28887cd-2bdd-4ab6-b51e-99cd821ad1c9 + a2c9cbc7-7eac-476f-b409-1772289f1cc4 + a2d16f16-08e6-4947-a6d1-6d787ead02c9 + a3300d9e-5df3-4330-94ad-c751f1cdcdcb + a345cb5a-bcc4-40ab-9689-42a3820311de + a382881d-447e-4c02-8a48-4f80e0b390fe + a39b3356-a010-429a-a766-68905309a2a8 + a3ab1103-5095-446b-a5db-e9210387a84b + a3f3a018-6a6b-4914-95d4-b6f25692820f + a49b3da8-6010-4095-aa91-6b927d37e1a9 + a4d622ec-e75f-4ce0-9338-865fac55dc34 + a500369a-3292-46a6-8a64-7c1bf6098bda + a593f909-65fb-4700-bd27-abc51f135083 + a6d8eddd-c1b7-4ec6-be66-ae5ff2fbee45 + a74d645f-303f-41ae-8029-4f5b19b6a1a3 + a7d728a2-9639-442c-9b0f-3544c5006fbb + a7f09cc9-2878-4daf-b4fb-2ce63103f4de + a86ebb7d-c08b-41a3-932e-4967a39ce5f9 + a889c295-2d25-4852-8cf9-7f4cc11f3612 + a899f147-0456-4c4c-a26b-178ed678750a + a8d0f58f-0f06-444b-8a1a-c732d79b81a2 + a8e78b6b-5175-49a4-b7f2-c08b88186745 + a9020c88-312f-49d4-af97-70066f9a1449 + a95d1158-4fd7-4b29-842d-f674925ed1fa + a96d0fd6-c2d2-48a1-b455-757422534d73 + a991215c-d7f8-4d74-b4fb-3a6d0eed12fe + a9d015c2-a71b-46ad-b3a4-6eea7301ee51 + aa1a0bd5-2e16-4ae4-84c6-ff71de2d0c53 + aa4294ff-e846-499a-a8cf-1632eb69d9c0 + aa939002-c65a-4bc5-8b33-1d5bc4c91f9d + aa95d6eb-61a1-46de-9823-1ac851e53563 + aaf14fa5-bc5e-4b91-b0fb-212df5ce1861 + abaf0800-b23b-4bb1-9bdf-6551a3604128 + acbae352-7edb-481c-9de1-1fbd99403011 + accfea22-0220-4bfc-bc57-88d0ba04c651 + ad1c7d30-fa47-47fd-bb07-e836ca23dcc6 + adad9755-afe1-4118-bfb8-41d502969aa3 + adcccd0e-f5ea-4c83-bd8f-8b220d307709 + adda719e-cc0a-4a85-b429-67f8b39774f5 + ae113a97-dd90-42bf-96ea-bb92e7431ac6 + aed6fd45-9008-49c0-8589-6686d15e36cc + af4061e0-2fb3-421c-9efe-82e8563650d9 + aff84b5c-8e56-466e-b662-9df2e66e5713 + b04080e5-2876-4809-b8eb-6b6d5549c662 + b0c1f62a-b351-48b8-ac88-59c1c4ffa2ff + b10dfd5a-5d78-45f7-bb38-39704568a3b6 + b11ebd64-c9c7-457c-8a22-c5fed71aadd1 + b1dad93c-ba77-40bd-9b75-65e2d6f9b5a1 + b1ef00bc-27fd-4f4a-a155-1b738e608b48 + b217b8c4-9da3-40f9-a62d-8788048abf37 + b39d7b4a-582f-449b-82fa-4a80df318fb1 + b3d79b21-e9ec-46a6-9b4b-229c9984a42a + b3f487ff-b47c-4488-ba8c-08e7b412da21 + b4180bb0-8dc9-48ec-9931-26e9377a82e1 + b48e1e47-217a-4f46-9867-a25c61e99a99 + b4d5ac25-a764-4661-8e59-75c6a5d8b7e8 + b75ad8c5-9f55-49ef-9af8-7ab1b11ab9d4 + b7c70258-e563-4ab0-a10c-bab04504f68f + b7d17bac-1e38-46d5-a98a-e0926b878e04 + b7f2850c-f58b-4cf9-8802-41c268c3767e + b85d2401-b9b9-4c27-b2e2-c9d9ab116d00 + b85d8111-c66c-4649-8ef3-173324d8dc2f + b908b981-26a7-43ab-bb19-96137e6f2a5a + b910f5a9-203b-4617-b055-34ba181d7395 + b92befd8-ceb5-44db-8e92-e20bd1c458d5 + b92fa812-e3bc-485d-a2c8-52969ffa6bfa + b9f78253-7769-4896-9d90-a085649a16bc + ba033dd1-a5e2-4136-b71b-d0a1cef6fc1f + ba659ad4-f6ac-4fc8-b519-f7116425af73 + bace1c82-95a6-4669-a7e7-5bc2416e7e84 + bad15ef1-4174-4239-b07e-7b1abace56d9 + bad86c5b-550c-459d-ae24-5ea963bd342c + bb2fdfc9-f8f7-4d99-a460-31e1e9e1906f + bc0c4d76-7073-443a-8935-0c1edc20eb60 + bc234a96-8e81-44f9-b2e6-4514c92af46f + bc35943f-a590-4110-881f-43b94dc3ef60 + bdf0e688-b15d-45d8-a79c-81e4aaf38323 + be9bd86b-4cd5-4bd2-a31b-b062107d2a54 + beb82a37-d3f9-4faf-8a12-3d7cff00e7e0 + bf14984d-f9cd-45a2-a01c-a06d3ed0e284 + bf562497-0a71-4eb8-8045-49f675de552e + bfb98b57-4773-47e2-9d39-fe5066822d93 + c034fa22-c359-4a30-b345-2b159807ba6c + c09f8970-d399-4978-b7bf-c426fa2f915a + c0cb9ac4-a13f-4ce2-8aea-f334c934d5b3 + c0eb397c-0f0a-48f2-a4a7-a39c38857565 + c1081fbd-567b-4a0a-902e-d6bb89cf65dc + c148c1ef-0e9d-4e98-93bb-63ce4325ce1d + c15462ce-d862-47c0-8d02-faaa43912ad5 + c217d968-abfe-45cc-8ff9-0996be5bc8c7 + c256589d-83d1-4f06-a2eb-b3eee59a3f04 + c2c03574-5377-4324-aee9-f32dc2ee76d8 + c36e7618-99ac-4188-82ad-148b9401ee0f + c41835e2-2b20-4f99-a85d-b1859480e6e6 + c4a3c708-c9b1-415d-ade1-45ed1cc0c8de + c5500aa7-533e-4660-a458-6bb3014c7d4e + c564e755-48d6-44b3-a4f6-ab960a5df536 + c5c59683-c7c2-4b4e-928e-13e0f78a5fa5 + c6765903-bc36-44e7-9cb8-22f731f64003 + c6f64293-5e29-4afa-8644-d8f9ea3d34e8 + c7d063b0-344e-43df-a36a-e52b467e2d0c + c7db6f12-37a4-4f57-ae11-a85dc3d9a3a4 + c815f8c2-60a3-41e6-9457-b1a6b30692c1 + c89b3dc0-3882-490a-b628-aad226ceaf7d + c8b3bfbd-79b7-4863-9ae7-79b3f077a5ad + c8e996cd-46bc-414d-bd5b-ed4d35049e19 + c92ed306-89e5-432e-9a6e-eb8c5772ee7a + c96c3a49-3f05-45b3-9f34-07e1339feb50 + c9a3c459-3ae2-4228-8c64-9130d340c1be + c9a96d3d-0de1-42f4-91c4-77ed8c428365 + ca099dbc-569b-4f41-bf2b-7fd5a230ebfd + ca23c7b9-efd5-48e1-a126-b6d8dbdfb631 + ca6bed28-5471-4a76-b6aa-41bb1fbae087 + ca9b4264-1527-4eb9-9c4a-0f8f3219656b + caaf1f33-3031-4927-a17d-4cf530ad7fd5 + cad3b6e3-3bb4-4763-abef-63fde40972bf + cb23e2e7-de0c-4a6a-9419-1c472c13f509 + cb65e3b7-af7c-4e91-bec7-ee202fea2815 + cc268aca-4ea7-4c71-a771-346b177957a8 + cc4a02a5-f906-413a-8c0e-7a4399db78ee + cca964ad-d64e-4c84-a05a-4b48498db544 + ccdcd4fd-03cc-4196-93ad-841bb5ede2f5 + ccf8ec35-bf77-4453-a4d1-8a3097a3a3a3 + cd4406c8-1d31-4759-9e62-d689d76eb5ee + cd5e5396-17e0-450e-8b9a-002266132cf2 + ce1420d2-2748-4ed6-89ac-721f9b8252dd + ce81dad1-984f-418b-94c3-c50892ce4eaf + cebe7807-269a-438d-9ce8-7474a1e8d4b1 + cf7be387-da08-4d97-a3e9-4ac4123d2c0a + cfc3b2fc-1257-4353-9902-85cb6291fba4 + d05ca12a-32d4-4c55-95ec-69bfada58ba7 + d0da5fea-7bb8-466a-808d-a285a956d318 + d1cf4093-87af-4b49-8879-3ac410551bfc + d1dfa0d9-6085-48b0-8c67-e7d0c2f5ffb4 + d22db607-bea2-4c52-8eb6-eb70b4714d8e + d253b606-c6d4-4ab5-bb6d-97f4b72f210a + d2551b77-8cbc-4e7a-af3b-fc16fb61dc91 + d2711918-afcc-4a2b-9377-d1e27a7930b4 + d2d5f057-3d3f-4824-ba53-bea972f61938 + d2eb360b-2bc4-4408-a8b3-07959277e262 + d2f6c7ec-fb14-4c80-b507-e05e76c13bdf + d2f717ee-b5b0-430b-b4ae-27d4ab833fc2 + d3262cbf-1f75-4047-bb3d-01b21ddbafa6 + d43221d1-87f4-4ac1-9c13-f0572b2d8d4f + d44cf594-638f-424d-936a-6e9ed7c314ce + d4512ec7-3389-4b56-9e8b-bdbd8a828957 + d4a14347-f106-4fab-9c3e-cd8a875c683c + d4afa5e8-9757-447e-9a26-66d5df023d71 + d4bb1d66-04fd-4536-a2d7-b63f444dbb57 + d50411b2-0b2f-41b7-bf8d-fb8f1d6295a1 + d51ba27b-8ed7-4eca-b0be-3ba1363dff58 + d62b9747-f33c-4238-945e-0988aa465b71 + d6359131-a990-459a-850e-6c100e2b0fca + d6487266-4010-40c8-82a0-ce8d241c85c6 + d6707dd1-1c60-4d7e-8bf8-d81571e173bf + d6ba3164-fde5-407c-b20d-e6bb69620a1b + d6d675b8-f9ac-4030-acc8-a357acd0a266 + d7208a74-6fe9-46b0-b74b-3a9c1ced3fc4 + d7ca4669-23a4-4571-85ab-fbd03c4b29b9 + d854e56c-a962-466d-bce7-bfb3c9c54498 + d8ac61b3-a533-4f15-9856-f7b341d352a1 + d8e5be0d-d98f-406a-bb3b-e2b68228703b + d8f7259d-0682-4c60-95f0-ad48cc844b79 + d916b305-a832-4de9-944b-164deaf38300 + d926cf39-414a-4944-b6d1-f15d112b5842 + d93d269d-5381-4718-9ad0-eea6c95f2fda + d9486185-1c1d-4547-bd7d-6cdded6e4187 + d9995dd7-4a06-4a52-9152-cf099c9e9707 + d9c9046c-34c5-4cac-9cb3-760e2219db2a + d9e64fec-799c-44df-859d-e1ddb2b2b9a0 + dad8a6e3-ca6f-4733-9963-045950c983e5 + db84bba8-3ab8-4ee7-bbef-fc720fdb5fb7 + dc121f4e-0673-4834-a909-ead2af2c069f + dc13dc22-84a0-4f1c-b185-bc18995f27cf + dc588c3d-5206-4af5-96df-dc33e470667e + dc6a9fd0-8a12-4e12-ba4e-7f59c3508f44 + dca3b52c-6cfb-46fe-8a89-560fb218906c + dca493a0-6eda-488f-a002-b8342b37cfb9 + dcc8b3c7-e00a-4c96-92c3-7cf68574fa70 + dcff4fe4-a296-4fc0-a12d-bb6b3501faf2 + dd1edec3-c7ba-4ffa-8ee5-8e55b6e96e86 + dd5d8675-d91a-46c9-a0f4-ca5bb7941f9f + dd70541c-ed72-41a4-b278-03a490cbdaf1 + dd7274bb-36be-4baa-903e-939c1f1b99f6 + dde2f451-a39d-4356-be48-b264625a1f92 + df5d2842-95e0-4dc7-91e0-af6aa7f859bb + e01103b1-667c-4bf0-b447-ad1d0f4d8e00 + e02aa7f6-3311-45f9-a392-49d8927cbc6a + e06f99ab-70c9-48e0-9786-de35bc5b9bdc + e0a5752b-7977-4fe6-89e3-7b0cd68f3242 + e0c493ec-d4a1-42a2-9d32-6efc5916ca66 + e13a898a-5de8-4d94-a80e-b064cdd01fc8 + e1e9dd9e-df2b-4b75-b02e-38146938802b + e239469c-9034-4436-88b6-92607b1872a3 + e23e042d-8f92-4013-8975-7e4b18e4c81f + e2438ac6-18fb-4b36-bec6-4ea332ad0f99 + e294d04e-3720-4cda-b63e-078484e0733c + e29ecb3b-bdd4-4ff6-80c6-b91117ba47bf + e3401cc1-8833-4b9f-9419-4adbb09db133 + e37b0ec1-e6e0-41cc-abe1-ad47cc32e2d2 + e48d619a-e38f-4825-9d22-87e3b38d9c99 + e4e5efbf-5f6e-47bb-b454-0f7ee3ed75bc + e50812bf-0199-4ce8-96e2-2acd9a19f7c3 + e62f9cc5-f046-442e-9360-e5ca54404aa5 + e65c2eb9-e95a-44ea-ab2b-9e65a76fb5f9 + e67cf9e7-1746-4856-8edd-555e3682799f + e701a39e-8bd3-440b-8d4a-26c336209834 + e710d65f-4900-4930-9990-68422a72b78f + e7e186e0-cb0c-4704-816f-05a9b3696b56 + e8276875-e9c3-4942-8dc8-97d96e3f05f5 + e8530ead-dfd3-493b-9a95-dadf905bde55 + e873deca-9d09-405a-95a4-80d6995b5991 + e8be39d5-6d33-44d1-b22d-658056cfaa92 + e8c88107-4c00-44bc-b07f-5c8bcb21af78 + ea31f51c-3f0e-4e37-9fd4-9e1b1b7d7784 + ea399d10-1f30-4eb9-af71-91adeba50151 + ea6915c8-6017-425c-9a4e-41c153c8dabe + ea84d6c1-7995-47e1-9817-9e2e1b9b4529 + eaed3b7c-c5dc-4575-9b71-e56338e01b38 + eb15020f-39fa-457e-8bb2-2cd2948845ca + ebb76e06-409d-47e2-b43c-bf014de25a3d + ebcfdf36-110d-4f79-9de0-e4fcd76c1d6e + ec4fc551-9561-4ff0-a309-1fd93dc95354 + ec620b77-8919-4285-a6c0-f21b0acac14b + ed456be0-07b8-43ac-86b3-64162a4bcc9a + edaa690e-7366-4177-92ba-daa3f297ce1e + edc4c457-3ea2-4523-ae95-caa82d496aba + ee19307b-ab88-4d6f-9dfb-4149660b5a08 + ee19a334-b72e-4d54-9a8e-a742ee56e7f1 + ee823590-ecbd-4107-bb1f-1a309e1b21af + eec6f1b0-e4aa-49f8-b4a3-e9424cd19e76 + ef36da6c-b409-4756-be92-54a96426032e + efd7d119-139b-46c7-a740-b97f28a1acd9 + f0305a19-1293-46c9-9810-aa49b8dab8a4 + f081c5ee-2d7c-454a-ae5e-f89b6ddc1d26 + f157df02-fcb0-4ae7-85ca-bfc4444eda90 + f1926e02-3170-4727-853e-1c4f3bbf137d + f238640e-3401-420a-ac31-a433f268cbfc + f263cfd5-7b24-4140-97ba-078a691115b5 + f3300c0f-bc1d-4506-88a5-7b5425daafbe + f35f3ca6-627a-459d-ac6f-93bc55931ba4 + f3dab665-64fc-433e-8a62-3743b891ab83 + f48726b8-0a84-4a45-918f-9908a36bbb39 + f50237bb-f9c4-46da-b66f-024d10bb7b7e + f52f1267-ef72-4576-80d0-5917f82db729 + f5496577-1f0e-43c4-b7b1-d474695074a1 + f603df29-ba7f-4366-8b24-7592d4086934 + f64aa569-ea55-4736-9c96-3bfc2b30ccbd + f64ffca7-3c88-48d2-8d78-4bd7ec67bd1b + f69e205d-71f1-4bed-8e46-d37fa1b7672f + f75ad864-f096-4907-b31d-1a5733db4331 + f7aa75c5-0bfb-4814-b8eb-5f8a9a128aa9 + f8371471-4211-4368-9dd3-157e5ded70c0 + f86cba30-221c-4482-a722-9565a7604bea + f8dfbcec-1704-46b0-8ba3-862aa1011c94 + f90672d0-2ca8-4eaf-98ba-17042306fced + f930fa91-6adf-4e04-b42b-e0932fc06543 + f9bc0e2e-b866-4474-96af-9520a16e439e + fa18dae7-2fb1-4387-a3c1-308ca16c5c1d + fa2a5346-d622-407d-8ea5-af43140584bc + fa5d9c89-54e0-49e6-a404-29eddf2326d4 + fa7a662e-0f2e-4762-a1b6-993570cda4cb + fa93048a-0287-417c-a157-84428f11f7dd + fad34361-5673-4b6b-8616-ccc33cd00c24 + fb070305-7327-4d47-aaa2-52c1d26471d3 + fb07492c-d4ca-4a78-b92a-c3b14ed44b3f + fb9b0b15-c800-4199-a9df-1e999ba6a70c + fd04ef58-75d9-44e8-b553-d9bff716e067 + fd087f5c-4502-4ee7-8af3-5178468c0f00 + fd41e0a0-0c45-4beb-acb0-15535c603bb5 + fdc927f3-9ea5-4abb-b957-1dbde7dca836 + fe3862ad-c819-4b65-9e75-6bbc512422a7 + fe776f0b-ee51-486d-9e06-f8f16374a646 + fed927fe-eafb-4471-ac5d-756725ea174d + feea9af2-e998-45d6-8a1e-4e08486a5acb + ff3e9ca9-6dc0-4496-aebe-20f4a6d61445 + ff5ead9b-37b8-4bc9-9ac4-39775f57c6cf + ffadf13e-d327-4e72-a129-20b1a691d829 + ) + ) +) diff --git a/PCBs/FlipperZero/WiFi-Devboard-Pro/WiFi-Devboard-Pro.kicad_sch b/PCBs/FlipperZero/WiFi-Devboard-Pro/WiFi-Devboard-Pro.kicad_sch index 4e7688f..1826861 100644 --- a/PCBs/FlipperZero/WiFi-Devboard-Pro/WiFi-Devboard-Pro.kicad_sch +++ b/PCBs/FlipperZero/WiFi-Devboard-Pro/WiFi-Devboard-Pro.kicad_sch @@ -2,11 +2,11 @@ (uuid e63e39d7-6ac0-4ffd-8aa3-1841a4541b55) - (paper "A0") + (paper "A2") (title_block (title "ESP") - (date "2022-10-19") + (date "2022-12-07") (rev "V0.1.0") (company "JustCallMeKoko & trisp3ar") ) @@ -168,105 +168,11 @@ ) ) ) - (symbol "5033981892:5033981892" (pin_names (offset 0.254)) (in_bom yes) (on_board yes) - (property "Reference" "J" (id 0) (at 33.02 10.16 0) - (effects (font (size 1.524 1.524))) - ) - (property "Value" "5033981892" (id 1) (at 33.02 7.62 0) - (effects (font (size 1.524 1.524))) - ) - (property "Footprint" "503398-1892_MOL" (id 2) (at 33.02 6.096 0) - (effects (font (size 1.524 1.524)) hide) - ) - (property "Datasheet" "" (id 3) (at 0 0 0) - (effects (font (size 1.524 1.524))) - ) - (property "ki_locked" "" (id 4) (at 0 0 0) + (symbol "Connector_Generic:Conn_01x08" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at 0 10.16 0) (effects (font (size 1.27 1.27))) ) - (property "ki_fp_filters" "503398-1892_MOL" (id 5) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "5033981892_1_1" - (polyline - (pts - (xy 7.62 -15.24) - (xy 58.42 -15.24) - ) - (stroke (width 0.127) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy 7.62 5.08) - (xy 7.62 -15.24) - ) - (stroke (width 0.127) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy 58.42 -15.24) - (xy 58.42 5.08) - ) - (stroke (width 0.127) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy 58.42 5.08) - (xy 7.62 5.08) - ) - (stroke (width 0.127) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (pin bidirectional line (at 0 0 0) (length 7.62) - (name "DAT2" (effects (font (size 1.4986 1.4986)))) - (number "1" (effects (font (size 1.4986 1.4986)))) - ) - (pin unspecified line (at 66.04 0 180) (length 7.62) - (name "DETECT_SWITCH" (effects (font (size 1.4986 1.4986)))) - (number "10" (effects (font (size 1.4986 1.4986)))) - ) - (pin unspecified line (at 0 -2.54 0) (length 7.62) - (name "CD/DAT3" (effects (font (size 1.4986 1.4986)))) - (number "2" (effects (font (size 1.4986 1.4986)))) - ) - (pin unspecified line (at 0 -5.08 0) (length 7.62) - (name "CMD" (effects (font (size 1.4986 1.4986)))) - (number "3" (effects (font (size 1.4986 1.4986)))) - ) - (pin power_in line (at 0 -7.62 0) (length 7.62) - (name "VDD" (effects (font (size 1.4986 1.4986)))) - (number "4" (effects (font (size 1.4986 1.4986)))) - ) - (pin unspecified line (at 0 -10.16 0) (length 7.62) - (name "CLK" (effects (font (size 1.4986 1.4986)))) - (number "5" (effects (font (size 1.4986 1.4986)))) - ) - (pin power_in line (at 66.04 -10.16 180) (length 7.62) - (name "VSS" (effects (font (size 1.4986 1.4986)))) - (number "6" (effects (font (size 1.4986 1.4986)))) - ) - (pin bidirectional line (at 66.04 -7.62 180) (length 7.62) - (name "DAT0" (effects (font (size 1.4986 1.4986)))) - (number "7" (effects (font (size 1.4986 1.4986)))) - ) - (pin bidirectional line (at 66.04 -5.08 180) (length 7.62) - (name "DAT1" (effects (font (size 1.4986 1.4986)))) - (number "8" (effects (font (size 1.4986 1.4986)))) - ) - (pin unspecified line (at 66.04 -2.54 180) (length 7.62) - (name "DETECT_LEVEL" (effects (font (size 1.4986 1.4986)))) - (number "9" (effects (font (size 1.4986 1.4986)))) - ) - ) - ) - (symbol "Connector_Generic:Conn_02x08_Row_Letter_First" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) - (property "Reference" "J" (id 0) (at 1.27 10.16 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "Conn_02x08_Row_Letter_First" (id 1) (at 1.27 -12.7 0) + (property "Value" "Conn_01x08" (id 1) (at 0 -12.7 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at 0 0 0) @@ -278,13 +184,13 @@ (property "ki_keywords" "connector" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) - (property "ki_description" "Generic connector, double row, 02x08, row letter first pin numbering scheme (pin number consists of a letter for the row and a number for the pin index in this row. a1, ..., aN; b1, ..., bN), script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) + (property "ki_description" "Generic connector, single row, 01x08, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) - (property "ki_fp_filters" "Connector*:*_2x??_*" (id 6) (at 0 0 0) + (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) - (symbol "Conn_02x08_Row_Letter_First_1_1" + (symbol "Conn_01x08_1_1" (rectangle (start -1.27 -10.033) (end 0 -10.287) (stroke (width 0.1524) (type default) (color 0 0 0 0)) (fill (type none)) @@ -317,113 +223,49 @@ (stroke (width 0.1524) (type default) (color 0 0 0 0)) (fill (type none)) ) - (rectangle (start -1.27 8.89) (end 3.81 -11.43) + (rectangle (start -1.27 8.89) (end 1.27 -11.43) (stroke (width 0.254) (type default) (color 0 0 0 0)) (fill (type background)) ) - (rectangle (start 3.81 -10.033) (end 2.54 -10.287) - (stroke (width 0.1524) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (rectangle (start 3.81 -7.493) (end 2.54 -7.747) - (stroke (width 0.1524) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (rectangle (start 3.81 -4.953) (end 2.54 -5.207) - (stroke (width 0.1524) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (rectangle (start 3.81 -2.413) (end 2.54 -2.667) - (stroke (width 0.1524) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (rectangle (start 3.81 0.127) (end 2.54 -0.127) - (stroke (width 0.1524) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (rectangle (start 3.81 2.667) (end 2.54 2.413) - (stroke (width 0.1524) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (rectangle (start 3.81 5.207) (end 2.54 4.953) - (stroke (width 0.1524) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (rectangle (start 3.81 7.747) (end 2.54 7.493) - (stroke (width 0.1524) (type default) (color 0 0 0 0)) - (fill (type none)) - ) (pin passive line (at -5.08 7.62 0) (length 3.81) - (name "Pin_a1" (effects (font (size 1.27 1.27)))) - (number "a1" (effects (font (size 1.27 1.27)))) + (name "Pin_1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) ) (pin passive line (at -5.08 5.08 0) (length 3.81) - (name "Pin_a2" (effects (font (size 1.27 1.27)))) - (number "a2" (effects (font (size 1.27 1.27)))) + (name "Pin_2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) ) (pin passive line (at -5.08 2.54 0) (length 3.81) - (name "Pin_a3" (effects (font (size 1.27 1.27)))) - (number "a3" (effects (font (size 1.27 1.27)))) + (name "Pin_3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) ) (pin passive line (at -5.08 0 0) (length 3.81) - (name "Pin_a4" (effects (font (size 1.27 1.27)))) - (number "a4" (effects (font (size 1.27 1.27)))) + (name "Pin_4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) ) (pin passive line (at -5.08 -2.54 0) (length 3.81) - (name "Pin_a5" (effects (font (size 1.27 1.27)))) - (number "a5" (effects (font (size 1.27 1.27)))) + (name "Pin_5" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) ) (pin passive line (at -5.08 -5.08 0) (length 3.81) - (name "Pin_a6" (effects (font (size 1.27 1.27)))) - (number "a6" (effects (font (size 1.27 1.27)))) + (name "Pin_6" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) ) (pin passive line (at -5.08 -7.62 0) (length 3.81) - (name "Pin_a7" (effects (font (size 1.27 1.27)))) - (number "a7" (effects (font (size 1.27 1.27)))) + (name "Pin_7" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) ) (pin passive line (at -5.08 -10.16 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 7.62 7.62 180) (length 3.81) - (name "Pin_b1" (effects (font (size 1.27 1.27)))) - (number "b1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 5.08 180) (length 3.81) - (name "Pin_b2" (effects (font (size 1.27 1.27)))) - (number "b2" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 2.54 180) (length 3.81) - (name "Pin_b3" (effects (font (size 1.27 1.27)))) - (number "b3" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 0 180) (length 3.81) - (name "Pin_b4" (effects (font (size 1.27 1.27)))) - (number "b4" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 -2.54 180) (length 3.81) - (name "Pin_b5" (effects (font (size 1.27 1.27)))) - (number "b5" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 -5.08 180) (length 3.81) - (name "Pin_b6" (effects (font (size 1.27 1.27)))) - (number "b6" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 -7.62 180) (length 3.81) - (name "Pin_b7" (effects (font (size 1.27 1.27)))) - (number "b7" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 -10.16 180) (length 3.81) - (name "Pin_b8" (effects (font (size 1.27 1.27)))) - (number "b8" (effects (font (size 1.27 1.27)))) + (name "Pin_8" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) ) ) ) - (symbol "Connector_Generic:Conn_02x10_Row_Letter_First" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) - (property "Reference" "J" (id 0) (at 1.27 12.7 0) + (symbol "Connector_Generic:Conn_01x10" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at 0 12.7 0) (effects (font (size 1.27 1.27))) ) - (property "Value" "Conn_02x10_Row_Letter_First" (id 1) (at 1.27 -15.24 0) + (property "Value" "Conn_01x10" (id 1) (at 0 -15.24 0) (effects (font (size 1.27 1.27))) ) (property "Footprint" "" (id 2) (at 0 0 0) @@ -435,13 +277,13 @@ (property "ki_keywords" "connector" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) - (property "ki_description" "Generic connector, double row, 02x10, row letter first pin numbering scheme (pin number consists of a letter for the row and a number for the pin index in this row. a1, ..., aN; b1, ..., bN), script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) + (property "ki_description" "Generic connector, single row, 01x10, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) - (property "ki_fp_filters" "Connector*:*_2x??_*" (id 6) (at 0 0 0) + (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) - (symbol "Conn_02x10_Row_Letter_First_1_1" + (symbol "Conn_01x10_1_1" (rectangle (start -1.27 -12.573) (end 0 -12.827) (stroke (width 0.1524) (type default) (color 0 0 0 0)) (fill (type none)) @@ -482,409 +324,373 @@ (stroke (width 0.1524) (type default) (color 0 0 0 0)) (fill (type none)) ) - (rectangle (start -1.27 11.43) (end 3.81 -13.97) + (rectangle (start -1.27 11.43) (end 1.27 -13.97) (stroke (width 0.254) (type default) (color 0 0 0 0)) (fill (type background)) ) - (rectangle (start 3.81 -12.573) (end 2.54 -12.827) - (stroke (width 0.1524) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (rectangle (start 3.81 -10.033) (end 2.54 -10.287) - (stroke (width 0.1524) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (rectangle (start 3.81 -7.493) (end 2.54 -7.747) - (stroke (width 0.1524) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (rectangle (start 3.81 -4.953) (end 2.54 -5.207) - (stroke (width 0.1524) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (rectangle (start 3.81 -2.413) (end 2.54 -2.667) - (stroke (width 0.1524) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (rectangle (start 3.81 0.127) (end 2.54 -0.127) - (stroke (width 0.1524) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (rectangle (start 3.81 2.667) (end 2.54 2.413) - (stroke (width 0.1524) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (rectangle (start 3.81 5.207) (end 2.54 4.953) - (stroke (width 0.1524) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (rectangle (start 3.81 7.747) (end 2.54 7.493) - (stroke (width 0.1524) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (rectangle (start 3.81 10.287) (end 2.54 10.033) - (stroke (width 0.1524) (type default) (color 0 0 0 0)) - (fill (type none)) - ) (pin passive line (at -5.08 10.16 0) (length 3.81) - (name "Pin_a1" (effects (font (size 1.27 1.27)))) - (number "a1" (effects (font (size 1.27 1.27)))) + (name "Pin_1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) ) (pin passive line (at -5.08 -12.7 0) (length 3.81) - (name "Pin_a10" (effects (font (size 1.27 1.27)))) - (number "a10" (effects (font (size 1.27 1.27)))) + (name "Pin_10" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) ) (pin passive line (at -5.08 7.62 0) (length 3.81) - (name "Pin_a2" (effects (font (size 1.27 1.27)))) - (number "a2" (effects (font (size 1.27 1.27)))) + (name "Pin_2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) ) (pin passive line (at -5.08 5.08 0) (length 3.81) - (name "Pin_a3" (effects (font (size 1.27 1.27)))) - (number "a3" (effects (font (size 1.27 1.27)))) + (name "Pin_3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) ) (pin passive line (at -5.08 2.54 0) (length 3.81) - (name "Pin_a4" (effects (font (size 1.27 1.27)))) - (number "a4" (effects (font (size 1.27 1.27)))) + (name "Pin_4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) ) (pin passive line (at -5.08 0 0) (length 3.81) - (name "Pin_a5" (effects (font (size 1.27 1.27)))) - (number "a5" (effects (font (size 1.27 1.27)))) + (name "Pin_5" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) ) (pin passive line (at -5.08 -2.54 0) (length 3.81) - (name "Pin_a6" (effects (font (size 1.27 1.27)))) - (number "a6" (effects (font (size 1.27 1.27)))) + (name "Pin_6" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) ) (pin passive line (at -5.08 -5.08 0) (length 3.81) - (name "Pin_a7" (effects (font (size 1.27 1.27)))) - (number "a7" (effects (font (size 1.27 1.27)))) + (name "Pin_7" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) ) (pin passive line (at -5.08 -7.62 0) (length 3.81) - (name "Pin_a8" (effects (font (size 1.27 1.27)))) - (number "a8" (effects (font (size 1.27 1.27)))) + (name "Pin_8" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) ) (pin passive line (at -5.08 -10.16 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 10.16 180) (length 3.81) - (name "Pin_b1" (effects (font (size 1.27 1.27)))) - (number "b1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 -12.7 180) (length 3.81) - (name "Pin_b10" (effects (font (size 1.27 1.27)))) - (number "b10" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 7.62 180) (length 3.81) - (name "Pin_b2" (effects (font (size 1.27 1.27)))) - (number "b2" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 5.08 180) (length 3.81) - (name "Pin_b3" (effects (font (size 1.27 1.27)))) - (number "b3" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 2.54 180) (length 3.81) - (name "Pin_b4" (effects (font (size 1.27 1.27)))) - (number "b4" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 0 180) (length 3.81) - (name "Pin_b5" (effects (font (size 1.27 1.27)))) - (number "b5" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 -2.54 180) (length 3.81) - (name "Pin_b6" (effects (font (size 1.27 1.27)))) - (number "b6" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 -5.08 180) (length 3.81) - (name "Pin_b7" (effects (font (size 1.27 1.27)))) - (number "b7" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 -7.62 180) (length 3.81) - (name "Pin_b8" (effects (font (size 1.27 1.27)))) - (number "b8" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 -10.16 180) (length 3.81) - (name "Pin_b9" (effects (font (size 1.27 1.27)))) - (number "b9" (effects (font (size 1.27 1.27)))) + (name "Pin_9" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) ) ) ) - (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes) - (property "Reference" "C" (id 0) (at 0.635 2.54 0) - (effects (font (size 1.27 1.27)) (justify left)) + (symbol "Connector_Generic:Conn_01x11" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at 0 15.24 0) + (effects (font (size 1.27 1.27))) ) - (property "Value" "C" (id 1) (at 0.635 -2.54 0) - (effects (font (size 1.27 1.27)) (justify left)) + (property "Value" "Conn_01x11" (id 1) (at 0 -15.24 0) + (effects (font (size 1.27 1.27))) ) - (property "Footprint" "" (id 2) (at 0.9652 -3.81 0) + (property "Footprint" "" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (id 3) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) - (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0) + (property "ki_keywords" "connector" (id 4) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) - (property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0) + (property "ki_description" "Generic connector, single row, 01x11, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) - (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0) + (property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) - (symbol "C_0_1" - (polyline - (pts - (xy -2.032 -0.762) - (xy 2.032 -0.762) - ) - (stroke (width 0.508) (type default) (color 0 0 0 0)) + (symbol "Conn_01x11_1_1" + (rectangle (start -1.27 -12.573) (end 0 -12.827) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) (fill (type none)) ) - (polyline - (pts - (xy -2.032 0.762) - (xy 2.032 0.762) - ) - (stroke (width 0.508) (type default) (color 0 0 0 0)) + (rectangle (start -1.27 -10.033) (end 0 -10.287) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) (fill (type none)) ) - ) - (symbol "C_1_1" - (pin passive line (at 0 3.81 270) (length 2.794) - (name "~" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 0 -3.81 90) (length 2.794) - (name "~" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) - (property "Reference" "R" (id 0) (at 2.032 0 90) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "R" (id 1) (at 0 0 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (id 2) (at -1.778 0 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Resistor" (id 5) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "R_0_1" - (rectangle (start -1.016 -2.54) (end 1.016 2.54) - (stroke (width 0.254) (type default) (color 0 0 0 0)) + (rectangle (start -1.27 -7.493) (end 0 -7.747) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) (fill (type none)) ) - ) - (symbol "R_1_1" - (pin passive line (at 0 3.81 270) (length 1.27) - (name "~" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) + (rectangle (start -1.27 -4.953) (end 0 -5.207) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) ) - (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)))) + (rectangle (start -1.27 -2.413) (end 0 -2.667) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) ) - ) - ) - (symbol "RF_Module:ESP32-WROOM-32D" (in_bom yes) (on_board yes) - (property "Reference" "U" (id 0) (at -12.7 34.29 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "ESP32-WROOM-32D" (id 1) (at 1.27 34.29 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "RF_Module:ESP32-WROOM-32" (id 2) (at 0 -38.1 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32d_esp32-wroom-32u_datasheet_en.pdf" (id 3) (at -7.62 1.27 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "RF Radio BT ESP ESP32 Espressif onboard PCB antenna" (id 4) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "RF Module, ESP32-D0WD SoC, Wi-Fi 802.11b/g/n, Bluetooth, BLE, 32-bit, 2.7-3.6V, onboard antenna, SMD" (id 5) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "ESP32?WROOM?32*" (id 6) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "ESP32-WROOM-32D_0_1" - (rectangle (start -12.7 33.02) (end 12.7 -33.02) + (rectangle (start -1.27 0.127) (end 0 -0.127) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 2.667) (end 0 2.413) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 5.207) (end 0 4.953) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 7.747) (end 0 7.493) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 10.287) (end 0 10.033) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 12.827) (end 0 12.573) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start -1.27 13.97) (end 1.27 -13.97) (stroke (width 0.254) (type default) (color 0 0 0 0)) (fill (type background)) ) - ) - (symbol "ESP32-WROOM-32D_1_1" - (pin power_in line (at 0 -35.56 90) (length 2.54) - (name "GND" (effects (font (size 1.27 1.27)))) + (pin passive line (at -5.08 12.7 0) (length 3.81) + (name "Pin_1" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) - (pin bidirectional line (at 15.24 -12.7 180) (length 2.54) - (name "IO25" (effects (font (size 1.27 1.27)))) + (pin passive line (at -5.08 -10.16 0) (length 3.81) + (name "Pin_10" (effects (font (size 1.27 1.27)))) (number "10" (effects (font (size 1.27 1.27)))) ) - (pin bidirectional line (at 15.24 -15.24 180) (length 2.54) - (name "IO26" (effects (font (size 1.27 1.27)))) + (pin passive line (at -5.08 -12.7 0) (length 3.81) + (name "Pin_11" (effects (font (size 1.27 1.27)))) (number "11" (effects (font (size 1.27 1.27)))) ) - (pin bidirectional line (at 15.24 -17.78 180) (length 2.54) - (name "IO27" (effects (font (size 1.27 1.27)))) - (number "12" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 10.16 180) (length 2.54) - (name "IO14" (effects (font (size 1.27 1.27)))) - (number "13" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 15.24 180) (length 2.54) - (name "IO12" (effects (font (size 1.27 1.27)))) - (number "14" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 0 -35.56 90) (length 2.54) hide - (name "GND" (effects (font (size 1.27 1.27)))) - (number "15" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 12.7 180) (length 2.54) - (name "IO13" (effects (font (size 1.27 1.27)))) - (number "16" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at -15.24 -5.08 0) (length 2.54) - (name "SHD/SD2" (effects (font (size 1.27 1.27)))) - (number "17" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at -15.24 -7.62 0) (length 2.54) - (name "SWP/SD3" (effects (font (size 1.27 1.27)))) - (number "18" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at -15.24 -12.7 0) (length 2.54) - (name "SCS/CMD" (effects (font (size 1.27 1.27)))) - (number "19" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at 0 35.56 270) (length 2.54) - (name "VDD" (effects (font (size 1.27 1.27)))) + (pin passive line (at -5.08 10.16 0) (length 3.81) + (name "Pin_2" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) - (pin bidirectional line (at -15.24 -10.16 0) (length 2.54) - (name "SCK/CLK" (effects (font (size 1.27 1.27)))) - (number "20" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at -15.24 0 0) (length 2.54) - (name "SDO/SD0" (effects (font (size 1.27 1.27)))) - (number "21" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at -15.24 -2.54 0) (length 2.54) - (name "SDI/SD1" (effects (font (size 1.27 1.27)))) - (number "22" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 7.62 180) (length 2.54) - (name "IO15" (effects (font (size 1.27 1.27)))) - (number "23" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 25.4 180) (length 2.54) - (name "IO2" (effects (font (size 1.27 1.27)))) - (number "24" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 30.48 180) (length 2.54) - (name "IO0" (effects (font (size 1.27 1.27)))) - (number "25" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 20.32 180) (length 2.54) - (name "IO4" (effects (font (size 1.27 1.27)))) - (number "26" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 5.08 180) (length 2.54) - (name "IO16" (effects (font (size 1.27 1.27)))) - (number "27" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 2.54 180) (length 2.54) - (name "IO17" (effects (font (size 1.27 1.27)))) - (number "28" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 17.78 180) (length 2.54) - (name "IO5" (effects (font (size 1.27 1.27)))) - (number "29" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -15.24 30.48 0) (length 2.54) - (name "EN" (effects (font (size 1.27 1.27)))) + (pin passive line (at -5.08 7.62 0) (length 3.81) + (name "Pin_3" (effects (font (size 1.27 1.27)))) (number "3" (effects (font (size 1.27 1.27)))) ) - (pin bidirectional line (at 15.24 0 180) (length 2.54) - (name "IO18" (effects (font (size 1.27 1.27)))) - (number "30" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 -2.54 180) (length 2.54) - (name "IO19" (effects (font (size 1.27 1.27)))) - (number "31" (effects (font (size 1.27 1.27)))) - ) - (pin no_connect line (at -12.7 -27.94 0) (length 2.54) hide - (name "NC" (effects (font (size 1.27 1.27)))) - (number "32" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 -5.08 180) (length 2.54) - (name "IO21" (effects (font (size 1.27 1.27)))) - (number "33" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 22.86 180) (length 2.54) - (name "RXD0/IO3" (effects (font (size 1.27 1.27)))) - (number "34" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 27.94 180) (length 2.54) - (name "TXD0/IO1" (effects (font (size 1.27 1.27)))) - (number "35" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 -7.62 180) (length 2.54) - (name "IO22" (effects (font (size 1.27 1.27)))) - (number "36" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 -10.16 180) (length 2.54) - (name "IO23" (effects (font (size 1.27 1.27)))) - (number "37" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 0 -35.56 90) (length 2.54) hide - (name "GND" (effects (font (size 1.27 1.27)))) - (number "38" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 0 -35.56 90) (length 2.54) hide - (name "GND" (effects (font (size 1.27 1.27)))) - (number "39" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -15.24 25.4 0) (length 2.54) - (name "SENSOR_VP" (effects (font (size 1.27 1.27)))) + (pin passive line (at -5.08 5.08 0) (length 3.81) + (name "Pin_4" (effects (font (size 1.27 1.27)))) (number "4" (effects (font (size 1.27 1.27)))) ) - (pin input line (at -15.24 22.86 0) (length 2.54) - (name "SENSOR_VN" (effects (font (size 1.27 1.27)))) + (pin passive line (at -5.08 2.54 0) (length 3.81) + (name "Pin_5" (effects (font (size 1.27 1.27)))) (number "5" (effects (font (size 1.27 1.27)))) ) - (pin input line (at 15.24 -25.4 180) (length 2.54) - (name "IO34" (effects (font (size 1.27 1.27)))) + (pin passive line (at -5.08 0 0) (length 3.81) + (name "Pin_6" (effects (font (size 1.27 1.27)))) (number "6" (effects (font (size 1.27 1.27)))) ) - (pin input line (at 15.24 -27.94 180) (length 2.54) - (name "IO35" (effects (font (size 1.27 1.27)))) + (pin passive line (at -5.08 -2.54 0) (length 3.81) + (name "Pin_7" (effects (font (size 1.27 1.27)))) (number "7" (effects (font (size 1.27 1.27)))) ) - (pin bidirectional line (at 15.24 -20.32 180) (length 2.54) - (name "IO32" (effects (font (size 1.27 1.27)))) + (pin passive line (at -5.08 -5.08 0) (length 3.81) + (name "Pin_8" (effects (font (size 1.27 1.27)))) (number "8" (effects (font (size 1.27 1.27)))) ) - (pin bidirectional line (at 15.24 -22.86 180) (length 2.54) - (name "IO33" (effects (font (size 1.27 1.27)))) + (pin passive line (at -5.08 -7.62 0) (length 3.81) + (name "Pin_9" (effects (font (size 1.27 1.27)))) (number "9" (effects (font (size 1.27 1.27)))) ) ) ) + (symbol "SamacSys_Parts:3220-10-0300-00" (pin_names (offset 0.762)) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at 19.05 7.62 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "3220-10-0300-00" (id 1) (at 19.05 5.08 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "322010030000" (id 2) (at 19.05 2.54 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "http://www.cnctech.us/pdfs/3220-XX-0300-00-TR_.PDF" (id 3) (at 19.05 0 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Description" "Conn Shrouded Header (4 Sides) HDR 10 POS 1.27mm Solder ST SMD" (id 4) (at 19.05 -2.54 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Height" "5.45" (id 5) (at 19.05 -5.08 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Name" "CNC Tech" (id 6) (at 19.05 -7.62 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Part_Number" "3220-10-0300-00" (id 7) (at 19.05 -10.16 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Part Number" "" (id 8) (at 19.05 -12.7 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Price/Stock" "" (id 9) (at 19.05 -15.24 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Part Number" "3220-10-0300-00" (id 10) (at 19.05 -17.78 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Price/Stock" "https://www.arrow.com/en/products/3220-10-0300-00/cnc-tech-llc?region=nac" (id 11) (at 19.05 -20.32 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Part Number" "" (id 12) (at 19.05 -22.86 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Price/Stock" "" (id 13) (at 19.05 -25.4 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "ki_description" "Conn Shrouded Header (4 Sides) HDR 10 POS 1.27mm Solder ST SMD" (id 14) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "3220-10-0300-00_0_0" + (pin passive line (at 0 0 0) (length 5.08) + (name "1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 22.86 -10.16 180) (length 5.08) + (name "10" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 22.86 0 180) (length 5.08) + (name "2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -2.54 0) (length 5.08) + (name "3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 22.86 -2.54 180) (length 5.08) + (name "4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -5.08 0) (length 5.08) + (name "5" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 22.86 -5.08 180) (length 5.08) + (name "6" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -7.62 0) (length 5.08) + (name "7" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 22.86 -7.62 180) (length 5.08) + (name "8" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -10.16 0) (length 5.08) + (name "9" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + (symbol "3220-10-0300-00_0_1" + (polyline + (pts + (xy 5.08 2.54) + (xy 17.78 2.54) + (xy 17.78 -12.7) + (xy 5.08 -12.7) + (xy 5.08 2.54) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + ) + (symbol "SamacSys_Parts:503398-1892" (pin_names (offset 0.762)) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at 39.37 7.62 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "503398-1892" (id 1) (at 39.37 5.08 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "503398-1892" (id 2) (at 39.37 2.54 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "http://www.molex.com/webdocs/datasheets/pdf/en-us//5033981892_MEMORY_CARD_SOCKET.pdf" (id 3) (at 39.37 0 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Description" "MicroSD SMT Push-Push 1.28mm height MicroSD SMT Push-Push 1.28mm height" (id 4) (at 39.37 -2.54 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Height" "" (id 5) (at 39.37 -5.08 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Name" "Molex" (id 6) (at 39.37 -7.62 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Part_Number" "503398-1892" (id 7) (at 39.37 -10.16 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Part Number" "538-503398-1892" (id 8) (at 39.37 -12.7 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Molex/503398-1892?qs=b0v8CoHHvSMxV%252BW12iKaSg%3D%3D" (id 9) (at 39.37 -15.24 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Part Number" "" (id 10) (at 39.37 -17.78 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Price/Stock" "" (id 11) (at 39.37 -20.32 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Part Number" "" (id 12) (at 39.37 -22.86 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Price/Stock" "" (id 13) (at 39.37 -25.4 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "ki_description" "MicroSD SMT Push-Push 1.28mm height MicroSD SMT Push-Push 1.28mm height" (id 14) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "503398-1892_0_0" + (pin passive line (at 0 0 0) (length 5.08) + (name "DAT2" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 43.18 -10.16 180) (length 5.08) + (name "DETECT_SWITCH" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -2.54 0) (length 5.08) + (name "CD/DAT3" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -5.08 0) (length 5.08) + (name "CMD" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -7.62 0) (length 5.08) + (name "VDD" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -10.16 0) (length 5.08) + (name "CLK" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 43.18 0 180) (length 5.08) + (name "VSS" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 43.18 -2.54 180) (length 5.08) + (name "DAT0" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 43.18 -5.08 180) (length 5.08) + (name "DAT1" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 43.18 -7.62 180) (length 5.08) + (name "DETECT_LEVER" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + (symbol "503398-1892_0_1" + (polyline + (pts + (xy 5.08 2.54) + (xy 38.1 2.54) + (xy 38.1 -12.7) + (xy 5.08 -12.7) + (xy 5.08 2.54) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + ) (symbol "SamacSys_Parts:AZ1117H-3.3TRE1" (pin_names (offset 0.762)) (in_bom yes) (on_board yes) (property "Reference" "IC" (id 0) (at 29.21 7.62 0) (effects (font (size 1.27 1.27)) (justify left)) @@ -963,6 +769,188 @@ ) ) ) + (symbol "SamacSys_Parts:CC0402KRX7R7BB104" (pin_names (offset 0.762)) (in_bom yes) (on_board yes) + (property "Reference" "C" (id 0) (at 8.89 6.35 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "CC0402KRX7R7BB104" (id 1) (at 8.89 3.81 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "CAPC1005X55N" (id 2) (at 8.89 1.27 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "http://www.datasheets360.com/pdf/-5354154806277341459" (id 3) (at 8.89 -1.27 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Description" "Cap 100nF 16V 0402 SMD 10% X7R Phycomp 100nF Multilayer Ceramic Capacitor (MLCC) 16 V dc +/-10% X7R dielectric Standard max op. temp. +125C" (id 4) (at 8.89 -3.81 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Height" "0.55" (id 5) (at 8.89 -6.35 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Name" "KEMET" (id 6) (at 8.89 -8.89 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Part_Number" "CC0402KRX7R7BB104" (id 7) (at 8.89 -11.43 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Part Number" "603-CC402KRX7R7BB104" (id 8) (at 8.89 -13.97 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/YAGEO/CC0402KRX7R7BB104?qs=AgBp2OyFlx%252BSOyhfyS7hpw%3D%3D" (id 9) (at 8.89 -16.51 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Part Number" "CC0402KRX7R7BB104" (id 10) (at 8.89 -19.05 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Price/Stock" "https://www.arrow.com/en/products/cc0402krx7r7bb104/yageo?region=nac" (id 11) (at 8.89 -21.59 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Part Number" "" (id 12) (at 8.89 -24.13 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Price/Stock" "" (id 13) (at 8.89 -26.67 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "ki_description" "Cap 100nF 16V 0402 SMD 10% X7R Phycomp 100nF Multilayer Ceramic Capacitor (MLCC) 16 V dc +/-10% X7R dielectric Standard max op. temp. +125C" (id 14) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "CC0402KRX7R7BB104_0_0" + (pin passive line (at 0 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 12.7 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + (symbol "CC0402KRX7R7BB104_0_1" + (polyline + (pts + (xy 5.08 0) + (xy 5.588 0) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 5.588 2.54) + (xy 5.588 -2.54) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 7.112 0) + (xy 7.62 0) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 7.112 2.54) + (xy 7.112 -2.54) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + ) + (symbol "SamacSys_Parts:CL05A105KA5NQNC" (pin_names (offset 0.762)) (in_bom yes) (on_board yes) + (property "Reference" "C" (id 0) (at 8.89 6.35 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "CL05A105KA5NQNC" (id 1) (at 8.89 3.81 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "CAPC1005X60N" (id 2) (at 8.89 1.27 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "https://www.arrow.com/en/products/cl05a105ka5nqnc/samsung-electro-mechanics" (id 3) (at 8.89 -1.27 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Description" "Cap Ceramic 1uF 25V X5R 10% Pad SMD 0402 85C T/R" (id 4) (at 8.89 -3.81 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Height" "0.6" (id 5) (at 8.89 -6.35 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Name" "Samsung Electro-Mechanics" (id 6) (at 8.89 -8.89 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Part_Number" "CL05A105KA5NQNC" (id 7) (at 8.89 -11.43 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Part Number" "187-CL05A105KA5NQNC" (id 8) (at 8.89 -13.97 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Samsung-Electro-Mechanics/CL05A105KA5NQNC?qs=X6jEic%2FHinDIeFgZnm60Lw%3D%3D" (id 9) (at 8.89 -16.51 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Part Number" "CL05A105KA5NQNC" (id 10) (at 8.89 -19.05 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Price/Stock" "https://www.arrow.com/en/products/cl05a105ka5nqnc/samsung-electro-mechanics?region=europe" (id 11) (at 8.89 -21.59 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Part Number" "" (id 12) (at 8.89 -24.13 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Price/Stock" "" (id 13) (at 8.89 -26.67 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "ki_description" "Cap Ceramic 1uF 25V X5R 10% Pad SMD 0402 85C T/R" (id 14) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "CL05A105KA5NQNC_0_0" + (pin passive line (at 0 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 12.7 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + (symbol "CL05A105KA5NQNC_0_1" + (polyline + (pts + (xy 5.08 0) + (xy 5.588 0) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 5.588 2.54) + (xy 5.588 -2.54) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 7.112 0) + (xy 7.62 0) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 7.112 2.54) + (xy 7.112 -2.54) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + ) (symbol "SamacSys_Parts:CL05A106MQ5NUNC" (pin_names (offset 0.762)) (in_bom yes) (on_board yes) (property "Reference" "C" (id 0) (at 8.89 6.35 0) (effects (font (size 1.27 1.27)) (justify left)) @@ -1054,6 +1042,97 @@ ) ) ) + (symbol "SamacSys_Parts:CL05B104KO5NNNC" (pin_names (offset 0.762)) (in_bom yes) (on_board yes) + (property "Reference" "C" (id 0) (at 8.89 6.35 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "CL05B104KO5NNNC" (id 1) (at 8.89 3.81 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "CAPC1005X55N" (id 2) (at 8.89 1.27 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "https://datasheet.datasheetarchive.com/originals/distributors/Datasheets-DGA10/2408147.pdf" (id 3) (at 8.89 -1.27 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Description" "Samsung Electro-Mechanics CL05B104KO5NNNC 100nF Multilayer Ceramic Capacitor MLCC 16V dc +/-10% Tolerance SMD" (id 4) (at 8.89 -3.81 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Height" "0.55" (id 5) (at 8.89 -6.35 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Name" "Samsung Electro-Mechanics" (id 6) (at 8.89 -8.89 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Part_Number" "CL05B104KO5NNNC" (id 7) (at 8.89 -11.43 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Part Number" "187-CL05B104KO5NNNC" (id 8) (at 8.89 -13.97 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Samsung-Electro-Mechanics/CL05B104KO5NNNC?qs=hqM3L16%252BxlfT2SKOuAUq6Q%3D%3D" (id 9) (at 8.89 -16.51 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Part Number" "CL05B104KO5NNNC" (id 10) (at 8.89 -19.05 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Price/Stock" "https://www.arrow.com/en/products/cl05b104ko5nnnc/samsung-electro-mechanics?region=europe" (id 11) (at 8.89 -21.59 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Part Number" "" (id 12) (at 8.89 -24.13 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Price/Stock" "" (id 13) (at 8.89 -26.67 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "ki_description" "Samsung Electro-Mechanics CL05B104KO5NNNC 100nF Multilayer Ceramic Capacitor MLCC 16V dc +/-10% Tolerance SMD" (id 14) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "CL05B104KO5NNNC_0_0" + (pin passive line (at 0 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 12.7 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + (symbol "CL05B104KO5NNNC_0_1" + (polyline + (pts + (xy 5.08 0) + (xy 5.588 0) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 5.588 2.54) + (xy 5.588 -2.54) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 7.112 0) + (xy 7.62 0) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 7.112 2.54) + (xy 7.112 -2.54) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + ) (symbol "SamacSys_Parts:CM05X5R226M06AH080" (pin_names (offset 0.762)) (in_bom yes) (on_board yes) (property "Reference" "C" (id 0) (at 8.89 6.35 0) (effects (font (size 1.27 1.27)) (justify left)) @@ -1219,6 +1298,256 @@ ) ) ) + (symbol "SamacSys_Parts:ESP32-WROOM-32E-N4" (pin_names (offset 0.762)) (in_bom yes) (on_board yes) + (property "Reference" "IC" (id 0) (at 34.29 7.62 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "ESP32-WROOM-32E-N4" (id 1) (at 34.29 5.08 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "ESP32WROOM32EN4" (id 2) (at 34.29 2.54 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32e_esp32-wroom-32ue_datasheet_en.pdf" (id 3) (at 34.29 0 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Description" "RX TXRX MOD WIFI TRACE ANT SMD" (id 4) (at 34.29 -2.54 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Height" "3.25" (id 5) (at 34.29 -5.08 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Name" "Espressif Systems" (id 6) (at 34.29 -7.62 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Part_Number" "ESP32-WROOM-32E-N4" (id 7) (at 34.29 -10.16 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Part Number" "356-ESP32WRM32E132PH" (id 8) (at 34.29 -12.7 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Espressif-Systems/ESP32-WROOM-32E-N4?qs=Li%252BoUPsLEnsPzTWsi%252BRMgQ%3D%3D" (id 9) (at 34.29 -15.24 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Part Number" "" (id 10) (at 34.29 -17.78 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Price/Stock" "" (id 11) (at 34.29 -20.32 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Part Number" "" (id 12) (at 34.29 -22.86 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Price/Stock" "" (id 13) (at 34.29 -25.4 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "ki_description" "RX TXRX MOD WIFI TRACE ANT SMD" (id 14) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "ESP32-WROOM-32E-N4_0_0" + (pin passive line (at 0 0 0) (length 5.08) + (name "GND_1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -22.86 0) (length 5.08) + (name "IO25" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -25.4 0) (length 5.08) + (name "IO26" (effects (font (size 1.27 1.27)))) + (number "11" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -27.94 0) (length 5.08) + (name "IO27" (effects (font (size 1.27 1.27)))) + (number "12" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -30.48 0) (length 5.08) + (name "IO14" (effects (font (size 1.27 1.27)))) + (number "13" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -33.02 0) (length 5.08) + (name "IO12" (effects (font (size 1.27 1.27)))) + (number "14" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -35.56 0) (length 5.08) + (name "GND_2" (effects (font (size 1.27 1.27)))) + (number "15" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -38.1 0) (length 5.08) + (name "IO13" (effects (font (size 1.27 1.27)))) + (number "16" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -40.64 0) (length 5.08) + (name "NC_1" (effects (font (size 1.27 1.27)))) + (number "17" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -43.18 0) (length 5.08) + (name "NC_2" (effects (font (size 1.27 1.27)))) + (number "18" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -45.72 0) (length 5.08) + (name "NC_3" (effects (font (size 1.27 1.27)))) + (number "19" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -2.54 0) (length 5.08) + (name "3V3" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -48.26 0) (length 5.08) + (name "NC_4" (effects (font (size 1.27 1.27)))) + (number "20" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -50.8 0) (length 5.08) + (name "NC_5" (effects (font (size 1.27 1.27)))) + (number "21" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -53.34 0) (length 5.08) + (name "NC_6" (effects (font (size 1.27 1.27)))) + (number "22" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -55.88 0) (length 5.08) + (name "IO15" (effects (font (size 1.27 1.27)))) + (number "23" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -58.42 0) (length 5.08) + (name "IO2" (effects (font (size 1.27 1.27)))) + (number "24" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 38.1 0 180) (length 5.08) + (name "IO0" (effects (font (size 1.27 1.27)))) + (number "25" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 38.1 -2.54 180) (length 5.08) + (name "IO4" (effects (font (size 1.27 1.27)))) + (number "26" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 38.1 -5.08 180) (length 5.08) + (name "IO16" (effects (font (size 1.27 1.27)))) + (number "27" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 38.1 -7.62 180) (length 5.08) + (name "IO17" (effects (font (size 1.27 1.27)))) + (number "28" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 38.1 -10.16 180) (length 5.08) + (name "IO5" (effects (font (size 1.27 1.27)))) + (number "29" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -5.08 0) (length 5.08) + (name "EN" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 38.1 -12.7 180) (length 5.08) + (name "IO18" (effects (font (size 1.27 1.27)))) + (number "30" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 38.1 -15.24 180) (length 5.08) + (name "IO19" (effects (font (size 1.27 1.27)))) + (number "31" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 38.1 -17.78 180) (length 5.08) + (name "NC_7" (effects (font (size 1.27 1.27)))) + (number "32" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 38.1 -20.32 180) (length 5.08) + (name "IO21" (effects (font (size 1.27 1.27)))) + (number "33" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 38.1 -22.86 180) (length 5.08) + (name "RXD0" (effects (font (size 1.27 1.27)))) + (number "34" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 38.1 -25.4 180) (length 5.08) + (name "TXD0" (effects (font (size 1.27 1.27)))) + (number "35" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 38.1 -27.94 180) (length 5.08) + (name "IO22" (effects (font (size 1.27 1.27)))) + (number "36" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 38.1 -30.48 180) (length 5.08) + (name "IO23" (effects (font (size 1.27 1.27)))) + (number "37" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 38.1 -33.02 180) (length 5.08) + (name "GND_3" (effects (font (size 1.27 1.27)))) + (number "38" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 38.1 -35.56 180) (length 5.08) + (name "GND_4" (effects (font (size 1.27 1.27)))) + (number "39" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -7.62 0) (length 5.08) + (name "SENSOR_VP" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 38.1 -38.1 180) (length 5.08) + (name "GND_5" (effects (font (size 1.27 1.27)))) + (number "40" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 38.1 -40.64 180) (length 5.08) + (name "GND_6" (effects (font (size 1.27 1.27)))) + (number "41" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 38.1 -43.18 180) (length 5.08) + (name "GND_7" (effects (font (size 1.27 1.27)))) + (number "42" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 38.1 -45.72 180) (length 5.08) + (name "GND_8" (effects (font (size 1.27 1.27)))) + (number "43" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 38.1 -48.26 180) (length 5.08) + (name "GND_9" (effects (font (size 1.27 1.27)))) + (number "44" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 38.1 -50.8 180) (length 5.08) + (name "GND_10" (effects (font (size 1.27 1.27)))) + (number "45" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 38.1 -53.34 180) (length 5.08) + (name "GND_11" (effects (font (size 1.27 1.27)))) + (number "46" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 38.1 -55.88 180) (length 5.08) + (name "GND_12" (effects (font (size 1.27 1.27)))) + (number "47" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -10.16 0) (length 5.08) + (name "SENSOR_VN" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -12.7 0) (length 5.08) + (name "IO34" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -15.24 0) (length 5.08) + (name "IO35" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -17.78 0) (length 5.08) + (name "IO32" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -20.32 0) (length 5.08) + (name "IO33" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + (symbol "ESP32-WROOM-32E-N4_0_1" + (polyline + (pts + (xy 5.08 2.54) + (xy 33.02 2.54) + (xy 33.02 -60.96) + (xy 5.08 -60.96) + (xy 5.08 2.54) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + ) (symbol "SamacSys_Parts:MMDT2907A-7-F" (pin_names (offset 0.762)) (in_bom yes) (on_board yes) (property "Reference" "U" (id 0) (at 19.05 7.62 0) (effects (font (size 1.27 1.27)) (justify left)) @@ -1375,59 +1704,371 @@ ) ) ) - (symbol "Switch:SW_Push" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) - (property "Reference" "SW" (id 0) (at 1.27 2.54 0) + (symbol "SamacSys_Parts:RC0402FR-0710KL" (pin_names (offset 0.762)) (in_bom yes) (on_board yes) + (property "Reference" "R" (id 0) (at 13.97 6.35 0) (effects (font (size 1.27 1.27)) (justify left)) ) - (property "Value" "SW_Push" (id 1) (at 0 -1.524 0) - (effects (font (size 1.27 1.27))) + (property "Value" "RC0402FR-0710KL" (id 1) (at 13.97 3.81 0) + (effects (font (size 1.27 1.27)) (justify left)) ) - (property "Footprint" "" (id 2) (at 0 5.08 0) + (property "Footprint" "RESC1005X40N" (id 2) (at 13.97 1.27 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "https://datasheet.datasheetarchive.com/originals/distributors/Datasheets_SAMA/902f9e387b938f871d31120f5fc1d65e.pdf" (id 3) (at 13.97 -1.27 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Description" "YAGEO (PHYCOMP) - RC0402FR-0710KL. - RES, THICK FILM, 10K, 1%, 0.0625W, 0402" (id 4) (at 13.97 -3.81 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Height" "0.4" (id 5) (at 13.97 -6.35 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Name" "KEMET" (id 6) (at 13.97 -8.89 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Part_Number" "RC0402FR-0710KL" (id 7) (at 13.97 -11.43 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Part Number" "603-RC0402FR-0710KL" (id 8) (at 13.97 -13.97 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/YAGEO/RC0402FR-0710KL?qs=I1mnnYJTTsxUoNwrUsQExA%3D%3D" (id 9) (at 13.97 -16.51 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Part Number" "RC0402FR-0710KL" (id 10) (at 13.97 -19.05 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Price/Stock" "https://www.arrow.com/en/products/rc0402fr-0710kl/yageo?region=europe" (id 11) (at 13.97 -21.59 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Part Number" "" (id 12) (at 13.97 -24.13 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Price/Stock" "" (id 13) (at 13.97 -26.67 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "ki_description" "YAGEO (PHYCOMP) - RC0402FR-0710KL. - RES, THICK FILM, 10K, 1%, 0.0625W, 0402" (id 14) (at 0 0 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Datasheet" "~" (id 3) (at 0 5.08 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "switch normally-open pushbutton push-button" (id 4) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Push button switch, generic, two pins" (id 5) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "SW_Push_0_1" - (circle (center -2.032 0) (radius 0.508) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy 0 1.27) - (xy 0 3.048) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy 2.54 1.27) - (xy -2.54 1.27) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (circle (center 2.032 0) (radius 0.508) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (pin passive line (at -5.08 0 0) (length 2.54) - (name "1" (effects (font (size 1.27 1.27)))) + (symbol "RC0402FR-0710KL_0_0" + (pin passive line (at 0 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) (number "1" (effects (font (size 1.27 1.27)))) ) - (pin passive line (at 5.08 0 180) (length 2.54) - (name "2" (effects (font (size 1.27 1.27)))) + (pin passive line (at 17.78 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) (number "2" (effects (font (size 1.27 1.27)))) ) ) + (symbol "RC0402FR-0710KL_0_1" + (polyline + (pts + (xy 5.08 1.27) + (xy 12.7 1.27) + (xy 12.7 -1.27) + (xy 5.08 -1.27) + (xy 5.08 1.27) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + ) + (symbol "SamacSys_Parts:RC0402FR-071KL" (pin_names (offset 0.762)) (in_bom yes) (on_board yes) + (property "Reference" "R" (id 0) (at 13.97 6.35 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "RC0402FR-071KL" (id 1) (at 13.97 3.81 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "RESC1005X40N" (id 2) (at 13.97 1.27 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "https://www.yageo.com/upload/media/product/productsearch/datasheet/rchip/PYu-RC_Group_51_RoHS_L_11.pdf" (id 3) (at 13.97 -1.27 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Description" "GENERAL PURPOSE CHIP RESISTORS" (id 4) (at 13.97 -3.81 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Height" "0.4" (id 5) (at 13.97 -6.35 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Name" "KEMET" (id 6) (at 13.97 -8.89 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Part_Number" "RC0402FR-071KL" (id 7) (at 13.97 -11.43 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Part Number" "603-RC0402FR-071KL" (id 8) (at 13.97 -13.97 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/YAGEO/RC0402FR-071KL?qs=V1yeUXFNrknDEmWLmm5v6g%3D%3D" (id 9) (at 13.97 -16.51 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Part Number" "RC0402FR-071KL" (id 10) (at 13.97 -19.05 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Price/Stock" "https://www.arrow.com/en/products/rc0402fr-071kl/yageo?region=nac" (id 11) (at 13.97 -21.59 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Part Number" "" (id 12) (at 13.97 -24.13 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Price/Stock" "" (id 13) (at 13.97 -26.67 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "ki_description" "GENERAL PURPOSE CHIP RESISTORS" (id 14) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "RC0402FR-071KL_0_0" + (pin passive line (at 0 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 17.78 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + (symbol "RC0402FR-071KL_0_1" + (polyline + (pts + (xy 5.08 1.27) + (xy 12.7 1.27) + (xy 12.7 -1.27) + (xy 5.08 -1.27) + (xy 5.08 1.27) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + ) + (symbol "SamacSys_Parts:RC0402FR-07220RL" (pin_names (offset 0.762)) (in_bom yes) (on_board yes) + (property "Reference" "R" (id 0) (at 13.97 6.35 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "RC0402FR-07220RL" (id 1) (at 13.97 3.81 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "RESC1005X40N" (id 2) (at 13.97 1.27 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "https://datasheet.datasheetarchive.com/originals/distributors/Datasheets_SAMA/902f9e387b938f871d31120f5fc1d65e.pdf" (id 3) (at 13.97 -1.27 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Description" "YAGEO (PHYCOMP) - RC0402FR-07220RL - RES, THICK FILM, 220R, 1%, 0.063W, 0402" (id 4) (at 13.97 -3.81 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Height" "0.4" (id 5) (at 13.97 -6.35 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Name" "KEMET" (id 6) (at 13.97 -8.89 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Part_Number" "RC0402FR-07220RL" (id 7) (at 13.97 -11.43 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Part Number" "603-RC0402FR-07220RL" (id 8) (at 13.97 -13.97 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/YAGEO/RC0402FR-07220RL?qs=UOUeRUa%252B8Wkw9iNOZEwgHw%3D%3D" (id 9) (at 13.97 -16.51 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Part Number" "RC0402FR-07220RL" (id 10) (at 13.97 -19.05 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Price/Stock" "https://www.arrow.com/en/products/rc0402fr-07220rl/yageo?region=nac" (id 11) (at 13.97 -21.59 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Part Number" "" (id 12) (at 13.97 -24.13 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Price/Stock" "" (id 13) (at 13.97 -26.67 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "ki_description" "YAGEO (PHYCOMP) - RC0402FR-07220RL - RES, THICK FILM, 220R, 1%, 0.063W, 0402" (id 14) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "RC0402FR-07220RL_0_0" + (pin passive line (at 0 0 0) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 17.78 0 180) (length 5.08) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + (symbol "RC0402FR-07220RL_0_1" + (polyline + (pts + (xy 5.08 1.27) + (xy 12.7 1.27) + (xy 12.7 -1.27) + (xy 5.08 -1.27) + (xy 5.08 1.27) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + ) + (symbol "SamacSys_Parts:SKRPABE010" (pin_names (offset 0.762)) (in_bom yes) (on_board yes) + (property "Reference" "S" (id 0) (at 24.13 7.62 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "SKRPABE010" (id 1) (at 24.13 5.08 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "SKRPABE010" (id 2) (at 24.13 2.54 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/ALPS-Electric-SKRPABE010_C115360.pdf" (id 3) (at 24.13 0 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Description" "Switch Tactile N.O. SPST Button J-Bend 0.05A 16VDC 1.57N SMD Automotive T/R" (id 4) (at 24.13 -2.54 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Height" "2.5" (id 5) (at 24.13 -5.08 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Name" "ALPS Electric" (id 6) (at 24.13 -7.62 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Part_Number" "SKRPABE010" (id 7) (at 24.13 -10.16 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Part Number" "688-SKRPAB" (id 8) (at 24.13 -12.7 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Alps-Alpine/SKRPABE010?qs=m0BA540hBPe1GpcSf%2FZ5Yw%3D%3D" (id 9) (at 24.13 -15.24 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Part Number" "" (id 10) (at 24.13 -17.78 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Price/Stock" "" (id 11) (at 24.13 -20.32 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Part Number" "" (id 12) (at 24.13 -22.86 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Price/Stock" "" (id 13) (at 24.13 -25.4 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "ki_description" "Switch Tactile N.O. SPST Button J-Bend 0.05A 16VDC 1.57N SMD Automotive T/R" (id 14) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "SKRPABE010_0_0" + (pin passive line (at 0 0 0) (length 5.08) + (name "NO_1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 27.94 0 180) (length 5.08) + (name "NO_2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -2.54 0) (length 5.08) + (name "NO_3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 27.94 -2.54 180) (length 5.08) + (name "NO_4" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + ) + (symbol "SKRPABE010_0_1" + (polyline + (pts + (xy 5.08 2.54) + (xy 22.86 2.54) + (xy 22.86 -5.08) + (xy 5.08 -5.08) + (xy 5.08 2.54) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + ) + (symbol "SamacSys_Parts:WS2812B-2020" (pin_names (offset 0.762)) (in_bom yes) (on_board yes) + (property "Reference" "LED" (id 0) (at 21.59 7.62 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "WS2812B-2020" (id 1) (at 21.59 5.08 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "WS2812B2020" (id 2) (at 21.59 2.54 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "https://www.alldatasheet.com/datasheet-pdf/pdf/1134522/WORLDSEMI/WS2812B-2020.html" (id 3) (at 21.59 0 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Description" "LED; SMD; 2020; RGB; 2x2x0.84mm; 3.75.3V; Lens: transparent; 2kHz" (id 4) (at 21.59 -2.54 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Height" "0.84" (id 5) (at 21.59 -5.08 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Name" "Worldsemi" (id 6) (at 21.59 -7.62 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Part_Number" "WS2812B-2020" (id 7) (at 21.59 -10.16 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Part Number" "" (id 8) (at 21.59 -12.7 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Price/Stock" "" (id 9) (at 21.59 -15.24 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Part Number" "" (id 10) (at 21.59 -17.78 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Price/Stock" "" (id 11) (at 21.59 -20.32 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Part Number" "" (id 12) (at 21.59 -22.86 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Price/Stock" "" (id 13) (at 21.59 -25.4 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "ki_description" "LED; SMD; 2020; RGB; 2x2x0.84mm; 3.75.3V; Lens: transparent; 2kHz" (id 14) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "WS2812B-2020_0_0" + (pin passive line (at 25.4 -2.54 180) (length 5.08) + (name "DO" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 25.4 0 180) (length 5.08) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 0 0) (length 5.08) + (name "DI" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -2.54 0) (length 5.08) + (name "VDD" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + ) + (symbol "WS2812B-2020_0_1" + (polyline + (pts + (xy 5.08 2.54) + (xy 20.32 2.54) + (xy 20.32 -5.08) + (xy 5.08 -5.08) + (xy 5.08 2.54) + ) + (stroke (width 0.1524) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) ) (symbol "power:+3V3" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) @@ -1627,163 +2268,227 @@ ) ) - (junction (at 341.63 130.81) (diameter 0) (color 0 0 0 0) + (junction (at 307.34 121.92) (diameter 0) (color 0 0 0 0) (uuid 0173cf58-9e4e-483b-8093-ce7fba368f12) ) - (junction (at 439.42 135.89) (diameter 0) (color 0 0 0 0) + (junction (at 405.13 127) (diameter 0) (color 0 0 0 0) (uuid 0575c340-2510-438d-b84f-f3688b401828) ) (junction (at 127 40.64) (diameter 0) (color 0 0 0 0) (uuid 062f8944-a29f-4746-9d31-2f86d3dd4d57) ) - (junction (at 439.42 140.97) (diameter 0) (color 0 0 0 0) + (junction (at 160.02 111.76) (diameter 0) (color 0 0 0 0) + (uuid 06822d7b-d179-4054-a922-fbfd477fedb1) + ) + (junction (at 405.13 132.08) (diameter 0) (color 0 0 0 0) (uuid 0ec40616-87cd-4265-8e5a-e60d05545eaa) ) - (junction (at 477.52 130.81) (diameter 0) (color 0 0 0 0) + (junction (at 160.02 104.14) (diameter 0) (color 0 0 0 0) + (uuid 178b3945-32f8-47a3-abed-9ec357a81224) + ) + (junction (at 160.02 106.68) (diameter 0) (color 0 0 0 0) + (uuid 266eda8c-7e37-43dd-a656-f332a6ee49c5) + ) + (junction (at 443.23 121.92) (diameter 0) (color 0 0 0 0) (uuid 279f3db5-8995-42ac-8ead-0eed5afe776c) ) - (junction (at 370.84 68.58) (diameter 0) (color 0 0 0 0) + (junction (at 336.55 59.69) (diameter 0) (color 0 0 0 0) (uuid 2d67c273-702b-40e4-9b5a-50508ffdb78f) ) - (junction (at 303.53 135.89) (diameter 0) (color 0 0 0 0) + (junction (at 269.24 127) (diameter 0) (color 0 0 0 0) (uuid 2d971bbc-933e-4d94-8dac-837171d7f381) ) - (junction (at 80.01 63.5) (diameter 0) (color 0 0 0 0) - (uuid 37c0b43d-7ccc-43b2-b0f9-167dbb25f2ac) + (junction (at 40.64 269.24) (diameter 0) (color 0 0 0 0) + (uuid 3e385e56-9ae4-437a-b118-326bfc3bb6a2) ) - (junction (at 323.85 114.3) (diameter 0) (color 0 0 0 0) + (junction (at 289.56 105.41) (diameter 0) (color 0 0 0 0) (uuid 40a18661-e09e-421c-a854-7c7f21b05045) ) - (junction (at 408.94 130.81) (diameter 0) (color 0 0 0 0) + (junction (at 104.14 63.5) (diameter 0) (color 0 0 0 0) + (uuid 48484582-2d8f-4331-b646-9e679a24dfee) + ) + (junction (at 374.65 121.92) (diameter 0) (color 0 0 0 0) (uuid 48d5a9c4-902a-4b96-8e21-2bf8a1682d85) ) - (junction (at 62.23 220.98) (diameter 0) (color 0 0 0 0) - (uuid 4e4abcdf-7dbb-44f7-8e95-a79c5c483539) - ) - (junction (at 228.6 176.53) (diameter 0) (color 0 0 0 0) + (junction (at 213.36 184.15) (diameter 0) (color 0 0 0 0) (uuid 4eafd2ed-d119-46d9-9ddb-08a9e0a477aa) ) - (junction (at 459.74 114.3) (diameter 0) (color 0 0 0 0) + (junction (at 425.45 105.41) (diameter 0) (color 0 0 0 0) (uuid 506cae73-68e5-4512-afe2-50ded599196f) ) - (junction (at 303.53 140.97) (diameter 0) (color 0 0 0 0) + (junction (at 269.24 132.08) (diameter 0) (color 0 0 0 0) (uuid 5274a9af-06d0-4ab9-8695-613a516a2f43) ) - (junction (at 220.98 63.5) (diameter 0) (color 0 0 0 0) - (uuid 6b2e5d34-e0db-4779-9d6e-fe1640818697) + (junction (at 160.02 99.06) (diameter 0) (color 0 0 0 0) + (uuid 686d0f0a-9e96-4f4a-942d-d4d3daa98911) ) - (junction (at 373.38 91.44) (diameter 0) (color 0 0 0 0) + (junction (at 339.09 82.55) (diameter 0) (color 0 0 0 0) (uuid 6b5b60ff-175f-4e9d-9311-700983f19d3c) ) - (junction (at 306.07 91.44) (diameter 0) (color 0 0 0 0) + (junction (at 271.78 82.55) (diameter 0) (color 0 0 0 0) (uuid 6c53678c-9779-4f90-a0b5-d661a0433265) ) - (junction (at 370.84 140.97) (diameter 0) (color 0 0 0 0) + (junction (at 336.55 132.08) (diameter 0) (color 0 0 0 0) (uuid 7183a7d2-001c-444f-b6d5-f2def697ac7a) ) - (junction (at 441.96 91.44) (diameter 0) (color 0 0 0 0) + (junction (at 407.67 82.55) (diameter 0) (color 0 0 0 0) (uuid 7e9e071a-364e-4d51-958e-8d13af7e3ff9) ) - (junction (at 137.16 40.64) (diameter 0) (color 0 0 0 0) - (uuid 872cc332-b8a4-48a7-bebe-e67565a4456a) + (junction (at 160.02 101.6) (diameter 0) (color 0 0 0 0) + (uuid 7fc9b44e-f7b4-47e3-8b3c-5a92d37bb05d) ) - (junction (at 391.16 44.45) (diameter 0) (color 0 0 0 0) + (junction (at 160.02 109.22) (diameter 0) (color 0 0 0 0) + (uuid 8669f0c8-0e2d-409b-b35b-946d80e86349) + ) + (junction (at 160.02 114.3) (diameter 0) (color 0 0 0 0) + (uuid 88b78af9-5c7c-449e-9214-c2af6fd08810) + ) + (junction (at 356.87 35.56) (diameter 0) (color 0 0 0 0) (uuid 8b936f7d-6e62-411f-aee2-a23b8785f4c8) ) - (junction (at 132.08 50.8) (diameter 0) (color 0 0 0 0) - (uuid 8fff24dd-15cc-4b57-907e-8d6cc9df39a5) + (junction (at 193.04 63.5) (diameter 0) (color 0 0 0 0) + (uuid 9fbf2084-d361-4398-bff7-41e863584b1e) ) - (junction (at 391.16 114.3) (diameter 0) (color 0 0 0 0) + (junction (at 356.87 105.41) (diameter 0) (color 0 0 0 0) (uuid ab57b581-d6d5-4e04-b0c7-0ce318824ab7) ) - (junction (at 358.14 68.58) (diameter 0) (color 0 0 0 0) + (junction (at 40.64 271.78) (diameter 0) (color 0 0 0 0) + (uuid ad21b66a-cb7e-44bb-997e-ce1addc79f21) + ) + (junction (at 323.85 59.69) (diameter 0) (color 0 0 0 0) (uuid aea97d40-5aa4-432e-8dbd-824de02caaf3) ) - (junction (at 370.84 62.23) (diameter 0) (color 0 0 0 0) + (junction (at 40.64 266.7) (diameter 0) (color 0 0 0 0) + (uuid b8a2ee91-8a39-4af8-a204-eb8d325a634d) + ) + (junction (at 160.02 116.84) (diameter 0) (color 0 0 0 0) + (uuid c6acbf1a-ed60-4918-81c6-99c75cdbc240) + ) + (junction (at 137.16 53.34) (diameter 0) (color 0 0 0 0) + (uuid c81903c6-d674-4a01-a0ad-1d8ac2145a4b) + ) + (junction (at 336.55 53.34) (diameter 0) (color 0 0 0 0) (uuid d932aa65-14d3-41c5-95f7-f56976f40608) ) - (junction (at 370.84 135.89) (diameter 0) (color 0 0 0 0) + (junction (at 336.55 127) (diameter 0) (color 0 0 0 0) (uuid dd53eccb-f53a-4943-8388-352b1e3b6c56) ) - (junction (at 358.14 62.23) (diameter 0) (color 0 0 0 0) + (junction (at 323.85 53.34) (diameter 0) (color 0 0 0 0) (uuid e05b822c-71cb-4925-9ee2-edd2d83c4215) ) (junction (at 46.99 220.98) (diameter 0) (color 0 0 0 0) (uuid e47dd31c-5e80-43dc-8806-d6fae1f8f69e) ) + (junction (at 160.02 119.38) (diameter 0) (color 0 0 0 0) + (uuid eda627cf-0303-47e9-a118-66373875747d) + ) + (junction (at 160.02 232.41) (diameter 0) (color 0 0 0 0) + (uuid f5d27dd6-30c4-42be-acbd-c8c803af309a) + ) - (no_connect (at 130.81 93.98) (uuid cf243459-95c3-4165-82e9-d7369ccfe659)) - (no_connect (at 130.81 96.52) (uuid cf243459-95c3-4165-82e9-d7369ccfe65a)) - (no_connect (at 130.81 99.06) (uuid cf243459-95c3-4165-82e9-d7369ccfe65b)) - (no_connect (at 130.81 101.6) (uuid cf243459-95c3-4165-82e9-d7369ccfe65c)) - (no_connect (at 130.81 104.14) (uuid cf243459-95c3-4165-82e9-d7369ccfe65d)) - (no_connect (at 130.81 106.68) (uuid cf243459-95c3-4165-82e9-d7369ccfe65e)) + (no_connect (at 214.63 181.61) (uuid 09038a91-3f68-46e9-944e-fcb6db79bfbb)) + (no_connect (at 190.5 224.79) (uuid 338b1d0e-bf02-4a49-a521-aa0e5708d7e0)) + (no_connect (at 121.92 104.14) (uuid 90ae6517-1634-42c2-b452-1ddc08379191)) + (no_connect (at 121.92 106.68) (uuid 90ae6517-1634-42c2-b452-1ddc08379192)) + (no_connect (at 121.92 109.22) (uuid 90ae6517-1634-42c2-b452-1ddc08379193)) + (no_connect (at 121.92 114.3) (uuid 90ae6517-1634-42c2-b452-1ddc08379194)) + (no_connect (at 121.92 116.84) (uuid 90ae6517-1634-42c2-b452-1ddc08379195)) + (no_connect (at 121.92 111.76) (uuid 90ae6517-1634-42c2-b452-1ddc08379196)) + (no_connect (at 121.92 71.12) (uuid 90ae6517-1634-42c2-b452-1ddc08379197)) + (no_connect (at 160.02 81.28) (uuid 90ae6517-1634-42c2-b452-1ddc08379198)) + (no_connect (at 168.91 176.53) (uuid 91edfe0a-74af-4c0f-8c1d-260a100abdfb)) + (no_connect (at 219.71 66.04) (uuid 9e13d244-6508-4995-8045-c19ca540b929)) + (no_connect (at 247.65 63.5) (uuid 9e13d244-6508-4995-8045-c19ca540b92a)) + (no_connect (at 46.99 63.5) (uuid b3743f0e-8767-4b36-9cae-018491433225)) + (no_connect (at 74.93 66.04) (uuid b3743f0e-8767-4b36-9cae-018491433226)) - (wire (pts (xy 439.42 135.89) (xy 447.04 135.89)) + (wire (pts (xy 405.13 127) (xy 412.75 127)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 027d87ea-8559-4dc2-aad1-faa9bf71e540) ) + (wire (pts (xy 41.91 264.16) (xy 40.64 264.16)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 03be3b7d-df48-4925-9c2c-3ec09bbad83f) + ) + (wire (pts (xy 160.02 232.41) (xy 160.02 234.95)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 04c33995-a5b7-4e4e-a9d6-5811c3d16cc8) + ) + (polyline (pts (xy 95.25 238.76) (xy 95.25 293.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 04d36afd-2e51-4646-9c15-20601cca4e0e) + ) + + (wire (pts (xy 160.02 99.06) (xy 160.02 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 05e33a89-b184-4cf8-94ce-23a5185c3e7b) + ) (wire (pts (xy 31.75 173.99) (xy 48.26 173.99)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 063d47b2-7eb3-44e2-9228-845aa5c217a7) ) - (wire (pts (xy 341.63 114.3) (xy 323.85 114.3)) + (wire (pts (xy 307.34 105.41) (xy 289.56 105.41)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 0810087d-9d34-401b-a23d-8d96534f6fbf) ) - (wire (pts (xy 341.63 120.65) (xy 341.63 130.81)) + (wire (pts (xy 307.34 111.76) (xy 307.34 121.92)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 086a125c-a762-41ed-9bce-68bb54dd2d30) ) - (wire (pts (xy 477.52 114.3) (xy 459.74 114.3)) + (wire (pts (xy 121.92 66.04) (xy 114.3 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 089dce9f-9c0a-41f6-9d99-f643ee96b0d5) + ) + (wire (pts (xy 40.64 266.7) (xy 40.64 269.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 097e94ba-ff70-4f0f-aced-dd058c10ab2a) + ) + (wire (pts (xy 443.23 105.41) (xy 425.45 105.41)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 0a691dfd-4e4c-4016-aa1f-90233e5d6205) ) - (wire (pts (xy 236.22 63.5) (xy 237.49 63.5)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 0cb5ea03-6a0d-44d6-827e-a4482265e13e) - ) - (wire (pts (xy 370.84 68.58) (xy 370.84 69.85)) + (wire (pts (xy 336.55 59.69) (xy 336.55 60.96)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 0dfc5f36-13f5-4869-95e4-50cad635f447) ) - (wire (pts (xy 323.85 114.3) (xy 323.85 111.76)) + (wire (pts (xy 289.56 105.41) (xy 289.56 102.87)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 0e9c6eda-144d-47d9-91bc-e5db57d40aec) ) - (wire (pts (xy 341.63 161.29) (xy 341.63 165.1)) + (polyline (pts (xy 13.97 293.37) (xy 13.97 238.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0ecab40a-330c-4cc3-93ca-f8fe496c8c11) + ) + + (wire (pts (xy 307.34 152.4) (xy 307.34 156.21)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 10ac1ffa-c15b-4be2-b036-e8bf1aba597e) ) - (wire (pts (xy 60.96 166.37) (xy 63.5 166.37)) + (wire (pts (xy 160.02 111.76) (xy 160.02 109.22)) (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 166e2162-440f-43c0-8bbc-e5d425f578b9) + (uuid 137c3ff0-1804-4331-b30e-73bc6cb8c209) ) - (wire (pts (xy 63.5 63.5) (xy 64.77 63.5)) + (wire (pts (xy 127 53.34) (xy 137.16 53.34)) (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 16890890-09ab-4682-be0e-161cafac8c9f) + (uuid 14349d68-2fcb-4e71-b612-79ced42d431c) ) - (wire (pts (xy 48.26 218.44) (xy 44.45 218.44)) + (wire (pts (xy 212.09 179.07) (xy 214.63 179.07)) (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 18ee142a-9e6a-4416-aeb0-fe5b17fdef58) + (uuid 190abc20-848b-4f1a-86e6-e16f12d28b2c) ) - (wire (pts (xy 306.07 91.44) (xy 321.31 91.44)) + (wire (pts (xy 271.78 82.55) (xy 287.02 82.55)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 19201c13-b930-4e49-9d28-bf1af1b30ca2) ) - (wire (pts (xy 445.77 130.81) (xy 445.77 114.3)) + (wire (pts (xy 411.48 121.92) (xy 411.48 105.41)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 1a28d918-b9f6-4ed4-8e80-20a55ac593b6) ) - (wire (pts (xy 220.98 59.69) (xy 220.98 63.5)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 1b22393e-8768-45f4-b660-7816cdc8be48) - ) - (wire (pts (xy 321.31 120.65) (xy 341.63 120.65)) + (wire (pts (xy 287.02 111.76) (xy 307.34 111.76)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 1be1575f-13ed-4d10-b5a6-4e9e2212a53f) ) - (wire (pts (xy 441.96 139.7) (xy 441.96 91.44)) + (wire (pts (xy 407.67 130.81) (xy 407.67 82.55)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 1c4a6255-0c9a-4de6-b3ae-793b12312592) ) @@ -1791,47 +2496,51 @@ (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 1d23408c-53f4-43bc-a6ea-5f8152a87bd2) ) - (wire (pts (xy 401.32 133.35) (xy 405.13 133.35)) + (wire (pts (xy 367.03 124.46) (xy 370.84 124.46)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 1d94f1ba-f23a-424e-8e30-64b82c96b8fd) ) - (wire (pts (xy 378.46 133.35) (xy 370.84 133.35)) + (wire (pts (xy 139.7 222.25) (xy 142.24 222.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1e01e3a7-7720-4ffc-859d-301445b35990) + ) + (wire (pts (xy 160.02 114.3) (xy 160.02 111.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 21a94b94-a7e5-4013-b547-16a78a3e8d3c) + ) + (wire (pts (xy 344.17 124.46) (xy 336.55 124.46)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 235d1d05-5192-48bd-8ff7-2d34a3fc58e6) ) - (wire (pts (xy 341.63 91.44) (xy 341.63 114.3)) + (wire (pts (xy 307.34 82.55) (xy 307.34 105.41)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 238ada01-1b48-4b82-9502-16ed87c8927c) ) - (wire (pts (xy 60.96 218.44) (xy 64.77 218.44)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 240adb15-263d-4d56-8833-6fdd67d62e3a) - ) - (wire (pts (xy 334.01 133.35) (xy 337.82 133.35)) + (wire (pts (xy 299.72 124.46) (xy 303.53 124.46)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 249ba290-2995-4bc6-bda8-a3e4900ddea6) ) - (wire (pts (xy 358.14 68.58) (xy 358.14 69.85)) + (wire (pts (xy 323.85 59.69) (xy 323.85 60.96)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 26a5f376-09d5-464b-8388-f120e42f739e) ) - (wire (pts (xy 377.19 130.81) (xy 377.19 114.3)) + (wire (pts (xy 342.9 121.92) (xy 342.9 105.41)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 26e08de8-59c7-4e57-a60a-6d86964e3c78) ) - (wire (pts (xy 80.01 59.69) (xy 80.01 63.5)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 27e08f43-7223-49b1-ae5d-107c06c521d8) - ) - (wire (pts (xy 370.84 62.23) (xy 370.84 44.45)) + (wire (pts (xy 336.55 53.34) (xy 336.55 35.56)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 2820d832-2c32-4b3c-a653-4dcdee8ccc4a) ) - (wire (pts (xy 373.38 139.7) (xy 373.38 91.44)) + (wire (pts (xy 160.02 116.84) (xy 160.02 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 28fde843-78e8-410b-b7e5-01360203c50f) + ) + (wire (pts (xy 339.09 130.81) (xy 339.09 82.55)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 2906b057-9948-4a10-95bb-e40effe5f329) ) - (wire (pts (xy 457.2 120.65) (xy 477.52 120.65)) + (wire (pts (xy 422.91 111.76) (xy 443.23 111.76)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 290f5961-5c27-4d36-beab-d129a0954b64) ) @@ -1840,20 +2549,20 @@ (uuid 29290c94-de3d-49ee-bd8b-b263ea831e9c) ) - (wire (pts (xy 370.84 140.97) (xy 370.84 143.51)) + (wire (pts (xy 336.55 132.08) (xy 336.55 134.62)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 29828c9d-2911-42e3-ba9a-a8b0cf34864f) ) - (wire (pts (xy 158.75 181.61) (xy 161.29 181.61)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 2a71ac8d-f5f2-4567-8d6a-e6394b9e88e1) - ) (polyline (pts (xy 13.97 152.4) (xy 13.97 237.49)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 2aa033be-5f8c-4d1b-8c3b-4bf3b6bdb137) ) - (wire (pts (xy 336.55 135.89) (xy 336.55 139.7)) + (wire (pts (xy 74.93 63.5) (xy 104.14 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2b87a2bb-e88d-475f-b7ce-3276cc59d108) + ) + (wire (pts (xy 302.26 127) (xy 302.26 130.81)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 2c308fce-4f3f-4e2d-86f7-d318af54e0a9) ) @@ -1861,79 +2570,93 @@ (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 2cfabec0-63fb-4da7-979b-c8fce0cba57e) ) - (wire (pts (xy 80.01 63.5) (xy 80.01 67.31)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 2f1d62c8-9af2-4dad-84aa-e95f6575ab82) - ) - (wire (pts (xy 441.96 91.44) (xy 457.2 91.44)) + (wire (pts (xy 407.67 82.55) (xy 422.91 82.55)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 2f74d12a-8535-48cc-bb18-44e38c463687) ) - (wire (pts (xy 388.62 120.65) (xy 408.94 120.65)) + (wire (pts (xy 354.33 111.76) (xy 374.65 111.76)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 2fc2dee9-ada7-493d-bdb6-8385afea5f09) ) - (wire (pts (xy 60.96 208.28) (xy 77.47 208.28)) + (wire (pts (xy 160.02 66.04) (xy 171.45 66.04)) (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 3334a1ce-90eb-44d3-b4c8-f30675b53819) + (uuid 31747915-dad9-47e5-8002-68c9df779485) ) - (wire (pts (xy 303.53 135.89) (xy 303.53 140.97)) + (wire (pts (xy 154.94 232.41) (xy 160.02 232.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 328af293-e583-4cb7-af3b-5c03086556fa) + ) + (wire (pts (xy 269.24 127) (xy 269.24 132.08)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 342f7aa9-cc5d-4577-bffd-3803f2b220fd) ) - (wire (pts (xy 408.94 120.65) (xy 408.94 130.81)) + (wire (pts (xy 374.65 111.76) (xy 374.65 121.92)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 34947860-821a-4493-9f46-0ef1776ab842) ) - (wire (pts (xy 303.53 140.97) (xy 303.53 143.51)) + (wire (pts (xy 269.24 132.08) (xy 269.24 134.62)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 35b1a377-380c-4a6b-9c2e-dcfbf23201c9) ) - (wire (pts (xy 321.31 111.76) (xy 321.31 120.65)) + (wire (pts (xy 287.02 102.87) (xy 287.02 111.76)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 35bea977-5574-40ec-b0dc-c7b3f814a4a8) ) - (wire (pts (xy 403.86 139.7) (xy 373.38 139.7)) + (wire (pts (xy 369.57 130.81) (xy 339.09 130.81)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 36008779-2179-46eb-a85f-80c7651db8c0) ) - (wire (pts (xy 127 49.53) (xy 127 50.8)) + (polyline (pts (xy 96.52 237.49) (xy 125.73 237.49)) (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 3b53056b-f4e1-438c-b870-aa87a632da82) + (uuid 3aab9b98-5d99-422b-93f8-8fbca4043d55) ) - (wire (pts (xy 44.45 224.79) (xy 64.77 224.79)) + + (wire (pts (xy 160.02 119.38) (xy 160.02 121.92)) (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 3c3f2a16-8f59-46d2-8714-7b98755ce28d) + (uuid 3e7b3f0e-1558-4d9c-9e63-5430b335cdfc) ) - (wire (pts (xy 228.6 186.69) (xy 228.6 190.5)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 3c98ed11-e3c0-4318-9438-2f93ce892a71) - ) - (wire (pts (xy 161.29 71.12) (xy 171.45 71.12)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 3fcd6285-b8cf-4d18-acd2-772c06d878fa) - ) - (wire (pts (xy 408.94 91.44) (xy 408.94 114.3)) + (wire (pts (xy 374.65 82.55) (xy 374.65 105.41)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 41dbf4bc-18b8-49e7-8dcc-79706016fc1a) ) - (wire (pts (xy 60.96 200.66) (xy 63.5 200.66)) + (wire (pts (xy 111.76 63.5) (xy 104.14 63.5)) (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 46ddc515-3bd1-4360-9b31-c9606a39a07c) + (uuid 43eaea6b-58c4-4718-943d-fa6782b305c3) ) - (wire (pts (xy 311.15 133.35) (xy 303.53 133.35)) + (polyline (pts (xy 127 212.09) (xy 201.93 212.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4434b9b8-01e4-4a90-9a17-761148aa1c87) + ) + + (wire (pts (xy 41.91 261.62) (xy 40.64 261.62)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 454da3e7-9514-41dc-a091-9a073a615fe6) + ) + (wire (pts (xy 121.92 68.58) (xy 111.76 68.58)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 461f01e8-8a18-4a66-9b4d-8d1a5bde0dc5) + ) + (wire (pts (xy 276.86 124.46) (xy 269.24 124.46)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 476e0fcb-384d-46f3-9297-a83919d39beb) ) - (wire (pts (xy 370.84 135.89) (xy 378.46 135.89)) + (wire (pts (xy 160.02 88.9) (xy 171.45 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4808c89f-94df-49bf-bbee-4103b934501c) + ) + (wire (pts (xy 40.64 269.24) (xy 40.64 271.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 49ff89c6-a93d-4a92-a9e1-7e3fd68a7e48) + ) + (wire (pts (xy 336.55 127) (xy 344.17 127)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 4bd64c20-75ea-4c82-a18a-36e3b6bd48b8) ) - (wire (pts (xy 370.84 161.29) (xy 370.84 165.1)) + (wire (pts (xy 336.55 152.4) (xy 336.55 156.21)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 4c29f103-689f-4f3a-9112-c200b3bfd5e1) ) - (wire (pts (xy 373.38 91.44) (xy 388.62 91.44)) + (wire (pts (xy 339.09 82.55) (xy 354.33 82.55)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 4c4e00be-6351-4a2f-86a1-71afdcc8d1a5) ) @@ -1941,7 +2664,7 @@ (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 4dd149da-f0a6-4c41-88b6-e9f1284396f4) ) - (wire (pts (xy 407.67 59.69) (xy 407.67 44.45)) + (wire (pts (xy 373.38 50.8) (xy 373.38 35.56)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 4e5f9c75-31d9-47bc-90b4-380009ebab64) ) @@ -1949,31 +2672,32 @@ (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 4e825e1a-d19b-49dc-915e-9822f50d83ce) ) - (wire (pts (xy 60.96 198.12) (xy 72.39 198.12)) + (wire (pts (xy 160.02 224.79) (xy 160.02 232.41)) (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 4f367a6a-cd3b-496f-b7fd-a79b0c679f66) + (uuid 4fb1d765-e7be-45c1-82ec-15e93f3889b1) ) - (wire (pts (xy 370.84 44.45) (xy 391.16 44.45)) + (wire (pts (xy 336.55 35.56) (xy 356.87 35.56)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 50de2f3d-aa5d-4038-a5f7-f420e2bc80ac) ) - (wire (pts (xy 337.82 140.97) (xy 303.53 140.97)) + (wire (pts (xy 303.53 132.08) (xy 269.24 132.08)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 5151f3b4-1335-4d03-93cf-e402082e37d9) ) - (wire (pts (xy 143.51 179.07) (xy 161.29 179.07)) + (polyline (pts (xy 125.73 237.49) (xy 125.73 152.4)) (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 5182a60b-29d7-4d4c-8fa4-7fc0533ab71f) - ) - (wire (pts (xy 80.01 63.5) (xy 130.81 63.5)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 544585e8-2498-4739-be8a-650567b0a1e5) + (uuid 542d2bde-a020-4967-9890-ad5703fcdf64) ) + (wire (pts (xy 38.1 179.07) (xy 48.26 179.07)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 5539d9f7-b24d-45a3-9861-83cff7c3d49e) ) - (wire (pts (xy 447.04 130.81) (xy 445.77 130.81)) + (wire (pts (xy 114.3 66.04) (xy 114.3 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 585b8887-7a67-4843-9feb-1908a655d750) + ) + (wire (pts (xy 412.75 121.92) (xy 411.48 121.92)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 59349505-e769-4652-9fbe-0f09c5fce261) ) @@ -1981,24 +2705,50 @@ (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 59cf3a4c-322c-45cb-aae1-050cdcf970d1) ) + + (wire (pts (xy 165.1 179.07) (xy 168.91 179.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5a7f282b-bada-4b81-bee2-e890ba62b1b0) + ) (polyline (pts (xy 127 152.4) (xy 257.81 152.4)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 5c193380-1f64-482f-91f0-98ac180da2a2) ) - (wire (pts (xy 472.44 135.89) (xy 472.44 139.7)) + (wire (pts (xy 438.15 127) (xy 438.15 130.81)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 5c74b83b-eb4c-4381-8f3f-50ecd4138700) ) - (wire (pts (xy 405.13 133.35) (xy 405.13 140.97)) + (wire (pts (xy 370.84 124.46) (xy 370.84 132.08)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 5cc6c235-2291-422b-9abb-7d80c908d4a0) ) - (wire (pts (xy 408.94 130.81) (xy 401.32 130.81)) + (polyline (pts (xy 96.52 152.4) (xy 96.52 237.49)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5cdfe6a7-23a6-4367-9403-6e2bf9a78c0d) + ) + + (wire (pts (xy 374.65 121.92) (xy 367.03 121.92)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 5e6738cf-0fc2-430f-92ce-20677fae7cd5) ) - (wire (pts (xy 459.74 114.3) (xy 459.74 111.76)) + (wire (pts (xy 165.1 224.79) (xy 160.02 224.79)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6028b261-8b64-492b-9371-a92f61a6ba62) + ) + (wire (pts (xy 114.3 40.64) (xy 127 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 603e49ce-c32c-48c1-bd40-92b3b34bfbc4) + ) + (wire (pts (xy 160.02 76.2) (xy 171.45 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6058d5ef-a797-40b4-af4a-50592497576c) + ) + (wire (pts (xy 111.76 101.6) (xy 121.92 101.6)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 61418aa0-ee52-423a-8eba-9a3d85f75000) + ) + (wire (pts (xy 425.45 105.41) (xy 425.45 102.87)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 62138b5b-cc2d-425f-b857-33e15a7145c7) ) @@ -2007,19 +2757,35 @@ (uuid 632f6b75-69b4-4547-9a40-c39d5a9f1de2) ) - (wire (pts (xy 337.82 133.35) (xy 337.82 140.97)) + (wire (pts (xy 303.53 124.46) (xy 303.53 132.08)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 64aa2912-76ef-4583-a4e6-15edced46749) ) - (wire (pts (xy 227.33 179.07) (xy 228.6 179.07)) + (wire (pts (xy 212.09 186.69) (xy 213.36 186.69)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 64af102d-46f0-49c8-b5d9-2bbeb5ac6441) ) - (wire (pts (xy 388.62 111.76) (xy 388.62 120.65)) + (wire (pts (xy 212.09 181.61) (xy 214.63 181.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 64e56622-ca0e-4226-bd02-ecc2c20275e5) + ) + (wire (pts (xy 146.05 181.61) (xy 147.32 181.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 657d9c7d-04b4-4ccf-9397-03c0fc5a5c4d) + ) + (wire (pts (xy 354.33 102.87) (xy 354.33 111.76)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 667bf61b-8ea6-42ff-a979-37f4f83571f3) ) - (wire (pts (xy 377.19 114.3) (xy 391.16 114.3)) + (wire (pts (xy 111.76 119.38) (xy 121.92 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 674f1a27-09dc-416b-b5d6-52276dca3346) + ) + (wire (pts (xy 190.5 222.25) (xy 198.12 222.25)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6adb8bdd-9ad2-4367-8110-4eac2c5c4772) + ) + (wire (pts (xy 342.9 105.41) (xy 356.87 105.41)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 6bfa7dee-d7bf-4f09-8f5a-b27af0d50eff) ) @@ -2027,11 +2793,16 @@ (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 6c0aeedc-6f25-4e26-9fa2-e2c97c612d43) ) - (wire (pts (xy 477.52 130.81) (xy 469.9 130.81)) + (polyline (pts (xy 127 212.09) (xy 127 238.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6c2d2b48-6c10-42dd-8fa1-0f66ebdcea04) + ) + + (wire (pts (xy 443.23 121.92) (xy 435.61 121.92)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 6c52ae35-c8de-46f9-a0c2-29b35117ea7a) ) - (wire (pts (xy 309.88 114.3) (xy 323.85 114.3)) + (wire (pts (xy 275.59 105.41) (xy 289.56 105.41)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 6cb7d09c-26dc-47bd-8810-abf59cbeb426) ) @@ -2039,68 +2810,79 @@ (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 6d86b2b3-a11c-4186-a862-4b9dbccc7c6c) ) - (wire (pts (xy 401.32 135.89) (xy 403.86 135.89)) + (wire (pts (xy 111.76 96.52) (xy 121.92 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6e590361-9470-45d3-b32e-65d79d139574) + ) + (wire (pts (xy 367.03 127) (xy 369.57 127)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 6ec76cbb-f1ec-46f3-97f2-8fd84e730b41) ) - (wire (pts (xy 60.96 220.98) (xy 62.23 220.98)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 6ef2b715-781c-4823-a1f2-ac35c882bb4b) - ) - (wire (pts (xy 374.65 62.23) (xy 370.84 62.23)) + (wire (pts (xy 340.36 53.34) (xy 336.55 53.34)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 70bd6e06-1f44-43d3-9cbd-6ca5c970ab9d) ) - (wire (pts (xy 445.77 114.3) (xy 459.74 114.3)) + (wire (pts (xy 160.02 104.14) (xy 160.02 106.68)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7492e8a6-9ce9-47fa-9d86-ff170d81fd31) + ) + (wire (pts (xy 138.43 232.41) (xy 142.24 232.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7593b201-e075-4cfc-a0c7-1a0f76ccca12) + ) + (wire (pts (xy 111.76 93.98) (xy 121.92 93.98)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 75958f9e-5781-4880-b005-3613952d0c92) + ) + (wire (pts (xy 160.02 114.3) (xy 160.02 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 75f5c70b-63a9-40ca-bafe-08663ccabb28) + ) + (wire (pts (xy 411.48 105.41) (xy 425.45 105.41)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 761209d9-b640-4b4d-89d9-3bb2d357b53d) ) - (wire (pts (xy 341.63 143.51) (xy 341.63 130.81)) + (wire (pts (xy 307.34 134.62) (xy 307.34 121.92)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 76ca67d9-486e-4544-8abb-68fea07cc936) ) - (wire (pts (xy 228.6 176.53) (xy 229.87 176.53)) + (wire (pts (xy 160.02 101.6) (xy 160.02 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 770c8d95-30d3-49cb-b896-d1d02bb239b1) + ) + (wire (pts (xy 213.36 184.15) (xy 214.63 184.15)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 77617ede-8fab-4558-bf26-a75857e2e355) ) - (wire (pts (xy 407.67 44.45) (xy 391.16 44.45)) + (wire (pts (xy 214.63 176.53) (xy 214.63 175.26)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7762a7c4-8d89-4253-af83-01ca6657699e) + ) + (wire (pts (xy 116.84 60.96) (xy 116.84 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 77d58d64-4f4f-40b2-bfbf-0b0259b1a245) + ) + (wire (pts (xy 373.38 35.56) (xy 356.87 35.56)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 780565b1-42d0-47d1-acab-f0ed801edebf) ) - (wire (pts (xy 472.44 139.7) (xy 441.96 139.7)) + (wire (pts (xy 438.15 130.81) (xy 407.67 130.81)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 79fd6f61-58d1-4ab2-ae09-43b63c45cbfe) ) - (wire (pts (xy 158.75 186.69) (xy 161.29 186.69)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 7b2a71b1-b346-4f79-8bea-dca2305f5c1c) - ) - (wire (pts (xy 439.42 135.89) (xy 439.42 140.97)) + (wire (pts (xy 405.13 127) (xy 405.13 132.08)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 7bea3de6-67d1-4841-b435-82c65ad5e3c1) ) - (wire (pts (xy 161.29 66.04) (xy 171.45 66.04)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 7c64b929-0d12-4c54-998e-45a59da14acc) - ) - (wire (pts (xy 60.96 176.53) (xy 63.5 176.53)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 7c925d60-5c07-4ca1-a85c-3aadef735d1f) - ) - (wire (pts (xy 408.94 114.3) (xy 391.16 114.3)) + (wire (pts (xy 374.65 105.41) (xy 356.87 105.41)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 7d1c6331-a290-4ca0-b490-1ff4dac42587) ) - (wire (pts (xy 477.52 143.51) (xy 477.52 130.81)) + (wire (pts (xy 443.23 134.62) (xy 443.23 121.92)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 7d798099-0ff6-4336-8f1a-8ecd306c6470) ) - (polyline (pts (xy 97.79 152.4) (xy 97.79 190.5)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 7dbc0fb4-4a53-4c48-b38c-a463b3580c7d) - ) - - (wire (pts (xy 473.71 140.97) (xy 439.42 140.97)) + (wire (pts (xy 439.42 132.08) (xy 405.13 132.08)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 7e2dbcae-01e9-46a0-b663-ba71a602da93) ) @@ -2108,14 +2890,19 @@ (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 7ec51d09-d5a2-495b-91e4-95e9cae46f4c) ) - (wire (pts (xy 227.33 184.15) (xy 243.84 184.15)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 7f365ec3-6d59-41ea-aefd-8ef729e29d27) - ) - (wire (pts (xy 160.02 184.15) (xy 161.29 184.15)) + (wire (pts (xy 167.64 184.15) (xy 168.91 184.15)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 8139e118-50ee-4370-a7af-a979934d2b26) ) + (polyline (pts (xy 127 238.76) (xy 201.93 238.76)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 836e46fc-3b64-463a-a5b6-2fb81948b45c) + ) + + (wire (pts (xy 160.02 106.68) (xy 160.02 109.22)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8a4b8646-edd3-4f93-9c9d-387c9336bcec) + ) (wire (pts (xy 48.26 203.2) (xy 46.99 203.2)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 8b1b0efa-30fd-4a99-a184-499e5cbc44ee) @@ -2124,34 +2911,34 @@ (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 8b4d0934-2971-481c-aa83-dcd7750b9bec) ) - (wire (pts (xy 220.98 63.5) (xy 226.06 63.5)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 8f28a4ad-3206-4662-9050-ee8d9ab68504) - ) - (wire (pts (xy 439.42 161.29) (xy 439.42 165.1)) + (wire (pts (xy 405.13 152.4) (xy 405.13 156.21)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 90a0b61b-94fb-41c5-9b65-e640c1b201a6) ) - (wire (pts (xy 60.96 205.74) (xy 63.5 205.74)) + (wire (pts (xy 40.64 264.16) (xy 40.64 266.7)) (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 94ded0a6-f43e-40dc-8781-44b8825a2d1e) + (uuid 920de35a-2516-4179-be58-3adbd4dda755) + ) + (wire (pts (xy 40.64 261.62) (xy 40.64 260.35)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9520a606-95f6-4149-a069-2f04e7b40a08) ) (wire (pts (xy 38.1 161.29) (xy 48.26 161.29)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 96899765-05ea-4b93-a59e-372cf6a54c61) ) - (wire (pts (xy 439.42 133.35) (xy 439.42 135.89)) + (wire (pts (xy 405.13 124.46) (xy 405.13 127)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 981a7531-128f-48e2-83a6-07543196f0e2) ) - (wire (pts (xy 127 41.91) (xy 127 40.64)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 98a358c3-e365-48cf-a9c6-f6788dfc8a19) - ) - (wire (pts (xy 477.52 161.29) (xy 477.52 165.1)) + (wire (pts (xy 443.23 152.4) (xy 443.23 156.21)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 999ec5ff-80e2-467b-ae25-332f079b1e00) ) + (wire (pts (xy 160.02 63.5) (xy 193.04 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9a6a5c38-a6d1-4205-8da4-560db2eccfe6) + ) (wire (pts (xy 31.75 163.83) (xy 48.26 163.83)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 9b49beea-41e8-45e1-8090-00e3ffb1a1ba) @@ -2160,51 +2947,36 @@ (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 9b54fa82-2026-4536-a41d-c6c3b954ee7f) ) - (wire (pts (xy 303.53 161.29) (xy 303.53 165.1)) + (wire (pts (xy 269.24 152.4) (xy 269.24 156.21)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 9bc90d67-59d6-474d-a913-d2174102939a) ) - (wire (pts (xy 60.96 168.91) (xy 77.47 168.91)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 9c36f605-22f1-4f51-8a5d-06c173b020d9) - ) - (wire (pts (xy 160.02 172.72) (xy 160.02 184.15)) + (wire (pts (xy 167.64 172.72) (xy 167.64 184.15)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 9e18c09b-e688-42a5-b683-38ec8188eb83) ) - (wire (pts (xy 137.16 40.64) (xy 137.16 41.91)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 9eab4422-2223-4d86-a655-f61d70d3c5b9) - ) - (wire (pts (xy 447.04 133.35) (xy 439.42 133.35)) + (wire (pts (xy 412.75 124.46) (xy 405.13 124.46)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid 9eaefe70-5f0b-4964-905d-11fcf595c376) ) - (wire (pts (xy 60.96 203.2) (xy 62.23 203.2)) + (polyline (pts (xy 125.73 152.4) (xy 96.52 152.4)) (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 9f509dc3-e267-4c9c-bf15-94d1ed9b82f6) + (uuid 9fca0e9e-95ba-4d76-bbf2-f52cd9eed975) ) - (wire (pts (xy 74.93 63.5) (xy 80.01 63.5)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid a09d9cd6-6d18-4745-92c0-aa66ee22057e) - ) - (wire (pts (xy 303.53 135.89) (xy 311.15 135.89)) + + (wire (pts (xy 269.24 127) (xy 276.86 127)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid a1042a3e-cd12-443c-9d84-e52831e98b61) ) - (wire (pts (xy 469.9 133.35) (xy 473.71 133.35)) + (wire (pts (xy 435.61 124.46) (xy 439.42 124.46)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid a1f9a064-1741-44c1-b6a2-ef9dc2de5b38) ) - (wire (pts (xy 64.77 224.79) (xy 64.77 218.44)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid a25f0498-4167-4874-bbe9-b40e3cf99bb3) - ) - (wire (pts (xy 408.94 161.29) (xy 408.94 165.1)) + (wire (pts (xy 374.65 152.4) (xy 374.65 156.21)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid a2b4ccfd-8a2a-456d-a932-d018ba468aed) ) - (wire (pts (xy 370.84 135.89) (xy 370.84 140.97)) + (wire (pts (xy 336.55 127) (xy 336.55 132.08)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid a2c8abfc-0ed9-4e4b-a981-d35e3634b367) ) @@ -2212,288 +2984,271 @@ (stroke (width 0) (type default) (color 0 0 0 0)) (uuid a3c03337-07aa-4b00-bd8f-798a012c0bf7) ) - (wire (pts (xy 62.23 203.2) (xy 62.23 220.98)) + (wire (pts (xy 121.92 63.5) (xy 116.84 63.5)) (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid a461874d-1573-49a9-8b25-397bdab4706b) + (uuid a3e9ec53-da40-4ee8-a896-96401f006653) ) - (wire (pts (xy 80.01 50.8) (xy 80.01 52.07)) + (wire (pts (xy 160.02 71.12) (xy 171.45 71.12)) (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid aa193e4b-39fe-4234-9f2e-6f84adb982bd) + (uuid a821b78a-96af-4390-a876-a1a75c30abb0) + ) + (wire (pts (xy 160.02 86.36) (xy 171.45 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid aa99a839-ea39-4bd0-a3c0-9aac418ba12c) ) (polyline (pts (xy 13.97 152.4) (xy 95.25 152.4)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid aaa88d34-1579-4cd5-b3b2-a31756910edb) ) - (wire (pts (xy 457.2 111.76) (xy 457.2 120.65)) + (wire (pts (xy 422.91 102.87) (xy 422.91 111.76)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid abe53e42-5d27-487a-a735-e43e37d73162) ) - (wire (pts (xy 60.96 161.29) (xy 71.12 161.29)) + (polyline (pts (xy 13.97 238.76) (xy 95.25 238.76)) (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid ac8ade70-6437-40e9-a41d-f95e67c6674e) + (uuid b08c6c73-d2c3-4f19-9179-93b446215ffd) ) - (wire (pts (xy 60.96 171.45) (xy 63.5 171.45)) + + (wire (pts (xy 40.64 269.24) (xy 41.91 269.24)) (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid ac9650b5-f13f-49cf-bd7f-781916035065) + (uuid b0a8dd53-32c8-4524-bb53-b5f6d943c788) ) - (wire (pts (xy 80.01 74.93) (xy 80.01 76.2)) + (wire (pts (xy 46.99 66.04) (xy 46.99 78.74)) (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid adabc913-6e75-4d60-bc33-918a6efb2ffa) + (uuid b1bf1458-e670-425e-823b-7ea17899f973) ) - (wire (pts (xy 220.98 50.8) (xy 220.98 52.07)) + (wire (pts (xy 137.16 53.34) (xy 142.24 53.34)) (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid b285bc13-6d4d-4759-982e-949fc5c202e4) + (uuid b3552152-04ad-44d4-b667-25b54ba90771) ) (wire (pts (xy 45.72 171.45) (xy 48.26 171.45)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid b70c26c0-b6fe-42ac-bb57-e63f0d885889) ) - (wire (pts (xy 477.52 91.44) (xy 477.52 114.3)) + (wire (pts (xy 443.23 82.55) (xy 443.23 105.41)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid b82cbce4-6431-43d4-b0ec-7f299e9fcd20) ) - (wire (pts (xy 127 50.8) (xy 132.08 50.8)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid b8b243e3-151f-4908-8fd6-7fe9eeaa0959) - ) - (wire (pts (xy 336.55 139.7) (xy 306.07 139.7)) + (wire (pts (xy 302.26 130.81) (xy 271.78 130.81)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid b9110711-8b33-4ff7-b39d-5134bf28c1ad) ) - (wire (pts (xy 60.96 213.36) (xy 77.47 213.36)) + (wire (pts (xy 160.02 96.52) (xy 160.02 99.06)) (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid ba998de0-c7e5-4a7c-9c26-28d342573830) + (uuid bc332711-1697-4796-b3ef-eca09d4fe6f7) ) - (polyline (pts (xy 123.19 152.4) (xy 97.79 152.4)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid bcf9b464-c57b-43c7-a590-537a6046bafd) - ) - (wire (pts (xy 31.75 213.36) (xy 48.26 213.36)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid be7022f7-6527-4d38-89c7-2120f00756e7) ) - (wire (pts (xy 439.42 140.97) (xy 439.42 143.51)) + (wire (pts (xy 40.64 271.78) (xy 41.91 271.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid be9d055e-85c9-4e16-b979-9bf4592c81f4) + ) + (wire (pts (xy 405.13 132.08) (xy 405.13 134.62)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid c2750112-f24a-4fda-aa74-6f26e3f66597) ) - (wire (pts (xy 71.12 179.07) (xy 60.96 179.07)) + (wire (pts (xy 198.12 222.25) (xy 198.12 229.87)) (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid c3052e9a-c960-4745-a3c1-199f00cb8f07) + (uuid c2924cf5-cda9-49a9-b9bb-e00632e33af3) ) - (polyline (pts (xy 293.37 186.69) (xy 495.3 186.69)) + (polyline (pts (xy 259.08 177.8) (xy 461.01 177.8)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid c362f307-dcb8-4b30-950c-1c1dc23ff45e) ) - - (wire (pts (xy 62.23 220.98) (xy 72.39 220.98)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid c45beee8-655d-4225-95d7-076c5240aeb2) - ) (polyline (pts (xy 95.25 152.4) (xy 95.25 237.49)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid c4b26cde-b149-4bd7-b260-2d7cca84d62a) ) - (wire (pts (xy 63.5 76.2) (xy 63.5 63.5)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid c4bd0e7d-eae3-4111-84ad-fd443ae4c32d) - ) - (wire (pts (xy 227.33 186.69) (xy 228.6 186.69)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid c5c74742-27a5-4b31-82b6-a48e5991ed8a) - ) - (wire (pts (xy 309.88 130.81) (xy 309.88 114.3)) + (wire (pts (xy 275.59 121.92) (xy 275.59 105.41)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid c5dfa702-0d32-466e-91f0-2b0d26166175) ) - (wire (pts (xy 227.33 176.53) (xy 228.6 176.53)) + (wire (pts (xy 212.09 184.15) (xy 213.36 184.15)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid c65c99f8-deab-4d7a-bdef-11c958701f6a) ) - (wire (pts (xy 374.65 59.69) (xy 358.14 59.69)) + (wire (pts (xy 340.36 50.8) (xy 323.85 50.8)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid c69a5b76-755c-44d7-9f8c-829ea9ecfa7c) ) + (wire (pts (xy 40.64 266.7) (xy 41.91 266.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c75fb097-defe-4d1a-891c-e1e15f7ebbeb) + ) + (wire (pts (xy 165.1 186.69) (xy 168.91 186.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c786908a-d446-48fd-8556-fb1ac9967140) + ) + (wire (pts (xy 111.76 68.58) (xy 111.76 63.5)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c7f21495-3564-4356-842f-c25d13f11c91) + ) (wire (pts (xy 31.75 208.28) (xy 48.26 208.28)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid c80a7809-6bff-4ae5-9f7d-d02d995aa96b) ) + (wire (pts (xy 212.09 176.53) (xy 214.63 176.53)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid caadc44d-409f-4dab-8a70-ffacfd1aebd3) + ) (polyline (pts (xy 13.97 237.49) (xy 95.25 237.49)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid cbe21627-22bf-424f-add0-bf6e4eab18a0) ) - (polyline (pts (xy 123.19 190.5) (xy 123.19 152.4)) + + (wire (pts (xy 160.02 222.25) (xy 165.1 222.25)) (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid ccf01bc0-0da7-4557-9fad-84dc6a3743c4) + (uuid cdebf5a0-58c3-4255-9adc-1c8c1b83c3b7) + ) + (wire (pts (xy 165.1 181.61) (xy 168.91 181.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ce575c38-e511-4d81-80d8-08e8eef339d7) + ) + (polyline (pts (xy 95.25 293.37) (xy 13.97 293.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d12e92a2-2d27-41ff-b27b-7ba6c5964b52) + ) + (polyline (pts (xy 201.93 238.76) (xy 201.93 212.09)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d36af5ca-57e7-4d1e-aeaf-f1e27577a4e9) ) - (wire (pts (xy 44.45 218.44) (xy 44.45 224.79)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid ce0aae10-7374-49e6-b747-70f10bd5b4b2) - ) - (wire (pts (xy 358.14 59.69) (xy 358.14 62.23)) + (wire (pts (xy 323.85 50.8) (xy 323.85 53.34)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid d4b8b5bf-c097-4a58-86aa-88d3fbcc5c88) ) - (wire (pts (xy 60.96 163.83) (xy 77.47 163.83)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid d6218ff2-b902-4b7b-8c19-edf5c27f0e06) - ) - (polyline (pts (xy 293.37 21.59) (xy 495.3 21.59)) + (polyline (pts (xy 259.08 12.7) (xy 461.01 12.7)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid d673d8d5-e92c-4066-bcd2-f5e981c14901) ) - (wire (pts (xy 60.96 215.9) (xy 63.5 215.9)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid d7135d5e-e36a-40a9-868c-e7c5f4ada7e5) - ) - (wire (pts (xy 473.71 133.35) (xy 473.71 140.97)) + (wire (pts (xy 439.42 124.46) (xy 439.42 132.08)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid d9f78166-73e0-4874-b8d5-08913232cc17) ) - (wire (pts (xy 403.86 135.89) (xy 403.86 139.7)) + (wire (pts (xy 369.57 127) (xy 369.57 130.81)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid dae1c45e-1276-44de-bd91-ffd3b3cd8c95) ) - (wire (pts (xy 227.33 181.61) (xy 229.87 181.61)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid dbaff6f3-59de-48fc-885a-b9d6dced8bc6) - ) - (wire (pts (xy 408.94 143.51) (xy 408.94 130.81)) + (wire (pts (xy 374.65 134.62) (xy 374.65 121.92)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid ddbdd69c-f6ca-43fa-b14b-a3a8f84703b9) ) - (wire (pts (xy 469.9 135.89) (xy 472.44 135.89)) + (wire (pts (xy 435.61 127) (xy 438.15 127)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid ddd08340-db68-4401-9024-5fcf0fc18a1d) ) - (wire (pts (xy 311.15 130.81) (xy 309.88 130.81)) + (wire (pts (xy 276.86 121.92) (xy 275.59 121.92)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid e04c04f0-a49b-4e50-8e18-4bef1362a1fa) ) - (wire (pts (xy 306.07 139.7) (xy 306.07 91.44)) + (wire (pts (xy 271.78 130.81) (xy 271.78 82.55)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid e1ca4b3a-fe0d-4f93-986a-0e15ea4f4696) ) - (wire (pts (xy 237.49 76.2) (xy 237.49 63.5)) + (wire (pts (xy 146.05 179.07) (xy 147.32 179.07)) (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid e6642a43-84cc-441d-9587-4f1d51b50abd) + (uuid e44ae58c-29a9-4cd0-8386-e0ac9d093bfd) ) - (wire (pts (xy 391.16 114.3) (xy 391.16 111.76)) + (wire (pts (xy 146.05 186.69) (xy 147.32 186.69)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e686ef55-be18-46c7-8ee2-34e89894ebbf) + ) + (wire (pts (xy 356.87 105.41) (xy 356.87 102.87)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid e71611a2-da66-419b-a636-a35130c1db6f) ) - (wire (pts (xy 378.46 130.81) (xy 377.19 130.81)) + (wire (pts (xy 344.17 121.92) (xy 342.9 121.92)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid e79b8c28-b08b-4b1a-b694-e7172cd90eb2) ) - (wire (pts (xy 132.08 50.8) (xy 132.08 52.07)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid eaac33a2-cad0-4da5-89d1-cca3532d140a) - ) (wire (pts (xy 127 40.64) (xy 137.16 40.64)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid eaac4ab3-6e88-4bb3-833f-a758ce9a185b) ) - (wire (pts (xy 405.13 140.97) (xy 370.84 140.97)) + (wire (pts (xy 370.84 132.08) (xy 336.55 132.08)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid eb478c46-363d-4db8-8bc7-dd1d98442f3d) ) - (wire (pts (xy 370.84 64.77) (xy 370.84 68.58)) + (wire (pts (xy 336.55 55.88) (xy 336.55 59.69)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid eb55de16-cc35-4e83-8111-278dce9a6f04) ) - (wire (pts (xy 146.05 58.42) (xy 146.05 40.64)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid eb756154-523a-45af-a288-42d57eecb2f5) - ) - (polyline (pts (xy 293.37 21.59) (xy 293.37 186.69)) + (polyline (pts (xy 259.08 12.7) (xy 259.08 177.8)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid ecc7b5a0-5c44-428a-934b-43b1ce6c30b2) ) - (wire (pts (xy 228.6 176.53) (xy 228.6 179.07)) + (wire (pts (xy 213.36 184.15) (xy 213.36 186.69)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid ed559813-74c9-4f65-9871-e2af7bec65ec) ) - (wire (pts (xy 132.08 50.8) (xy 137.16 50.8)) + (wire (pts (xy 193.04 63.5) (xy 219.71 63.5)) (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid eec67c7b-8191-4cb7-a1c0-8afa65f79706) + (uuid eebe8fd8-3e60-43b0-814e-e24af6580ab0) ) - (wire (pts (xy 60.96 210.82) (xy 63.5 210.82)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid f034fdbe-cef6-4d45-baca-033aecec998a) - ) - (wire (pts (xy 358.14 62.23) (xy 358.14 68.58)) + (wire (pts (xy 323.85 53.34) (xy 323.85 59.69)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid f0723609-0535-48df-981c-8f0fd02c59c7) ) - (polyline (pts (xy 495.3 186.69) (xy 495.3 21.59)) + (polyline (pts (xy 461.01 177.8) (xy 461.01 12.7)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid f0f8b125-f66d-497a-b848-156f0ff73b7a) ) - (wire (pts (xy 477.52 120.65) (xy 477.52 130.81)) + (wire (pts (xy 443.23 111.76) (xy 443.23 121.92)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid f132f983-8947-4e14-af70-de99ceb8c06c) ) - (wire (pts (xy 374.65 64.77) (xy 370.84 64.77)) + (wire (pts (xy 340.36 55.88) (xy 336.55 55.88)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid f23d6acc-93b5-4f63-ab8e-39d6d73d8979) ) - (wire (pts (xy 161.29 63.5) (xy 220.98 63.5)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid f2bf5a61-98a8-4569-9ece-85a6ea34719a) - ) - (wire (pts (xy 370.84 133.35) (xy 370.84 135.89)) + (wire (pts (xy 336.55 124.46) (xy 336.55 127)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid f37916d4-a592-493c-9ff1-ca7b6a4030be) ) - (wire (pts (xy 137.16 40.64) (xy 146.05 40.64)) + (wire (pts (xy 160.02 93.98) (xy 171.45 93.98)) (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid f4abd6ec-c4e4-408d-b10c-961f8b2bee2a) + (uuid f440a7df-e647-4640-a36d-08c1f2109a9f) ) (wire (pts (xy 45.72 166.37) (xy 48.26 166.37)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid f6e8f969-aed1-44de-8917-5be1297cd5f2) ) - (wire (pts (xy 334.01 135.89) (xy 336.55 135.89)) + (wire (pts (xy 299.72 127) (xy 302.26 127)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid f7de7464-6058-40ab-bfe5-0d318d9ae3dd) ) - (wire (pts (xy 137.16 49.53) (xy 137.16 50.8)) + (wire (pts (xy 160.02 78.74) (xy 171.45 78.74)) (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid f8cec7c2-7dfe-438f-b89f-54da346744f6) + (uuid f86d9e47-017e-4482-80e4-0914ee499f4c) ) (wire (pts (xy 46.99 203.2) (xy 46.99 220.98)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid f93095fd-151e-4b85-b4a9-3dbfa958171b) ) - (wire (pts (xy 60.96 173.99) (xy 77.47 173.99)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid f9362984-b2b7-4cb5-9896-d5104e159747) - ) - (wire (pts (xy 303.53 133.35) (xy 303.53 135.89)) + (wire (pts (xy 269.24 124.46) (xy 269.24 127)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid fa14d8ee-4eb0-4652-abc2-c52ff6fcf467) ) - (wire (pts (xy 158.75 176.53) (xy 161.29 176.53)) + (wire (pts (xy 40.64 271.78) (xy 40.64 275.59)) (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid fa610f26-fc8f-45b8-80a0-9a8704d0f753) + (uuid fc11a48d-6913-4668-abe4-63fe54360091) ) - (polyline (pts (xy 97.79 190.5) (xy 123.19 190.5)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid fd857f76-52dc-4d8d-8d6e-b06dcdf03990) - ) - - (wire (pts (xy 341.63 130.81) (xy 334.01 130.81)) + (wire (pts (xy 307.34 121.92) (xy 299.72 121.92)) (stroke (width 0) (type default) (color 0 0 0 0)) (uuid fe6abb3b-c81e-49dd-a1e3-2d779d86d8d4) ) + (text "ESP32 Breakout" (at 97.79 237.49 0) + (effects (font (size 2 2)) (justify left bottom)) + (uuid 0b4fb703-dc03-4580-9fb1-9573b22e4db1) + ) (text "Boot" (at 200.66 53.34 0) (effects (font (size 4 4)) (justify left bottom)) (uuid 34ed43db-33db-4d72-87b2-71c4f74739a7) @@ -2502,142 +3257,241 @@ (effects (font (size 2 2)) (justify right bottom)) (uuid 351250d6-10c9-4983-ad3d-ff4362c5b5cf) ) + (text "1x 5V\n1x 3V3\n2x GND" (at 97.79 160.02 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 3e3822b3-62d3-4978-9354-24708fad702e) + ) (text "Reset" (at 59.69 53.34 0) (effects (font (size 4 4)) (justify left bottom)) (uuid 4619ff43-4f12-4dbd-b767-fb6f55c7aa1d) ) - (text "Power" (at 293.37 186.69 0) + (text "Power" (at 259.08 177.8 0) (effects (font (size 2 2)) (justify left bottom)) (uuid 4e998a25-6aa7-4259-9b06-6dcb2ffd2354) ) + (text "RGB LED\n" (at 128.27 237.49 0) + (effects (font (size 2 2)) (justify left bottom)) + (uuid 7fa09ccb-15df-4e18-bede-056ceea82a96) + ) (text "Flipper Zero Connection" (at 13.97 237.49 0) (effects (font (size 2 2)) (justify left bottom)) (uuid 849f4f66-b83c-4d8e-94b3-f089f8abbc49) ) - (text "ESP32 Breakout" (at 97.79 190.5 0) + (text "JTAG" (at 15.24 292.1 0) (effects (font (size 2 2)) (justify left bottom)) - (uuid bcc64dae-df1a-494b-a822-5d592cc584ed) + (uuid a8524d64-ea56-4a07-8967-d231208c8ad8) ) - (global_label "TX" (shape input) (at 171.45 71.12 0) (fields_autoplaced) + (global_label "GPIO18" (shape input) (at 171.45 76.2 0) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) - (uuid 0d11740a-f5f3-49f4-9865-7cc5192cf5be) - (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 176.0402 71.0406 0) + (uuid 008a94b1-f3db-4cee-a7f4-7940f943e62b) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 180.7574 76.2794 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) - (global_label "CLK" (shape output) (at 31.75 168.91 180) (fields_autoplaced) + (global_label "GPIO39" (shape input) (at 121.92 73.66 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) - (uuid 1632a86a-e381-4002-9002-88f0f9f94120) - (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 25.7688 168.8306 0) + (uuid 0be43e6a-ddd3-4b90-aad5-22249acefd6c) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 112.6126 73.5806 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) - (global_label "SD-Det" (shape output) (at 229.87 176.53 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left)) - (uuid 19aa8a0b-a9c8-4dfb-aeda-50bc89001bbd) - (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 239.4193 176.4506 0) - (effects (font (size 1.27 1.27)) (justify left) hide) - ) - ) - (global_label "SC" (shape output) (at 63.5 171.45 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left)) - (uuid 2b2c56ba-599e-4855-bc5d-893ec280231f) - (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 68.3926 171.3706 0) - (effects (font (size 1.27 1.27)) (justify left) hide) - ) - ) - (global_label "MOSI" (shape bidirectional) (at 31.75 163.83 180) (fields_autoplaced) + (global_label "GPIO04" (shape input) (at 146.05 179.07 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) - (uuid 2e359b36-30f2-4d38-bb01-9413bfc0ca45) - (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 24.7407 163.7506 0) + (uuid 0c14479c-fc25-4076-ae2c-50d76ab98260) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 136.7426 179.1494 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) - (global_label "LPUART_RX" (shape input) (at 45.72 215.9 180) (fields_autoplaced) + (global_label "GPIO33" (shape input) (at 109.22 175.26 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) - (uuid 368495c1-311e-4432-a9e8-8f8d423b09c0) - (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 32.905 215.8206 0) + (uuid 0d4dc046-dc8b-41b4-85d7-6719f5bf0872) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 99.9126 175.1806 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) - (global_label "MOSI" (shape bidirectional) (at 77.47 163.83 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left)) - (uuid 370df25e-ad18-43cf-a6ca-cbe5463f56f8) - (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 84.4793 163.7506 0) - (effects (font (size 1.27 1.27)) (justify left) hide) - ) - ) - (global_label "RX" (shape output) (at 171.45 66.04 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left)) - (uuid 37c91e50-30df-49b3-ba1b-d3c85d8eb8f9) - (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 176.3426 65.9606 0) - (effects (font (size 1.27 1.27)) (justify left) hide) - ) - ) - (global_label "ESP_EN" (shape output) (at 45.72 176.53 180) (fields_autoplaced) + (global_label "RESET" (shape input) (at 45.72 176.53 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) - (uuid 3f54ce74-d7ce-458d-9c39-0751aa471972) - (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 36.2312 176.4506 0) + (uuid 15d2cea3-3d94-44b7-b235-9f304c786aa3) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 37.5617 176.6094 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) - (global_label "SD-Data2" (shape bidirectional) (at 158.75 176.53 180) (fields_autoplaced) + (global_label "GPIO36" (shape input) (at 45.72 205.74 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) - (uuid 4ff4cd37-7aed-41fb-a5c4-4f0a68d7edf3) - (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 146.7817 176.4506 0) + (uuid 175f0089-1daf-4f3e-a207-7d6daa070b72) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 36.4126 205.6606 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) - (global_label "LPUART_TX" (shape output) (at 77.47 213.36 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left)) - (uuid 55d29c26-60b9-4b8c-bdae-fd9fa76ff073) - (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 89.9826 213.2806 0) - (effects (font (size 1.27 1.27)) (justify left) hide) - ) - ) - (global_label "MISO" (shape bidirectional) (at 45.72 166.37 180) (fields_autoplaced) + (global_label "TMS" (shape input) (at 111.76 93.98 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) - (uuid 5e452142-383e-450a-9ae2-bad60c877971) - (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 38.7107 166.2906 0) + (uuid 1f109aa2-39fa-444a-9bb3-2c4010e0f191) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 105.7183 94.0594 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) - (global_label "SD-CMD" (shape bidirectional) (at 158.75 181.61 180) (fields_autoplaced) + (global_label "GPIO23" (shape input) (at 171.45 93.98 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 2994a4fe-d68e-4ee9-a35a-188cc4f7eecf) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 180.7574 94.0594 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "GPIO35" (shape input) (at 109.22 180.34 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) - (uuid 6d05c151-3039-4cf8-9dc9-9515cec459c4) - (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 148.2936 181.5306 0) + (uuid 2cf9c6e7-2584-4669-80f3-922713ffe0dd) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 99.9126 180.2606 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) - (global_label "ESP_EN" (shape output) (at 63.5 176.53 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left)) - (uuid 6f19783e-f482-4c0f-a09a-b3419fa981c4) - (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 72.9888 176.4506 0) - (effects (font (size 1.27 1.27)) (justify left) hide) - ) - ) - (global_label "SWDIO" (shape bidirectional) (at 63.5 205.74 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left)) - (uuid 757d2063-d4d8-400c-a737-a3a95c26beb2) - (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 71.7793 205.6606 0) - (effects (font (size 1.27 1.27)) (justify left) hide) - ) - ) - (global_label "TX" (shape output) (at 77.47 208.28 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left)) - (uuid 77446263-2622-4c2a-bc40-59f39d11b8e5) - (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 82.0602 208.2006 0) - (effects (font (size 1.27 1.27)) (justify left) hide) - ) - ) - (global_label "SD-Data3" (shape bidirectional) (at 143.51 179.07 180) (fields_autoplaced) + (global_label "GPIO26" (shape input) (at 121.92 88.9 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) - (uuid 7e79744b-65f7-4e1d-bb88-3dff70049fb2) - (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 131.5417 178.9906 0) + (uuid 2cffb92a-fb75-48f9-86eb-51f6b663eef6) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 112.6126 88.8206 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) + (global_label "GPIO26" (shape input) (at 109.22 167.64 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 2fa6290c-593c-4ce9-bd13-5b0529262eb3) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 99.9126 167.5606 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "TMS" (shape input) (at 64.77 261.62 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 3355050b-b89a-4200-9e58-adf271a7f46f) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 70.8117 261.5406 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "TCK" (shape input) (at 111.76 101.6 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 33d9eeb2-fa39-40a9-92a2-fae116379f1e) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 105.8393 101.6794 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "TCK" (shape input) (at 64.77 264.16 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 38fecc0e-1c3b-4ef4-be3b-ae3dde32e563) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 70.6907 264.0806 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "GPIO16" (shape input) (at 160.02 68.58 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 432272f0-84bb-4fca-98f7-deb175a0b4f7) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 169.3274 68.5006 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "RX" (shape output) (at 109.22 185.42 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 4fb4d1b9-9e34-4b38-90a2-8e9996de3888) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 104.3274 185.4994 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "GPIO16" (shape input) (at 139.7 222.25 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 4fd7fe7f-b572-4f48-8f26-7145a32fb847) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 130.3926 222.1706 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "GPIO35" (shape input) (at 121.92 78.74 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 5e95eafa-fdb7-4aa3-86da-547f508ba02c) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 112.6126 78.6606 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "GPIO02" (shape input) (at 107.95 217.17 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 630b70e7-de5d-45c9-b488-8cfb027779b4) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 117.2574 217.2494 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "GPIO32" (shape input) (at 121.92 81.28 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 665721c5-7958-4b5f-83a5-c6209b45f7e7) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 112.6126 81.2006 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "GPIO39" (shape input) (at 45.72 200.66 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 6675167b-2800-4b37-9b74-deae6d778236) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 36.4126 200.5806 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "GPIO19" (shape input) (at 171.45 78.74 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 6f6bebc5-f2e4-4fb8-8412-001a6a8f09bc) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 180.7574 78.6606 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "GPIO04" (shape input) (at 171.45 66.04 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 7252ec0e-f7cb-41f0-aa7d-48d7ab371048) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 180.7574 65.9606 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "RESET" (shape input) (at 64.77 271.78 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 79f40cbd-033a-47a8-92b8-b7220a958d57) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 72.9283 271.7006 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "GPIO27" (shape input) (at 109.22 170.18 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 7ac7db07-216c-43c9-b793-66cd50620c52) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 99.9126 170.1006 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "GPIO05" (shape input) (at 45.72 171.45 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid 7b712c42-b2e2-4a4d-81be-a04b9eda5a95) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 36.4126 171.5294 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "GPIO23" (shape input) (at 107.95 201.93 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 7d6089be-71f7-444d-90fb-5aa80bdcf566) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 117.2574 202.0094 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "GPIO22" (shape input) (at 107.95 204.47 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 7f84b831-cf99-4894-a5ee-eded97362503) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 117.2574 204.3906 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "GPIO21" (shape input) (at 107.95 207.01 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 7fee70f5-ed28-4b05-a35e-0dfc56bffcd7) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 117.2574 206.9306 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "GPIO18" (shape input) (at 107.95 212.09 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 8018b982-e86d-49b0-ad54-d03864f27e5e) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 117.2574 212.1694 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) (global_label "FLP_GPIO_0" (shape bidirectional) (at 31.75 173.99 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) (uuid 80792639-0a62-4add-997c-da5b86846177) @@ -2645,66 +3499,150 @@ (effects (font (size 1.27 1.27)) (justify right) hide) ) ) - (global_label "SC" (shape output) (at 45.72 171.45 180) (fields_autoplaced) + (global_label "GPIO19" (shape input) (at 107.95 209.55 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid 85e83146-7919-4992-aeec-57db7ca71bc6) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 117.2574 209.4706 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "GPIO19" (shape input) (at 45.72 166.37 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) - (uuid 8a7c704e-76b2-4444-b4b0-c36512f12267) - (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 40.8274 171.3706 0) + (uuid 8adf1dba-7970-453b-8079-16c2a38828f3) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 36.4126 166.4494 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) - (global_label "MISO" (shape bidirectional) (at 63.5 166.37 0) (fields_autoplaced) + (global_label "TX" (shape input) (at 171.45 86.36 0) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) - (uuid 95a910cf-d750-4d04-81f8-0d9c02e9facd) - (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 70.5093 166.2906 0) + (uuid 8b070ad6-d008-4cbc-8a88-04a0e7337551) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 176.0402 86.2806 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) - (global_label "SD-Data1" (shape bidirectional) (at 229.87 181.61 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left)) - (uuid 9bb9e327-7e26-4feb-8bdd-8d5b35acec2b) - (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 241.8383 181.5306 0) - (effects (font (size 1.27 1.27)) (justify left) hide) - ) - ) - (global_label "SWCLK" (shape input) (at 45.72 200.66 180) (fields_autoplaced) + (global_label "GPIO33" (shape input) (at 121.92 83.82 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) - (uuid a1e781c0-1e9c-472f-ab5e-85c6bb566a6b) - (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 37.0779 200.5806 0) + (uuid 8b2e7309-9fbf-45f0-b2d3-ac471f092a3c) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 112.6126 83.7406 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) - (global_label "FLP_GPIO_0" (shape bidirectional) (at 77.47 173.99 0) (fields_autoplaced) + (global_label "GPIO19" (shape input) (at 214.63 179.07 0) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) - (uuid a3d4a3b8-80b2-4158-b88b-eda5110f79c7) - (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 90.8898 173.9106 0) + (uuid 8cf493ea-864f-43ab-b0ed-fcbb4aa58fe7) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 223.9374 178.9906 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) - (global_label "LPUART_RX" (shape input) (at 63.5 215.9 0) (fields_autoplaced) + (global_label "RX" (shape output) (at 171.45 88.9 0) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) - (uuid b0b16b3a-373d-42b9-912f-8eb26f85e3b3) - (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 76.315 215.8206 0) + (uuid a31bbb39-ca27-4d40-8920-d629fc23eef5) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 176.3426 88.8206 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) - (global_label "SD-Data0" (shape bidirectional) (at 243.84 184.15 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left)) - (uuid b2c04cea-0c72-4a3e-8dec-9b9bc4ea355f) - (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 255.8083 184.0706 0) - (effects (font (size 1.27 1.27)) (justify left) hide) - ) - ) - (global_label "RX" (shape input) (at 63.5 210.82 0) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify left)) - (uuid c28be5fb-6005-437a-8bec-5f7152ccc7f6) - (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 68.3926 210.7406 0) - (effects (font (size 1.27 1.27)) (justify left) hide) - ) - ) - (global_label "SD-CLK" (shape input) (at 158.75 186.69 180) (fields_autoplaced) + (global_label "TX" (shape input) (at 109.22 182.88 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) - (uuid c5c631ad-4f7e-4f20-98ec-a852fdbb8a86) - (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 148.7169 186.6106 0) + (uuid a77866aa-2183-4f73-8d13-f12b2eeb3300) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 104.6298 182.9594 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "TDI" (shape input) (at 111.76 96.52 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid a8b8eb1b-238b-4664-bc6f-79ec9fe451ce) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 106.5045 96.5994 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "GPIO34" (shape input) (at 109.22 177.8 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid ac413681-9402-4b04-b8d7-5789c59c7cfa) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 99.9126 177.7206 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "GPIO32" (shape input) (at 109.22 172.72 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid ad31a7d2-724f-40f0-a648-0b4c735178da) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 99.9126 172.6406 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "GPIO18" (shape input) (at 31.75 213.36 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid aec1d78f-1c9c-417b-b70a-29bbd32085f4) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 22.4426 213.2806 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "GPIO23" (shape input) (at 31.75 163.83 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid aff8f97a-9a97-4a08-8e13-4931232d2edc) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 22.4426 163.7506 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "GPIO17" (shape input) (at 171.45 71.12 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid b2b4b0ff-2fb5-4889-9641-8322c72f5811) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 180.7574 71.0406 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "GPIO02" (shape input) (at 121.92 121.92 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid c6b86bf0-d45d-43bf-8a3c-0a0b1189eccb) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 112.6126 121.8406 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "GPIO22" (shape input) (at 160.02 91.44 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid c7126489-248f-42dd-826c-1c54360766a2) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 169.3274 91.3606 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "FLP_GPIO_0" (shape bidirectional) (at 107.95 222.25 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid c99db345-e098-4e04-a291-e15bbfaf57ea) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 121.3698 222.3294 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "GPIO34" (shape input) (at 121.92 76.2 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid ccf927d7-f4be-467e-8672-5a55172684cc) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 112.6126 76.1206 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "GPIO05" (shape input) (at 107.95 219.71 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid d223a801-f9f8-4265-9a48-d94dc91d6fdb) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 117.2574 219.6306 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "GPIO23" (shape input) (at 146.05 181.61 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid d592a59a-0bab-4083-8644-859a04449c69) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 136.7426 181.5306 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "TDI" (shape input) (at 64.77 269.24 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid d5a7fae9-a40d-45dd-919f-61b42c7479e3) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 70.0255 269.1606 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "GPIO18" (shape input) (at 146.05 186.69 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid d82dd9fc-008d-41f4-89d9-b4bc22d223f0) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 136.7426 186.6106 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) @@ -2715,31 +3653,66 @@ (effects (font (size 1.27 1.27)) (justify right) hide) ) ) - (global_label "CLK" (shape output) (at 77.47 168.91 0) (fields_autoplaced) + (global_label "GPIO18" (shape input) (at 31.75 168.91 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid e4be7104-3a2d-40c2-836b-5abb7da2a7c2) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 22.4426 168.8306 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "GPIO05" (shape input) (at 160.02 73.66 0) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) - (uuid e614907b-3639-4e0d-8f00-66e5b9ea25e6) - (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 83.4512 168.8306 0) + (uuid e6bc8163-880c-444c-9879-0552f633f282) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 169.3274 73.5806 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) - (global_label "SWDIO" (shape bidirectional) (at 45.72 205.74 180) (fields_autoplaced) + (global_label "GPIO27" (shape input) (at 121.92 91.44 180) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify right)) - (uuid eab0bede-8d0e-4687-bf02-2eaba49b4783) - (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 37.4407 205.6606 0) + (uuid ed2541a7-7f1a-4f33-8c10-d941ca34f184) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 112.6126 91.3606 0) (effects (font (size 1.27 1.27)) (justify right) hide) ) ) - (global_label "LPUART_TX" (shape output) (at 31.75 213.36 180) (fields_autoplaced) - (effects (font (size 1.27 1.27)) (justify right)) - (uuid ef110d3d-a9c5-4296-8107-af6dc1fddae4) - (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 19.2374 213.2806 0) - (effects (font (size 1.27 1.27)) (justify right) hide) - ) - ) - (global_label "SWCLK" (shape input) (at 63.5 200.66 0) (fields_autoplaced) + (global_label "RESET" (shape input) (at 111.76 63.5 90) (fields_autoplaced) (effects (font (size 1.27 1.27)) (justify left)) - (uuid f98e76ff-b47f-4c90-811a-c2f29e8289ea) - (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 72.1421 200.5806 0) + (uuid ee5f75a5-3b98-42f6-968b-21ff2cebea9e) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 111.6806 55.3417 90) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "GPIO17" (shape input) (at 107.95 214.63 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid f031697a-df4f-4bbb-8256-70d8f15cacce) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 117.2574 214.5506 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + ) + (global_label "GPIO25" (shape input) (at 121.92 86.36 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid f0992eb5-3d26-40a0-8e97-d130715e0748) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 112.6126 86.2806 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "TDO" (shape input) (at 111.76 119.38 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid f6e8c568-d626-46d6-92f0-7bb037d3ebf4) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 105.7788 119.4594 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "GPIO017" (shape input) (at 45.72 215.9 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid fa9cc23c-519b-4898-b356-bedaf9f4cadc) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 35.2031 215.8206 0) + (effects (font (size 1.27 1.27)) (justify right) hide) + ) + ) + (global_label "GPIO21" (shape input) (at 160.02 83.82 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid fb399e18-2a69-4d71-ba51-19fdfa190d5f) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 169.3274 83.7406 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) ) @@ -2750,125 +3723,152 @@ (effects (font (size 1.27 1.27)) (justify right) hide) ) ) - - (symbol (lib_id "Switch:SW_Push") (at 231.14 63.5 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 032121d6-13fe-407e-b1d5-09ad6e574252) - (property "Reference" "SW?" (id 0) (at 231.14 55.88 0)) - (property "Value" "SW_Push" (id 1) (at 231.14 58.42 0)) - (property "Footprint" "" (id 2) (at 231.14 58.42 0) - (effects (font (size 1.27 1.27)) hide) + (global_label "GPIO25" (shape input) (at 109.22 165.1 180) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify right)) + (uuid fd78fe00-7e2e-4f7d-9415-7b8fa2737ec6) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 99.9126 165.0206 0) + (effects (font (size 1.27 1.27)) (justify right) hide) ) - (property "Datasheet" "~" (id 3) (at 231.14 58.42 0) - (effects (font (size 1.27 1.27)) hide) + ) + (global_label "TDO" (shape input) (at 64.77 266.7 0) (fields_autoplaced) + (effects (font (size 1.27 1.27)) (justify left)) + (uuid ff3f72c9-8832-43b1-a8e2-c01272859d1e) + (property "Intersheet References" "${INTERSHEET_REFS}" (id 0) (at 70.7512 266.6206 0) + (effects (font (size 1.27 1.27)) (justify left) hide) ) - (pin "1" (uuid ecdb76a3-7702-4b22-a4f9-5167ea8b7ad3)) - (pin "2" (uuid c5c4bd63-3382-47e2-a7a1-affc0826137e)) ) - (symbol (lib_id "power:+3V3") (at 220.98 50.8 0) (unit 1) + (symbol (lib_id "power:GND") (at 107.95 224.79 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 020b8a05-3ecd-4077-b267-1fd0281f2402) + (property "Reference" "#PWR010" (id 0) (at 114.3 224.79 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 115.57 224.79 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 107.95 224.79 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 107.95 224.79 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 148c2357-9021-4d72-ac38-98633610082a)) + ) + + (symbol (lib_id "power:+3V3") (at 193.04 45.72 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 04d791c1-2757-41fa-a211-e57790f39790) - (property "Reference" "#PWR?" (id 0) (at 220.98 54.61 0) + (property "Reference" "#PWR022" (id 0) (at 193.04 49.53 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Value" "+3V3" (id 1) (at 220.98 45.72 0)) - (property "Footprint" "" (id 2) (at 220.98 50.8 0) + (property "Value" "+3V3" (id 1) (at 193.04 40.64 0)) + (property "Footprint" "" (id 2) (at 193.04 45.72 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Datasheet" "" (id 3) (at 220.98 50.8 0) + (property "Datasheet" "" (id 3) (at 193.04 45.72 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid be66edf6-af5d-4b84-81d2-20df940e2b30)) ) - (symbol (lib_id "power:GND") (at 341.63 165.1 0) (unit 1) + (symbol (lib_id "power:GND") (at 307.34 156.21 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 086d0854-d42c-4bbe-aa95-f319500364dc) - (property "Reference" "#PWR?" (id 0) (at 341.63 171.45 0) + (property "Reference" "#PWR030" (id 0) (at 307.34 162.56 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Value" "GND" (id 1) (at 341.63 170.18 0)) - (property "Footprint" "" (id 2) (at 341.63 165.1 0) + (property "Value" "GND" (id 1) (at 307.34 161.29 0)) + (property "Footprint" "" (id 2) (at 307.34 156.21 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Datasheet" "" (id 3) (at 341.63 165.1 0) + (property "Datasheet" "" (id 3) (at 307.34 156.21 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 9b8374ed-6dd4-469f-affe-fdc4d505f630)) ) - (symbol (lib_id "power:GND") (at 237.49 76.2 0) (unit 1) + (symbol (lib_id "power:GND") (at 247.65 66.04 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 08c4a7e2-c56a-46b4-94c9-47a72d0436b0) - (property "Reference" "#PWR?" (id 0) (at 237.49 82.55 0) + (property "Reference" "#PWR026" (id 0) (at 247.65 72.39 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Value" "GND" (id 1) (at 237.49 81.28 0)) - (property "Footprint" "" (id 2) (at 237.49 76.2 0) + (property "Value" "GND" (id 1) (at 247.65 71.12 0)) + (property "Footprint" "" (id 2) (at 247.65 66.04 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Datasheet" "" (id 3) (at 237.49 76.2 0) + (property "Datasheet" "" (id 3) (at 247.65 66.04 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 927e6c2b-5c53-47b2-83ce-575cf03cdb0b)) ) - (symbol (lib_name "+5V_1") (lib_id "power:+5V") (at 441.96 91.44 0) (unit 1) + (symbol (lib_name "+5V_1") (lib_id "power:+5V") (at 407.67 82.55 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 0b157607-f9b0-406a-8552-f174c0cbd973) - (property "Reference" "#PWR?" (id 0) (at 441.96 95.25 0) + (property "Reference" "#PWR039" (id 0) (at 407.67 86.36 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Value" "+ext_5V" (id 1) (at 441.96 86.36 0)) - (property "Footprint" "" (id 2) (at 441.96 91.44 0) + (property "Value" "+ext_5V" (id 1) (at 407.67 77.47 0)) + (property "Footprint" "" (id 2) (at 407.67 82.55 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Datasheet" "" (id 3) (at 441.96 91.44 0) + (property "Datasheet" "" (id 3) (at 407.67 82.55 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 947c68a9-0fd2-49bb-858f-725969279a94)) ) - (symbol (lib_id "Device:R") (at 220.98 55.88 0) (unit 1) + (symbol (lib_id "SamacSys_Parts:RC0402FR-071KL") (at 147.32 179.07 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 0b82b99b-d4a9-4462-994a-f649f5678e75) - (property "Reference" "R?" (id 0) (at 223.52 54.6099 0) - (effects (font (size 1.27 1.27)) (justify left)) + (uuid 0caa6bbe-d103-4a07-900a-14dfcb72cc1b) + (property "Reference" "R3" (id 0) (at 156.21 172.72 0)) + (property "Value" "1K" (id 1) (at 156.21 175.26 0)) + (property "Footprint" "RESC1005X40N" (id 2) (at 161.29 177.8 0) + (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Value" "10k" (id 1) (at 223.52 57.1499 0) - (effects (font (size 1.27 1.27)) (justify left)) + (property "Datasheet" "https://www.yageo.com/upload/media/product/productsearch/datasheet/rchip/PYu-RC_Group_51_RoHS_L_11.pdf" (id 3) (at 161.29 180.34 0) + (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Footprint" "" (id 2) (at 219.202 55.88 90) - (effects (font (size 1.27 1.27)) hide) + (property "Description" "GENERAL PURPOSE CHIP RESISTORS" (id 4) (at 161.29 182.88 0) + (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Datasheet" "~" (id 3) (at 220.98 55.88 0) - (effects (font (size 1.27 1.27)) hide) + (property "Height" "0.4" (id 5) (at 161.29 185.42 0) + (effects (font (size 1.27 1.27)) (justify left) hide) ) - (pin "1" (uuid 6ed72853-1869-4906-9909-0f3fe9813129)) - (pin "2" (uuid cb41303c-43e5-44dd-b4ca-8fea214f5625)) - ) - - (symbol (lib_id "power:GND") (at 146.05 129.54 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 0cf6864d-eb0b-44a4-8430-c2d70446e5de) - (property "Reference" "#PWR?" (id 0) (at 146.05 135.89 0) - (effects (font (size 1.27 1.27)) hide) + (property "Manufacturer_Name" "KEMET" (id 6) (at 161.29 187.96 0) + (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Value" "GND" (id 1) (at 146.05 134.62 0)) - (property "Footprint" "" (id 2) (at 146.05 129.54 0) - (effects (font (size 1.27 1.27)) hide) + (property "Manufacturer_Part_Number" "RC0402FR-071KL" (id 7) (at 161.29 190.5 0) + (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Datasheet" "" (id 3) (at 146.05 129.54 0) - (effects (font (size 1.27 1.27)) hide) + (property "Mouser Part Number" "603-RC0402FR-071KL" (id 8) (at 161.29 193.04 0) + (effects (font (size 1.27 1.27)) (justify left) hide) ) - (pin "1" (uuid c85752ba-c3f1-4d0a-8805-feb142b37f4e)) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/YAGEO/RC0402FR-071KL?qs=V1yeUXFNrknDEmWLmm5v6g%3D%3D" (id 9) (at 161.29 195.58 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Part Number" "RC0402FR-071KL" (id 10) (at 161.29 198.12 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Price/Stock" "https://www.arrow.com/en/products/rc0402fr-071kl/yageo?region=nac" (id 11) (at 161.29 200.66 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Part Number" "" (id 12) (at 161.29 203.2 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Price/Stock" "" (id 13) (at 161.29 205.74 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid 7044b652-60ea-4929-a7a2-78f80647d257)) + (pin "2" (uuid 89ccea43-7f24-48c2-bf8b-f12919d8a13a)) ) (symbol (lib_id "power:+3V3") (at 38.1 198.12 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 0fbe6fe3-3fdb-4d6e-8de5-be6f136ef74a) - (property "Reference" "#PWR?" (id 0) (at 38.1 201.93 0) + (property "Reference" "#PWR03" (id 0) (at 38.1 201.93 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "+3V3" (id 1) (at 38.1 193.04 0)) @@ -2881,49 +3881,49 @@ (pin "1" (uuid bf73d284-9e8f-4c3b-b1b7-edc097a2c112)) ) - (symbol (lib_id "SamacSys_Parts:DMP1045U-7") (at 321.31 111.76 90) (unit 1) + (symbol (lib_id "SamacSys_Parts:DMP1045U-7") (at 287.02 102.87 90) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 12e64af1-b300-49f0-ac3b-a02c0ed86eae) - (property "Reference" "IC?" (id 0) (at 327.66 100.3299 90) + (property "Reference" "IC2" (id 0) (at 293.37 91.4399 90) (effects (font (size 1.27 1.27)) (justify right)) ) - (property "Value" "DMP1045U-7" (id 1) (at 327.66 102.8699 90) + (property "Value" "DMP1045U-7" (id 1) (at 293.37 93.9799 90) (effects (font (size 1.27 1.27)) (justify right)) ) - (property "Footprint" "SOT96P240X120-3N" (id 2) (at 318.77 95.25 0) + (property "Footprint" "SOT96P240X120-3N" (id 2) (at 284.48 86.36 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Datasheet" "https://datasheet.datasheetarchive.com/originals/distributors/Datasheets-DGA24/1599196.pdf" (id 3) (at 321.31 95.25 0) + (property "Datasheet" "https://datasheet.datasheetarchive.com/originals/distributors/Datasheets-DGA24/1599196.pdf" (id 3) (at 287.02 86.36 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Description" "P-Channel Enhancement MOSFET SOT-23 Diodes Inc DMP1045U-7 P-channel MOSFET Transistor, 5.2 A, -12 V, 3-Pin SOT23" (id 4) (at 323.85 95.25 0) + (property "Description" "P-Channel Enhancement MOSFET SOT-23 Diodes Inc DMP1045U-7 P-channel MOSFET Transistor, 5.2 A, -12 V, 3-Pin SOT23" (id 4) (at 289.56 86.36 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Height" "1.2" (id 5) (at 326.39 95.25 0) + (property "Height" "1.2" (id 5) (at 292.1 86.36 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Manufacturer_Name" "Diodes Inc." (id 6) (at 328.93 95.25 0) + (property "Manufacturer_Name" "Diodes Inc." (id 6) (at 294.64 86.36 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Manufacturer_Part_Number" "DMP1045U-7" (id 7) (at 331.47 95.25 0) + (property "Manufacturer_Part_Number" "DMP1045U-7" (id 7) (at 297.18 86.36 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Part Number" "621-DMP1045U-7" (id 8) (at 334.01 95.25 0) + (property "Mouser Part Number" "621-DMP1045U-7" (id 8) (at 299.72 86.36 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Diodes-Incorporated/DMP1045U-7?qs=T%2FOtf55vL7eEKnIWhgMvTQ%3D%3D" (id 9) (at 336.55 95.25 0) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Diodes-Incorporated/DMP1045U-7?qs=T%2FOtf55vL7eEKnIWhgMvTQ%3D%3D" (id 9) (at 302.26 86.36 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Arrow Part Number" "DMP1045U-7" (id 10) (at 339.09 95.25 0) + (property "Arrow Part Number" "DMP1045U-7" (id 10) (at 304.8 86.36 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Arrow Price/Stock" "https://www.arrow.com/en/products/dmp1045u-7/diodes-incorporated?region=nac" (id 11) (at 341.63 95.25 0) + (property "Arrow Price/Stock" "https://www.arrow.com/en/products/dmp1045u-7/diodes-incorporated?region=nac" (id 11) (at 307.34 86.36 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Testing Part Number" "" (id 12) (at 344.17 95.25 0) + (property "Mouser Testing Part Number" "" (id 12) (at 309.88 86.36 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Testing Price/Stock" "" (id 13) (at 346.71 95.25 0) + (property "Mouser Testing Price/Stock" "" (id 13) (at 312.42 86.36 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) (pin "1" (uuid 96ad90da-0b31-4a84-b95a-e81d4584191f)) @@ -2931,259 +3931,317 @@ (pin "3" (uuid 3df71459-1bf0-44ae-b68d-9c22dedf121e)) ) - (symbol (lib_id "power:GND") (at 80.01 76.2 0) (unit 1) + (symbol (lib_id "SamacSys_Parts:503398-1892") (at 168.91 176.53 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 17f517ac-51e0-4147-b650-9c2b2c8fceaa) + (property "Reference" "J6" (id 0) (at 190.5 168.91 0)) + (property "Value" "503398-1892" (id 1) (at 190.5 171.45 0)) + (property "Footprint" "503398-1892" (id 2) (at 208.28 173.99 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "http://www.molex.com/webdocs/datasheets/pdf/en-us//5033981892_MEMORY_CARD_SOCKET.pdf" (id 3) (at 208.28 176.53 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Description" "MicroSD SMT Push-Push 1.28mm height MicroSD SMT Push-Push 1.28mm height" (id 4) (at 208.28 179.07 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Height" "" (id 5) (at 208.28 181.61 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Name" "Molex" (id 6) (at 208.28 184.15 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Part_Number" "503398-1892" (id 7) (at 208.28 186.69 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Part Number" "538-503398-1892" (id 8) (at 208.28 189.23 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Molex/503398-1892?qs=b0v8CoHHvSMxV%252BW12iKaSg%3D%3D" (id 9) (at 208.28 191.77 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Part Number" "" (id 10) (at 208.28 194.31 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Price/Stock" "" (id 11) (at 208.28 196.85 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Part Number" "" (id 12) (at 208.28 199.39 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Price/Stock" "" (id 13) (at 208.28 201.93 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid d83a459b-a5a2-46df-b0fd-f991e90cc138)) + (pin "10" (uuid 8c41a649-063d-4309-8e60-1fed19caf6ca)) + (pin "2" (uuid f2eda786-1dce-49a6-9633-c9b96756e380)) + (pin "3" (uuid c6d488fb-a0ab-4299-a003-69308b7c330d)) + (pin "4" (uuid c16a3424-eccd-4f75-b687-8b3fe95fd552)) + (pin "5" (uuid 848a7433-f58e-46e7-b2ae-76e1f5e699ec)) + (pin "6" (uuid 7606d47a-3c5c-4503-8c30-428dd525a80e)) + (pin "7" (uuid 182ab6a8-6bb1-49bb-aaf5-4d9a91da7e3e)) + (pin "8" (uuid 071ab8c6-2414-4c81-8096-80987067d30d)) + (pin "9" (uuid cebc87eb-a266-4e90-8f91-4c92ae0f0e89)) + ) + + (symbol (lib_id "power:GND") (at 104.14 76.2 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 2670da6a-90f4-4a17-be50-ed9d4a439aa2) - (property "Reference" "#PWR?" (id 0) (at 80.01 82.55 0) + (property "Reference" "#PWR09" (id 0) (at 104.14 82.55 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Value" "GND" (id 1) (at 80.01 81.28 0)) - (property "Footprint" "" (id 2) (at 80.01 76.2 0) + (property "Value" "GND" (id 1) (at 104.14 81.28 0)) + (property "Footprint" "" (id 2) (at 104.14 76.2 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Datasheet" "" (id 3) (at 80.01 76.2 0) + (property "Datasheet" "" (id 3) (at 104.14 76.2 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid df229359-f292-44cf-8a2d-78ba196eeac7)) ) - (symbol (lib_id "Connector_Generic:Conn_02x10_Row_Letter_First") (at 53.34 208.28 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 2e933127-0920-4846-8e82-9006b2309ad7) - (property "Reference" "J?" (id 0) (at 54.61 191.77 0)) - (property "Value" "Conn_02x10_Row_Letter_First" (id 1) (at 54.61 194.31 0)) - (property "Footprint" "" (id 2) (at 53.34 208.28 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 53.34 208.28 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "a1" (uuid a40fc574-5183-4d27-8d17-9bd2b2f4bcf6)) - (pin "a10" (uuid 41786645-c873-42a5-aa24-f269cb85027a)) - (pin "a2" (uuid 9045726d-c17b-43fe-acd6-99e2e888765b)) - (pin "a3" (uuid 7e481fec-69ad-4fa2-8299-a1c109f0fd08)) - (pin "a4" (uuid ceb26af3-00f2-488b-b682-ff25e12c3214)) - (pin "a5" (uuid b08793ec-68b5-40f0-9e37-ad4236d30089)) - (pin "a6" (uuid 54be060b-6caf-45f7-bdde-a3e4b87badca)) - (pin "a7" (uuid 995d0a68-faed-4f3c-b707-70902f6e8db3)) - (pin "a8" (uuid d7cab0fb-eb98-483f-9bec-2617ded255d1)) - (pin "a9" (uuid 44af5a0a-47e2-4107-ad43-17d4e543da0c)) - (pin "b1" (uuid 4fc00ee1-53db-41a4-b73a-e435bf24855b)) - (pin "b10" (uuid 81970bf7-f922-4811-8299-f7d75f85b938)) - (pin "b2" (uuid 3682e7c2-9b7d-4a7b-bdba-cc9bd92df962)) - (pin "b3" (uuid 45736200-221a-4b54-a756-7bf007e8ebd1)) - (pin "b4" (uuid f1cb4c93-d09d-4f0f-b8d9-1f32129c350b)) - (pin "b5" (uuid edc99fa6-0ad1-44a7-bad2-96440c26a47e)) - (pin "b6" (uuid 468cffcd-cdd1-48f8-9080-2cf50910b7ae)) - (pin "b7" (uuid ad2a67a7-b2ed-40c6-b42b-3eb17b2489ac)) - (pin "b8" (uuid ef83b327-56a7-445f-9b7c-29201c6be75f)) - (pin "b9" (uuid a38e7cfe-2d39-45d1-97b8-9a7cb5082561)) - ) - - (symbol (lib_id "Device:C") (at 127 45.72 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 315b631a-1db2-4690-a54b-2bf01cc54b01) - (property "Reference" "C?" (id 0) (at 130.81 44.4499 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "22u" (id 1) (at 130.81 46.9899 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "" (id 2) (at 127.9652 49.53 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 127 45.72 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 8bc239b9-35bf-4234-a5b4-15c8c23c5e1d)) - (pin "2" (uuid fa8e7e22-c7c6-496e-9c12-d6b2bc85af74)) - ) - - (symbol (lib_id "power:GND") (at 71.12 179.07 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 3415c2d5-de08-46cd-bd54-8798a6f2702b) - (property "Reference" "#PWR?" (id 0) (at 71.12 185.42 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (id 1) (at 71.12 184.15 0)) - (property "Footprint" "" (id 2) (at 71.12 179.07 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (id 3) (at 71.12 179.07 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 8d760949-2ae9-40bf-a0b4-6e4a933d0be9)) - ) - - (symbol (lib_id "power:GND") (at 477.52 165.1 0) (unit 1) + (symbol (lib_id "power:GND") (at 443.23 156.21 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 3b741d6a-1a24-4290-aca0-ff0e7517db01) - (property "Reference" "#PWR?" (id 0) (at 477.52 171.45 0) + (property "Reference" "#PWR041" (id 0) (at 443.23 162.56 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Value" "GND" (id 1) (at 477.52 170.18 0)) - (property "Footprint" "" (id 2) (at 477.52 165.1 0) + (property "Value" "GND" (id 1) (at 443.23 161.29 0)) + (property "Footprint" "" (id 2) (at 443.23 156.21 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Datasheet" "" (id 3) (at 477.52 165.1 0) + (property "Datasheet" "" (id 3) (at 443.23 156.21 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 8623e601-1edb-4055-8457-ef2c94d2f04b)) ) - (symbol (lib_id "power:GND") (at 72.39 220.98 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 3bc30f76-1581-4ff4-b44b-6f2f2341ae85) - (property "Reference" "#PWR?" (id 0) (at 72.39 227.33 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (id 1) (at 72.39 226.06 0)) - (property "Footprint" "" (id 2) (at 72.39 220.98 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (id 3) (at 72.39 220.98 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 4fe7429c-3490-4926-863f-59f8da344603)) - ) - - (symbol (lib_id "SamacSys_Parts:RC0402FR-07100KL") (at 408.94 161.29 90) (unit 1) + (symbol (lib_id "SamacSys_Parts:RC0402FR-07100KL") (at 374.65 152.4 90) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 3d7cf57e-46ad-45b0-8f37-4bcf93c58b86) - (property "Reference" "R?" (id 0) (at 411.48 151.1299 90) + (property "Reference" "R10" (id 0) (at 377.19 142.2399 90) (effects (font (size 1.27 1.27)) (justify right)) ) - (property "Value" "100K" (id 1) (at 411.48 153.6699 90) + (property "Value" "100K" (id 1) (at 377.19 144.7799 90) (effects (font (size 1.27 1.27)) (justify right)) ) - (property "Footprint" "RESC1005X40N" (id 2) (at 407.67 147.32 0) + (property "Footprint" "RESC1005X40N" (id 2) (at 373.38 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Datasheet" "https://datasheet.datasheetarchive.com/originals/distributors/Datasheets_SAMA/902f9e387b938f871d31120f5fc1d65e.pdf" (id 3) (at 410.21 147.32 0) + (property "Datasheet" "https://datasheet.datasheetarchive.com/originals/distributors/Datasheets_SAMA/902f9e387b938f871d31120f5fc1d65e.pdf" (id 3) (at 375.92 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Description" "GENERAL PURPOSE CHIP RESISTORS" (id 4) (at 412.75 147.32 0) + (property "Description" "GENERAL PURPOSE CHIP RESISTORS" (id 4) (at 378.46 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Height" "0.4" (id 5) (at 415.29 147.32 0) + (property "Height" "0.4" (id 5) (at 381 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Manufacturer_Name" "KEMET" (id 6) (at 417.83 147.32 0) + (property "Manufacturer_Name" "KEMET" (id 6) (at 383.54 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Manufacturer_Part_Number" "RC0402FR-07100KL" (id 7) (at 420.37 147.32 0) + (property "Manufacturer_Part_Number" "RC0402FR-07100KL" (id 7) (at 386.08 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Part Number" "603-RC0402FR-07100KL" (id 8) (at 422.91 147.32 0) + (property "Mouser Part Number" "603-RC0402FR-07100KL" (id 8) (at 388.62 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/YAGEO/RC0402FR-07100KL?qs=mnq%2FyloZIXzTlUn7JAHSWg%3D%3D" (id 9) (at 425.45 147.32 0) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/YAGEO/RC0402FR-07100KL?qs=mnq%2FyloZIXzTlUn7JAHSWg%3D%3D" (id 9) (at 391.16 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Arrow Part Number" "RC0402FR-07100KL" (id 10) (at 427.99 147.32 0) + (property "Arrow Part Number" "RC0402FR-07100KL" (id 10) (at 393.7 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Arrow Price/Stock" "https://www.arrow.com/en/products/rc0402fr-07100kl/yageo" (id 11) (at 430.53 147.32 0) + (property "Arrow Price/Stock" "https://www.arrow.com/en/products/rc0402fr-07100kl/yageo" (id 11) (at 396.24 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Testing Part Number" "" (id 12) (at 433.07 147.32 0) + (property "Mouser Testing Part Number" "" (id 12) (at 398.78 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Testing Price/Stock" "" (id 13) (at 435.61 147.32 0) + (property "Mouser Testing Price/Stock" "" (id 13) (at 401.32 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) (pin "1" (uuid 56c6b864-5a20-438f-a28c-b5eaad50859c)) (pin "2" (uuid c53fe627-dae8-4a7e-b23d-909ec1655349)) ) - (symbol (lib_id "SamacSys_Parts:RC0402FR-07100KL") (at 341.63 161.29 90) (unit 1) + (symbol (lib_id "SamacSys_Parts:CL05A105KA5NQNC") (at 104.14 76.2 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 40adbb6d-87aa-405c-ba38-fc70c2bcc5dc) + (property "Reference" "C1" (id 0) (at 107.95 68.5799 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "1u" (id 1) (at 107.95 71.1199 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "CAPC1005X60N" (id 2) (at 102.87 67.31 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "https://www.arrow.com/en/products/cl05a105ka5nqnc/samsung-electro-mechanics" (id 3) (at 105.41 67.31 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Description" "Cap Ceramic 1uF 25V X5R 10% Pad SMD 0402 85C T/R" (id 4) (at 107.95 67.31 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Height" "0.6" (id 5) (at 110.49 67.31 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Name" "Samsung Electro-Mechanics" (id 6) (at 113.03 67.31 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Part_Number" "CL05A105KA5NQNC" (id 7) (at 115.57 67.31 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Part Number" "187-CL05A105KA5NQNC" (id 8) (at 118.11 67.31 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Samsung-Electro-Mechanics/CL05A105KA5NQNC?qs=X6jEic%2FHinDIeFgZnm60Lw%3D%3D" (id 9) (at 120.65 67.31 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Part Number" "CL05A105KA5NQNC" (id 10) (at 123.19 67.31 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Price/Stock" "https://www.arrow.com/en/products/cl05a105ka5nqnc/samsung-electro-mechanics?region=europe" (id 11) (at 125.73 67.31 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Part Number" "" (id 12) (at 128.27 67.31 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Price/Stock" "" (id 13) (at 130.81 67.31 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid 110394bb-f8ab-4fb6-8859-eecb6a71f876)) + (pin "2" (uuid 391d8ac3-73d3-49bf-b00a-e59bd568a039)) + ) + + (symbol (lib_id "SamacSys_Parts:RC0402FR-07100KL") (at 307.34 152.4 90) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 434b8a81-ef27-4884-a038-c7022455a731) - (property "Reference" "R?" (id 0) (at 344.17 151.1299 90) + (property "Reference" "R8" (id 0) (at 309.88 142.2399 90) (effects (font (size 1.27 1.27)) (justify right)) ) - (property "Value" "100K" (id 1) (at 344.17 153.6699 90) + (property "Value" "100K" (id 1) (at 309.88 144.7799 90) (effects (font (size 1.27 1.27)) (justify right)) ) - (property "Footprint" "RESC1005X40N" (id 2) (at 340.36 147.32 0) + (property "Footprint" "RESC1005X40N" (id 2) (at 306.07 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Datasheet" "https://datasheet.datasheetarchive.com/originals/distributors/Datasheets_SAMA/902f9e387b938f871d31120f5fc1d65e.pdf" (id 3) (at 342.9 147.32 0) + (property "Datasheet" "https://datasheet.datasheetarchive.com/originals/distributors/Datasheets_SAMA/902f9e387b938f871d31120f5fc1d65e.pdf" (id 3) (at 308.61 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Description" "GENERAL PURPOSE CHIP RESISTORS" (id 4) (at 345.44 147.32 0) + (property "Description" "GENERAL PURPOSE CHIP RESISTORS" (id 4) (at 311.15 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Height" "0.4" (id 5) (at 347.98 147.32 0) + (property "Height" "0.4" (id 5) (at 313.69 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Manufacturer_Name" "KEMET" (id 6) (at 350.52 147.32 0) + (property "Manufacturer_Name" "KEMET" (id 6) (at 316.23 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Manufacturer_Part_Number" "RC0402FR-07100KL" (id 7) (at 353.06 147.32 0) + (property "Manufacturer_Part_Number" "RC0402FR-07100KL" (id 7) (at 318.77 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Part Number" "603-RC0402FR-07100KL" (id 8) (at 355.6 147.32 0) + (property "Mouser Part Number" "603-RC0402FR-07100KL" (id 8) (at 321.31 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/YAGEO/RC0402FR-07100KL?qs=mnq%2FyloZIXzTlUn7JAHSWg%3D%3D" (id 9) (at 358.14 147.32 0) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/YAGEO/RC0402FR-07100KL?qs=mnq%2FyloZIXzTlUn7JAHSWg%3D%3D" (id 9) (at 323.85 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Arrow Part Number" "RC0402FR-07100KL" (id 10) (at 360.68 147.32 0) + (property "Arrow Part Number" "RC0402FR-07100KL" (id 10) (at 326.39 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Arrow Price/Stock" "https://www.arrow.com/en/products/rc0402fr-07100kl/yageo" (id 11) (at 363.22 147.32 0) + (property "Arrow Price/Stock" "https://www.arrow.com/en/products/rc0402fr-07100kl/yageo" (id 11) (at 328.93 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Testing Part Number" "" (id 12) (at 365.76 147.32 0) + (property "Mouser Testing Part Number" "" (id 12) (at 331.47 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Testing Price/Stock" "" (id 13) (at 368.3 147.32 0) + (property "Mouser Testing Price/Stock" "" (id 13) (at 334.01 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) (pin "1" (uuid 34d7a0bc-217e-459e-a630-21efb2405ad9)) (pin "2" (uuid ee02d858-6c4a-4ac9-b2fe-a44a0f26e742)) ) - (symbol (lib_id "SamacSys_Parts:MMDT2907A-7-F") (at 378.46 130.81 0) (unit 1) + (symbol (lib_id "power:+3V3") (at 40.64 260.35 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4407316f-bdb4-4d5e-9579-137b3d77e80e) + (property "Reference" "#PWR05" (id 0) (at 40.64 264.16 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3V3" (id 1) (at 40.64 255.27 0)) + (property "Footprint" "" (id 2) (at 40.64 260.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 40.64 260.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid c6476221-c3c9-4898-bead-213daeff7c9a)) + ) + + (symbol (lib_id "Connector_Generic:Conn_01x11") (at 102.87 214.63 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 46b2570d-01f5-4435-97bc-ab401c2278d8) + (property "Reference" "J4" (id 0) (at 102.87 195.58 0)) + (property "Value" "Conn_01x11" (id 1) (at 102.87 198.12 0)) + (property "Footprint" "" (id 2) (at 102.87 214.63 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 102.87 214.63 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 5d028b9e-bc69-498c-8e98-4392fa9e74db)) + (pin "10" (uuid bd8a7bb0-241f-4da2-8975-c014a8733e73)) + (pin "11" (uuid 8216bd5d-2ffd-46d2-a4cf-b6b63554cd32)) + (pin "2" (uuid 5505192b-3335-448c-af19-aaef6581ecef)) + (pin "3" (uuid 8bf20316-79cd-411f-b5e8-03528d8de50f)) + (pin "4" (uuid ae8548c7-d94e-445f-a743-bcc0b32e9d3a)) + (pin "5" (uuid 375cdf32-ba24-4818-b683-80d23ff24d33)) + (pin "6" (uuid 7bde6063-89ed-4eb3-ab80-2c394113518f)) + (pin "7" (uuid ab31db56-f0a4-48eb-8aa1-69949b4990a9)) + (pin "8" (uuid 81c01c62-67e5-495c-8962-e51534d593f5)) + (pin "9" (uuid 2c14cf5b-1f18-4c02-be2e-e7bb9d201804)) + ) + + (symbol (lib_id "SamacSys_Parts:MMDT2907A-7-F") (at 344.17 121.92 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 475e7c08-51ef-497c-a412-7276938bb8ea) - (property "Reference" "U?" (id 0) (at 389.89 123.19 0)) - (property "Value" "MMDT2907A-7-F" (id 1) (at 389.89 125.73 0)) - (property "Footprint" "SOT65P210X110-6N" (id 2) (at 397.51 128.27 0) + (property "Reference" "U2" (id 0) (at 355.6 114.3 0)) + (property "Value" "MMDT2907A-7-F" (id 1) (at 355.6 116.84 0)) + (property "Footprint" "SOT65P210X110-6N" (id 2) (at 363.22 119.38 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Datasheet" "https://www.digikey.com/product-detail/en/diodes-incorporated/MMDT2907A-7-F/MMDT2907A-FDICT-ND/755507" (id 3) (at 397.51 130.81 0) + (property "Datasheet" "https://www.digikey.com/product-detail/en/diodes-incorporated/MMDT2907A-7-F/MMDT2907A-FDICT-ND/755507" (id 3) (at 363.22 121.92 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Description" "Diodes Inc MMDT2907A-7-F Dual PNP Bipolar Transistor, -600 mA, -60 V, 6-Pin SOT-363" (id 4) (at 397.51 133.35 0) + (property "Description" "Diodes Inc MMDT2907A-7-F Dual PNP Bipolar Transistor, -600 mA, -60 V, 6-Pin SOT-363" (id 4) (at 363.22 124.46 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Height" "1.1" (id 5) (at 397.51 135.89 0) + (property "Height" "1.1" (id 5) (at 363.22 127 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Manufacturer_Name" "Diodes Inc." (id 6) (at 397.51 138.43 0) + (property "Manufacturer_Name" "Diodes Inc." (id 6) (at 363.22 129.54 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Manufacturer_Part_Number" "MMDT2907A-7-F" (id 7) (at 397.51 140.97 0) + (property "Manufacturer_Part_Number" "MMDT2907A-7-F" (id 7) (at 363.22 132.08 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Part Number" "621-MMDT2907A-F" (id 8) (at 397.51 143.51 0) + (property "Mouser Part Number" "621-MMDT2907A-F" (id 8) (at 363.22 134.62 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Diodes-Incorporated/MMDT2907A-7-F?qs=r2lzopzdS3aWhNHiAefFpg%3D%3D" (id 9) (at 397.51 146.05 0) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Diodes-Incorporated/MMDT2907A-7-F?qs=r2lzopzdS3aWhNHiAefFpg%3D%3D" (id 9) (at 363.22 137.16 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Arrow Part Number" "MMDT2907A-7-F" (id 10) (at 397.51 148.59 0) + (property "Arrow Part Number" "MMDT2907A-7-F" (id 10) (at 363.22 139.7 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Arrow Price/Stock" "https://www.arrow.com/en/products/mmdt2907a-7-f/diodes-incorporated" (id 11) (at 397.51 151.13 0) + (property "Arrow Price/Stock" "https://www.arrow.com/en/products/mmdt2907a-7-f/diodes-incorporated" (id 11) (at 363.22 142.24 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Testing Part Number" "" (id 12) (at 397.51 153.67 0) + (property "Mouser Testing Part Number" "" (id 12) (at 363.22 144.78 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Testing Price/Stock" "" (id 13) (at 397.51 156.21 0) + (property "Mouser Testing Price/Stock" "" (id 13) (at 363.22 147.32 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) (pin "1" (uuid 8f4bf38e-12ba-4fe8-b2b9-44cc2b6b11cb)) @@ -3197,7 +4255,7 @@ (symbol (lib_id "power:+3V3") (at 127 39.37 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 4b5722cf-0230-42b7-b394-374221531e3b) - (property "Reference" "#PWR?" (id 0) (at 127 43.18 0) + (property "Reference" "#PWR016" (id 0) (at 127 43.18 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "+3V3" (id 1) (at 127 33.655 0)) @@ -3210,177 +4268,193 @@ (pin "1" (uuid 23079790-2bf9-4f5c-b9fd-9d5c661ccaf7)) ) - (symbol (lib_id "SamacSys_Parts:RC0402FR-07100KL") (at 477.52 161.29 90) (unit 1) + (symbol (lib_id "SamacSys_Parts:RC0402FR-07100KL") (at 443.23 152.4 90) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 51956227-9277-4ca3-a264-ee96fef2edbb) - (property "Reference" "R?" (id 0) (at 480.06 151.1299 90) + (property "Reference" "R12" (id 0) (at 445.77 142.2399 90) (effects (font (size 1.27 1.27)) (justify right)) ) - (property "Value" "100K" (id 1) (at 480.06 153.6699 90) + (property "Value" "100K" (id 1) (at 445.77 144.7799 90) (effects (font (size 1.27 1.27)) (justify right)) ) - (property "Footprint" "RESC1005X40N" (id 2) (at 476.25 147.32 0) + (property "Footprint" "RESC1005X40N" (id 2) (at 441.96 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Datasheet" "https://datasheet.datasheetarchive.com/originals/distributors/Datasheets_SAMA/902f9e387b938f871d31120f5fc1d65e.pdf" (id 3) (at 478.79 147.32 0) + (property "Datasheet" "https://datasheet.datasheetarchive.com/originals/distributors/Datasheets_SAMA/902f9e387b938f871d31120f5fc1d65e.pdf" (id 3) (at 444.5 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Description" "GENERAL PURPOSE CHIP RESISTORS" (id 4) (at 481.33 147.32 0) + (property "Description" "GENERAL PURPOSE CHIP RESISTORS" (id 4) (at 447.04 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Height" "0.4" (id 5) (at 483.87 147.32 0) + (property "Height" "0.4" (id 5) (at 449.58 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Manufacturer_Name" "KEMET" (id 6) (at 486.41 147.32 0) + (property "Manufacturer_Name" "KEMET" (id 6) (at 452.12 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Manufacturer_Part_Number" "RC0402FR-07100KL" (id 7) (at 488.95 147.32 0) + (property "Manufacturer_Part_Number" "RC0402FR-07100KL" (id 7) (at 454.66 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Part Number" "603-RC0402FR-07100KL" (id 8) (at 491.49 147.32 0) + (property "Mouser Part Number" "603-RC0402FR-07100KL" (id 8) (at 457.2 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/YAGEO/RC0402FR-07100KL?qs=mnq%2FyloZIXzTlUn7JAHSWg%3D%3D" (id 9) (at 494.03 147.32 0) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/YAGEO/RC0402FR-07100KL?qs=mnq%2FyloZIXzTlUn7JAHSWg%3D%3D" (id 9) (at 459.74 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Arrow Part Number" "RC0402FR-07100KL" (id 10) (at 496.57 147.32 0) + (property "Arrow Part Number" "RC0402FR-07100KL" (id 10) (at 462.28 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Arrow Price/Stock" "https://www.arrow.com/en/products/rc0402fr-07100kl/yageo" (id 11) (at 499.11 147.32 0) + (property "Arrow Price/Stock" "https://www.arrow.com/en/products/rc0402fr-07100kl/yageo" (id 11) (at 464.82 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Testing Part Number" "" (id 12) (at 501.65 147.32 0) + (property "Mouser Testing Part Number" "" (id 12) (at 467.36 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Testing Price/Stock" "" (id 13) (at 504.19 147.32 0) + (property "Mouser Testing Price/Stock" "" (id 13) (at 469.9 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) (pin "1" (uuid ae97bfd2-aa32-474a-809e-76515c8e07bf)) (pin "2" (uuid c348d251-3a4f-4166-8d28-bc140ac0d349)) ) - (symbol (lib_id "Connector_Generic:Conn_02x08_Row_Letter_First") (at 53.34 168.91 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 52a11683-6a9e-47b2-bc64-156e3ccb5580) - (property "Reference" "J?" (id 0) (at 54.61 154.94 0)) - (property "Value" "Conn_02x08_Row_Letter_First" (id 1) (at 54.61 157.48 0)) - (property "Footprint" "" (id 2) (at 53.34 168.91 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 53.34 168.91 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "a1" (uuid b32ceca2-fb43-4cf1-9619-ff018f43f314)) - (pin "a2" (uuid fbde3255-6c12-4dbf-9275-5dcfdbc30dd4)) - (pin "a3" (uuid 075b5dda-01d6-475f-9707-dee3323e217a)) - (pin "a4" (uuid 4a6329d4-97f5-4c0a-bf52-94fa3a70e0f2)) - (pin "a5" (uuid b45b115a-36dd-49ae-bd3c-9209a4481f4f)) - (pin "a6" (uuid 73725ba8-5959-4a66-b0e4-12abeec1d594)) - (pin "a7" (uuid 84ebaced-9309-4806-a574-4137c3e4bc1f)) - (pin "a8" (uuid 01c5231d-4e08-458a-add6-b2f69723e82d)) - (pin "b1" (uuid cb135c6c-ce5f-4d79-b970-59c6a894759e)) - (pin "b2" (uuid 60451eeb-4b5f-4ad5-afe8-e05779888dd1)) - (pin "b3" (uuid a3167609-e3d4-4207-9dc9-cfbea4c21873)) - (pin "b4" (uuid a5b22d21-f3ed-463d-af44-d3fd2f052f96)) - (pin "b5" (uuid 10b124da-4c1a-414c-b9a0-7602d77add69)) - (pin "b6" (uuid 0ce376b8-d829-4cae-a324-0c8cd0eaef3c)) - (pin "b7" (uuid 8cd11b4f-84fc-450f-b6c4-95cd85319f81)) - (pin "b8" (uuid 8b069f63-f084-463f-8d9d-051b570bf7df)) - ) - - (symbol (lib_id "power:+5V") (at 370.84 69.85 180) (unit 1) + (symbol (lib_id "power:+5V") (at 336.55 60.96 180) (unit 1) (in_bom yes) (on_board yes) (uuid 53b40e13-b141-444d-881a-656e6b768e71) - (property "Reference" "#PWR?" (id 0) (at 370.84 66.04 0) + (property "Reference" "#PWR032" (id 0) (at 336.55 57.15 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Value" "+5V" (id 1) (at 368.3 74.93 0) + (property "Value" "+5V" (id 1) (at 334.01 66.04 0) (effects (font (size 1.27 1.27)) (justify right)) ) - (property "Footprint" "" (id 2) (at 370.84 69.85 0) + (property "Footprint" "" (id 2) (at 336.55 60.96 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Datasheet" "" (id 3) (at 370.84 69.85 0) + (property "Datasheet" "" (id 3) (at 336.55 60.96 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid ea501873-bfc1-4788-9321-40f867ca1443)) ) - (symbol (lib_id "power:+3V3") (at 408.94 91.44 0) (unit 1) + (symbol (lib_id "power:+3V3") (at 374.65 82.55 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 5710c33b-84cc-4446-8fc8-9532014a172d) - (property "Reference" "#PWR?" (id 0) (at 408.94 95.25 0) + (property "Reference" "#PWR036" (id 0) (at 374.65 86.36 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Value" "+3V3" (id 1) (at 408.94 86.36 0)) - (property "Footprint" "" (id 2) (at 408.94 91.44 0) + (property "Value" "+3V3" (id 1) (at 374.65 77.47 0)) + (property "Footprint" "" (id 2) (at 374.65 82.55 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Datasheet" "" (id 3) (at 408.94 91.44 0) + (property "Datasheet" "" (id 3) (at 374.65 82.55 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 00f2ecdb-5cb3-4605-8974-11dbb99b8570)) ) - (symbol (lib_id "power:+3V3") (at 341.63 91.44 0) (unit 1) + (symbol (lib_id "power:+3V3") (at 307.34 82.55 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 57eaffa9-38f1-407c-b422-2ccd8ca4aa26) - (property "Reference" "#PWR?" (id 0) (at 341.63 95.25 0) + (property "Reference" "#PWR029" (id 0) (at 307.34 86.36 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Value" "+3V3" (id 1) (at 341.63 86.36 0)) - (property "Footprint" "" (id 2) (at 341.63 91.44 0) + (property "Value" "+3V3" (id 1) (at 307.34 77.47 0)) + (property "Footprint" "" (id 2) (at 307.34 82.55 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Datasheet" "" (id 3) (at 341.63 91.44 0) + (property "Datasheet" "" (id 3) (at 307.34 82.55 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid d320334c-970d-4652-841d-55e34502f204)) ) - (symbol (lib_id "SamacSys_Parts:DMP1045U-7") (at 388.62 111.76 90) (unit 1) + (symbol (lib_id "SamacSys_Parts:RC0402FR-07220RL") (at 142.24 222.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 61716696-1cfe-44c0-942d-d9126c7bf913) + (property "Reference" "R2" (id 0) (at 151.13 215.9 0)) + (property "Value" "220" (id 1) (at 151.13 218.44 0)) + (property "Footprint" "RESC1005X40N" (id 2) (at 156.21 220.98 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "https://datasheet.datasheetarchive.com/originals/distributors/Datasheets_SAMA/902f9e387b938f871d31120f5fc1d65e.pdf" (id 3) (at 156.21 223.52 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Description" "YAGEO (PHYCOMP) - RC0402FR-07220RL - RES, THICK FILM, 220R, 1%, 0.063W, 0402" (id 4) (at 156.21 226.06 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Height" "0.4" (id 5) (at 156.21 228.6 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Name" "KEMET" (id 6) (at 156.21 231.14 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Part_Number" "RC0402FR-07220RL" (id 7) (at 156.21 233.68 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Part Number" "603-RC0402FR-07220RL" (id 8) (at 156.21 236.22 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/YAGEO/RC0402FR-07220RL?qs=UOUeRUa%252B8Wkw9iNOZEwgHw%3D%3D" (id 9) (at 156.21 238.76 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Part Number" "RC0402FR-07220RL" (id 10) (at 156.21 241.3 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Price/Stock" "https://www.arrow.com/en/products/rc0402fr-07220rl/yageo?region=nac" (id 11) (at 156.21 243.84 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Part Number" "" (id 12) (at 156.21 246.38 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Price/Stock" "" (id 13) (at 156.21 248.92 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid 1d3d5977-62c9-4d4b-ae95-7f53a8a2ed3a)) + (pin "2" (uuid 4af80349-8631-4aa2-a5b7-4f0fa1190aa4)) + ) + + (symbol (lib_id "SamacSys_Parts:DMP1045U-7") (at 354.33 102.87 90) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 619380bb-1036-4309-ae3c-dfbf1727965f) - (property "Reference" "IC?" (id 0) (at 394.97 100.3299 90) + (property "Reference" "IC4" (id 0) (at 360.68 91.4399 90) (effects (font (size 1.27 1.27)) (justify right)) ) - (property "Value" "DMP1045U-7" (id 1) (at 394.97 102.8699 90) + (property "Value" "DMP1045U-7" (id 1) (at 360.68 93.9799 90) (effects (font (size 1.27 1.27)) (justify right)) ) - (property "Footprint" "SOT96P240X120-3N" (id 2) (at 386.08 95.25 0) + (property "Footprint" "SOT96P240X120-3N" (id 2) (at 351.79 86.36 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Datasheet" "https://datasheet.datasheetarchive.com/originals/distributors/Datasheets-DGA24/1599196.pdf" (id 3) (at 388.62 95.25 0) + (property "Datasheet" "https://datasheet.datasheetarchive.com/originals/distributors/Datasheets-DGA24/1599196.pdf" (id 3) (at 354.33 86.36 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Description" "P-Channel Enhancement MOSFET SOT-23 Diodes Inc DMP1045U-7 P-channel MOSFET Transistor, 5.2 A, -12 V, 3-Pin SOT23" (id 4) (at 391.16 95.25 0) + (property "Description" "P-Channel Enhancement MOSFET SOT-23 Diodes Inc DMP1045U-7 P-channel MOSFET Transistor, 5.2 A, -12 V, 3-Pin SOT23" (id 4) (at 356.87 86.36 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Height" "1.2" (id 5) (at 393.7 95.25 0) + (property "Height" "1.2" (id 5) (at 359.41 86.36 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Manufacturer_Name" "Diodes Inc." (id 6) (at 396.24 95.25 0) + (property "Manufacturer_Name" "Diodes Inc." (id 6) (at 361.95 86.36 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Manufacturer_Part_Number" "DMP1045U-7" (id 7) (at 398.78 95.25 0) + (property "Manufacturer_Part_Number" "DMP1045U-7" (id 7) (at 364.49 86.36 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Part Number" "621-DMP1045U-7" (id 8) (at 401.32 95.25 0) + (property "Mouser Part Number" "621-DMP1045U-7" (id 8) (at 367.03 86.36 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Diodes-Incorporated/DMP1045U-7?qs=T%2FOtf55vL7eEKnIWhgMvTQ%3D%3D" (id 9) (at 403.86 95.25 0) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Diodes-Incorporated/DMP1045U-7?qs=T%2FOtf55vL7eEKnIWhgMvTQ%3D%3D" (id 9) (at 369.57 86.36 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Arrow Part Number" "DMP1045U-7" (id 10) (at 406.4 95.25 0) + (property "Arrow Part Number" "DMP1045U-7" (id 10) (at 372.11 86.36 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Arrow Price/Stock" "https://www.arrow.com/en/products/dmp1045u-7/diodes-incorporated?region=nac" (id 11) (at 408.94 95.25 0) + (property "Arrow Price/Stock" "https://www.arrow.com/en/products/dmp1045u-7/diodes-incorporated?region=nac" (id 11) (at 374.65 86.36 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Testing Part Number" "" (id 12) (at 411.48 95.25 0) + (property "Mouser Testing Part Number" "" (id 12) (at 377.19 86.36 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Testing Price/Stock" "" (id 13) (at 414.02 95.25 0) + (property "Mouser Testing Price/Stock" "" (id 13) (at 379.73 86.36 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) (pin "1" (uuid 52927fad-78bd-4c83-955c-291b43ab75af)) @@ -3388,149 +4462,399 @@ (pin "3" (uuid 3edbad40-8e15-4434-9527-41b88bf464d0)) ) - (symbol (lib_id "SamacSys_Parts:RC0402FR-07100KL") (at 303.53 161.29 90) (unit 1) + (symbol (lib_id "power:+3V3") (at 107.95 227.33 270) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 704fb273-de91-40af-8a3e-fcfe24b6c782) + (property "Reference" "#PWR011" (id 0) (at 104.14 227.33 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+3V3" (id 1) (at 111.76 227.3299 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 107.95 227.33 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 107.95 227.33 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid bc4f3c39-a8b5-46cb-8abc-afbb800ce28b)) + ) + + (symbol (lib_id "SamacSys_Parts:WS2812B-2020") (at 165.1 222.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 717b536c-10b0-41b2-ac6a-8cd4f58dc279) + (property "Reference" "LED1" (id 0) (at 177.8 214.63 0)) + (property "Value" "WS2812B-2020" (id 1) (at 177.8 217.17 0)) + (property "Footprint" "WS2812B2020" (id 2) (at 186.69 219.71 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "https://www.alldatasheet.com/datasheet-pdf/pdf/1134522/WORLDSEMI/WS2812B-2020.html" (id 3) (at 186.69 222.25 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Description" "LED; SMD; 2020; RGB; 2x2x0.84mm; 3.75.3V; Lens: transparent; 2kHz" (id 4) (at 186.69 224.79 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Height" "0.84" (id 5) (at 186.69 227.33 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Name" "Worldsemi" (id 6) (at 186.69 229.87 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Part_Number" "WS2812B-2020" (id 7) (at 186.69 232.41 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Part Number" "" (id 8) (at 186.69 234.95 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Price/Stock" "" (id 9) (at 186.69 237.49 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Part Number" "" (id 10) (at 186.69 240.03 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Price/Stock" "" (id 11) (at 186.69 242.57 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Part Number" "" (id 12) (at 186.69 245.11 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Price/Stock" "" (id 13) (at 186.69 247.65 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid ebacba7d-375a-43b4-a1e6-69addb84dadb)) + (pin "2" (uuid cee18d2d-d751-4245-9f23-1ae9303409f4)) + (pin "3" (uuid 24267fac-9146-4128-a63d-ee86b1e02e37)) + (pin "4" (uuid 09c67d4c-d586-429e-ae51-8822764071b8)) + ) + + (symbol (lib_id "SamacSys_Parts:CC0402KRX7R7BB104") (at 142.24 232.41 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7306dda2-3d96-43f1-8f72-88ad64fc429b) + (property "Reference" "C4" (id 0) (at 148.59 224.79 0)) + (property "Value" "100nF" (id 1) (at 148.59 227.33 0)) + (property "Footprint" "CAPC1005X55N" (id 2) (at 151.13 231.14 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "http://www.datasheets360.com/pdf/-5354154806277341459" (id 3) (at 151.13 233.68 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Description" "Cap 100nF 16V 0402 SMD 10% X7R Phycomp 100nF Multilayer Ceramic Capacitor (MLCC) 16 V dc +/-10% X7R dielectric Standard max op. temp. +125C" (id 4) (at 151.13 236.22 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Height" "0.55" (id 5) (at 151.13 238.76 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Name" "KEMET" (id 6) (at 151.13 241.3 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Part_Number" "CC0402KRX7R7BB104" (id 7) (at 151.13 243.84 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Part Number" "603-CC402KRX7R7BB104" (id 8) (at 151.13 246.38 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/YAGEO/CC0402KRX7R7BB104?qs=AgBp2OyFlx%252BSOyhfyS7hpw%3D%3D" (id 9) (at 151.13 248.92 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Part Number" "CC0402KRX7R7BB104" (id 10) (at 151.13 251.46 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Price/Stock" "https://www.arrow.com/en/products/cc0402krx7r7bb104/yageo?region=nac" (id 11) (at 151.13 254 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Part Number" "" (id 12) (at 151.13 256.54 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Price/Stock" "" (id 13) (at 151.13 259.08 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid d50226fa-bf80-4a17-842e-7a30e1a150f4)) + (pin "2" (uuid 3a056c35-286c-4d9e-a779-e6ae5cd917d4)) + ) + + (symbol (lib_id "SamacSys_Parts:ESP32-WROOM-32E-N4") (at 121.92 63.5 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7756c211-5286-4d10-828b-c4ad5bcfbce7) + (property "Reference" "IC1" (id 0) (at 140.97 55.88 0)) + (property "Value" "ESP32-WROOM-32E-N4" (id 1) (at 140.97 58.42 0)) + (property "Footprint" "ESP32WROOM32EN4" (id 2) (at 156.21 60.96 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32e_esp32-wroom-32ue_datasheet_en.pdf" (id 3) (at 156.21 63.5 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Description" "RX TXRX MOD WIFI TRACE ANT SMD" (id 4) (at 156.21 66.04 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Height" "3.25" (id 5) (at 156.21 68.58 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Name" "Espressif Systems" (id 6) (at 156.21 71.12 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Part_Number" "ESP32-WROOM-32E-N4" (id 7) (at 156.21 73.66 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Part Number" "356-ESP32WRM32E132PH" (id 8) (at 156.21 76.2 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Espressif-Systems/ESP32-WROOM-32E-N4?qs=Li%252BoUPsLEnsPzTWsi%252BRMgQ%3D%3D" (id 9) (at 156.21 78.74 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Part Number" "" (id 10) (at 156.21 81.28 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Price/Stock" "" (id 11) (at 156.21 83.82 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Part Number" "" (id 12) (at 156.21 86.36 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Price/Stock" "" (id 13) (at 156.21 88.9 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid ff2cb491-f2c7-4402-a8d9-094e0c18ac61)) + (pin "10" (uuid 991c66fa-b2f9-4de0-883b-6682ce1aa78b)) + (pin "11" (uuid 902f74f1-d0d8-4e91-b9dd-54cf96b22d71)) + (pin "12" (uuid 9cdce9fc-94bd-4adc-91f7-719f5615a6bb)) + (pin "13" (uuid 916d14b7-6208-4626-bac7-d8b0f91c5363)) + (pin "14" (uuid 63bbf2c6-34bb-4ec0-be25-fb348146b383)) + (pin "15" (uuid e69ff8b4-8f63-4fe5-80bd-4e866bc47b71)) + (pin "16" (uuid 50e23124-aca0-46eb-99a1-16920e78822f)) + (pin "17" (uuid dbd568b7-a3dd-4ff6-a421-8b6676c6d8c6)) + (pin "18" (uuid d1f9e5b7-d5e3-4fcf-a404-6a017db15ef1)) + (pin "19" (uuid 118cf89d-28cb-467a-a8ee-f999ddd26204)) + (pin "2" (uuid 0622cf1a-28cd-4480-856b-9551dc1bbe9b)) + (pin "20" (uuid 8cc62cc2-a040-4352-ab23-49e5f43465f8)) + (pin "21" (uuid 363ece73-c5f5-46b1-87cd-7b18d02175d7)) + (pin "22" (uuid 238dac90-7206-41cd-adeb-ed5c58222fa7)) + (pin "23" (uuid 64ac95c1-dbe1-4bcf-b4e2-fc9f29d59f4e)) + (pin "24" (uuid f70c6b09-c044-4891-bcda-a0ea04d93a0b)) + (pin "25" (uuid d5bbb9b8-89a1-4c7e-9a5e-be0c9da0c9d4)) + (pin "26" (uuid 12bc9616-86d1-452d-bca2-024c6a7155ca)) + (pin "27" (uuid 2f0e1565-1851-439a-ad62-f3ee92543ea9)) + (pin "28" (uuid d91cb875-8915-486e-b157-0c6d9167198b)) + (pin "29" (uuid 02d7b88e-9bee-4e94-aee1-36a070c80788)) + (pin "3" (uuid 2e22f3aa-a241-4c06-809b-f0d5ae7b7b7b)) + (pin "30" (uuid 6593325f-3388-49bb-8753-742a90ac4835)) + (pin "31" (uuid 83a04cac-cbb7-4c7b-87ce-4516b85d9bd1)) + (pin "32" (uuid ecdf562e-c345-4bb9-abf9-dfdcd0b0e736)) + (pin "33" (uuid bd5f1d2e-9253-4a56-af07-769f9e908dc9)) + (pin "34" (uuid f577390b-6b11-4304-ad80-5721125cfd8d)) + (pin "35" (uuid 5b77693f-88ca-4494-b7aa-daf7e5ad8ac3)) + (pin "36" (uuid 28574d1a-3bd8-44f9-8a6d-792907e65792)) + (pin "37" (uuid 5d18e195-d4ec-4cca-b631-99f62aa6a301)) + (pin "38" (uuid 6b3c525f-d74d-4c1b-906d-0c64f38e443e)) + (pin "39" (uuid fc595e92-421d-4fc0-a7ee-1ede41621287)) + (pin "4" (uuid d9a37011-8e1f-4dec-a698-b33523761f80)) + (pin "40" (uuid 4c326e56-096f-4b78-880c-ff51a9c93361)) + (pin "41" (uuid 2314f475-72de-49d3-a7ac-855cd745659f)) + (pin "42" (uuid 3e0faaa9-a26c-457f-a000-f12767788dba)) + (pin "43" (uuid 12809ec8-c78b-4dc3-8893-6d368d1eedcf)) + (pin "44" (uuid fe8767f5-8657-49b0-86af-d7b1ed05b2b7)) + (pin "45" (uuid d63ab240-b82f-442d-8000-8fc8bcaf53ff)) + (pin "46" (uuid 36ed621c-ff37-478a-a9f7-bc243a6f0f36)) + (pin "47" (uuid 8a459beb-764f-45e0-b42e-b1a19a22a123)) + (pin "5" (uuid 81044805-b36e-487e-8bb3-6d9fb0411e71)) + (pin "6" (uuid af9b6c57-f192-4aa0-8df4-ae6e5ce8588f)) + (pin "7" (uuid d99066cb-f649-435d-9126-c9f7f9eef237)) + (pin "8" (uuid 51907809-bc00-420e-962e-b744e4bfeb2a)) + (pin "9" (uuid e6fa761a-b74f-4c07-b437-3bfe1cb8a88c)) + ) + + (symbol (lib_id "SamacSys_Parts:RC0402FR-07100KL") (at 269.24 152.4 90) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 7e45edae-6aea-4a3f-b6bd-37e282e1851a) - (property "Reference" "R?" (id 0) (at 306.07 151.1299 90) + (property "Reference" "R7" (id 0) (at 271.78 142.2399 90) (effects (font (size 1.27 1.27)) (justify right)) ) - (property "Value" "100K" (id 1) (at 306.07 153.6699 90) + (property "Value" "100K" (id 1) (at 271.78 144.7799 90) (effects (font (size 1.27 1.27)) (justify right)) ) - (property "Footprint" "RESC1005X40N" (id 2) (at 302.26 147.32 0) + (property "Footprint" "RESC1005X40N" (id 2) (at 267.97 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Datasheet" "https://datasheet.datasheetarchive.com/originals/distributors/Datasheets_SAMA/902f9e387b938f871d31120f5fc1d65e.pdf" (id 3) (at 304.8 147.32 0) + (property "Datasheet" "https://datasheet.datasheetarchive.com/originals/distributors/Datasheets_SAMA/902f9e387b938f871d31120f5fc1d65e.pdf" (id 3) (at 270.51 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Description" "GENERAL PURPOSE CHIP RESISTORS" (id 4) (at 307.34 147.32 0) + (property "Description" "GENERAL PURPOSE CHIP RESISTORS" (id 4) (at 273.05 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Height" "0.4" (id 5) (at 309.88 147.32 0) + (property "Height" "0.4" (id 5) (at 275.59 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Manufacturer_Name" "KEMET" (id 6) (at 312.42 147.32 0) + (property "Manufacturer_Name" "KEMET" (id 6) (at 278.13 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Manufacturer_Part_Number" "RC0402FR-07100KL" (id 7) (at 314.96 147.32 0) + (property "Manufacturer_Part_Number" "RC0402FR-07100KL" (id 7) (at 280.67 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Part Number" "603-RC0402FR-07100KL" (id 8) (at 317.5 147.32 0) + (property "Mouser Part Number" "603-RC0402FR-07100KL" (id 8) (at 283.21 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/YAGEO/RC0402FR-07100KL?qs=mnq%2FyloZIXzTlUn7JAHSWg%3D%3D" (id 9) (at 320.04 147.32 0) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/YAGEO/RC0402FR-07100KL?qs=mnq%2FyloZIXzTlUn7JAHSWg%3D%3D" (id 9) (at 285.75 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Arrow Part Number" "RC0402FR-07100KL" (id 10) (at 322.58 147.32 0) + (property "Arrow Part Number" "RC0402FR-07100KL" (id 10) (at 288.29 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Arrow Price/Stock" "https://www.arrow.com/en/products/rc0402fr-07100kl/yageo" (id 11) (at 325.12 147.32 0) + (property "Arrow Price/Stock" "https://www.arrow.com/en/products/rc0402fr-07100kl/yageo" (id 11) (at 290.83 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Testing Part Number" "" (id 12) (at 327.66 147.32 0) + (property "Mouser Testing Part Number" "" (id 12) (at 293.37 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Testing Price/Stock" "" (id 13) (at 330.2 147.32 0) + (property "Mouser Testing Price/Stock" "" (id 13) (at 295.91 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) (pin "1" (uuid 5f3e0949-4d7f-429c-a0d7-b2f96f7e564f)) (pin "2" (uuid 7d61c352-aa8d-4066-85f7-8f8eed9e9c21)) ) - (symbol (lib_id "power:+3V3") (at 72.39 198.12 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 80c38c40-e2d8-46a5-a10f-b1b3a971d7a7) - (property "Reference" "#PWR?" (id 0) (at 72.39 201.93 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+3V3" (id 1) (at 72.39 193.04 0)) - (property "Footprint" "" (id 2) (at 72.39 198.12 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (id 3) (at 72.39 198.12 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid dca4739a-9eef-4353-9f82-8e7dfdef76e4)) - ) - - (symbol (lib_id "Device:C") (at 137.16 45.72 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 85bdcbed-eebe-4b38-8831-bbd50240f941) - (property "Reference" "C?" (id 0) (at 140.97 44.4499 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "100n" (id 1) (at 140.97 46.9899 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "" (id 2) (at 138.1252 49.53 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 137.16 45.72 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 41fb1fb3-18d9-47ae-bf2b-dacbae7137a4)) - (pin "2" (uuid 0cbc9c47-0c52-4f4d-bc7d-2690687d01b7)) - ) - - (symbol (lib_name "+3V3_1") (lib_id "power:+3V3") (at 391.16 44.45 0) (unit 1) + (symbol (lib_name "+3V3_1") (lib_id "power:+3V3") (at 356.87 35.56 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 8745e723-59e3-4d91-a180-9e61faf8a5d5) - (property "Reference" "#PWR?" (id 0) (at 391.16 48.26 0) + (property "Reference" "#PWR035" (id 0) (at 356.87 39.37 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Value" "+LDO_3V3" (id 1) (at 391.16 39.37 0)) - (property "Footprint" "" (id 2) (at 391.16 44.45 0) + (property "Value" "+LDO_3V3" (id 1) (at 356.87 30.48 0)) + (property "Footprint" "" (id 2) (at 356.87 35.56 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Datasheet" "" (id 3) (at 391.16 44.45 0) + (property "Datasheet" "" (id 3) (at 356.87 35.56 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 4f8b12e5-dec5-4803-976e-2b1a224c0c48)) ) - (symbol (lib_id "SamacSys_Parts:DMP1045U-7") (at 457.2 111.76 90) (unit 1) + (symbol (lib_id "power:+5V") (at 109.22 190.5 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 8817a895-a3a5-4950-961b-5f8add815f50) + (property "Reference" "#PWR013" (id 0) (at 113.03 190.5 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 101.6 190.5 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 109.22 190.5 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 109.22 190.5 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 1c277196-f138-4f2e-9ac4-b8165006cd24)) + ) + + (symbol (lib_id "SamacSys_Parts:CL05B104KO5NNNC") (at 137.16 53.34 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8cc5bdba-d97c-4d68-9a3d-3bddc120cb57) + (property "Reference" "C3" (id 0) (at 140.97 45.7199 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "100n" (id 1) (at 140.97 48.2599 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "CAPC1005X55N" (id 2) (at 135.89 44.45 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "https://datasheet.datasheetarchive.com/originals/distributors/Datasheets-DGA10/2408147.pdf" (id 3) (at 138.43 44.45 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Description" "Samsung Electro-Mechanics CL05B104KO5NNNC 100nF Multilayer Ceramic Capacitor MLCC 16V dc +/-10% Tolerance SMD" (id 4) (at 140.97 44.45 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Height" "0.55" (id 5) (at 143.51 44.45 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Name" "Samsung Electro-Mechanics" (id 6) (at 146.05 44.45 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Part_Number" "CL05B104KO5NNNC" (id 7) (at 148.59 44.45 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Part Number" "187-CL05B104KO5NNNC" (id 8) (at 151.13 44.45 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Samsung-Electro-Mechanics/CL05B104KO5NNNC?qs=hqM3L16%252BxlfT2SKOuAUq6Q%3D%3D" (id 9) (at 153.67 44.45 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Part Number" "CL05B104KO5NNNC" (id 10) (at 156.21 44.45 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Price/Stock" "https://www.arrow.com/en/products/cl05b104ko5nnnc/samsung-electro-mechanics?region=europe" (id 11) (at 158.75 44.45 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Part Number" "" (id 12) (at 161.29 44.45 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Price/Stock" "" (id 13) (at 163.83 44.45 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid 41acdddd-5c67-4e8f-bb24-4b2210ddb105)) + (pin "2" (uuid 64997ce6-dc01-40fb-8351-21d3a1b0d56a)) + ) + + (symbol (lib_id "power:+5V") (at 160.02 234.95 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8ed88628-5c3f-4ae7-9b4b-beb883cfb4f0) + (property "Reference" "#PWR019" (id 0) (at 160.02 231.14 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 162.56 236.2199 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 160.02 234.95 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 160.02 234.95 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 6eff7306-6f88-41ef-b2d3-fb64314660c4)) + ) + + (symbol (lib_id "SamacSys_Parts:DMP1045U-7") (at 422.91 102.87 90) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 92132767-5beb-424d-bfe4-5601c811c410) - (property "Reference" "IC?" (id 0) (at 463.55 100.3299 90) + (property "Reference" "IC5" (id 0) (at 429.26 91.4399 90) (effects (font (size 1.27 1.27)) (justify right)) ) - (property "Value" "DMP1045U-7" (id 1) (at 463.55 102.8699 90) + (property "Value" "DMP1045U-7" (id 1) (at 429.26 93.9799 90) (effects (font (size 1.27 1.27)) (justify right)) ) - (property "Footprint" "SOT96P240X120-3N" (id 2) (at 454.66 95.25 0) + (property "Footprint" "SOT96P240X120-3N" (id 2) (at 420.37 86.36 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Datasheet" "https://datasheet.datasheetarchive.com/originals/distributors/Datasheets-DGA24/1599196.pdf" (id 3) (at 457.2 95.25 0) + (property "Datasheet" "https://datasheet.datasheetarchive.com/originals/distributors/Datasheets-DGA24/1599196.pdf" (id 3) (at 422.91 86.36 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Description" "P-Channel Enhancement MOSFET SOT-23 Diodes Inc DMP1045U-7 P-channel MOSFET Transistor, 5.2 A, -12 V, 3-Pin SOT23" (id 4) (at 459.74 95.25 0) + (property "Description" "P-Channel Enhancement MOSFET SOT-23 Diodes Inc DMP1045U-7 P-channel MOSFET Transistor, 5.2 A, -12 V, 3-Pin SOT23" (id 4) (at 425.45 86.36 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Height" "1.2" (id 5) (at 462.28 95.25 0) + (property "Height" "1.2" (id 5) (at 427.99 86.36 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Manufacturer_Name" "Diodes Inc." (id 6) (at 464.82 95.25 0) + (property "Manufacturer_Name" "Diodes Inc." (id 6) (at 430.53 86.36 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Manufacturer_Part_Number" "DMP1045U-7" (id 7) (at 467.36 95.25 0) + (property "Manufacturer_Part_Number" "DMP1045U-7" (id 7) (at 433.07 86.36 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Part Number" "621-DMP1045U-7" (id 8) (at 469.9 95.25 0) + (property "Mouser Part Number" "621-DMP1045U-7" (id 8) (at 435.61 86.36 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Diodes-Incorporated/DMP1045U-7?qs=T%2FOtf55vL7eEKnIWhgMvTQ%3D%3D" (id 9) (at 472.44 95.25 0) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Diodes-Incorporated/DMP1045U-7?qs=T%2FOtf55vL7eEKnIWhgMvTQ%3D%3D" (id 9) (at 438.15 86.36 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Arrow Part Number" "DMP1045U-7" (id 10) (at 474.98 95.25 0) + (property "Arrow Part Number" "DMP1045U-7" (id 10) (at 440.69 86.36 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Arrow Price/Stock" "https://www.arrow.com/en/products/dmp1045u-7/diodes-incorporated?region=nac" (id 11) (at 477.52 95.25 0) + (property "Arrow Price/Stock" "https://www.arrow.com/en/products/dmp1045u-7/diodes-incorporated?region=nac" (id 11) (at 443.23 86.36 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Testing Part Number" "" (id 12) (at 480.06 95.25 0) + (property "Mouser Testing Part Number" "" (id 12) (at 445.77 86.36 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Testing Price/Stock" "" (id 13) (at 482.6 95.25 0) + (property "Mouser Testing Price/Stock" "" (id 13) (at 448.31 86.36 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) (pin "1" (uuid 987538ae-849a-48e7-aa79-129f18f5a19b)) @@ -3538,112 +4862,95 @@ (pin "3" (uuid aa832f3d-8009-40f8-a267-369aa86c1a57)) ) - (symbol (lib_id "power:GND") (at 63.5 76.2 0) (unit 1) + (symbol (lib_id "power:GND") (at 46.99 78.74 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 938dc300-1655-49ab-8f3c-f0849c707a78) - (property "Reference" "#PWR?" (id 0) (at 63.5 82.55 0) + (property "Reference" "#PWR07" (id 0) (at 46.99 85.09 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Value" "GND" (id 1) (at 63.5 81.28 0)) - (property "Footprint" "" (id 2) (at 63.5 76.2 0) + (property "Value" "GND" (id 1) (at 46.99 83.82 0)) + (property "Footprint" "" (id 2) (at 46.99 78.74 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Datasheet" "" (id 3) (at 63.5 76.2 0) + (property "Datasheet" "" (id 3) (at 46.99 78.74 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 9f7751f5-18b2-4dbc-bdac-9fe0a8ee9c1f)) ) - (symbol (lib_id "power:+5V") (at 71.12 161.29 0) (unit 1) + (symbol (lib_id "power:GND") (at 214.63 184.15 90) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 96a61bc1-1c3e-4dad-8aba-b55b5710c1fc) - (property "Reference" "#PWR?" (id 0) (at 71.12 165.1 0) + (uuid 989d95a3-649c-4c86-96f6-57488f06c5fc) + (property "Reference" "#PWR025" (id 0) (at 220.98 184.15 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Value" "+5V" (id 1) (at 71.12 156.21 0)) - (property "Footprint" "" (id 2) (at 71.12 161.29 0) + (property "Value" "GND" (id 1) (at 218.44 184.1499 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 214.63 184.15 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Datasheet" "" (id 3) (at 71.12 161.29 0) + (property "Datasheet" "" (id 3) (at 214.63 184.15 0) (effects (font (size 1.27 1.27)) hide) ) - (pin "1" (uuid f996e1e2-f874-4bc7-a209-276f0fd4186c)) + (pin "1" (uuid 38c84803-ae60-4929-8b92-308b22323a01)) ) - (symbol (lib_id "power:GND") (at 408.94 165.1 0) (unit 1) + (symbol (lib_id "power:GND") (at 374.65 156.21 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid 98e03630-d646-4afc-9fd8-fa3cafbe0a56) - (property "Reference" "#PWR?" (id 0) (at 408.94 171.45 0) + (property "Reference" "#PWR037" (id 0) (at 374.65 162.56 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Value" "GND" (id 1) (at 408.94 170.18 0)) - (property "Footprint" "" (id 2) (at 408.94 165.1 0) + (property "Value" "GND" (id 1) (at 374.65 161.29 0)) + (property "Footprint" "" (id 2) (at 374.65 156.21 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Datasheet" "" (id 3) (at 408.94 165.1 0) + (property "Datasheet" "" (id 3) (at 374.65 156.21 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid a1d9fc80-61a6-4dee-987e-1ba47ea76cbc)) ) - (symbol (lib_id "Device:C") (at 80.01 71.12 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 9b3a3e1a-9b98-4137-9ced-6bfb0bd6ee18) - (property "Reference" "C?" (id 0) (at 83.82 69.8499 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "1u" (id 1) (at 83.82 72.3899 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "" (id 2) (at 80.9752 74.93 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 80.01 71.12 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 57c43d89-0785-44da-9c92-397bca1a9b09)) - (pin "2" (uuid 2a282b4e-7c91-4e40-9bd0-7c5fc1d39169)) - ) - - (symbol (lib_id "SamacSys_Parts:MMDT2907A-7-F") (at 311.15 130.81 0) (unit 1) + (symbol (lib_id "SamacSys_Parts:MMDT2907A-7-F") (at 276.86 121.92 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid a24644c1-faf2-48cb-a6e5-428bf8b72923) - (property "Reference" "U?" (id 0) (at 322.58 123.19 0)) - (property "Value" "MMDT2907A-7-F" (id 1) (at 322.58 125.73 0)) - (property "Footprint" "SOT65P210X110-6N" (id 2) (at 330.2 128.27 0) + (property "Reference" "U1" (id 0) (at 288.29 114.3 0)) + (property "Value" "MMDT2907A-7-F" (id 1) (at 288.29 116.84 0)) + (property "Footprint" "SOT65P210X110-6N" (id 2) (at 295.91 119.38 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Datasheet" "https://www.digikey.com/product-detail/en/diodes-incorporated/MMDT2907A-7-F/MMDT2907A-FDICT-ND/755507" (id 3) (at 330.2 130.81 0) + (property "Datasheet" "https://www.digikey.com/product-detail/en/diodes-incorporated/MMDT2907A-7-F/MMDT2907A-FDICT-ND/755507" (id 3) (at 295.91 121.92 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Description" "Diodes Inc MMDT2907A-7-F Dual PNP Bipolar Transistor, -600 mA, -60 V, 6-Pin SOT-363" (id 4) (at 330.2 133.35 0) + (property "Description" "Diodes Inc MMDT2907A-7-F Dual PNP Bipolar Transistor, -600 mA, -60 V, 6-Pin SOT-363" (id 4) (at 295.91 124.46 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Height" "1.1" (id 5) (at 330.2 135.89 0) + (property "Height" "1.1" (id 5) (at 295.91 127 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Manufacturer_Name" "Diodes Inc." (id 6) (at 330.2 138.43 0) + (property "Manufacturer_Name" "Diodes Inc." (id 6) (at 295.91 129.54 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Manufacturer_Part_Number" "MMDT2907A-7-F" (id 7) (at 330.2 140.97 0) + (property "Manufacturer_Part_Number" "MMDT2907A-7-F" (id 7) (at 295.91 132.08 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Part Number" "621-MMDT2907A-F" (id 8) (at 330.2 143.51 0) + (property "Mouser Part Number" "621-MMDT2907A-F" (id 8) (at 295.91 134.62 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Diodes-Incorporated/MMDT2907A-7-F?qs=r2lzopzdS3aWhNHiAefFpg%3D%3D" (id 9) (at 330.2 146.05 0) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Diodes-Incorporated/MMDT2907A-7-F?qs=r2lzopzdS3aWhNHiAefFpg%3D%3D" (id 9) (at 295.91 137.16 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Arrow Part Number" "MMDT2907A-7-F" (id 10) (at 330.2 148.59 0) + (property "Arrow Part Number" "MMDT2907A-7-F" (id 10) (at 295.91 139.7 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Arrow Price/Stock" "https://www.arrow.com/en/products/mmdt2907a-7-f/diodes-incorporated" (id 11) (at 330.2 151.13 0) + (property "Arrow Price/Stock" "https://www.arrow.com/en/products/mmdt2907a-7-f/diodes-incorporated" (id 11) (at 295.91 142.24 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Testing Part Number" "" (id 12) (at 330.2 153.67 0) + (property "Mouser Testing Part Number" "" (id 12) (at 295.91 144.78 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Testing Price/Stock" "" (id 13) (at 330.2 156.21 0) + (property "Mouser Testing Price/Stock" "" (id 13) (at 295.91 147.32 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) (pin "1" (uuid 9c665085-3f32-4581-a941-e7e69cc01d95)) @@ -3654,45 +4961,45 @@ (pin "6" (uuid f90b2258-fadb-4304-99c5-de1cdfce6b50)) ) - (symbol (lib_id "SamacSys_Parts:AZ1117H-3.3TRE1") (at 374.65 59.69 0) (unit 1) + (symbol (lib_id "SamacSys_Parts:AZ1117H-3.3TRE1") (at 340.36 50.8 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid a5cc5237-8cb6-4b5b-ac74-60723428bec5) - (property "Reference" "IC?" (id 0) (at 391.16 52.07 0)) - (property "Value" "AZ1117H-3.3TRE1" (id 1) (at 391.16 54.61 0)) - (property "Footprint" "SOT230P700X180-4N" (id 2) (at 403.86 57.15 0) + (property "Reference" "IC3" (id 0) (at 356.87 43.18 0)) + (property "Value" "AZ1117H-3.3TRE1" (id 1) (at 356.87 45.72 0)) + (property "Footprint" "SOT230P700X180-4N" (id 2) (at 369.57 48.26 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Datasheet" "https://componentsearchengine.com/Datasheets/1/AZ1117H-3.3TRE1.pdf" (id 3) (at 403.86 59.69 0) + (property "Datasheet" "https://componentsearchengine.com/Datasheets/1/AZ1117H-3.3TRE1.pdf" (id 3) (at 369.57 50.8 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Description" "3.3V 1A Pos LDO Regulator SOT-223 DiodesZetex AZ1117H-3.3TRE1, LDO Voltage Regulator, 1A, 3.3 V 1%, maximum of 15 Vin, 3+Tab-Pin SOT-223" (id 4) (at 403.86 62.23 0) + (property "Description" "3.3V 1A Pos LDO Regulator SOT-223 DiodesZetex AZ1117H-3.3TRE1, LDO Voltage Regulator, 1A, 3.3 V 1%, maximum of 15 Vin, 3+Tab-Pin SOT-223" (id 4) (at 369.57 53.34 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Height" "1.8" (id 5) (at 403.86 64.77 0) + (property "Height" "1.8" (id 5) (at 369.57 55.88 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Manufacturer_Name" "Diodes Inc." (id 6) (at 403.86 67.31 0) + (property "Manufacturer_Name" "Diodes Inc." (id 6) (at 369.57 58.42 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Manufacturer_Part_Number" "AZ1117H-3.3TRE1" (id 7) (at 403.86 69.85 0) + (property "Manufacturer_Part_Number" "AZ1117H-3.3TRE1" (id 7) (at 369.57 60.96 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Part Number" "621-AZ1117H-3.3TRE1" (id 8) (at 403.86 72.39 0) + (property "Mouser Part Number" "621-AZ1117H-3.3TRE1" (id 8) (at 369.57 63.5 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Diodes-Incorporated/AZ1117H-3.3TRE1?qs=FKu9oBikfSkGfSKJazTNfQ%3D%3D" (id 9) (at 403.86 74.93 0) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Diodes-Incorporated/AZ1117H-3.3TRE1?qs=FKu9oBikfSkGfSKJazTNfQ%3D%3D" (id 9) (at 369.57 66.04 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Arrow Part Number" "AZ1117H-3.3TRE1" (id 10) (at 403.86 77.47 0) + (property "Arrow Part Number" "AZ1117H-3.3TRE1" (id 10) (at 369.57 68.58 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Arrow Price/Stock" "https://www.arrow.com/en/products/az1117h-3.3tre1/diodes-incorporated" (id 11) (at 403.86 80.01 0) + (property "Arrow Price/Stock" "https://www.arrow.com/en/products/az1117h-3.3tre1/diodes-incorporated" (id 11) (at 369.57 71.12 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Testing Part Number" "" (id 12) (at 403.86 82.55 0) + (property "Mouser Testing Part Number" "" (id 12) (at 369.57 73.66 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Testing Price/Stock" "" (id 13) (at 403.86 85.09 0) + (property "Mouser Testing Price/Stock" "" (id 13) (at 369.57 76.2 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) (pin "1" (uuid a3bb63d1-67f2-4b8e-b29a-969f4ee9446e)) @@ -3701,285 +5008,402 @@ (pin "4" (uuid 6aa950e2-68fb-4741-91e6-faf23568ff93)) ) - (symbol (lib_id "5033981892:5033981892") (at 161.29 176.53 0) (unit 1) + (symbol (lib_id "SamacSys_Parts:SKRPABE010") (at 219.71 63.5 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid a626741b-0242-4b47-871a-73d3a9420c3f) - (property "Reference" "J?" (id 0) (at 194.31 165.1 0) - (effects (font (size 1.524 1.524))) + (uuid a648c944-fb2d-43fa-9b33-c4fa58f57a79) + (property "Reference" "S2" (id 0) (at 233.68 55.88 0)) + (property "Value" "SKRPABE010" (id 1) (at 233.68 58.42 0)) + (property "Footprint" "SKRPABE010" (id 2) (at 243.84 60.96 0) + (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Value" "" (id 1) (at 194.31 168.91 0) - (effects (font (size 1.524 1.524))) + (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/ALPS-Electric-SKRPABE010_C115360.pdf" (id 3) (at 243.84 63.5 0) + (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Footprint" "" (id 2) (at 194.31 170.434 0) - (effects (font (size 1.524 1.524)) hide) + (property "Description" "Switch Tactile N.O. SPST Button J-Bend 0.05A 16VDC 1.57N SMD Automotive T/R" (id 4) (at 243.84 66.04 0) + (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Datasheet" "" (id 3) (at 161.29 176.53 0) - (effects (font (size 1.524 1.524))) + (property "Height" "2.5" (id 5) (at 243.84 68.58 0) + (effects (font (size 1.27 1.27)) (justify left) hide) ) - (pin "1" (uuid 55bfe9a9-8f0f-4533-a2e6-cbfa46840355)) - (pin "10" (uuid 3139372b-ae93-4de0-a412-c66e2ae9ed59)) - (pin "2" (uuid 1068d7e6-6404-4e24-8870-b1566482ac77)) - (pin "3" (uuid 4e76d76a-030f-429e-b04e-eeb1b1af825f)) - (pin "4" (uuid 998e206f-26d1-45d3-b57c-0f764558a2a5)) - (pin "5" (uuid 2db43582-9260-44f2-8f6a-60e5713d48eb)) - (pin "6" (uuid 84703208-7e87-436f-9c5d-3ced772bf017)) - (pin "7" (uuid f86d3d84-5ff9-4216-8ee6-9b213109984a)) - (pin "8" (uuid 0809fe94-6ad9-444d-af5e-6671a836057d)) - (pin "9" (uuid 91ae5739-5ecc-485a-9e94-8b52f17dab55)) + (property "Manufacturer_Name" "ALPS Electric" (id 6) (at 243.84 71.12 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Part_Number" "SKRPABE010" (id 7) (at 243.84 73.66 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Part Number" "688-SKRPAB" (id 8) (at 243.84 76.2 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Alps-Alpine/SKRPABE010?qs=m0BA540hBPe1GpcSf%2FZ5Yw%3D%3D" (id 9) (at 243.84 78.74 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Part Number" "" (id 10) (at 243.84 81.28 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Price/Stock" "" (id 11) (at 243.84 83.82 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Part Number" "" (id 12) (at 243.84 86.36 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Price/Stock" "" (id 13) (at 243.84 88.9 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid 15c83a02-d8e9-4954-a2dd-4028ffdda51a)) + (pin "2" (uuid 1bc397ee-44f0-406a-b4d4-c4bb647d06a9)) + (pin "3" (uuid 30e90eaa-fb00-4035-9214-e1b6e37101d7)) + (pin "4" (uuid c324e221-5009-454b-b028-49eba3436058)) ) - (symbol (lib_id "RF_Module:ESP32-WROOM-32D") (at 146.05 93.98 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid a7ca8ead-0ab1-4fb3-ac63-4b45d0746291) - (property "Reference" "U?" (id 0) (at 148.0694 55.88 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "ESP32-WROOM-32D" (id 1) (at 148.0694 58.42 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "RF_Module:ESP32-WROOM-32" (id 2) (at 146.05 132.08 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32d_esp32-wroom-32u_datasheet_en.pdf" (id 3) (at 138.43 92.71 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 07ecf629-cb3d-41db-87ba-bcd65e256f03)) - (pin "10" (uuid 2b91a5b1-533e-4f41-9371-cec82ba3644d)) - (pin "11" (uuid e85d2eaf-d218-4814-bd6a-6c0c0f70d15f)) - (pin "12" (uuid 38eabdbc-6e70-4af4-9f6b-dd5b8f5ce77c)) - (pin "13" (uuid 755a5b32-35a6-4c08-9bea-8d6e56303577)) - (pin "14" (uuid 55f481a6-dfb3-411c-9e23-c82760267bdc)) - (pin "15" (uuid 14303dd8-706c-4d19-8320-8c0f51f93e45)) - (pin "16" (uuid 4f3c5a31-6551-4bbc-82d0-434a619b8b04)) - (pin "17" (uuid 8a068d19-d5ef-4958-b912-22925f5da269)) - (pin "18" (uuid c95f236c-5535-48e4-a591-b695a08783e0)) - (pin "19" (uuid b3636722-207f-4d9c-9005-a682d5515ed0)) - (pin "2" (uuid 6e0225af-d658-492d-822e-620c9a94f9ab)) - (pin "20" (uuid fa3e5aca-dcfd-4ac8-b410-b5c082e8da18)) - (pin "21" (uuid 2e3af1b7-97ce-40d1-8917-2e518664fa74)) - (pin "22" (uuid 8c32275e-9f49-4c2e-91a9-bb08f3b2e665)) - (pin "23" (uuid e07c4213-bf47-4bf6-ac7b-5980bff4d734)) - (pin "24" (uuid b8a1d979-4ebb-4058-9b58-b2c0360c6322)) - (pin "25" (uuid f500007d-7499-41c0-84a3-417af5ca9fee)) - (pin "26" (uuid 3cdf610a-32e6-471c-ab65-2014c642278e)) - (pin "27" (uuid 3108093d-5f00-4b05-b7de-7777b2789024)) - (pin "28" (uuid b88c2fb8-bcd6-45a2-bf86-034bd33e6bc4)) - (pin "29" (uuid 5f0c99f2-86e8-43ce-aaf0-e0f3ee5311cf)) - (pin "3" (uuid 096ced1c-8fa8-4392-85a8-5a5a64f380b3)) - (pin "30" (uuid 20a7674a-2bb7-4c93-bd0d-ccfc0b8c6753)) - (pin "31" (uuid 7cb15f86-8906-48d5-b968-4eb5a20425a1)) - (pin "32" (uuid 121a6802-456a-4c66-a263-faf7abca20ea)) - (pin "33" (uuid fcee2de5-5fd5-4ce8-9261-24933b842b74)) - (pin "34" (uuid 58e5bb6f-fb0e-4254-b906-be6581938051)) - (pin "35" (uuid f783c60c-282d-49e1-813d-bd5a87a75998)) - (pin "36" (uuid cea549f3-4908-4806-b11c-6b7ed73d9417)) - (pin "37" (uuid 8171c8c4-d02e-4adb-bf54-352a6595d8c5)) - (pin "38" (uuid f9d731fa-da6b-4a28-9717-99ddf5e9094b)) - (pin "39" (uuid a49789e9-4636-4a87-a280-667f92f7f003)) - (pin "4" (uuid 3c91ba83-3aca-422b-9f53-3ad5314b5d57)) - (pin "5" (uuid a41e889b-6a80-4eed-971a-da701275c33e)) - (pin "6" (uuid 2ff183b5-3cb0-4853-afd7-df50ef59c23e)) - (pin "7" (uuid 4c27ac34-c86f-4ff9-b011-2316b94bc825)) - (pin "8" (uuid 0bd7bbf3-5225-4229-9099-1aa72cef2d3e)) - (pin "9" (uuid 0990a76c-5c66-4848-854c-27bebb45191f)) - ) - - (symbol (lib_id "SamacSys_Parts:CL05A106MQ5NUNC") (at 358.14 68.58 0) (mirror x) (unit 1) + (symbol (lib_id "SamacSys_Parts:CL05A106MQ5NUNC") (at 323.85 59.69 0) (mirror x) (unit 1) (in_bom yes) (on_board yes) (uuid af7dd307-2f93-4a33-8781-443b54c0c8b0) - (property "Reference" "C?" (id 0) (at 364.49 60.96 0) + (property "Reference" "C6" (id 0) (at 330.2 52.07 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Value" "10uF" (id 1) (at 364.49 73.66 0)) - (property "Footprint" "CAPC1005X70N" (id 2) (at 367.03 69.85 0) + (property "Value" "10uF" (id 1) (at 330.2 64.77 0)) + (property "Footprint" "CAPC1005X70N" (id 2) (at 332.74 60.96 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Datasheet" "https://datasheet.datasheetarchive.com/originals/distributors/Datasheets-DGA10/2406160.pdf" (id 3) (at 367.03 67.31 0) + (property "Datasheet" "https://datasheet.datasheetarchive.com/originals/distributors/Datasheets-DGA10/2406160.pdf" (id 3) (at 332.74 58.42 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Description" "CAP CER 10UF 6.3V X5R 0402" (id 4) (at 367.03 64.77 0) + (property "Description" "CAP CER 10UF 6.3V X5R 0402" (id 4) (at 332.74 55.88 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Height" "0.7" (id 5) (at 367.03 62.23 0) + (property "Height" "0.7" (id 5) (at 332.74 53.34 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Manufacturer_Name" "Samsung Electro-Mechanics" (id 6) (at 367.03 59.69 0) + (property "Manufacturer_Name" "Samsung Electro-Mechanics" (id 6) (at 332.74 50.8 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Manufacturer_Part_Number" "CL05A106MQ5NUNC" (id 7) (at 367.03 57.15 0) + (property "Manufacturer_Part_Number" "CL05A106MQ5NUNC" (id 7) (at 332.74 48.26 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Part Number" "187-CL05A106MQ5NUNC" (id 8) (at 367.03 54.61 0) + (property "Mouser Part Number" "187-CL05A106MQ5NUNC" (id 8) (at 332.74 45.72 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Samsung-Electro-Mechanics/CL05A106MQ5NUNC?qs=X6jEic%2FHinDK8vVLi1zwpw%3D%3D" (id 9) (at 367.03 52.07 0) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Samsung-Electro-Mechanics/CL05A106MQ5NUNC?qs=X6jEic%2FHinDK8vVLi1zwpw%3D%3D" (id 9) (at 332.74 43.18 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Arrow Part Number" "CL05A106MQ5NUNC" (id 10) (at 367.03 49.53 0) + (property "Arrow Part Number" "CL05A106MQ5NUNC" (id 10) (at 332.74 40.64 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Arrow Price/Stock" "https://www.arrow.com/en/products/cl05a106mq5nunc/samsung-electro-mechanics?region=nac" (id 11) (at 367.03 46.99 0) + (property "Arrow Price/Stock" "https://www.arrow.com/en/products/cl05a106mq5nunc/samsung-electro-mechanics?region=nac" (id 11) (at 332.74 38.1 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Testing Part Number" "" (id 12) (at 367.03 44.45 0) + (property "Mouser Testing Part Number" "" (id 12) (at 332.74 35.56 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Testing Price/Stock" "" (id 13) (at 367.03 41.91 0) + (property "Mouser Testing Price/Stock" "" (id 13) (at 332.74 33.02 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) (pin "1" (uuid 06d188a4-1d60-4071-ba69-45ea13c39d29)) (pin "2" (uuid 194b903e-ea46-449f-9ce3-2d8ffc98110b)) ) - (symbol (lib_id "power:+3V3") (at 80.01 50.8 0) (unit 1) + (symbol (lib_id "power:GND") (at 109.22 187.96 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid b0228299-0eb8-4913-914c-6bb8874973f2) + (property "Reference" "#PWR012" (id 0) (at 102.87 187.96 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 101.6 187.96 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 109.22 187.96 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 109.22 187.96 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 8b31461f-9258-4b24-bf04-551988a3ff62)) + ) + + (symbol (lib_id "power:GND") (at 121.92 99.06 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid b426c37a-1379-446e-9495-909e5e1b7e7c) + (property "Reference" "#PWR015" (id 0) (at 115.57 99.06 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 114.3 99.06 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 121.92 99.06 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 121.92 99.06 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid febd06ea-0093-41e2-890b-92fe5f7d6e6c)) + ) + + (symbol (lib_id "power:+3V3") (at 104.14 45.72 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid b4c9b2ff-e2bc-418f-9934-c324ddb4d3b4) - (property "Reference" "#PWR?" (id 0) (at 80.01 54.61 0) + (property "Reference" "#PWR08" (id 0) (at 104.14 49.53 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Value" "+3V3" (id 1) (at 80.01 45.72 0)) - (property "Footprint" "" (id 2) (at 80.01 50.8 0) + (property "Value" "+3V3" (id 1) (at 104.14 40.64 0)) + (property "Footprint" "" (id 2) (at 104.14 45.72 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Datasheet" "" (id 3) (at 80.01 50.8 0) + (property "Datasheet" "" (id 3) (at 104.14 45.72 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 6efc9d70-df04-495d-9537-e7b7a286e60a)) ) - (symbol (lib_name "+3V3_2") (lib_id "power:+3V3") (at 373.38 91.44 0) (unit 1) + (symbol (lib_name "+3V3_2") (lib_id "power:+3V3") (at 339.09 82.55 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid b9758d43-4478-4d55-a7c9-ed9a4bf533c0) - (property "Reference" "#PWR?" (id 0) (at 373.38 95.25 0) + (property "Reference" "#PWR034" (id 0) (at 339.09 86.36 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Value" "+LDO_3V3" (id 1) (at 373.38 86.36 0)) - (property "Footprint" "" (id 2) (at 373.38 91.44 0) + (property "Value" "+LDO_3V3" (id 1) (at 339.09 77.47 0)) + (property "Footprint" "" (id 2) (at 339.09 82.55 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Datasheet" "" (id 3) (at 373.38 91.44 0) + (property "Datasheet" "" (id 3) (at 339.09 82.55 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid d55187a5-e35e-48d2-9135-d5c2ef2079f8)) ) - (symbol (lib_id "power:GND") (at 370.84 165.1 0) (unit 1) + (symbol (lib_id "power:GND") (at 198.12 229.87 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bf987fbc-ba4d-49bc-a3b8-b761e961c8a0) + (property "Reference" "#PWR023" (id 0) (at 198.12 236.22 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 198.12 234.95 0)) + (property "Footprint" "" (id 2) (at 198.12 229.87 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 198.12 229.87 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid acb07e4b-f139-4e83-9d2a-e16c7202d8c0)) + ) + + (symbol (lib_id "power:GND") (at 336.55 156.21 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid c4d8aa40-d0b2-4c24-bb5b-f3da70ee45fa) - (property "Reference" "#PWR?" (id 0) (at 370.84 171.45 0) + (property "Reference" "#PWR033" (id 0) (at 336.55 162.56 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Value" "GND" (id 1) (at 370.84 170.18 0)) - (property "Footprint" "" (id 2) (at 370.84 165.1 0) + (property "Value" "GND" (id 1) (at 336.55 161.29 0)) + (property "Footprint" "" (id 2) (at 336.55 156.21 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Datasheet" "" (id 3) (at 370.84 165.1 0) + (property "Datasheet" "" (id 3) (at 336.55 156.21 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid e07b1487-484e-4adf-ab7e-fa9d3cbbf4c8)) ) - (symbol (lib_id "Switch:SW_Push") (at 69.85 63.5 0) (unit 1) + (symbol (lib_id "SamacSys_Parts:RC0402FR-0710KL") (at 104.14 63.5 90) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid d566e4f1-ec69-490e-9b19-ade2a4acde35) - (property "Reference" "SW?" (id 0) (at 69.85 55.88 0)) - (property "Value" "SW_Push" (id 1) (at 69.85 58.42 0)) - (property "Footprint" "" (id 2) (at 69.85 58.42 0) - (effects (font (size 1.27 1.27)) hide) + (uuid c56ef6a3-fb1c-466e-bd09-0da64fa514b7) + (property "Reference" "R1" (id 0) (at 106.68 53.3399 90) + (effects (font (size 1.27 1.27)) (justify right)) ) - (property "Datasheet" "~" (id 3) (at 69.85 58.42 0) - (effects (font (size 1.27 1.27)) hide) + (property "Value" "10k" (id 1) (at 106.68 55.8799 90) + (effects (font (size 1.27 1.27)) (justify right)) ) - (pin "1" (uuid 63269a10-30fb-4ba0-8bd0-c2b595e24ea4)) - (pin "2" (uuid 1a1e47a9-954e-49d6-94ba-2dc1753b6ae8)) + (property "Footprint" "RESC1005X40N" (id 2) (at 102.87 49.53 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "https://datasheet.datasheetarchive.com/originals/distributors/Datasheets_SAMA/902f9e387b938f871d31120f5fc1d65e.pdf" (id 3) (at 105.41 49.53 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Description" "YAGEO (PHYCOMP) - RC0402FR-0710KL. - RES, THICK FILM, 10K, 1%, 0.0625W, 0402" (id 4) (at 107.95 49.53 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Height" "0.4" (id 5) (at 110.49 49.53 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Name" "KEMET" (id 6) (at 113.03 49.53 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Part_Number" "RC0402FR-0710KL" (id 7) (at 115.57 49.53 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Part Number" "603-RC0402FR-0710KL" (id 8) (at 118.11 49.53 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/YAGEO/RC0402FR-0710KL?qs=I1mnnYJTTsxUoNwrUsQExA%3D%3D" (id 9) (at 120.65 49.53 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Part Number" "RC0402FR-0710KL" (id 10) (at 123.19 49.53 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Price/Stock" "https://www.arrow.com/en/products/rc0402fr-0710kl/yageo?region=europe" (id 11) (at 125.73 49.53 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Part Number" "" (id 12) (at 128.27 49.53 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Price/Stock" "" (id 13) (at 130.81 49.53 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid 7eacaa31-90aa-4981-b48b-458b3e9db968)) + (pin "2" (uuid f2080767-fbe8-4cbb-aa63-7b4078d0b01d)) ) - (symbol (lib_id "SamacSys_Parts:CM05X5R226M06AH080") (at 358.14 62.23 0) (unit 1) + (symbol (lib_id "SamacSys_Parts:CM05X5R226M06AH080") (at 127 53.34 90) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid d609f215-7193-4fc9-9a59-352d78285ffb) - (property "Reference" "C?" (id 0) (at 364.49 54.61 0) + (uuid d0890279-2725-4024-84d8-620ca5b5f28b) + (property "Reference" "C2" (id 0) (at 119.38 46.99 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Value" "22uF" (id 1) (at 364.49 57.15 0)) - (property "Footprint" "CAPC1005X80N" (id 2) (at 367.03 60.96 0) + (property "Value" "22uF" (id 1) (at 130.81 46.9899 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "CAPC1005X80N" (id 2) (at 125.73 44.45 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Datasheet" "https://www.mouser.in/datasheet/2/40/Kyocera_CM__STD__series2_052920-2585758.pdf" (id 3) (at 367.03 63.5 0) + (property "Datasheet" "https://www.mouser.in/datasheet/2/40/Kyocera_CM__STD__series2_052920-2585758.pdf" (id 3) (at 128.27 44.45 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Description" "Multilayer Ceramic Capacitors MLCC - SMD/SMT 22UF 6.3V 20% 0402" (id 4) (at 367.03 66.04 0) + (property "Description" "Multilayer Ceramic Capacitors MLCC - SMD/SMT 22UF 6.3V 20% 0402" (id 4) (at 130.81 44.45 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Height" "0.8" (id 5) (at 367.03 68.58 0) + (property "Height" "0.8" (id 5) (at 133.35 44.45 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Manufacturer_Name" "Kyocera AVX" (id 6) (at 367.03 71.12 0) + (property "Manufacturer_Name" "Kyocera AVX" (id 6) (at 135.89 44.45 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Manufacturer_Part_Number" "CM05X5R226M06AH080" (id 7) (at 367.03 73.66 0) + (property "Manufacturer_Part_Number" "CM05X5R226M06AH080" (id 7) (at 138.43 44.45 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Part Number" "346-CM05X5R226M6AH80" (id 8) (at 367.03 76.2 0) + (property "Mouser Part Number" "346-CM05X5R226M6AH80" (id 8) (at 140.97 44.45 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Kyocera-AVX/CM05X5R226M06AH080?qs=7MVldsJ5Uaw%2FGnmk7U90nQ%3D%3D" (id 9) (at 367.03 78.74 0) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Kyocera-AVX/CM05X5R226M06AH080?qs=7MVldsJ5Uaw%2FGnmk7U90nQ%3D%3D" (id 9) (at 143.51 44.45 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Arrow Part Number" "" (id 10) (at 367.03 81.28 0) + (property "Arrow Part Number" "" (id 10) (at 146.05 44.45 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Arrow Price/Stock" "" (id 11) (at 367.03 83.82 0) + (property "Arrow Price/Stock" "" (id 11) (at 148.59 44.45 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Testing Part Number" "" (id 12) (at 367.03 86.36 0) + (property "Mouser Testing Part Number" "" (id 12) (at 151.13 44.45 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Testing Price/Stock" "" (id 13) (at 367.03 88.9 0) + (property "Mouser Testing Price/Stock" "" (id 13) (at 153.67 44.45 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid 871193a8-9187-40b7-9d90-d04a4f220c77)) + (pin "2" (uuid a6b637ce-e9fd-40e1-ad5a-a3cfa57c6fae)) + ) + + (symbol (lib_id "power:GND") (at 138.43 232.41 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid d5b8e895-524b-47b2-908a-e00fd9232c21) + (property "Reference" "#PWR017" (id 0) (at 132.08 232.41 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 130.81 232.41 90) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 138.43 232.41 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 138.43 232.41 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid df42ebc6-38bc-4e17-8c6b-ebcb6c89dd10)) + ) + + (symbol (lib_id "SamacSys_Parts:CM05X5R226M06AH080") (at 323.85 53.34 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d609f215-7193-4fc9-9a59-352d78285ffb) + (property "Reference" "C5" (id 0) (at 330.2 45.72 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "22uF" (id 1) (at 330.2 48.26 0)) + (property "Footprint" "CAPC1005X80N" (id 2) (at 332.74 52.07 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "https://www.mouser.in/datasheet/2/40/Kyocera_CM__STD__series2_052920-2585758.pdf" (id 3) (at 332.74 54.61 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Description" "Multilayer Ceramic Capacitors MLCC - SMD/SMT 22UF 6.3V 20% 0402" (id 4) (at 332.74 57.15 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Height" "0.8" (id 5) (at 332.74 59.69 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Name" "Kyocera AVX" (id 6) (at 332.74 62.23 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Part_Number" "CM05X5R226M06AH080" (id 7) (at 332.74 64.77 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Part Number" "346-CM05X5R226M6AH80" (id 8) (at 332.74 67.31 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Kyocera-AVX/CM05X5R226M06AH080?qs=7MVldsJ5Uaw%2FGnmk7U90nQ%3D%3D" (id 9) (at 332.74 69.85 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Part Number" "" (id 10) (at 332.74 72.39 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Price/Stock" "" (id 11) (at 332.74 74.93 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Part Number" "" (id 12) (at 332.74 77.47 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Price/Stock" "" (id 13) (at 332.74 80.01 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) (pin "1" (uuid 4c06bee4-011d-493f-9ad2-ae69f08810c2)) (pin "2" (uuid 2a752d78-0292-4b4d-a3ac-4b334afa21ef)) ) - (symbol (lib_id "SamacSys_Parts:MMDT2907A-7-F") (at 447.04 130.81 0) (unit 1) + (symbol (lib_id "SamacSys_Parts:MMDT2907A-7-F") (at 412.75 121.92 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid d6d7c070-4b21-43f9-9c3f-ff8fca33c900) - (property "Reference" "U?" (id 0) (at 458.47 123.19 0)) - (property "Value" "MMDT2907A-7-F" (id 1) (at 458.47 125.73 0)) - (property "Footprint" "SOT65P210X110-6N" (id 2) (at 466.09 128.27 0) + (property "Reference" "U3" (id 0) (at 424.18 114.3 0)) + (property "Value" "MMDT2907A-7-F" (id 1) (at 424.18 116.84 0)) + (property "Footprint" "SOT65P210X110-6N" (id 2) (at 431.8 119.38 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Datasheet" "https://www.digikey.com/product-detail/en/diodes-incorporated/MMDT2907A-7-F/MMDT2907A-FDICT-ND/755507" (id 3) (at 466.09 130.81 0) + (property "Datasheet" "https://www.digikey.com/product-detail/en/diodes-incorporated/MMDT2907A-7-F/MMDT2907A-FDICT-ND/755507" (id 3) (at 431.8 121.92 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Description" "Diodes Inc MMDT2907A-7-F Dual PNP Bipolar Transistor, -600 mA, -60 V, 6-Pin SOT-363" (id 4) (at 466.09 133.35 0) + (property "Description" "Diodes Inc MMDT2907A-7-F Dual PNP Bipolar Transistor, -600 mA, -60 V, 6-Pin SOT-363" (id 4) (at 431.8 124.46 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Height" "1.1" (id 5) (at 466.09 135.89 0) + (property "Height" "1.1" (id 5) (at 431.8 127 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Manufacturer_Name" "Diodes Inc." (id 6) (at 466.09 138.43 0) + (property "Manufacturer_Name" "Diodes Inc." (id 6) (at 431.8 129.54 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Manufacturer_Part_Number" "MMDT2907A-7-F" (id 7) (at 466.09 140.97 0) + (property "Manufacturer_Part_Number" "MMDT2907A-7-F" (id 7) (at 431.8 132.08 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Part Number" "621-MMDT2907A-F" (id 8) (at 466.09 143.51 0) + (property "Mouser Part Number" "621-MMDT2907A-F" (id 8) (at 431.8 134.62 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Diodes-Incorporated/MMDT2907A-7-F?qs=r2lzopzdS3aWhNHiAefFpg%3D%3D" (id 9) (at 466.09 146.05 0) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Diodes-Incorporated/MMDT2907A-7-F?qs=r2lzopzdS3aWhNHiAefFpg%3D%3D" (id 9) (at 431.8 137.16 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Arrow Part Number" "MMDT2907A-7-F" (id 10) (at 466.09 148.59 0) + (property "Arrow Part Number" "MMDT2907A-7-F" (id 10) (at 431.8 139.7 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Arrow Price/Stock" "https://www.arrow.com/en/products/mmdt2907a-7-f/diodes-incorporated" (id 11) (at 466.09 151.13 0) + (property "Arrow Price/Stock" "https://www.arrow.com/en/products/mmdt2907a-7-f/diodes-incorporated" (id 11) (at 431.8 142.24 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Testing Part Number" "" (id 12) (at 466.09 153.67 0) + (property "Mouser Testing Part Number" "" (id 12) (at 431.8 144.78 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Testing Price/Stock" "" (id 13) (at 466.09 156.21 0) + (property "Mouser Testing Price/Stock" "" (id 13) (at 431.8 147.32 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) (pin "1" (uuid 8fea077e-8bf5-4230-8695-7f969a4307e7)) @@ -3993,7 +5417,7 @@ (symbol (lib_id "power:GND") (at 38.1 220.98 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid d89013f9-d116-49ba-99c6-65da9c27ad5e) - (property "Reference" "#PWR?" (id 0) (at 38.1 227.33 0) + (property "Reference" "#PWR04" (id 0) (at 38.1 227.33 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 38.1 226.06 0)) @@ -4006,239 +5430,543 @@ (pin "1" (uuid 39493bde-31a8-4c57-b02f-97907cb75e97)) ) - (symbol (lib_id "power:GND") (at 132.08 52.07 0) (unit 1) + (symbol (lib_id "power:GND") (at 142.24 53.34 90) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid da9618c6-0d08-4aa7-b4b3-c668ac316540) - (property "Reference" "#PWR?" (id 0) (at 132.08 58.42 0) + (property "Reference" "#PWR018" (id 0) (at 148.59 53.34 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Value" "GND" (id 1) (at 132.08 57.15 0)) - (property "Footprint" "" (id 2) (at 132.08 52.07 0) + (property "Value" "GND" (id 1) (at 147.32 53.34 0)) + (property "Footprint" "" (id 2) (at 142.24 53.34 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Datasheet" "" (id 3) (at 132.08 52.07 0) + (property "Datasheet" "" (id 3) (at 142.24 53.34 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 1be580a9-1212-43e5-b224-473aab4d2d12)) ) - (symbol (lib_id "power:GND") (at 439.42 165.1 0) (unit 1) + (symbol (lib_id "power:GND") (at 405.13 156.21 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid dc54e9fb-29a7-4274-aa0e-1e10a466ca6e) - (property "Reference" "#PWR?" (id 0) (at 439.42 171.45 0) + (property "Reference" "#PWR038" (id 0) (at 405.13 162.56 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Value" "GND" (id 1) (at 439.42 170.18 0)) - (property "Footprint" "" (id 2) (at 439.42 165.1 0) + (property "Value" "GND" (id 1) (at 405.13 161.29 0)) + (property "Footprint" "" (id 2) (at 405.13 156.21 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Datasheet" "" (id 3) (at 439.42 165.1 0) + (property "Datasheet" "" (id 3) (at 405.13 156.21 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid c2e65032-4f56-4b5e-a211-9127536fa6fc)) ) - (symbol (lib_id "power:+5V") (at 477.52 91.44 0) (unit 1) + (symbol (lib_id "power:+5V") (at 443.23 82.55 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid dc6fa5f2-bd40-4e78-9fd9-68974bef9777) - (property "Reference" "#PWR?" (id 0) (at 477.52 95.25 0) + (property "Reference" "#PWR040" (id 0) (at 443.23 86.36 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Value" "+5V" (id 1) (at 477.52 86.36 0)) - (property "Footprint" "" (id 2) (at 477.52 91.44 0) + (property "Value" "+5V" (id 1) (at 443.23 77.47 0)) + (property "Footprint" "" (id 2) (at 443.23 82.55 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Datasheet" "" (id 3) (at 477.52 91.44 0) + (property "Datasheet" "" (id 3) (at 443.23 82.55 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 295d58a1-e084-4df2-a7d7-286c88cf53fb)) ) - (symbol (lib_id "power:GND") (at 358.14 69.85 0) (unit 1) + (symbol (lib_id "Connector_Generic:Conn_01x08") (at 53.34 168.91 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid deda9295-32a1-4f05-8f75-91c916d877b5) + (property "Reference" "J2" (id 0) (at 63.5 161.29 0)) + (property "Value" "X6511WVS-08H-C60D48R2" (id 1) (at 63.5 163.83 0)) + (property "Footprint" "HUSRSP8W66P254_2000X250X850P" (id 2) (at 53.34 168.91 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 53.34 168.91 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Description" "Gold 250V 3A Brick nogging Square Pins 2.5mm 260 6mm -40~{} 105 1 8 2.54mm Black Brass 1x8P SMD,P=2.54mm() Pin Headers ROHS" (id 4) (at 69.85 171.45 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Height" "" (id 5) (at 69.85 173.99 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Name" "XKB Connectivity" (id 6) (at 69.85 176.53 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Part_Number" "X6511WVS-08H-C60D48R2" (id 7) (at 69.85 179.07 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Part Number" "" (id 8) (at 69.85 181.61 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Price/Stock" "" (id 9) (at 69.85 184.15 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Part Number" "" (id 10) (at 69.85 186.69 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Price/Stock" "" (id 11) (at 69.85 189.23 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Part Number" "" (id 12) (at 69.85 191.77 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Price/Stock" "" (id 13) (at 69.85 194.31 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid 2573058a-063f-4034-929d-a93ad8e228bf)) + (pin "2" (uuid 2ea6ba95-bc05-421b-b80a-c32de5243d4d)) + (pin "3" (uuid f2602e05-a167-462e-a4b0-346ee47ec6d6)) + (pin "4" (uuid d26b9115-4061-4fff-aa48-f045470f9962)) + (pin "5" (uuid 6d51e091-c9c8-4fc7-a15b-3bea570a1120)) + (pin "6" (uuid b31271bc-2fc6-4590-b677-fee911a7cb8c)) + (pin "7" (uuid 3e9e7e48-868b-455f-af71-abc3b526878b)) + (pin "8" (uuid 1539a18b-ca04-401d-8add-621410ae41c6)) + ) + + (symbol (lib_id "power:GND") (at 323.85 60.96 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid e21c1973-069e-49a3-b09e-ab1fd5fa7927) - (property "Reference" "#PWR?" (id 0) (at 358.14 76.2 0) + (property "Reference" "#PWR031" (id 0) (at 323.85 67.31 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Value" "GND" (id 1) (at 358.14 74.93 0)) - (property "Footprint" "" (id 2) (at 358.14 69.85 0) + (property "Value" "GND" (id 1) (at 323.85 66.04 0)) + (property "Footprint" "" (id 2) (at 323.85 60.96 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Datasheet" "" (id 3) (at 358.14 69.85 0) + (property "Datasheet" "" (id 3) (at 323.85 60.96 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 28599a98-c8de-43bc-89c6-b61c44286c02)) ) - (symbol (lib_id "SamacSys_Parts:RC0402FR-07100KL") (at 370.84 161.29 90) (unit 1) + (symbol (lib_id "power:GND") (at 40.64 275.59 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e5c9a6c1-e7b8-4f39-9b87-81de7c7964c1) + (property "Reference" "#PWR06" (id 0) (at 40.64 281.94 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 40.64 280.67 0)) + (property "Footprint" "" (id 2) (at 40.64 275.59 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 40.64 275.59 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 04091864-4ca0-479e-9aa9-085d54db9f83)) + ) + + (symbol (lib_id "SamacSys_Parts:RC0402FR-07100KL") (at 336.55 152.4 90) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid e70859b0-5640-4eb1-b309-a9cceea26974) - (property "Reference" "R?" (id 0) (at 373.38 151.1299 90) + (property "Reference" "R9" (id 0) (at 339.09 142.2399 90) (effects (font (size 1.27 1.27)) (justify right)) ) - (property "Value" "100K" (id 1) (at 373.38 153.6699 90) + (property "Value" "100K" (id 1) (at 339.09 144.7799 90) (effects (font (size 1.27 1.27)) (justify right)) ) - (property "Footprint" "RESC1005X40N" (id 2) (at 369.57 147.32 0) + (property "Footprint" "RESC1005X40N" (id 2) (at 335.28 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Datasheet" "https://datasheet.datasheetarchive.com/originals/distributors/Datasheets_SAMA/902f9e387b938f871d31120f5fc1d65e.pdf" (id 3) (at 372.11 147.32 0) + (property "Datasheet" "https://datasheet.datasheetarchive.com/originals/distributors/Datasheets_SAMA/902f9e387b938f871d31120f5fc1d65e.pdf" (id 3) (at 337.82 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Description" "GENERAL PURPOSE CHIP RESISTORS" (id 4) (at 374.65 147.32 0) + (property "Description" "GENERAL PURPOSE CHIP RESISTORS" (id 4) (at 340.36 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Height" "0.4" (id 5) (at 377.19 147.32 0) + (property "Height" "0.4" (id 5) (at 342.9 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Manufacturer_Name" "KEMET" (id 6) (at 379.73 147.32 0) + (property "Manufacturer_Name" "KEMET" (id 6) (at 345.44 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Manufacturer_Part_Number" "RC0402FR-07100KL" (id 7) (at 382.27 147.32 0) + (property "Manufacturer_Part_Number" "RC0402FR-07100KL" (id 7) (at 347.98 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Part Number" "603-RC0402FR-07100KL" (id 8) (at 384.81 147.32 0) + (property "Mouser Part Number" "603-RC0402FR-07100KL" (id 8) (at 350.52 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/YAGEO/RC0402FR-07100KL?qs=mnq%2FyloZIXzTlUn7JAHSWg%3D%3D" (id 9) (at 387.35 147.32 0) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/YAGEO/RC0402FR-07100KL?qs=mnq%2FyloZIXzTlUn7JAHSWg%3D%3D" (id 9) (at 353.06 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Arrow Part Number" "RC0402FR-07100KL" (id 10) (at 389.89 147.32 0) + (property "Arrow Part Number" "RC0402FR-07100KL" (id 10) (at 355.6 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Arrow Price/Stock" "https://www.arrow.com/en/products/rc0402fr-07100kl/yageo" (id 11) (at 392.43 147.32 0) + (property "Arrow Price/Stock" "https://www.arrow.com/en/products/rc0402fr-07100kl/yageo" (id 11) (at 358.14 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Testing Part Number" "" (id 12) (at 394.97 147.32 0) + (property "Mouser Testing Part Number" "" (id 12) (at 360.68 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Testing Price/Stock" "" (id 13) (at 397.51 147.32 0) + (property "Mouser Testing Price/Stock" "" (id 13) (at 363.22 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) (pin "1" (uuid 94aeebdf-5d45-4036-bd8c-135750a0f993)) (pin "2" (uuid cdeb8938-4b92-4d44-8ebd-5b182bba75bb)) ) - (symbol (lib_id "power:GND") (at 228.6 190.5 0) (unit 1) + (symbol (lib_id "power:GND") (at 214.63 175.26 180) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid ea83994b-d771-42d8-9d34-4c6baa538448) - (property "Reference" "#PWR?" (id 0) (at 228.6 196.85 0) + (property "Reference" "#PWR024" (id 0) (at 214.63 168.91 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Value" "GND" (id 1) (at 228.6 195.58 0)) - (property "Footprint" "" (id 2) (at 228.6 190.5 0) + (property "Value" "GND" (id 1) (at 214.63 170.18 0)) + (property "Footprint" "" (id 2) (at 214.63 175.26 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Datasheet" "" (id 3) (at 228.6 190.5 0) + (property "Datasheet" "" (id 3) (at 214.63 175.26 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 231aa175-3eac-4b49-9f72-ff597403eb76)) ) - (symbol (lib_id "power:+3V3") (at 160.02 172.72 0) (unit 1) + (symbol (lib_id "power:+3V3") (at 167.64 172.72 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid eaf6f8d8-69f0-4ebb-8a2e-461c2a3bef9b) - (property "Reference" "#PWR?" (id 0) (at 160.02 176.53 0) + (property "Reference" "#PWR021" (id 0) (at 167.64 176.53 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Value" "+3V3" (id 1) (at 160.02 167.64 0)) - (property "Footprint" "" (id 2) (at 160.02 172.72 0) + (property "Value" "+3V3" (id 1) (at 167.64 167.64 0)) + (property "Footprint" "" (id 2) (at 167.64 172.72 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Datasheet" "" (id 3) (at 160.02 172.72 0) + (property "Datasheet" "" (id 3) (at 167.64 172.72 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 1768ce8a-af14-4fff-8d8e-0b932b64bbc4)) ) - (symbol (lib_id "Device:R") (at 80.01 55.88 0) (unit 1) + (symbol (lib_id "power:GND") (at 116.84 60.96 180) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid ed41245f-e4c9-458c-b7a4-4a54f1cc652d) - (property "Reference" "R?" (id 0) (at 82.55 54.6099 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "10k" (id 1) (at 82.55 57.1499 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "" (id 2) (at 78.232 55.88 90) + (uuid ed9725c6-c071-4ff7-9056-2a3202d7f611) + (property "Reference" "#PWR014" (id 0) (at 116.84 54.61 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Datasheet" "~" (id 3) (at 80.01 55.88 0) + (property "Value" "GND" (id 1) (at 119.38 59.6899 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 116.84 60.96 0) (effects (font (size 1.27 1.27)) hide) ) - (pin "1" (uuid 776bb4c6-0407-4f81-aac1-0a451f701116)) - (pin "2" (uuid 2d1c3361-75a5-43e0-b6a4-32b8852cf7b7)) + (property "Datasheet" "" (id 3) (at 116.84 60.96 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 5b6e084d-98fe-48bc-b76e-ae7c9bb125c9)) ) - (symbol (lib_id "power:+ext_3V3") (at 306.07 91.44 0) (unit 1) + (symbol (lib_id "SamacSys_Parts:RC0402FR-071KL") (at 147.32 181.61 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ef58a6fc-042d-4784-bfee-c59b8b796331) + (property "Reference" "R4" (id 0) (at 156.21 175.26 0)) + (property "Value" "1K" (id 1) (at 156.21 177.8 0)) + (property "Footprint" "RESC1005X40N" (id 2) (at 161.29 180.34 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "https://www.yageo.com/upload/media/product/productsearch/datasheet/rchip/PYu-RC_Group_51_RoHS_L_11.pdf" (id 3) (at 161.29 182.88 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Description" "GENERAL PURPOSE CHIP RESISTORS" (id 4) (at 161.29 185.42 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Height" "0.4" (id 5) (at 161.29 187.96 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Name" "KEMET" (id 6) (at 161.29 190.5 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Part_Number" "RC0402FR-071KL" (id 7) (at 161.29 193.04 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Part Number" "603-RC0402FR-071KL" (id 8) (at 161.29 195.58 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/YAGEO/RC0402FR-071KL?qs=V1yeUXFNrknDEmWLmm5v6g%3D%3D" (id 9) (at 161.29 198.12 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Part Number" "RC0402FR-071KL" (id 10) (at 161.29 200.66 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Price/Stock" "https://www.arrow.com/en/products/rc0402fr-071kl/yageo?region=nac" (id 11) (at 161.29 203.2 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Part Number" "" (id 12) (at 161.29 205.74 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Price/Stock" "" (id 13) (at 161.29 208.28 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid 56befa67-052b-4854-8f25-7de4fd5329e7)) + (pin "2" (uuid 2e56e89a-cdae-4807-bcc1-cb261492b5cc)) + ) + + (symbol (lib_id "power:+ext_3V3") (at 271.78 82.55 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid f054fe2f-7d3e-44f4-841d-e2b4aa6c7669) - (property "Reference" "#PWR?" (id 0) (at 306.07 95.25 0) + (property "Reference" "#PWR028" (id 0) (at 271.78 86.36 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Value" "+ext_3V3" (id 1) (at 306.07 86.36 0)) - (property "Footprint" "" (id 2) (at 306.07 91.44 0) + (property "Value" "+ext_3V3" (id 1) (at 271.78 77.47 0)) + (property "Footprint" "" (id 2) (at 271.78 82.55 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Datasheet" "" (id 3) (at 306.07 91.44 0) + (property "Datasheet" "" (id 3) (at 271.78 82.55 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 9ceb8f0e-aec2-4b24-98f8-78cfa395ff75)) ) - (symbol (lib_id "SamacSys_Parts:RC0402FR-07100KL") (at 439.42 161.29 90) (unit 1) + (symbol (lib_id "SamacSys_Parts:3220-10-0300-00") (at 41.91 261.62 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f0aedaf8-4937-4572-9b55-bd8053dfd361) + (property "Reference" "J1" (id 0) (at 53.34 254 0)) + (property "Value" "3220-10-0300-00" (id 1) (at 53.34 256.54 0)) + (property "Footprint" "322010030000" (id 2) (at 60.96 259.08 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "http://www.cnctech.us/pdfs/3220-XX-0300-00-TR_.PDF" (id 3) (at 60.96 261.62 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Description" "Conn Shrouded Header (4 Sides) HDR 10 POS 1.27mm Solder ST SMD" (id 4) (at 60.96 264.16 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Height" "5.45" (id 5) (at 60.96 266.7 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Name" "CNC Tech" (id 6) (at 60.96 269.24 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Part_Number" "3220-10-0300-00" (id 7) (at 60.96 271.78 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Part Number" "" (id 8) (at 60.96 274.32 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Price/Stock" "" (id 9) (at 60.96 276.86 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Part Number" "3220-10-0300-00" (id 10) (at 60.96 279.4 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Price/Stock" "https://www.arrow.com/en/products/3220-10-0300-00/cnc-tech-llc?region=nac" (id 11) (at 60.96 281.94 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Part Number" "" (id 12) (at 60.96 284.48 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Price/Stock" "" (id 13) (at 60.96 287.02 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid 7b06282d-0cc6-4b16-9ef4-8fdf9e32ac86)) + (pin "10" (uuid 03f22832-f465-46a3-9088-aad5a549ab27)) + (pin "2" (uuid bfbbf896-793e-4ea9-a6d7-4003d7a08420)) + (pin "3" (uuid 3e3c9726-678e-4c09-917e-11c7c8ed8397)) + (pin "4" (uuid fe2af1c9-d25d-4c59-b784-efea56504e49)) + (pin "5" (uuid 66269a2a-93d0-419b-8e22-637953ed07e6)) + (pin "6" (uuid 6219308a-480a-4a84-89f9-270411e56ecb)) + (pin "7" (uuid 25df192b-4788-42ef-a1c7-06bdcc59b3dd)) + (pin "8" (uuid a6f489ad-d926-441a-97d3-a3227c6ab1ca)) + (pin "9" (uuid 7b314d68-eb95-4082-a875-0bda61c6e57e)) + ) + + (symbol (lib_id "SamacSys_Parts:RC0402FR-0710KL") (at 193.04 63.5 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f59a623c-bec0-4cec-af74-27e3565a9f8a) + (property "Reference" "R6" (id 0) (at 195.58 53.3399 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 195.58 55.8799 90) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "RESC1005X40N" (id 2) (at 191.77 49.53 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "https://datasheet.datasheetarchive.com/originals/distributors/Datasheets_SAMA/902f9e387b938f871d31120f5fc1d65e.pdf" (id 3) (at 194.31 49.53 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Description" "YAGEO (PHYCOMP) - RC0402FR-0710KL. - RES, THICK FILM, 10K, 1%, 0.0625W, 0402" (id 4) (at 196.85 49.53 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Height" "0.4" (id 5) (at 199.39 49.53 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Name" "KEMET" (id 6) (at 201.93 49.53 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Part_Number" "RC0402FR-0710KL" (id 7) (at 204.47 49.53 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Part Number" "603-RC0402FR-0710KL" (id 8) (at 207.01 49.53 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/YAGEO/RC0402FR-0710KL?qs=I1mnnYJTTsxUoNwrUsQExA%3D%3D" (id 9) (at 209.55 49.53 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Part Number" "RC0402FR-0710KL" (id 10) (at 212.09 49.53 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Price/Stock" "https://www.arrow.com/en/products/rc0402fr-0710kl/yageo?region=europe" (id 11) (at 214.63 49.53 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Part Number" "" (id 12) (at 217.17 49.53 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Price/Stock" "" (id 13) (at 219.71 49.53 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid 87da8772-fff6-4e34-88eb-cf47b0a108b4)) + (pin "2" (uuid c0d50e1a-1003-4289-93df-fb31c87bb322)) + ) + + (symbol (lib_id "Connector_Generic:Conn_01x11") (at 114.3 177.8 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid f7a03a4d-2cec-4a58-8c55-53b9e06b133e) + (property "Reference" "J5" (id 0) (at 111.76 160.02 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Conn_01x11" (id 1) (at 105.41 162.56 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 114.3 177.8 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 114.3 177.8 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d427a9de-64a3-4fa2-8330-00060f8ff68a)) + (pin "10" (uuid 191f106e-6d7c-4f14-8b5d-9a255bb7fa1e)) + (pin "11" (uuid 39c4ef14-6709-4ebd-8cff-c8f9b2234f8a)) + (pin "2" (uuid f0d8aabc-df1c-46f6-a264-a9d6de0b726b)) + (pin "3" (uuid 3056b734-c26c-4172-a0d6-4fd5afb21991)) + (pin "4" (uuid 0d2110c1-fa90-4eb0-beba-79ffcf128c4c)) + (pin "5" (uuid 30a20653-6c5b-48a4-90b1-b73a1d110977)) + (pin "6" (uuid abc3822b-7518-445d-9dcd-14558c822806)) + (pin "7" (uuid 35b72f8a-a248-4b67-b847-0b143e4deda2)) + (pin "8" (uuid da3f17ac-179e-4e76-bb9e-ecfb84348767)) + (pin "9" (uuid c9eef263-7718-4c6e-bcb0-2c17eff3bb7a)) + ) + + (symbol (lib_id "SamacSys_Parts:RC0402FR-07100KL") (at 405.13 152.4 90) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid f825078a-0b67-447d-a4bb-7e5f06e86419) - (property "Reference" "R?" (id 0) (at 441.96 151.1299 90) + (property "Reference" "R11" (id 0) (at 407.67 142.2399 90) (effects (font (size 1.27 1.27)) (justify right)) ) - (property "Value" "100K" (id 1) (at 441.96 153.6699 90) + (property "Value" "100K" (id 1) (at 407.67 144.7799 90) (effects (font (size 1.27 1.27)) (justify right)) ) - (property "Footprint" "RESC1005X40N" (id 2) (at 438.15 147.32 0) + (property "Footprint" "RESC1005X40N" (id 2) (at 403.86 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Datasheet" "https://datasheet.datasheetarchive.com/originals/distributors/Datasheets_SAMA/902f9e387b938f871d31120f5fc1d65e.pdf" (id 3) (at 440.69 147.32 0) + (property "Datasheet" "https://datasheet.datasheetarchive.com/originals/distributors/Datasheets_SAMA/902f9e387b938f871d31120f5fc1d65e.pdf" (id 3) (at 406.4 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Description" "GENERAL PURPOSE CHIP RESISTORS" (id 4) (at 443.23 147.32 0) + (property "Description" "GENERAL PURPOSE CHIP RESISTORS" (id 4) (at 408.94 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Height" "0.4" (id 5) (at 445.77 147.32 0) + (property "Height" "0.4" (id 5) (at 411.48 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Manufacturer_Name" "KEMET" (id 6) (at 448.31 147.32 0) + (property "Manufacturer_Name" "KEMET" (id 6) (at 414.02 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Manufacturer_Part_Number" "RC0402FR-07100KL" (id 7) (at 450.85 147.32 0) + (property "Manufacturer_Part_Number" "RC0402FR-07100KL" (id 7) (at 416.56 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Part Number" "603-RC0402FR-07100KL" (id 8) (at 453.39 147.32 0) + (property "Mouser Part Number" "603-RC0402FR-07100KL" (id 8) (at 419.1 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/YAGEO/RC0402FR-07100KL?qs=mnq%2FyloZIXzTlUn7JAHSWg%3D%3D" (id 9) (at 455.93 147.32 0) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/YAGEO/RC0402FR-07100KL?qs=mnq%2FyloZIXzTlUn7JAHSWg%3D%3D" (id 9) (at 421.64 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Arrow Part Number" "RC0402FR-07100KL" (id 10) (at 458.47 147.32 0) + (property "Arrow Part Number" "RC0402FR-07100KL" (id 10) (at 424.18 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Arrow Price/Stock" "https://www.arrow.com/en/products/rc0402fr-07100kl/yageo" (id 11) (at 461.01 147.32 0) + (property "Arrow Price/Stock" "https://www.arrow.com/en/products/rc0402fr-07100kl/yageo" (id 11) (at 426.72 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Testing Part Number" "" (id 12) (at 463.55 147.32 0) + (property "Mouser Testing Part Number" "" (id 12) (at 429.26 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) - (property "Mouser Testing Price/Stock" "" (id 13) (at 466.09 147.32 0) + (property "Mouser Testing Price/Stock" "" (id 13) (at 431.8 138.43 0) (effects (font (size 1.27 1.27)) (justify left) hide) ) (pin "1" (uuid fc16f4bb-3de0-49a1-b6d0-7c3b7ce4e91c)) (pin "2" (uuid dac5823c-6a2b-41de-81c7-9321fbabb82a)) ) + (symbol (lib_id "SamacSys_Parts:SKRPABE010") (at 74.93 63.5 0) (mirror y) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f9b51342-dbdf-4188-bfea-3a3f82fcc6ca) + (property "Reference" "S1" (id 0) (at 60.96 55.88 0)) + (property "Value" "SKRPABE010" (id 1) (at 60.96 58.42 0)) + (property "Footprint" "SKRPABE010" (id 2) (at 50.8 60.96 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "https://datasheet.lcsc.com/szlcsc/ALPS-Electric-SKRPABE010_C115360.pdf" (id 3) (at 50.8 63.5 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Description" "Switch Tactile N.O. SPST Button J-Bend 0.05A 16VDC 1.57N SMD Automotive T/R" (id 4) (at 50.8 66.04 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Height" "2.5" (id 5) (at 50.8 68.58 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Name" "ALPS Electric" (id 6) (at 50.8 71.12 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Part_Number" "SKRPABE010" (id 7) (at 50.8 73.66 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Part Number" "688-SKRPAB" (id 8) (at 50.8 76.2 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/Alps-Alpine/SKRPABE010?qs=m0BA540hBPe1GpcSf%2FZ5Yw%3D%3D" (id 9) (at 50.8 78.74 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Part Number" "" (id 10) (at 50.8 81.28 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Price/Stock" "" (id 11) (at 50.8 83.82 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Part Number" "" (id 12) (at 50.8 86.36 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Price/Stock" "" (id 13) (at 50.8 88.9 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid 61ef3a03-7fbc-4198-981b-cbe240dfb186)) + (pin "2" (uuid e6e2708b-5185-444a-8caa-79b76829eb84)) + (pin "3" (uuid 66c46bc9-b158-4993-b89b-ce2a9347e32c)) + (pin "4" (uuid f55bbf24-1baf-4c51-95e9-527bdd087158)) + ) + + (symbol (lib_id "power:GND") (at 160.02 121.92 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fb4a82ab-fad5-4134-bb57-c6e9036e7754) + (property "Reference" "#PWR020" (id 0) (at 160.02 128.27 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 160.02 127 0)) + (property "Footprint" "" (id 2) (at 160.02 121.92 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 160.02 121.92 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 99f0c5fe-f220-4d9e-b577-9a8a622ac9f4)) + ) + (symbol (lib_id "power:GND") (at 38.1 179.07 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid fb596e4c-6b9f-4b73-8d91-d86ee0192628) - (property "Reference" "#PWR?" (id 0) (at 38.1 185.42 0) + (property "Reference" "#PWR02" (id 0) (at 38.1 185.42 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "GND" (id 1) (at 38.1 184.15 0)) @@ -4251,17 +5979,17 @@ (pin "1" (uuid c6292ba4-3bb9-4bcf-a265-d08515f3eab1)) ) - (symbol (lib_id "power:GND") (at 303.53 165.1 0) (unit 1) + (symbol (lib_id "power:GND") (at 269.24 156.21 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid fbe4bd3f-6e68-4ddd-9eaa-8e13fe897dce) - (property "Reference" "#PWR?" (id 0) (at 303.53 171.45 0) + (property "Reference" "#PWR027" (id 0) (at 269.24 162.56 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Value" "GND" (id 1) (at 303.53 170.18 0)) - (property "Footprint" "" (id 2) (at 303.53 165.1 0) + (property "Value" "GND" (id 1) (at 269.24 161.29 0)) + (property "Footprint" "" (id 2) (at 269.24 156.21 0) (effects (font (size 1.27 1.27)) hide) ) - (property "Datasheet" "" (id 3) (at 303.53 165.1 0) + (property "Datasheet" "" (id 3) (at 269.24 156.21 0) (effects (font (size 1.27 1.27)) hide) ) (pin "1" (uuid 36ad46d5-e3b0-4cdb-9e97-e637057c7ac6)) @@ -4270,7 +5998,7 @@ (symbol (lib_id "power:+5V") (at 38.1 161.29 0) (unit 1) (in_bom yes) (on_board yes) (fields_autoplaced) (uuid fbf1746c-497f-4c7f-9909-00b91ce3f272) - (property "Reference" "#PWR?" (id 0) (at 38.1 165.1 0) + (property "Reference" "#PWR01" (id 0) (at 38.1 165.1 0) (effects (font (size 1.27 1.27)) hide) ) (property "Value" "+5V" (id 1) (at 38.1 156.21 0)) @@ -4283,187 +6011,336 @@ (pin "1" (uuid a21ebc3e-6ac8-429c-a243-8da30a66977c)) ) + (symbol (lib_id "Connector_Generic:Conn_01x10") (at 53.34 208.28 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fcf19bfc-528d-4203-b762-ed6134d2203c) + (property "Reference" "J3" (id 0) (at 64.77 200.66 0)) + (property "Value" "DZ254S-11-10-48" (id 1) (at 64.77 203.2 0)) + (property "Footprint" "HUSRSP10W66P254_2500X250X850P" (id 2) (at 53.34 208.28 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 53.34 208.28 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Description" "Brick nogging Square Pins 1 10 2.54mm 1x10P SMD,P=2.54mm() Pin Headers ROHS" (id 4) (at 72.39 210.82 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Height" "" (id 5) (at 72.39 213.36 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Name" "DEALON" (id 6) (at 72.39 215.9 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Part_Number" "DZ254S-11-10-48" (id 7) (at 72.39 218.44 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Part Number" "" (id 8) (at 72.39 220.98 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Price/Stock" "" (id 9) (at 72.39 223.52 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Part Number" "" (id 10) (at 72.39 226.06 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Price/Stock" "" (id 11) (at 72.39 228.6 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Part Number" "" (id 12) (at 72.39 231.14 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Price/Stock" "" (id 13) (at 72.39 233.68 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid e7f46af1-add2-4940-9936-74e41b93e4b6)) + (pin "10" (uuid d33963d5-0a15-4d81-8110-73639cfacf84)) + (pin "2" (uuid 49017e2c-b99e-43bb-adf3-fcbdf536c7f1)) + (pin "3" (uuid 1ff961d4-8143-43ac-9217-c8c0e81824a9)) + (pin "4" (uuid e76b599a-660f-4265-b33f-a1e6c64252ba)) + (pin "5" (uuid b2489c1b-f269-4ec4-a249-e972e159750d)) + (pin "6" (uuid 49bbcd72-76a0-4396-9778-ba3951cc11a1)) + (pin "7" (uuid 53b8e642-8b39-47e5-ad5e-08164d8dfca2)) + (pin "8" (uuid 7955b100-574d-4206-affc-648a2e220f2c)) + (pin "9" (uuid 5e3346ed-d78a-4514-9dee-27b19e9e6e6a)) + ) + + (symbol (lib_id "SamacSys_Parts:RC0402FR-071KL") (at 147.32 186.69 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid fff9049b-4a63-4738-88ac-bce13f2bd6ba) + (property "Reference" "R5" (id 0) (at 156.21 180.34 0)) + (property "Value" "1K" (id 1) (at 156.21 182.88 0)) + (property "Footprint" "RESC1005X40N" (id 2) (at 161.29 185.42 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Datasheet" "https://www.yageo.com/upload/media/product/productsearch/datasheet/rchip/PYu-RC_Group_51_RoHS_L_11.pdf" (id 3) (at 161.29 187.96 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Description" "GENERAL PURPOSE CHIP RESISTORS" (id 4) (at 161.29 190.5 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Height" "0.4" (id 5) (at 161.29 193.04 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Name" "KEMET" (id 6) (at 161.29 195.58 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Manufacturer_Part_Number" "RC0402FR-071KL" (id 7) (at 161.29 198.12 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Part Number" "603-RC0402FR-071KL" (id 8) (at 161.29 200.66 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Price/Stock" "https://www.mouser.co.uk/ProductDetail/YAGEO/RC0402FR-071KL?qs=V1yeUXFNrknDEmWLmm5v6g%3D%3D" (id 9) (at 161.29 203.2 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Part Number" "RC0402FR-071KL" (id 10) (at 161.29 205.74 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Arrow Price/Stock" "https://www.arrow.com/en/products/rc0402fr-071kl/yageo?region=nac" (id 11) (at 161.29 208.28 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Part Number" "" (id 12) (at 161.29 210.82 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (property "Mouser Testing Price/Stock" "" (id 13) (at 161.29 213.36 0) + (effects (font (size 1.27 1.27)) (justify left) hide) + ) + (pin "1" (uuid 5bdf18ee-258d-4819-84ca-d53ccef35138)) + (pin "2" (uuid 2d362e1e-557d-44ca-a328-cbf34ce9524d)) + ) + (sheet_instances (path "/" (page "1")) ) (symbol_instances - (path "/04d791c1-2757-41fa-a211-e57790f39790" - (reference "#PWR?") (unit 1) (value "+3V3") (footprint "") - ) - (path "/086d0854-d42c-4bbe-aa95-f319500364dc" - (reference "#PWR?") (unit 1) (value "GND") (footprint "") - ) - (path "/08c4a7e2-c56a-46b4-94c9-47a72d0436b0" - (reference "#PWR?") (unit 1) (value "GND") (footprint "") - ) - (path "/0b157607-f9b0-406a-8552-f174c0cbd973" - (reference "#PWR?") (unit 1) (value "+ext_5V") (footprint "") - ) - (path "/0cf6864d-eb0b-44a4-8430-c2d70446e5de" - (reference "#PWR?") (unit 1) (value "GND") (footprint "") - ) - (path "/0fbe6fe3-3fdb-4d6e-8de5-be6f136ef74a" - (reference "#PWR?") (unit 1) (value "+3V3") (footprint "") - ) - (path "/2670da6a-90f4-4a17-be50-ed9d4a439aa2" - (reference "#PWR?") (unit 1) (value "GND") (footprint "") - ) - (path "/3415c2d5-de08-46cd-bd54-8798a6f2702b" - (reference "#PWR?") (unit 1) (value "GND") (footprint "") - ) - (path "/3b741d6a-1a24-4290-aca0-ff0e7517db01" - (reference "#PWR?") (unit 1) (value "GND") (footprint "") - ) - (path "/3bc30f76-1581-4ff4-b44b-6f2f2341ae85" - (reference "#PWR?") (unit 1) (value "GND") (footprint "") - ) - (path "/4b5722cf-0230-42b7-b394-374221531e3b" - (reference "#PWR?") (unit 1) (value "+3V3") (footprint "") - ) - (path "/53b40e13-b141-444d-881a-656e6b768e71" - (reference "#PWR?") (unit 1) (value "+5V") (footprint "") - ) - (path "/5710c33b-84cc-4446-8fc8-9532014a172d" - (reference "#PWR?") (unit 1) (value "+3V3") (footprint "") - ) - (path "/57eaffa9-38f1-407c-b422-2ccd8ca4aa26" - (reference "#PWR?") (unit 1) (value "+3V3") (footprint "") - ) - (path "/80c38c40-e2d8-46a5-a10f-b1b3a971d7a7" - (reference "#PWR?") (unit 1) (value "+3V3") (footprint "") - ) - (path "/8745e723-59e3-4d91-a180-9e61faf8a5d5" - (reference "#PWR?") (unit 1) (value "+LDO_3V3") (footprint "") - ) - (path "/938dc300-1655-49ab-8f3c-f0849c707a78" - (reference "#PWR?") (unit 1) (value "GND") (footprint "") - ) - (path "/96a61bc1-1c3e-4dad-8aba-b55b5710c1fc" - (reference "#PWR?") (unit 1) (value "+5V") (footprint "") - ) - (path "/98e03630-d646-4afc-9fd8-fa3cafbe0a56" - (reference "#PWR?") (unit 1) (value "GND") (footprint "") - ) - (path "/b4c9b2ff-e2bc-418f-9934-c324ddb4d3b4" - (reference "#PWR?") (unit 1) (value "+3V3") (footprint "") - ) - (path "/b9758d43-4478-4d55-a7c9-ed9a4bf533c0" - (reference "#PWR?") (unit 1) (value "+LDO_3V3") (footprint "") - ) - (path "/c4d8aa40-d0b2-4c24-bb5b-f3da70ee45fa" - (reference "#PWR?") (unit 1) (value "GND") (footprint "") - ) - (path "/d89013f9-d116-49ba-99c6-65da9c27ad5e" - (reference "#PWR?") (unit 1) (value "GND") (footprint "") - ) - (path "/da9618c6-0d08-4aa7-b4b3-c668ac316540" - (reference "#PWR?") (unit 1) (value "GND") (footprint "") - ) - (path "/dc54e9fb-29a7-4274-aa0e-1e10a466ca6e" - (reference "#PWR?") (unit 1) (value "GND") (footprint "") - ) - (path "/dc6fa5f2-bd40-4e78-9fd9-68974bef9777" - (reference "#PWR?") (unit 1) (value "+5V") (footprint "") - ) - (path "/e21c1973-069e-49a3-b09e-ab1fd5fa7927" - (reference "#PWR?") (unit 1) (value "GND") (footprint "") - ) - (path "/ea83994b-d771-42d8-9d34-4c6baa538448" - (reference "#PWR?") (unit 1) (value "GND") (footprint "") - ) - (path "/eaf6f8d8-69f0-4ebb-8a2e-461c2a3bef9b" - (reference "#PWR?") (unit 1) (value "+3V3") (footprint "") - ) - (path "/f054fe2f-7d3e-44f4-841d-e2b4aa6c7669" - (reference "#PWR?") (unit 1) (value "+ext_3V3") (footprint "") + (path "/fbf1746c-497f-4c7f-9909-00b91ce3f272" + (reference "#PWR01") (unit 1) (value "+5V") (footprint "") ) (path "/fb596e4c-6b9f-4b73-8d91-d86ee0192628" - (reference "#PWR?") (unit 1) (value "GND") (footprint "") + (reference "#PWR02") (unit 1) (value "GND") (footprint "") + ) + (path "/0fbe6fe3-3fdb-4d6e-8de5-be6f136ef74a" + (reference "#PWR03") (unit 1) (value "+3V3") (footprint "") + ) + (path "/d89013f9-d116-49ba-99c6-65da9c27ad5e" + (reference "#PWR04") (unit 1) (value "GND") (footprint "") + ) + (path "/4407316f-bdb4-4d5e-9579-137b3d77e80e" + (reference "#PWR05") (unit 1) (value "+3V3") (footprint "") + ) + (path "/e5c9a6c1-e7b8-4f39-9b87-81de7c7964c1" + (reference "#PWR06") (unit 1) (value "GND") (footprint "") + ) + (path "/938dc300-1655-49ab-8f3c-f0849c707a78" + (reference "#PWR07") (unit 1) (value "GND") (footprint "") + ) + (path "/b4c9b2ff-e2bc-418f-9934-c324ddb4d3b4" + (reference "#PWR08") (unit 1) (value "+3V3") (footprint "") + ) + (path "/2670da6a-90f4-4a17-be50-ed9d4a439aa2" + (reference "#PWR09") (unit 1) (value "GND") (footprint "") + ) + (path "/020b8a05-3ecd-4077-b267-1fd0281f2402" + (reference "#PWR010") (unit 1) (value "GND") (footprint "") + ) + (path "/704fb273-de91-40af-8a3e-fcfe24b6c782" + (reference "#PWR011") (unit 1) (value "+3V3") (footprint "") + ) + (path "/b0228299-0eb8-4913-914c-6bb8874973f2" + (reference "#PWR012") (unit 1) (value "GND") (footprint "") + ) + (path "/8817a895-a3a5-4950-961b-5f8add815f50" + (reference "#PWR013") (unit 1) (value "+5V") (footprint "") + ) + (path "/ed9725c6-c071-4ff7-9056-2a3202d7f611" + (reference "#PWR014") (unit 1) (value "GND") (footprint "") + ) + (path "/b426c37a-1379-446e-9495-909e5e1b7e7c" + (reference "#PWR015") (unit 1) (value "GND") (footprint "") + ) + (path "/4b5722cf-0230-42b7-b394-374221531e3b" + (reference "#PWR016") (unit 1) (value "+3V3") (footprint "") + ) + (path "/d5b8e895-524b-47b2-908a-e00fd9232c21" + (reference "#PWR017") (unit 1) (value "GND") (footprint "") + ) + (path "/da9618c6-0d08-4aa7-b4b3-c668ac316540" + (reference "#PWR018") (unit 1) (value "GND") (footprint "") + ) + (path "/8ed88628-5c3f-4ae7-9b4b-beb883cfb4f0" + (reference "#PWR019") (unit 1) (value "+5V") (footprint "") + ) + (path "/fb4a82ab-fad5-4134-bb57-c6e9036e7754" + (reference "#PWR020") (unit 1) (value "GND") (footprint "") + ) + (path "/eaf6f8d8-69f0-4ebb-8a2e-461c2a3bef9b" + (reference "#PWR021") (unit 1) (value "+3V3") (footprint "") + ) + (path "/04d791c1-2757-41fa-a211-e57790f39790" + (reference "#PWR022") (unit 1) (value "+3V3") (footprint "") + ) + (path "/bf987fbc-ba4d-49bc-a3b8-b761e961c8a0" + (reference "#PWR023") (unit 1) (value "GND") (footprint "") + ) + (path "/ea83994b-d771-42d8-9d34-4c6baa538448" + (reference "#PWR024") (unit 1) (value "GND") (footprint "") + ) + (path "/989d95a3-649c-4c86-96f6-57488f06c5fc" + (reference "#PWR025") (unit 1) (value "GND") (footprint "") + ) + (path "/08c4a7e2-c56a-46b4-94c9-47a72d0436b0" + (reference "#PWR026") (unit 1) (value "GND") (footprint "") ) (path "/fbe4bd3f-6e68-4ddd-9eaa-8e13fe897dce" - (reference "#PWR?") (unit 1) (value "GND") (footprint "") + (reference "#PWR027") (unit 1) (value "GND") (footprint "") ) - (path "/fbf1746c-497f-4c7f-9909-00b91ce3f272" - (reference "#PWR?") (unit 1) (value "+5V") (footprint "") + (path "/f054fe2f-7d3e-44f4-841d-e2b4aa6c7669" + (reference "#PWR028") (unit 1) (value "+ext_3V3") (footprint "") ) - (path "/315b631a-1db2-4690-a54b-2bf01cc54b01" - (reference "C?") (unit 1) (value "22u") (footprint "") + (path "/57eaffa9-38f1-407c-b422-2ccd8ca4aa26" + (reference "#PWR029") (unit 1) (value "+3V3") (footprint "") ) - (path "/85bdcbed-eebe-4b38-8831-bbd50240f941" - (reference "C?") (unit 1) (value "100n") (footprint "") + (path "/086d0854-d42c-4bbe-aa95-f319500364dc" + (reference "#PWR030") (unit 1) (value "GND") (footprint "") ) - (path "/9b3a3e1a-9b98-4137-9ced-6bfb0bd6ee18" - (reference "C?") (unit 1) (value "1u") (footprint "") + (path "/e21c1973-069e-49a3-b09e-ab1fd5fa7927" + (reference "#PWR031") (unit 1) (value "GND") (footprint "") ) - (path "/af7dd307-2f93-4a33-8781-443b54c0c8b0" - (reference "C?") (unit 1) (value "10uF") (footprint "CAPC1005X70N") + (path "/53b40e13-b141-444d-881a-656e6b768e71" + (reference "#PWR032") (unit 1) (value "+5V") (footprint "") + ) + (path "/c4d8aa40-d0b2-4c24-bb5b-f3da70ee45fa" + (reference "#PWR033") (unit 1) (value "GND") (footprint "") + ) + (path "/b9758d43-4478-4d55-a7c9-ed9a4bf533c0" + (reference "#PWR034") (unit 1) (value "+LDO_3V3") (footprint "") + ) + (path "/8745e723-59e3-4d91-a180-9e61faf8a5d5" + (reference "#PWR035") (unit 1) (value "+LDO_3V3") (footprint "") + ) + (path "/5710c33b-84cc-4446-8fc8-9532014a172d" + (reference "#PWR036") (unit 1) (value "+3V3") (footprint "") + ) + (path "/98e03630-d646-4afc-9fd8-fa3cafbe0a56" + (reference "#PWR037") (unit 1) (value "GND") (footprint "") + ) + (path "/dc54e9fb-29a7-4274-aa0e-1e10a466ca6e" + (reference "#PWR038") (unit 1) (value "GND") (footprint "") + ) + (path "/0b157607-f9b0-406a-8552-f174c0cbd973" + (reference "#PWR039") (unit 1) (value "+ext_5V") (footprint "") + ) + (path "/dc6fa5f2-bd40-4e78-9fd9-68974bef9777" + (reference "#PWR040") (unit 1) (value "+5V") (footprint "") + ) + (path "/3b741d6a-1a24-4290-aca0-ff0e7517db01" + (reference "#PWR041") (unit 1) (value "GND") (footprint "") + ) + (path "/40adbb6d-87aa-405c-ba38-fc70c2bcc5dc" + (reference "C1") (unit 1) (value "1u") (footprint "CAPC1005X60N") + ) + (path "/d0890279-2725-4024-84d8-620ca5b5f28b" + (reference "C2") (unit 1) (value "22uF") (footprint "CAPC1005X80N") + ) + (path "/8cc5bdba-d97c-4d68-9a3d-3bddc120cb57" + (reference "C3") (unit 1) (value "100n") (footprint "CAPC1005X55N") + ) + (path "/7306dda2-3d96-43f1-8f72-88ad64fc429b" + (reference "C4") (unit 1) (value "100nF") (footprint "CAPC1005X55N") ) (path "/d609f215-7193-4fc9-9a59-352d78285ffb" - (reference "C?") (unit 1) (value "22uF") (footprint "CAPC1005X80N") + (reference "C5") (unit 1) (value "22uF") (footprint "CAPC1005X80N") + ) + (path "/af7dd307-2f93-4a33-8781-443b54c0c8b0" + (reference "C6") (unit 1) (value "10uF") (footprint "CAPC1005X70N") + ) + (path "/7756c211-5286-4d10-828b-c4ad5bcfbce7" + (reference "IC1") (unit 1) (value "ESP32-WROOM-32E-N4") (footprint "ESP32WROOM32EN4") ) (path "/12e64af1-b300-49f0-ac3b-a02c0ed86eae" - (reference "IC?") (unit 1) (value "DMP1045U-7") (footprint "SOT96P240X120-3N") - ) - (path "/619380bb-1036-4309-ae3c-dfbf1727965f" - (reference "IC?") (unit 1) (value "DMP1045U-7") (footprint "SOT96P240X120-3N") - ) - (path "/92132767-5beb-424d-bfe4-5601c811c410" - (reference "IC?") (unit 1) (value "DMP1045U-7") (footprint "SOT96P240X120-3N") + (reference "IC2") (unit 1) (value "DMP1045U-7") (footprint "SOT96P240X120-3N") ) (path "/a5cc5237-8cb6-4b5b-ac74-60723428bec5" - (reference "IC?") (unit 1) (value "AZ1117H-3.3TRE1") (footprint "SOT230P700X180-4N") + (reference "IC3") (unit 1) (value "AZ1117H-3.3TRE1") (footprint "SOT230P700X180-4N") ) - (path "/2e933127-0920-4846-8e82-9006b2309ad7" - (reference "J?") (unit 1) (value "Conn_02x10_Row_Letter_First") (footprint "") + (path "/619380bb-1036-4309-ae3c-dfbf1727965f" + (reference "IC4") (unit 1) (value "DMP1045U-7") (footprint "SOT96P240X120-3N") ) - (path "/52a11683-6a9e-47b2-bc64-156e3ccb5580" - (reference "J?") (unit 1) (value "Conn_02x08_Row_Letter_First") (footprint "") + (path "/92132767-5beb-424d-bfe4-5601c811c410" + (reference "IC5") (unit 1) (value "DMP1045U-7") (footprint "SOT96P240X120-3N") ) - (path "/a626741b-0242-4b47-871a-73d3a9420c3f" - (reference "J?") (unit 1) (value "5033981892") (footprint "Libraries:5033981892") + (path "/f0aedaf8-4937-4572-9b55-bd8053dfd361" + (reference "J1") (unit 1) (value "3220-10-0300-00") (footprint "322010030000") ) - (path "/0b82b99b-d4a9-4462-994a-f649f5678e75" - (reference "R?") (unit 1) (value "10k") (footprint "") + (path "/deda9295-32a1-4f05-8f75-91c916d877b5" + (reference "J2") (unit 1) (value "X6511WVS-08H-C60D48R2") (footprint "HUSRSP8W66P254_2000X250X850P") ) - (path "/3d7cf57e-46ad-45b0-8f37-4bcf93c58b86" - (reference "R?") (unit 1) (value "100K") (footprint "RESC1005X40N") + (path "/fcf19bfc-528d-4203-b762-ed6134d2203c" + (reference "J3") (unit 1) (value "DZ254S-11-10-48") (footprint "HUSRSP10W66P254_2500X250X850P") ) - (path "/434b8a81-ef27-4884-a038-c7022455a731" - (reference "R?") (unit 1) (value "100K") (footprint "RESC1005X40N") + (path "/46b2570d-01f5-4435-97bc-ab401c2278d8" + (reference "J4") (unit 1) (value "Conn_01x11") (footprint "") ) - (path "/51956227-9277-4ca3-a264-ee96fef2edbb" - (reference "R?") (unit 1) (value "100K") (footprint "RESC1005X40N") + (path "/f7a03a4d-2cec-4a58-8c55-53b9e06b133e" + (reference "J5") (unit 1) (value "Conn_01x11") (footprint "") + ) + (path "/17f517ac-51e0-4147-b650-9c2b2c8fceaa" + (reference "J6") (unit 1) (value "503398-1892") (footprint "503398-1892") + ) + (path "/717b536c-10b0-41b2-ac6a-8cd4f58dc279" + (reference "LED1") (unit 1) (value "WS2812B-2020") (footprint "WS2812B2020") + ) + (path "/c56ef6a3-fb1c-466e-bd09-0da64fa514b7" + (reference "R1") (unit 1) (value "10k") (footprint "RESC1005X40N") + ) + (path "/61716696-1cfe-44c0-942d-d9126c7bf913" + (reference "R2") (unit 1) (value "220") (footprint "RESC1005X40N") + ) + (path "/0caa6bbe-d103-4a07-900a-14dfcb72cc1b" + (reference "R3") (unit 1) (value "1K") (footprint "RESC1005X40N") + ) + (path "/ef58a6fc-042d-4784-bfee-c59b8b796331" + (reference "R4") (unit 1) (value "1K") (footprint "RESC1005X40N") + ) + (path "/fff9049b-4a63-4738-88ac-bce13f2bd6ba" + (reference "R5") (unit 1) (value "1K") (footprint "RESC1005X40N") + ) + (path "/f59a623c-bec0-4cec-af74-27e3565a9f8a" + (reference "R6") (unit 1) (value "10k") (footprint "RESC1005X40N") ) (path "/7e45edae-6aea-4a3f-b6bd-37e282e1851a" - (reference "R?") (unit 1) (value "100K") (footprint "RESC1005X40N") + (reference "R7") (unit 1) (value "100K") (footprint "RESC1005X40N") + ) + (path "/434b8a81-ef27-4884-a038-c7022455a731" + (reference "R8") (unit 1) (value "100K") (footprint "RESC1005X40N") ) (path "/e70859b0-5640-4eb1-b309-a9cceea26974" - (reference "R?") (unit 1) (value "100K") (footprint "RESC1005X40N") + (reference "R9") (unit 1) (value "100K") (footprint "RESC1005X40N") ) - (path "/ed41245f-e4c9-458c-b7a4-4a54f1cc652d" - (reference "R?") (unit 1) (value "10k") (footprint "") + (path "/3d7cf57e-46ad-45b0-8f37-4bcf93c58b86" + (reference "R10") (unit 1) (value "100K") (footprint "RESC1005X40N") ) (path "/f825078a-0b67-447d-a4bb-7e5f06e86419" - (reference "R?") (unit 1) (value "100K") (footprint "RESC1005X40N") + (reference "R11") (unit 1) (value "100K") (footprint "RESC1005X40N") ) - (path "/032121d6-13fe-407e-b1d5-09ad6e574252" - (reference "SW?") (unit 1) (value "SW_Push") (footprint "") + (path "/51956227-9277-4ca3-a264-ee96fef2edbb" + (reference "R12") (unit 1) (value "100K") (footprint "RESC1005X40N") ) - (path "/d566e4f1-ec69-490e-9b19-ade2a4acde35" - (reference "SW?") (unit 1) (value "SW_Push") (footprint "") + (path "/f9b51342-dbdf-4188-bfea-3a3f82fcc6ca" + (reference "S1") (unit 1) (value "SKRPABE010") (footprint "SKRPABE010") ) - (path "/475e7c08-51ef-497c-a412-7276938bb8ea" - (reference "U?") (unit 1) (value "MMDT2907A-7-F") (footprint "SOT65P210X110-6N") + (path "/a648c944-fb2d-43fa-9b33-c4fa58f57a79" + (reference "S2") (unit 1) (value "SKRPABE010") (footprint "SKRPABE010") ) (path "/a24644c1-faf2-48cb-a6e5-428bf8b72923" - (reference "U?") (unit 1) (value "MMDT2907A-7-F") (footprint "SOT65P210X110-6N") + (reference "U1") (unit 1) (value "MMDT2907A-7-F") (footprint "SOT65P210X110-6N") ) - (path "/a7ca8ead-0ab1-4fb3-ac63-4b45d0746291" - (reference "U?") (unit 1) (value "ESP32-WROOM-32D") (footprint "RF_Module:ESP32-WROOM-32") + (path "/475e7c08-51ef-497c-a412-7276938bb8ea" + (reference "U2") (unit 1) (value "MMDT2907A-7-F") (footprint "SOT65P210X110-6N") ) (path "/d6d7c070-4b21-43f9-9c3f-ff8fca33c900" - (reference "U?") (unit 1) (value "MMDT2907A-7-F") (footprint "SOT65P210X110-6N") + (reference "U3") (unit 1) (value "MMDT2907A-7-F") (footprint "SOT65P210X110-6N") ) ) ) diff --git a/esp32_marauder/LedInterface.cpp b/esp32_marauder/LedInterface.cpp index 10e2b06..072d8e6 100644 --- a/esp32_marauder/LedInterface.cpp +++ b/esp32_marauder/LedInterface.cpp @@ -18,6 +18,50 @@ void LedInterface::RunSetup() { } void LedInterface::main(uint32_t currentTime) { + if ((!settings_obj.loadSetting("EnableLED")) || + (this->current_mode == MODE_OFF)) { + this->ledOff(); + return; + } + + else if (this->current_mode == MODE_RAINBOW) { + this->rainbow(); + } + else if (this->current_mode == MODE_ATTACK) { + this->attackLed(); + } + else if (this->current_mode == MODE_SNIFF) { + this->sniffLed(); + } + else { + this->ledOff(); + } +}; + +void LedInterface::setMode(uint8_t new_mode) { + this->current_mode = new_mode; +} + +uint8_t LedInterface::getMode() { + return this->current_mode; +} + +void LedInterface::sniffLed() { + strip.setPixelColor(0, strip.Color(0, 0, 255)); + strip.show(); +} + +void LedInterface::attackLed() { + strip.setPixelColor(0, strip.Color(255, 0, 0)); + strip.show(); +} + +void LedInterface::ledOff() { + strip.setPixelColor(0, strip.Color(0, 0, 0)); + strip.show(); +} + +void LedInterface::rainbow() { strip.setPixelColor(0, this->Wheel((0 * 256 / 100 + this->wheel_pos) % 256)); strip.show(); @@ -26,7 +70,7 @@ void LedInterface::main(uint32_t currentTime) { this->wheel_pos = this->wheel_pos - this->wheel_speed; if (this->wheel_pos < 0) this->wheel_pos = 255; -}; +} uint32_t LedInterface::Wheel(byte WheelPos) { WheelPos = 255 - WheelPos; diff --git a/esp32_marauder/LedInterface.h b/esp32_marauder/LedInterface.h index 357a844..27d5ec7 100644 --- a/esp32_marauder/LedInterface.h +++ b/esp32_marauder/LedInterface.h @@ -1,12 +1,19 @@ #ifndef LedInterface_h #define LedInterface_h +#include "configs.h" +#include "settings.h" #include #include -#define PIN 25 #define Pixels 1 +#define MODE_OFF 0 +#define MODE_RAINBOW 1 +#define MODE_ATTACK 2 +#define MODE_SNIFF 3 + +extern Settings settings_obj; extern Adafruit_NeoPixel strip; class LedInterface { @@ -19,12 +26,23 @@ class LedInterface { int wheel_speed = 1; // lower = slower uint32_t Wheel(byte WheelPos); + + uint8_t current_mode = MODE_OFF; + + void rainbow(); + void ledOff(); + void attackLed(); + void sniffLed(); public: LedInterface(); void RunSetup(); void main(uint32_t currentTime); + + void setMode(uint8_t); + uint8_t getMode(); + }; diff --git a/esp32_marauder/WiFiScan.cpp b/esp32_marauder/WiFiScan.cpp index 1c22b5b..b0dbb21 100644 --- a/esp32_marauder/WiFiScan.cpp +++ b/esp32_marauder/WiFiScan.cpp @@ -363,6 +363,8 @@ void WiFiScan::startWiFiAttacks(uint8_t scan_mode, uint16_t color, String title_ this->wifi_initialized = true; #ifdef MARAUDER_FLIPPER flipper_led.attackLED(); + #else + led_obj.setMode(MODE_ATTACK); #endif initTime = millis(); } @@ -381,6 +383,8 @@ bool WiFiScan::shutdownWiFi() { #ifdef MARAUDER_FLIPPER flipper_led.offLED(); + #else + led_obj.setMode(MODE_OFF); #endif this->wifi_initialized = false; @@ -401,6 +405,8 @@ bool WiFiScan::shutdownBLE() { #ifdef MARAUDER_FLIPPER flipper_led.offLED(); + #else + led_obj.setMode(MODE_OFF); #endif this->ble_initialized = false; @@ -524,6 +530,8 @@ void WiFiScan::RunAPScan(uint8_t scan_mode, uint16_t color) #ifdef MARAUDER_FLIPPER flipper_led.sniffLED(); + #else + led_obj.setMode(MODE_SNIFF); #endif Serial.println(text_table4[9] + (String)access_points->size()); @@ -759,6 +767,8 @@ void WiFiScan::RunEspressifScan(uint8_t scan_mode, uint16_t color) { #ifdef MARAUDER_FLIPPER flipper_led.sniffLED(); + #else + led_obj.setMode(MODE_SNIFF); #endif #ifdef HAS_SCREEN @@ -794,6 +804,8 @@ void WiFiScan::RunPacketMonitor(uint8_t scan_mode, uint16_t color) { #ifdef MARAUDER_FLIPPER flipper_led.sniffLED(); + #else + led_obj.setMode(MODE_SNIFF); #endif sd_obj.openCapture("packet_monitor"); @@ -867,6 +879,8 @@ void WiFiScan::RunEapolScan(uint8_t scan_mode, uint16_t color) { #ifdef MARAUDER_FLIPPER flipper_led.sniffLED(); + #else + led_obj.setMode(MODE_SNIFF); #endif num_eapol = 0; @@ -1000,6 +1014,8 @@ void WiFiScan::RunPwnScan(uint8_t scan_mode, uint16_t color) #ifdef MARAUDER_FLIPPER flipper_led.sniffLED(); + #else + led_obj.setMode(MODE_SNIFF); #endif #ifdef HAS_SCREEN @@ -1038,6 +1054,8 @@ void WiFiScan::RunBeaconScan(uint8_t scan_mode, uint16_t color) #ifdef MARAUDER_FLIPPER flipper_led.sniffLED(); + #else + led_obj.setMode(MODE_SNIFF); #endif #ifdef HAS_SCREEN @@ -1075,6 +1093,8 @@ void WiFiScan::RunRawScan(uint8_t scan_mode, uint16_t color) #ifdef MARAUDER_FLIPPER flipper_led.sniffLED(); + #else + led_obj.setMode(MODE_SNIFF); #endif #ifdef HAS_SCREEN @@ -1112,6 +1132,8 @@ void WiFiScan::RunDeauthScan(uint8_t scan_mode, uint16_t color) #ifdef MARAUDER_FLIPPER flipper_led.sniffLED(); + #else + led_obj.setMode(MODE_SNIFF); #endif #ifdef HAS_SCREEN @@ -1151,6 +1173,8 @@ void WiFiScan::RunProbeScan(uint8_t scan_mode, uint16_t color) #ifdef MARAUDER_FLIPPER flipper_led.sniffLED(); + #else + led_obj.setMode(MODE_SNIFF); #endif #ifdef HAS_SCREEN diff --git a/esp32_marauder/WiFiScan.h b/esp32_marauder/WiFiScan.h index 8e29a76..ebc17ae 100644 --- a/esp32_marauder/WiFiScan.h +++ b/esp32_marauder/WiFiScan.h @@ -31,6 +31,7 @@ #include "settings.h" #include "Assets.h" #include "flipperLED.h" +#include "LedInterface.h" //#include "MenuFunctions.h" #define bad_list_length 3 @@ -78,6 +79,7 @@ extern BatteryInterface battery_obj; extern TemperatureInterface temp_obj; extern Settings settings_obj; extern flipperLED flipper_led; +extern LedInterface led_obj; esp_err_t esp_wifi_80211_tx(wifi_interface_t ifx, const void *buffer, int len, bool en_sys_seq); //int ieee80211_raw_frame_sanity_check(int32_t arg, int32_t arg2, int32_t arg3); diff --git a/esp32_marauder/configs.h b/esp32_marauder/configs.h index 8589037..ba5350f 100644 --- a/esp32_marauder/configs.h +++ b/esp32_marauder/configs.h @@ -10,8 +10,9 @@ //#define MARAUDER_KIT //#define GENERIC_ESP32 #define MARAUDER_FLIPPER + //#define ESP32_LDDB - #define MARAUDER_VERSION "v0.9.18" + #define MARAUDER_VERSION "v0.9.19" //// BUTTON DEFINITIONS #ifdef MARAUDER_MINI @@ -353,6 +354,10 @@ #ifdef MARAUDER_FLIPPER #define SD_CS 10 #endif + + #ifdef ESP32_LDDB + #define SD_CS 4 + #endif //// END SD DEFINITIONS //// SCREEN STUFF @@ -403,4 +408,12 @@ #endif //// END SCREEN STUFF + //// NEOPIXEL STUFF + #ifdef ESP32_LDDB + #define PIN 17 + #else + #define PIN 25 + #endif + + #endif diff --git a/esp32_marauder/esp32_marauder.ino b/esp32_marauder/esp32_marauder.ino index f4edbd6..c7c5e02 100644 --- a/esp32_marauder/esp32_marauder.ino +++ b/esp32_marauder/esp32_marauder.ino @@ -142,10 +142,6 @@ void setup() // Serial.println("Does not have screen"); //#endif - #ifdef MARAUDER_FLIPPER - flipper_led.RunSetup(); - #endif - #ifdef HAS_SCREEN display_obj.RunSetup(); display_obj.tft.setTextColor(TFT_WHITE, TFT_BLACK); @@ -191,6 +187,10 @@ void setup() settings_obj.begin(); + #ifdef MARAUDER_FLIPPER + flipper_led.RunSetup(); + #endif + //Serial.println("This is a test Channel: " + (String)settings_obj.loadSetting("Channel")); //if (settings_obj.loadSetting( "Force PMKID")) // Serial.println("This is a test Force PMKID: true"); @@ -314,6 +314,9 @@ void loop() #ifdef HAS_SCREEN menu_function_obj.main(currentTime); #endif + #ifndef MARAUDER_FLIPPER + led_obj.main(currentTime); + #endif //cli_obj.main(currentTime); } if (wifi_scan_obj.currentScanMode == OTA_UPDATE) @@ -336,6 +339,9 @@ void loop() display_obj.main(wifi_scan_obj.currentScanMode); menu_function_obj.main(currentTime); #endif + #ifndef MARAUDER_FLIPPER + led_obj.main(currentTime); + #endif //cli_obj.main(currentTime); delay(1); } diff --git a/esp32_marauder/esp32_marauder.ino.d32.bin b/esp32_marauder/esp32_marauder.ino.d32.bin new file mode 100644 index 0000000..1b5b810 Binary files /dev/null and b/esp32_marauder/esp32_marauder.ino.d32.bin differ diff --git a/esp32_marauder/flipperLED.cpp b/esp32_marauder/flipperLED.cpp index 0f46b58..ba5e332 100644 --- a/esp32_marauder/flipperLED.cpp +++ b/esp32_marauder/flipperLED.cpp @@ -5,6 +5,9 @@ void flipperLED::RunSetup() { pinMode(G_PIN, OUTPUT); pinMode(R_PIN, OUTPUT); + if (!settings_obj.loadSetting("EnableLED")) + return; + delay(50); digitalWrite(B_PIN, LOW); @@ -19,14 +22,20 @@ void flipperLED::RunSetup() { } void flipperLED::attackLED() { + if (!settings_obj.loadSetting("EnableLED")) + return; + digitalWrite(B_PIN, HIGH); digitalWrite(G_PIN, HIGH); - digitalWrite(R_PIN, HIGH); + digitalWrite(R_PIN, HIGH); delay(10); digitalWrite(R_PIN, LOW); } void flipperLED::sniffLED() { + if (!settings_obj.loadSetting("EnableLED")) + return; + digitalWrite(B_PIN, HIGH); digitalWrite(G_PIN, HIGH); digitalWrite(R_PIN, HIGH); @@ -35,6 +44,9 @@ void flipperLED::sniffLED() { } void flipperLED::offLED() { + if (!settings_obj.loadSetting("EnableLED")) + return; + digitalWrite(B_PIN, HIGH); digitalWrite(G_PIN, HIGH); digitalWrite(R_PIN, HIGH); diff --git a/esp32_marauder/flipperLED.h b/esp32_marauder/flipperLED.h index 80dd7b0..3c67e66 100644 --- a/esp32_marauder/flipperLED.h +++ b/esp32_marauder/flipperLED.h @@ -1,12 +1,17 @@ #ifndef flipperLED_h #define flipperLED_h +#include "configs.h" +#include "settings.h" + #include #define B_PIN 4 #define G_PIN 5 #define R_PIN 6 +extern Settings settings_obj; + class flipperLED { public: diff --git a/esp32_marauder/libraries/Adafruit_NeoPixel b/esp32_marauder/libraries/Adafruit_NeoPixel new file mode 160000 index 0000000..7fe11e4 --- /dev/null +++ b/esp32_marauder/libraries/Adafruit_NeoPixel @@ -0,0 +1 @@ +Subproject commit 7fe11e4c404834b1e727a026498532458d38701f diff --git a/esp32_marauder/libraries/ArduinoJson b/esp32_marauder/libraries/ArduinoJson new file mode 160000 index 0000000..079ccad --- /dev/null +++ b/esp32_marauder/libraries/ArduinoJson @@ -0,0 +1 @@ +Subproject commit 079ccadbee4100ad0b2d06f11de8c412b95853c1 diff --git a/esp32_marauder/libraries/JPEGDecoder b/esp32_marauder/libraries/JPEGDecoder new file mode 160000 index 0000000..c0fad79 --- /dev/null +++ b/esp32_marauder/libraries/JPEGDecoder @@ -0,0 +1 @@ +Subproject commit c0fad79035abdbf144b59b687532debb41f23fe3 diff --git a/esp32_marauder/libraries/LinkedList b/esp32_marauder/libraries/LinkedList new file mode 160000 index 0000000..b22db1e --- /dev/null +++ b/esp32_marauder/libraries/LinkedList @@ -0,0 +1 @@ +Subproject commit b22db1e7a74eaadceeaa4c834abf2cfcfc64d8f3 diff --git a/esp32_marauder/libraries/NimBLE-Arduino b/esp32_marauder/libraries/NimBLE-Arduino new file mode 160000 index 0000000..0d9f039 --- /dev/null +++ b/esp32_marauder/libraries/NimBLE-Arduino @@ -0,0 +1 @@ +Subproject commit 0d9f039ba7f960946a8c9aeb639c3a64294f0d60 diff --git a/esp32_marauder/libraries/SwitchLib b/esp32_marauder/libraries/SwitchLib new file mode 160000 index 0000000..ceeaeb2 --- /dev/null +++ b/esp32_marauder/libraries/SwitchLib @@ -0,0 +1 @@ +Subproject commit ceeaeb2adb3380bae7ac06c010d99b1ceb6dbe05 diff --git a/esp32_marauder/libraries/TFT_eSPI b/esp32_marauder/libraries/TFT_eSPI new file mode 160000 index 0000000..ddabd86 --- /dev/null +++ b/esp32_marauder/libraries/TFT_eSPI @@ -0,0 +1 @@ +Subproject commit ddabd86dc81fc51e0e9dbef19ada77584f09ee40 diff --git a/esp32_marauder/libraries/lv_arduino b/esp32_marauder/libraries/lv_arduino new file mode 160000 index 0000000..6e833d8 --- /dev/null +++ b/esp32_marauder/libraries/lv_arduino @@ -0,0 +1 @@ +Subproject commit 6e833d8952c40c99793210d92dac7dbddff66e06 diff --git a/esp32_marauder/settings.cpp b/esp32_marauder/settings.cpp index 67cfd0e..83bc125 100644 --- a/esp32_marauder/settings.cpp +++ b/esp32_marauder/settings.cpp @@ -282,6 +282,12 @@ bool Settings::createDefaultSettings(fs::FS &fs) { jsonBuffer["Settings"][2]["range"]["min"] = false; jsonBuffer["Settings"][2]["range"]["max"] = true; + jsonBuffer["Settings"][3]["name"] = "EnableLED"; + jsonBuffer["Settings"][3]["type"] = "bool"; + jsonBuffer["Settings"][3]["value"] = true; + jsonBuffer["Settings"][3]["range"]["min"] = false; + jsonBuffer["Settings"][3]["range"]["max"] = true; + //jsonBuffer.printTo(settingsFile); if (serializeJson(jsonBuffer, settingsFile) == 0) { Serial.println(F("Failed to write to file")); diff --git a/pictures/Marauder&Horse.dxf b/pictures/Marauder&Horse.dxf new file mode 100644 index 0000000..44d16d6 --- /dev/null +++ b/pictures/Marauder&Horse.dxf @@ -0,0 +1,8728 @@ +0 +SECTION +2 +HEADER +9 +$INSUNITS +70 +4 +9 +$ACADVER +1 +AC1014 +9 +$HANDSEED +5 +FFFF +0 +ENDSEC +0 +SECTION +2 +TABLES +0 +TABLE +2 +VPORT +5 +8 +100 +AcDbSymbolTable +0 +ENDTAB +0 +TABLE +2 +LTYPE +5 +5 +100 +AcDbSymbolTable +0 +LTYPE +5 +14 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord +2 +BYBLOCK +70 +0 +0 +LTYPE +5 +15 +100 +AcDbSymbolTableRecord +100 +AcDbLinetypeTableRecord +2 +BYLAYER +70 +0 +0 +ENDTAB +0 +TABLE +2 +LAYER +5 +2 +100 +AcDbSymbolTable +70 +2 +0 +LAYER +5 +50 +100 +AcDbSymbolTableRecord +100 +AcDbLayerTableRecord +2 +0 +70 +0 +6 +CONTINUOUS +0 +ENDTAB +0 +TABLE +2 +STYLE +5 +3 +100 +AcDbSymbolTable +70 +1 +0 +STYLE +5 +11 +100 +AcDbSymbolTableRecord +100 +AcDbTextStyleTableRecord +2 +STANDARD +70 +0 +0 +ENDTAB +0 +TABLE +2 +VIEW +5 +6 +100 +AcDbSymbolTable +70 +0 +0 +ENDTAB +0 +TABLE +2 +UCS +5 +7 +100 +AcDbSymbolTable +70 +0 +0 +ENDTAB +0 +TABLE +2 +APPID +5 +9 +100 +AcDbSymbolTable +70 +2 +0 +APPID +5 +12 +100 +AcDbSymbolTableRecord +100 +AcDbRegAppTableRecord +2 +ACAD +70 +0 +0 +ENDTAB +0 +TABLE +2 +DIMSTYLE +5 +A +100 +AcDbSymbolTable +70 +1 +0 +ENDTAB +0 +TABLE +2 +BLOCK_RECORD +5 +1 +100 +AcDbSymbolTable +70 +1 +0 +BLOCK_RECORD +5 +1F +100 +AcDbSymbolTableRecord +100 +AcDbBlockTableRecord +2 +*MODEL_SPACE +0 +BLOCK_RECORD +5 +1B +100 +AcDbSymbolTableRecord +100 +AcDbBlockTableRecord +2 +*PAPER_SPACE +0 +ENDTAB +0 +ENDSEC +0 +SECTION +2 +BLOCKS +0 +BLOCK +5 +20 +100 +AcDbEntity +100 +AcDbBlockBegin +2 +*MODEL_SPACE +0 +ENDBLK +5 +21 +100 +AcDbEntity +100 +AcDbBlockEnd +0 +BLOCK +5 +1C +100 +AcDbEntity +100 +AcDbBlockBegin +2 +*PAPER_SPACE +0 +ENDBLK +5 +1D +100 +AcDbEntity +100 +AcDbBlockEnd +0 +ENDSEC +0 +SECTION +2 +ENTITIES +0 +LWPOLYLINE +5 +100 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +306 +70 +1 +43 +0.0 +10 +0.16809648203467698 +20 +0.29138422187965474 +10 +0.16827078203467682 +20 +0.29064862187965501 +10 +0.16845558203467725 +20 +0.290019021879655 +10 +0.16865288203467721 +20 +0.28948722187965514 +10 +0.16886498203467715 +20 +0.28904522187965465 +10 +0.16909388203467712 +20 +0.2886846218796546 +10 +0.16934168203467714 +20 +0.28839742187965478 +10 +0.16961078203467705 +20 +0.2881754218796545 +10 +0.16990308203467697 +20 +0.2880105218796547 +10 +0.17022078203467683 +20 +0.28789442187965475 +10 +0.17056618203467711 +20 +0.28781902187965447 +10 +0.17094118203467734 +20 +0.28777632187965529 +10 +0.17134818203467683 +20 +0.28775792187965499 +10 +0.1717890820346768 +20 +0.28775582187965498 +10 +0.17278168203467725 +20 +0.28776762187965488 +10 +0.1733375820346772 +20 +0.28776532187965498 +10 +0.17393608203467692 +20 +0.28774662187965483 +10 +0.1794370820346769 +20 +0.28748462187965451 +10 +0.17997008203467724 +20 +0.28261462187965491 +10 +0.18012928203467726 +20 +0.28066992187965489 +10 +0.18017008203467688 +20 +0.27897432187965476 +10 +0.18009468203467716 +20 +0.277710421879655 +10 +0.17990508203467703 +20 +0.27706062187965508 +10 +0.17975948203467706 +20 +0.27699202187965455 +10 +0.17945198203467683 +20 +0.27692792187965498 +10 +0.17899108203467684 +20 +0.27686832187965471 +10 +0.17838558203467691 +20 +0.27681362187965464 +10 +0.17764418203467691 +20 +0.27676402187965465 +10 +0.17677538203467735 +20 +0.27671972187965466 +10 +0.17578798203467749 +20 +0.27668092187965454 +10 +0.17469058203467724 +20 +0.2766479218796547 +10 +0.17349188203467703 +20 +0.27662082187965453 +10 +0.17220058203467725 +20 +0.27659992187965443 +10 +0.17082538203467723 +20 +0.27658552187965479 +10 +0.16937478203467693 +20 +0.27657772187965501 +10 +0.16785758203467727 +20 +0.27657682187965493 +10 +0.16628248203467699 +20 +0.276583021879655 +10 +0.16465808203467713 +20 +0.27659652187965511 +10 +0.16299308203467699 +20 +0.27661762187965455 +10 +0.14667808203467692 +20 +0.27685962187965429 +10 +0.14383508203467732 +20 +0.30955362187965463 +10 +0.14325498203467735 +20 +0.31614522187965455 +10 +0.14269608203467732 +20 +0.32234082187965474 +10 +0.14217178203467684 +20 +0.32800152187965503 +10 +0.14169558203467714 +20 +0.33298832187965477 +10 +0.14128108203467715 +20 +0.33716252187965479 +10 +0.14094188203467695 +20 +0.34038512187965497 +10 +0.14069138203467668 +20 +0.34251712187965522 +10 +0.14054308203467702 +20 +0.3434196218796548 +10 +0.13998038203467678 +20 +0.34385412187965481 +10 +0.13879258203467748 +20 +0.34420242187965466 +10 +0.13718478203467721 +20 +0.34445452187965464 +10 +0.13536168203467702 +20 +0.3446006218796549 +10 +0.13352838203467721 +20 +0.34463082187965455 +10 +0.1318896820346771 +20 +0.3445353218796543 +10 +0.130650682034677 +20 +0.34430422187965493 +10 +0.13001608203467685 +20 +0.34392762187965498 +10 +0.12999148203467703 +20 +0.34369002187965458 +10 +0.12999678203467702 +20 +0.34312562187965467 +10 +0.13003068203467694 +20 +0.34225162187965452 +10 +0.13009198203467687 +20 +0.34108492187965467 +10 +0.13017918203467704 +20 +0.33964292187965484 +10 +0.13029128203467688 +20 +0.33794252187965501 +10 +0.13042688203467712 +20 +0.33600112187965492 +10 +0.130627482034677 +20 +0.3332612218796549 +10 +0.13081128203467685 +20 +0.33083992187965483 +10 +0.13101448203467703 +20 +0.3282331218796547 +10 +0.13123578203467712 +20 +0.32545802187965489 +10 +0.13147398203467719 +20 +0.32253172187965473 +10 +0.13172768203467689 +20 +0.31947152187965455 +10 +0.13199558203467687 +20 +0.31629432187965434 +10 +0.13227658203467663 +20 +0.31301742187965498 +10 +0.13249508203467708 +20 +0.31050462187965477 +10 +0.13306318203467726 +20 +0.30391032187965461 +10 +0.13357848203467748 +20 +0.29773222187965465 +10 +0.13403098203467689 +20 +0.29210752187965483 +10 +0.13441018203467714 +20 +0.28717312187965471 +10 +0.13470608203467738 +20 +0.2830662218796548 +10 +0.13490838203467692 +20 +0.27992372187965464 +10 +0.13500678203467731 +20 +0.27788282187965474 +10 +0.13499108203467725 +20 +0.27708062187965454 +10 +0.13466438203467712 +20 +0.27691502187965455 +10 +0.13392238203467688 +20 +0.27677432187965478 +10 +0.1328240820346771 +20 +0.27665812187965488 +10 +0.13142878203467712 +20 +0.27656602187965507 +10 +0.12979588203467729 +20 +0.27649772187965493 +10 +0.12798448203467705 +20 +0.27645292187965465 +10 +0.12605378203467688 +20 +0.27643112187965502 +10 +0.12406318203467714 +20 +0.2764320218796551 +10 +0.12207188203467723 +20 +0.27645522187965454 +10 +0.1201389820346771 +20 +0.27650052187965457 +10 +0.11832388203467714 +20 +0.27656732187965438 +10 +0.11668578203467728 +20 +0.27665552187965514 +10 +0.11528388203467688 +20 +0.27676452187965495 +10 +0.11417748203467692 +20 +0.27689422187965496 +10 +0.11342578203467679 +20 +0.27704402187965493 +10 +0.11308808203467691 +20 +0.27721362187965448 +10 +0.11302388203467684 +20 +0.27745712187965454 +10 +0.11293408203467692 +20 +0.2780124218796548 +10 +0.11282018203467692 +20 +0.27886302187965506 +10 +0.11264668203467665 +20 +0.28031652187965439 +10 +0.11244128203467707 +20 +0.282173621879655 +10 +0.112207282034677 +20 +0.28440222187965492 +10 +0.11194798203467693 +20 +0.28697012187965498 +10 +0.11166638203467694 +20 +0.28984522187965489 +10 +0.11136578203467695 +20 +0.29299532187965494 +10 +0.11104938203467696 +20 +0.2963883218796548 +10 +0.11072028203467699 +20 +0.29999202187965479 +10 +0.1104500820346771 +20 +0.30300522187965473 +10 +0.11017548203467731 +20 +0.30611622187965482 +10 +0.10989808203467732 +20 +0.3093086218796548 +10 +0.10962108203467713 +20 +0.31250722187965485 +10 +0.10934748203467737 +20 +0.31563642187965479 +10 +0.10907908203467709 +20 +0.31867922187965469 +10 +0.10881728203467722 +20 +0.32161832187965478 +10 +0.10856388203467737 +20 +0.324436921879655 +10 +0.10832028203467736 +20 +0.32711782187965499 +10 +0.10808818203467685 +20 +0.3296440218796548 +10 +0.10786918203467666 +20 +0.33199842187965456 +10 +0.10766488203467706 +20 +0.33416382187965443 +10 +0.1074768820346772 +20 +0.33612332187965499 +10 +0.10730668203467686 +20 +0.33785982187965469 +10 +0.10715608203467675 +20 +0.33935622187965475 +10 +0.10702648203467724 +20 +0.34059552187965469 +10 +0.10691948203467749 +20 +0.34156052187965469 +10 +0.10683688203467712 +20 +0.3422342218796548 +10 +0.10678008203467704 +20 +0.34259962187965454 +10 +0.10670588203467724 +20 +0.34291812187965454 +10 +0.1066215820346772 +20 +0.3432011218796549 +10 +0.10652118203467731 +20 +0.34345072187965453 +10 +0.10639878203467734 +20 +0.34366902187965453 +10 +0.10624858203467757 +20 +0.34385792187965447 +10 +0.10606448203467733 +20 +0.34401962187965485 +10 +0.10584078203467684 +20 +0.34415612187965461 +10 +0.10557128203467658 +20 +0.34426952187965487 +10 +0.10525038203467729 +20 +0.34436182187965514 +10 +0.10487198203467718 +20 +0.34443512187965486 +10 +0.10443028203467708 +20 +0.34449152187965459 +10 +0.10391918203467687 +20 +0.34453312187965435 +10 +0.10333298203467733 +20 +0.34456182187965478 +10 +0.10266568203467719 +20 +0.3445797218796548 +10 +0.10191138203467731 +20 +0.3445890218796549 +10 +0.10106408203467698 +20 +0.34459162187965464 +10 +0.098374982034676872 +20 +0.34453232187965477 +10 +0.096761682034677277 +20 +0.34430692187965461 +10 +0.095975882034677329 +20 +0.34384402187965457 +10 +0.095769082034677377 +20 +0.34307262187965482 +10 +0.09582518203467727 +20 +0.34212952187965495 +10 +0.095985782034677114 +20 +0.34001682187965454 +10 +0.096239882034677149 +20 +0.336868921879655 +10 +0.096575982034677321 +20 +0.33282022187965499 +10 +0.096982882034676865 +20 +0.3280051218796548 +10 +0.097449382034676679 +20 +0.32255782187965487 +10 +0.097964182034677161 +20 +0.31661292187965484 +10 +0.098516082034676988 +20 +0.31030462187965457 +10 +0.099057882034677136 +20 +0.30400072187965477 +10 +0.099543382034676942 +20 +0.29806762187965463 +10 +0.099963182034676912 +20 +0.2926389218796549 +10 +0.10030828203467734 +20 +0.28784812187965469 +10 +0.10056958203467747 +20 +0.28382892187965469 +10 +0.10073768203467726 +20 +0.28071492187965452 +10 +0.10080358203467699 +20 +0.27863962187965441 +10 +0.10075808203467707 +20 +0.27773662187965453 +10 +0.10064988203467684 +20 +0.27754022187965466 +10 +0.10047598203467734 +20 +0.27736352187965496 +10 +0.10022408203467725 +20 +0.27720562187965481 +10 +0.099882182034677358 +20 +0.27706542187965477 +10 +0.099438182034677358 +20 +0.27694212187965472 +10 +0.09903068203467702 +20 +0.27686012187965459 +10 +0.098553882034677076 +20 +0.27678662187965442 +10 +0.098002482034676985 +20 +0.27672112187965503 +10 +0.097371482034677159 +20 +0.27666342187965487 +10 +0.096655682034677004 +20 +0.27661282187965486 +10 +0.095849882034677036 +20 +0.27656922187965505 +10 +0.09494918203467706 +20 +0.2765320218796552 +10 +0.093591582034677212 +20 +0.27649172187965476 +10 +0.092043782034677002 +20 +0.27646112187965477 +10 +0.090293782034677195 +20 +0.27643932187965459 +10 +0.088329282034677048 +20 +0.27642532187965474 +10 +0.086138282034677327 +20 +0.27641812187965464 +10 +0.084339082034677326 +20 +0.27641662187965488 +10 +0.080797482034676849 +20 +0.27643242187965489 +10 +0.077629282034676894 +20 +0.27647892187965484 +10 +0.074859482034677072 +20 +0.27655472187965491 +10 +0.072513282034676885 +20 +0.27665842187965473 +10 +0.070615782034676999 +20 +0.27678862187965447 +10 +0.06919178203467713 +20 +0.27694392187965489 +10 +0.068266582034677281 +20 +0.27712312187965493 +10 +0.067865082034677116 +20 +0.2773246218796549 +10 +0.067741982034676962 +20 +0.27760612187965494 +10 +0.067607482034677258 +20 +0.27806002187965473 +10 +0.067465782034677457 +20 +0.27866262187965452 +10 +0.06732128203467691 +20 +0.27939022187965457 +10 +0.067178482034677134 +20 +0.28021942187965443 +10 +0.067041582034677027 +20 +0.28112642187965498 +10 +0.066914982034677051 +20 +0.28208772187965525 +10 +0.066803082034677108 +20 +0.28307962187965496 +10 +0.066303082034677163 +20 +0.28792662187965501 +10 +0.071739082034676938 +20 +0.28792662187965501 +10 +0.073440982034677083 +20 +0.28793572187965466 +10 +0.074745882034676914 +20 +0.28797652187965483 +10 +0.075706382034677056 +20 +0.28806892187965449 +10 +0.07637478203467718 +20 +0.28823282187965482 +10 +0.076803482034676906 +20 +0.28848842187965462 +10 +0.077044882034676965 +20 +0.28885562187965452 +10 +0.077151282034677027 +20 +0.2893543218796546 +10 +0.077175082034677267 +20 +0.29000462187965481 +10 +0.077124882034677045 +20 +0.29131762187965482 +10 +0.076982682034676952 +20 +0.29353442187965484 +10 +0.07676068203467723 +20 +0.29652002187965487 +10 +0.076471382034677404 +20 +0.30013912187965508 +10 +0.076127082034677107 +20 +0.30425672187965436 +10 +0.075740182034677028 +20 +0.30873762187965503 +10 +0.075323082034677302 +20 +0.31344672187965494 +10 +0.074888082034677561 +20 +0.31824872187965481 +10 +0.074447582034676829 +20 +0.32300872187965457 +10 +0.074014082034676854 +20 +0.32759132187965501 +10 +0.073599782034676764 +20 +0.33186162187965496 +10 +0.07321708203467725 +20 +0.33568422187965463 +10 +0.072878382034677336 +20 +0.33892422187965454 +10 +0.072596082034677156 +20 +0.34144642187965479 +10 +0.072382482034676898 +20 +0.34311562187965494 +10 +0.072250082034677199 +20 +0.34379662187965454 +10 +0.072173382034677047 +20 +0.3438775218796547 +10 +0.072046582034677176 +20 +0.34395622187965491 +10 +0.071872482034677221 +20 +0.34403222187965488 +10 +0.071654082034677269 +20 +0.34410522187965475 +10 +0.071394082034677009 +20 +0.34417462187965486 +10 +0.07109558203467703 +20 +0.34424022187965475 +10 +0.07076128203467702 +20 +0.34430142187965473 +10 +0.070394182034677066 +20 +0.34435802187965492 +10 +0.069997182034677308 +20 +0.34440942187965506 +10 +0.06957308203467738 +20 +0.34445532187965477 +10 +0.069124782034676868 +20 +0.34449522187965487 +10 +0.068655282034676968 +20 +0.34452882187965495 +10 +0.06816738203467676 +20 +0.34455572187965522 +10 +0.067663882034676992 +20 +0.34457542187965484 +10 +0.067147882034677142 +20 +0.34458752187965458 +10 +0.066622082034676899 +20 +0.34459162187965464 +10 +0.06148608203467687 +20 +0.34459162187965464 +10 +0.060967082034676934 +20 +0.34962262187965443 +10 +0.060800582034676864 +20 +0.35163302187965484 +10 +0.060731582034677101 +20 +0.35338812187965474 +10 +0.06076228203467704 +20 +0.35469922187965464 +10 +0.060895082034677084 +20 +0.35537762187965505 +10 +0.061180982034677034 +20 +0.35545132187965456 +10 +0.061930282034676765 +20 +0.35552302187965457 +10 +0.063118782034677356 +20 +0.35559222187965478 +10 +0.064722682034677459 +20 +0.3556586218796548 +10 +0.06671788203467699 +20 +0.35572192187965479 +10 +0.069080582034677374 +20 +0.35578162187965501 +10 +0.071786682034677418 +20 +0.35583742187965506 +10 +0.074812282034676936 +20 +0.35588882187965465 +10 +0.078133482034676849 +20 +0.35593572187965494 +10 +0.081726182034677075 +20 +0.35597752187965515 +10 +0.085566482034676872 +20 +0.35601382187965436 +10 +0.089630382034677214 +20 +0.3560444218796549 +10 +0.093893982034677359 +20 +0.35606892187965478 +10 +0.098333282034677172 +20 +0.35608682187965479 +10 +0.10292428203467707 +20 +0.35609782187965455 +10 +0.10764308203467687 +20 +0.35610162187965477 +10 +0.15394208203467707 +20 +0.35610162187965477 +10 +0.15740838203467722 +20 +0.35374172187965458 +10 +0.15827298203467732 +20 +0.3531365218796545 +10 +0.15883278203467688 +20 +0.35271912187965493 +10 +0.15934798203467715 +20 +0.35230042187965493 +10 +0.15972978203467714 +20 +0.35195662187965493 +10 +0.16008658203467696 +20 +0.35159822187965484 +10 +0.16041968203467705 +20 +0.35121912187965454 +10 +0.16073068203467711 +20 +0.35081322187965447 +10 +0.16102118203467686 +20 +0.35037442187965451 +10 +0.16129258203467667 +20 +0.34989652187965459 +10 +0.16154658203467731 +20 +0.34937342187965459 +10 +0.16172658203467694 +20 +0.3489478218796549 +10 +0.16189828203467704 +20 +0.34849072187965457 +10 +0.16206218203467682 +20 +0.34799962187965439 +10 +0.16221918203467689 +20 +0.34747192187965459 +10 +0.162369782034677 +20 +0.34690502187965433 +10 +0.16251478203467729 +20 +0.34629632187965498 +10 +0.16265458203467753 +20 +0.34564322187965513 +10 +0.16278998203467732 +20 +0.34494322187965498 +10 +0.16292168203467738 +20 +0.3441937218796548 +10 +0.16305028203467686 +20 +0.3433920218796549 +10 +0.16321798203467686 +20 +0.34223762187965467 +10 +0.16338278203467727 +20 +0.34097982187965503 +10 +0.16354628203467725 +20 +0.33961262187965524 +10 +0.16371008203467707 +20 +0.33812972187965473 +10 +0.16387568203467706 +20 +0.3365250218796545 +10 +0.16404458203467698 +20 +0.33479252187965491 +10 +0.16421828203467714 +20 +0.33292602187965481 +10 +0.16444458203467738 +20 +0.3303951218796547 +10 +0.16473368203467731 +20 +0.32705222187965455 +10 +0.165271082034677 +20 +0.32068562187965499 +10 +0.16554678203467676 +20 +0.31738102187965522 +10 +0.16580078203467685 +20 +0.31430482187965458 +10 +0.166251882034677 +20 +0.30880492187965458 +10 +0.16645338203467697 +20 +0.30636482187965441 +10 +0.16664168203467722 +20 +0.30412062187965494 +10 +0.16681888203467721 +20 +0.30206382187965453 +10 +0.16698728203467739 +20 +0.3001866218796545 +10 +0.16714878203467731 +20 +0.29848062187965485 +10 +0.16730578203467739 +20 +0.29693772187965484 +10 +0.16746028203467711 +20 +0.29554972187965489 +10 +0.16761438203467705 +20 +0.29430852187965484 +10 +0.16777038203467709 +20 +0.29320602187965505 +10 +0.16793038203467725 +20 +0.29223392187965436 +0 +LWPOLYLINE +5 +101 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +139 +70 +1 +43 +0.0 +10 +0.32838098203467669 +20 +0.27644412187965484 +10 +0.32760598203467661 +20 +0.2764668218796551 +10 +0.32686608203467638 +20 +0.27649712187965469 +10 +0.32615978203467622 +20 +0.27653552187965447 +10 +0.32548588203467677 +20 +0.27658242187965476 +10 +0.32484278203467665 +20 +0.27663852187965465 +10 +0.3242290820346766 +20 +0.27670422187965449 +10 +0.3236433820346768 +20 +0.27677992187965517 +10 +0.32308428203467632 +20 +0.27686632187965465 +10 +0.32255038203467645 +20 +0.27696372187965501 +10 +0.32204028203467627 +20 +0.27707272187965482 +10 +0.32155238203467662 +20 +0.27719382187965491 +10 +0.32108548203467646 +20 +0.27732752187965504 +10 +0.32063798203467664 +20 +0.27747422187965498 +10 +0.32020858203467673 +20 +0.27763452187965498 +10 +0.3197957820346764 +20 +0.27780892187965478 +10 +0.3193981820346764 +20 +0.27799792187965466 +10 +0.31901438203467636 +20 +0.27820192187965498 +10 +0.31864298203467645 +20 +0.27842152187965485 +10 +0.31828248203467635 +20 +0.27865712187965463 +10 +0.31793158203467675 +20 +0.27890932187965456 +10 +0.31758868203467683 +20 +0.27917862187965437 +10 +0.31725258203467666 +20 +0.27946542187965495 +10 +0.31692168203467708 +20 +0.27977032187965489 +10 +0.31659458203467716 +20 +0.28009372187965453 +10 +0.31626998203467704 +20 +0.28043622187965467 +10 +0.31594628203467701 +20 +0.28079832187965448 +10 +0.31562218203467718 +20 +0.28118032187965492 +10 +0.31529628203467719 +20 +0.2815829218796545 +10 +0.31487138203467713 +20 +0.28213312187965467 +10 +0.31451288203467709 +20 +0.28263202187965464 +10 +0.31426768203467736 +20 +0.28300992187965501 +10 +0.3140404820346776 +20 +0.28340272187965476 +10 +0.31382938203467714 +20 +0.28382132187965481 +10 +0.31363238203467703 +20 +0.28427632187965457 +10 +0.3134476820346771 +20 +0.28477832187965457 +10 +0.3132732820346773 +20 +0.28533802187965474 +10 +0.31310718203467702 +20 +0.28596622187965492 +10 +0.31294758203467721 +20 +0.28667342187965461 +10 +0.31279228203467735 +20 +0.28747052187965472 +10 +0.31263968203467718 +20 +0.28836802187965471 +10 +0.31248748203467736 +20 +0.28937662187965452 +10 +0.3123339820346771 +20 +0.2905070218796546 +10 +0.31217728203467687 +20 +0.29176992187965489 +10 +0.31201518203467671 +20 +0.29317602187965475 +10 +0.31184598203467695 +20 +0.29473592187965469 +10 +0.31166758203467704 +20 +0.2964604218796546 +10 +0.31147818203467736 +20 +0.29836002187965505 +10 +0.31127568203467681 +20 +0.30044562187965473 +10 +0.31098218203467698 +20 +0.30353392187965456 +10 +0.31090408203467701 +20 +0.30436362187965471 +10 +0.31054728203467719 +20 +0.30830362187965477 +10 +0.31023288203467725 +20 +0.3120540218796547 +10 +0.30996648203467703 +20 +0.31552732187965504 +10 +0.30975358203467696 +20 +0.31863612187965462 +10 +0.30959968203467692 +20 +0.32129302187965447 +10 +0.30951048203467668 +20 +0.32341072187965503 +10 +0.3094913820346773 +20 +0.3249017218796546 +10 +0.30954808203467687 +20 +0.32567862187965479 +10 +0.30970598203467703 +20 +0.32611512187965486 +10 +0.30997718203467695 +20 +0.32663102187965476 +10 +0.31034678203467669 +20 +0.32720732187965451 +10 +0.31080008203467735 +20 +0.32782492187965473 +10 +0.31132218203467732 +20 +0.32846472187965492 +10 +0.31189818203467723 +20 +0.32910762187965514 +10 +0.31251348203467699 +20 +0.32973462187965485 +10 +0.31315308203467729 +20 +0.33032662187965467 +10 +0.31629108203467704 +20 +0.33308162187965451 +10 +0.3406080820346763 +20 +0.33308162187965451 +10 +0.34706068203467666 +20 +0.33306922187965493 +10 +0.35235548203467637 +20 +0.33302912187965494 +10 +0.35658478203467625 +20 +0.33295732187965499 +10 +0.35984098203467652 +20 +0.33284952187965455 +10 +0.36221638203467632 +20 +0.33270152187965474 +10 +0.36380348203467638 +20 +0.33250912187965498 +10 +0.36469458203467642 +20 +0.33226822187965521 +10 +0.36498208203467664 +20 +0.33197462187965487 +10 +0.3651768820346768 +20 +0.32963542187965489 +10 +0.36569518203467655 +20 +0.32377552187965508 +10 +0.36639738203467664 +20 +0.31596942187965438 +10 +0.36697408203467674 +20 +0.30961862187965483 +10 +0.36890908203467632 +20 +0.28836962187965498 +10 +0.37443708203467652 +20 +0.28810662187965519 +10 +0.3750025820346764 +20 +0.28807732187965451 +10 +0.37553608203467648 +20 +0.28804432187965467 +10 +0.37603838203467632 +20 +0.28800662187965453 +10 +0.37651048203467652 +20 +0.28796312187965467 +10 +0.37695288203467681 +20 +0.2879128218796545 +10 +0.3773666820346766 +20 +0.2878548218796545 +10 +0.37775258203467665 +20 +0.28778812187965463 +10 +0.37811138203467654 +20 +0.28771152187965499 +10 +0.37844388203467638 +20 +0.28762422187965486 +10 +0.37875088203467633 +20 +0.2875250218796549 +10 +0.37903318203467651 +20 +0.28741312187965495 +10 +0.37929168203467645 +20 +0.28728732187965511 +10 +0.37952718203467684 +20 +0.28714672187965473 +10 +0.37974038203467675 +20 +0.2869903218796549 +10 +0.37993228203467677 +20 +0.28681702187965508 +10 +0.38010348203467659 +20 +0.28662592187965463 +10 +0.38025488203467683 +20 +0.2864159218796547 +10 +0.38038728203467653 +20 +0.2861860218796547 +10 +0.38050158203467632 +20 +0.28593532187965454 +10 +0.38059848203467639 +20 +0.2856626218796543 +10 +0.38067878203467631 +20 +0.28536712187965496 +10 +0.38074338203467617 +20 +0.28504772187965488 +10 +0.38079308203467666 +20 +0.28470332187965464 +10 +0.38082858203467684 +20 +0.28433312187965465 +10 +0.38085088203467621 +20 +0.28393592187965444 +10 +0.38086058203467665 +20 +0.28351072187965454 +10 +0.38085868203467654 +20 +0.28305662187965486 +10 +0.38084588203467662 +20 +0.28257262187965482 +10 +0.38082298203467646 +20 +0.282057621879655 +10 +0.3807908820346767 +20 +0.28151062187965481 +10 +0.38075028203467642 +20 +0.28093062187965478 +10 +0.38070208203467626 +20 +0.28031662187965489 +10 +0.38041908203467645 +20 +0.27685962187965485 +10 +0.3645980820346767 +20 +0.27661762187965511 +10 +0.36155868203467667 +20 +0.27657512187965472 +10 +0.35887518203467694 +20 +0.27655002187965461 +10 +0.35652578203467622 +20 +0.27654772187965471 +10 +0.3544881820346768 +20 +0.2765734218796545 +10 +0.35274048203467689 +20 +0.27663242187965509 +10 +0.35126048203467652 +20 +0.27673002187965479 +10 +0.35002618203467672 +20 +0.27687152187965469 +10 +0.34901548203467636 +20 +0.27706212187965484 +10 +0.34820628203467652 +20 +0.27730712187965467 +10 +0.34757668203467651 +20 +0.27761192187965467 +10 +0.34710438203467642 +20 +0.27798162187965492 +10 +0.34676758203467661 +20 +0.27842152187965485 +10 +0.34654388203467668 +20 +0.27893702187965497 +10 +0.34641148203467642 +20 +0.27953342187965469 +10 +0.34634828203467638 +20 +0.28021582187965466 +10 +0.34633208203467658 +20 +0.28098962187965482 +10 +0.34633208203467658 +20 +0.28357462187965476 +10 +0.3429280820346764 +20 +0.27999562187965454 +10 +0.33952308203467618 +20 +0.27641662187965432 +10 +0.33093108203467669 +20 +0.27641662187965488 +10 +0.33004218203467661 +20 +0.27641952187965502 +10 +0.32919258203467638 +20 +0.27642852187965528 +0 +LWPOLYLINE +5 +102 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +157 +70 +1 +43 +0.0 +10 +0.28563218203467688 +20 +0.27641702187965467 +10 +0.28170158203467688 +20 +0.27640162187965445 +10 +0.27764608203467711 +20 +0.27641172187965468 +10 +0.27358958203467731 +20 +0.27644652187965468 +10 +0.26965588203467727 +20 +0.27650532187965482 +10 +0.26596878203467733 +20 +0.27658752187965485 +10 +0.26265208203467727 +20 +0.27669232187965465 +10 +0.25982968203467738 +20 +0.27681912187965452 +10 +0.25762528203467749 +20 +0.27696722187965428 +10 +0.2561628820346773 +20 +0.2771360218796548 +10 +0.25556608203467723 +20 +0.2773246218796549 +10 +0.25544338203467687 +20 +0.27760612187965494 +10 +0.25530908203467706 +20 +0.27806002187965473 +10 +0.25516758203467715 +20 +0.27866262187965452 +10 +0.25502318203467711 +20 +0.27939022187965457 +10 +0.25488038203467733 +20 +0.28021942187965498 +10 +0.25474358203467717 +20 +0.28112642187965498 +10 +0.2546169820346772 +20 +0.28208772187965525 +10 +0.25450508203467725 +20 +0.28307962187965496 +10 +0.25400508203467731 +20 +0.28792662187965501 +10 +0.26487708203467741 +20 +0.28792662187965501 +10 +0.26485108203467667 +20 +0.29080462187965506 +10 +0.26483208203467723 +20 +0.29138462187965453 +10 +0.26478508203467699 +20 +0.29221732187965477 +10 +0.26471238203467695 +20 +0.29327612187965479 +10 +0.26461618203467707 +20 +0.29453462187965462 +10 +0.2644986820346773 +20 +0.29596642187965483 +10 +0.26436228203467693 +20 +0.29754512187965487 +10 +0.26420908203467708 +20 +0.29924422187965483 +10 +0.26404148203467703 +20 +0.30103732187965471 +10 +0.2638616820346773 +20 +0.30289802187965453 +10 +0.26367198203467723 +20 +0.30479992187965432 +10 +0.2632828820346772 +20 +0.30859822187965458 +10 +0.2630411820346773 +20 +0.31100912187965457 +10 +0.26282148203467692 +20 +0.31325342187965455 +10 +0.26262908203467716 +20 +0.31527412187965453 +10 +0.2624692820346769 +20 +0.31701412187965461 +10 +0.26234748203467662 +20 +0.31841632187965485 +10 +0.26226898203467741 +20 +0.31942382187965468 +10 +0.26222378203467733 +20 +0.32019952187965495 +10 +0.262181182034677 +20 +0.32039942187965464 +10 +0.26210758203467688 +20 +0.32058062187965475 +10 +0.26199928203467671 +20 +0.32074412187965473 +10 +0.26185288203467716 +20 +0.32089122187965502 +10 +0.26166468203467741 +20 +0.32102292187965509 +10 +0.26143108203467713 +20 +0.32114052187965481 +10 +0.26114828203467721 +20 +0.32124502187965476 +10 +0.26081298203467718 +20 +0.32133762187965487 +10 +0.2604212820346774 +20 +0.321419621879655 +10 +0.25996978203467691 +20 +0.3214919218796547 +10 +0.25945468203467714 +20 +0.32155592187965487 +10 +0.25887248203467716 +20 +0.321612621879655 +10 +0.25821958203467721 +20 +0.32166312187965507 +10 +0.257492282034677 +20 +0.32170882187965488 +10 +0.25668708203467727 +20 +0.32175062187965509 +10 +0.2511530820346769 +20 +0.32201462187965491 +10 +0.25062708203467676 +20 +0.32688362187965503 +10 +0.25045058203467752 +20 +0.32882672187965478 +10 +0.25035998203467691 +20 +0.33051802187965496 +10 +0.25036058203467715 +20 +0.33177552187965476 +10 +0.2504580820346769 +20 +0.33241762187965485 +10 +0.25054928203467663 +20 +0.33248522187965479 +10 +0.25074548203467717 +20 +0.33255092187965463 +10 +0.2510412820346769 +20 +0.33261442187965451 +10 +0.25143088203467723 +20 +0.33267532187965465 +10 +0.25190878203467715 +20 +0.33273332187965465 +10 +0.25246928203467689 +20 +0.33278812187965467 +10 +0.25310688203467713 +20 +0.33283932187965493 +10 +0.25381598203467692 +20 +0.33288652187965451 +10 +0.25459088203467706 +20 +0.33292942187965469 +10 +0.25542598203467715 +20 +0.33296772187965451 +10 +0.25631578203467731 +20 +0.33300112187965469 +10 +0.25725458203467721 +20 +0.33302922187965489 +10 +0.25823688203467698 +20 +0.33305162187965476 +10 +0.25925688203467689 +20 +0.33306802187965501 +10 +0.26030918203467701 +20 +0.33307822187965519 +10 +0.26138808203467701 +20 +0.33308162187965451 +10 +0.27196008203467681 +20 +0.33308162187965451 +10 +0.27196008203467736 +20 +0.32998262187965477 +10 +0.27200748203467684 +20 +0.32877952187965465 +10 +0.27213648203467666 +20 +0.32779412187965484 +10 +0.27232758203467711 +20 +0.32712822187965451 +10 +0.27256108203467688 +20 +0.32688362187965447 +10 +0.27273988203467714 +20 +0.32694692187965502 +10 +0.27301868203467694 +20 +0.32712822187965507 +10 +0.27338338203467705 +20 +0.32741482187965465 +10 +0.27381978203467716 +20 +0.32779412187965484 +10 +0.27431398203467738 +20 +0.32825322187965467 +10 +0.27485158203467697 +20 +0.32877952187965465 +10 +0.27541868203467712 +20 +0.32936022187965486 +10 +0.27600108203467699 +20 +0.32998262187965477 +10 +0.278839082034677 +20 +0.33308162187965451 +10 +0.30636308203467688 +20 +0.33308162187965451 +10 +0.30696308203467693 +20 +0.32827862187965462 +10 +0.30714958203467702 +20 +0.32633892187965474 +10 +0.30721378203467709 +20 +0.32460722187965474 +10 +0.30715548203467724 +20 +0.3232725218796545 +10 +0.30697408203467724 +20 +0.32252362187965455 +10 +0.30686068203467698 +20 +0.32241522187965499 +10 +0.30665938203467691 +20 +0.32231242187965525 +10 +0.30637248203467693 +20 +0.32221552187965463 +10 +0.30600188203467715 +20 +0.32212472187965469 +10 +0.30554998203467743 +20 +0.32204002187965486 +10 +0.30501868203467675 +20 +0.32196182187965494 +10 +0.30441028203467724 +20 +0.32189012187965493 +10 +0.30372678203467729 +20 +0.32182522187965468 +10 +0.30297048203467736 +20 +0.32176732187965462 +10 +0.302143282034677 +20 +0.32171652187965472 +10 +0.30124748203467722 +20 +0.32167302187965485 +10 +0.30028508203467696 +20 +0.32163702187965493 +10 +0.29925838203467725 +20 +0.32160862187965489 +10 +0.29816938203467702 +20 +0.32158822187965508 +10 +0.29702018203467684 +20 +0.32157582187965494 +10 +0.2958130820346766 +20 +0.32157162187965493 +10 +0.29238008203467725 +20 +0.321566221879655 +10 +0.28978428203467743 +20 +0.32153532187965517 +10 +0.28790888203467702 +20 +0.32145682187965485 +10 +0.28663678203467713 +20 +0.32130872187965509 +10 +0.28585128203467702 +20 +0.32106902187965469 +10 +0.28543528203467727 +20 +0.32071562187965474 +10 +0.28527178203467729 +20 +0.32022652187965461 +10 +0.28524408203467744 +20 +0.31957962187965483 +10 +0.28527658203467698 +20 +0.31845272187965457 +10 +0.2853666820346773 +20 +0.31690492187965491 +10 +0.28550708203467723 +20 +0.31500332187965496 +10 +0.28569048203467728 +20 +0.31281512187965488 +10 +0.28590958203467742 +20 +0.31040742187965487 +10 +0.28615718203467699 +20 +0.30784742187965453 +10 +0.28642588203467712 +20 +0.30520242187965452 +10 +0.28670848203467714 +20 +0.30253952187965449 +10 +0.28699768203467702 +20 +0.29992582187965466 +10 +0.28728618203467726 +20 +0.29742852187965463 +10 +0.28756668203467728 +20 +0.29511492187965505 +10 +0.28783198203467752 +20 +0.29305202187965507 +10 +0.28807478203467685 +20 +0.29130702187965429 +10 +0.28828768203467692 +20 +0.28994722187965449 +10 +0.28846358203467704 +20 +0.28903972187965477 +10 +0.28859508203467721 +20 +0.28865162187965476 +10 +0.28882118203467699 +20 +0.28852082187965478 +10 +0.28922408203467698 +20 +0.28838802187965473 +10 +0.28978138203467674 +20 +0.28825702187965485 +10 +0.29047058203467757 +20 +0.28813132187965496 +10 +0.29126908203467694 +20 +0.28801482187965466 +10 +0.29215428203467675 +20 +0.28791112187965484 +10 +0.29310378203467713 +20 +0.28782382187965472 +10 +0.29409508203467716 +20 +0.28775662187965456 +10 +0.29896408203467728 +20 +0.28748462187965451 +10 +0.29949108203467689 +20 +0.28261462187965491 +10 +0.29966758203467725 +20 +0.28067162187965455 +10 +0.2997581820346773 +20 +0.27898062187965478 +10 +0.29975758203467706 +20 +0.27772312187965498 +10 +0.29966008203467731 +20 +0.27708062187965454 +10 +0.29907878203467742 +20 +0.27689852187965436 +10 +0.29762978203467683 +20 +0.27674592187965474 +10 +0.2954366820346771 +20 +0.27662222187965491 +10 +0.29262358203467731 +20 +0.27652662187965471 +10 +0.28931408203467734 +20 +0.27645842187965453 +0 +LWPOLYLINE +5 +103 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +157 +70 +1 +43 +0.0 +10 +0.61318488203467636 +20 +0.27650532187965482 +10 +0.60949778203467642 +20 +0.27658752187965485 +10 +0.60618108203467636 +20 +0.27669232187965465 +10 +0.60335868203467646 +20 +0.27681912187965452 +10 +0.60115428203467658 +20 +0.27696722187965483 +10 +0.59969188203467638 +20 +0.2771360218796548 +10 +0.59909508203467632 +20 +0.2773246218796549 +10 +0.59897238203467651 +20 +0.27760612187965494 +10 +0.5988380820346767 +20 +0.27806002187965473 +10 +0.59869658203467679 +20 +0.27866262187965452 +10 +0.59855218203467675 +20 +0.27939022187965457 +10 +0.59840938203467642 +20 +0.28021942187965498 +10 +0.59827258203467626 +20 +0.28112642187965498 +10 +0.59814598203467684 +20 +0.2820877218796547 +10 +0.59803408203467689 +20 +0.28307962187965496 +10 +0.59753408203467639 +20 +0.28792662187965501 +10 +0.6084060820346765 +20 +0.28792662187965501 +10 +0.60838008203467631 +20 +0.29080462187965506 +10 +0.60836108203467631 +20 +0.29138462187965508 +10 +0.60831408203467663 +20 +0.29221732187965477 +10 +0.60824138203467659 +20 +0.29327612187965479 +10 +0.60814518203467671 +20 +0.29453462187965462 +10 +0.60802768203467639 +20 +0.29596642187965483 +10 +0.60789128203467657 +20 +0.29754512187965487 +10 +0.60773808203467672 +20 +0.29924422187965483 +10 +0.60757048203467667 +20 +0.30103732187965471 +10 +0.60739068203467639 +20 +0.30289802187965453 +10 +0.60720098203467632 +20 +0.30479992187965488 +10 +0.60681188203467629 +20 +0.30859822187965513 +10 +0.60657018203467639 +20 +0.31100912187965457 +10 +0.60635048203467656 +20 +0.31325342187965455 +10 +0.6061580820346768 +20 +0.31527412187965453 +10 +0.60599828203467654 +20 +0.31701412187965461 +10 +0.60587648203467626 +20 +0.31841632187965485 +10 +0.6057979820346765 +20 +0.31942382187965468 +10 +0.60575278203467642 +20 +0.32019952187965495 +10 +0.60571018203467664 +20 +0.32039942187965464 +10 +0.60563658203467652 +20 +0.32058062187965475 +10 +0.60552828203467635 +20 +0.32074412187965473 +10 +0.6053818820346768 +20 +0.32089122187965502 +10 +0.60519368203467705 +20 +0.32102292187965509 +10 +0.60496008203467677 +20 +0.32114052187965481 +10 +0.60467728203467686 +20 +0.32124502187965476 +10 +0.60434198203467682 +20 +0.32133762187965487 +10 +0.60395028203467649 +20 +0.321419621879655 +10 +0.60349878203467655 +20 +0.3214919218796547 +10 +0.60298368203467678 +20 +0.32155592187965487 +10 +0.60240148203467681 +20 +0.321612621879655 +10 +0.60174858203467629 +20 +0.32166312187965451 +10 +0.60102128203467664 +20 +0.32170882187965488 +10 +0.60021608203467691 +20 +0.32175062187965509 +10 +0.59468208203467654 +20 +0.32201462187965491 +10 +0.5941560820346764 +20 +0.32688362187965503 +10 +0.5939795820346766 +20 +0.32882672187965478 +10 +0.59388898203467655 +20 +0.33051802187965496 +10 +0.59388958203467679 +20 +0.33177552187965476 +10 +0.59398708203467654 +20 +0.33241762187965485 +10 +0.59407828203467683 +20 +0.33248522187965479 +10 +0.59427448203467681 +20 +0.33255092187965463 +10 +0.59457028203467654 +20 +0.33261442187965451 +10 +0.59495988203467631 +20 +0.33267532187965465 +10 +0.59543778203467623 +20 +0.33273332187965465 +10 +0.59599828203467653 +20 +0.33278812187965467 +10 +0.59663588203467677 +20 +0.33283932187965493 +10 +0.59734498203467656 +20 +0.33288652187965506 +10 +0.5981198820346767 +20 +0.33292942187965469 +10 +0.59895498203467679 +20 +0.33296772187965451 +10 +0.59984478203467695 +20 +0.33300112187965469 +10 +0.6007835820346763 +20 +0.33302922187965489 +10 +0.60176588203467662 +20 +0.33305162187965476 +10 +0.60278588203467653 +20 +0.33306802187965501 +10 +0.60383818203467665 +20 +0.33307822187965463 +10 +0.60491708203467665 +20 +0.33308162187965451 +10 +0.61548908203467645 +20 +0.33308162187965451 +10 +0.61548908203467645 +20 +0.32998262187965477 +10 +0.61553648203467648 +20 +0.32877952187965465 +10 +0.6156654820346763 +20 +0.32779412187965484 +10 +0.61585658203467675 +20 +0.32712822187965451 +10 +0.61609008203467652 +20 +0.32688362187965447 +10 +0.61626888203467678 +20 +0.32694692187965502 +10 +0.61654768203467658 +20 +0.32712822187965451 +10 +0.61691238203467669 +20 +0.32741482187965465 +10 +0.6173487820346768 +20 +0.32779412187965484 +10 +0.61784298203467702 +20 +0.32825322187965467 +10 +0.61838058203467661 +20 +0.32877952187965465 +10 +0.61894768203467676 +20 +0.32936022187965486 +10 +0.61953008203467663 +20 +0.32998262187965477 +10 +0.62236808203467664 +20 +0.33308162187965451 +10 +0.64989208203467652 +20 +0.33308162187965451 +10 +0.65049208203467657 +20 +0.32827862187965462 +10 +0.65067858203467666 +20 +0.32633892187965474 +10 +0.65074278203467673 +20 +0.32460722187965474 +10 +0.65068448203467688 +20 +0.3232725218796545 +10 +0.65050308203467633 +20 +0.32252362187965455 +10 +0.65038968203467662 +20 +0.32241522187965443 +10 +0.65018838203467655 +20 +0.3223124218796547 +10 +0.64990148203467657 +20 +0.32221552187965463 +10 +0.64953088203467679 +20 +0.32212472187965469 +10 +0.64907898203467707 +20 +0.32204002187965486 +10 +0.64854768203467639 +20 +0.32196182187965494 +10 +0.64793928203467632 +20 +0.32189012187965493 +10 +0.64725578203467637 +20 +0.32182522187965468 +10 +0.64649948203467644 +20 +0.32176732187965462 +10 +0.64567228203467664 +20 +0.32171652187965472 +10 +0.64477648203467686 +20 +0.32167302187965485 +10 +0.6438140820346766 +20 +0.32163702187965493 +10 +0.64278738203467634 +20 +0.32160862187965489 +10 +0.64169838203467611 +20 +0.32158822187965508 +10 +0.64054918203467648 +20 +0.32157582187965494 +10 +0.63934208203467624 +20 +0.32157162187965493 +10 +0.63590938203467617 +20 +0.321566221879655 +10 +0.63331368203467631 +20 +0.32153532187965461 +10 +0.63143828203467645 +20 +0.32145682187965485 +10 +0.63016618203467656 +20 +0.32130872187965454 +10 +0.62938048203467656 +20 +0.32106902187965469 +10 +0.62896438203467631 +20 +0.32071562187965474 +10 +0.62880088203467632 +20 +0.32022652187965461 +10 +0.62877308203467652 +20 +0.31957962187965483 +10 +0.62880558203467662 +20 +0.31845272187965457 +10 +0.62889568203467638 +20 +0.31690492187965491 +10 +0.62903608203467631 +20 +0.31500332187965496 +10 +0.62921948203467637 +20 +0.31281512187965488 +10 +0.62943858203467651 +20 +0.31040742187965487 +10 +0.62968618203467663 +20 +0.30784742187965508 +10 +0.62995488203467676 +20 +0.30520242187965452 +10 +0.63023748203467678 +20 +0.30253952187965505 +10 +0.63052668203467666 +20 +0.29992582187965466 +10 +0.63081518203467635 +20 +0.29742852187965463 +10 +0.63109568203467636 +20 +0.29511492187965449 +10 +0.63136098203467661 +20 +0.29305202187965507 +10 +0.63160378203467649 +20 +0.29130702187965485 +10 +0.63181668203467656 +20 +0.28994722187965505 +10 +0.63199258203467668 +20 +0.28903972187965477 +10 +0.63212408203467685 +20 +0.28865162187965476 +10 +0.63235018203467663 +20 +0.28852082187965478 +10 +0.63275308203467662 +20 +0.28838802187965473 +10 +0.63331038203467638 +20 +0.28825702187965485 +10 +0.63399958203467666 +20 +0.28813132187965496 +10 +0.63479808203467658 +20 +0.28801482187965521 +10 +0.63568328203467639 +20 +0.28791112187965484 +10 +0.63663278203467621 +20 +0.28782382187965472 +10 +0.6376240820346768 +20 +0.28775662187965456 +10 +0.64249308203467692 +20 +0.28748462187965451 +10 +0.64302008203467653 +20 +0.28261462187965491 +10 +0.64319658203467633 +20 +0.28067162187965511 +10 +0.64328718203467639 +20 +0.27898062187965478 +10 +0.64328658203467615 +20 +0.27772312187965498 +10 +0.64318908203467695 +20 +0.2770806218796551 +10 +0.6426077820346765 +20 +0.27689852187965491 +10 +0.64115878203467647 +20 +0.27674592187965474 +10 +0.63896568203467674 +20 +0.27662222187965491 +10 +0.63615258203467639 +20 +0.27652662187965471 +10 +0.63284308203467643 +20 +0.27645842187965453 +10 +0.62916118203467652 +20 +0.27641702187965467 +10 +0.62523058203467652 +20 +0.276401621879655 +10 +0.6211750820346762 +20 +0.27641172187965524 +10 +0.6171185820346764 +20 +0.27644652187965468 +0 +LWPOLYLINE +5 +104 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +233 +70 +1 +43 +0.0 +10 +0.45245518203467672 +20 +0.28866482187965503 +10 +0.45264268203467684 +20 +0.28855772187965478 +10 +0.45286898203467651 +20 +0.28845872187965471 +10 +0.45313378203467647 +20 +0.28836782187965482 +10 +0.45343668203467635 +20 +0.288285221879655 +10 +0.45377708203467648 +20 +0.28821082187965474 +10 +0.45415458203467651 +20 +0.28814492187965501 +10 +0.4545688820346766 +20 +0.2880875218796547 +10 +0.45501928203467656 +20 +0.28803872187965485 +10 +0.45550548203467656 +20 +0.28799862187965486 +10 +0.45602708203467679 +20 +0.28796722187965473 +10 +0.45658348203467647 +20 +0.28794472187965492 +10 +0.45717428203467636 +20 +0.28793112187965486 +10 +0.45779908203467612 +20 +0.28792662187965501 +10 +0.46307508203467629 +20 +0.28792662187965501 +10 +0.46369208203467682 +20 +0.28299062187965462 +10 +0.4638743820346769 +20 +0.28096112187965483 +10 +0.46389418203467647 +20 +0.2792214218796546 +10 +0.46375748203467682 +20 +0.27792222187965454 +10 +0.4634700820346771 +20 +0.27721462187965451 +10 +0.46330118203467663 +20 +0.27712632187965491 +10 +0.46298108203467636 +20 +0.27704372187965454 +10 +0.46251638203467615 +20 +0.27696702187965438 +10 +0.46191368203467642 +20 +0.2768966218796548 +10 +0.46117948203467651 +20 +0.27683262187965463 +10 +0.46032058203467674 +20 +0.27677522187965486 +10 +0.45934338203467706 +20 +0.2767247218796548 +10 +0.45825458203467673 +20 +0.27668142187965483 +10 +0.45706068203467676 +20 +0.27664532187965496 +10 +0.45576838203467696 +20 +0.27661682187965497 +10 +0.45438418203467668 +20 +0.27659612187965477 +10 +0.45291478203467683 +20 +0.27658352187965474 +10 +0.45136668203467678 +20 +0.27657912187965483 +10 +0.44974638203467643 +20 +0.27658312187965495 +10 +0.44806068203467664 +20 +0.27659592187965487 +10 +0.44631608203467676 +20 +0.27661762187965511 +10 +0.43000108203467668 +20 +0.27685962187965485 +10 +0.42972708203467658 +20 +0.28016162187965488 +10 +0.4294540820346765 +20 +0.28346462187965493 +10 +0.42610108203467667 +20 +0.27994062187965518 +10 +0.42274908203467687 +20 +0.27641662187965488 +10 +0.41388908203467634 +20 +0.27641662187965488 +10 +0.41251088203467678 +20 +0.27641992187965481 +10 +0.41126798203467652 +20 +0.27643092187965457 +10 +0.41014978203467667 +20 +0.27645152187965483 +10 +0.40914538203467687 +20 +0.27648342187965469 +10 +0.4082443820346765 +20 +0.27652862187965477 +10 +0.40743608203467674 +20 +0.27658862187965483 +10 +0.40670968203467661 +20 +0.27666552187965487 +10 +0.4060545820346767 +20 +0.27676092187965462 +10 +0.40546018203467649 +20 +0.27687662187965478 +10 +0.4049157820346766 +20 +0.27701452187965492 +10 +0.40441068203467656 +20 +0.27717652187965514 +10 +0.40393428203467641 +20 +0.27736412187965465 +10 +0.40347588203467621 +20 +0.27757942187965456 +10 +0.40302478203467662 +20 +0.2778240218796546 +10 +0.40257038203467654 +20 +0.27809982187965487 +10 +0.40210208203467657 +20 +0.27840862187965498 +10 +0.40130228203467677 +20 +0.27896042187965486 +10 +0.40080778203467671 +20 +0.27931342187965502 +10 +0.40034268203467671 +20 +0.27965892187965524 +10 +0.39990578203467686 +20 +0.28000082187965458 +10 +0.39949568203467678 +20 +0.28034292187965493 +10 +0.3991112820346765 +20 +0.28068902187965483 +10 +0.39875118203467674 +20 +0.28104292187965452 +10 +0.39841418203467649 +20 +0.28140842187965476 +10 +0.39809898203467642 +20 +0.28178952187965456 +10 +0.39780438203467661 +20 +0.2821898218796548 +10 +0.39752898203467668 +20 +0.28261332187965504 +10 +0.39727168203467667 +20 +0.28306382187965495 +10 +0.39703108203467674 +20 +0.2835450218796548 +10 +0.39680588203467648 +20 +0.28406082187965476 +10 +0.39669868203467629 +20 +0.28433282187965481 +10 +0.39659488203467652 +20 +0.28461502187965504 +10 +0.39649428203467674 +20 +0.2849077218796553 +10 +0.39639688203467638 +20 +0.28521152187965471 +10 +0.39630228203467621 +20 +0.28552682187965472 +10 +0.39612118203467661 +20 +0.28619382187965503 +10 +0.39594988203467629 +20 +0.28691262187965472 +10 +0.3957870820346765 +20 +0.28768712187965451 +10 +0.39563148203467624 +20 +0.28852102187965467 +10 +0.39548178203467677 +20 +0.28941822187965482 +10 +0.39533678203467648 +20 +0.29038252187965463 +10 +0.39519518203467663 +20 +0.29141772187965487 +10 +0.39505568203467678 +20 +0.29252762187965464 +10 +0.39491698203467651 +20 +0.29371622187965463 +10 +0.3947779820346764 +20 +0.29498712187965459 +10 +0.39463728203467663 +20 +0.29634432187965465 +10 +0.39449358203467622 +20 +0.29779152187965452 +10 +0.39434568203467635 +20 +0.29933262187965437 +10 +0.39411308203467665 +20 +0.30182852187965459 +10 +0.39370968203467638 +20 +0.30624622187965467 +10 +0.39340778203467652 +20 +0.30956822187965471 +10 +0.39313308203467678 +20 +0.31260312187965489 +10 +0.39289218203467646 +20 +0.31527652187965494 +10 +0.39269188203467642 +20 +0.31751392187965466 +10 +0.39253878203467651 +20 +0.31924082187965497 +10 +0.39243958203467655 +20 +0.320382921879655 +10 +3.8254080000000004 +20 +3.331798 +10 +0.39236938203467631 +20 +0.32093032187965498 +10 +0.39228228203467608 +20 +0.32099592187965487 +10 +0.39214258203467689 +20 +0.3210618218796546 +10 +0.39195318203467666 +20 +0.32112782187965483 +10 +0.39171688203467669 +20 +0.32119322187965482 +10 +0.39143658203467657 +20 +0.32125772187965473 +10 +0.39111508203467649 +20 +0.32132082187965483 +10 +0.39075518203467663 +20 +0.32138202187965481 +10 +0.39035988203467653 +20 +0.3214409218796549 +10 +0.38993198203467638 +20 +0.32149702187965479 +10 +0.38947428203467638 +20 +0.32155002187965465 +10 +0.3889896820346761 +20 +0.32159922187965484 +10 +0.38848098203467685 +20 +0.32164442187965492 +10 +0.38795108203467654 +20 +0.32168502187965464 +10 +0.38740288203467643 +20 +0.32172052187965483 +10 +0.38683908203467676 +20 +0.32175062187965453 +10 +0.38130508203467695 +20 +0.32201462187965435 +10 +0.38077808203467622 +20 +0.32688362187965503 +10 +0.38060308203467674 +20 +0.32882822187965455 +10 +0.38051508203467699 +20 +0.33052342187965433 +10 +0.38051928203467644 +20 +0.33178692187965486 +10 +0.38062108203467671 +20 +0.33243662187965484 +10 +0.3807444820346767 +20 +0.33250502187965492 +10 +0.3810327820346765 +20 +0.33256902187965509 +10 +0.38147728203467623 +20 +0.33262842187965436 +10 +0.3820692820346766 +20 +0.33268302187965504 +10 +0.38280018203467658 +20 +0.33273252187965452 +10 +0.38366138203467681 +20 +0.33277682187965452 +10 +0.38464408203467693 +20 +0.33281562187965463 +10 +0.38573958203467651 +20 +0.33284862187965503 +10 +0.3869393820346767 +20 +0.3328757218796552 +10 +0.38823458203467665 +20 +0.33289662187965474 +10 +0.38961678203467631 +20 +0.33291112187965488 +10 +0.3910770820346765 +20 +0.33291892187965466 +10 +0.3926069820346767 +20 +0.33292002187965464 +10 +0.39419768203467653 +20 +0.33291392187965452 +10 +0.39584068203467659 +20 +0.33290052187965491 +10 +0.39752708203467657 +20 +0.33287962187965481 +10 +0.41406408203467637 +20 +0.33263862187965454 +10 +0.41598608203467613 +20 +0.31138962187965469 +10 +0.41637328203467661 +20 +0.30709852187965458 +10 +0.41673738203467647 +20 +0.30305172187965468 +10 +0.41707018203467672 +20 +0.29934072187965455 +10 +0.41736348203467666 +20 +0.29605732187965472 +10 +0.41760908203467673 +20 +0.29329332187965462 +10 +0.41779888203467674 +20 +0.29114022187965438 +10 +0.41792458203467664 +20 +0.28968972187965458 +10 +0.41797808203467679 +20 +0.28903362187965465 +10 +0.41800668203467672 +20 +0.28889672187965454 +10 +0.41807458203467651 +20 +0.28876932187965443 +10 +0.41818228203467644 +20 +0.28865112187965503 +10 +0.41833008203467636 +20 +0.28854212187965467 +10 +0.41851828203467611 +20 +0.28844232187965446 +10 +0.41874738203467654 +20 +0.28835162187965502 +10 +0.41901758203467643 +20 +0.28826982187965478 +10 +0.41932928203467668 +20 +0.28819702187965479 +10 +0.41968298203467647 +20 +0.28813302187965462 +10 +0.4200787820346763 +20 +0.28807782187965481 +10 +0.42051728203467642 +20 +0.28803132187965486 +10 +0.42099868203467672 +20 +0.28799342187965482 +10 +0.42152348203467638 +20 +0.2879641218796547 +10 +0.4220918820346764 +20 +0.2879432218796546 +10 +0.42270428203467658 +20 +0.28793072187965452 +10 +0.42393748203467641 +20 +0.28791992187965465 +10 +0.42565628203467654 +20 +0.28786002187965454 +10 +0.42625708203467672 +20 +0.28786052187965483 +10 +0.42669858203467692 +20 +0.28789382187965507 +10 +0.42708798203467624 +20 +0.28796892187965439 +10 +0.42736328203467622 +20 +0.28806692187965499 +10 +0.42760718203467663 +20 +0.28820472187965518 +10 +0.42782068203467638 +20 +0.28838832187965457 +10 +0.42800448203467678 +20 +0.28862342187965462 +10 +0.42815958203467674 +20 +0.28891592187965442 +10 +0.42828678203467641 +20 +0.28927152187965488 +10 +0.42838688203467645 +20 +0.2896961218796551 +10 +0.42846088203467636 +20 +0.29019552187965481 +10 +0.42850948203467631 +20 +0.29077552187965483 +10 +0.42853368203467634 +20 +0.29144182187965495 +10 +0.42853428203467658 +20 +0.29220042187965478 +10 +0.42851208203467661 +20 +0.29305702187965466 +10 +0.42846808203467646 +20 +0.29401742187965485 +10 +0.42840308203467625 +20 +0.29508752187965503 +10 +0.42831788203467613 +20 +0.29627302187965499 +10 +0.42818448203467641 +20 +0.29792612187965473 +10 +0.42798688203467661 +20 +0.30017592187965458 +10 +0.42766468203467634 +20 +0.30365942187965456 +10 +0.42717718203467647 +20 +0.30885672187965452 +10 +0.42690208203467639 +20 +0.31183262187965466 +10 +0.42655158203467658 +20 +0.31567882187965468 +10 +0.42622398203467637 +20 +0.31931082187965476 +10 +0.42592648203467642 +20 +0.32264572187965468 +10 +0.42566648203467672 +20 +0.32560112187965451 +10 +0.42545098203467691 +20 +0.32809432187965448 +10 +0.42528728203467647 +20 +0.33004272187965478 +10 +0.42518258203467663 +20 +0.33136372187965502 +10 +0.42514408203467691 +20 +0.33197462187965487 +10 +0.42517698203467624 +20 +0.33212362187965472 +10 +0.42528178203467659 +20 +0.33226022187965498 +10 +0.42546268203467685 +20 +0.33238462187965501 +10 +0.42572398203467643 +20 +0.33249732187965508 +10 +0.4260695820346766 +20 +0.332598721879655 +10 +0.42650398203467665 +20 +0.33268922187965511 +10 +0.42703108203467677 +20 +0.33276912187965468 +10 +0.42765518203467634 +20 +0.33283902187965453 +10 +0.42838048203467649 +20 +0.33289912187965454 +10 +0.42921118203467667 +20 +0.332949921879655 +10 +0.43015128203467645 +20 +0.33299182187965515 +10 +0.43120518203467628 +20 +0.33302522187965478 +10 +0.43237688203467628 +20 +0.33305052187965478 +10 +0.4336706820346764 +20 +0.33306802187965501 +10 +0.43509068203467671 +20 +0.33307832187965458 +10 +0.43664108203467666 +20 +0.33308162187965451 +10 +0.44237688203467684 +20 +0.3330287218796546 +10 +0.4458959820346764 +20 +0.33283612187965439 +10 +0.4476650820346767 +20 +0.33245302187965453 +10 +0.4481510820346768 +20 +0.33182862187965456 +10 +0.44819178203467647 +20 +0.33088832187965489 +10 +0.44830728203467674 +20 +0.32921122187965501 +10 +0.44848748203467625 +20 +0.3269055218796546 +10 +0.44872218203467651 +20 +0.32407962187965489 +10 +0.4490014820346766 +20 +0.32084192187965488 +10 +0.44931518203467635 +20 +0.3173006218796548 +10 +0.44965328203467658 +20 +0.31356432187965466 +10 +0.4500056820346765 +20 +0.30974112187965475 +10 +0.45036238203467638 +20 +0.30593952187965456 +10 +0.45071318203467658 +20 +0.30226782187965484 +10 +0.45104798203467633 +20 +0.29883442187965459 +10 +0.45135688203467639 +20 +0.29574762187965453 +10 +0.45162978203467652 +20 +0.29311582187965479 +10 +0.4518563820346766 +20 +0.29104732187965499 +10 +0.45202688203467678 +20 +0.28965042187965473 +10 +0.45213108203467689 +20 +0.28903362187965465 +10 +0.45219898203467612 +20 +0.28890282187965466 +10 +0.4523071820346769 +20 +0.2887799218796544 +0 +LWPOLYLINE +5 +105 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +138 +70 +1 +43 +0.0 +10 +0.22643378203467734 +20 +0.33295732187965499 +10 +0.22968978203467716 +20 +0.33284952187965511 +10 +0.23206518203467696 +20 +0.33270152187965474 +10 +0.23365208203467713 +20 +0.33250912187965498 +10 +0.23454288203467732 +20 +0.33226822187965521 +10 +0.23483008203467715 +20 +0.33197462187965487 +10 +0.23502498203467725 +20 +0.32963542187965489 +10 +0.23554358203467685 +20 +0.32377552187965453 +10 +0.2362917820346766 +20 +0.31546082187965452 +10 +0.23682208203467725 +20 +0.30961862187965428 +10 +0.23875808203467686 +20 +0.28836962187965498 +10 +0.24428508203467703 +20 +0.28810662187965463 +10 +0.24485068203467686 +20 +0.28807732187965451 +10 +0.24538418203467693 +20 +0.28804432187965467 +10 +0.24588668203467723 +20 +0.28800662187965453 +10 +0.24635868203467692 +20 +0.28796312187965467 +10 +0.24680128203467711 +20 +0.2879128218796545 +10 +0.2472150820346769 +20 +0.2878548218796545 +10 +0.24760098203467695 +20 +0.28778812187965463 +10 +0.24795978203467683 +20 +0.28771152187965443 +10 +0.24829228203467724 +20 +0.28762422187965486 +10 +0.24859928203467718 +20 +0.2875250218796549 +10 +0.24888168203467731 +20 +0.28741312187965495 +10 +0.24914018203467725 +20 +0.28728732187965456 +10 +0.24937568203467708 +20 +0.28714672187965473 +10 +0.249588882034677 +20 +0.2869903218796549 +10 +0.24978078203467702 +20 +0.28681702187965508 +10 +0.24995198203467683 +20 +0.28662592187965463 +10 +0.25010338203467708 +20 +0.2864159218796547 +10 +0.25023578203467733 +20 +0.2861860218796547 +10 +0.25035008203467712 +20 +0.28593532187965454 +10 +0.25044698203467719 +20 +0.28566262187965485 +10 +0.25052728203467711 +20 +0.28536712187965496 +10 +0.25059188203467697 +20 +0.28504772187965488 +10 +0.2506415820346769 +20 +0.28470332187965464 +10 +0.25067718203467704 +20 +0.28433312187965465 +10 +0.25069948203467696 +20 +0.28393592187965444 +10 +0.25070928203467679 +20 +0.28351072187965509 +10 +0.25070738203467724 +20 +0.28305662187965486 +10 +0.25069458203467732 +20 +0.28257262187965482 +10 +0.2506717820346771 +20 +0.282057621879655 +10 +0.25063968203467735 +20 +0.28151062187965481 +10 +0.25059918203467701 +20 +0.28093062187965478 +10 +0.25055108203467735 +20 +0.28031662187965489 +10 +0.25026808203467754 +20 +0.27685962187965485 +10 +0.23444708203467723 +20 +0.27661762187965511 +10 +0.23140748203467731 +20 +0.27657512187965472 +10 +0.22872398203467703 +20 +0.27655002187965461 +10 +0.22637438203467697 +20 +0.27654772187965471 +10 +0.224336782034677 +20 +0.2765734218796545 +10 +0.22258898203467714 +20 +0.27663242187965453 +10 +0.22110898203467733 +20 +0.27673002187965479 +10 +0.21987468203467697 +20 +0.27687152187965469 +10 +0.21886408203467711 +20 +0.27706212187965484 +10 +0.21805498203467721 +20 +0.27730712187965467 +10 +0.21742538203467721 +20 +0.27761192187965467 +10 +0.21695318203467706 +20 +0.27798162187965492 +10 +0.21661638203467726 +20 +0.27842152187965485 +10 +0.21639288203467721 +20 +0.27893702187965497 +10 +0.21626048203467696 +20 +0.27953342187965469 +10 +0.21619728203467692 +20 +0.28021582187965466 +10 +0.21618108203467712 +20 +0.28098962187965482 +10 +0.21618108203467712 +20 +0.28357462187965476 +10 +0.21277608203467691 +20 +0.27999562187965454 +10 +0.20937208203467672 +20 +0.27641662187965432 +10 +0.20078008203467723 +20 +0.27641662187965488 +10 +0.1998910820346772 +20 +0.27641952187965502 +10 +0.19904148203467698 +20 +0.27642852187965472 +10 +0.19822978203467678 +20 +0.27644412187965484 +10 +0.19745468203467731 +20 +0.27646682187965455 +10 +0.19671468203467712 +20 +0.27649712187965469 +10 +0.19600838203467696 +20 +0.27653552187965502 +10 +0.19533438203467701 +20 +0.27658242187965476 +10 +0.19469118203467695 +20 +0.27663852187965465 +10 +0.1940774820346769 +20 +0.27670422187965449 +10 +0.1934917820346771 +20 +0.27677992187965461 +10 +0.19293268203467717 +20 +0.27686632187965465 +10 +0.19239868203467736 +20 +0.27696372187965501 +10 +0.19188848203467723 +20 +0.27707272187965482 +10 +0.19140068203467697 +20 +0.27719382187965491 +10 +0.19093368203467687 +20 +0.27732752187965504 +10 +0.19048618203467704 +20 +0.27747422187965498 +10 +0.19005678203467713 +20 +0.27763452187965498 +10 +0.18964398203467736 +20 +0.27780892187965478 +10 +0.18924648203467731 +20 +0.27799792187965466 +10 +0.18886268203467727 +20 +0.27820192187965442 +10 +0.18849128203467735 +20 +0.27842152187965485 +10 +0.1881308820346772 +20 +0.27865712187965463 +10 +0.18777998203467705 +20 +0.27890932187965456 +10 +0.18743718203467707 +20 +0.27917862187965437 +10 +0.1871010820346769 +20 +0.27946542187965495 +10 +0.18677018203467677 +20 +0.27977032187965489 +10 +0.18644318203467736 +20 +0.28009372187965509 +10 +0.18611858203467724 +20 +0.28043622187965467 +10 +0.18579508203467709 +20 +0.28079832187965448 +10 +0.18547108203467721 +20 +0.28118032187965492 +10 +0.18514518203467722 +20 +0.28158292187965506 +10 +0.18462718203467732 +20 +0.28225852187965472 +10 +0.18427798203467682 +20 +0.28275692187965495 +10 +0.18403898203467661 +20 +0.28313862187965499 +10 +0.18381728203467729 +20 +0.28353892187965524 +10 +0.18361108203467702 +20 +0.28396842187965454 +10 +0.18341838203467686 +20 +0.284437921879655 +10 +0.18323728203467671 +20 +0.28495792187965496 +10 +0.183065882034677 +20 +0.28553932187965481 +10 +0.18290208203467717 +20 +0.28619262187965455 +10 +0.18274408203467707 +20 +0.28692862187965462 +10 +0.18258988203467719 +20 +0.28775792187965443 +10 +0.18243758203467741 +20 +0.28869132187965496 +10 +0.18228518203467714 +20 +0.28973932187965457 +10 +0.18213078203467736 +20 +0.29091272187965478 +10 +0.18197248203467686 +20 +0.29222222187965496 +10 +0.18180828203467669 +20 +0.29367832187965515 +10 +0.18163618203467735 +20 +0.29529192187965458 +10 +0.18145448203467696 +20 +0.29707362187965491 +10 +0.18126098203467722 +20 +0.299034021879655 +10 +0.18098138203467729 +20 +0.30194452187965459 +10 +0.18075308203467755 +20 +0.30436362187965471 +10 +0.18039628203467717 +20 +0.30830362187965477 +10 +0.18008178203467728 +20 +0.3120540218796547 +10 +0.17981518203467717 +20 +0.31552732187965504 +10 +0.1796020820346772 +20 +0.31863612187965518 +10 +0.17944808203467721 +20 +0.32129302187965503 +10 +0.17935868203467709 +20 +0.32341072187965503 +10 +0.1793394820346772 +20 +0.3249017218796546 +10 +0.17939608203467738 +20 +0.32567862187965479 +10 +0.17955428203467683 +20 +0.32611512187965486 +10 +0.17982568203467664 +20 +0.32663102187965476 +10 +0.18019528203467694 +20 +0.32720732187965451 +10 +0.18064858203467704 +20 +0.32782492187965473 +10 +0.18117068203467701 +20 +0.32846472187965492 +10 +0.18174678203467687 +20 +0.32910762187965514 +10 +0.18236218203467713 +20 +0.32973462187965485 +10 +0.18300208203467727 +20 +0.33032662187965467 +10 +0.18613908203467699 +20 +0.33308162187965451 +10 +0.21045708203467683 +20 +0.33308162187965451 +10 +0.21690968203467664 +20 +0.33306922187965438 +10 +0.22220448203467691 +20 +0.33302912187965494 +0 +LWPOLYLINE +5 +106 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +232 +70 +1 +43 +0.0 +10 +0.50202378203467624 +20 +0.27997182187965486 +10 +0.50179808203467624 +20 +0.28096862187965477 +10 +0.50128908203467659 +20 +0.28330662187965483 +10 +0.49784408203467634 +20 +0.27986162187965458 +10 +0.49440008203467667 +20 +0.27641662187965488 +10 +0.48576808203467658 +20 +0.27641662187965488 +10 +0.48448088203467687 +20 +0.2764204218796551 +10 +0.48330808203467635 +20 +0.27643282187965468 +10 +0.4822411820346767 +20 +0.2764551218796546 +10 +0.4812717820346768 +20 +0.27648862187965473 +10 +0.48039138203467668 +20 +0.27653462187965494 +10 +0.47959158203467633 +20 +0.2765945218796545 +10 +0.47886398203467628 +20 +0.27666962187965494 +10 +0.47820008203467657 +20 +0.27676122187965502 +10 +0.47759148203467661 +20 +0.27687072187965456 +10 +0.47702958203467649 +20 +0.27699952187965449 +10 +0.47650618203467665 +20 +0.27714872187965478 +10 +0.47601268203467662 +20 +0.27731982187965465 +10 +0.47554058203467642 +20 +0.27751422187965447 +10 +0.47508168203467649 +20 +0.27773302187965476 +10 +0.47462728203467641 +20 +0.27797772187965475 +10 +0.47416908203467667 +20 +0.27824962187965485 +10 +0.47336648203467668 +20 +0.27875442187965505 +10 +0.47286998203467656 +20 +0.27908022187965509 +10 +0.47240278203467656 +20 +0.27940232187965486 +10 +0.47196368203467676 +20 +0.27972472187965502 +10 +0.47155128203467678 +20 +0.28005172187965499 +10 +0.47116428203467675 +20 +0.28038742187965482 +10 +0.47080148203467675 +20 +0.28073592187965457 +10 +0.47046148203467641 +20 +0.28110132187965486 +10 +0.47014308203467636 +20 +0.2814879218796551 +10 +0.46999148203467678 +20 +0.28169042187965454 +10 +0.46984488203467678 +20 +0.28189972187965429 +10 +0.46970288203467658 +20 +0.28211642187965458 +10 +0.46956558203467669 +20 +0.28234092187965465 +10 +0.46943258203467675 +20 +0.28257382187965474 +10 +0.46930388203467677 +20 +0.28281562187965459 +10 +0.46917928203467629 +20 +0.28306682187965504 +10 +0.46905858203467599 +20 +0.28332802187965522 +10 +0.46894168203467645 +20 +0.28359962187965493 +10 +0.46882828203467675 +20 +0.28388222187965495 +10 +0.46871838203467631 +20 +0.28417632187965502 +10 +0.46861178203467635 +20 +0.28448242187965489 +10 +0.46850818203467648 +20 +0.28480102187965484 +10 +0.46840758203467669 +20 +0.2851326218796546 +10 +0.46830978203467655 +20 +0.28547782187965498 +10 +0.4682145820346767 +20 +0.28583712187965515 +10 +0.46812188203467664 +20 +0.28621102187965486 +10 +0.46803148203467648 +20 +0.28660002187965494 +10 +0.46794318203467633 +20 +0.28700462187965514 +10 +0.46785678203467684 +20 +0.28742542187965459 +10 +0.46777228203467691 +20 +0.28786292187965468 +10 +0.46768938203467614 +20 +0.28831752187965465 +10 +0.46760798203467679 +20 +0.28878982187965474 +10 +0.46752798203467671 +20 +0.28928042187965464 +10 +0.46744898203467666 +20 +0.28978962187965474 +10 +0.46729398203467665 +20 +0.29086652187965467 +10 +0.46714158203467693 +20 +0.29202452187965466 +10 +0.46699068203467642 +20 +0.29326782187965472 +10 +0.46683978203467646 +20 +0.29460062187965486 +10 +0.46668758203467664 +20 +0.29602702187965513 +10 +0.46653298203467641 +20 +0.29755112187965449 +10 +0.46637448203467657 +20 +0.29917702187965467 +10 +0.46621088203467664 +20 +0.30090902187965451 +10 +0.46604088203467675 +20 +0.30275122187965464 +10 +0.46586308203467652 +20 +0.30470762187965461 +10 +0.46568798203467654 +20 +0.30665082187965487 +10 +0.4655250820346768 +20 +0.30847692187965459 +10 +0.46537478203467653 +20 +0.31019032187965478 +10 +0.46523768203467653 +20 +0.31179562187965471 +10 +0.46511418203467658 +20 +0.31329732187965476 +10 +0.46500478203467643 +20 +0.31469982187965484 +10 +0.46490998203467637 +20 +0.31600762187965481 +10 +0.46483018203467619 +20 +0.31722532187965502 +10 +0.46476598203467667 +20 +0.31835722187965487 +10 +0.46471778203467651 +20 +0.31940792187965472 +10 +0.46468608203467654 +20 +0.32038202187965492 +10 +0.46467138203467651 +20 +0.32128372187965493 +10 +0.4646741820346767 +20 +0.32211782187965499 +10 +0.46469488203467635 +20 +0.3228886218796545 +10 +0.46473398203467631 +20 +0.32360062187965444 +10 +0.46479198203467631 +20 +0.32425832187965464 +10 +0.46486938203467665 +20 +0.32486632187965492 +10 +0.46496658203467656 +20 +0.32542902187965517 +10 +0.46508418203467627 +20 +0.32595082187965474 +10 +0.4652225820346767 +20 +0.32643642187965505 +10 +0.46538228203467646 +20 +0.32689012187965494 +10 +0.46556378203467641 +20 +0.32731642187965482 +10 +0.46576748203467633 +20 +0.32771992187965504 +10 +0.46599398203467646 +20 +0.3281051218796549 +10 +0.46624368203467659 +20 +0.32847632187965492 +10 +0.46651708203467646 +20 +0.32883822187965484 +10 +0.46681468203467635 +20 +0.32919522187965455 +10 +0.46713688203467663 +20 +0.32955172187965454 +10 +0.4674842820346764 +20 +0.32991242187965453 +10 +0.46785728203467658 +20 +0.33028162187965504 +10 +0.46825638203467634 +20 +0.33066382187965482 +10 +0.46886238203467656 +20 +0.33122922187965476 +10 +0.46921738203467678 +20 +0.33153262187965493 +10 +0.4695787820346764 +20 +0.3318011218796546 +10 +0.46996338203467658 +20 +0.33203732187965462 +10 +0.47027718203467628 +20 +0.33219472187965504 +10 +0.47062068203467644 +20 +0.33233632187965489 +10 +0.47100088203467672 +20 +0.33246332187965466 +10 +0.47142498203467664 +20 +0.33257662187965442 +10 +0.47189998203467642 +20 +0.33267732187965471 +10 +0.47243308203467671 +20 +0.33276652187965494 +10 +0.47303128203467659 +20 +0.3328452218796546 +10 +0.47370178203467672 +20 +0.33291452187965476 +10 +0.47445168203467669 +20 +0.3329754218796549 +10 +0.4752879820346767 +20 +0.333029021879655 +10 +0.47621778203467635 +20 +0.33307642187965503 +10 +0.47761538203467624 +20 +0.33313172187965479 +10 +0.47920888203467626 +20 +0.33318022187965479 +10 +0.48101488203467602 +20 +0.33322442187965484 +10 +0.48359708203467633 +20 +0.3332776218796546 +10 +0.49640508203467659 +20 +0.33352462187965504 +10 +0.49669808203467669 +20 +0.33609862187965522 +10 +0.49674588203467651 +20 +0.33667622187965485 +10 +0.49676858203467678 +20 +0.33733172187965454 +10 +0.49676708203467701 +20 +0.3380426218796545 +10 +0.49674268203467653 +20 +0.33878612187965451 +10 +0.49669638203467648 +20 +0.3395395218796543 +10 +0.49662928203467627 +20 +0.34028022187965468 +10 +0.49654248203467644 +20 +0.34098552187965481 +10 +0.4964370820346764 +20 +0.34163262187965504 +10 +0.49633818203467628 +20 +0.34215252187965506 +10 +0.49624368203467661 +20 +0.34260762187965477 +10 +0.49614528203467678 +20 +0.34300222187965468 +10 +0.49603458203467676 +20 +0.3433407218796547 +10 +0.49590328203467648 +20 +0.34362742187965478 +10 +0.49574318203467638 +20 +0.34386662187965489 +10 +0.49554578203467647 +20 +0.34406252187965503 +10 +0.4953027820346767 +20 +0.3442195218796551 +10 +0.49500598203467638 +20 +0.34434192187965451 +10 +0.49464698203467661 +20 +0.34443402187965433 +10 +0.4942173820346768 +20 +0.34450012187965506 +10 +0.49370898203467628 +20 +0.34454452187965501 +10 +0.49311338203467614 +20 +0.34457162187965518 +10 +0.49242218203467691 +20 +0.34458562187965447 +10 +0.49162718203467626 +20 +0.34459082187965451 +10 +0.49072008203467632 +20 +0.34459162187965464 +10 +0.4890405820346766 +20 +0.34459902187965463 +10 +0.48776388203467635 +20 +0.34464162187965497 +10 +0.48682638203467632 +20 +0.34475022187965498 +10 +0.48616458203467661 +20 +0.34495552187965461 +10 +0.48571508203467673 +20 +0.34528822187965436 +10 +0.48541428203467629 +20 +0.3457792218796546 +10 +0.48519878203467648 +20 +0.34645912187965477 +10 +0.48500508203467629 +20 +0.34735862187965483 +10 +0.48476898203467622 +20 +0.34871552187965504 +10 +0.48460188203467647 +20 +0.350051821879655 +10 +0.48450388203467643 +20 +0.35132972187965461 +10 +0.4844745820346763 +20 +0.35251102187965455 +10 +0.48451388203467616 +20 +0.35355782187965479 +10 +0.48462178203467654 +20 +0.35443222187965473 +10 +0.48479788203467655 +20 +0.355096121879655 +10 +0.4850420820346768 +20 +0.35551162187965502 +10 +0.48554968203467663 +20 +0.35566732187965466 +10 +0.48667598203467666 +20 +0.35579792187965475 +10 +0.48833218203467643 +20 +0.35590412187965492 +10 +0.49042918203467678 +20 +0.35598632187965495 +10 +0.49287808203467676 +20 +0.35604512187965509 +10 +0.49558988203467658 +20 +0.35608112187965446 +10 +0.49847558203467646 +20 +0.35609492187965497 +10 +0.50144628203467656 +20 +0.35608702187965524 +10 +0.5044130820346765 +20 +0.35605792187965501 +10 +0.50728698203467648 +20 +0.35600822187965453 +10 +0.50997898203467673 +20 +0.35593852187965458 +10 +0.51240008203467635 +20 +0.35584922187965495 +10 +0.51446148203467656 +20 +0.35574112187965468 +10 +0.51607408203467653 +20 +0.35561462187965465 +10 +0.51714888203467646 +20 +0.3554702218796546 +10 +0.51759708203467647 +20 +0.35530862187965473 +10 +0.51766108203467665 +20 +0.35506542187965451 +10 +0.51775088203467656 +20 +0.35451052187965459 +10 +0.51789688203467632 +20 +0.35340332187965451 +10 +0.51807728203467629 +20 +0.35186672187965451 +10 +0.51828888203467649 +20 +0.34993292187965486 +10 +0.51852868203467628 +20 +0.34763402187965475 +10 +0.51879338203467684 +20 +0.34500212187965451 +10 +0.51907968203467658 +20 +0.34206942187965439 +10 +0.51938458203467652 +20 +0.3388681218796552 +10 +0.51970478203467674 +20 +0.3354301218796546 +10 +0.52003708203467669 +20 +0.33178782187965439 +10 +0.52030948203467653 +20 +0.32874842187965492 +10 +0.52058598203467643 +20 +0.32561522187965486 +10 +0.52107298203467656 +20 +0.32001472187965507 +10 +0.52134708203467661 +20 +0.31688562187965452 +10 +0.52161598203467663 +20 +0.31384352187965481 +10 +0.52187798203467639 +20 +0.31090532187965481 +10 +0.52213148203467674 +20 +0.30808812187965495 +10 +0.52237488203467686 +20 +0.30540902187965513 +10 +0.52260668203467642 +20 +0.30288502187965471 +10 +0.52282518203467632 +20 +0.30053312187965475 +10 +0.52302888203467623 +20 +0.29837042187965457 +10 +0.52321608203467651 +20 +0.2964140218796546 +10 +0.52338528203467627 +20 +0.29468082187965483 +10 +0.52353488203467635 +20 +0.29318792187965459 +10 +0.52366328203467649 +20 +0.29195242187965487 +10 +0.52376878203467647 +20 +0.29099132187965504 +10 +0.52384988203467653 +20 +0.29032172187965499 +10 +0.52390508203467634 +20 +0.28996062187965521 +10 +0.52397658203467645 +20 +0.28965472187965469 +10 +0.52406158203467668 +20 +0.28938102187965498 +10 +0.52416588203467673 +20 +0.28913732187965502 +10 +0.5242949820346765 +20 +0.28892152187965481 +10 +0.52445458203467632 +20 +0.28873172187965479 +10 +0.52465038203467651 +20 +0.28856552187965456 +10 +0.52488778203467645 +20 +0.28842102187965457 +10 +0.52517268203467637 +20 +0.28829612187965481 +10 +0.52551058203467615 +20 +0.28818862187965477 +10 +0.52590718203467668 +20 +0.28809642187965501 +10 +0.52636808203467667 +20 +0.2880175218796549 +10 +0.5268988820346765 +20 +0.28794972187965451 +10 +0.52750518203467656 +20 +0.28789092187965437 +10 +0.52819278203467657 +20 +0.28783902187965504 +10 +0.52896718203467641 +20 +0.28779192187965486 +10 +0.52983408203467641 +20 +0.28774762187965486 +10 +0.53536208203467661 +20 +0.28748462187965451 +10 +0.53536208203467661 +20 +0.27685962187965429 +10 +0.51918308203467656 +20 +0.27661862187965458 +10 +0.51489768203467678 +20 +0.27656732187965438 +10 +0.51136908203467668 +20 +0.27655562187965499 +10 +0.50853578203467642 +20 +0.27658702187965456 +10 +0.50633668203467652 +20 +0.27666472187965474 +10 +0.5047104820346765 +20 +0.27679192187965496 +10 +0.50359578203467648 +20 +0.27697202187965508 +10 +0.50293138203467647 +20 +0.2772081218796546 +10 +0.50265608203467649 +20 +0.27750362187965505 +10 +0.5024809820346765 +20 +0.27812572187965512 +10 +0.50226078203467639 +20 +0.27898632187965455 +0 +LWPOLYLINE +5 +107 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +136 +70 +1 +43 +0.0 +10 +0.55212298203467625 +20 +0.27665312187965474 +10 +0.55119268203467631 +20 +0.27671972187965466 +10 +0.55032688203467628 +20 +0.27679762187965473 +10 +0.54952188203467645 +20 +0.2768875218796546 +10 +0.54877398203467653 +20 +0.27699032187965489 +10 +0.54807918203467643 +20 +0.27710692187965458 +10 +0.54743378203467641 +20 +0.27723802187965441 +10 +0.54683408203467621 +20 +0.27738452187965501 +10 +0.54627628203467671 +20 +0.27754732187965481 +10 +0.54575648203467664 +20 +0.27772722187965504 +10 +0.54527098203467683 +20 +0.27792502187965473 +10 +0.54481598203467652 +20 +0.27814172187965447 +10 +0.54438768203467658 +20 +0.27837802187965499 +10 +0.54398228203467625 +20 +0.27863472187965477 +10 +0.54359598203467641 +20 +0.27891282187965494 +10 +0.54322508203467679 +20 +0.27921312187965452 +10 +0.54286568203467667 +20 +0.27953642187965477 +10 +0.54251408203467688 +20 +0.27988352187965471 +10 +0.5421664820346761 +20 +0.28025532187965496 +10 +0.54181908203467688 +20 +0.28065272187965506 +10 +0.54146808203467678 +20 +0.2810765218796546 +10 +0.54110968203467669 +20 +0.2815275218796548 +10 +0.54055118203467645 +20 +0.28225852187965472 +10 +0.54020208203467646 +20 +0.28275692187965495 +10 +0.5399629820346763 +20 +0.28313862187965499 +10 +0.53974138203467636 +20 +0.28353892187965524 +10 +0.5395352820346766 +20 +0.28396842187965454 +10 +0.53934258203467644 +20 +0.284437921879655 +10 +0.53916158203467623 +20 +0.28495792187965496 +10 +0.53899008203467658 +20 +0.28553932187965481 +10 +0.5388263820346767 +20 +0.28619262187965455 +10 +0.5386683820346766 +20 +0.28692862187965462 +10 +0.53851428203467666 +20 +0.28775792187965443 +10 +0.53836198203467689 +20 +0.28869132187965496 +10 +0.53820958203467661 +20 +0.28973932187965512 +10 +0.53805518203467684 +20 +0.29091272187965478 +10 +0.53789688203467689 +20 +0.29222222187965496 +10 +0.53773268203467672 +20 +0.29367832187965459 +10 +0.53756058203467683 +20 +0.29529192187965458 +10 +0.53737878203467648 +20 +0.29707362187965491 +10 +0.53718518203467625 +20 +0.299034021879655 +10 +0.53690558203467686 +20 +0.30194452187965459 +10 +0.53667708203467668 +20 +0.30436362187965471 +10 +0.53632028203467685 +20 +0.30830362187965477 +10 +0.53600588203467636 +20 +0.3120540218796547 +10 +0.53573948203467614 +20 +0.31552732187965449 +10 +0.53552658203467662 +20 +0.31863612187965462 +10 +0.53537268203467658 +20 +0.32129302187965503 +10 +0.53528348203467635 +20 +0.32341072187965503 +10 +0.53526438203467641 +20 +0.32490172187965516 +10 +0.53532108203467654 +20 +0.32567862187965479 +10 +0.5354789820346767 +20 +0.32611512187965486 +10 +0.53575018203467661 +20 +0.32663102187965476 +10 +0.53611978203467636 +20 +0.32720732187965451 +10 +0.53657308203467646 +20 +0.32782492187965473 +10 +0.53709518203467643 +20 +0.32846472187965492 +10 +0.53767118203467634 +20 +0.32910762187965514 +10 +0.53828648203467666 +20 +0.32973462187965485 +10 +0.5389260820346764 +20 +0.33032662187965467 +10 +0.54206408203467671 +20 +0.33308162187965451 +10 +0.5835840820346766 +20 +0.33308162187965451 +10 +0.58803588203467649 +20 +0.32876652187965427 +10 +0.58871258203467669 +20 +0.32809842187965454 +10 +0.58916248203467692 +20 +0.32762972187965478 +10 +0.58943698203467676 +20 +0.32732462187965494 +10 +0.58969248203467661 +20 +0.32702052187965513 +10 +0.58992988203467656 +20 +0.32671292187965495 +10 +0.59015028203467657 +20 +0.32639772187965488 +10 +0.59035488203467656 +20 +0.32607052187965502 +10 +0.59054468203467658 +20 +0.3257271218796548 +10 +0.59072078203467659 +20 +0.32536332187965478 +10 +0.59088418203467663 +20 +0.32497462187965453 +10 +0.59103598203467667 +20 +0.32455682187965462 +10 +0.59117728203467668 +20 +0.32410572187965447 +10 +0.59130918203467664 +20 +0.32361702187965469 +10 +0.59143268203467658 +20 +0.3230863218796548 +10 +0.59154898203467643 +20 +0.32250942187965481 +10 +0.59165898203467626 +20 +0.3218821218796547 +10 +0.59176378203467606 +20 +0.32120002187965457 +10 +0.59186458203467684 +20 +0.32045882187965502 +10 +0.59196238203467644 +20 +0.31965432187965492 +10 +0.59205828203467648 +20 +0.31878212187965493 +10 +0.59215328203467643 +20 +0.31783812187965499 +10 +0.59224848203467628 +20 +0.31681792187965463 +10 +0.592344982034676 +20 +0.31571722187965445 +10 +0.59249448203467669 +20 +0.31390602187965522 +10 +0.59265288203467659 +20 +0.31188962187965463 +10 +0.59301108203467678 +20 +0.30718362187965476 +10 +0.59359808203467646 +20 +0.29943662187965459 +10 +0.56652108203467666 +20 +0.29943662187965459 +10 +0.56311508203467642 +20 +0.30312562187965464 +10 +0.55971008203467676 +20 +0.30681462187965469 +10 +0.55979708203467649 +20 +0.30246162187965442 +10 +0.55980898203467633 +20 +0.30199292187965465 +10 +0.55982638203467605 +20 +0.30148782187965462 +10 +0.55987648203467688 +20 +0.30038732187965489 +10 +0.55994468203467651 +20 +0.29919782187965482 +10 +0.56002818203467641 +20 +0.29795712187965451 +10 +0.56012438203467629 +20 +0.29670312187965453 +10 +0.56023038203467657 +20 +0.29547372187965493 +10 +0.56034348203467643 +20 +0.29430652187965478 +10 +0.56040188203467622 +20 +0.29375822187965472 +10 +0.56046108203467671 +20 +0.29323962187965458 +10 +0.56103808203467664 +20 +0.28836962187965498 +10 +0.5721050820346768 +20 +0.28792662187965501 +10 +0.58317208203467641 +20 +0.28748462187965507 +10 +0.58369908203467658 +20 +0.28261462187965491 +10 +0.58387558203467638 +20 +0.28067162187965455 +10 +0.58396618203467643 +20 +0.27898062187965478 +10 +0.58396558203467674 +20 +0.27772312187965498 +10 +0.58386808203467644 +20 +0.27708062187965454 +10 +0.5837399820346767 +20 +0.2770130218796546 +10 +0.5834351820346767 +20 +0.27694732187965476 +10 +0.58296308203467651 +20 +0.27688382187965488 +10 +0.58233298203467676 +20 +0.27682292187965474 +10 +0.58155398203467656 +20 +0.27676492187965474 +10 +0.58063548203467652 +20 +0.27671012187965471 +10 +0.57958658203467683 +20 +0.27665892187965446 +10 +0.578416682034677 +20 +0.27661172187965488 +10 +0.57713498203467661 +20 +0.2765688218796547 +10 +0.57575078203467633 +20 +0.27653052187965488 +10 +0.57427338203467626 +20 +0.27649712187965469 +10 +0.5727118820346766 +20 +0.2764690218796545 +10 +0.57107568203467629 +20 +0.27644662187965463 +10 +0.56937398203467604 +20 +0.27643022187965438 +10 +0.56761598203467656 +20 +0.27642002187965475 +10 +0.56581108203467678 +20 +0.27641662187965488 +10 +0.56402668203467676 +20 +0.27641772187965485 +10 +0.56234478203467664 +20 +0.27642162187965502 +10 +0.56076158203467674 +20 +0.27642902187965501 +10 +0.55927318203467635 +20 +0.27644092187965486 +10 +0.55787588203467631 +20 +0.27645812187965468 +10 +0.55656588203467638 +20 +0.27648152187965458 +10 +0.55533938203467637 +20 +0.27651182187965473 +10 +0.55419258203467658 +20 +0.27654992187965466 +10 +0.55312168203467627 +20 +0.27659672187965445 +0 +LWPOLYLINE +5 +108 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +22 +70 +1 +43 +0.0 +10 +0.48803978203467657 +20 +0.31158652187965485 +10 +0.48851578203467638 +20 +0.30656912187965457 +10 +0.48902028203467618 +20 +0.30118082187965467 +10 +0.4891820820346765 +20 +0.29943662187965459 +10 +0.49020708203467656 +20 +0.28836962187965443 +10 +0.50083208203467677 +20 +0.28836962187965498 +10 +0.50052208203467674 +20 +0.29456762187965502 +10 +0.50046338203467655 +20 +0.29562592187965475 +10 +0.50038448203467645 +20 +0.29686482187965491 +10 +0.50028758203467638 +20 +0.29825602187965483 +10 +0.5001750820346762 +20 +0.29977112187965504 +10 +0.50004928203467636 +20 +0.3013818218796549 +10 +0.4999122820346763 +20 +0.30305982187965486 +10 +0.49976658203467639 +20 +0.30477672187965488 +10 +0.49961438203467656 +20 +0.30650412187965492 +10 +0.49945788203467678 +20 +0.30821382187965485 +10 +0.49929958203467684 +20 +0.30987722187965472 +10 +0.4991940820346763 +20 +0.31094662187965472 +10 +0.49817608203467645 +20 +0.32112862187965496 +10 +0.49261308203467635 +20 +0.32139362187965481 +10 +0.48705008203467681 +20 +0.32165762187965463 +10 +0.48766588203467687 +20 +0.31545512187965474 +0 +LWPOLYLINE +5 +109 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +47 +70 +1 +43 +0.0 +10 +0.21562488203467733 +20 +0.29010632187965457 +10 +0.21559808203467756 +20 +0.29083772187965484 +10 +0.21555778203467713 +20 +0.29169302187965485 +10 +0.21550448203467687 +20 +0.29266382187965456 +10 +0.21543888203467698 +20 +0.29374152187965463 +10 +0.2153612820346773 +20 +0.29491762187965453 +10 +0.21527238203467747 +20 +0.2961836218796543 +10 +0.21517268203467721 +20 +0.29753112187965502 +10 +0.21506268203467738 +20 +0.29895142187965518 +10 +0.21494298203467765 +20 +0.30043622187965469 +10 +0.21481418203467717 +20 +0.3019768218796548 +10 +0.21467668203467738 +20 +0.30356482187965494 +10 +0.21453108203467741 +20 +0.30519162187965521 +10 +0.21308208203467682 +20 +0.32112862187965441 +10 +0.20183608203467707 +20 +0.32166062187965472 +10 +0.20234908203467683 +20 +0.31741062187965463 +10 +0.20247268203467672 +20 +0.31631282187965459 +10 +0.20262698203467711 +20 +0.31481702187965477 +10 +0.20280598203467726 +20 +0.31298982187965452 +10 +0.20300328203467721 +20 +0.31089762187965442 +10 +0.2032129820346773 +20 +0.30860682187965505 +10 +0.20342878203467696 +20 +0.30618392187965471 +10 +0.20364458203467717 +20 +0.30369542187965448 +10 +0.20385408203467736 +20 +0.301207621879655 +10 +0.20406148203467755 +20 +0.29879302187965473 +10 +0.20427108203467714 +20 +0.29651432187965454 +10 +0.20447718203467691 +20 +0.29442302187965452 +10 +0.20467398203467713 +20 +0.29257112187965451 +10 +0.20485568203467697 +20 +0.29101022187965453 +10 +0.20501658203467721 +20 +0.28979192187965463 +10 +0.20515098203467697 +20 +0.28896822187965465 +10 +0.20525308203467707 +20 +0.28859062187965467 +10 +0.20543218203467717 +20 +0.28845732187965489 +10 +0.20578728203467733 +20 +0.28833292187965487 +10 +0.20629718203467706 +20 +0.28822012187965484 +10 +0.20694068203467697 +20 +0.28812172187965501 +10 +0.20769658203467711 +20 +0.28804052187965501 +10 +0.20854358203467704 +20 +0.28797902187965463 +10 +0.20946048203467682 +20 +0.28794022187965451 +10 +0.21042608203467705 +20 +0.28792662187965501 +10 +0.21230758203467703 +20 +0.28797902187965518 +10 +0.21390758203467697 +20 +0.28812172187965501 +10 +0.2150568820346771 +20 +0.28833292187965487 +10 +0.21558608203467722 +20 +0.28859062187965467 +10 +0.21561878203467721 +20 +0.28874112187965484 +10 +0.21563578203467715 +20 +0.2890495218796546 +10 +0.21563758203467731 +20 +0.2895074218796545 +0 +LWPOLYLINE +5 +110 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +47 +70 +1 +43 +0.0 +10 +0.34573708203467668 +20 +0.28859062187965467 +10 +0.34576978203467668 +20 +0.28874112187965484 +10 +0.34578678203467661 +20 +0.2890495218796546 +10 +0.34578868203467672 +20 +0.2895074218796545 +10 +0.34577598203467674 +20 +0.29010632187965457 +10 +0.34574928203467692 +20 +0.29083772187965484 +10 +0.34570908203467643 +20 +0.29169302187965485 +10 +0.34565588203467668 +20 +0.29266382187965456 +10 +0.34559028203467679 +20 +0.29374152187965463 +10 +0.34551288203467645 +20 +0.29491762187965453 +10 +0.34542408203467656 +20 +0.29618362187965486 +10 +0.3453243820346763 +20 +0.29753112187965502 +10 +0.34521448203467642 +20 +0.29895142187965462 +10 +0.34509488203467664 +20 +0.30043622187965469 +10 +0.34496608203467671 +20 +0.3019768218796548 +10 +0.34482868203467687 +20 +0.30356482187965494 +10 +0.34468308203467635 +20 +0.30519162187965465 +10 +0.34323308203467628 +20 +0.32112862187965441 +10 +0.33198808203467656 +20 +0.32166062187965472 +10 +0.33250108203467632 +20 +0.31741062187965463 +10 +0.33262428203467642 +20 +0.31631282187965459 +10 +0.33277838203467636 +20 +0.31481702187965477 +10 +0.33295718203467661 +20 +0.31298982187965452 +10 +0.33315448203467657 +20 +0.31089762187965442 +10 +0.33336408203467671 +20 +0.30860682187965505 +10 +0.33357978203467697 +20 +0.30618392187965526 +10 +0.33379558203467663 +20 +0.30369542187965504 +10 +0.33400508203467627 +20 +0.301207621879655 +10 +0.3342127820346763 +20 +0.29879302187965473 +10 +0.33442248203467639 +20 +0.29651432187965454 +10 +0.33462858203467671 +20 +0.29442302187965452 +10 +0.33482528203467643 +20 +0.29257112187965451 +10 +0.33500698203467627 +20 +0.29101022187965453 +10 +0.33516778203467656 +20 +0.28979192187965463 +10 +0.33530208203467637 +20 +0.28896822187965465 +10 +0.33540408203467653 +20 +0.28859062187965467 +10 +0.33558348203467647 +20 +0.28845732187965489 +10 +0.33593868203467658 +20 +0.28833292187965487 +10 +0.33644868203467682 +20 +0.28822012187965484 +10 +0.33709208203467678 +20 +0.28812172187965501 +10 +0.33784788203467642 +20 +0.28804052187965501 +10 +0.33869468203467645 +20 +0.28797902187965518 +10 +0.33961148203467628 +20 +0.28794022187965451 +10 +0.34057708203467651 +20 +0.28792662187965501 +10 +0.3424585820346765 +20 +0.28797902187965518 +10 +0.34405858203467643 +20 +0.28812172187965501 +10 +0.34520788203467656 +20 +0.28833292187965487 +0 +LWPOLYLINE +5 +111 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +292 +70 +1 +43 +0.0 +10 +1.0632154820346762 +20 +0.062274721879654882 +10 +1.0623450820346765 +20 +0.062962521879654787 +10 +1.0612457820346766 +20 +0.06388792187965453 +10 +1.0599193820346764 +20 +0.065048921879654609 +10 +1.0583679820346763 +20 +0.06644372187965486 +10 +1.0565933820346762 +20 +0.068070521879655121 +10 +1.0545976820346765 +20 +0.069927421879654728 +10 +1.0523825820346766 +20 +0.072012621879654626 +10 +1.0499500820346763 +20 +0.074324221879654706 +10 +1.0473022820346762 +20 +0.076860421879654806 +10 +1.0444408820346762 +20 +0.079619321879654814 +10 +1.0413678820346761 +20 +0.082599221879655071 +10 +1.0380852820346764 +20 +0.085798121879654965 +10 +1.0345948820346762 +20 +0.08921412187965494 +10 +1.0308987820346767 +20 +0.092845621879654727 +10 +1.0269987820346764 +20 +0.096690521879654878 +10 +1.0228967820346764 +20 +0.10074712187965462 +10 +1.0185947820346763 +20 +0.10501362187965491 +10 +1.0140947820346762 +20 +0.10948802187965456 +10 +1.0093985820346763 +20 +0.11416852187965454 +10 +1.0081940820346764 +20 +0.11537062187965463 +10 +1.0007540820346765 +20 +0.12280532187965487 +10 +0.99398178203467691 +20 +0.12958932187965511 +10 +0.9878498820346765 +20 +0.13575122187965472 +10 +0.98233108203467645 +20 +0.14131982187965464 +10 +0.97739808203467671 +20 +0.14632372187965481 +10 +0.9730234820346767 +20 +0.15079152187965461 +10 +0.96917998203467637 +20 +0.15475212187965492 +10 +0.9658402820346762 +20 +0.15823402187965518 +10 +0.96297718203467608 +20 +0.16126592187965472 +10 +0.96056328203467656 +20 +0.16387662187965446 +10 +0.95857118203467651 +20 +0.16609462187965496 +10 +0.95697368203467637 +20 +0.16794872187965493 +10 +0.95574338203467668 +20 +0.16946762187965481 +10 +0.95485308203467678 +20 +0.17067992187965453 +10 +0.9542754820346766 +20 +0.17161442187965448 +10 +0.95398308203467619 +20 +0.17229962187965464 +10 +0.95382518203467603 +20 +0.17297512187965436 +10 +0.95367948203467667 +20 +0.17381612187965467 +10 +0.9535458820346765 +20 +0.17481122187965492 +10 +0.95342438203467661 +20 +0.175949021879655 +10 +0.95331468203467662 +20 +0.17721802187965485 +10 +0.95321678203467652 +20 +0.17860672187965498 +10 +0.95313058203467638 +20 +0.18010392187965463 +10 +0.95305598203467623 +20 +0.18169802187965489 +10 +0.95299278203467619 +20 +0.18337762187965456 +10 +0.95294088203467631 +20 +0.18513132187965464 +10 +0.95290018203467608 +20 +0.18694762187965452 +10 +0.95287068203467662 +20 +0.1888152218796546 +10 +0.95285218203467636 +20 +0.19072252187965433 +10 +0.95284448203467653 +20 +0.19265832187965515 +10 +0.95284768203467651 +20 +0.1946109218796549 +10 +0.95286148203467647 +20 +0.19656912187965447 +10 +0.95288578203467644 +20 +0.19852142187965438 +10 +0.95292058203467644 +20 +0.20045632187965512 +10 +0.95296578203467652 +20 +0.20236242187965492 +10 +0.95302108203467628 +20 +0.20422842187965473 +10 +0.95308658203467622 +20 +0.20604272187965456 +10 +0.95316208203467645 +20 +0.20779392187965484 +10 +0.95324738203467652 +20 +0.20947062187965493 +10 +0.95334258203467637 +20 +0.21106152187965466 +10 +0.95344728203467621 +20 +0.21255502187965458 +10 +0.95356168203467651 +20 +0.2139397218796546 +10 +0.95368548203467629 +20 +0.2152042218796546 +10 +0.95381858203467673 +20 +0.21633702187965453 +10 +0.95396088203467677 +20 +0.2173268218796548 +10 +0.95411238203467641 +20 +0.21816222187965473 +10 +0.95427278203467636 +20 +0.21883162187965488 +10 +0.95444208203467662 +20 +0.2193236218796546 +10 +0.95464808203467644 +20 +0.21968422187965464 +10 +0.95502078203467622 +20 +0.22020772187965443 +10 +0.95555348203467672 +20 +0.22088712187965487 +10 +0.95623938203467651 +20 +0.22171502187965486 +10 +0.9570718820346763 +20 +0.22268452187965471 +10 +0.95804408203467639 +20 +0.22378832187965492 +10 +0.95914938203467637 +20 +0.22501932187965479 +10 +0.96038098203467648 +20 +0.22637042187965473 +10 +0.96173218203467636 +20 +0.22783442187965464 +10 +0.96319618203467627 +20 +0.22940412187965442 +10 +0.96476638203467635 +20 +0.23107252187965499 +10 +0.96643588203467634 +20 +0.23283232187965519 +10 +0.96819798203467644 +20 +0.23467652187965482 +10 +0.97004608203467624 +20 +0.23659782187965495 +10 +0.97197328203467659 +20 +0.23858922187965481 +10 +0.97397288203467658 +20 +0.24064352187965488 +10 +0.97603828203467635 +20 +0.24275352187965504 +10 +0.97816258203467621 +20 +0.24491212187965461 +10 +0.98033918203467629 +20 +0.24711212187965459 +10 +0.98256118203467635 +20 +0.24934652187965478 +10 +0.98482198203467652 +20 +0.25160802187965459 +10 +0.98558308203467671 +20 +0.25236662187965497 +10 +1.0151660820346771 +20 +0.28183062187965513 +10 +1.0151660820346764 +20 +0.29607362187965447 +10 +1.0151811820346763 +20 +0.29883872187965455 +10 +1.0152285820346763 +20 +0.30136262187965446 +10 +1.0153115820346765 +20 +0.30365712187965466 +10 +1.0154331820346763 +20 +0.30573412187965499 +10 +1.0155965820346764 +20 +0.30760532187965484 +10 +1.0158050820346765 +20 +0.30928252187965466 +10 +1.0160616820346764 +20 +0.31077742187965496 +10 +1.0163696820346764 +20 +0.31210202187965497 +10 +1.0167322820346762 +20 +0.31326792187965469 +10 +1.0171524820346767 +20 +0.31428692187965457 +10 +1.0176335820346765 +20 +0.3151710218796544 +10 +1.0181786820346765 +20 +0.31593172187965479 +10 +1.0187910820346762 +20 +0.31658092187965448 +10 +1.0194737820346766 +20 +0.31713052187965496 +10 +1.0202300820346766 +20 +0.31759212187965513 +10 +1.0210630820346767 +20 +0.31797762187965484 +10 +1.0217229820346767 +20 +0.31823002187965466 +10 +1.0223600820346763 +20 +0.31844552187965447 +10 +1.0229774820346766 +20 +0.31862402187965488 +10 +1.0235778820346764 +20 +0.31876532187965489 +10 +1.0241642820346764 +20 +0.3188694218796545 +10 +1.024739482034676 +20 +0.31893602187965442 +10 +1.0253064820346769 +20 +0.3189651218796552 +10 +1.0258680820346766 +20 +0.31895652187965473 +10 +1.0264271820346766 +20 +0.31891002187965478 +10 +1.0269866820346762 +20 +0.3188256218796548 +10 +1.0275494820346764 +20 +0.31870302187965494 +10 +1.0281184820346767 +20 +0.3185422218796552 +10 +1.0286965820346765 +20 +0.31834302187965458 +10 +1.0292865820346764 +20 +0.31810532187965479 +10 +1.0298914820346767 +20 +0.31782882187965489 +10 +1.0305140820346765 +20 +0.31751362187965482 +10 +1.0312279820346766 +20 +0.31702232187965473 +10 +1.0323594820346766 +20 +0.31609252187965453 +10 +1.0338798820346766 +20 +0.31475332187965444 +10 +1.0357605820346767 +20 +0.31303402187965512 +10 +1.0379727820346762 +20 +0.3109635218796547 +10 +1.0404877820346763 +20 +0.30857102187965446 +10 +1.0432768820346765 +20 +0.30588562187965462 +10 +1.0463113820346766 +20 +0.30293642187965486 +10 +1.0495624820346765 +20 +0.29975262187965479 +10 +1.0530015820346765 +20 +0.29636322187965469 +10 +1.0565998820346767 +20 +0.29279742187965474 +10 +1.0603287820346767 +20 +0.28908422187965466 +10 +1.0641593820346762 +20 +0.28525282187965462 +10 +1.0680631820346764 +20 +0.28133232187965485 +10 +1.0720112820346768 +20 +0.27735182187965501 +10 +1.0759750820346765 +20 +0.27334042187965479 +10 +1.0799258820346762 +20 +0.26932722187965497 +10 +1.0838348820346766 +20 +0.2653413218796552 +10 +1.0876733820346769 +20 +0.26141192187965456 +10 +1.0914126820346763 +20 +0.25756812187965494 +10 +1.0950241820346762 +20 +0.2538390218796549 +10 +1.0984789820346763 +20 +0.25025362187965472 +10 +1.1017485820346762 +20 +0.24684112187965457 +10 +1.1048039820346762 +20 +0.24363062187965467 +10 +1.1076167820346767 +20 +0.24065132187965466 +10 +1.1101580820346768 +20 +0.23793222187965479 +10 +1.1123991820346761 +20 +0.23550242187965476 +10 +1.1143113820346762 +20 +0.23339112187965472 +10 +1.1158659820346766 +20 +0.23162732187965496 +10 +1.1170342820346764 +20 +0.23024032187965449 +10 +1.1177875820346768 +20 +0.22925902187965475 +10 +1.1180970820346765 +20 +0.2287126218796548 +10 +1.1181714820346766 +20 +0.22836002187965498 +10 +1.1182390820346766 +20 +0.22794242187965497 +10 +1.1182996820346769 +20 +0.22746532187965518 +10 +1.1183531820346766 +20 +0.22693392187965455 +10 +1.1183992820346766 +20 +0.22635362187965469 +10 +1.1184379820346768 +20 +0.22572982187965496 +10 +1.1184691820346764 +20 +0.22506792187965474 +10 +1.1184925820346763 +20 +0.22437312187965464 +10 +1.1185080820346767 +20 +0.22365092187965452 +10 +1.1185156820346764 +20 +0.22290652187965498 +10 +1.1185149820346763 +20 +0.2221454218796548 +10 +1.1185059820346765 +20 +0.22137282187965457 +10 +1.1184885820346762 +20 +0.22059422187965472 +10 +1.1184625820346761 +20 +0.21981492187965468 +10 +1.1184277820346766 +20 +0.21904032187965494 +10 +1.1183840820346762 +20 +0.21827562187965499 +10 +1.1183068820346764 +20 +0.21714432187965482 +10 +1.1182246820346764 +20 +0.21612062187965464 +10 +1.1181345820346766 +20 +0.21519602187965448 +10 +1.1180333820346766 +20 +0.21436192187965497 +10 +1.1179181820346762 +20 +0.21360972187965455 +10 +1.1177859820346763 +20 +0.2129309218796549 +10 +1.1176335820346761 +20 +0.21231692187965501 +10 +1.1174580820346769 +20 +0.21175922187965435 +10 +1.1172564820346764 +20 +0.21124922187965467 +10 +1.1170255820346764 +20 +0.2107783218796544 +10 +1.1167625820346765 +20 +0.21033792187965472 +10 +1.1164642820346766 +20 +0.20991952187965457 +10 +1.1161276820346766 +20 +0.20951462187965453 +10 +1.1157498820346767 +20 +0.20911452187965474 +10 +1.1153276820346769 +20 +0.20871072187965467 +10 +1.1147237820346763 +20 +0.20817962187965444 +10 +1.1142074820346766 +20 +0.20775322187965461 +10 +1.1138323820346763 +20 +0.20746692187965488 +10 +1.1134572820346766 +20 +0.20720802187965459 +10 +1.1130725820346765 +20 +0.20697502187965455 +10 +1.1126688820346764 +20 +0.20676662187965433 +10 +1.1122367820346764 +20 +0.20658152187965462 +10 +1.1117665820346767 +20 +0.20641822187965453 +10 +1.1112490820346765 +20 +0.2062753218796548 +10 +1.1108730820346768 +20 +0.20619082187965487 +10 +1.1104689820346763 +20 +0.20611442187965512 +10 +1.1100339820346767 +20 +0.20604572187965464 +10 +1.1095652820346769 +20 +0.20598432187965476 +10 +1.1090600820346763 +20 +0.20592982187965458 +10 +1.1085155820346766 +20 +0.20588172187965492 +10 +1.1076189820346767 +20 +0.20582102187965468 +10 +1.1066181820346765 +20 +0.20577252187965467 +10 +1.1055036820346764 +20 +0.20573502187965442 +10 +1.1042660820346761 +20 +0.20570712187965523 +10 +1.1028958820346761 +20 +0.2056874218796545 +10 +1.1013835820346762 +20 +0.20567462187965457 +10 +1.0991297820346762 +20 +0.20566582187965476 +10 +1.0965840820346762 +20 +0.20566362187965481 +10 +1.0813690820346766 +20 +0.20566362187965481 +10 +1.0969090820346765 +20 +0.19009362187965451 +10 +1.1124500820346768 +20 +0.17452362187965476 +10 +1.1265720820346763 +20 +0.17452362187965476 +10 +1.1294659820346764 +20 +0.17450192187965452 +10 +1.1322762820346766 +20 +0.17443962187965456 +10 +1.1349334820346764 +20 +0.17434122187965473 +10 +1.1373681820346766 +20 +0.17421102187965498 +10 +1.1395110820346765 +20 +0.17405332187965472 +10 +1.1412925820346764 +20 +0.17387262187965491 +10 +1.1426433820346764 +20 +0.1736733218796549 +10 +1.1434940820346768 +20 +0.17345962187965469 +10 +1.1441702820346766 +20 +0.17314932187965482 +10 +1.1448262820346766 +20 +0.17274532187965486 +10 +1.1454572820346764 +20 +0.17225712187965481 +10 +1.1460583820346764 +20 +0.17169372187965493 +10 +1.1466247820346764 +20 +0.17106452187965471 +10 +1.1471518820346764 +20 +0.17037882187965481 +10 +1.1476346820346768 +20 +0.16964582187965482 +10 +1.1480684820346765 +20 +0.16887472187965491 +10 +1.1484483820346765 +20 +0.16807492187965511 +10 +1.1487697820346765 +20 +0.16725562187965448 +10 +1.1490276820346768 +20 +0.16642602187965427 +10 +1.1492173820346769 +20 +0.16559542187965459 +10 +1.1493340820346765 +20 +0.16477312187965443 +10 +1.1493729820346765 +20 +0.16396842187965499 +10 +1.1493291820346763 +20 +0.16319052187965477 +10 +1.1491980820346765 +20 +0.16244862187965448 +10 +1.1490857820346767 +20 +0.16217522187965461 +10 +1.1488560820346767 +20 +0.1617894218796545 +10 +1.1485103820346765 +20 +0.16129272187965449 +10 +1.1480501820346767 +20 +0.16068672187965483 +10 +1.1474768820346766 +20 +0.15997302187965468 +10 +1.1467920820346766 +20 +0.15915302187965441 +10 +1.1459970820346765 +20 +0.15822852187965475 +10 +1.1450934820346763 +20 +0.15720082187965445 +10 +1.1440825820346767 +20 +0.15607152187965434 +10 +1.1429659820346765 +20 +0.15484232187965463 +10 +1.1417449820346763 +20 +0.15351462187965459 +10 +1.1404212820346764 +20 +0.15209012187965443 +10 +1.1389961820346768 +20 +0.15057022187965452 +10 +1.1374710820346767 +20 +0.14895652187965458 +10 +1.1358475820346765 +20 +0.14725062187965487 +10 +1.1341270820346767 +20 +0.14545402187965462 +10 +1.1323109820346766 +20 +0.14356832187965463 +10 +1.1304008820346767 +20 +0.14159512187965462 +10 +1.1283981820346767 +20 +0.13953582187965496 +10 +1.1263042820346769 +20 +0.13739202187965482 +10 +1.1241206820346767 +20 +0.13516532187965502 +10 +1.1218487820346768 +20 +0.13285732187965471 +10 +1.119490182034677 +20 +0.13046942187965482 +10 +1.1170461820346766 +20 +0.12800332187965446 +10 +1.1145183820346767 +20 +0.12546052187965451 +10 +1.1129620820346764 +20 +0.1238986218796545 +10 +1.0774470820346767 +20 +0.088287621879654665 +10 +1.0774470820346767 +20 +0.07985662187965481 +10 +1.0774227820346765 +20 +0.078093421879654734 +10 +1.0773530820346766 +20 +0.076313921879654911 +10 +1.0772429820346767 +20 +0.074566621879654793 +10 +1.0770972820346763 +20 +0.072900121879654889 +10 +1.0769209820346766 +20 +0.071363021879654598 +10 +1.0767188820346763 +20 +0.070003921879654429 +10 +1.0764959820346764 +20 +0.068871221879654998 +10 +1.0762570820346762 +20 +0.06801362187965454 +10 +1.0759307820346764 +20 +0.067242021879654335 +10 +1.0755039820346761 +20 +0.066496321879654929 +10 +1.0749859820346763 +20 +0.065781521879654803 +10 +1.0743864820346767 +20 +0.065102621879654654 +10 +1.0737147820346764 +20 +0.064464921879655024 +10 +1.0729805820346767 +20 +0.063873321879654998 +10 +1.0721932820346765 +20 +0.063332921879654669 +10 +1.0713622820346762 +20 +0.062848821879654682 +10 +1.0704972820346765 +20 +0.06242622187965452 +10 +1.0696076820346767 +20 +0.062069921879654433 +10 +1.0687028820346767 +20 +0.061785321879654909 +10 +1.0677925820346768 +20 +0.061577221879655086 +10 +1.0668860820346766 +20 +0.061450821879654449 +10 +1.0659930820346764 +20 +0.061411221879654754 +10 +1.0651228820346765 +20 +0.061463421879654478 +10 +1.0642617820346767 +20 +0.061618921879654232 +10 +1.0638549820346765 +20 +0.061826221879654475 +0 +LWPOLYLINE +5 +112 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +114 +70 +1 +43 +0.0 +10 +1.0608233820346764 +20 +0.10083482187965453 +10 +1.0632897820346765 +20 +0.10323422187965448 +10 +1.0661956820346763 +20 +0.10608202187965432 +10 +1.0694904820346762 +20 +0.10932852187965469 +10 +1.0728092820346764 +20 +0.11261252187965476 +10 +1.0763735820346765 +20 +0.11615182187965478 +10 +1.0801444820346762 +20 +0.11990832187965483 +10 +1.0840829820346765 +20 +0.12384362187965459 +10 +1.0855490820346763 +20 +0.12531162187965461 +10 +1.1141350820346763 +20 +0.15394862187965486 +10 +1.1029640820346764 +20 +0.15512862187965493 +10 +1.0751610820346764 +20 +0.18293162187965506 +10 +1.0722998820346763 +20 +0.18579412187965494 +10 +1.069615182034676 +20 +0.18848452187965492 +10 +1.0671024820346764 +20 +0.19100942187965486 +10 +1.0647575820346766 +20 +0.19337562187965507 +10 +1.0625759820346765 +20 +0.19558982187965479 +10 +1.0605532820346764 +20 +0.19765862187965499 +10 +1.0586852820346766 +20 +0.19958902187965477 +10 +1.0569673820346766 +20 +0.20138742187965464 +10 +1.0553953820346762 +20 +0.20306072187965485 +10 +1.0539648820346765 +20 +0.2046157218796546 +10 +1.0526713820346767 +20 +0.20605892187965491 +10 +1.0515106820346765 +20 +0.20739722187965492 +10 +1.0504782820346765 +20 +0.2086372218796545 +10 +1.0495697820346765 +20 +0.2097857218796545 +10 +1.0487809820346765 +20 +0.21084952187965467 +10 +1.0481072820346764 +20 +0.21183512187965492 +10 +1.0475445820346763 +20 +0.21274942187965495 +10 +1.0470881820346767 +20 +0.21359902187965463 +10 +1.0467339820346766 +20 +0.21439082187965475 +10 +1.0464774820346767 +20 +0.21513132187965467 +10 +1.0463142820346767 +20 +0.21582742187965465 +10 +1.0462400820346762 +20 +0.21648572187965454 +10 +1.0462504820346763 +20 +0.21711302187965464 +10 +1.0463410820346764 +20 +0.21771602187965478 +10 +1.0465075820346765 +20 +0.21830152187965468 +10 +1.0467454820346767 +20 +0.21887602187965483 +10 +1.0470505820346765 +20 +0.21944642187965491 +10 +1.0474182820346767 +20 +0.22001942187965473 +10 +1.0478443820346768 +20 +0.22060172187965466 +10 +1.0483244820346767 +20 +0.22120002187965448 +10 +1.0488541820346764 +20 +0.22182112187965453 +10 +1.0494290820346763 +20 +0.22247162187965464 +10 +1.0527930820346765 +20 +0.22623862187965471 +10 +1.0723490820346764 +20 +0.2266086218796548 +10 +1.0762774820346765 +20 +0.22669812187965488 +10 +1.0799423820346765 +20 +0.22681132187965469 +10 +1.0832634820346765 +20 +0.22694362187965444 +10 +1.0861605820346765 +20 +0.227090221879655 +10 +1.0885534820346765 +20 +0.22724672187965478 +10 +1.0903619820346766 +20 +0.22740832187965465 +10 +1.0915059820346769 +20 +0.22757052187965476 +10 +1.0919050820346765 +20 +0.22772862187965481 +10 +1.0916827820346764 +20 +0.22804602187965484 +10 +1.0910342820346763 +20 +0.22878592187965507 +10 +1.0899871820346763 +20 +0.22991992187965493 +10 +1.0885690820346765 +20 +0.23141972187965487 +10 +1.0866134820346769 +20 +0.23345822187965493 +10 +1.0842789820346765 +20 +0.23586732187965476 +10 +1.0816023820346765 +20 +0.23860952187965467 +10 +1.0786201820346764 +20 +0.24164702187965459 +10 +1.075674982034676 +20 +0.24463292187965446 +10 +1.0725351820346762 +20 +0.24780342187965487 +10 +1.0692284820346765 +20 +0.25113032187965512 +10 +1.0657823820346763 +20 +0.2545852218796546 +10 +1.0643710820346763 +20 +0.25599662187965444 +10 +1.0588230820346762 +20 +0.26152442187965474 +10 +1.0536147820346764 +20 +0.26668142187965482 +10 +1.0488623820346765 +20 +0.27135462187965476 +10 +1.0446822820346764 +20 +0.27543122187965452 +10 +1.0411907820346766 +20 +0.27879842187965465 +10 +1.0385042820346768 +20 +0.28134332187965461 +10 +1.0367388820346761 +20 +0.28295302187965443 +10 +4.4690179999999993 +20 +3.2944469999999999 +10 +1.0359269820346761 +20 +0.28348742187965459 +10 +1.0358452820346764 +20 +0.28340772187965491 +10 +1.0357662820346762 +20 +0.28327812187965484 +10 +1.0356904820346764 +20 +0.28310132187965464 +10 +1.0356182820346764 +20 +0.28288002187965455 +10 +1.0355501820346764 +20 +0.28261702187965476 +10 +1.0354865820346766 +20 +0.28231472187965456 +10 +1.0354278820346763 +20 +0.2819761218796546 +10 +1.0353743820346761 +20 +0.28160372187965466 +10 +1.0353266820346763 +20 +0.28120022187965499 +10 +1.0352851820346765 +20 +0.28076842187965523 +10 +1.0352502820346765 +20 +0.28031092187965456 +10 +1.0352223820346769 +20 +0.27983042187965435 +10 +1.0352019820346765 +20 +0.27932952187965487 +10 +1.0351893820346763 +20 +0.27881102187965467 +10 +1.0351850820346764 +20 +0.27827762187965455 +10 +1.0351850820346764 +20 +0.27304062187965439 +10 +0.97401708203467663 +20 +0.21172862187965491 +10 +0.97401708203467663 +20 +0.17848562187965489 +10 +1.0148830820346766 +20 +0.13757962187965489 +10 +1.0190492820346764 +20 +0.13341252187965447 +10 +1.0231047820346761 +20 +0.12936222187965474 +10 +1.0270284820346764 +20 +0.12544992187965454 +10 +1.0307988820346763 +20 +0.12169632187965462 +10 +1.0343948820346767 +20 +0.11812252187965444 +10 +1.0377951820346765 +20 +0.1147494218796552 +10 +1.0409784820346761 +20 +0.11159812187965468 +10 +1.0439235820346764 +20 +0.10868952187965464 +10 +1.0466091820346763 +20 +0.10604452187965463 +10 +1.0490139820346762 +20 +0.10368422187965465 +10 +1.0511167820346767 +20 +0.10162942187965485 +10 +1.0528962820346766 +20 +0.099901221879654667 +10 +1.0543311820346761 +20 +0.098520621879654713 +10 +1.0554003820346765 +20 +0.097508521879654531 +10 +1.0560823820346765 +20 +0.096885821879654777 +10 +1.0563560820346762 +20 +0.096673621879654892 +10 +1.0567190820346761 +20 +0.096952821879655038 +10 +1.0576106820346765 +20 +0.097764821879654518 +10 +1.0589916820346768 +20 +0.099071521879654512 +0 +LWPOLYLINE +5 +113 +100 +AcDbEntity +8 +0 +100 +AcDbPolyline +90 +31 +70 +1 +43 +0.0 +10 +0.55804238203467638 +20 +0.32017102187965496 +10 +0.55801378203467644 +20 +0.3199206218796552 +10 +0.55800078203467662 +20 +0.31964272187965437 +10 +0.55800228203467639 +20 +0.31933582187965492 +10 +0.55801738203467677 +20 +0.31899862187965478 +10 +0.55804498203467667 +20 +0.31862992187965455 +10 +0.55808408203467663 +20 +0.31822822187965449 +10 +0.55813358203467667 +20 +0.31779242187965462 +10 +0.55825988203467625 +20 +0.31681302187965499 +10 +0.55850208203467644 +20 +0.31505462187965516 +10 +0.55906508203467653 +20 +0.31094662187965472 +10 +0.56953708203467679 +20 +0.31094662187965472 +10 +0.56927208203467694 +20 +0.31603762187965456 +10 +0.56900608203467651 +20 +0.32112862187965496 +10 +0.56347308203467672 +20 +0.32139262187965478 +10 +0.56191118203467671 +20 +0.32146842187965485 +10 +0.56104218203467671 +20 +0.32150082187965501 +10 +0.56065618203467671 +20 +0.32150782187965521 +10 +0.56030128203467644 +20 +0.32150672187965468 +10 +0.55997638203467648 +20 +0.32149642187965455 +10 +0.5596804820346768 +20 +0.3214754218796545 +10 +0.55941238203467691 +20 +0.32144262187965456 +10 +0.55917128203467614 +20 +0.3213965218796544 +10 +0.55895608203467673 +20 +0.32133592187965465 +10 +0.55876568203467647 +20 +0.3212595218796549 +10 +0.55859908203467645 +20 +0.32116592187965476 +10 +0.5584553820346766 +20 +0.32105392187965487 +10 +0.55833328203467647 +20 +0.32092212187965485 +10 +0.55823208203467645 +20 +0.32076922187965484 +10 +0.55815048203467665 +20 +0.32059392187965496 +10 +0.55808758203467645 +20 +0.32039502187965474 +0 +ENDSEC +0 +SECTION +2 +OBJECTS +0 +DICTIONARY +5 +C +100 +AcDbDictionary +3 +ACAD_GROUP +350 +D +3 +ACAD_MLINESTYLE +350 +17 +0 +DICTIONARY +5 +D +100 +AcDbDictionary +0 +DICTIONARY +5 +1A +330 +C +100 +AcDbDictionary +0 +DICTIONARY +5 +17 +100 +AcDbDictionary +0 +ENDSEC +0 +EOF diff --git a/pictures/jcmk_icon_black.png b/pictures/jcmk_icon_black.png new file mode 100644 index 0000000..f6e3a8b Binary files /dev/null and b/pictures/jcmk_icon_black.png differ