Compare commits

...

14 Commits

Author SHA1 Message Date
KV
320977e2ec Update syntax.md with options.terminology 2025-02-16 21:55:58 +01:00
KV
c53455533e Add options.terminology to override certain terms
These terms can optionally be replaced by user defined terms:
  pin, wire, shield

Resolves #331 basic feature
2025-02-16 21:55:58 +01:00
KV
7cf9244af1 Update setup.py with all tested python versions (#442) 2025-01-27 19:26:58 +01:00
KV
6c87c27cfc Use ubuntu-latest for the supported Python versions (#442)
Use ubuntu-22.04 only for Python 3.7-3.8
by including them separately into the matrix.
2025-01-27 19:26:58 +01:00
Martin Rieder
336bea8b0d Update deprecated GitHub Actions and add Python versions (#408)
Running 6 different Python versions (3.7 to 3.12) in parallel now.
NOTE: This is in conflict with #309, but can be resolved easily in a later PR.

GitHub Actions require an update:
- actions/upload-artifact@v3 is scheduled for deprecation on November
30, 2024.
- Similarly, v1/v2 are scheduled for deprecation on June 30, 2024. 
- Updating this comes with a breaking change in upload-artifact@v4:

Uploading to the same named Artifact multiple times.

Due to how Artifacts are created in this new version, it is no longer
possible to upload to the same named Artifact multiple times. You must
either split the uploads into multiple Artifacts with different names,
or only upload once. Otherwise you will encounter an error.

The artifact .zip files therefore have the python version added to
their name.
2025-01-12 19:38:50 +01:00
Daniel Rojas
590504130c Add documentation on template separator character 2024-06-07 17:06:36 +02:00
Daniel Rojas
a3281b07a2 Add v0.4 release date 2024-05-19 14:48:03 +02:00
KV
b85bd0cd0a Add check for outdated connector attributes 2024-05-19 14:48:03 +02:00
Daniel Rojas
81ed3fa12b Remove references for unsupported output formats
Remove the references in the CLI help, but keep the placeholders elsewhere in the code as a TODO
2024-05-19 14:48:03 +02:00
Daniel Rojas
8e3014911a Apply suggestions from code review
Co-authored-by: kvid <kvid@users.noreply.github.com>
2024-05-19 14:48:03 +02:00
Daniel Rojas
684f6f0064 Apply black 2024-05-19 14:48:03 +02:00
Daniel Rojas
0c73e57267 Rebuild examples 2024-05-19 14:48:03 +02:00
Andreas Motl
49c7685bb2 Improve gracefulness when invoking wireviz.parse() without file_out
This happened to be a regression for WireViz-Web [1], which aims to do
as much in memory as possible.

[1] https://github.com/daq-tools/wireviz-web.

kvid rebased and mixed original commit with similar change by Daniel Rojas

Co-authored-by: kvid <kvid@users.noreply.github.com>
2024-05-19 14:46:46 +02:00
Daniel Rojas
d680361556 Bump version to 0.5-dev 2024-04-16 14:08:33 +02:00
85 changed files with 9852 additions and 9761 deletions

View File

@ -4,29 +4,40 @@ on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
max-parallel: 6
matrix:
python-version: [3.7, 3.8]
# ubuntu-22.04 supports Python 3.7-3.12
# ubuntu-24.04 (currently latest & preferred) supports Python 3.9-3.12
# More details: https://github.com/actions/runner-images/issues/10636
os: [ubuntu-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
include:
- os: ubuntu-22.04
python-version: "3.7"
- os: ubuntu-22.04
python-version: "3.8"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Setup Graphviz
uses: ts-graphviz/setup-graphviz@v1
uses: ts-graphviz/setup-graphviz@v2
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
- name: Create Examples
run: PYTHONPATH=$(pwd)/src:$PYTHONPATH cd src/wireviz/ && python build_examples.py
run: PYTHONPATH=$(pwd)/src/wireviz:$PYTHONPATH cd src/wireviz/ && python build_examples.py
- name: Upload examples, demos, and tutorials
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: examples-and-tutorials
name: examples-and-tutorials-v${{ matrix.python-version }}
path: |
examples/
tutorial/
tutorial/
if-no-files-found: error

View File

@ -1,12 +1,13 @@
# Change Log
## [0.4](https://github.com/formatc1702/WireViz/tree/v0.4) (unreleased)
## [0.4](https://github.com/formatc1702/WireViz/tree/v0.4) (2024-05-12)
### Backward-incompatible changes
- New syntax for autogenerated components ([#184](https://github.com/wireviz/WireViz/issues/184), [#186](https://github.com/wireviz/WireViz/pull/186))
- Components that are not referenced in any connection set will not be rendered. Instead, a warning will be output in the console. ([#328](https://github.com/wireviz/WireViz/issues/328), [#332](https://github.com/wireviz/WireViz/pull/332))
- New command line interface ([#244](https://github.com/wireviz/WireViz/pull/244)). Run `wireviz --help` for details
- The path specified with the `-o`/`--output-dir` option no longer includes the filename (without extension) of the generated files. Use the `-O`/`--output-name` option to specify a different filename for the generated files.
- The `.gv` file is no longer included as a default output format (only as an intermediate file during processing) unless specified with the new `-f` option described below.
### New features
@ -49,9 +50,7 @@
- Remove HTML links from the input attributes ([#164](https://github.com/formatc1702/WireViz/pull/164))
- Add harness metadata section ([#158](https://github.com/formatc1702/WireViz/issues/158), [#214](https://github.com/formatc1702/WireViz/pull/214))
- Add support for supplier and supplier part number information ([#240](https://github.com/formatc1702/WireViz/issues/240), [#241](https://github.com/formatc1702/WireViz/pull/241/))
- Add graph rendering options (colors, font, color name display style, ...) ([#158](https://github.com/formatc1702/WireViz/issues/158), [#214](https://github.com/formatc1702/WireViz/pull/214))
- Add support for supplier and supplier part number information ([#240](https://github.com/formatc1702/WireViz/issues/240), [#241](https://github.com/formatc1702/WireViz/pull/241/))
- Add graph rendering options (colors, font, color name display style, ...) ([#158](https://github.com/formatc1702/WireViz/issues/158), [#214](https://github.com/formatc1702/WireViz/pull/214))
- Add graph rendering options (background colors, fontname, color name display style, ...) ([#158](https://github.com/formatc1702/WireViz/issues/158), [#214](https://github.com/formatc1702/WireViz/pull/214))
- Add support for background colors for cables and connectors, as well as for some individual cells ([#210](https://github.com/formatc1702/WireViz/issues/210), [#219](https://github.com/formatc1702/WireViz/pull/219))
- Add optional tweaking of the .gv output ([#215](https://github.com/formatc1702/WireViz/pull/215)) (experimental)

View File

@ -137,7 +137,7 @@ mywire.bom.tsv BOM (bill of materials) as tab-separated text file
mywire.html HTML page with wiring diagram and BOM embedded
```
Wildcars in the file path are also supported to process multiple files at once, e.g.:
Wildcards in the file path are also supported to process multiple files at once, e.g.:
```
$ wireviz ~/path/to/files/*.yml
```

View File

@ -319,6 +319,8 @@ connections:
Since the internally assigned designator of an unnamed component is not known to the user, one instance of the connector can not be referenced again outside the point of creation (i.e. in other connection sets, or later in the same set). Autogeneration of unnamed instances is therefore only useful for terminals with only one wire attached, or splices with exactly one wire going in, and one wire going out.
If a component is to be used in other connection sets (e.g. for a three-way splice, or a crimp where multiple wires are joined), a named instance needs to be used.
The default character to trigger autogeneration of components is `.`. A different character can be specified using the `template_separator` option (see below).
Names of autogenerated components are hidden by default. While they can be shown in the graphical output using the `show_name: true` option, it is not recommended to manually use the internally assigned designator (starting with a double underscore `__`), since it might change in future WireViz versions, or when the order of items in connection sets changes.
@ -387,6 +389,27 @@ If any component is defined in the `connectors` or `cables` sections but not ref
# about additional components inside the diagram node (connector/cable box).
# If False, show all info about additional components inside the diagram node.
mini_bom_mode: <bool> # Default = True
# Character to split template and designator for autogenerated components
template_separator: <str> # Default = '.'
# Terms to be replaced by user defined terms
terminology: <terminology> # see below
```
## Terminology
A selection of terms can optionally be replaced by user defined terms.
This is a simple literal replacement of such terms in the diagram and BOM output. The original term is assumed in grammatical variations, like "{pin}s" and "{shield}ed", and that might create weird results in some use cases.
These are the supported terms (all entries are optional):
```yaml
terminology:
pin: <str>
wire: <str>
shield: <str>
```

250
examples/demo01.html generated
View File

@ -30,172 +30,172 @@
<div id="diagram">
<!-- XML and DOCTYPE declarations from SVG file removed -->
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="821pt" height="291pt"
viewBox="0.00 0.00 821.00 291.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 287)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-287 817,-287 817,4 -4,4"/>
<svg width="814pt" height="293pt"
viewBox="0.00 0.00 813.50 292.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 288.5)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-288.5 809.5,-288.5 809.5,4 -4,4"/>
<!-- X1 -->
<g id="node1" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="136,-253 0,-253 0,0 136,0 136,-253"/>
<polygon fill="none" stroke="black" points="0,-229.5 0,-252.5 136,-252.5 136,-229.5 0,-229.5"/>
<text text-anchor="start" x="59.5" y="-237.3" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-206.5 0,-229.5 47,-229.5 47,-206.5 0,-206.5"/>
<text text-anchor="start" x="4" y="-214.3" font-family="arial" font-size="14.00">D&#45;Sub</text>
<polygon fill="none" stroke="black" points="47,-206.5 47,-229.5 97,-229.5 97,-206.5 47,-206.5"/>
<text text-anchor="start" x="51" y="-214.3" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="97,-206.5 97,-229.5 136,-229.5 136,-206.5 97,-206.5"/>
<text text-anchor="start" x="101" y="-214.3" font-family="arial" font-size="14.00">9&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-183.5 0,-206.5 80,-206.5 80,-183.5 0,-183.5"/>
<text text-anchor="start" x="25" y="-191.3" font-family="arial" font-size="14.00">DCD</text>
<polygon fill="none" stroke="black" points="80,-183.5 80,-206.5 136,-206.5 136,-183.5 80,-183.5"/>
<text text-anchor="start" x="104" y="-191.3" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-160.5 0,-183.5 80,-183.5 80,-160.5 0,-160.5"/>
<text text-anchor="start" x="30.5" y="-168.3" font-family="arial" font-size="14.00">RX</text>
<polygon fill="none" stroke="black" points="80,-160.5 80,-183.5 136,-183.5 136,-160.5 80,-160.5"/>
<text text-anchor="start" x="104" y="-168.3" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0,-137.5 0,-160.5 80,-160.5 80,-137.5 0,-137.5"/>
<text text-anchor="start" x="31" y="-145.3" font-family="arial" font-size="14.00">TX</text>
<polygon fill="none" stroke="black" points="80,-137.5 80,-160.5 136,-160.5 136,-137.5 80,-137.5"/>
<text text-anchor="start" x="104" y="-145.3" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-114.5 0,-137.5 80,-137.5 80,-114.5 0,-114.5"/>
<text text-anchor="start" x="26" y="-122.3" font-family="arial" font-size="14.00">DTR</text>
<polygon fill="none" stroke="black" points="80,-114.5 80,-137.5 136,-137.5 136,-114.5 80,-114.5"/>
<text text-anchor="start" x="104" y="-122.3" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="0,-91.5 0,-114.5 80,-114.5 80,-91.5 0,-91.5"/>
<text text-anchor="start" x="24.5" y="-99.3" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="80,-91.5 80,-114.5 136,-114.5 136,-91.5 80,-91.5"/>
<text text-anchor="start" x="104" y="-99.3" font-family="arial" font-size="14.00">5</text>
<polygon fill="none" stroke="black" points="0,-68.5 0,-91.5 80,-91.5 80,-68.5 0,-68.5"/>
<text text-anchor="start" x="25.5" y="-76.3" font-family="arial" font-size="14.00">DSR</text>
<polygon fill="none" stroke="black" points="80,-68.5 80,-91.5 136,-91.5 136,-68.5 80,-68.5"/>
<text text-anchor="start" x="104" y="-76.3" font-family="arial" font-size="14.00">6</text>
<polygon fill="none" stroke="black" points="0,-45.5 0,-68.5 80,-68.5 80,-45.5 0,-45.5"/>
<text text-anchor="start" x="26" y="-53.3" font-family="arial" font-size="14.00">RTS</text>
<polygon fill="none" stroke="black" points="80,-45.5 80,-68.5 136,-68.5 136,-45.5 80,-45.5"/>
<text text-anchor="start" x="104" y="-53.3" font-family="arial" font-size="14.00">7</text>
<polygon fill="none" stroke="black" points="0,-22.5 0,-45.5 80,-45.5 80,-22.5 0,-22.5"/>
<text text-anchor="start" x="26" y="-30.3" font-family="arial" font-size="14.00">CTS</text>
<polygon fill="none" stroke="black" points="80,-22.5 80,-45.5 136,-45.5 136,-22.5 80,-22.5"/>
<text text-anchor="start" x="104" y="-30.3" font-family="arial" font-size="14.00">8</text>
<polygon fill="none" stroke="black" points="0,0.5 0,-22.5 80,-22.5 80,0.5 0,0.5"/>
<text text-anchor="start" x="33" y="-7.3" font-family="arial" font-size="14.00">RI</text>
<polygon fill="none" stroke="black" points="80,0.5 80,-22.5 136,-22.5 136,0.5 80,0.5"/>
<text text-anchor="start" x="104" y="-7.3" font-family="arial" font-size="14.00">9</text>
<polygon fill="#ffffff" stroke="black" points="133.5,-254.5 0,-254.5 0,0 133.5,0 133.5,-254.5"/>
<polygon fill="none" stroke="black" points="0,-230.75 0,-254.5 133.5,-254.5 133.5,-230.75 0,-230.75"/>
<text text-anchor="start" x="58.5" y="-237.2" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-207 0,-230.75 46.25,-230.75 46.25,-207 0,-207"/>
<text text-anchor="start" x="4" y="-213.45" font-family="arial" font-size="14.00">D&#45;Sub</text>
<polygon fill="none" stroke="black" points="46.25,-207 46.25,-230.75 95.5,-230.75 95.5,-207 46.25,-207"/>
<text text-anchor="start" x="50.25" y="-213.45" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="95.5,-207 95.5,-230.75 133.5,-230.75 133.5,-207 95.5,-207"/>
<text text-anchor="start" x="99.5" y="-213.45" font-family="arial" font-size="14.00">9&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-184 0,-207 78.25,-207 78.25,-184 0,-184"/>
<text text-anchor="start" x="24.5" y="-189.7" font-family="arial" font-size="14.00">DCD</text>
<polygon fill="none" stroke="black" points="78.25,-184 78.25,-207 133.5,-207 133.5,-184 78.25,-184"/>
<text text-anchor="start" x="102.12" y="-189.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-161 0,-184 78.25,-184 78.25,-161 0,-161"/>
<text text-anchor="start" x="29.75" y="-166.7" font-family="arial" font-size="14.00">RX</text>
<polygon fill="none" stroke="black" points="78.25,-161 78.25,-184 133.5,-184 133.5,-161 78.25,-161"/>
<text text-anchor="start" x="102.12" y="-166.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0,-138 0,-161 78.25,-161 78.25,-138 0,-138"/>
<text text-anchor="start" x="30.5" y="-143.7" font-family="arial" font-size="14.00">TX</text>
<polygon fill="none" stroke="black" points="78.25,-138 78.25,-161 133.5,-161 133.5,-138 78.25,-138"/>
<text text-anchor="start" x="102.12" y="-143.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-115 0,-138 78.25,-138 78.25,-115 0,-115"/>
<text text-anchor="start" x="25.25" y="-120.7" font-family="arial" font-size="14.00">DTR</text>
<polygon fill="none" stroke="black" points="78.25,-115 78.25,-138 133.5,-138 133.5,-115 78.25,-115"/>
<text text-anchor="start" x="102.12" y="-120.7" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="0,-92 0,-115 78.25,-115 78.25,-92 0,-92"/>
<text text-anchor="start" x="23.75" y="-97.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="78.25,-92 78.25,-115 133.5,-115 133.5,-92 78.25,-92"/>
<text text-anchor="start" x="102.12" y="-97.7" font-family="arial" font-size="14.00">5</text>
<polygon fill="none" stroke="black" points="0,-69 0,-92 78.25,-92 78.25,-69 0,-69"/>
<text text-anchor="start" x="24.88" y="-74.7" font-family="arial" font-size="14.00">DSR</text>
<polygon fill="none" stroke="black" points="78.25,-69 78.25,-92 133.5,-92 133.5,-69 78.25,-69"/>
<text text-anchor="start" x="102.12" y="-74.7" font-family="arial" font-size="14.00">6</text>
<polygon fill="none" stroke="black" points="0,-46 0,-69 78.25,-69 78.25,-46 0,-46"/>
<text text-anchor="start" x="25.62" y="-51.7" font-family="arial" font-size="14.00">RTS</text>
<polygon fill="none" stroke="black" points="78.25,-46 78.25,-69 133.5,-69 133.5,-46 78.25,-46"/>
<text text-anchor="start" x="102.12" y="-51.7" font-family="arial" font-size="14.00">7</text>
<polygon fill="none" stroke="black" points="0,-23 0,-46 78.25,-46 78.25,-23 0,-23"/>
<text text-anchor="start" x="25.62" y="-28.7" font-family="arial" font-size="14.00">CTS</text>
<polygon fill="none" stroke="black" points="78.25,-23 78.25,-46 133.5,-46 133.5,-23 78.25,-23"/>
<text text-anchor="start" x="102.12" y="-28.7" font-family="arial" font-size="14.00">8</text>
<polygon fill="none" stroke="black" points="0,0 0,-23 78.25,-23 78.25,0 0,0"/>
<text text-anchor="start" x="32.38" y="-5.7" font-family="arial" font-size="14.00">RI</text>
<polygon fill="none" stroke="black" points="78.25,0 78.25,-23 133.5,-23 133.5,0 78.25,0"/>
<text text-anchor="start" x="102.12" y="-5.7" font-family="arial" font-size="14.00">9</text>
</g>
<!-- W1 -->
<g id="node3" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" points="487,-283 280,-283 280,-84 487,-84 487,-283"/>
<polygon fill="none" stroke="black" points="280.5,-259.5 280.5,-282.5 487.5,-282.5 487.5,-259.5 280.5,-259.5"/>
<text text-anchor="start" x="373" y="-267.3" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="280.5,-236.5 280.5,-259.5 314.5,-259.5 314.5,-236.5 280.5,-236.5"/>
<text text-anchor="start" x="290" y="-244.3" font-family="arial" font-size="14.00">3x</text>
<polygon fill="none" stroke="black" points="314.5,-236.5 314.5,-259.5 392.5,-259.5 392.5,-236.5 314.5,-236.5"/>
<text text-anchor="start" x="324" y="-244.3" font-family="arial" font-size="14.00">0.25 mm²</text>
<polygon fill="none" stroke="black" points="392.5,-236.5 392.5,-259.5 433.5,-259.5 433.5,-236.5 392.5,-236.5"/>
<text text-anchor="start" x="402" y="-244.3" font-family="arial" font-size="14.00">+ S</text>
<polygon fill="none" stroke="black" points="433.5,-236.5 433.5,-259.5 487.5,-259.5 487.5,-236.5 433.5,-236.5"/>
<text text-anchor="start" x="443" y="-244.3" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="312" y="-223.3" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="282.5" y="-204.3" font-family="arial" font-size="14.00">X1:5:GND</text>
<text text-anchor="start" x="349.5" y="-204.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:WH &#160;&#160;&#160;</text>
<text text-anchor="start" x="422.5" y="-204.3" font-family="arial" font-size="14.00">X2:1:GND</text>
<polygon fill="#000000" stroke="none" points="280.5,-196.5 280.5,-198.5 487.5,-198.5 487.5,-196.5 280.5,-196.5"/>
<polygon fill="#ffffff" stroke="none" points="280.5,-194.5 280.5,-196.5 487.5,-196.5 487.5,-194.5 280.5,-194.5"/>
<polygon fill="#000000" stroke="none" points="280.5,-192.5 280.5,-194.5 487.5,-194.5 487.5,-192.5 280.5,-192.5"/>
<text text-anchor="start" x="288.5" y="-179.3" font-family="arial" font-size="14.00">X1:2:RX</text>
<text text-anchor="start" x="352" y="-179.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="429.5" y="-179.3" font-family="arial" font-size="14.00">X2:3:TX</text>
<polygon fill="#000000" stroke="none" points="280.5,-171.5 280.5,-173.5 487.5,-173.5 487.5,-171.5 280.5,-171.5"/>
<polygon fill="#895956" stroke="none" points="280.5,-169.5 280.5,-171.5 487.5,-171.5 487.5,-169.5 280.5,-169.5"/>
<polygon fill="#000000" stroke="none" points="280.5,-167.5 280.5,-169.5 487.5,-169.5 487.5,-167.5 280.5,-167.5"/>
<text text-anchor="start" x="289.5" y="-154.3" font-family="arial" font-size="14.00">X1:3:TX</text>
<text text-anchor="start" x="350.5" y="-154.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="428.5" y="-154.3" font-family="arial" font-size="14.00">X2:2:RX</text>
<polygon fill="#000000" stroke="none" points="280.5,-146.5 280.5,-148.5 487.5,-148.5 487.5,-146.5 280.5,-146.5"/>
<polygon fill="#00ff00" stroke="none" points="280.5,-144.5 280.5,-146.5 487.5,-146.5 487.5,-144.5 280.5,-144.5"/>
<polygon fill="#000000" stroke="none" points="280.5,-142.5 280.5,-144.5 487.5,-144.5 487.5,-142.5 280.5,-142.5"/>
<text text-anchor="start" x="312" y="-129.3" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="282.5" y="-110.3" font-family="arial" font-size="14.00">X1:5:GND</text>
<text text-anchor="start" x="365" y="-110.3" font-family="arial" font-size="14.00">Shield</text>
<polygon fill="#000000" stroke="none" points="280.5,-102.5 280.5,-104.5 487.5,-104.5 487.5,-102.5 280.5,-102.5"/>
<text text-anchor="start" x="312" y="-89.3" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" points="481.5,-284.5 277.5,-284.5 277.5,-84 481.5,-84 481.5,-284.5"/>
<polygon fill="none" stroke="black" points="277.5,-260.75 277.5,-284.5 481.5,-284.5 481.5,-260.75 277.5,-260.75"/>
<text text-anchor="start" x="369" y="-267.2" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="277.5,-237 277.5,-260.75 310.69,-260.75 310.69,-237 277.5,-237"/>
<text text-anchor="start" x="286.97" y="-243.45" font-family="arial" font-size="14.00">3x</text>
<polygon fill="none" stroke="black" points="310.69,-237 310.69,-260.75 388.12,-260.75 388.12,-237 310.69,-237"/>
<text text-anchor="start" x="320.16" y="-243.45" font-family="arial" font-size="14.00">0.25 mm²</text>
<polygon fill="none" stroke="black" points="388.12,-237 388.12,-260.75 428.06,-260.75 428.06,-237 388.12,-237"/>
<text text-anchor="start" x="397.59" y="-243.45" font-family="arial" font-size="14.00">+ S</text>
<polygon fill="none" stroke="black" points="428.06,-237 428.06,-260.75 481.5,-260.75 481.5,-237 428.06,-237"/>
<text text-anchor="start" x="437.53" y="-243.45" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="308.62" y="-221.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="279.38" y="-202.7" font-family="arial" font-size="14.00">X1:5:GND</text>
<text text-anchor="start" x="345.38" y="-202.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:WH &#160;&#160;&#160;</text>
<text text-anchor="start" x="417.38" y="-202.7" font-family="arial" font-size="14.00">X2:1:GND</text>
<polygon fill="#000000" stroke="none" points="277.5,-197 277.5,-199 481.5,-199 481.5,-197 277.5,-197"/>
<polygon fill="#ffffff" stroke="none" points="277.5,-195 277.5,-197 481.5,-197 481.5,-195 277.5,-195"/>
<polygon fill="#000000" stroke="none" points="277.5,-193 277.5,-195 481.5,-195 481.5,-193 277.5,-193"/>
<text text-anchor="start" x="285.38" y="-177.7" font-family="arial" font-size="14.00">X1:2:RX</text>
<text text-anchor="start" x="347.62" y="-177.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="424.12" y="-177.7" font-family="arial" font-size="14.00">X2:3:TX</text>
<polygon fill="#000000" stroke="none" points="277.5,-172 277.5,-174 481.5,-174 481.5,-172 277.5,-172"/>
<polygon fill="#895956" stroke="none" points="277.5,-170 277.5,-172 481.5,-172 481.5,-170 277.5,-170"/>
<polygon fill="#000000" stroke="none" points="277.5,-168 277.5,-170 481.5,-170 481.5,-168 277.5,-168"/>
<text text-anchor="start" x="286.12" y="-152.7" font-family="arial" font-size="14.00">X1:3:TX</text>
<text text-anchor="start" x="346.5" y="-152.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="423.38" y="-152.7" font-family="arial" font-size="14.00">X2:2:RX</text>
<polygon fill="#000000" stroke="none" points="277.5,-147 277.5,-149 481.5,-149 481.5,-147 277.5,-147"/>
<polygon fill="#00ff00" stroke="none" points="277.5,-145 277.5,-147 481.5,-147 481.5,-145 277.5,-145"/>
<polygon fill="#000000" stroke="none" points="277.5,-143 277.5,-145 481.5,-145 481.5,-143 277.5,-143"/>
<text text-anchor="start" x="308.62" y="-127.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="279.38" y="-108.7" font-family="arial" font-size="14.00">X1:5:GND</text>
<text text-anchor="start" x="360.75" y="-108.7" font-family="arial" font-size="14.00">Shield</text>
<polygon fill="#000000" stroke="none" points="277.5,-103 277.5,-105 481.5,-105 481.5,-103 277.5,-103"/>
<text text-anchor="start" x="308.62" y="-87.7" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge1" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-100.5C214.18,-102.68 205.81,-195.68 280,-193.5"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M136,-102.5C212.19,-102.5 203.81,-195.5 280,-195.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-104.5C210.19,-102.32 201.82,-195.32 280,-197.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M133.5,-101.25C211.68,-103.43 203.31,-196.43 277.5,-194.25"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M133.5,-103.25C209.69,-103.25 201.31,-196.25 277.5,-196.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M133.5,-105.25C207.69,-103.07 199.32,-196.07 277.5,-198.25"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge3" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-170.5C199.76,-170.52 215.75,-168.52 280,-168.5"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M136,-172.5C200.01,-172.5 215.99,-170.5 280,-170.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-174.5C200.25,-174.48 216.24,-172.48 280,-172.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M133.5,-170.25C197.38,-170.25 213.37,-169.25 277.5,-169.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M133.5,-172.25C197.5,-172.25 213.5,-171.25 277.5,-171.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M133.5,-174.25C197.63,-174.25 213.62,-173.25 277.5,-173.25"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge5" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-147.5C199.54,-147.56 215.49,-143.56 280,-143.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M136,-149.5C200.02,-149.5 215.98,-145.5 280,-145.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-151.5C200.51,-151.44 216.46,-147.44 280,-147.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M133.5,-147.25C197.14,-147.28 213.12,-144.28 277.5,-144.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M133.5,-149.25C197.51,-149.25 213.49,-146.25 277.5,-146.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M133.5,-151.25C197.88,-151.22 213.86,-148.22 277.5,-148.25"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge7" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-102.5C200,-102.5 216,-103.5 280,-103.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M133.5,-103.25C197.5,-103.25 213.5,-104.25 277.5,-104.25"/>
</g>
<!-- X2 -->
<g id="node2" class="node">
<title>X2</title>
<polygon fill="#ffffff" stroke="black" points="813,-254 631,-254 631,-139 813,-139 813,-254"/>
<polygon fill="none" stroke="black" points="631,-230.5 631,-253.5 813,-253.5 813,-230.5 631,-230.5"/>
<text text-anchor="start" x="713.5" y="-238.3" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="631,-207.5 631,-230.5 724,-230.5 724,-207.5 631,-207.5"/>
<text text-anchor="start" x="635" y="-215.3" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="724,-207.5 724,-230.5 774,-230.5 774,-207.5 724,-207.5"/>
<text text-anchor="start" x="728" y="-215.3" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="774,-207.5 774,-230.5 813,-230.5 813,-207.5 774,-207.5"/>
<text text-anchor="start" x="778" y="-215.3" font-family="arial" font-size="14.00">3&#45;pin</text>
<polygon fill="none" stroke="black" points="631,-184.5 631,-207.5 711,-207.5 711,-184.5 631,-184.5"/>
<text text-anchor="start" x="667" y="-192.3" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="711,-184.5 711,-207.5 813,-207.5 813,-184.5 711,-184.5"/>
<text text-anchor="start" x="746.5" y="-192.3" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="631,-161.5 631,-184.5 711,-184.5 711,-161.5 631,-161.5"/>
<text text-anchor="start" x="667" y="-169.3" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="711,-161.5 711,-184.5 813,-184.5 813,-161.5 711,-161.5"/>
<text text-anchor="start" x="752.5" y="-169.3" font-family="arial" font-size="14.00">RX</text>
<polygon fill="none" stroke="black" points="631,-138.5 631,-161.5 711,-161.5 711,-138.5 631,-138.5"/>
<text text-anchor="start" x="667" y="-146.3" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="711,-138.5 711,-161.5 813,-161.5 813,-138.5 711,-138.5"/>
<text text-anchor="start" x="753" y="-146.3" font-family="arial" font-size="14.00">TX</text>
<polygon fill="#ffffff" stroke="black" points="805.5,-255.5 625.5,-255.5 625.5,-139 805.5,-139 805.5,-255.5"/>
<polygon fill="none" stroke="black" points="625.5,-231.75 625.5,-255.5 805.5,-255.5 805.5,-231.75 625.5,-231.75"/>
<text text-anchor="start" x="707.25" y="-238.2" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="625.5,-208 625.5,-231.75 718.25,-231.75 718.25,-208 625.5,-208"/>
<text text-anchor="start" x="629.5" y="-214.45" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="718.25,-208 718.25,-231.75 767.5,-231.75 767.5,-208 718.25,-208"/>
<text text-anchor="start" x="722.25" y="-214.45" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="767.5,-208 767.5,-231.75 805.5,-231.75 805.5,-208 767.5,-208"/>
<text text-anchor="start" x="771.5" y="-214.45" font-family="arial" font-size="14.00">3&#45;pin</text>
<polygon fill="none" stroke="black" points="625.5,-185 625.5,-208 704,-208 704,-185 625.5,-185"/>
<text text-anchor="start" x="661" y="-190.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="704,-185 704,-208 805.5,-208 805.5,-185 704,-185"/>
<text text-anchor="start" x="739.38" y="-190.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="625.5,-162 625.5,-185 704,-185 704,-162 625.5,-162"/>
<text text-anchor="start" x="661" y="-167.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="704,-162 704,-185 805.5,-185 805.5,-162 704,-162"/>
<text text-anchor="start" x="745.38" y="-167.7" font-family="arial" font-size="14.00">RX</text>
<polygon fill="none" stroke="black" points="625.5,-139 625.5,-162 704,-162 704,-139 625.5,-139"/>
<text text-anchor="start" x="661" y="-144.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="704,-139 704,-162 805.5,-162 805.5,-139 704,-139"/>
<text text-anchor="start" x="746.12" y="-144.7" font-family="arial" font-size="14.00">TX</text>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M487,-193.5C551,-193.5 567,-193.5 631,-193.5"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M487,-195.5C551,-195.5 567,-195.5 631,-195.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M487,-197.5C551,-197.5 567,-197.5 631,-197.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M481.5,-194.25C545.5,-194.25 561.5,-194.25 625.5,-194.25"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M481.5,-196.25C545.5,-196.25 561.5,-196.25 625.5,-196.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M481.5,-198.25C545.5,-198.25 561.5,-198.25 625.5,-198.25"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M487,-168.5C550.04,-169.36 564.68,-148.36 631,-147.5"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M487,-170.5C551.68,-170.5 566.32,-149.5 631,-149.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M487,-172.5C553.32,-171.64 567.96,-150.64 631,-151.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M481.5,-169.25C544.54,-170.11 559.18,-149.11 625.5,-148.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M481.5,-171.25C546.18,-171.25 560.82,-150.25 625.5,-150.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M481.5,-173.25C547.82,-172.39 562.46,-151.39 625.5,-152.25"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge6" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M487,-143.5C553.9,-144.59 567.67,-171.59 631,-170.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M487,-145.5C552.12,-145.5 565.88,-172.5 631,-172.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M487,-147.5C550.33,-146.41 564.1,-173.41 631,-174.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M481.5,-144.25C548.4,-145.34 562.17,-172.34 625.5,-171.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M481.5,-146.25C546.62,-146.25 560.38,-173.25 625.5,-173.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M481.5,-148.25C544.83,-147.16 558.6,-174.16 625.5,-175.25"/>
</g>
</g>
</svg>

BIN
examples/demo01.png generated

Binary file not shown.

Before

Width:  |  Height:  |  Size: 55 KiB

After

Width:  |  Height:  |  Size: 54 KiB

250
examples/demo01.svg generated
View File

@ -1,172 +1,172 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="821pt" height="291pt"
viewBox="0.00 0.00 821.00 291.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 287)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-287 817,-287 817,4 -4,4"/>
<svg width="814pt" height="293pt"
viewBox="0.00 0.00 813.50 292.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 288.5)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-288.5 809.5,-288.5 809.5,4 -4,4"/>
<!-- X1 -->
<g id="node1" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="136,-253 0,-253 0,0 136,0 136,-253"/>
<polygon fill="none" stroke="black" points="0,-229.5 0,-252.5 136,-252.5 136,-229.5 0,-229.5"/>
<text text-anchor="start" x="59.5" y="-237.3" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-206.5 0,-229.5 47,-229.5 47,-206.5 0,-206.5"/>
<text text-anchor="start" x="4" y="-214.3" font-family="arial" font-size="14.00">D&#45;Sub</text>
<polygon fill="none" stroke="black" points="47,-206.5 47,-229.5 97,-229.5 97,-206.5 47,-206.5"/>
<text text-anchor="start" x="51" y="-214.3" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="97,-206.5 97,-229.5 136,-229.5 136,-206.5 97,-206.5"/>
<text text-anchor="start" x="101" y="-214.3" font-family="arial" font-size="14.00">9&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-183.5 0,-206.5 80,-206.5 80,-183.5 0,-183.5"/>
<text text-anchor="start" x="25" y="-191.3" font-family="arial" font-size="14.00">DCD</text>
<polygon fill="none" stroke="black" points="80,-183.5 80,-206.5 136,-206.5 136,-183.5 80,-183.5"/>
<text text-anchor="start" x="104" y="-191.3" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-160.5 0,-183.5 80,-183.5 80,-160.5 0,-160.5"/>
<text text-anchor="start" x="30.5" y="-168.3" font-family="arial" font-size="14.00">RX</text>
<polygon fill="none" stroke="black" points="80,-160.5 80,-183.5 136,-183.5 136,-160.5 80,-160.5"/>
<text text-anchor="start" x="104" y="-168.3" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0,-137.5 0,-160.5 80,-160.5 80,-137.5 0,-137.5"/>
<text text-anchor="start" x="31" y="-145.3" font-family="arial" font-size="14.00">TX</text>
<polygon fill="none" stroke="black" points="80,-137.5 80,-160.5 136,-160.5 136,-137.5 80,-137.5"/>
<text text-anchor="start" x="104" y="-145.3" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-114.5 0,-137.5 80,-137.5 80,-114.5 0,-114.5"/>
<text text-anchor="start" x="26" y="-122.3" font-family="arial" font-size="14.00">DTR</text>
<polygon fill="none" stroke="black" points="80,-114.5 80,-137.5 136,-137.5 136,-114.5 80,-114.5"/>
<text text-anchor="start" x="104" y="-122.3" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="0,-91.5 0,-114.5 80,-114.5 80,-91.5 0,-91.5"/>
<text text-anchor="start" x="24.5" y="-99.3" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="80,-91.5 80,-114.5 136,-114.5 136,-91.5 80,-91.5"/>
<text text-anchor="start" x="104" y="-99.3" font-family="arial" font-size="14.00">5</text>
<polygon fill="none" stroke="black" points="0,-68.5 0,-91.5 80,-91.5 80,-68.5 0,-68.5"/>
<text text-anchor="start" x="25.5" y="-76.3" font-family="arial" font-size="14.00">DSR</text>
<polygon fill="none" stroke="black" points="80,-68.5 80,-91.5 136,-91.5 136,-68.5 80,-68.5"/>
<text text-anchor="start" x="104" y="-76.3" font-family="arial" font-size="14.00">6</text>
<polygon fill="none" stroke="black" points="0,-45.5 0,-68.5 80,-68.5 80,-45.5 0,-45.5"/>
<text text-anchor="start" x="26" y="-53.3" font-family="arial" font-size="14.00">RTS</text>
<polygon fill="none" stroke="black" points="80,-45.5 80,-68.5 136,-68.5 136,-45.5 80,-45.5"/>
<text text-anchor="start" x="104" y="-53.3" font-family="arial" font-size="14.00">7</text>
<polygon fill="none" stroke="black" points="0,-22.5 0,-45.5 80,-45.5 80,-22.5 0,-22.5"/>
<text text-anchor="start" x="26" y="-30.3" font-family="arial" font-size="14.00">CTS</text>
<polygon fill="none" stroke="black" points="80,-22.5 80,-45.5 136,-45.5 136,-22.5 80,-22.5"/>
<text text-anchor="start" x="104" y="-30.3" font-family="arial" font-size="14.00">8</text>
<polygon fill="none" stroke="black" points="0,0.5 0,-22.5 80,-22.5 80,0.5 0,0.5"/>
<text text-anchor="start" x="33" y="-7.3" font-family="arial" font-size="14.00">RI</text>
<polygon fill="none" stroke="black" points="80,0.5 80,-22.5 136,-22.5 136,0.5 80,0.5"/>
<text text-anchor="start" x="104" y="-7.3" font-family="arial" font-size="14.00">9</text>
<polygon fill="#ffffff" stroke="black" points="133.5,-254.5 0,-254.5 0,0 133.5,0 133.5,-254.5"/>
<polygon fill="none" stroke="black" points="0,-230.75 0,-254.5 133.5,-254.5 133.5,-230.75 0,-230.75"/>
<text text-anchor="start" x="58.5" y="-237.2" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-207 0,-230.75 46.25,-230.75 46.25,-207 0,-207"/>
<text text-anchor="start" x="4" y="-213.45" font-family="arial" font-size="14.00">D&#45;Sub</text>
<polygon fill="none" stroke="black" points="46.25,-207 46.25,-230.75 95.5,-230.75 95.5,-207 46.25,-207"/>
<text text-anchor="start" x="50.25" y="-213.45" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="95.5,-207 95.5,-230.75 133.5,-230.75 133.5,-207 95.5,-207"/>
<text text-anchor="start" x="99.5" y="-213.45" font-family="arial" font-size="14.00">9&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-184 0,-207 78.25,-207 78.25,-184 0,-184"/>
<text text-anchor="start" x="24.5" y="-189.7" font-family="arial" font-size="14.00">DCD</text>
<polygon fill="none" stroke="black" points="78.25,-184 78.25,-207 133.5,-207 133.5,-184 78.25,-184"/>
<text text-anchor="start" x="102.12" y="-189.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-161 0,-184 78.25,-184 78.25,-161 0,-161"/>
<text text-anchor="start" x="29.75" y="-166.7" font-family="arial" font-size="14.00">RX</text>
<polygon fill="none" stroke="black" points="78.25,-161 78.25,-184 133.5,-184 133.5,-161 78.25,-161"/>
<text text-anchor="start" x="102.12" y="-166.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0,-138 0,-161 78.25,-161 78.25,-138 0,-138"/>
<text text-anchor="start" x="30.5" y="-143.7" font-family="arial" font-size="14.00">TX</text>
<polygon fill="none" stroke="black" points="78.25,-138 78.25,-161 133.5,-161 133.5,-138 78.25,-138"/>
<text text-anchor="start" x="102.12" y="-143.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-115 0,-138 78.25,-138 78.25,-115 0,-115"/>
<text text-anchor="start" x="25.25" y="-120.7" font-family="arial" font-size="14.00">DTR</text>
<polygon fill="none" stroke="black" points="78.25,-115 78.25,-138 133.5,-138 133.5,-115 78.25,-115"/>
<text text-anchor="start" x="102.12" y="-120.7" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="0,-92 0,-115 78.25,-115 78.25,-92 0,-92"/>
<text text-anchor="start" x="23.75" y="-97.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="78.25,-92 78.25,-115 133.5,-115 133.5,-92 78.25,-92"/>
<text text-anchor="start" x="102.12" y="-97.7" font-family="arial" font-size="14.00">5</text>
<polygon fill="none" stroke="black" points="0,-69 0,-92 78.25,-92 78.25,-69 0,-69"/>
<text text-anchor="start" x="24.88" y="-74.7" font-family="arial" font-size="14.00">DSR</text>
<polygon fill="none" stroke="black" points="78.25,-69 78.25,-92 133.5,-92 133.5,-69 78.25,-69"/>
<text text-anchor="start" x="102.12" y="-74.7" font-family="arial" font-size="14.00">6</text>
<polygon fill="none" stroke="black" points="0,-46 0,-69 78.25,-69 78.25,-46 0,-46"/>
<text text-anchor="start" x="25.62" y="-51.7" font-family="arial" font-size="14.00">RTS</text>
<polygon fill="none" stroke="black" points="78.25,-46 78.25,-69 133.5,-69 133.5,-46 78.25,-46"/>
<text text-anchor="start" x="102.12" y="-51.7" font-family="arial" font-size="14.00">7</text>
<polygon fill="none" stroke="black" points="0,-23 0,-46 78.25,-46 78.25,-23 0,-23"/>
<text text-anchor="start" x="25.62" y="-28.7" font-family="arial" font-size="14.00">CTS</text>
<polygon fill="none" stroke="black" points="78.25,-23 78.25,-46 133.5,-46 133.5,-23 78.25,-23"/>
<text text-anchor="start" x="102.12" y="-28.7" font-family="arial" font-size="14.00">8</text>
<polygon fill="none" stroke="black" points="0,0 0,-23 78.25,-23 78.25,0 0,0"/>
<text text-anchor="start" x="32.38" y="-5.7" font-family="arial" font-size="14.00">RI</text>
<polygon fill="none" stroke="black" points="78.25,0 78.25,-23 133.5,-23 133.5,0 78.25,0"/>
<text text-anchor="start" x="102.12" y="-5.7" font-family="arial" font-size="14.00">9</text>
</g>
<!-- W1 -->
<g id="node3" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" points="487,-283 280,-283 280,-84 487,-84 487,-283"/>
<polygon fill="none" stroke="black" points="280.5,-259.5 280.5,-282.5 487.5,-282.5 487.5,-259.5 280.5,-259.5"/>
<text text-anchor="start" x="373" y="-267.3" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="280.5,-236.5 280.5,-259.5 314.5,-259.5 314.5,-236.5 280.5,-236.5"/>
<text text-anchor="start" x="290" y="-244.3" font-family="arial" font-size="14.00">3x</text>
<polygon fill="none" stroke="black" points="314.5,-236.5 314.5,-259.5 392.5,-259.5 392.5,-236.5 314.5,-236.5"/>
<text text-anchor="start" x="324" y="-244.3" font-family="arial" font-size="14.00">0.25 mm²</text>
<polygon fill="none" stroke="black" points="392.5,-236.5 392.5,-259.5 433.5,-259.5 433.5,-236.5 392.5,-236.5"/>
<text text-anchor="start" x="402" y="-244.3" font-family="arial" font-size="14.00">+ S</text>
<polygon fill="none" stroke="black" points="433.5,-236.5 433.5,-259.5 487.5,-259.5 487.5,-236.5 433.5,-236.5"/>
<text text-anchor="start" x="443" y="-244.3" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="312" y="-223.3" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="282.5" y="-204.3" font-family="arial" font-size="14.00">X1:5:GND</text>
<text text-anchor="start" x="349.5" y="-204.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:WH &#160;&#160;&#160;</text>
<text text-anchor="start" x="422.5" y="-204.3" font-family="arial" font-size="14.00">X2:1:GND</text>
<polygon fill="#000000" stroke="none" points="280.5,-196.5 280.5,-198.5 487.5,-198.5 487.5,-196.5 280.5,-196.5"/>
<polygon fill="#ffffff" stroke="none" points="280.5,-194.5 280.5,-196.5 487.5,-196.5 487.5,-194.5 280.5,-194.5"/>
<polygon fill="#000000" stroke="none" points="280.5,-192.5 280.5,-194.5 487.5,-194.5 487.5,-192.5 280.5,-192.5"/>
<text text-anchor="start" x="288.5" y="-179.3" font-family="arial" font-size="14.00">X1:2:RX</text>
<text text-anchor="start" x="352" y="-179.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="429.5" y="-179.3" font-family="arial" font-size="14.00">X2:3:TX</text>
<polygon fill="#000000" stroke="none" points="280.5,-171.5 280.5,-173.5 487.5,-173.5 487.5,-171.5 280.5,-171.5"/>
<polygon fill="#895956" stroke="none" points="280.5,-169.5 280.5,-171.5 487.5,-171.5 487.5,-169.5 280.5,-169.5"/>
<polygon fill="#000000" stroke="none" points="280.5,-167.5 280.5,-169.5 487.5,-169.5 487.5,-167.5 280.5,-167.5"/>
<text text-anchor="start" x="289.5" y="-154.3" font-family="arial" font-size="14.00">X1:3:TX</text>
<text text-anchor="start" x="350.5" y="-154.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="428.5" y="-154.3" font-family="arial" font-size="14.00">X2:2:RX</text>
<polygon fill="#000000" stroke="none" points="280.5,-146.5 280.5,-148.5 487.5,-148.5 487.5,-146.5 280.5,-146.5"/>
<polygon fill="#00ff00" stroke="none" points="280.5,-144.5 280.5,-146.5 487.5,-146.5 487.5,-144.5 280.5,-144.5"/>
<polygon fill="#000000" stroke="none" points="280.5,-142.5 280.5,-144.5 487.5,-144.5 487.5,-142.5 280.5,-142.5"/>
<text text-anchor="start" x="312" y="-129.3" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="282.5" y="-110.3" font-family="arial" font-size="14.00">X1:5:GND</text>
<text text-anchor="start" x="365" y="-110.3" font-family="arial" font-size="14.00">Shield</text>
<polygon fill="#000000" stroke="none" points="280.5,-102.5 280.5,-104.5 487.5,-104.5 487.5,-102.5 280.5,-102.5"/>
<text text-anchor="start" x="312" y="-89.3" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" points="481.5,-284.5 277.5,-284.5 277.5,-84 481.5,-84 481.5,-284.5"/>
<polygon fill="none" stroke="black" points="277.5,-260.75 277.5,-284.5 481.5,-284.5 481.5,-260.75 277.5,-260.75"/>
<text text-anchor="start" x="369" y="-267.2" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="277.5,-237 277.5,-260.75 310.69,-260.75 310.69,-237 277.5,-237"/>
<text text-anchor="start" x="286.97" y="-243.45" font-family="arial" font-size="14.00">3x</text>
<polygon fill="none" stroke="black" points="310.69,-237 310.69,-260.75 388.12,-260.75 388.12,-237 310.69,-237"/>
<text text-anchor="start" x="320.16" y="-243.45" font-family="arial" font-size="14.00">0.25 mm²</text>
<polygon fill="none" stroke="black" points="388.12,-237 388.12,-260.75 428.06,-260.75 428.06,-237 388.12,-237"/>
<text text-anchor="start" x="397.59" y="-243.45" font-family="arial" font-size="14.00">+ S</text>
<polygon fill="none" stroke="black" points="428.06,-237 428.06,-260.75 481.5,-260.75 481.5,-237 428.06,-237"/>
<text text-anchor="start" x="437.53" y="-243.45" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="308.62" y="-221.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="279.38" y="-202.7" font-family="arial" font-size="14.00">X1:5:GND</text>
<text text-anchor="start" x="345.38" y="-202.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:WH &#160;&#160;&#160;</text>
<text text-anchor="start" x="417.38" y="-202.7" font-family="arial" font-size="14.00">X2:1:GND</text>
<polygon fill="#000000" stroke="none" points="277.5,-197 277.5,-199 481.5,-199 481.5,-197 277.5,-197"/>
<polygon fill="#ffffff" stroke="none" points="277.5,-195 277.5,-197 481.5,-197 481.5,-195 277.5,-195"/>
<polygon fill="#000000" stroke="none" points="277.5,-193 277.5,-195 481.5,-195 481.5,-193 277.5,-193"/>
<text text-anchor="start" x="285.38" y="-177.7" font-family="arial" font-size="14.00">X1:2:RX</text>
<text text-anchor="start" x="347.62" y="-177.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="424.12" y="-177.7" font-family="arial" font-size="14.00">X2:3:TX</text>
<polygon fill="#000000" stroke="none" points="277.5,-172 277.5,-174 481.5,-174 481.5,-172 277.5,-172"/>
<polygon fill="#895956" stroke="none" points="277.5,-170 277.5,-172 481.5,-172 481.5,-170 277.5,-170"/>
<polygon fill="#000000" stroke="none" points="277.5,-168 277.5,-170 481.5,-170 481.5,-168 277.5,-168"/>
<text text-anchor="start" x="286.12" y="-152.7" font-family="arial" font-size="14.00">X1:3:TX</text>
<text text-anchor="start" x="346.5" y="-152.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="423.38" y="-152.7" font-family="arial" font-size="14.00">X2:2:RX</text>
<polygon fill="#000000" stroke="none" points="277.5,-147 277.5,-149 481.5,-149 481.5,-147 277.5,-147"/>
<polygon fill="#00ff00" stroke="none" points="277.5,-145 277.5,-147 481.5,-147 481.5,-145 277.5,-145"/>
<polygon fill="#000000" stroke="none" points="277.5,-143 277.5,-145 481.5,-145 481.5,-143 277.5,-143"/>
<text text-anchor="start" x="308.62" y="-127.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="279.38" y="-108.7" font-family="arial" font-size="14.00">X1:5:GND</text>
<text text-anchor="start" x="360.75" y="-108.7" font-family="arial" font-size="14.00">Shield</text>
<polygon fill="#000000" stroke="none" points="277.5,-103 277.5,-105 481.5,-105 481.5,-103 277.5,-103"/>
<text text-anchor="start" x="308.62" y="-87.7" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge1" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-100.5C214.18,-102.68 205.81,-195.68 280,-193.5"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M136,-102.5C212.19,-102.5 203.81,-195.5 280,-195.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-104.5C210.19,-102.32 201.82,-195.32 280,-197.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M133.5,-101.25C211.68,-103.43 203.31,-196.43 277.5,-194.25"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M133.5,-103.25C209.69,-103.25 201.31,-196.25 277.5,-196.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M133.5,-105.25C207.69,-103.07 199.32,-196.07 277.5,-198.25"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge3" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-170.5C199.76,-170.52 215.75,-168.52 280,-168.5"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M136,-172.5C200.01,-172.5 215.99,-170.5 280,-170.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-174.5C200.25,-174.48 216.24,-172.48 280,-172.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M133.5,-170.25C197.38,-170.25 213.37,-169.25 277.5,-169.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M133.5,-172.25C197.5,-172.25 213.5,-171.25 277.5,-171.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M133.5,-174.25C197.63,-174.25 213.62,-173.25 277.5,-173.25"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge5" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-147.5C199.54,-147.56 215.49,-143.56 280,-143.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M136,-149.5C200.02,-149.5 215.98,-145.5 280,-145.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-151.5C200.51,-151.44 216.46,-147.44 280,-147.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M133.5,-147.25C197.14,-147.28 213.12,-144.28 277.5,-144.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M133.5,-149.25C197.51,-149.25 213.49,-146.25 277.5,-146.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M133.5,-151.25C197.88,-151.22 213.86,-148.22 277.5,-148.25"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge7" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M136,-102.5C200,-102.5 216,-103.5 280,-103.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M133.5,-103.25C197.5,-103.25 213.5,-104.25 277.5,-104.25"/>
</g>
<!-- X2 -->
<g id="node2" class="node">
<title>X2</title>
<polygon fill="#ffffff" stroke="black" points="813,-254 631,-254 631,-139 813,-139 813,-254"/>
<polygon fill="none" stroke="black" points="631,-230.5 631,-253.5 813,-253.5 813,-230.5 631,-230.5"/>
<text text-anchor="start" x="713.5" y="-238.3" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="631,-207.5 631,-230.5 724,-230.5 724,-207.5 631,-207.5"/>
<text text-anchor="start" x="635" y="-215.3" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="724,-207.5 724,-230.5 774,-230.5 774,-207.5 724,-207.5"/>
<text text-anchor="start" x="728" y="-215.3" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="774,-207.5 774,-230.5 813,-230.5 813,-207.5 774,-207.5"/>
<text text-anchor="start" x="778" y="-215.3" font-family="arial" font-size="14.00">3&#45;pin</text>
<polygon fill="none" stroke="black" points="631,-184.5 631,-207.5 711,-207.5 711,-184.5 631,-184.5"/>
<text text-anchor="start" x="667" y="-192.3" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="711,-184.5 711,-207.5 813,-207.5 813,-184.5 711,-184.5"/>
<text text-anchor="start" x="746.5" y="-192.3" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="631,-161.5 631,-184.5 711,-184.5 711,-161.5 631,-161.5"/>
<text text-anchor="start" x="667" y="-169.3" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="711,-161.5 711,-184.5 813,-184.5 813,-161.5 711,-161.5"/>
<text text-anchor="start" x="752.5" y="-169.3" font-family="arial" font-size="14.00">RX</text>
<polygon fill="none" stroke="black" points="631,-138.5 631,-161.5 711,-161.5 711,-138.5 631,-138.5"/>
<text text-anchor="start" x="667" y="-146.3" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="711,-138.5 711,-161.5 813,-161.5 813,-138.5 711,-138.5"/>
<text text-anchor="start" x="753" y="-146.3" font-family="arial" font-size="14.00">TX</text>
<polygon fill="#ffffff" stroke="black" points="805.5,-255.5 625.5,-255.5 625.5,-139 805.5,-139 805.5,-255.5"/>
<polygon fill="none" stroke="black" points="625.5,-231.75 625.5,-255.5 805.5,-255.5 805.5,-231.75 625.5,-231.75"/>
<text text-anchor="start" x="707.25" y="-238.2" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="625.5,-208 625.5,-231.75 718.25,-231.75 718.25,-208 625.5,-208"/>
<text text-anchor="start" x="629.5" y="-214.45" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="718.25,-208 718.25,-231.75 767.5,-231.75 767.5,-208 718.25,-208"/>
<text text-anchor="start" x="722.25" y="-214.45" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="767.5,-208 767.5,-231.75 805.5,-231.75 805.5,-208 767.5,-208"/>
<text text-anchor="start" x="771.5" y="-214.45" font-family="arial" font-size="14.00">3&#45;pin</text>
<polygon fill="none" stroke="black" points="625.5,-185 625.5,-208 704,-208 704,-185 625.5,-185"/>
<text text-anchor="start" x="661" y="-190.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="704,-185 704,-208 805.5,-208 805.5,-185 704,-185"/>
<text text-anchor="start" x="739.38" y="-190.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="625.5,-162 625.5,-185 704,-185 704,-162 625.5,-162"/>
<text text-anchor="start" x="661" y="-167.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="704,-162 704,-185 805.5,-185 805.5,-162 704,-162"/>
<text text-anchor="start" x="745.38" y="-167.7" font-family="arial" font-size="14.00">RX</text>
<polygon fill="none" stroke="black" points="625.5,-139 625.5,-162 704,-162 704,-139 625.5,-139"/>
<text text-anchor="start" x="661" y="-144.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="704,-139 704,-162 805.5,-162 805.5,-139 704,-139"/>
<text text-anchor="start" x="746.12" y="-144.7" font-family="arial" font-size="14.00">TX</text>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M487,-193.5C551,-193.5 567,-193.5 631,-193.5"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M487,-195.5C551,-195.5 567,-195.5 631,-195.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M487,-197.5C551,-197.5 567,-197.5 631,-197.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M481.5,-194.25C545.5,-194.25 561.5,-194.25 625.5,-194.25"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M481.5,-196.25C545.5,-196.25 561.5,-196.25 625.5,-196.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M481.5,-198.25C545.5,-198.25 561.5,-198.25 625.5,-198.25"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M487,-168.5C550.04,-169.36 564.68,-148.36 631,-147.5"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M487,-170.5C551.68,-170.5 566.32,-149.5 631,-149.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M487,-172.5C553.32,-171.64 567.96,-150.64 631,-151.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M481.5,-169.25C544.54,-170.11 559.18,-149.11 625.5,-148.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M481.5,-171.25C546.18,-171.25 560.82,-150.25 625.5,-150.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M481.5,-173.25C547.82,-172.39 562.46,-151.39 625.5,-152.25"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge6" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M487,-143.5C553.9,-144.59 567.67,-171.59 631,-170.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M487,-145.5C552.12,-145.5 565.88,-172.5 631,-172.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M487,-147.5C550.33,-146.41 564.1,-173.41 631,-174.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M481.5,-144.25C548.4,-145.34 562.17,-172.34 625.5,-171.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M481.5,-146.25C546.62,-146.25 560.38,-173.25 625.5,-173.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M481.5,-148.25C544.83,-147.16 558.6,-174.16 625.5,-175.25"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

706
examples/demo02.html generated
View File

@ -188,512 +188,512 @@
</div>
<!-- XML and DOCTYPE declarations from SVG file removed -->
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="872pt" height="767pt"
viewBox="0.00 0.00 872.00 766.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 762.5)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-762.5 868,-762.5 868,4 -4,4"/>
<svg width="865pt" height="775pt"
viewBox="0.00 0.00 865.25 774.62" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 770.62)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-770.62 861.25,-770.62 861.25,4 -4,4"/>
<!-- X1 -->
<g id="node1" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="185.5,-517.5 3.5,-517.5 3.5,-287.5 185.5,-287.5 185.5,-517.5"/>
<polygon fill="none" stroke="black" points="3.5,-494.5 3.5,-517.5 185.5,-517.5 185.5,-494.5 3.5,-494.5"/>
<text text-anchor="start" x="86" y="-502.3" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="3.5,-471.5 3.5,-494.5 96.5,-494.5 96.5,-471.5 3.5,-471.5"/>
<text text-anchor="start" x="7.5" y="-479.3" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="96.5,-471.5 96.5,-494.5 146.5,-494.5 146.5,-471.5 96.5,-471.5"/>
<text text-anchor="start" x="100.5" y="-479.3" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="146.5,-471.5 146.5,-494.5 185.5,-494.5 185.5,-471.5 146.5,-471.5"/>
<text text-anchor="start" x="150.5" y="-479.3" font-family="arial" font-size="14.00">8&#45;pin</text>
<polygon fill="none" stroke="black" points="3.5,-448.5 3.5,-471.5 109.5,-471.5 109.5,-448.5 3.5,-448.5"/>
<text text-anchor="start" x="41" y="-456.3" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="109.5,-448.5 109.5,-471.5 185.5,-471.5 185.5,-448.5 109.5,-448.5"/>
<text text-anchor="start" x="143.5" y="-456.3" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="3.5,-425.5 3.5,-448.5 109.5,-448.5 109.5,-425.5 3.5,-425.5"/>
<text text-anchor="start" x="44" y="-433.3" font-family="arial" font-size="14.00">+5V</text>
<polygon fill="none" stroke="black" points="109.5,-425.5 109.5,-448.5 185.5,-448.5 185.5,-425.5 109.5,-425.5"/>
<text text-anchor="start" x="143.5" y="-433.3" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="3.5,-402.5 3.5,-425.5 109.5,-425.5 109.5,-402.5 3.5,-402.5"/>
<text text-anchor="start" x="43" y="-410.3" font-family="arial" font-size="14.00">SCL</text>
<polygon fill="none" stroke="black" points="109.5,-402.5 109.5,-425.5 185.5,-425.5 185.5,-402.5 109.5,-402.5"/>
<text text-anchor="start" x="143.5" y="-410.3" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="3.5,-379.5 3.5,-402.5 109.5,-402.5 109.5,-379.5 3.5,-379.5"/>
<text text-anchor="start" x="42.5" y="-387.3" font-family="arial" font-size="14.00">SDA</text>
<polygon fill="none" stroke="black" points="109.5,-379.5 109.5,-402.5 185.5,-402.5 185.5,-379.5 109.5,-379.5"/>
<text text-anchor="start" x="143.5" y="-387.3" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="3.5,-356.5 3.5,-379.5 109.5,-379.5 109.5,-356.5 3.5,-356.5"/>
<text text-anchor="start" x="38" y="-364.3" font-family="arial" font-size="14.00">MISO</text>
<polygon fill="none" stroke="black" points="109.5,-356.5 109.5,-379.5 185.5,-379.5 185.5,-356.5 109.5,-356.5"/>
<text text-anchor="start" x="143.5" y="-364.3" font-family="arial" font-size="14.00">5</text>
<polygon fill="none" stroke="black" points="3.5,-333.5 3.5,-356.5 109.5,-356.5 109.5,-333.5 3.5,-333.5"/>
<text text-anchor="start" x="38" y="-341.3" font-family="arial" font-size="14.00">MOSI</text>
<polygon fill="none" stroke="black" points="109.5,-333.5 109.5,-356.5 185.5,-356.5 185.5,-333.5 109.5,-333.5"/>
<text text-anchor="start" x="143.5" y="-341.3" font-family="arial" font-size="14.00">6</text>
<polygon fill="none" stroke="black" points="3.5,-310.5 3.5,-333.5 109.5,-333.5 109.5,-310.5 3.5,-310.5"/>
<text text-anchor="start" x="42.5" y="-318.3" font-family="arial" font-size="14.00">SCK</text>
<polygon fill="none" stroke="black" points="109.5,-310.5 109.5,-333.5 185.5,-333.5 185.5,-310.5 109.5,-310.5"/>
<text text-anchor="start" x="143.5" y="-318.3" font-family="arial" font-size="14.00">7</text>
<polygon fill="none" stroke="black" points="3.5,-287.5 3.5,-310.5 109.5,-310.5 109.5,-287.5 3.5,-287.5"/>
<text text-anchor="start" x="44.5" y="-295.3" font-family="arial" font-size="14.00">N/C</text>
<polygon fill="none" stroke="black" points="109.5,-287.5 109.5,-310.5 185.5,-310.5 185.5,-287.5 109.5,-287.5"/>
<text text-anchor="start" x="143.5" y="-295.3" font-family="arial" font-size="14.00">8</text>
<polygon fill="#ffffff" stroke="black" points="183.62,-523.62 3.62,-523.62 3.62,-292.12 183.62,-292.12 183.62,-523.62"/>
<polygon fill="none" stroke="black" points="3.62,-499.88 3.62,-523.62 183.62,-523.62 183.62,-499.88 3.62,-499.88"/>
<text text-anchor="start" x="85.38" y="-506.32" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="3.62,-476.12 3.62,-499.88 96.38,-499.88 96.38,-476.12 3.62,-476.12"/>
<text text-anchor="start" x="7.62" y="-482.57" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="96.38,-476.12 96.38,-499.88 145.62,-499.88 145.62,-476.12 96.38,-476.12"/>
<text text-anchor="start" x="100.38" y="-482.57" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="145.62,-476.12 145.62,-499.88 183.62,-499.88 183.62,-476.12 145.62,-476.12"/>
<text text-anchor="start" x="149.62" y="-482.57" font-family="arial" font-size="14.00">8&#45;pin</text>
<polygon fill="none" stroke="black" points="3.62,-453.12 3.62,-476.12 108.12,-476.12 108.12,-453.12 3.62,-453.12"/>
<text text-anchor="start" x="40.5" y="-458.82" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="108.12,-453.12 108.12,-476.12 183.62,-476.12 183.62,-453.12 108.12,-453.12"/>
<text text-anchor="start" x="142.12" y="-458.82" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="3.62,-430.12 3.62,-453.12 108.12,-453.12 108.12,-430.12 3.62,-430.12"/>
<text text-anchor="start" x="43.5" y="-435.82" font-family="arial" font-size="14.00">+5V</text>
<polygon fill="none" stroke="black" points="108.12,-430.12 108.12,-453.12 183.62,-453.12 183.62,-430.12 108.12,-430.12"/>
<text text-anchor="start" x="142.12" y="-435.82" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="3.62,-407.12 3.62,-430.12 108.12,-430.12 108.12,-407.12 3.62,-407.12"/>
<text text-anchor="start" x="42.75" y="-412.82" font-family="arial" font-size="14.00">SCL</text>
<polygon fill="none" stroke="black" points="108.12,-407.12 108.12,-430.12 183.62,-430.12 183.62,-407.12 108.12,-407.12"/>
<text text-anchor="start" x="142.12" y="-412.82" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="3.62,-384.12 3.62,-407.12 108.12,-407.12 108.12,-384.12 3.62,-384.12"/>
<text text-anchor="start" x="42" y="-389.82" font-family="arial" font-size="14.00">SDA</text>
<polygon fill="none" stroke="black" points="108.12,-384.12 108.12,-407.12 183.62,-407.12 183.62,-384.12 108.12,-384.12"/>
<text text-anchor="start" x="142.12" y="-389.82" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="3.62,-361.12 3.62,-384.12 108.12,-384.12 108.12,-361.12 3.62,-361.12"/>
<text text-anchor="start" x="37.88" y="-366.82" font-family="arial" font-size="14.00">MISO</text>
<polygon fill="none" stroke="black" points="108.12,-361.12 108.12,-384.12 183.62,-384.12 183.62,-361.12 108.12,-361.12"/>
<text text-anchor="start" x="142.12" y="-366.82" font-family="arial" font-size="14.00">5</text>
<polygon fill="none" stroke="black" points="3.62,-338.12 3.62,-361.12 108.12,-361.12 108.12,-338.12 3.62,-338.12"/>
<text text-anchor="start" x="37.88" y="-343.82" font-family="arial" font-size="14.00">MOSI</text>
<polygon fill="none" stroke="black" points="108.12,-338.12 108.12,-361.12 183.62,-361.12 183.62,-338.12 108.12,-338.12"/>
<text text-anchor="start" x="142.12" y="-343.82" font-family="arial" font-size="14.00">6</text>
<polygon fill="none" stroke="black" points="3.62,-315.12 3.62,-338.12 108.12,-338.12 108.12,-315.12 3.62,-315.12"/>
<text text-anchor="start" x="42" y="-320.82" font-family="arial" font-size="14.00">SCK</text>
<polygon fill="none" stroke="black" points="108.12,-315.12 108.12,-338.12 183.62,-338.12 183.62,-315.12 108.12,-315.12"/>
<text text-anchor="start" x="142.12" y="-320.82" font-family="arial" font-size="14.00">7</text>
<polygon fill="none" stroke="black" points="3.62,-292.12 3.62,-315.12 108.12,-315.12 108.12,-292.12 3.62,-292.12"/>
<text text-anchor="start" x="44.25" y="-297.82" font-family="arial" font-size="14.00">N/C</text>
<polygon fill="none" stroke="black" points="108.12,-292.12 108.12,-315.12 183.62,-315.12 183.62,-292.12 108.12,-292.12"/>
<text text-anchor="start" x="142.12" y="-297.82" font-family="arial" font-size="14.00">8</text>
</g>
<!-- W1 -->
<g id="node7" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="534.5,-758.5 336.5,-758.5 336.5,-574.5 534.5,-574.5 534.5,-758.5"/>
<polygon fill="none" stroke="black" points="336.5,-735.5 336.5,-758.5 534.5,-758.5 534.5,-735.5 336.5,-735.5"/>
<text text-anchor="start" x="424.5" y="-743.3" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="336.5,-712.5 336.5,-735.5 359.5,-735.5 359.5,-712.5 336.5,-712.5"/>
<text text-anchor="start" x="340.5" y="-720.3" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="359.5,-712.5 359.5,-735.5 491.5,-735.5 491.5,-712.5 359.5,-712.5"/>
<text text-anchor="start" x="363.5" y="-720.3" font-family="arial" font-size="14.00">0.14 mm² (26 AWG)</text>
<polygon fill="none" stroke="black" points="491.5,-712.5 491.5,-735.5 534.5,-735.5 534.5,-712.5 491.5,-712.5"/>
<text text-anchor="start" x="495.5" y="-720.3" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="369" y="-699.3" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="339.5" y="-680.3" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="410" y="-680.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="469" y="-680.3" font-family="arial" font-size="14.00">X2:1:GND</text>
<polygon fill="#000000" stroke="none" points="336.5,-672.5 336.5,-674.5 534.5,-674.5 534.5,-672.5 336.5,-672.5"/>
<polygon fill="#000000" stroke="none" points="336.5,-670.5 336.5,-672.5 534.5,-672.5 534.5,-670.5 336.5,-670.5"/>
<polygon fill="#000000" stroke="none" points="336.5,-668.5 336.5,-670.5 534.5,-670.5 534.5,-668.5 336.5,-668.5"/>
<text text-anchor="start" x="342.5" y="-655.3" font-family="arial" font-size="14.00">X1:2:+5V</text>
<text text-anchor="start" x="409" y="-655.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="472" y="-655.3" font-family="arial" font-size="14.00">X2:2:+5V</text>
<polygon fill="#000000" stroke="none" points="336.5,-647.5 336.5,-649.5 534.5,-649.5 534.5,-647.5 336.5,-647.5"/>
<polygon fill="#ff0000" stroke="none" points="336.5,-645.5 336.5,-647.5 534.5,-647.5 534.5,-645.5 336.5,-645.5"/>
<polygon fill="#000000" stroke="none" points="336.5,-643.5 336.5,-645.5 534.5,-645.5 534.5,-643.5 336.5,-643.5"/>
<text text-anchor="start" x="342" y="-630.3" font-family="arial" font-size="14.00">X1:3:SCL</text>
<text text-anchor="start" x="410" y="-630.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="471.5" y="-630.3" font-family="arial" font-size="14.00">X2:3:SCL</text>
<polygon fill="#000000" stroke="none" points="336.5,-622.5 336.5,-624.5 534.5,-624.5 534.5,-622.5 336.5,-622.5"/>
<polygon fill="#ffff00" stroke="none" points="336.5,-620.5 336.5,-622.5 534.5,-622.5 534.5,-620.5 336.5,-620.5"/>
<polygon fill="#000000" stroke="none" points="336.5,-618.5 336.5,-620.5 534.5,-620.5 534.5,-618.5 336.5,-618.5"/>
<text text-anchor="start" x="341" y="-605.3" font-family="arial" font-size="14.00">X1:4:SDA</text>
<text text-anchor="start" x="408.5" y="-605.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="470.5" y="-605.3" font-family="arial" font-size="14.00">X2:4:SDA</text>
<polygon fill="#000000" stroke="none" points="336.5,-597.5 336.5,-599.5 534.5,-599.5 534.5,-597.5 336.5,-597.5"/>
<polygon fill="#00ff00" stroke="none" points="336.5,-595.5 336.5,-597.5 534.5,-597.5 534.5,-595.5 336.5,-595.5"/>
<polygon fill="#000000" stroke="none" points="336.5,-593.5 336.5,-595.5 534.5,-595.5 534.5,-593.5 336.5,-593.5"/>
<text text-anchor="start" x="369" y="-580.3" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="530.12,-766.62 334.38,-766.62 334.38,-581.12 530.12,-581.12 530.12,-766.62"/>
<polygon fill="none" stroke="black" points="334.38,-742.88 334.38,-766.62 530.12,-766.62 530.12,-742.88 334.38,-742.88"/>
<text text-anchor="start" x="421.75" y="-749.33" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="334.38,-719.12 334.38,-742.88 356.62,-742.88 356.62,-719.12 334.38,-719.12"/>
<text text-anchor="start" x="338.38" y="-725.58" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="356.62,-719.12 356.62,-742.88 487.62,-742.88 487.62,-719.12 356.62,-719.12"/>
<text text-anchor="start" x="360.62" y="-725.58" font-family="arial" font-size="14.00">0.14 mm² (26 AWG)</text>
<polygon fill="none" stroke="black" points="487.62,-719.12 487.62,-742.88 530.12,-742.88 530.12,-719.12 487.62,-719.12"/>
<text text-anchor="start" x="491.62" y="-725.58" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="366.46" y="-703.83" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="337.21" y="-684.83" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="406.38" y="-684.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="465.04" y="-684.83" font-family="arial" font-size="14.00">X2:1:GND</text>
<polygon fill="#000000" stroke="none" points="334.38,-679.12 334.38,-681.12 530.12,-681.12 530.12,-679.12 334.38,-679.12"/>
<polygon fill="#000000" stroke="none" points="334.38,-677.12 334.38,-679.12 530.12,-679.12 530.12,-677.12 334.38,-677.12"/>
<polygon fill="#000000" stroke="none" points="334.38,-675.12 334.38,-677.12 530.12,-677.12 530.12,-675.12 334.38,-675.12"/>
<text text-anchor="start" x="340.21" y="-659.83" font-family="arial" font-size="14.00">X1:2:+5V</text>
<text text-anchor="start" x="405.62" y="-659.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="468.04" y="-659.83" font-family="arial" font-size="14.00">X2:2:+5V</text>
<polygon fill="#000000" stroke="none" points="334.38,-654.12 334.38,-656.12 530.12,-656.12 530.12,-654.12 334.38,-654.12"/>
<polygon fill="#ff0000" stroke="none" points="334.38,-652.12 334.38,-654.12 530.12,-654.12 530.12,-652.12 334.38,-652.12"/>
<polygon fill="#000000" stroke="none" points="334.38,-650.12 334.38,-652.12 530.12,-652.12 530.12,-650.12 334.38,-650.12"/>
<text text-anchor="start" x="339.46" y="-634.83" font-family="arial" font-size="14.00">X1:3:SCL</text>
<text text-anchor="start" x="406.38" y="-634.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="467.29" y="-634.83" font-family="arial" font-size="14.00">X2:3:SCL</text>
<polygon fill="#000000" stroke="none" points="334.38,-629.12 334.38,-631.12 530.12,-631.12 530.12,-629.12 334.38,-629.12"/>
<polygon fill="#ffff00" stroke="none" points="334.38,-627.12 334.38,-629.12 530.12,-629.12 530.12,-627.12 334.38,-627.12"/>
<polygon fill="#000000" stroke="none" points="334.38,-625.12 334.38,-627.12 530.12,-627.12 530.12,-625.12 334.38,-625.12"/>
<text text-anchor="start" x="338.71" y="-609.83" font-family="arial" font-size="14.00">X1:4:SDA</text>
<text text-anchor="start" x="404.88" y="-609.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="466.54" y="-609.83" font-family="arial" font-size="14.00">X2:4:SDA</text>
<polygon fill="#000000" stroke="none" points="334.38,-604.12 334.38,-606.12 530.12,-606.12 530.12,-604.12 334.38,-604.12"/>
<polygon fill="#00ff00" stroke="none" points="334.38,-602.12 334.38,-604.12 530.12,-604.12 530.12,-602.12 334.38,-602.12"/>
<polygon fill="#000000" stroke="none" points="334.38,-600.12 334.38,-602.12 530.12,-602.12 530.12,-600.12 334.38,-600.12"/>
<text text-anchor="start" x="366.46" y="-584.83" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge1" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-458.5C303.17,-461.21 222.57,-672.21 335.5,-669.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-460.5C301.3,-460.5 220.7,-671.5 335.5,-671.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-462.5C299.43,-459.79 218.83,-670.79 335.5,-673.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-462.88C301.93,-465.6 219.68,-678.6 333.25,-675.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-464.88C300.06,-464.88 217.82,-677.88 333.25,-677.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-466.87C298.19,-464.15 215.95,-677.15 333.25,-679.87"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge3" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-435.5C302.45,-438.21 223.29,-647.21 335.5,-644.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M186.5,-437.5C300.58,-437.5 221.42,-646.5 335.5,-646.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-439.5C298.71,-436.79 219.55,-645.79 335.5,-648.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-439.88C301.2,-442.59 220.41,-653.59 333.25,-650.88"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M184.62,-441.87C299.33,-441.87 218.54,-652.88 333.25,-652.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-443.87C297.46,-441.16 216.68,-652.16 333.25,-654.87"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge5" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-412.5C301.73,-415.2 224.02,-622.2 335.5,-619.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M186.5,-414.5C299.86,-414.5 222.14,-621.5 335.5,-621.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-416.5C297.98,-413.8 220.27,-620.8 335.5,-623.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-416.88C300.48,-419.58 221.14,-628.58 333.25,-625.88"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M184.62,-418.88C298.61,-418.88 219.27,-627.88 333.25,-627.87"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-420.87C296.74,-418.17 217.4,-627.17 333.25,-629.87"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge7" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-388.5C301.37,-391.2 224.38,-597.2 335.5,-594.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M186.5,-390.5C299.49,-390.5 222.51,-596.5 335.5,-596.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-392.5C297.62,-389.8 220.63,-595.8 335.5,-598.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-393.88C299.75,-396.58 221.86,-603.58 333.25,-600.88"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M184.62,-395.88C297.88,-395.87 219.99,-602.88 333.25,-602.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-397.87C296.01,-395.17 218.12,-602.17 333.25,-604.87"/>
</g>
<!-- W2 -->
<g id="node8" class="node">
<title>W2</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="534.5,-550.5 336.5,-550.5 336.5,-366.5 534.5,-366.5 534.5,-550.5"/>
<polygon fill="none" stroke="black" points="336.5,-527.5 336.5,-550.5 534.5,-550.5 534.5,-527.5 336.5,-527.5"/>
<text text-anchor="start" x="424.5" y="-535.3" font-family="arial" font-size="14.00">W2</text>
<polygon fill="none" stroke="black" points="336.5,-504.5 336.5,-527.5 359.5,-527.5 359.5,-504.5 336.5,-504.5"/>
<text text-anchor="start" x="340.5" y="-512.3" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="359.5,-504.5 359.5,-527.5 491.5,-527.5 491.5,-504.5 359.5,-504.5"/>
<text text-anchor="start" x="363.5" y="-512.3" font-family="arial" font-size="14.00">0.14 mm² (26 AWG)</text>
<polygon fill="none" stroke="black" points="491.5,-504.5 491.5,-527.5 534.5,-527.5 534.5,-504.5 491.5,-504.5"/>
<text text-anchor="start" x="495.5" y="-512.3" font-family="arial" font-size="14.00">0.4 m</text>
<text text-anchor="start" x="369" y="-491.3" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="339.5" y="-472.3" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="410" y="-472.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="469" y="-472.3" font-family="arial" font-size="14.00">X3:1:GND</text>
<polygon fill="#000000" stroke="none" points="336.5,-464.5 336.5,-466.5 534.5,-466.5 534.5,-464.5 336.5,-464.5"/>
<polygon fill="#000000" stroke="none" points="336.5,-462.5 336.5,-464.5 534.5,-464.5 534.5,-462.5 336.5,-462.5"/>
<polygon fill="#000000" stroke="none" points="336.5,-460.5 336.5,-462.5 534.5,-462.5 534.5,-460.5 336.5,-460.5"/>
<text text-anchor="start" x="342.5" y="-447.3" font-family="arial" font-size="14.00">X1:2:+5V</text>
<text text-anchor="start" x="409" y="-447.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="472" y="-447.3" font-family="arial" font-size="14.00">X3:2:+5V</text>
<polygon fill="#000000" stroke="none" points="336.5,-439.5 336.5,-441.5 534.5,-441.5 534.5,-439.5 336.5,-439.5"/>
<polygon fill="#ff0000" stroke="none" points="336.5,-437.5 336.5,-439.5 534.5,-439.5 534.5,-437.5 336.5,-437.5"/>
<polygon fill="#000000" stroke="none" points="336.5,-435.5 336.5,-437.5 534.5,-437.5 534.5,-435.5 336.5,-435.5"/>
<text text-anchor="start" x="342" y="-422.3" font-family="arial" font-size="14.00">X1:3:SCL</text>
<text text-anchor="start" x="410" y="-422.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="471.5" y="-422.3" font-family="arial" font-size="14.00">X3:3:SCL</text>
<polygon fill="#000000" stroke="none" points="336.5,-414.5 336.5,-416.5 534.5,-416.5 534.5,-414.5 336.5,-414.5"/>
<polygon fill="#ffff00" stroke="none" points="336.5,-412.5 336.5,-414.5 534.5,-414.5 534.5,-412.5 336.5,-412.5"/>
<polygon fill="#000000" stroke="none" points="336.5,-410.5 336.5,-412.5 534.5,-412.5 534.5,-410.5 336.5,-410.5"/>
<text text-anchor="start" x="341" y="-397.3" font-family="arial" font-size="14.00">X1:4:SDA</text>
<text text-anchor="start" x="408.5" y="-397.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="470.5" y="-397.3" font-family="arial" font-size="14.00">X3:4:SDA</text>
<polygon fill="#000000" stroke="none" points="336.5,-389.5 336.5,-391.5 534.5,-391.5 534.5,-389.5 336.5,-389.5"/>
<polygon fill="#00ff00" stroke="none" points="336.5,-387.5 336.5,-389.5 534.5,-389.5 534.5,-387.5 336.5,-387.5"/>
<polygon fill="#000000" stroke="none" points="336.5,-385.5 336.5,-387.5 534.5,-387.5 534.5,-385.5 336.5,-385.5"/>
<text text-anchor="start" x="369" y="-372.3" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="530.12,-556.62 334.38,-556.62 334.38,-371.12 530.12,-371.12 530.12,-556.62"/>
<polygon fill="none" stroke="black" points="334.38,-532.88 334.38,-556.62 530.12,-556.62 530.12,-532.88 334.38,-532.88"/>
<text text-anchor="start" x="421.75" y="-539.33" font-family="arial" font-size="14.00">W2</text>
<polygon fill="none" stroke="black" points="334.38,-509.12 334.38,-532.88 356.62,-532.88 356.62,-509.12 334.38,-509.12"/>
<text text-anchor="start" x="338.38" y="-515.58" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="356.62,-509.12 356.62,-532.88 487.62,-532.88 487.62,-509.12 356.62,-509.12"/>
<text text-anchor="start" x="360.62" y="-515.58" font-family="arial" font-size="14.00">0.14 mm² (26 AWG)</text>
<polygon fill="none" stroke="black" points="487.62,-509.12 487.62,-532.88 530.12,-532.88 530.12,-509.12 487.62,-509.12"/>
<text text-anchor="start" x="491.62" y="-515.58" font-family="arial" font-size="14.00">0.4 m</text>
<text text-anchor="start" x="366.46" y="-493.82" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="337.21" y="-474.82" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="406.38" y="-474.82" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="465.04" y="-474.82" font-family="arial" font-size="14.00">X3:1:GND</text>
<polygon fill="#000000" stroke="none" points="334.38,-469.12 334.38,-471.12 530.12,-471.12 530.12,-469.12 334.38,-469.12"/>
<polygon fill="#000000" stroke="none" points="334.38,-467.12 334.38,-469.12 530.12,-469.12 530.12,-467.12 334.38,-467.12"/>
<polygon fill="#000000" stroke="none" points="334.38,-465.12 334.38,-467.12 530.12,-467.12 530.12,-465.12 334.38,-465.12"/>
<text text-anchor="start" x="340.21" y="-449.82" font-family="arial" font-size="14.00">X1:2:+5V</text>
<text text-anchor="start" x="405.62" y="-449.82" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="468.04" y="-449.82" font-family="arial" font-size="14.00">X3:2:+5V</text>
<polygon fill="#000000" stroke="none" points="334.38,-444.12 334.38,-446.12 530.12,-446.12 530.12,-444.12 334.38,-444.12"/>
<polygon fill="#ff0000" stroke="none" points="334.38,-442.12 334.38,-444.12 530.12,-444.12 530.12,-442.12 334.38,-442.12"/>
<polygon fill="#000000" stroke="none" points="334.38,-440.12 334.38,-442.12 530.12,-442.12 530.12,-440.12 334.38,-440.12"/>
<text text-anchor="start" x="339.46" y="-424.82" font-family="arial" font-size="14.00">X1:3:SCL</text>
<text text-anchor="start" x="406.38" y="-424.82" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="467.29" y="-424.82" font-family="arial" font-size="14.00">X3:3:SCL</text>
<polygon fill="#000000" stroke="none" points="334.38,-419.12 334.38,-421.12 530.12,-421.12 530.12,-419.12 334.38,-419.12"/>
<polygon fill="#ffff00" stroke="none" points="334.38,-417.12 334.38,-419.12 530.12,-419.12 530.12,-417.12 334.38,-417.12"/>
<polygon fill="#000000" stroke="none" points="334.38,-415.12 334.38,-417.12 530.12,-417.12 530.12,-415.12 334.38,-415.12"/>
<text text-anchor="start" x="338.71" y="-399.82" font-family="arial" font-size="14.00">X1:4:SDA</text>
<text text-anchor="start" x="404.88" y="-399.82" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="466.54" y="-399.82" font-family="arial" font-size="14.00">X3:4:SDA</text>
<polygon fill="#000000" stroke="none" points="334.38,-394.12 334.38,-396.12 530.12,-396.12 530.12,-394.12 334.38,-394.12"/>
<polygon fill="#00ff00" stroke="none" points="334.38,-392.12 334.38,-394.12 530.12,-394.12 530.12,-392.12 334.38,-392.12"/>
<polygon fill="#000000" stroke="none" points="334.38,-390.12 334.38,-392.12 530.12,-392.12 530.12,-390.12 334.38,-390.12"/>
<text text-anchor="start" x="366.46" y="-374.82" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X1&#45;&#45;W2 -->
<g id="edge9" class="edge">
<title>X1:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-458.5C253.09,-458.53 269.62,-461.53 335.5,-461.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-460.5C252.74,-460.5 269.26,-463.5 335.5,-463.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-462.5C252.38,-462.47 268.91,-465.47 335.5,-465.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-462.88C251.05,-462.91 267.54,-465.91 333.25,-465.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-464.88C250.69,-464.88 267.18,-467.88 333.25,-467.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-466.87C250.34,-466.84 266.82,-469.84 333.25,-469.87"/>
</g>
<!-- X1&#45;&#45;W2 -->
<g id="edge11" class="edge">
<title>X1:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-435.5C252.84,-435.5 269.4,-436.5 335.5,-436.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M186.5,-437.5C252.72,-437.5 269.28,-438.5 335.5,-438.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-439.5C252.6,-439.5 269.16,-440.5 335.5,-440.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-439.88C250.8,-439.88 267.31,-440.88 333.25,-440.88"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M184.62,-441.87C250.68,-441.88 267.19,-442.88 333.25,-442.87"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-443.87C250.56,-443.87 267.07,-444.87 333.25,-444.87"/>
</g>
<!-- X1&#45;&#45;W2 -->
<g id="edge13" class="edge">
<title>X1:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-412.5C252.6,-412.5 269.16,-411.5 335.5,-411.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M186.5,-414.5C252.72,-414.5 269.28,-413.5 335.5,-413.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-416.5C252.84,-416.5 269.4,-415.5 335.5,-415.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-416.88C250.56,-416.88 267.07,-415.88 333.25,-415.88"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M184.62,-418.87C250.68,-418.88 267.19,-417.88 333.25,-417.87"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-420.87C250.8,-420.87 267.31,-419.87 333.25,-419.87"/>
</g>
<!-- X1&#45;&#45;W2 -->
<g id="edge15" class="edge">
<title>X1:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-388.5C252.49,-388.51 269.03,-386.51 335.5,-386.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M186.5,-390.5C252.73,-390.5 269.27,-388.5 335.5,-388.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-392.5C252.97,-392.49 269.51,-390.49 335.5,-390.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-393.88C250.34,-393.91 266.82,-390.91 333.25,-390.88"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M184.62,-395.88C250.69,-395.88 267.18,-392.88 333.25,-392.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-397.87C251.05,-397.84 267.54,-394.84 333.25,-394.87"/>
</g>
<!-- W3 -->
<g id="node9" class="node">
<title>W3</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="538,-342.5 333,-342.5 333,-158.5 538,-158.5 538,-342.5"/>
<polygon fill="none" stroke="black" points="333.5,-319.5 333.5,-342.5 538.5,-342.5 538.5,-319.5 333.5,-319.5"/>
<text text-anchor="start" x="425" y="-327.3" font-family="arial" font-size="14.00">W3</text>
<polygon fill="none" stroke="black" points="333.5,-296.5 333.5,-319.5 359.5,-319.5 359.5,-296.5 333.5,-296.5"/>
<text text-anchor="start" x="339" y="-304.3" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="359.5,-296.5 359.5,-319.5 493.5,-319.5 493.5,-296.5 359.5,-296.5"/>
<text text-anchor="start" x="364.5" y="-304.3" font-family="arial" font-size="14.00">0.14 mm² (26 AWG)</text>
<polygon fill="none" stroke="black" points="493.5,-296.5 493.5,-319.5 538.5,-319.5 538.5,-296.5 493.5,-296.5"/>
<text text-anchor="start" x="498.5" y="-304.3" font-family="arial" font-size="14.00">0.3 m</text>
<text text-anchor="start" x="367.5" y="-283.3" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="338" y="-264.3" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="410" y="-264.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="471" y="-264.3" font-family="arial" font-size="14.00">X4:1:GND</text>
<polygon fill="#000000" stroke="none" points="333.5,-256.5 333.5,-258.5 538.5,-258.5 538.5,-256.5 333.5,-256.5"/>
<polygon fill="#000000" stroke="none" points="333.5,-254.5 333.5,-256.5 538.5,-256.5 538.5,-254.5 333.5,-254.5"/>
<polygon fill="#000000" stroke="none" points="333.5,-252.5 333.5,-254.5 538.5,-254.5 538.5,-252.5 333.5,-252.5"/>
<text text-anchor="start" x="335.5" y="-239.3" font-family="arial" font-size="14.00">X1:5:MISO</text>
<text text-anchor="start" x="409.5" y="-239.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
<text text-anchor="start" x="468.5" y="-239.3" font-family="arial" font-size="14.00">X4:3:MISO</text>
<polygon fill="#000000" stroke="none" points="333.5,-231.5 333.5,-233.5 538.5,-233.5 538.5,-231.5 333.5,-231.5"/>
<polygon fill="#0066ff" stroke="none" points="333.5,-229.5 333.5,-231.5 538.5,-231.5 538.5,-229.5 333.5,-229.5"/>
<polygon fill="#000000" stroke="none" points="333.5,-227.5 333.5,-229.5 538.5,-229.5 538.5,-227.5 333.5,-227.5"/>
<text text-anchor="start" x="335.5" y="-214.3" font-family="arial" font-size="14.00">X1:6:MOSI</text>
<text text-anchor="start" x="407.5" y="-214.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;OG &#160;&#160;&#160;</text>
<text text-anchor="start" x="468.5" y="-214.3" font-family="arial" font-size="14.00">X4:4:MOSI</text>
<polygon fill="#000000" stroke="none" points="333.5,-206.5 333.5,-208.5 538.5,-208.5 538.5,-206.5 333.5,-206.5"/>
<polygon fill="#ff8000" stroke="none" points="333.5,-204.5 333.5,-206.5 538.5,-206.5 538.5,-204.5 333.5,-204.5"/>
<polygon fill="#000000" stroke="none" points="333.5,-202.5 333.5,-204.5 538.5,-204.5 538.5,-202.5 333.5,-202.5"/>
<text text-anchor="start" x="339.5" y="-189.3" font-family="arial" font-size="14.00">X1:7:SCK</text>
<text text-anchor="start" x="410" y="-189.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;VT &#160;&#160;&#160;</text>
<text text-anchor="start" x="472.5" y="-189.3" font-family="arial" font-size="14.00">X4:5:SCK</text>
<polygon fill="#000000" stroke="none" points="333.5,-181.5 333.5,-183.5 538.5,-183.5 538.5,-181.5 333.5,-181.5"/>
<polygon fill="#8000ff" stroke="none" points="333.5,-179.5 333.5,-181.5 538.5,-181.5 538.5,-179.5 333.5,-179.5"/>
<polygon fill="#000000" stroke="none" points="333.5,-177.5 333.5,-179.5 538.5,-179.5 538.5,-177.5 333.5,-177.5"/>
<text text-anchor="start" x="367.5" y="-164.3" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="533.25,-346.62 331.25,-346.62 331.25,-161.12 533.25,-161.12 533.25,-346.62"/>
<polygon fill="none" stroke="black" points="331.25,-322.88 331.25,-346.62 533.25,-346.62 533.25,-322.88 331.25,-322.88"/>
<text text-anchor="start" x="421.75" y="-329.32" font-family="arial" font-size="14.00">W3</text>
<polygon fill="none" stroke="black" points="331.25,-299.12 331.25,-322.88 355.58,-322.88 355.58,-299.12 331.25,-299.12"/>
<text text-anchor="start" x="336.29" y="-305.57" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="355.58,-299.12 355.58,-322.88 488.67,-322.88 488.67,-299.12 355.58,-299.12"/>
<text text-anchor="start" x="360.62" y="-305.57" font-family="arial" font-size="14.00">0.14 mm² (26 AWG)</text>
<polygon fill="none" stroke="black" points="488.67,-299.12 488.67,-322.88 533.25,-322.88 533.25,-299.12 488.67,-299.12"/>
<text text-anchor="start" x="493.71" y="-305.57" font-family="arial" font-size="14.00">0.3 m</text>
<text text-anchor="start" x="364.88" y="-283.82" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="335.62" y="-264.82" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="406.38" y="-264.82" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="466.62" y="-264.82" font-family="arial" font-size="14.00">X4:1:GND</text>
<polygon fill="#000000" stroke="none" points="331.25,-259.12 331.25,-261.12 533.25,-261.12 533.25,-259.12 331.25,-259.12"/>
<polygon fill="#000000" stroke="none" points="331.25,-257.12 331.25,-259.12 533.25,-259.12 533.25,-257.12 331.25,-257.12"/>
<polygon fill="#000000" stroke="none" points="331.25,-255.12 331.25,-257.12 533.25,-257.12 533.25,-255.12 331.25,-255.12"/>
<text text-anchor="start" x="333" y="-239.82" font-family="arial" font-size="14.00">X1:5:MISO</text>
<text text-anchor="start" x="406" y="-239.82" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
<text text-anchor="start" x="464" y="-239.82" font-family="arial" font-size="14.00">X4:3:MISO</text>
<polygon fill="#000000" stroke="none" points="331.25,-234.12 331.25,-236.12 533.25,-236.12 533.25,-234.12 331.25,-234.12"/>
<polygon fill="#0066ff" stroke="none" points="331.25,-232.12 331.25,-234.12 533.25,-234.12 533.25,-232.12 331.25,-232.12"/>
<polygon fill="#000000" stroke="none" points="331.25,-230.12 331.25,-232.12 533.25,-232.12 533.25,-230.12 331.25,-230.12"/>
<text text-anchor="start" x="333" y="-214.82" font-family="arial" font-size="14.00">X1:6:MOSI</text>
<text text-anchor="start" x="404.12" y="-214.82" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;OG &#160;&#160;&#160;</text>
<text text-anchor="start" x="464" y="-214.82" font-family="arial" font-size="14.00">X4:4:MOSI</text>
<polygon fill="#000000" stroke="none" points="331.25,-209.12 331.25,-211.12 533.25,-211.12 533.25,-209.12 331.25,-209.12"/>
<polygon fill="#ff8000" stroke="none" points="331.25,-207.12 331.25,-209.12 533.25,-209.12 533.25,-207.12 331.25,-207.12"/>
<polygon fill="#000000" stroke="none" points="331.25,-205.12 331.25,-207.12 533.25,-207.12 533.25,-205.12 331.25,-205.12"/>
<text text-anchor="start" x="337.12" y="-189.82" font-family="arial" font-size="14.00">X1:7:SCK</text>
<text text-anchor="start" x="406.75" y="-189.82" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;VT &#160;&#160;&#160;</text>
<text text-anchor="start" x="468.12" y="-189.82" font-family="arial" font-size="14.00">X4:5:SCK</text>
<polygon fill="#000000" stroke="none" points="331.25,-184.12 331.25,-186.12 533.25,-186.12 533.25,-184.12 331.25,-184.12"/>
<polygon fill="#8000ff" stroke="none" points="331.25,-182.12 331.25,-184.12 533.25,-184.12 533.25,-182.12 331.25,-182.12"/>
<polygon fill="#000000" stroke="none" points="331.25,-180.12 331.25,-182.12 533.25,-182.12 533.25,-180.12 331.25,-180.12"/>
<text text-anchor="start" x="364.88" y="-164.82" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X1&#45;&#45;W3 -->
<g id="edge17" class="edge">
<title>X1:e&#45;&#45;W3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-458.5C296.61,-461.21 219.14,-256.21 333,-253.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-460.5C298.49,-460.5 221.01,-255.5 333,-255.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-462.5C300.36,-459.79 222.89,-254.79 333,-257.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-462.88C295.5,-465.59 216.64,-258.59 331.25,-255.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-464.87C297.37,-464.88 218.51,-257.88 331.25,-257.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-466.87C299.24,-464.16 220.38,-257.16 331.25,-259.87"/>
</g>
<!-- X1&#45;&#45;W3 -->
<g id="edge19" class="edge">
<title>X1:e&#45;&#45;W3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-365.5C273.7,-367.95 241.91,-230.95 333,-228.5"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M186.5,-367.5C275.65,-367.5 243.85,-230.5 333,-230.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-369.5C277.59,-367.05 245.8,-230.05 333,-232.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-370.88C272.78,-373.34 239.2,-233.34 331.25,-230.88"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M184.62,-372.88C274.73,-372.87 241.15,-232.88 331.25,-232.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-374.87C276.67,-372.41 243.09,-232.41 331.25,-234.87"/>
</g>
<!-- X1&#45;&#45;W3 -->
<g id="edge21" class="edge">
<title>X1:e&#45;&#45;W3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-342.5C274.31,-344.96 241.3,-205.96 333,-203.5"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M186.5,-344.5C276.25,-344.5 243.25,-205.5 333,-205.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-346.5C278.2,-344.04 245.19,-205.04 333,-207.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-347.88C273.4,-350.35 238.59,-208.35 331.25,-205.88"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M184.62,-349.88C275.34,-349.87 240.53,-207.88 331.25,-207.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-351.87C277.29,-349.4 242.47,-207.4 331.25,-209.87"/>
</g>
<!-- X1&#45;&#45;W3 -->
<g id="edge23" class="edge">
<title>X1:e&#45;&#45;W3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-319.5C274.93,-321.97 240.69,-180.97 333,-178.5"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M186.5,-321.5C276.87,-321.5 242.63,-180.5 333,-180.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-323.5C278.81,-321.03 244.57,-180.03 333,-182.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-324.88C274.02,-327.36 237.97,-183.36 331.25,-180.88"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M184.62,-326.88C275.96,-326.87 239.91,-182.88 331.25,-182.87"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-328.87C277.9,-326.39 241.85,-182.39 331.25,-184.87"/>
</g>
<!-- X2 -->
<g id="node2" class="node">
<title>X2</title>
<polygon fill="#ffffff" stroke="black" points="864,-726.5 682,-726.5 682,-588.5 864,-588.5 864,-726.5"/>
<polygon fill="none" stroke="black" points="682,-703.5 682,-726.5 864,-726.5 864,-703.5 682,-703.5"/>
<text text-anchor="start" x="764.5" y="-711.3" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="682,-680.5 682,-703.5 775,-703.5 775,-680.5 682,-680.5"/>
<text text-anchor="start" x="686" y="-688.3" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="775,-680.5 775,-703.5 825,-703.5 825,-680.5 775,-680.5"/>
<text text-anchor="start" x="779" y="-688.3" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="825,-680.5 825,-703.5 864,-703.5 864,-680.5 825,-680.5"/>
<text text-anchor="start" x="829" y="-688.3" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="682,-657.5 682,-680.5 762,-680.5 762,-657.5 682,-657.5"/>
<text text-anchor="start" x="718" y="-665.3" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="762,-657.5 762,-680.5 864,-680.5 864,-657.5 762,-657.5"/>
<text text-anchor="start" x="797.5" y="-665.3" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="682,-634.5 682,-657.5 762,-657.5 762,-634.5 682,-634.5"/>
<text text-anchor="start" x="718" y="-642.3" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="762,-634.5 762,-657.5 864,-657.5 864,-634.5 762,-634.5"/>
<text text-anchor="start" x="800.5" y="-642.3" font-family="arial" font-size="14.00">+5V</text>
<polygon fill="none" stroke="black" points="682,-611.5 682,-634.5 762,-634.5 762,-611.5 682,-611.5"/>
<text text-anchor="start" x="718" y="-619.3" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="762,-611.5 762,-634.5 864,-634.5 864,-611.5 762,-611.5"/>
<text text-anchor="start" x="799.5" y="-619.3" font-family="arial" font-size="14.00">SCL</text>
<polygon fill="none" stroke="black" points="682,-588.5 682,-611.5 762,-611.5 762,-588.5 682,-588.5"/>
<text text-anchor="start" x="718" y="-596.3" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="762,-588.5 762,-611.5 864,-611.5 864,-588.5 762,-588.5"/>
<text text-anchor="start" x="799" y="-596.3" font-family="arial" font-size="14.00">SDA</text>
<polygon fill="#ffffff" stroke="black" points="857.25,-733.62 677.25,-733.62 677.25,-594.12 857.25,-594.12 857.25,-733.62"/>
<polygon fill="none" stroke="black" points="677.25,-709.88 677.25,-733.62 857.25,-733.62 857.25,-709.88 677.25,-709.88"/>
<text text-anchor="start" x="759" y="-716.33" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="677.25,-686.12 677.25,-709.88 770,-709.88 770,-686.12 677.25,-686.12"/>
<text text-anchor="start" x="681.25" y="-692.58" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="770,-686.12 770,-709.88 819.25,-709.88 819.25,-686.12 770,-686.12"/>
<text text-anchor="start" x="774" y="-692.58" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="819.25,-686.12 819.25,-709.88 857.25,-709.88 857.25,-686.12 819.25,-686.12"/>
<text text-anchor="start" x="823.25" y="-692.58" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="677.25,-663.12 677.25,-686.12 755.75,-686.12 755.75,-663.12 677.25,-663.12"/>
<text text-anchor="start" x="712.75" y="-668.83" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="755.75,-663.12 755.75,-686.12 857.25,-686.12 857.25,-663.12 755.75,-663.12"/>
<text text-anchor="start" x="791.12" y="-668.83" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="677.25,-640.12 677.25,-663.12 755.75,-663.12 755.75,-640.12 677.25,-640.12"/>
<text text-anchor="start" x="712.75" y="-645.83" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="755.75,-640.12 755.75,-663.12 857.25,-663.12 857.25,-640.12 755.75,-640.12"/>
<text text-anchor="start" x="794.12" y="-645.83" font-family="arial" font-size="14.00">+5V</text>
<polygon fill="none" stroke="black" points="677.25,-617.12 677.25,-640.12 755.75,-640.12 755.75,-617.12 677.25,-617.12"/>
<text text-anchor="start" x="712.75" y="-622.83" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="755.75,-617.12 755.75,-640.12 857.25,-640.12 857.25,-617.12 755.75,-617.12"/>
<text text-anchor="start" x="793.38" y="-622.83" font-family="arial" font-size="14.00">SCL</text>
<polygon fill="none" stroke="black" points="677.25,-594.12 677.25,-617.12 755.75,-617.12 755.75,-594.12 677.25,-594.12"/>
<text text-anchor="start" x="712.75" y="-599.83" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="755.75,-594.12 755.75,-617.12 857.25,-617.12 857.25,-594.12 755.75,-594.12"/>
<text text-anchor="start" x="792.62" y="-599.83" font-family="arial" font-size="14.00">SDA</text>
</g>
<!-- X3 -->
<g id="node3" class="node">
<title>X3</title>
<polygon fill="#ffffff" stroke="black" points="864,-518.5 682,-518.5 682,-380.5 864,-380.5 864,-518.5"/>
<polygon fill="none" stroke="black" points="682,-495.5 682,-518.5 864,-518.5 864,-495.5 682,-495.5"/>
<text text-anchor="start" x="764.5" y="-503.3" font-family="arial" font-size="14.00">X3</text>
<polygon fill="none" stroke="black" points="682,-472.5 682,-495.5 775,-495.5 775,-472.5 682,-472.5"/>
<text text-anchor="start" x="686" y="-480.3" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="775,-472.5 775,-495.5 825,-495.5 825,-472.5 775,-472.5"/>
<text text-anchor="start" x="779" y="-480.3" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="825,-472.5 825,-495.5 864,-495.5 864,-472.5 825,-472.5"/>
<text text-anchor="start" x="829" y="-480.3" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="682,-449.5 682,-472.5 762,-472.5 762,-449.5 682,-449.5"/>
<text text-anchor="start" x="718" y="-457.3" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="762,-449.5 762,-472.5 864,-472.5 864,-449.5 762,-449.5"/>
<text text-anchor="start" x="797.5" y="-457.3" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="682,-426.5 682,-449.5 762,-449.5 762,-426.5 682,-426.5"/>
<text text-anchor="start" x="718" y="-434.3" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="762,-426.5 762,-449.5 864,-449.5 864,-426.5 762,-426.5"/>
<text text-anchor="start" x="800.5" y="-434.3" font-family="arial" font-size="14.00">+5V</text>
<polygon fill="none" stroke="black" points="682,-403.5 682,-426.5 762,-426.5 762,-403.5 682,-403.5"/>
<text text-anchor="start" x="718" y="-411.3" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="762,-403.5 762,-426.5 864,-426.5 864,-403.5 762,-403.5"/>
<text text-anchor="start" x="799.5" y="-411.3" font-family="arial" font-size="14.00">SCL</text>
<polygon fill="none" stroke="black" points="682,-380.5 682,-403.5 762,-403.5 762,-380.5 682,-380.5"/>
<text text-anchor="start" x="718" y="-388.3" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="762,-380.5 762,-403.5 864,-403.5 864,-380.5 762,-380.5"/>
<text text-anchor="start" x="799" y="-388.3" font-family="arial" font-size="14.00">SDA</text>
<polygon fill="#ffffff" stroke="black" points="857.25,-523.62 677.25,-523.62 677.25,-384.12 857.25,-384.12 857.25,-523.62"/>
<polygon fill="none" stroke="black" points="677.25,-499.88 677.25,-523.62 857.25,-523.62 857.25,-499.88 677.25,-499.88"/>
<text text-anchor="start" x="759" y="-506.32" font-family="arial" font-size="14.00">X3</text>
<polygon fill="none" stroke="black" points="677.25,-476.12 677.25,-499.88 770,-499.88 770,-476.12 677.25,-476.12"/>
<text text-anchor="start" x="681.25" y="-482.57" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="770,-476.12 770,-499.88 819.25,-499.88 819.25,-476.12 770,-476.12"/>
<text text-anchor="start" x="774" y="-482.57" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="819.25,-476.12 819.25,-499.88 857.25,-499.88 857.25,-476.12 819.25,-476.12"/>
<text text-anchor="start" x="823.25" y="-482.57" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="677.25,-453.12 677.25,-476.12 755.75,-476.12 755.75,-453.12 677.25,-453.12"/>
<text text-anchor="start" x="712.75" y="-458.82" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="755.75,-453.12 755.75,-476.12 857.25,-476.12 857.25,-453.12 755.75,-453.12"/>
<text text-anchor="start" x="791.12" y="-458.82" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="677.25,-430.12 677.25,-453.12 755.75,-453.12 755.75,-430.12 677.25,-430.12"/>
<text text-anchor="start" x="712.75" y="-435.82" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="755.75,-430.12 755.75,-453.12 857.25,-453.12 857.25,-430.12 755.75,-430.12"/>
<text text-anchor="start" x="794.12" y="-435.82" font-family="arial" font-size="14.00">+5V</text>
<polygon fill="none" stroke="black" points="677.25,-407.12 677.25,-430.12 755.75,-430.12 755.75,-407.12 677.25,-407.12"/>
<text text-anchor="start" x="712.75" y="-412.82" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="755.75,-407.12 755.75,-430.12 857.25,-430.12 857.25,-407.12 755.75,-407.12"/>
<text text-anchor="start" x="793.38" y="-412.82" font-family="arial" font-size="14.00">SCL</text>
<polygon fill="none" stroke="black" points="677.25,-384.12 677.25,-407.12 755.75,-407.12 755.75,-384.12 677.25,-384.12"/>
<text text-anchor="start" x="712.75" y="-389.82" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="755.75,-384.12 755.75,-407.12 857.25,-407.12 857.25,-384.12 755.75,-384.12"/>
<text text-anchor="start" x="792.62" y="-389.82" font-family="arial" font-size="14.00">SDA</text>
</g>
<!-- X4 -->
<g id="node4" class="node">
<title>X4</title>
<polygon fill="#ffffff" stroke="black" points="864,-322 682,-322 682,-161 864,-161 864,-322"/>
<polygon fill="none" stroke="black" points="682,-298.5 682,-321.5 864,-321.5 864,-298.5 682,-298.5"/>
<text text-anchor="start" x="764.5" y="-306.3" font-family="arial" font-size="14.00">X4</text>
<polygon fill="none" stroke="black" points="682,-275.5 682,-298.5 775,-298.5 775,-275.5 682,-275.5"/>
<text text-anchor="start" x="686" y="-283.3" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="775,-275.5 775,-298.5 825,-298.5 825,-275.5 775,-275.5"/>
<text text-anchor="start" x="779" y="-283.3" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="825,-275.5 825,-298.5 864,-298.5 864,-275.5 825,-275.5"/>
<text text-anchor="start" x="829" y="-283.3" font-family="arial" font-size="14.00">5&#45;pin</text>
<polygon fill="none" stroke="black" points="682,-252.5 682,-275.5 759,-275.5 759,-252.5 682,-252.5"/>
<text text-anchor="start" x="716.5" y="-260.3" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="759,-252.5 759,-275.5 864,-275.5 864,-252.5 759,-252.5"/>
<text text-anchor="start" x="796" y="-260.3" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="682,-229.5 682,-252.5 759,-252.5 759,-229.5 682,-229.5"/>
<text text-anchor="start" x="716.5" y="-237.3" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="759,-229.5 759,-252.5 864,-252.5 864,-229.5 759,-229.5"/>
<text text-anchor="start" x="795" y="-237.3" font-family="arial" font-size="14.00">+12V</text>
<polygon fill="none" stroke="black" points="682,-206.5 682,-229.5 759,-229.5 759,-206.5 682,-206.5"/>
<text text-anchor="start" x="716.5" y="-214.3" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="759,-206.5 759,-229.5 864,-229.5 864,-206.5 759,-206.5"/>
<text text-anchor="start" x="793" y="-214.3" font-family="arial" font-size="14.00">MISO</text>
<polygon fill="none" stroke="black" points="682,-183.5 682,-206.5 759,-206.5 759,-183.5 682,-183.5"/>
<text text-anchor="start" x="716.5" y="-191.3" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="759,-183.5 759,-206.5 864,-206.5 864,-183.5 759,-183.5"/>
<text text-anchor="start" x="793" y="-191.3" font-family="arial" font-size="14.00">MOSI</text>
<polygon fill="none" stroke="black" points="682,-160.5 682,-183.5 759,-183.5 759,-160.5 682,-160.5"/>
<text text-anchor="start" x="716.5" y="-168.3" font-family="arial" font-size="14.00">5</text>
<polygon fill="none" stroke="black" points="759,-160.5 759,-183.5 864,-183.5 864,-160.5 759,-160.5"/>
<text text-anchor="start" x="797.5" y="-168.3" font-family="arial" font-size="14.00">SCK</text>
<polygon fill="#ffffff" stroke="black" points="857.25,-325.12 677.25,-325.12 677.25,-162.62 857.25,-162.62 857.25,-325.12"/>
<polygon fill="none" stroke="black" points="677.25,-301.38 677.25,-325.12 857.25,-325.12 857.25,-301.38 677.25,-301.38"/>
<text text-anchor="start" x="759" y="-307.82" font-family="arial" font-size="14.00">X4</text>
<polygon fill="none" stroke="black" points="677.25,-277.62 677.25,-301.38 770,-301.38 770,-277.62 677.25,-277.62"/>
<text text-anchor="start" x="681.25" y="-284.07" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="770,-277.62 770,-301.38 819.25,-301.38 819.25,-277.62 770,-277.62"/>
<text text-anchor="start" x="774" y="-284.07" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="819.25,-277.62 819.25,-301.38 857.25,-301.38 857.25,-277.62 819.25,-277.62"/>
<text text-anchor="start" x="823.25" y="-284.07" font-family="arial" font-size="14.00">5&#45;pin</text>
<polygon fill="none" stroke="black" points="677.25,-254.62 677.25,-277.62 752.75,-277.62 752.75,-254.62 677.25,-254.62"/>
<text text-anchor="start" x="711.25" y="-260.32" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="752.75,-254.62 752.75,-277.62 857.25,-277.62 857.25,-254.62 752.75,-254.62"/>
<text text-anchor="start" x="789.62" y="-260.32" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="677.25,-231.62 677.25,-254.62 752.75,-254.62 752.75,-231.62 677.25,-231.62"/>
<text text-anchor="start" x="711.25" y="-237.32" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="752.75,-231.62 752.75,-254.62 857.25,-254.62 857.25,-231.62 752.75,-231.62"/>
<text text-anchor="start" x="788.88" y="-237.32" font-family="arial" font-size="14.00">+12V</text>
<polygon fill="none" stroke="black" points="677.25,-208.62 677.25,-231.62 752.75,-231.62 752.75,-208.62 677.25,-208.62"/>
<text text-anchor="start" x="711.25" y="-214.32" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="752.75,-208.62 752.75,-231.62 857.25,-231.62 857.25,-208.62 752.75,-208.62"/>
<text text-anchor="start" x="787" y="-214.32" font-family="arial" font-size="14.00">MISO</text>
<polygon fill="none" stroke="black" points="677.25,-185.62 677.25,-208.62 752.75,-208.62 752.75,-185.62 677.25,-185.62"/>
<text text-anchor="start" x="711.25" y="-191.32" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="752.75,-185.62 752.75,-208.62 857.25,-208.62 857.25,-185.62 752.75,-185.62"/>
<text text-anchor="start" x="787" y="-191.32" font-family="arial" font-size="14.00">MOSI</text>
<polygon fill="none" stroke="black" points="677.25,-162.62 677.25,-185.62 752.75,-185.62 752.75,-162.62 677.25,-162.62"/>
<text text-anchor="start" x="711.25" y="-168.32" font-family="arial" font-size="14.00">5</text>
<polygon fill="none" stroke="black" points="752.75,-162.62 752.75,-185.62 857.25,-185.62 857.25,-162.62 752.75,-162.62"/>
<text text-anchor="start" x="791.12" y="-168.32" font-family="arial" font-size="14.00">SCK</text>
</g>
<!-- __F_1 -->
<g id="node5" class="node">
<title>__F_1</title>
<polygon fill="#ffffff" stroke="black" points="189,-70 0,-70 0,-47 189,-47 189,-70"/>
<polygon fill="none" stroke="black" points="0.5,-46.5 0.5,-69.5 87.5,-69.5 87.5,-46.5 0.5,-46.5"/>
<text text-anchor="start" x="4.5" y="-54.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="none" stroke="black" points="87.5,-46.5 87.5,-69.5 154.5,-69.5 154.5,-46.5 87.5,-46.5"/>
<text text-anchor="start" x="91.5" y="-54.3" font-family="arial" font-size="14.00">0.25 mm²</text>
<polygon fill="none" stroke="black" points="154.5,-46.5 154.5,-69.5 181.5,-69.5 181.5,-46.5 154.5,-46.5"/>
<text text-anchor="start" x="158.5" y="-54.3" font-family="arial" font-size="14.00">YE</text>
<polygon fill="#ffff00" stroke="none" points="181.5,-46.5 181.5,-69.5 189.5,-69.5 189.5,-46.5 181.5,-46.5"/>
<polygon fill="none" stroke="black" points="181.5,-46.5 181.5,-69.5 189.5,-69.5 189.5,-46.5 181.5,-46.5"/>
<polygon fill="#ffffff" stroke="black" points="187.25,-71.75 0,-71.75 0,-48 187.25,-48 187.25,-71.75"/>
<polygon fill="none" stroke="black" points="0,-48 0,-71.75 86.75,-71.75 86.75,-48 0,-48"/>
<text text-anchor="start" x="4" y="-54.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="none" stroke="black" points="86.75,-48 86.75,-71.75 153.25,-71.75 153.25,-48 86.75,-48"/>
<text text-anchor="start" x="90.75" y="-54.45" font-family="arial" font-size="14.00">0.25 mm²</text>
<polygon fill="none" stroke="black" points="153.25,-48 153.25,-71.75 179.25,-71.75 179.25,-48 153.25,-48"/>
<text text-anchor="start" x="157.25" y="-54.45" font-family="arial" font-size="14.00">YE</text>
<polygon fill="#ffff00" stroke="none" points="179.25,-48 179.25,-71.75 187.25,-71.75 187.25,-48 179.25,-48"/>
<polygon fill="none" stroke="black" points="179.25,-48 179.25,-71.75 187.25,-71.75 187.25,-48 179.25,-48"/>
</g>
<!-- W4 -->
<g id="node10" class="node">
<title>W4</title>
<polygon fill="#ffffff" stroke="black" points="534.5,-134.5 336.5,-134.5 336.5,-0.5 534.5,-0.5 534.5,-134.5"/>
<polygon fill="none" stroke="black" points="336.5,-111.5 336.5,-134.5 534.5,-134.5 534.5,-111.5 336.5,-111.5"/>
<text text-anchor="start" x="424.5" y="-119.3" font-family="arial" font-size="14.00">W4</text>
<polygon fill="none" stroke="black" points="336.5,-88.5 336.5,-111.5 359.5,-111.5 359.5,-88.5 336.5,-88.5"/>
<text text-anchor="start" x="340.5" y="-96.3" font-family="arial" font-size="14.00">2x</text>
<polygon fill="none" stroke="black" points="359.5,-88.5 359.5,-111.5 491.5,-111.5 491.5,-88.5 359.5,-88.5"/>
<text text-anchor="start" x="363.5" y="-96.3" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
<polygon fill="none" stroke="black" points="491.5,-88.5 491.5,-111.5 534.5,-111.5 534.5,-88.5 491.5,-88.5"/>
<text text-anchor="start" x="495.5" y="-96.3" font-family="arial" font-size="14.00">0.3 m</text>
<text text-anchor="start" x="347.5" y="-75.3" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="374" y="-56.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="460.5" y="-56.3" font-family="arial" font-size="14.00">X4:1:GND</text>
<polygon fill="#000000" stroke="none" points="336.5,-48.5 336.5,-50.5 534.5,-50.5 534.5,-48.5 336.5,-48.5"/>
<polygon fill="#000000" stroke="none" points="336.5,-46.5 336.5,-48.5 534.5,-48.5 534.5,-46.5 336.5,-46.5"/>
<polygon fill="#000000" stroke="none" points="336.5,-44.5 336.5,-46.5 534.5,-46.5 534.5,-44.5 336.5,-44.5"/>
<text text-anchor="start" x="373.5" y="-31.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="460" y="-31.3" font-family="arial" font-size="14.00">X4:2:+12V</text>
<polygon fill="#000000" stroke="none" points="336.5,-23.5 336.5,-25.5 534.5,-25.5 534.5,-23.5 336.5,-23.5"/>
<polygon fill="#ff0000" stroke="none" points="336.5,-21.5 336.5,-23.5 534.5,-23.5 534.5,-21.5 336.5,-21.5"/>
<polygon fill="#000000" stroke="none" points="336.5,-19.5 336.5,-21.5 534.5,-21.5 534.5,-19.5 336.5,-19.5"/>
<text text-anchor="start" x="347.5" y="-6.3" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" points="530.12,-136.62 334.38,-136.62 334.38,-1.12 530.12,-1.12 530.12,-136.62"/>
<polygon fill="none" stroke="black" points="334.38,-112.88 334.38,-136.62 530.12,-136.62 530.12,-112.88 334.38,-112.88"/>
<text text-anchor="start" x="421.75" y="-119.33" font-family="arial" font-size="14.00">W4</text>
<polygon fill="none" stroke="black" points="334.38,-89.12 334.38,-112.88 356.62,-112.88 356.62,-89.12 334.38,-89.12"/>
<text text-anchor="start" x="338.38" y="-95.58" font-family="arial" font-size="14.00">2x</text>
<polygon fill="none" stroke="black" points="356.62,-89.12 356.62,-112.88 487.62,-112.88 487.62,-89.12 356.62,-89.12"/>
<text text-anchor="start" x="360.62" y="-95.58" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
<polygon fill="none" stroke="black" points="487.62,-89.12 487.62,-112.88 530.12,-112.88 530.12,-89.12 487.62,-89.12"/>
<text text-anchor="start" x="491.62" y="-95.58" font-family="arial" font-size="14.00">0.3 m</text>
<text text-anchor="start" x="344.96" y="-73.83" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="370.75" y="-54.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="456.54" y="-54.83" font-family="arial" font-size="14.00">X4:1:GND</text>
<polygon fill="#000000" stroke="none" points="334.38,-49.12 334.38,-51.12 530.12,-51.12 530.12,-49.12 334.38,-49.12"/>
<polygon fill="#000000" stroke="none" points="334.38,-47.12 334.38,-49.12 530.12,-49.12 530.12,-47.12 334.38,-47.12"/>
<polygon fill="#000000" stroke="none" points="334.38,-45.12 334.38,-47.12 530.12,-47.12 530.12,-45.12 334.38,-45.12"/>
<text text-anchor="start" x="370" y="-29.82" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="455.79" y="-29.82" font-family="arial" font-size="14.00">X4:2:+12V</text>
<polygon fill="#000000" stroke="none" points="334.38,-24.12 334.38,-26.12 530.12,-26.12 530.12,-24.12 334.38,-24.12"/>
<polygon fill="#ff0000" stroke="none" points="334.38,-22.12 334.38,-24.12 530.12,-24.12 530.12,-22.12 334.38,-22.12"/>
<polygon fill="#000000" stroke="none" points="334.38,-20.12 334.38,-22.12 530.12,-22.12 530.12,-20.12 334.38,-20.12"/>
<text text-anchor="start" x="344.96" y="-4.83" font-family="arial" font-size="14.00"> </text>
</g>
<!-- __F_1&#45;&#45;W4 -->
<g id="edge25" class="edge">
<title>__F_1:e&#45;&#45;W4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M189,-56.5C253.16,-56.85 269.07,-45.85 335.5,-45.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M189,-58.5C254.29,-58.5 270.21,-47.5 335.5,-47.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M189,-60.5C255.43,-60.15 271.34,-49.15 335.5,-49.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M187.25,-57.88C251.15,-58.28 266.93,-46.28 333.25,-45.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M187.25,-59.87C252.36,-59.88 268.14,-47.88 333.25,-47.87"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M187.25,-61.87C253.57,-61.47 269.35,-49.47 333.25,-49.87"/>
</g>
<!-- __F_2 -->
<g id="node6" class="node">
<title>__F_2</title>
<polygon fill="#ffffff" stroke="black" points="189,-23 0,-23 0,0 189,0 189,-23"/>
<polygon fill="none" stroke="black" points="0.5,0.5 0.5,-22.5 87.5,-22.5 87.5,0.5 0.5,0.5"/>
<text text-anchor="start" x="4.5" y="-7.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="none" stroke="black" points="87.5,0.5 87.5,-22.5 154.5,-22.5 154.5,0.5 87.5,0.5"/>
<text text-anchor="start" x="91.5" y="-7.3" font-family="arial" font-size="14.00">0.25 mm²</text>
<polygon fill="none" stroke="black" points="154.5,0.5 154.5,-22.5 181.5,-22.5 181.5,0.5 154.5,0.5"/>
<text text-anchor="start" x="158.5" y="-7.3" font-family="arial" font-size="14.00">YE</text>
<polygon fill="#ffff00" stroke="none" points="181.5,0.5 181.5,-22.5 189.5,-22.5 189.5,0.5 181.5,0.5"/>
<polygon fill="none" stroke="black" points="181.5,0.5 181.5,-22.5 189.5,-22.5 189.5,0.5 181.5,0.5"/>
<polygon fill="#ffffff" stroke="black" points="187.25,-23.75 0,-23.75 0,0 187.25,0 187.25,-23.75"/>
<polygon fill="none" stroke="black" points="0,0 0,-23.75 86.75,-23.75 86.75,0 0,0"/>
<text text-anchor="start" x="4" y="-6.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="none" stroke="black" points="86.75,0 86.75,-23.75 153.25,-23.75 153.25,0 86.75,0"/>
<text text-anchor="start" x="90.75" y="-6.45" font-family="arial" font-size="14.00">0.25 mm²</text>
<polygon fill="none" stroke="black" points="153.25,0 153.25,-23.75 179.25,-23.75 179.25,0 153.25,0"/>
<text text-anchor="start" x="157.25" y="-6.45" font-family="arial" font-size="14.00">YE</text>
<polygon fill="#ffff00" stroke="none" points="179.25,0 179.25,-23.75 187.25,-23.75 187.25,0 179.25,0"/>
<polygon fill="none" stroke="black" points="179.25,0 179.25,-23.75 187.25,-23.75 187.25,0 179.25,0"/>
</g>
<!-- __F_2&#45;&#45;W4 -->
<g id="edge27" class="edge">
<title>__F_2:e&#45;&#45;W4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M189,-9.5C255.43,-9.85 271.34,-20.85 335.5,-20.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M189,-11.5C254.29,-11.5 270.21,-22.5 335.5,-22.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M189,-13.5C253.16,-13.15 269.07,-24.15 335.5,-24.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M187.25,-9.88C253.46,-10.23 269.32,-21.23 333.25,-20.88"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M187.25,-11.88C252.32,-11.88 268.18,-22.88 333.25,-22.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M187.25,-13.87C251.18,-13.52 267.04,-24.52 333.25,-24.87"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-669.5C600.37,-669.51 616.64,-667.51 682,-667.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-671.5C600.62,-671.5 616.88,-669.5 682,-669.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-673.5C600.86,-673.49 617.13,-671.49 682,-671.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-675.88C595.79,-675.91 611.98,-672.91 677.25,-672.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-677.88C596.15,-677.88 612.35,-674.88 677.25,-674.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-679.87C596.52,-679.84 612.71,-676.84 677.25,-676.87"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-644.5C600.49,-644.5 616.76,-643.5 682,-643.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M535.5,-646.5C600.61,-646.5 616.89,-645.5 682,-645.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-648.5C600.74,-648.5 617.01,-647.5 682,-647.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-650.88C596.02,-650.88 612.24,-649.88 677.25,-649.88"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M531.25,-652.88C596.14,-652.88 612.36,-651.88 677.25,-651.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-654.87C596.26,-654.87 612.48,-653.87 677.25,-653.87"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge6" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-619.5C600.74,-619.5 617.01,-620.5 682,-620.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M535.5,-621.5C600.61,-621.5 616.89,-622.5 682,-622.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-623.5C600.49,-623.5 616.76,-624.5 682,-624.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-625.88C596.26,-625.88 612.48,-626.88 677.25,-626.88"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M531.25,-627.88C596.14,-627.88 612.36,-628.88 677.25,-628.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-629.87C596.02,-629.87 612.24,-630.87 677.25,-630.87"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge8" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-594.5C600.99,-594.53 617.24,-597.53 682,-597.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M535.5,-596.5C600.62,-596.5 616.88,-599.5 682,-599.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-598.5C600.26,-598.47 616.51,-601.47 682,-601.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-600.88C596.52,-600.91 612.71,-603.91 677.25,-603.88"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M531.25,-602.88C596.15,-602.88 612.35,-605.88 677.25,-605.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-604.87C595.79,-604.84 611.98,-607.84 677.25,-607.87"/>
</g>
<!-- W2&#45;&#45;X3 -->
<g id="edge10" class="edge">
<title>W2:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-461.5C600.37,-461.51 616.64,-459.51 682,-459.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-463.5C600.62,-463.5 616.88,-461.5 682,-461.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-465.5C600.86,-465.49 617.13,-463.49 682,-463.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-465.88C595.79,-465.91 611.98,-462.91 677.25,-462.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-467.88C596.15,-467.88 612.35,-464.88 677.25,-464.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-469.87C596.52,-469.84 612.71,-466.84 677.25,-466.87"/>
</g>
<!-- W2&#45;&#45;X3 -->
<g id="edge12" class="edge">
<title>W2:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-436.5C600.49,-436.5 616.76,-435.5 682,-435.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M535.5,-438.5C600.61,-438.5 616.89,-437.5 682,-437.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-440.5C600.74,-440.5 617.01,-439.5 682,-439.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-440.88C596.02,-440.88 612.24,-439.88 677.25,-439.88"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M531.25,-442.87C596.14,-442.88 612.36,-441.88 677.25,-441.87"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-444.87C596.26,-444.87 612.48,-443.87 677.25,-443.87"/>
</g>
<!-- W2&#45;&#45;X3 -->
<g id="edge14" class="edge">
<title>W2:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-411.5C600.74,-411.5 617.01,-412.5 682,-412.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M535.5,-413.5C600.61,-413.5 616.89,-414.5 682,-414.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-415.5C600.49,-415.5 616.76,-416.5 682,-416.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-415.88C596.26,-415.88 612.48,-416.88 677.25,-416.88"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M531.25,-417.87C596.14,-417.88 612.36,-418.88 677.25,-418.87"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-419.87C596.02,-419.87 612.24,-420.87 677.25,-420.87"/>
</g>
<!-- W2&#45;&#45;X3 -->
<g id="edge16" class="edge">
<title>W2:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-386.5C600.99,-386.53 617.24,-389.53 682,-389.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M535.5,-388.5C600.62,-388.5 616.88,-391.5 682,-391.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-390.5C600.26,-390.47 616.51,-393.47 682,-393.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-390.88C596.52,-390.91 612.71,-393.91 677.25,-393.88"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M531.25,-392.88C596.15,-392.88 612.35,-395.88 677.25,-395.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-394.87C595.79,-394.84 611.98,-397.84 677.25,-397.87"/>
</g>
<!-- W3&#45;&#45;X4 -->
<g id="edge18" class="edge">
<title>W3:e&#45;&#45;X4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M538,-253.5C603.12,-253.76 618.87,-262.76 682,-262.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M538,-255.5C602.12,-255.5 617.88,-264.5 682,-264.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M538,-257.5C601.13,-257.24 616.88,-266.24 682,-266.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M533.25,-255.88C598.25,-256.09 614.05,-264.09 677.25,-263.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M533.25,-257.88C597.35,-257.88 613.15,-265.88 677.25,-265.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M533.25,-259.87C596.45,-259.66 612.25,-267.66 677.25,-267.87"/>
</g>
<!-- W3&#45;&#45;X4 -->
<g id="edge20" class="edge">
<title>W3:e&#45;&#45;X4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M538,-228.5C600.97,-228.97 616.45,-215.97 682,-215.5"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M538,-230.5C602.26,-230.5 617.74,-217.5 682,-217.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M538,-232.5C603.55,-232.03 619.03,-219.03 682,-219.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M533.25,-230.88C596.22,-231.34 611.7,-218.34 677.25,-217.88"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M533.25,-232.88C597.51,-232.88 612.99,-219.88 677.25,-219.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M533.25,-234.87C598.8,-234.41 614.28,-221.41 677.25,-221.87"/>
</g>
<!-- W3&#45;&#45;X4 -->
<g id="edge22" class="edge">
<title>W3:e&#45;&#45;X4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M538,-203.5C601.04,-203.86 616.66,-192.86 682,-192.5"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M538,-205.5C602.19,-205.5 617.81,-194.5 682,-194.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M538,-207.5C603.34,-207.14 618.96,-196.14 682,-196.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M533.25,-205.88C596.29,-206.24 611.91,-195.24 677.25,-194.88"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M533.25,-207.88C597.44,-207.88 613.06,-196.88 677.25,-196.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M533.25,-209.87C598.59,-209.51 614.21,-198.51 677.25,-198.87"/>
</g>
<!-- W3&#45;&#45;X4 -->
<g id="edge24" class="edge">
<title>W3:e&#45;&#45;X4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M538,-178.5C601.13,-178.76 616.88,-169.76 682,-169.5"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M538,-180.5C602.12,-180.5 617.88,-171.5 682,-171.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M538,-182.5C603.12,-182.24 618.87,-173.24 682,-173.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M533.25,-180.88C596.38,-181.14 612.13,-172.14 677.25,-171.88"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M533.25,-182.88C597.37,-182.88 613.13,-173.88 677.25,-173.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M533.25,-184.87C598.37,-184.61 614.12,-175.61 677.25,-175.87"/>
</g>
<!-- W4&#45;&#45;X4 -->
<g id="edge26" class="edge">
<title>W4:e&#45;&#45;X4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-45.5C653.72,-48.24 567.49,-265.24 682,-262.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-47.5C651.87,-47.5 565.63,-264.5 682,-264.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-49.5C650.01,-46.76 563.78,-263.76 682,-266.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-45.88C649.72,-48.62 562.5,-266.62 677.25,-263.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-47.88C647.86,-47.88 560.64,-265.88 677.25,-265.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-49.87C646,-47.13 558.78,-265.13 677.25,-267.87"/>
</g>
<!-- W4&#45;&#45;X4 -->
<g id="edge28" class="edge">
<title>W4:e&#45;&#45;X4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-20.5C654.09,-23.24 567.12,-241.24 682,-238.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M535.5,-22.5C652.23,-22.5 565.27,-240.5 682,-240.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-24.5C650.38,-21.76 563.41,-239.76 682,-242.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-20.88C650.46,-23.62 561.75,-243.62 677.25,-240.88"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M531.25,-22.88C648.6,-22.88 559.9,-242.88 677.25,-242.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-24.87C646.75,-22.13 558.04,-242.13 677.25,-244.87"/>
</g>
</g>
</svg>

BIN
examples/demo02.png generated

Binary file not shown.

Before

Width:  |  Height:  |  Size: 207 KiB

After

Width:  |  Height:  |  Size: 206 KiB

706
examples/demo02.svg generated
View File

@ -1,512 +1,512 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="872pt" height="767pt"
viewBox="0.00 0.00 872.00 766.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 762.5)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-762.5 868,-762.5 868,4 -4,4"/>
<svg width="865pt" height="775pt"
viewBox="0.00 0.00 865.25 774.62" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 770.62)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-770.62 861.25,-770.62 861.25,4 -4,4"/>
<!-- X1 -->
<g id="node1" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="185.5,-517.5 3.5,-517.5 3.5,-287.5 185.5,-287.5 185.5,-517.5"/>
<polygon fill="none" stroke="black" points="3.5,-494.5 3.5,-517.5 185.5,-517.5 185.5,-494.5 3.5,-494.5"/>
<text text-anchor="start" x="86" y="-502.3" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="3.5,-471.5 3.5,-494.5 96.5,-494.5 96.5,-471.5 3.5,-471.5"/>
<text text-anchor="start" x="7.5" y="-479.3" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="96.5,-471.5 96.5,-494.5 146.5,-494.5 146.5,-471.5 96.5,-471.5"/>
<text text-anchor="start" x="100.5" y="-479.3" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="146.5,-471.5 146.5,-494.5 185.5,-494.5 185.5,-471.5 146.5,-471.5"/>
<text text-anchor="start" x="150.5" y="-479.3" font-family="arial" font-size="14.00">8&#45;pin</text>
<polygon fill="none" stroke="black" points="3.5,-448.5 3.5,-471.5 109.5,-471.5 109.5,-448.5 3.5,-448.5"/>
<text text-anchor="start" x="41" y="-456.3" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="109.5,-448.5 109.5,-471.5 185.5,-471.5 185.5,-448.5 109.5,-448.5"/>
<text text-anchor="start" x="143.5" y="-456.3" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="3.5,-425.5 3.5,-448.5 109.5,-448.5 109.5,-425.5 3.5,-425.5"/>
<text text-anchor="start" x="44" y="-433.3" font-family="arial" font-size="14.00">+5V</text>
<polygon fill="none" stroke="black" points="109.5,-425.5 109.5,-448.5 185.5,-448.5 185.5,-425.5 109.5,-425.5"/>
<text text-anchor="start" x="143.5" y="-433.3" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="3.5,-402.5 3.5,-425.5 109.5,-425.5 109.5,-402.5 3.5,-402.5"/>
<text text-anchor="start" x="43" y="-410.3" font-family="arial" font-size="14.00">SCL</text>
<polygon fill="none" stroke="black" points="109.5,-402.5 109.5,-425.5 185.5,-425.5 185.5,-402.5 109.5,-402.5"/>
<text text-anchor="start" x="143.5" y="-410.3" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="3.5,-379.5 3.5,-402.5 109.5,-402.5 109.5,-379.5 3.5,-379.5"/>
<text text-anchor="start" x="42.5" y="-387.3" font-family="arial" font-size="14.00">SDA</text>
<polygon fill="none" stroke="black" points="109.5,-379.5 109.5,-402.5 185.5,-402.5 185.5,-379.5 109.5,-379.5"/>
<text text-anchor="start" x="143.5" y="-387.3" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="3.5,-356.5 3.5,-379.5 109.5,-379.5 109.5,-356.5 3.5,-356.5"/>
<text text-anchor="start" x="38" y="-364.3" font-family="arial" font-size="14.00">MISO</text>
<polygon fill="none" stroke="black" points="109.5,-356.5 109.5,-379.5 185.5,-379.5 185.5,-356.5 109.5,-356.5"/>
<text text-anchor="start" x="143.5" y="-364.3" font-family="arial" font-size="14.00">5</text>
<polygon fill="none" stroke="black" points="3.5,-333.5 3.5,-356.5 109.5,-356.5 109.5,-333.5 3.5,-333.5"/>
<text text-anchor="start" x="38" y="-341.3" font-family="arial" font-size="14.00">MOSI</text>
<polygon fill="none" stroke="black" points="109.5,-333.5 109.5,-356.5 185.5,-356.5 185.5,-333.5 109.5,-333.5"/>
<text text-anchor="start" x="143.5" y="-341.3" font-family="arial" font-size="14.00">6</text>
<polygon fill="none" stroke="black" points="3.5,-310.5 3.5,-333.5 109.5,-333.5 109.5,-310.5 3.5,-310.5"/>
<text text-anchor="start" x="42.5" y="-318.3" font-family="arial" font-size="14.00">SCK</text>
<polygon fill="none" stroke="black" points="109.5,-310.5 109.5,-333.5 185.5,-333.5 185.5,-310.5 109.5,-310.5"/>
<text text-anchor="start" x="143.5" y="-318.3" font-family="arial" font-size="14.00">7</text>
<polygon fill="none" stroke="black" points="3.5,-287.5 3.5,-310.5 109.5,-310.5 109.5,-287.5 3.5,-287.5"/>
<text text-anchor="start" x="44.5" y="-295.3" font-family="arial" font-size="14.00">N/C</text>
<polygon fill="none" stroke="black" points="109.5,-287.5 109.5,-310.5 185.5,-310.5 185.5,-287.5 109.5,-287.5"/>
<text text-anchor="start" x="143.5" y="-295.3" font-family="arial" font-size="14.00">8</text>
<polygon fill="#ffffff" stroke="black" points="183.62,-523.62 3.62,-523.62 3.62,-292.12 183.62,-292.12 183.62,-523.62"/>
<polygon fill="none" stroke="black" points="3.62,-499.88 3.62,-523.62 183.62,-523.62 183.62,-499.88 3.62,-499.88"/>
<text text-anchor="start" x="85.38" y="-506.32" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="3.62,-476.12 3.62,-499.88 96.38,-499.88 96.38,-476.12 3.62,-476.12"/>
<text text-anchor="start" x="7.62" y="-482.57" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="96.38,-476.12 96.38,-499.88 145.62,-499.88 145.62,-476.12 96.38,-476.12"/>
<text text-anchor="start" x="100.38" y="-482.57" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="145.62,-476.12 145.62,-499.88 183.62,-499.88 183.62,-476.12 145.62,-476.12"/>
<text text-anchor="start" x="149.62" y="-482.57" font-family="arial" font-size="14.00">8&#45;pin</text>
<polygon fill="none" stroke="black" points="3.62,-453.12 3.62,-476.12 108.12,-476.12 108.12,-453.12 3.62,-453.12"/>
<text text-anchor="start" x="40.5" y="-458.82" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="108.12,-453.12 108.12,-476.12 183.62,-476.12 183.62,-453.12 108.12,-453.12"/>
<text text-anchor="start" x="142.12" y="-458.82" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="3.62,-430.12 3.62,-453.12 108.12,-453.12 108.12,-430.12 3.62,-430.12"/>
<text text-anchor="start" x="43.5" y="-435.82" font-family="arial" font-size="14.00">+5V</text>
<polygon fill="none" stroke="black" points="108.12,-430.12 108.12,-453.12 183.62,-453.12 183.62,-430.12 108.12,-430.12"/>
<text text-anchor="start" x="142.12" y="-435.82" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="3.62,-407.12 3.62,-430.12 108.12,-430.12 108.12,-407.12 3.62,-407.12"/>
<text text-anchor="start" x="42.75" y="-412.82" font-family="arial" font-size="14.00">SCL</text>
<polygon fill="none" stroke="black" points="108.12,-407.12 108.12,-430.12 183.62,-430.12 183.62,-407.12 108.12,-407.12"/>
<text text-anchor="start" x="142.12" y="-412.82" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="3.62,-384.12 3.62,-407.12 108.12,-407.12 108.12,-384.12 3.62,-384.12"/>
<text text-anchor="start" x="42" y="-389.82" font-family="arial" font-size="14.00">SDA</text>
<polygon fill="none" stroke="black" points="108.12,-384.12 108.12,-407.12 183.62,-407.12 183.62,-384.12 108.12,-384.12"/>
<text text-anchor="start" x="142.12" y="-389.82" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="3.62,-361.12 3.62,-384.12 108.12,-384.12 108.12,-361.12 3.62,-361.12"/>
<text text-anchor="start" x="37.88" y="-366.82" font-family="arial" font-size="14.00">MISO</text>
<polygon fill="none" stroke="black" points="108.12,-361.12 108.12,-384.12 183.62,-384.12 183.62,-361.12 108.12,-361.12"/>
<text text-anchor="start" x="142.12" y="-366.82" font-family="arial" font-size="14.00">5</text>
<polygon fill="none" stroke="black" points="3.62,-338.12 3.62,-361.12 108.12,-361.12 108.12,-338.12 3.62,-338.12"/>
<text text-anchor="start" x="37.88" y="-343.82" font-family="arial" font-size="14.00">MOSI</text>
<polygon fill="none" stroke="black" points="108.12,-338.12 108.12,-361.12 183.62,-361.12 183.62,-338.12 108.12,-338.12"/>
<text text-anchor="start" x="142.12" y="-343.82" font-family="arial" font-size="14.00">6</text>
<polygon fill="none" stroke="black" points="3.62,-315.12 3.62,-338.12 108.12,-338.12 108.12,-315.12 3.62,-315.12"/>
<text text-anchor="start" x="42" y="-320.82" font-family="arial" font-size="14.00">SCK</text>
<polygon fill="none" stroke="black" points="108.12,-315.12 108.12,-338.12 183.62,-338.12 183.62,-315.12 108.12,-315.12"/>
<text text-anchor="start" x="142.12" y="-320.82" font-family="arial" font-size="14.00">7</text>
<polygon fill="none" stroke="black" points="3.62,-292.12 3.62,-315.12 108.12,-315.12 108.12,-292.12 3.62,-292.12"/>
<text text-anchor="start" x="44.25" y="-297.82" font-family="arial" font-size="14.00">N/C</text>
<polygon fill="none" stroke="black" points="108.12,-292.12 108.12,-315.12 183.62,-315.12 183.62,-292.12 108.12,-292.12"/>
<text text-anchor="start" x="142.12" y="-297.82" font-family="arial" font-size="14.00">8</text>
</g>
<!-- W1 -->
<g id="node7" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="534.5,-758.5 336.5,-758.5 336.5,-574.5 534.5,-574.5 534.5,-758.5"/>
<polygon fill="none" stroke="black" points="336.5,-735.5 336.5,-758.5 534.5,-758.5 534.5,-735.5 336.5,-735.5"/>
<text text-anchor="start" x="424.5" y="-743.3" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="336.5,-712.5 336.5,-735.5 359.5,-735.5 359.5,-712.5 336.5,-712.5"/>
<text text-anchor="start" x="340.5" y="-720.3" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="359.5,-712.5 359.5,-735.5 491.5,-735.5 491.5,-712.5 359.5,-712.5"/>
<text text-anchor="start" x="363.5" y="-720.3" font-family="arial" font-size="14.00">0.14 mm² (26 AWG)</text>
<polygon fill="none" stroke="black" points="491.5,-712.5 491.5,-735.5 534.5,-735.5 534.5,-712.5 491.5,-712.5"/>
<text text-anchor="start" x="495.5" y="-720.3" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="369" y="-699.3" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="339.5" y="-680.3" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="410" y="-680.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="469" y="-680.3" font-family="arial" font-size="14.00">X2:1:GND</text>
<polygon fill="#000000" stroke="none" points="336.5,-672.5 336.5,-674.5 534.5,-674.5 534.5,-672.5 336.5,-672.5"/>
<polygon fill="#000000" stroke="none" points="336.5,-670.5 336.5,-672.5 534.5,-672.5 534.5,-670.5 336.5,-670.5"/>
<polygon fill="#000000" stroke="none" points="336.5,-668.5 336.5,-670.5 534.5,-670.5 534.5,-668.5 336.5,-668.5"/>
<text text-anchor="start" x="342.5" y="-655.3" font-family="arial" font-size="14.00">X1:2:+5V</text>
<text text-anchor="start" x="409" y="-655.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="472" y="-655.3" font-family="arial" font-size="14.00">X2:2:+5V</text>
<polygon fill="#000000" stroke="none" points="336.5,-647.5 336.5,-649.5 534.5,-649.5 534.5,-647.5 336.5,-647.5"/>
<polygon fill="#ff0000" stroke="none" points="336.5,-645.5 336.5,-647.5 534.5,-647.5 534.5,-645.5 336.5,-645.5"/>
<polygon fill="#000000" stroke="none" points="336.5,-643.5 336.5,-645.5 534.5,-645.5 534.5,-643.5 336.5,-643.5"/>
<text text-anchor="start" x="342" y="-630.3" font-family="arial" font-size="14.00">X1:3:SCL</text>
<text text-anchor="start" x="410" y="-630.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="471.5" y="-630.3" font-family="arial" font-size="14.00">X2:3:SCL</text>
<polygon fill="#000000" stroke="none" points="336.5,-622.5 336.5,-624.5 534.5,-624.5 534.5,-622.5 336.5,-622.5"/>
<polygon fill="#ffff00" stroke="none" points="336.5,-620.5 336.5,-622.5 534.5,-622.5 534.5,-620.5 336.5,-620.5"/>
<polygon fill="#000000" stroke="none" points="336.5,-618.5 336.5,-620.5 534.5,-620.5 534.5,-618.5 336.5,-618.5"/>
<text text-anchor="start" x="341" y="-605.3" font-family="arial" font-size="14.00">X1:4:SDA</text>
<text text-anchor="start" x="408.5" y="-605.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="470.5" y="-605.3" font-family="arial" font-size="14.00">X2:4:SDA</text>
<polygon fill="#000000" stroke="none" points="336.5,-597.5 336.5,-599.5 534.5,-599.5 534.5,-597.5 336.5,-597.5"/>
<polygon fill="#00ff00" stroke="none" points="336.5,-595.5 336.5,-597.5 534.5,-597.5 534.5,-595.5 336.5,-595.5"/>
<polygon fill="#000000" stroke="none" points="336.5,-593.5 336.5,-595.5 534.5,-595.5 534.5,-593.5 336.5,-593.5"/>
<text text-anchor="start" x="369" y="-580.3" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="530.12,-766.62 334.38,-766.62 334.38,-581.12 530.12,-581.12 530.12,-766.62"/>
<polygon fill="none" stroke="black" points="334.38,-742.88 334.38,-766.62 530.12,-766.62 530.12,-742.88 334.38,-742.88"/>
<text text-anchor="start" x="421.75" y="-749.33" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="334.38,-719.12 334.38,-742.88 356.62,-742.88 356.62,-719.12 334.38,-719.12"/>
<text text-anchor="start" x="338.38" y="-725.58" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="356.62,-719.12 356.62,-742.88 487.62,-742.88 487.62,-719.12 356.62,-719.12"/>
<text text-anchor="start" x="360.62" y="-725.58" font-family="arial" font-size="14.00">0.14 mm² (26 AWG)</text>
<polygon fill="none" stroke="black" points="487.62,-719.12 487.62,-742.88 530.12,-742.88 530.12,-719.12 487.62,-719.12"/>
<text text-anchor="start" x="491.62" y="-725.58" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="366.46" y="-703.83" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="337.21" y="-684.83" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="406.38" y="-684.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="465.04" y="-684.83" font-family="arial" font-size="14.00">X2:1:GND</text>
<polygon fill="#000000" stroke="none" points="334.38,-679.12 334.38,-681.12 530.12,-681.12 530.12,-679.12 334.38,-679.12"/>
<polygon fill="#000000" stroke="none" points="334.38,-677.12 334.38,-679.12 530.12,-679.12 530.12,-677.12 334.38,-677.12"/>
<polygon fill="#000000" stroke="none" points="334.38,-675.12 334.38,-677.12 530.12,-677.12 530.12,-675.12 334.38,-675.12"/>
<text text-anchor="start" x="340.21" y="-659.83" font-family="arial" font-size="14.00">X1:2:+5V</text>
<text text-anchor="start" x="405.62" y="-659.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="468.04" y="-659.83" font-family="arial" font-size="14.00">X2:2:+5V</text>
<polygon fill="#000000" stroke="none" points="334.38,-654.12 334.38,-656.12 530.12,-656.12 530.12,-654.12 334.38,-654.12"/>
<polygon fill="#ff0000" stroke="none" points="334.38,-652.12 334.38,-654.12 530.12,-654.12 530.12,-652.12 334.38,-652.12"/>
<polygon fill="#000000" stroke="none" points="334.38,-650.12 334.38,-652.12 530.12,-652.12 530.12,-650.12 334.38,-650.12"/>
<text text-anchor="start" x="339.46" y="-634.83" font-family="arial" font-size="14.00">X1:3:SCL</text>
<text text-anchor="start" x="406.38" y="-634.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="467.29" y="-634.83" font-family="arial" font-size="14.00">X2:3:SCL</text>
<polygon fill="#000000" stroke="none" points="334.38,-629.12 334.38,-631.12 530.12,-631.12 530.12,-629.12 334.38,-629.12"/>
<polygon fill="#ffff00" stroke="none" points="334.38,-627.12 334.38,-629.12 530.12,-629.12 530.12,-627.12 334.38,-627.12"/>
<polygon fill="#000000" stroke="none" points="334.38,-625.12 334.38,-627.12 530.12,-627.12 530.12,-625.12 334.38,-625.12"/>
<text text-anchor="start" x="338.71" y="-609.83" font-family="arial" font-size="14.00">X1:4:SDA</text>
<text text-anchor="start" x="404.88" y="-609.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="466.54" y="-609.83" font-family="arial" font-size="14.00">X2:4:SDA</text>
<polygon fill="#000000" stroke="none" points="334.38,-604.12 334.38,-606.12 530.12,-606.12 530.12,-604.12 334.38,-604.12"/>
<polygon fill="#00ff00" stroke="none" points="334.38,-602.12 334.38,-604.12 530.12,-604.12 530.12,-602.12 334.38,-602.12"/>
<polygon fill="#000000" stroke="none" points="334.38,-600.12 334.38,-602.12 530.12,-602.12 530.12,-600.12 334.38,-600.12"/>
<text text-anchor="start" x="366.46" y="-584.83" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge1" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-458.5C303.17,-461.21 222.57,-672.21 335.5,-669.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-460.5C301.3,-460.5 220.7,-671.5 335.5,-671.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-462.5C299.43,-459.79 218.83,-670.79 335.5,-673.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-462.88C301.93,-465.6 219.68,-678.6 333.25,-675.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-464.88C300.06,-464.88 217.82,-677.88 333.25,-677.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-466.87C298.19,-464.15 215.95,-677.15 333.25,-679.87"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge3" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-435.5C302.45,-438.21 223.29,-647.21 335.5,-644.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M186.5,-437.5C300.58,-437.5 221.42,-646.5 335.5,-646.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-439.5C298.71,-436.79 219.55,-645.79 335.5,-648.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-439.88C301.2,-442.59 220.41,-653.59 333.25,-650.88"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M184.62,-441.87C299.33,-441.87 218.54,-652.88 333.25,-652.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-443.87C297.46,-441.16 216.68,-652.16 333.25,-654.87"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge5" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-412.5C301.73,-415.2 224.02,-622.2 335.5,-619.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M186.5,-414.5C299.86,-414.5 222.14,-621.5 335.5,-621.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-416.5C297.98,-413.8 220.27,-620.8 335.5,-623.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-416.88C300.48,-419.58 221.14,-628.58 333.25,-625.88"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M184.62,-418.88C298.61,-418.88 219.27,-627.88 333.25,-627.87"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-420.87C296.74,-418.17 217.4,-627.17 333.25,-629.87"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge7" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-388.5C301.37,-391.2 224.38,-597.2 335.5,-594.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M186.5,-390.5C299.49,-390.5 222.51,-596.5 335.5,-596.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-392.5C297.62,-389.8 220.63,-595.8 335.5,-598.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-393.88C299.75,-396.58 221.86,-603.58 333.25,-600.88"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M184.62,-395.88C297.88,-395.87 219.99,-602.88 333.25,-602.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-397.87C296.01,-395.17 218.12,-602.17 333.25,-604.87"/>
</g>
<!-- W2 -->
<g id="node8" class="node">
<title>W2</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="534.5,-550.5 336.5,-550.5 336.5,-366.5 534.5,-366.5 534.5,-550.5"/>
<polygon fill="none" stroke="black" points="336.5,-527.5 336.5,-550.5 534.5,-550.5 534.5,-527.5 336.5,-527.5"/>
<text text-anchor="start" x="424.5" y="-535.3" font-family="arial" font-size="14.00">W2</text>
<polygon fill="none" stroke="black" points="336.5,-504.5 336.5,-527.5 359.5,-527.5 359.5,-504.5 336.5,-504.5"/>
<text text-anchor="start" x="340.5" y="-512.3" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="359.5,-504.5 359.5,-527.5 491.5,-527.5 491.5,-504.5 359.5,-504.5"/>
<text text-anchor="start" x="363.5" y="-512.3" font-family="arial" font-size="14.00">0.14 mm² (26 AWG)</text>
<polygon fill="none" stroke="black" points="491.5,-504.5 491.5,-527.5 534.5,-527.5 534.5,-504.5 491.5,-504.5"/>
<text text-anchor="start" x="495.5" y="-512.3" font-family="arial" font-size="14.00">0.4 m</text>
<text text-anchor="start" x="369" y="-491.3" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="339.5" y="-472.3" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="410" y="-472.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="469" y="-472.3" font-family="arial" font-size="14.00">X3:1:GND</text>
<polygon fill="#000000" stroke="none" points="336.5,-464.5 336.5,-466.5 534.5,-466.5 534.5,-464.5 336.5,-464.5"/>
<polygon fill="#000000" stroke="none" points="336.5,-462.5 336.5,-464.5 534.5,-464.5 534.5,-462.5 336.5,-462.5"/>
<polygon fill="#000000" stroke="none" points="336.5,-460.5 336.5,-462.5 534.5,-462.5 534.5,-460.5 336.5,-460.5"/>
<text text-anchor="start" x="342.5" y="-447.3" font-family="arial" font-size="14.00">X1:2:+5V</text>
<text text-anchor="start" x="409" y="-447.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="472" y="-447.3" font-family="arial" font-size="14.00">X3:2:+5V</text>
<polygon fill="#000000" stroke="none" points="336.5,-439.5 336.5,-441.5 534.5,-441.5 534.5,-439.5 336.5,-439.5"/>
<polygon fill="#ff0000" stroke="none" points="336.5,-437.5 336.5,-439.5 534.5,-439.5 534.5,-437.5 336.5,-437.5"/>
<polygon fill="#000000" stroke="none" points="336.5,-435.5 336.5,-437.5 534.5,-437.5 534.5,-435.5 336.5,-435.5"/>
<text text-anchor="start" x="342" y="-422.3" font-family="arial" font-size="14.00">X1:3:SCL</text>
<text text-anchor="start" x="410" y="-422.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="471.5" y="-422.3" font-family="arial" font-size="14.00">X3:3:SCL</text>
<polygon fill="#000000" stroke="none" points="336.5,-414.5 336.5,-416.5 534.5,-416.5 534.5,-414.5 336.5,-414.5"/>
<polygon fill="#ffff00" stroke="none" points="336.5,-412.5 336.5,-414.5 534.5,-414.5 534.5,-412.5 336.5,-412.5"/>
<polygon fill="#000000" stroke="none" points="336.5,-410.5 336.5,-412.5 534.5,-412.5 534.5,-410.5 336.5,-410.5"/>
<text text-anchor="start" x="341" y="-397.3" font-family="arial" font-size="14.00">X1:4:SDA</text>
<text text-anchor="start" x="408.5" y="-397.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="470.5" y="-397.3" font-family="arial" font-size="14.00">X3:4:SDA</text>
<polygon fill="#000000" stroke="none" points="336.5,-389.5 336.5,-391.5 534.5,-391.5 534.5,-389.5 336.5,-389.5"/>
<polygon fill="#00ff00" stroke="none" points="336.5,-387.5 336.5,-389.5 534.5,-389.5 534.5,-387.5 336.5,-387.5"/>
<polygon fill="#000000" stroke="none" points="336.5,-385.5 336.5,-387.5 534.5,-387.5 534.5,-385.5 336.5,-385.5"/>
<text text-anchor="start" x="369" y="-372.3" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="530.12,-556.62 334.38,-556.62 334.38,-371.12 530.12,-371.12 530.12,-556.62"/>
<polygon fill="none" stroke="black" points="334.38,-532.88 334.38,-556.62 530.12,-556.62 530.12,-532.88 334.38,-532.88"/>
<text text-anchor="start" x="421.75" y="-539.33" font-family="arial" font-size="14.00">W2</text>
<polygon fill="none" stroke="black" points="334.38,-509.12 334.38,-532.88 356.62,-532.88 356.62,-509.12 334.38,-509.12"/>
<text text-anchor="start" x="338.38" y="-515.58" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="356.62,-509.12 356.62,-532.88 487.62,-532.88 487.62,-509.12 356.62,-509.12"/>
<text text-anchor="start" x="360.62" y="-515.58" font-family="arial" font-size="14.00">0.14 mm² (26 AWG)</text>
<polygon fill="none" stroke="black" points="487.62,-509.12 487.62,-532.88 530.12,-532.88 530.12,-509.12 487.62,-509.12"/>
<text text-anchor="start" x="491.62" y="-515.58" font-family="arial" font-size="14.00">0.4 m</text>
<text text-anchor="start" x="366.46" y="-493.82" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="337.21" y="-474.82" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="406.38" y="-474.82" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="465.04" y="-474.82" font-family="arial" font-size="14.00">X3:1:GND</text>
<polygon fill="#000000" stroke="none" points="334.38,-469.12 334.38,-471.12 530.12,-471.12 530.12,-469.12 334.38,-469.12"/>
<polygon fill="#000000" stroke="none" points="334.38,-467.12 334.38,-469.12 530.12,-469.12 530.12,-467.12 334.38,-467.12"/>
<polygon fill="#000000" stroke="none" points="334.38,-465.12 334.38,-467.12 530.12,-467.12 530.12,-465.12 334.38,-465.12"/>
<text text-anchor="start" x="340.21" y="-449.82" font-family="arial" font-size="14.00">X1:2:+5V</text>
<text text-anchor="start" x="405.62" y="-449.82" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="468.04" y="-449.82" font-family="arial" font-size="14.00">X3:2:+5V</text>
<polygon fill="#000000" stroke="none" points="334.38,-444.12 334.38,-446.12 530.12,-446.12 530.12,-444.12 334.38,-444.12"/>
<polygon fill="#ff0000" stroke="none" points="334.38,-442.12 334.38,-444.12 530.12,-444.12 530.12,-442.12 334.38,-442.12"/>
<polygon fill="#000000" stroke="none" points="334.38,-440.12 334.38,-442.12 530.12,-442.12 530.12,-440.12 334.38,-440.12"/>
<text text-anchor="start" x="339.46" y="-424.82" font-family="arial" font-size="14.00">X1:3:SCL</text>
<text text-anchor="start" x="406.38" y="-424.82" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="467.29" y="-424.82" font-family="arial" font-size="14.00">X3:3:SCL</text>
<polygon fill="#000000" stroke="none" points="334.38,-419.12 334.38,-421.12 530.12,-421.12 530.12,-419.12 334.38,-419.12"/>
<polygon fill="#ffff00" stroke="none" points="334.38,-417.12 334.38,-419.12 530.12,-419.12 530.12,-417.12 334.38,-417.12"/>
<polygon fill="#000000" stroke="none" points="334.38,-415.12 334.38,-417.12 530.12,-417.12 530.12,-415.12 334.38,-415.12"/>
<text text-anchor="start" x="338.71" y="-399.82" font-family="arial" font-size="14.00">X1:4:SDA</text>
<text text-anchor="start" x="404.88" y="-399.82" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="466.54" y="-399.82" font-family="arial" font-size="14.00">X3:4:SDA</text>
<polygon fill="#000000" stroke="none" points="334.38,-394.12 334.38,-396.12 530.12,-396.12 530.12,-394.12 334.38,-394.12"/>
<polygon fill="#00ff00" stroke="none" points="334.38,-392.12 334.38,-394.12 530.12,-394.12 530.12,-392.12 334.38,-392.12"/>
<polygon fill="#000000" stroke="none" points="334.38,-390.12 334.38,-392.12 530.12,-392.12 530.12,-390.12 334.38,-390.12"/>
<text text-anchor="start" x="366.46" y="-374.82" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X1&#45;&#45;W2 -->
<g id="edge9" class="edge">
<title>X1:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-458.5C253.09,-458.53 269.62,-461.53 335.5,-461.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-460.5C252.74,-460.5 269.26,-463.5 335.5,-463.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-462.5C252.38,-462.47 268.91,-465.47 335.5,-465.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-462.88C251.05,-462.91 267.54,-465.91 333.25,-465.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-464.88C250.69,-464.88 267.18,-467.88 333.25,-467.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-466.87C250.34,-466.84 266.82,-469.84 333.25,-469.87"/>
</g>
<!-- X1&#45;&#45;W2 -->
<g id="edge11" class="edge">
<title>X1:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-435.5C252.84,-435.5 269.4,-436.5 335.5,-436.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M186.5,-437.5C252.72,-437.5 269.28,-438.5 335.5,-438.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-439.5C252.6,-439.5 269.16,-440.5 335.5,-440.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-439.88C250.8,-439.88 267.31,-440.88 333.25,-440.88"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M184.62,-441.87C250.68,-441.88 267.19,-442.88 333.25,-442.87"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-443.87C250.56,-443.87 267.07,-444.87 333.25,-444.87"/>
</g>
<!-- X1&#45;&#45;W2 -->
<g id="edge13" class="edge">
<title>X1:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-412.5C252.6,-412.5 269.16,-411.5 335.5,-411.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M186.5,-414.5C252.72,-414.5 269.28,-413.5 335.5,-413.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-416.5C252.84,-416.5 269.4,-415.5 335.5,-415.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-416.88C250.56,-416.88 267.07,-415.88 333.25,-415.88"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M184.62,-418.87C250.68,-418.88 267.19,-417.88 333.25,-417.87"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-420.87C250.8,-420.87 267.31,-419.87 333.25,-419.87"/>
</g>
<!-- X1&#45;&#45;W2 -->
<g id="edge15" class="edge">
<title>X1:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-388.5C252.49,-388.51 269.03,-386.51 335.5,-386.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M186.5,-390.5C252.73,-390.5 269.27,-388.5 335.5,-388.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-392.5C252.97,-392.49 269.51,-390.49 335.5,-390.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-393.88C250.34,-393.91 266.82,-390.91 333.25,-390.88"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M184.62,-395.88C250.69,-395.88 267.18,-392.88 333.25,-392.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-397.87C251.05,-397.84 267.54,-394.84 333.25,-394.87"/>
</g>
<!-- W3 -->
<g id="node9" class="node">
<title>W3</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="538,-342.5 333,-342.5 333,-158.5 538,-158.5 538,-342.5"/>
<polygon fill="none" stroke="black" points="333.5,-319.5 333.5,-342.5 538.5,-342.5 538.5,-319.5 333.5,-319.5"/>
<text text-anchor="start" x="425" y="-327.3" font-family="arial" font-size="14.00">W3</text>
<polygon fill="none" stroke="black" points="333.5,-296.5 333.5,-319.5 359.5,-319.5 359.5,-296.5 333.5,-296.5"/>
<text text-anchor="start" x="339" y="-304.3" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="359.5,-296.5 359.5,-319.5 493.5,-319.5 493.5,-296.5 359.5,-296.5"/>
<text text-anchor="start" x="364.5" y="-304.3" font-family="arial" font-size="14.00">0.14 mm² (26 AWG)</text>
<polygon fill="none" stroke="black" points="493.5,-296.5 493.5,-319.5 538.5,-319.5 538.5,-296.5 493.5,-296.5"/>
<text text-anchor="start" x="498.5" y="-304.3" font-family="arial" font-size="14.00">0.3 m</text>
<text text-anchor="start" x="367.5" y="-283.3" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="338" y="-264.3" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="410" y="-264.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="471" y="-264.3" font-family="arial" font-size="14.00">X4:1:GND</text>
<polygon fill="#000000" stroke="none" points="333.5,-256.5 333.5,-258.5 538.5,-258.5 538.5,-256.5 333.5,-256.5"/>
<polygon fill="#000000" stroke="none" points="333.5,-254.5 333.5,-256.5 538.5,-256.5 538.5,-254.5 333.5,-254.5"/>
<polygon fill="#000000" stroke="none" points="333.5,-252.5 333.5,-254.5 538.5,-254.5 538.5,-252.5 333.5,-252.5"/>
<text text-anchor="start" x="335.5" y="-239.3" font-family="arial" font-size="14.00">X1:5:MISO</text>
<text text-anchor="start" x="409.5" y="-239.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
<text text-anchor="start" x="468.5" y="-239.3" font-family="arial" font-size="14.00">X4:3:MISO</text>
<polygon fill="#000000" stroke="none" points="333.5,-231.5 333.5,-233.5 538.5,-233.5 538.5,-231.5 333.5,-231.5"/>
<polygon fill="#0066ff" stroke="none" points="333.5,-229.5 333.5,-231.5 538.5,-231.5 538.5,-229.5 333.5,-229.5"/>
<polygon fill="#000000" stroke="none" points="333.5,-227.5 333.5,-229.5 538.5,-229.5 538.5,-227.5 333.5,-227.5"/>
<text text-anchor="start" x="335.5" y="-214.3" font-family="arial" font-size="14.00">X1:6:MOSI</text>
<text text-anchor="start" x="407.5" y="-214.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;OG &#160;&#160;&#160;</text>
<text text-anchor="start" x="468.5" y="-214.3" font-family="arial" font-size="14.00">X4:4:MOSI</text>
<polygon fill="#000000" stroke="none" points="333.5,-206.5 333.5,-208.5 538.5,-208.5 538.5,-206.5 333.5,-206.5"/>
<polygon fill="#ff8000" stroke="none" points="333.5,-204.5 333.5,-206.5 538.5,-206.5 538.5,-204.5 333.5,-204.5"/>
<polygon fill="#000000" stroke="none" points="333.5,-202.5 333.5,-204.5 538.5,-204.5 538.5,-202.5 333.5,-202.5"/>
<text text-anchor="start" x="339.5" y="-189.3" font-family="arial" font-size="14.00">X1:7:SCK</text>
<text text-anchor="start" x="410" y="-189.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;VT &#160;&#160;&#160;</text>
<text text-anchor="start" x="472.5" y="-189.3" font-family="arial" font-size="14.00">X4:5:SCK</text>
<polygon fill="#000000" stroke="none" points="333.5,-181.5 333.5,-183.5 538.5,-183.5 538.5,-181.5 333.5,-181.5"/>
<polygon fill="#8000ff" stroke="none" points="333.5,-179.5 333.5,-181.5 538.5,-181.5 538.5,-179.5 333.5,-179.5"/>
<polygon fill="#000000" stroke="none" points="333.5,-177.5 333.5,-179.5 538.5,-179.5 538.5,-177.5 333.5,-177.5"/>
<text text-anchor="start" x="367.5" y="-164.3" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="533.25,-346.62 331.25,-346.62 331.25,-161.12 533.25,-161.12 533.25,-346.62"/>
<polygon fill="none" stroke="black" points="331.25,-322.88 331.25,-346.62 533.25,-346.62 533.25,-322.88 331.25,-322.88"/>
<text text-anchor="start" x="421.75" y="-329.32" font-family="arial" font-size="14.00">W3</text>
<polygon fill="none" stroke="black" points="331.25,-299.12 331.25,-322.88 355.58,-322.88 355.58,-299.12 331.25,-299.12"/>
<text text-anchor="start" x="336.29" y="-305.57" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="355.58,-299.12 355.58,-322.88 488.67,-322.88 488.67,-299.12 355.58,-299.12"/>
<text text-anchor="start" x="360.62" y="-305.57" font-family="arial" font-size="14.00">0.14 mm² (26 AWG)</text>
<polygon fill="none" stroke="black" points="488.67,-299.12 488.67,-322.88 533.25,-322.88 533.25,-299.12 488.67,-299.12"/>
<text text-anchor="start" x="493.71" y="-305.57" font-family="arial" font-size="14.00">0.3 m</text>
<text text-anchor="start" x="364.88" y="-283.82" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="335.62" y="-264.82" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="406.38" y="-264.82" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="466.62" y="-264.82" font-family="arial" font-size="14.00">X4:1:GND</text>
<polygon fill="#000000" stroke="none" points="331.25,-259.12 331.25,-261.12 533.25,-261.12 533.25,-259.12 331.25,-259.12"/>
<polygon fill="#000000" stroke="none" points="331.25,-257.12 331.25,-259.12 533.25,-259.12 533.25,-257.12 331.25,-257.12"/>
<polygon fill="#000000" stroke="none" points="331.25,-255.12 331.25,-257.12 533.25,-257.12 533.25,-255.12 331.25,-255.12"/>
<text text-anchor="start" x="333" y="-239.82" font-family="arial" font-size="14.00">X1:5:MISO</text>
<text text-anchor="start" x="406" y="-239.82" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
<text text-anchor="start" x="464" y="-239.82" font-family="arial" font-size="14.00">X4:3:MISO</text>
<polygon fill="#000000" stroke="none" points="331.25,-234.12 331.25,-236.12 533.25,-236.12 533.25,-234.12 331.25,-234.12"/>
<polygon fill="#0066ff" stroke="none" points="331.25,-232.12 331.25,-234.12 533.25,-234.12 533.25,-232.12 331.25,-232.12"/>
<polygon fill="#000000" stroke="none" points="331.25,-230.12 331.25,-232.12 533.25,-232.12 533.25,-230.12 331.25,-230.12"/>
<text text-anchor="start" x="333" y="-214.82" font-family="arial" font-size="14.00">X1:6:MOSI</text>
<text text-anchor="start" x="404.12" y="-214.82" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;OG &#160;&#160;&#160;</text>
<text text-anchor="start" x="464" y="-214.82" font-family="arial" font-size="14.00">X4:4:MOSI</text>
<polygon fill="#000000" stroke="none" points="331.25,-209.12 331.25,-211.12 533.25,-211.12 533.25,-209.12 331.25,-209.12"/>
<polygon fill="#ff8000" stroke="none" points="331.25,-207.12 331.25,-209.12 533.25,-209.12 533.25,-207.12 331.25,-207.12"/>
<polygon fill="#000000" stroke="none" points="331.25,-205.12 331.25,-207.12 533.25,-207.12 533.25,-205.12 331.25,-205.12"/>
<text text-anchor="start" x="337.12" y="-189.82" font-family="arial" font-size="14.00">X1:7:SCK</text>
<text text-anchor="start" x="406.75" y="-189.82" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;VT &#160;&#160;&#160;</text>
<text text-anchor="start" x="468.12" y="-189.82" font-family="arial" font-size="14.00">X4:5:SCK</text>
<polygon fill="#000000" stroke="none" points="331.25,-184.12 331.25,-186.12 533.25,-186.12 533.25,-184.12 331.25,-184.12"/>
<polygon fill="#8000ff" stroke="none" points="331.25,-182.12 331.25,-184.12 533.25,-184.12 533.25,-182.12 331.25,-182.12"/>
<polygon fill="#000000" stroke="none" points="331.25,-180.12 331.25,-182.12 533.25,-182.12 533.25,-180.12 331.25,-180.12"/>
<text text-anchor="start" x="364.88" y="-164.82" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X1&#45;&#45;W3 -->
<g id="edge17" class="edge">
<title>X1:e&#45;&#45;W3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-458.5C296.61,-461.21 219.14,-256.21 333,-253.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-460.5C298.49,-460.5 221.01,-255.5 333,-255.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-462.5C300.36,-459.79 222.89,-254.79 333,-257.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-462.88C295.5,-465.59 216.64,-258.59 331.25,-255.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-464.87C297.37,-464.88 218.51,-257.88 331.25,-257.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-466.87C299.24,-464.16 220.38,-257.16 331.25,-259.87"/>
</g>
<!-- X1&#45;&#45;W3 -->
<g id="edge19" class="edge">
<title>X1:e&#45;&#45;W3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-365.5C273.7,-367.95 241.91,-230.95 333,-228.5"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M186.5,-367.5C275.65,-367.5 243.85,-230.5 333,-230.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-369.5C277.59,-367.05 245.8,-230.05 333,-232.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-370.88C272.78,-373.34 239.2,-233.34 331.25,-230.88"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M184.62,-372.88C274.73,-372.87 241.15,-232.88 331.25,-232.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-374.87C276.67,-372.41 243.09,-232.41 331.25,-234.87"/>
</g>
<!-- X1&#45;&#45;W3 -->
<g id="edge21" class="edge">
<title>X1:e&#45;&#45;W3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-342.5C274.31,-344.96 241.3,-205.96 333,-203.5"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M186.5,-344.5C276.25,-344.5 243.25,-205.5 333,-205.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-346.5C278.2,-344.04 245.19,-205.04 333,-207.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-347.88C273.4,-350.35 238.59,-208.35 331.25,-205.88"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M184.62,-349.88C275.34,-349.87 240.53,-207.88 331.25,-207.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-351.87C277.29,-349.4 242.47,-207.4 331.25,-209.87"/>
</g>
<!-- X1&#45;&#45;W3 -->
<g id="edge23" class="edge">
<title>X1:e&#45;&#45;W3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-319.5C274.93,-321.97 240.69,-180.97 333,-178.5"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M186.5,-321.5C276.87,-321.5 242.63,-180.5 333,-180.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186.5,-323.5C278.81,-321.03 244.57,-180.03 333,-182.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-324.88C274.02,-327.36 237.97,-183.36 331.25,-180.88"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M184.62,-326.88C275.96,-326.87 239.91,-182.88 331.25,-182.87"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.62,-328.87C277.9,-326.39 241.85,-182.39 331.25,-184.87"/>
</g>
<!-- X2 -->
<g id="node2" class="node">
<title>X2</title>
<polygon fill="#ffffff" stroke="black" points="864,-726.5 682,-726.5 682,-588.5 864,-588.5 864,-726.5"/>
<polygon fill="none" stroke="black" points="682,-703.5 682,-726.5 864,-726.5 864,-703.5 682,-703.5"/>
<text text-anchor="start" x="764.5" y="-711.3" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="682,-680.5 682,-703.5 775,-703.5 775,-680.5 682,-680.5"/>
<text text-anchor="start" x="686" y="-688.3" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="775,-680.5 775,-703.5 825,-703.5 825,-680.5 775,-680.5"/>
<text text-anchor="start" x="779" y="-688.3" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="825,-680.5 825,-703.5 864,-703.5 864,-680.5 825,-680.5"/>
<text text-anchor="start" x="829" y="-688.3" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="682,-657.5 682,-680.5 762,-680.5 762,-657.5 682,-657.5"/>
<text text-anchor="start" x="718" y="-665.3" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="762,-657.5 762,-680.5 864,-680.5 864,-657.5 762,-657.5"/>
<text text-anchor="start" x="797.5" y="-665.3" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="682,-634.5 682,-657.5 762,-657.5 762,-634.5 682,-634.5"/>
<text text-anchor="start" x="718" y="-642.3" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="762,-634.5 762,-657.5 864,-657.5 864,-634.5 762,-634.5"/>
<text text-anchor="start" x="800.5" y="-642.3" font-family="arial" font-size="14.00">+5V</text>
<polygon fill="none" stroke="black" points="682,-611.5 682,-634.5 762,-634.5 762,-611.5 682,-611.5"/>
<text text-anchor="start" x="718" y="-619.3" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="762,-611.5 762,-634.5 864,-634.5 864,-611.5 762,-611.5"/>
<text text-anchor="start" x="799.5" y="-619.3" font-family="arial" font-size="14.00">SCL</text>
<polygon fill="none" stroke="black" points="682,-588.5 682,-611.5 762,-611.5 762,-588.5 682,-588.5"/>
<text text-anchor="start" x="718" y="-596.3" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="762,-588.5 762,-611.5 864,-611.5 864,-588.5 762,-588.5"/>
<text text-anchor="start" x="799" y="-596.3" font-family="arial" font-size="14.00">SDA</text>
<polygon fill="#ffffff" stroke="black" points="857.25,-733.62 677.25,-733.62 677.25,-594.12 857.25,-594.12 857.25,-733.62"/>
<polygon fill="none" stroke="black" points="677.25,-709.88 677.25,-733.62 857.25,-733.62 857.25,-709.88 677.25,-709.88"/>
<text text-anchor="start" x="759" y="-716.33" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="677.25,-686.12 677.25,-709.88 770,-709.88 770,-686.12 677.25,-686.12"/>
<text text-anchor="start" x="681.25" y="-692.58" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="770,-686.12 770,-709.88 819.25,-709.88 819.25,-686.12 770,-686.12"/>
<text text-anchor="start" x="774" y="-692.58" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="819.25,-686.12 819.25,-709.88 857.25,-709.88 857.25,-686.12 819.25,-686.12"/>
<text text-anchor="start" x="823.25" y="-692.58" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="677.25,-663.12 677.25,-686.12 755.75,-686.12 755.75,-663.12 677.25,-663.12"/>
<text text-anchor="start" x="712.75" y="-668.83" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="755.75,-663.12 755.75,-686.12 857.25,-686.12 857.25,-663.12 755.75,-663.12"/>
<text text-anchor="start" x="791.12" y="-668.83" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="677.25,-640.12 677.25,-663.12 755.75,-663.12 755.75,-640.12 677.25,-640.12"/>
<text text-anchor="start" x="712.75" y="-645.83" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="755.75,-640.12 755.75,-663.12 857.25,-663.12 857.25,-640.12 755.75,-640.12"/>
<text text-anchor="start" x="794.12" y="-645.83" font-family="arial" font-size="14.00">+5V</text>
<polygon fill="none" stroke="black" points="677.25,-617.12 677.25,-640.12 755.75,-640.12 755.75,-617.12 677.25,-617.12"/>
<text text-anchor="start" x="712.75" y="-622.83" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="755.75,-617.12 755.75,-640.12 857.25,-640.12 857.25,-617.12 755.75,-617.12"/>
<text text-anchor="start" x="793.38" y="-622.83" font-family="arial" font-size="14.00">SCL</text>
<polygon fill="none" stroke="black" points="677.25,-594.12 677.25,-617.12 755.75,-617.12 755.75,-594.12 677.25,-594.12"/>
<text text-anchor="start" x="712.75" y="-599.83" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="755.75,-594.12 755.75,-617.12 857.25,-617.12 857.25,-594.12 755.75,-594.12"/>
<text text-anchor="start" x="792.62" y="-599.83" font-family="arial" font-size="14.00">SDA</text>
</g>
<!-- X3 -->
<g id="node3" class="node">
<title>X3</title>
<polygon fill="#ffffff" stroke="black" points="864,-518.5 682,-518.5 682,-380.5 864,-380.5 864,-518.5"/>
<polygon fill="none" stroke="black" points="682,-495.5 682,-518.5 864,-518.5 864,-495.5 682,-495.5"/>
<text text-anchor="start" x="764.5" y="-503.3" font-family="arial" font-size="14.00">X3</text>
<polygon fill="none" stroke="black" points="682,-472.5 682,-495.5 775,-495.5 775,-472.5 682,-472.5"/>
<text text-anchor="start" x="686" y="-480.3" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="775,-472.5 775,-495.5 825,-495.5 825,-472.5 775,-472.5"/>
<text text-anchor="start" x="779" y="-480.3" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="825,-472.5 825,-495.5 864,-495.5 864,-472.5 825,-472.5"/>
<text text-anchor="start" x="829" y="-480.3" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="682,-449.5 682,-472.5 762,-472.5 762,-449.5 682,-449.5"/>
<text text-anchor="start" x="718" y="-457.3" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="762,-449.5 762,-472.5 864,-472.5 864,-449.5 762,-449.5"/>
<text text-anchor="start" x="797.5" y="-457.3" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="682,-426.5 682,-449.5 762,-449.5 762,-426.5 682,-426.5"/>
<text text-anchor="start" x="718" y="-434.3" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="762,-426.5 762,-449.5 864,-449.5 864,-426.5 762,-426.5"/>
<text text-anchor="start" x="800.5" y="-434.3" font-family="arial" font-size="14.00">+5V</text>
<polygon fill="none" stroke="black" points="682,-403.5 682,-426.5 762,-426.5 762,-403.5 682,-403.5"/>
<text text-anchor="start" x="718" y="-411.3" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="762,-403.5 762,-426.5 864,-426.5 864,-403.5 762,-403.5"/>
<text text-anchor="start" x="799.5" y="-411.3" font-family="arial" font-size="14.00">SCL</text>
<polygon fill="none" stroke="black" points="682,-380.5 682,-403.5 762,-403.5 762,-380.5 682,-380.5"/>
<text text-anchor="start" x="718" y="-388.3" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="762,-380.5 762,-403.5 864,-403.5 864,-380.5 762,-380.5"/>
<text text-anchor="start" x="799" y="-388.3" font-family="arial" font-size="14.00">SDA</text>
<polygon fill="#ffffff" stroke="black" points="857.25,-523.62 677.25,-523.62 677.25,-384.12 857.25,-384.12 857.25,-523.62"/>
<polygon fill="none" stroke="black" points="677.25,-499.88 677.25,-523.62 857.25,-523.62 857.25,-499.88 677.25,-499.88"/>
<text text-anchor="start" x="759" y="-506.32" font-family="arial" font-size="14.00">X3</text>
<polygon fill="none" stroke="black" points="677.25,-476.12 677.25,-499.88 770,-499.88 770,-476.12 677.25,-476.12"/>
<text text-anchor="start" x="681.25" y="-482.57" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="770,-476.12 770,-499.88 819.25,-499.88 819.25,-476.12 770,-476.12"/>
<text text-anchor="start" x="774" y="-482.57" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="819.25,-476.12 819.25,-499.88 857.25,-499.88 857.25,-476.12 819.25,-476.12"/>
<text text-anchor="start" x="823.25" y="-482.57" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="677.25,-453.12 677.25,-476.12 755.75,-476.12 755.75,-453.12 677.25,-453.12"/>
<text text-anchor="start" x="712.75" y="-458.82" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="755.75,-453.12 755.75,-476.12 857.25,-476.12 857.25,-453.12 755.75,-453.12"/>
<text text-anchor="start" x="791.12" y="-458.82" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="677.25,-430.12 677.25,-453.12 755.75,-453.12 755.75,-430.12 677.25,-430.12"/>
<text text-anchor="start" x="712.75" y="-435.82" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="755.75,-430.12 755.75,-453.12 857.25,-453.12 857.25,-430.12 755.75,-430.12"/>
<text text-anchor="start" x="794.12" y="-435.82" font-family="arial" font-size="14.00">+5V</text>
<polygon fill="none" stroke="black" points="677.25,-407.12 677.25,-430.12 755.75,-430.12 755.75,-407.12 677.25,-407.12"/>
<text text-anchor="start" x="712.75" y="-412.82" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="755.75,-407.12 755.75,-430.12 857.25,-430.12 857.25,-407.12 755.75,-407.12"/>
<text text-anchor="start" x="793.38" y="-412.82" font-family="arial" font-size="14.00">SCL</text>
<polygon fill="none" stroke="black" points="677.25,-384.12 677.25,-407.12 755.75,-407.12 755.75,-384.12 677.25,-384.12"/>
<text text-anchor="start" x="712.75" y="-389.82" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="755.75,-384.12 755.75,-407.12 857.25,-407.12 857.25,-384.12 755.75,-384.12"/>
<text text-anchor="start" x="792.62" y="-389.82" font-family="arial" font-size="14.00">SDA</text>
</g>
<!-- X4 -->
<g id="node4" class="node">
<title>X4</title>
<polygon fill="#ffffff" stroke="black" points="864,-322 682,-322 682,-161 864,-161 864,-322"/>
<polygon fill="none" stroke="black" points="682,-298.5 682,-321.5 864,-321.5 864,-298.5 682,-298.5"/>
<text text-anchor="start" x="764.5" y="-306.3" font-family="arial" font-size="14.00">X4</text>
<polygon fill="none" stroke="black" points="682,-275.5 682,-298.5 775,-298.5 775,-275.5 682,-275.5"/>
<text text-anchor="start" x="686" y="-283.3" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="775,-275.5 775,-298.5 825,-298.5 825,-275.5 775,-275.5"/>
<text text-anchor="start" x="779" y="-283.3" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="825,-275.5 825,-298.5 864,-298.5 864,-275.5 825,-275.5"/>
<text text-anchor="start" x="829" y="-283.3" font-family="arial" font-size="14.00">5&#45;pin</text>
<polygon fill="none" stroke="black" points="682,-252.5 682,-275.5 759,-275.5 759,-252.5 682,-252.5"/>
<text text-anchor="start" x="716.5" y="-260.3" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="759,-252.5 759,-275.5 864,-275.5 864,-252.5 759,-252.5"/>
<text text-anchor="start" x="796" y="-260.3" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="682,-229.5 682,-252.5 759,-252.5 759,-229.5 682,-229.5"/>
<text text-anchor="start" x="716.5" y="-237.3" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="759,-229.5 759,-252.5 864,-252.5 864,-229.5 759,-229.5"/>
<text text-anchor="start" x="795" y="-237.3" font-family="arial" font-size="14.00">+12V</text>
<polygon fill="none" stroke="black" points="682,-206.5 682,-229.5 759,-229.5 759,-206.5 682,-206.5"/>
<text text-anchor="start" x="716.5" y="-214.3" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="759,-206.5 759,-229.5 864,-229.5 864,-206.5 759,-206.5"/>
<text text-anchor="start" x="793" y="-214.3" font-family="arial" font-size="14.00">MISO</text>
<polygon fill="none" stroke="black" points="682,-183.5 682,-206.5 759,-206.5 759,-183.5 682,-183.5"/>
<text text-anchor="start" x="716.5" y="-191.3" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="759,-183.5 759,-206.5 864,-206.5 864,-183.5 759,-183.5"/>
<text text-anchor="start" x="793" y="-191.3" font-family="arial" font-size="14.00">MOSI</text>
<polygon fill="none" stroke="black" points="682,-160.5 682,-183.5 759,-183.5 759,-160.5 682,-160.5"/>
<text text-anchor="start" x="716.5" y="-168.3" font-family="arial" font-size="14.00">5</text>
<polygon fill="none" stroke="black" points="759,-160.5 759,-183.5 864,-183.5 864,-160.5 759,-160.5"/>
<text text-anchor="start" x="797.5" y="-168.3" font-family="arial" font-size="14.00">SCK</text>
<polygon fill="#ffffff" stroke="black" points="857.25,-325.12 677.25,-325.12 677.25,-162.62 857.25,-162.62 857.25,-325.12"/>
<polygon fill="none" stroke="black" points="677.25,-301.38 677.25,-325.12 857.25,-325.12 857.25,-301.38 677.25,-301.38"/>
<text text-anchor="start" x="759" y="-307.82" font-family="arial" font-size="14.00">X4</text>
<polygon fill="none" stroke="black" points="677.25,-277.62 677.25,-301.38 770,-301.38 770,-277.62 677.25,-277.62"/>
<text text-anchor="start" x="681.25" y="-284.07" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="770,-277.62 770,-301.38 819.25,-301.38 819.25,-277.62 770,-277.62"/>
<text text-anchor="start" x="774" y="-284.07" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="819.25,-277.62 819.25,-301.38 857.25,-301.38 857.25,-277.62 819.25,-277.62"/>
<text text-anchor="start" x="823.25" y="-284.07" font-family="arial" font-size="14.00">5&#45;pin</text>
<polygon fill="none" stroke="black" points="677.25,-254.62 677.25,-277.62 752.75,-277.62 752.75,-254.62 677.25,-254.62"/>
<text text-anchor="start" x="711.25" y="-260.32" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="752.75,-254.62 752.75,-277.62 857.25,-277.62 857.25,-254.62 752.75,-254.62"/>
<text text-anchor="start" x="789.62" y="-260.32" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="677.25,-231.62 677.25,-254.62 752.75,-254.62 752.75,-231.62 677.25,-231.62"/>
<text text-anchor="start" x="711.25" y="-237.32" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="752.75,-231.62 752.75,-254.62 857.25,-254.62 857.25,-231.62 752.75,-231.62"/>
<text text-anchor="start" x="788.88" y="-237.32" font-family="arial" font-size="14.00">+12V</text>
<polygon fill="none" stroke="black" points="677.25,-208.62 677.25,-231.62 752.75,-231.62 752.75,-208.62 677.25,-208.62"/>
<text text-anchor="start" x="711.25" y="-214.32" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="752.75,-208.62 752.75,-231.62 857.25,-231.62 857.25,-208.62 752.75,-208.62"/>
<text text-anchor="start" x="787" y="-214.32" font-family="arial" font-size="14.00">MISO</text>
<polygon fill="none" stroke="black" points="677.25,-185.62 677.25,-208.62 752.75,-208.62 752.75,-185.62 677.25,-185.62"/>
<text text-anchor="start" x="711.25" y="-191.32" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="752.75,-185.62 752.75,-208.62 857.25,-208.62 857.25,-185.62 752.75,-185.62"/>
<text text-anchor="start" x="787" y="-191.32" font-family="arial" font-size="14.00">MOSI</text>
<polygon fill="none" stroke="black" points="677.25,-162.62 677.25,-185.62 752.75,-185.62 752.75,-162.62 677.25,-162.62"/>
<text text-anchor="start" x="711.25" y="-168.32" font-family="arial" font-size="14.00">5</text>
<polygon fill="none" stroke="black" points="752.75,-162.62 752.75,-185.62 857.25,-185.62 857.25,-162.62 752.75,-162.62"/>
<text text-anchor="start" x="791.12" y="-168.32" font-family="arial" font-size="14.00">SCK</text>
</g>
<!-- __F_1 -->
<g id="node5" class="node">
<title>__F_1</title>
<polygon fill="#ffffff" stroke="black" points="189,-70 0,-70 0,-47 189,-47 189,-70"/>
<polygon fill="none" stroke="black" points="0.5,-46.5 0.5,-69.5 87.5,-69.5 87.5,-46.5 0.5,-46.5"/>
<text text-anchor="start" x="4.5" y="-54.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="none" stroke="black" points="87.5,-46.5 87.5,-69.5 154.5,-69.5 154.5,-46.5 87.5,-46.5"/>
<text text-anchor="start" x="91.5" y="-54.3" font-family="arial" font-size="14.00">0.25 mm²</text>
<polygon fill="none" stroke="black" points="154.5,-46.5 154.5,-69.5 181.5,-69.5 181.5,-46.5 154.5,-46.5"/>
<text text-anchor="start" x="158.5" y="-54.3" font-family="arial" font-size="14.00">YE</text>
<polygon fill="#ffff00" stroke="none" points="181.5,-46.5 181.5,-69.5 189.5,-69.5 189.5,-46.5 181.5,-46.5"/>
<polygon fill="none" stroke="black" points="181.5,-46.5 181.5,-69.5 189.5,-69.5 189.5,-46.5 181.5,-46.5"/>
<polygon fill="#ffffff" stroke="black" points="187.25,-71.75 0,-71.75 0,-48 187.25,-48 187.25,-71.75"/>
<polygon fill="none" stroke="black" points="0,-48 0,-71.75 86.75,-71.75 86.75,-48 0,-48"/>
<text text-anchor="start" x="4" y="-54.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="none" stroke="black" points="86.75,-48 86.75,-71.75 153.25,-71.75 153.25,-48 86.75,-48"/>
<text text-anchor="start" x="90.75" y="-54.45" font-family="arial" font-size="14.00">0.25 mm²</text>
<polygon fill="none" stroke="black" points="153.25,-48 153.25,-71.75 179.25,-71.75 179.25,-48 153.25,-48"/>
<text text-anchor="start" x="157.25" y="-54.45" font-family="arial" font-size="14.00">YE</text>
<polygon fill="#ffff00" stroke="none" points="179.25,-48 179.25,-71.75 187.25,-71.75 187.25,-48 179.25,-48"/>
<polygon fill="none" stroke="black" points="179.25,-48 179.25,-71.75 187.25,-71.75 187.25,-48 179.25,-48"/>
</g>
<!-- W4 -->
<g id="node10" class="node">
<title>W4</title>
<polygon fill="#ffffff" stroke="black" points="534.5,-134.5 336.5,-134.5 336.5,-0.5 534.5,-0.5 534.5,-134.5"/>
<polygon fill="none" stroke="black" points="336.5,-111.5 336.5,-134.5 534.5,-134.5 534.5,-111.5 336.5,-111.5"/>
<text text-anchor="start" x="424.5" y="-119.3" font-family="arial" font-size="14.00">W4</text>
<polygon fill="none" stroke="black" points="336.5,-88.5 336.5,-111.5 359.5,-111.5 359.5,-88.5 336.5,-88.5"/>
<text text-anchor="start" x="340.5" y="-96.3" font-family="arial" font-size="14.00">2x</text>
<polygon fill="none" stroke="black" points="359.5,-88.5 359.5,-111.5 491.5,-111.5 491.5,-88.5 359.5,-88.5"/>
<text text-anchor="start" x="363.5" y="-96.3" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
<polygon fill="none" stroke="black" points="491.5,-88.5 491.5,-111.5 534.5,-111.5 534.5,-88.5 491.5,-88.5"/>
<text text-anchor="start" x="495.5" y="-96.3" font-family="arial" font-size="14.00">0.3 m</text>
<text text-anchor="start" x="347.5" y="-75.3" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="374" y="-56.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="460.5" y="-56.3" font-family="arial" font-size="14.00">X4:1:GND</text>
<polygon fill="#000000" stroke="none" points="336.5,-48.5 336.5,-50.5 534.5,-50.5 534.5,-48.5 336.5,-48.5"/>
<polygon fill="#000000" stroke="none" points="336.5,-46.5 336.5,-48.5 534.5,-48.5 534.5,-46.5 336.5,-46.5"/>
<polygon fill="#000000" stroke="none" points="336.5,-44.5 336.5,-46.5 534.5,-46.5 534.5,-44.5 336.5,-44.5"/>
<text text-anchor="start" x="373.5" y="-31.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="460" y="-31.3" font-family="arial" font-size="14.00">X4:2:+12V</text>
<polygon fill="#000000" stroke="none" points="336.5,-23.5 336.5,-25.5 534.5,-25.5 534.5,-23.5 336.5,-23.5"/>
<polygon fill="#ff0000" stroke="none" points="336.5,-21.5 336.5,-23.5 534.5,-23.5 534.5,-21.5 336.5,-21.5"/>
<polygon fill="#000000" stroke="none" points="336.5,-19.5 336.5,-21.5 534.5,-21.5 534.5,-19.5 336.5,-19.5"/>
<text text-anchor="start" x="347.5" y="-6.3" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" points="530.12,-136.62 334.38,-136.62 334.38,-1.12 530.12,-1.12 530.12,-136.62"/>
<polygon fill="none" stroke="black" points="334.38,-112.88 334.38,-136.62 530.12,-136.62 530.12,-112.88 334.38,-112.88"/>
<text text-anchor="start" x="421.75" y="-119.33" font-family="arial" font-size="14.00">W4</text>
<polygon fill="none" stroke="black" points="334.38,-89.12 334.38,-112.88 356.62,-112.88 356.62,-89.12 334.38,-89.12"/>
<text text-anchor="start" x="338.38" y="-95.58" font-family="arial" font-size="14.00">2x</text>
<polygon fill="none" stroke="black" points="356.62,-89.12 356.62,-112.88 487.62,-112.88 487.62,-89.12 356.62,-89.12"/>
<text text-anchor="start" x="360.62" y="-95.58" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
<polygon fill="none" stroke="black" points="487.62,-89.12 487.62,-112.88 530.12,-112.88 530.12,-89.12 487.62,-89.12"/>
<text text-anchor="start" x="491.62" y="-95.58" font-family="arial" font-size="14.00">0.3 m</text>
<text text-anchor="start" x="344.96" y="-73.83" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="370.75" y="-54.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="456.54" y="-54.83" font-family="arial" font-size="14.00">X4:1:GND</text>
<polygon fill="#000000" stroke="none" points="334.38,-49.12 334.38,-51.12 530.12,-51.12 530.12,-49.12 334.38,-49.12"/>
<polygon fill="#000000" stroke="none" points="334.38,-47.12 334.38,-49.12 530.12,-49.12 530.12,-47.12 334.38,-47.12"/>
<polygon fill="#000000" stroke="none" points="334.38,-45.12 334.38,-47.12 530.12,-47.12 530.12,-45.12 334.38,-45.12"/>
<text text-anchor="start" x="370" y="-29.82" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="455.79" y="-29.82" font-family="arial" font-size="14.00">X4:2:+12V</text>
<polygon fill="#000000" stroke="none" points="334.38,-24.12 334.38,-26.12 530.12,-26.12 530.12,-24.12 334.38,-24.12"/>
<polygon fill="#ff0000" stroke="none" points="334.38,-22.12 334.38,-24.12 530.12,-24.12 530.12,-22.12 334.38,-22.12"/>
<polygon fill="#000000" stroke="none" points="334.38,-20.12 334.38,-22.12 530.12,-22.12 530.12,-20.12 334.38,-20.12"/>
<text text-anchor="start" x="344.96" y="-4.83" font-family="arial" font-size="14.00"> </text>
</g>
<!-- __F_1&#45;&#45;W4 -->
<g id="edge25" class="edge">
<title>__F_1:e&#45;&#45;W4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M189,-56.5C253.16,-56.85 269.07,-45.85 335.5,-45.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M189,-58.5C254.29,-58.5 270.21,-47.5 335.5,-47.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M189,-60.5C255.43,-60.15 271.34,-49.15 335.5,-49.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M187.25,-57.88C251.15,-58.28 266.93,-46.28 333.25,-45.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M187.25,-59.87C252.36,-59.88 268.14,-47.88 333.25,-47.87"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M187.25,-61.87C253.57,-61.47 269.35,-49.47 333.25,-49.87"/>
</g>
<!-- __F_2 -->
<g id="node6" class="node">
<title>__F_2</title>
<polygon fill="#ffffff" stroke="black" points="189,-23 0,-23 0,0 189,0 189,-23"/>
<polygon fill="none" stroke="black" points="0.5,0.5 0.5,-22.5 87.5,-22.5 87.5,0.5 0.5,0.5"/>
<text text-anchor="start" x="4.5" y="-7.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="none" stroke="black" points="87.5,0.5 87.5,-22.5 154.5,-22.5 154.5,0.5 87.5,0.5"/>
<text text-anchor="start" x="91.5" y="-7.3" font-family="arial" font-size="14.00">0.25 mm²</text>
<polygon fill="none" stroke="black" points="154.5,0.5 154.5,-22.5 181.5,-22.5 181.5,0.5 154.5,0.5"/>
<text text-anchor="start" x="158.5" y="-7.3" font-family="arial" font-size="14.00">YE</text>
<polygon fill="#ffff00" stroke="none" points="181.5,0.5 181.5,-22.5 189.5,-22.5 189.5,0.5 181.5,0.5"/>
<polygon fill="none" stroke="black" points="181.5,0.5 181.5,-22.5 189.5,-22.5 189.5,0.5 181.5,0.5"/>
<polygon fill="#ffffff" stroke="black" points="187.25,-23.75 0,-23.75 0,0 187.25,0 187.25,-23.75"/>
<polygon fill="none" stroke="black" points="0,0 0,-23.75 86.75,-23.75 86.75,0 0,0"/>
<text text-anchor="start" x="4" y="-6.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="none" stroke="black" points="86.75,0 86.75,-23.75 153.25,-23.75 153.25,0 86.75,0"/>
<text text-anchor="start" x="90.75" y="-6.45" font-family="arial" font-size="14.00">0.25 mm²</text>
<polygon fill="none" stroke="black" points="153.25,0 153.25,-23.75 179.25,-23.75 179.25,0 153.25,0"/>
<text text-anchor="start" x="157.25" y="-6.45" font-family="arial" font-size="14.00">YE</text>
<polygon fill="#ffff00" stroke="none" points="179.25,0 179.25,-23.75 187.25,-23.75 187.25,0 179.25,0"/>
<polygon fill="none" stroke="black" points="179.25,0 179.25,-23.75 187.25,-23.75 187.25,0 179.25,0"/>
</g>
<!-- __F_2&#45;&#45;W4 -->
<g id="edge27" class="edge">
<title>__F_2:e&#45;&#45;W4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M189,-9.5C255.43,-9.85 271.34,-20.85 335.5,-20.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M189,-11.5C254.29,-11.5 270.21,-22.5 335.5,-22.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M189,-13.5C253.16,-13.15 269.07,-24.15 335.5,-24.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M187.25,-9.88C253.46,-10.23 269.32,-21.23 333.25,-20.88"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M187.25,-11.88C252.32,-11.88 268.18,-22.88 333.25,-22.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M187.25,-13.87C251.18,-13.52 267.04,-24.52 333.25,-24.87"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-669.5C600.37,-669.51 616.64,-667.51 682,-667.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-671.5C600.62,-671.5 616.88,-669.5 682,-669.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-673.5C600.86,-673.49 617.13,-671.49 682,-671.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-675.88C595.79,-675.91 611.98,-672.91 677.25,-672.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-677.88C596.15,-677.88 612.35,-674.88 677.25,-674.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-679.87C596.52,-679.84 612.71,-676.84 677.25,-676.87"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-644.5C600.49,-644.5 616.76,-643.5 682,-643.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M535.5,-646.5C600.61,-646.5 616.89,-645.5 682,-645.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-648.5C600.74,-648.5 617.01,-647.5 682,-647.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-650.88C596.02,-650.88 612.24,-649.88 677.25,-649.88"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M531.25,-652.88C596.14,-652.88 612.36,-651.88 677.25,-651.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-654.87C596.26,-654.87 612.48,-653.87 677.25,-653.87"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge6" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-619.5C600.74,-619.5 617.01,-620.5 682,-620.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M535.5,-621.5C600.61,-621.5 616.89,-622.5 682,-622.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-623.5C600.49,-623.5 616.76,-624.5 682,-624.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-625.88C596.26,-625.88 612.48,-626.88 677.25,-626.88"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M531.25,-627.88C596.14,-627.88 612.36,-628.88 677.25,-628.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-629.87C596.02,-629.87 612.24,-630.87 677.25,-630.87"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge8" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-594.5C600.99,-594.53 617.24,-597.53 682,-597.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M535.5,-596.5C600.62,-596.5 616.88,-599.5 682,-599.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-598.5C600.26,-598.47 616.51,-601.47 682,-601.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-600.88C596.52,-600.91 612.71,-603.91 677.25,-603.88"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M531.25,-602.88C596.15,-602.88 612.35,-605.88 677.25,-605.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-604.87C595.79,-604.84 611.98,-607.84 677.25,-607.87"/>
</g>
<!-- W2&#45;&#45;X3 -->
<g id="edge10" class="edge">
<title>W2:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-461.5C600.37,-461.51 616.64,-459.51 682,-459.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-463.5C600.62,-463.5 616.88,-461.5 682,-461.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-465.5C600.86,-465.49 617.13,-463.49 682,-463.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-465.88C595.79,-465.91 611.98,-462.91 677.25,-462.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-467.88C596.15,-467.88 612.35,-464.88 677.25,-464.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-469.87C596.52,-469.84 612.71,-466.84 677.25,-466.87"/>
</g>
<!-- W2&#45;&#45;X3 -->
<g id="edge12" class="edge">
<title>W2:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-436.5C600.49,-436.5 616.76,-435.5 682,-435.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M535.5,-438.5C600.61,-438.5 616.89,-437.5 682,-437.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-440.5C600.74,-440.5 617.01,-439.5 682,-439.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-440.88C596.02,-440.88 612.24,-439.88 677.25,-439.88"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M531.25,-442.87C596.14,-442.88 612.36,-441.88 677.25,-441.87"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-444.87C596.26,-444.87 612.48,-443.87 677.25,-443.87"/>
</g>
<!-- W2&#45;&#45;X3 -->
<g id="edge14" class="edge">
<title>W2:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-411.5C600.74,-411.5 617.01,-412.5 682,-412.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M535.5,-413.5C600.61,-413.5 616.89,-414.5 682,-414.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-415.5C600.49,-415.5 616.76,-416.5 682,-416.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-415.88C596.26,-415.88 612.48,-416.88 677.25,-416.88"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M531.25,-417.87C596.14,-417.88 612.36,-418.88 677.25,-418.87"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-419.87C596.02,-419.87 612.24,-420.87 677.25,-420.87"/>
</g>
<!-- W2&#45;&#45;X3 -->
<g id="edge16" class="edge">
<title>W2:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-386.5C600.99,-386.53 617.24,-389.53 682,-389.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M535.5,-388.5C600.62,-388.5 616.88,-391.5 682,-391.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-390.5C600.26,-390.47 616.51,-393.47 682,-393.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-390.88C596.52,-390.91 612.71,-393.91 677.25,-393.88"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M531.25,-392.88C596.15,-392.88 612.35,-395.88 677.25,-395.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-394.87C595.79,-394.84 611.98,-397.84 677.25,-397.87"/>
</g>
<!-- W3&#45;&#45;X4 -->
<g id="edge18" class="edge">
<title>W3:e&#45;&#45;X4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M538,-253.5C603.12,-253.76 618.87,-262.76 682,-262.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M538,-255.5C602.12,-255.5 617.88,-264.5 682,-264.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M538,-257.5C601.13,-257.24 616.88,-266.24 682,-266.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M533.25,-255.88C598.25,-256.09 614.05,-264.09 677.25,-263.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M533.25,-257.88C597.35,-257.88 613.15,-265.88 677.25,-265.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M533.25,-259.87C596.45,-259.66 612.25,-267.66 677.25,-267.87"/>
</g>
<!-- W3&#45;&#45;X4 -->
<g id="edge20" class="edge">
<title>W3:e&#45;&#45;X4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M538,-228.5C600.97,-228.97 616.45,-215.97 682,-215.5"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M538,-230.5C602.26,-230.5 617.74,-217.5 682,-217.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M538,-232.5C603.55,-232.03 619.03,-219.03 682,-219.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M533.25,-230.88C596.22,-231.34 611.7,-218.34 677.25,-217.88"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M533.25,-232.88C597.51,-232.88 612.99,-219.88 677.25,-219.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M533.25,-234.87C598.8,-234.41 614.28,-221.41 677.25,-221.87"/>
</g>
<!-- W3&#45;&#45;X4 -->
<g id="edge22" class="edge">
<title>W3:e&#45;&#45;X4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M538,-203.5C601.04,-203.86 616.66,-192.86 682,-192.5"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M538,-205.5C602.19,-205.5 617.81,-194.5 682,-194.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M538,-207.5C603.34,-207.14 618.96,-196.14 682,-196.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M533.25,-205.88C596.29,-206.24 611.91,-195.24 677.25,-194.88"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M533.25,-207.88C597.44,-207.88 613.06,-196.88 677.25,-196.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M533.25,-209.87C598.59,-209.51 614.21,-198.51 677.25,-198.87"/>
</g>
<!-- W3&#45;&#45;X4 -->
<g id="edge24" class="edge">
<title>W3:e&#45;&#45;X4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M538,-178.5C601.13,-178.76 616.88,-169.76 682,-169.5"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M538,-180.5C602.12,-180.5 617.88,-171.5 682,-171.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M538,-182.5C603.12,-182.24 618.87,-173.24 682,-173.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M533.25,-180.88C596.38,-181.14 612.13,-172.14 677.25,-171.88"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M533.25,-182.88C597.37,-182.88 613.13,-173.88 677.25,-173.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M533.25,-184.87C598.37,-184.61 614.12,-175.61 677.25,-175.87"/>
</g>
<!-- W4&#45;&#45;X4 -->
<g id="edge26" class="edge">
<title>W4:e&#45;&#45;X4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-45.5C653.72,-48.24 567.49,-265.24 682,-262.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-47.5C651.87,-47.5 565.63,-264.5 682,-264.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-49.5C650.01,-46.76 563.78,-263.76 682,-266.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-45.88C649.72,-48.62 562.5,-266.62 677.25,-263.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-47.88C647.86,-47.88 560.64,-265.88 677.25,-265.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-49.87C646,-47.13 558.78,-265.13 677.25,-267.87"/>
</g>
<!-- W4&#45;&#45;X4 -->
<g id="edge28" class="edge">
<title>W4:e&#45;&#45;X4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-20.5C654.09,-23.24 567.12,-241.24 682,-238.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M535.5,-22.5C652.23,-22.5 565.27,-240.5 682,-240.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M535.5,-24.5C650.38,-21.76 563.41,-239.76 682,-242.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-20.88C650.46,-23.62 561.75,-243.62 677.25,-240.88"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M531.25,-22.88C648.6,-22.88 559.9,-242.88 677.25,-242.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M531.25,-24.87C646.75,-22.13 558.04,-242.13 677.25,-244.87"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 40 KiB

After

Width:  |  Height:  |  Size: 42 KiB

246
examples/ex01.html generated
View File

@ -30,178 +30,178 @@
<div id="diagram">
<!-- XML and DOCTYPE declarations from SVG file removed -->
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="931pt" height="232pt"
viewBox="0.00 0.00 931.00 232.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 228)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-228 927,-228 927,4 -4,4"/>
<svg width="923pt" height="234pt"
viewBox="0.00 0.00 923.25 233.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 229.5)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-229.5 919.25,-229.5 919.25,4 -4,4"/>
<!-- X1 -->
<g id="node1" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="182,-191 0,-191 0,-53 182,-53 182,-191"/>
<polygon fill="none" stroke="black" points="0,-168 0,-191 182,-191 182,-168 0,-168"/>
<text text-anchor="start" x="82.5" y="-175.8" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-145 0,-168 93,-168 93,-145 0,-145"/>
<text text-anchor="start" x="4" y="-152.8" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="93,-145 93,-168 143,-168 143,-145 93,-145"/>
<text text-anchor="start" x="97" y="-152.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="143,-145 143,-168 182,-168 182,-145 143,-145"/>
<text text-anchor="start" x="147" y="-152.8" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-122 0,-145 103,-145 103,-122 0,-122"/>
<text text-anchor="start" x="36" y="-129.8" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="103,-122 103,-145 182,-145 182,-122 103,-122"/>
<text text-anchor="start" x="138.5" y="-129.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-99 0,-122 103,-122 103,-99 0,-99"/>
<text text-anchor="start" x="37" y="-106.8" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="103,-99 103,-122 182,-122 182,-99 103,-99"/>
<text text-anchor="start" x="138.5" y="-106.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0,-76 0,-99 103,-99 103,-76 0,-76"/>
<text text-anchor="start" x="42" y="-83.8" font-family="arial" font-size="14.00">RX</text>
<polygon fill="none" stroke="black" points="103,-76 103,-99 182,-99 182,-76 103,-76"/>
<text text-anchor="start" x="138.5" y="-83.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-53 0,-76 103,-76 103,-53 0,-53"/>
<text text-anchor="start" x="42.5" y="-60.8" font-family="arial" font-size="14.00">TX</text>
<polygon fill="none" stroke="black" points="103,-53 103,-76 182,-76 182,-53 103,-53"/>
<text text-anchor="start" x="138.5" y="-60.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="#ffffff" stroke="black" points="180,-191.5 0,-191.5 0,-52 180,-52 180,-191.5"/>
<polygon fill="none" stroke="black" points="0,-167.75 0,-191.5 180,-191.5 180,-167.75 0,-167.75"/>
<text text-anchor="start" x="81.75" y="-174.2" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-144 0,-167.75 92.75,-167.75 92.75,-144 0,-144"/>
<text text-anchor="start" x="4" y="-150.45" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="92.75,-144 92.75,-167.75 142,-167.75 142,-144 92.75,-144"/>
<text text-anchor="start" x="96.75" y="-150.45" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="142,-144 142,-167.75 180,-167.75 180,-144 142,-144"/>
<text text-anchor="start" x="146" y="-150.45" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-121 0,-144 101.5,-144 101.5,-121 0,-121"/>
<text text-anchor="start" x="35.38" y="-126.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="101.5,-121 101.5,-144 180,-144 180,-121 101.5,-121"/>
<text text-anchor="start" x="137" y="-126.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-98 0,-121 101.5,-121 101.5,-98 0,-98"/>
<text text-anchor="start" x="36.5" y="-103.7" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="101.5,-98 101.5,-121 180,-121 180,-98 101.5,-98"/>
<text text-anchor="start" x="137" y="-103.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0,-75 0,-98 101.5,-98 101.5,-75 0,-75"/>
<text text-anchor="start" x="41.38" y="-80.7" font-family="arial" font-size="14.00">RX</text>
<polygon fill="none" stroke="black" points="101.5,-75 101.5,-98 180,-98 180,-75 101.5,-75"/>
<text text-anchor="start" x="137" y="-80.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-52 0,-75 101.5,-75 101.5,-52 0,-52"/>
<text text-anchor="start" x="42.12" y="-57.7" font-family="arial" font-size="14.00">TX</text>
<polygon fill="none" stroke="black" points="101.5,-52 101.5,-75 180,-75 180,-52 101.5,-52"/>
<text text-anchor="start" x="137" y="-57.7" font-family="arial" font-size="14.00">4</text>
</g>
<!-- W1 -->
<g id="node3" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" points="597,-224 326,-224 326,0 597,0 597,-224"/>
<polygon fill="none" stroke="black" points="326.5,-201 326.5,-224 597.5,-224 597.5,-201 326.5,-201"/>
<text text-anchor="start" x="451" y="-208.8" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="326.5,-178 326.5,-201 369.5,-201 369.5,-178 326.5,-178"/>
<text text-anchor="start" x="330.5" y="-185.8" font-family="arial" font-size="14.00">Serial</text>
<polygon fill="none" stroke="black" points="369.5,-178 369.5,-201 392.5,-201 392.5,-178 369.5,-178"/>
<text text-anchor="start" x="373.5" y="-185.8" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="392.5,-178 392.5,-201 524.5,-201 524.5,-178 392.5,-178"/>
<text text-anchor="start" x="396.5" y="-185.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
<polygon fill="none" stroke="black" points="524.5,-178 524.5,-201 554.5,-201 554.5,-178 524.5,-178"/>
<text text-anchor="start" x="528.5" y="-185.8" font-family="arial" font-size="14.00">+ S</text>
<polygon fill="none" stroke="black" points="554.5,-178 554.5,-201 597.5,-201 597.5,-178 554.5,-178"/>
<text text-anchor="start" x="558.5" y="-185.8" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="369" y="-164.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="339.5" y="-145.8" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="430.5" y="-145.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="522" y="-145.8" font-family="arial" font-size="14.00">X2:1:GND</text>
<polygon fill="#000000" stroke="none" points="326.5,-138 326.5,-140 597.5,-140 597.5,-138 326.5,-138"/>
<polygon fill="#895956" stroke="none" points="326.5,-136 326.5,-138 597.5,-138 597.5,-136 326.5,-136"/>
<polygon fill="#000000" stroke="none" points="326.5,-134 326.5,-136 597.5,-136 597.5,-134 326.5,-134"/>
<text text-anchor="start" x="340.5" y="-120.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="430" y="-120.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="523" y="-120.8" font-family="arial" font-size="14.00">X2:2:VCC</text>
<polygon fill="#000000" stroke="none" points="326.5,-113 326.5,-115 597.5,-115 597.5,-113 326.5,-113"/>
<polygon fill="#ff0000" stroke="none" points="326.5,-111 326.5,-113 597.5,-113 597.5,-111 326.5,-111"/>
<polygon fill="#000000" stroke="none" points="326.5,-109 326.5,-111 597.5,-111 597.5,-109 326.5,-109"/>
<text text-anchor="start" x="345.5" y="-95.8" font-family="arial" font-size="14.00">X1:3:RX</text>
<text text-anchor="start" x="428.5" y="-95.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:OG &#160;&#160;&#160;</text>
<text text-anchor="start" x="529" y="-95.8" font-family="arial" font-size="14.00">X2:4:TX</text>
<polygon fill="#000000" stroke="none" points="326.5,-88 326.5,-90 597.5,-90 597.5,-88 326.5,-88"/>
<polygon fill="#ff8000" stroke="none" points="326.5,-86 326.5,-88 597.5,-88 597.5,-86 326.5,-86"/>
<polygon fill="#000000" stroke="none" points="326.5,-84 326.5,-86 597.5,-86 597.5,-84 326.5,-84"/>
<text text-anchor="start" x="346.5" y="-70.8" font-family="arial" font-size="14.00">X1:4:TX</text>
<text text-anchor="start" x="430.5" y="-70.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="528" y="-70.8" font-family="arial" font-size="14.00">X2:3:RX</text>
<polygon fill="#000000" stroke="none" points="326.5,-63 326.5,-65 597.5,-65 597.5,-63 326.5,-63"/>
<polygon fill="#ffff00" stroke="none" points="326.5,-61 326.5,-63 597.5,-63 597.5,-61 326.5,-61"/>
<polygon fill="#000000" stroke="none" points="326.5,-59 326.5,-61 597.5,-61 597.5,-59 326.5,-59"/>
<text text-anchor="start" x="369" y="-45.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="339.5" y="-26.8" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="443.5" y="-26.8" font-family="arial" font-size="14.00">Shield</text>
<polygon fill="#000000" stroke="none" points="326.5,-19 326.5,-21 597.5,-21 597.5,-19 326.5,-19"/>
<text text-anchor="start" x="369" y="-5.8" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" points="591.25,-225.5 324,-225.5 324,0 591.25,0 591.25,-225.5"/>
<polygon fill="none" stroke="black" points="324,-201.75 324,-225.5 591.25,-225.5 591.25,-201.75 324,-201.75"/>
<text text-anchor="start" x="447.12" y="-208.2" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="324,-178 324,-201.75 366.5,-201.75 366.5,-178 324,-178"/>
<text text-anchor="start" x="328" y="-184.45" font-family="arial" font-size="14.00">Serial</text>
<polygon fill="none" stroke="black" points="366.5,-178 366.5,-201.75 388.75,-201.75 388.75,-178 366.5,-178"/>
<text text-anchor="start" x="370.5" y="-184.45" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="388.75,-178 388.75,-201.75 519.75,-201.75 519.75,-178 388.75,-178"/>
<text text-anchor="start" x="392.75" y="-184.45" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
<polygon fill="none" stroke="black" points="519.75,-178 519.75,-201.75 548.75,-201.75 548.75,-178 519.75,-178"/>
<text text-anchor="start" x="523.75" y="-184.45" font-family="arial" font-size="14.00">+ S</text>
<polygon fill="none" stroke="black" points="548.75,-178 548.75,-201.75 591.25,-201.75 591.25,-178 548.75,-178"/>
<text text-anchor="start" x="552.75" y="-184.45" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="365.83" y="-162.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="336.58" y="-143.7" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="425.75" y="-143.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="516.42" y="-143.7" font-family="arial" font-size="14.00">X2:1:GND</text>
<polygon fill="#000000" stroke="none" points="324,-138 324,-140 591.25,-140 591.25,-138 324,-138"/>
<polygon fill="#895956" stroke="none" points="324,-136 324,-138 591.25,-138 591.25,-136 324,-136"/>
<polygon fill="#000000" stroke="none" points="324,-134 324,-136 591.25,-136 591.25,-134 324,-134"/>
<text text-anchor="start" x="337.71" y="-118.7" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="425.38" y="-118.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="517.54" y="-118.7" font-family="arial" font-size="14.00">X2:2:VCC</text>
<polygon fill="#000000" stroke="none" points="324,-113 324,-115 591.25,-115 591.25,-113 324,-113"/>
<polygon fill="#ff0000" stroke="none" points="324,-111 324,-113 591.25,-113 591.25,-111 324,-111"/>
<polygon fill="#000000" stroke="none" points="324,-109 324,-111 591.25,-111 591.25,-109 324,-109"/>
<text text-anchor="start" x="342.58" y="-93.7" font-family="arial" font-size="14.00">X1:3:RX</text>
<text text-anchor="start" x="423.88" y="-93.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:OG &#160;&#160;&#160;</text>
<text text-anchor="start" x="523.17" y="-93.7" font-family="arial" font-size="14.00">X2:4:TX</text>
<polygon fill="#000000" stroke="none" points="324,-88 324,-90 591.25,-90 591.25,-88 324,-88"/>
<polygon fill="#ff8000" stroke="none" points="324,-86 324,-88 591.25,-88 591.25,-86 324,-86"/>
<polygon fill="#000000" stroke="none" points="324,-84 324,-86 591.25,-86 591.25,-84 324,-84"/>
<text text-anchor="start" x="343.33" y="-68.7" font-family="arial" font-size="14.00">X1:4:TX</text>
<text text-anchor="start" x="426.12" y="-68.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="522.42" y="-68.7" font-family="arial" font-size="14.00">X2:3:RX</text>
<polygon fill="#000000" stroke="none" points="324,-63 324,-65 591.25,-65 591.25,-63 324,-63"/>
<polygon fill="#ffff00" stroke="none" points="324,-61 324,-63 591.25,-63 591.25,-61 324,-61"/>
<polygon fill="#000000" stroke="none" points="324,-59 324,-61 591.25,-61 591.25,-59 324,-59"/>
<text text-anchor="start" x="365.83" y="-43.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="336.58" y="-24.7" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="438.88" y="-24.7" font-family="arial" font-size="14.00">Shield</text>
<polygon fill="#000000" stroke="none" points="324,-19 324,-21 591.25,-21 591.25,-19 324,-19"/>
<text text-anchor="start" x="365.83" y="-3.7" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge1" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-132C246.38,-132.03 262.36,-135.03 326,-135"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M182,-134C246.01,-134 261.99,-137 326,-137"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-136C245.64,-135.97 261.62,-138.97 326,-139"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-130.75C244.51,-130.81 260.46,-134.81 324,-134.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M180,-132.75C244.02,-132.75 259.98,-136.75 324,-136.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-134.75C243.54,-134.69 259.49,-138.69 324,-138.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge3" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-108C246.25,-108.02 262.24,-110.02 326,-110"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M182,-110C246.01,-110 261.99,-112 326,-112"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-112C245.76,-111.98 261.75,-113.98 326,-114"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-107.75C244.25,-107.77 260.24,-109.77 324,-109.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-109.75C244.01,-109.75 259.99,-111.75 324,-111.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-111.75C243.76,-111.73 259.75,-113.73 324,-113.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge5" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-85C246,-85 262,-85 326,-85"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M182,-87C246,-87 262,-87 326,-87"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-89C246,-89 262,-89 326,-89"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-84.75C244,-84.75 260,-84.75 324,-84.75"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M180,-86.75C244,-86.75 260,-86.75 324,-86.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-88.75C244,-88.75 260,-88.75 324,-88.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge7" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-62C245.76,-62.02 261.75,-60.02 326,-60"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M182,-64C246.01,-64 261.99,-62 326,-62"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-66C246.25,-65.98 262.24,-63.98 326,-64"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-61.75C243.76,-61.77 259.75,-59.77 324,-59.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M180,-63.75C244.01,-63.75 259.99,-61.75 324,-61.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-65.75C244.25,-65.73 260.24,-63.73 324,-63.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge9" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-134C263.63,-134 244.37,-20 326,-20"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-132.75C261.35,-132.75 242.65,-19.75 324,-19.75"/>
</g>
<!-- X2 -->
<g id="node2" class="node">
<title>X2</title>
<polygon fill="#ffffff" stroke="black" points="923,-193 741,-193 741,-55 923,-55 923,-193"/>
<polygon fill="none" stroke="black" points="741,-170 741,-193 923,-193 923,-170 741,-170"/>
<text text-anchor="start" x="823.5" y="-177.8" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="741,-147 741,-170 834,-170 834,-147 741,-147"/>
<text text-anchor="start" x="745" y="-154.8" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="834,-147 834,-170 884,-170 884,-147 834,-147"/>
<text text-anchor="start" x="838" y="-154.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="884,-147 884,-170 923,-170 923,-147 884,-147"/>
<text text-anchor="start" x="888" y="-154.8" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="741,-124 741,-147 821,-147 821,-124 741,-124"/>
<text text-anchor="start" x="777" y="-131.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="821,-124 821,-147 923,-147 923,-124 821,-124"/>
<text text-anchor="start" x="856.5" y="-131.8" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="741,-101 741,-124 821,-124 821,-101 741,-101"/>
<text text-anchor="start" x="777" y="-108.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="821,-101 821,-124 923,-124 923,-101 821,-101"/>
<text text-anchor="start" x="857.5" y="-108.8" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="741,-78 741,-101 821,-101 821,-78 741,-78"/>
<text text-anchor="start" x="777" y="-85.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="821,-78 821,-101 923,-101 923,-78 821,-78"/>
<text text-anchor="start" x="862.5" y="-85.8" font-family="arial" font-size="14.00">RX</text>
<polygon fill="none" stroke="black" points="741,-55 741,-78 821,-78 821,-55 741,-55"/>
<text text-anchor="start" x="777" y="-62.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="821,-55 821,-78 923,-78 923,-55 821,-55"/>
<text text-anchor="start" x="863" y="-62.8" font-family="arial" font-size="14.00">TX</text>
<polygon fill="#ffffff" stroke="black" points="915.25,-194.5 735.25,-194.5 735.25,-55 915.25,-55 915.25,-194.5"/>
<polygon fill="none" stroke="black" points="735.25,-170.75 735.25,-194.5 915.25,-194.5 915.25,-170.75 735.25,-170.75"/>
<text text-anchor="start" x="817" y="-177.2" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="735.25,-147 735.25,-170.75 828,-170.75 828,-147 735.25,-147"/>
<text text-anchor="start" x="739.25" y="-153.45" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="828,-147 828,-170.75 877.25,-170.75 877.25,-147 828,-147"/>
<text text-anchor="start" x="832" y="-153.45" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="877.25,-147 877.25,-170.75 915.25,-170.75 915.25,-147 877.25,-147"/>
<text text-anchor="start" x="881.25" y="-153.45" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="735.25,-124 735.25,-147 813.75,-147 813.75,-124 735.25,-124"/>
<text text-anchor="start" x="770.75" y="-129.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="813.75,-124 813.75,-147 915.25,-147 915.25,-124 813.75,-124"/>
<text text-anchor="start" x="849.12" y="-129.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="735.25,-101 735.25,-124 813.75,-124 813.75,-101 735.25,-101"/>
<text text-anchor="start" x="770.75" y="-106.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="813.75,-101 813.75,-124 915.25,-124 915.25,-101 813.75,-101"/>
<text text-anchor="start" x="850.25" y="-106.7" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="735.25,-78 735.25,-101 813.75,-101 813.75,-78 735.25,-78"/>
<text text-anchor="start" x="770.75" y="-83.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="813.75,-78 813.75,-101 915.25,-101 915.25,-78 813.75,-78"/>
<text text-anchor="start" x="855.12" y="-83.7" font-family="arial" font-size="14.00">RX</text>
<polygon fill="none" stroke="black" points="735.25,-55 735.25,-78 813.75,-78 813.75,-55 735.25,-55"/>
<text text-anchor="start" x="770.75" y="-60.7" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="813.75,-55 813.75,-78 915.25,-78 915.25,-55 813.75,-55"/>
<text text-anchor="start" x="855.88" y="-60.7" font-family="arial" font-size="14.00">TX</text>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-135C660.88,-135 676.87,-134 741,-134"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M597,-137C661,-137 677,-136 741,-136"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-139C661.13,-139 677.12,-138 741,-138"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M591.25,-134.75C655.13,-134.75 671.12,-133.75 735.25,-133.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M591.25,-136.75C655.25,-136.75 671.25,-135.75 735.25,-135.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M591.25,-138.75C655.38,-138.75 671.37,-137.75 735.25,-137.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-110C661,-110 677,-110 741,-110"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M597,-112C661,-112 677,-112 741,-112"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-114C661,-114 677,-114 741,-114"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M591.25,-109.75C655.38,-109.75 671.37,-110.75 735.25,-110.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M591.25,-111.75C655.25,-111.75 671.25,-112.75 735.25,-112.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M591.25,-113.75C655.13,-113.75 671.12,-114.75 735.25,-114.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge6" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-85C660.04,-85.86 674.68,-64.86 741,-64"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M597,-87C661.68,-87 676.32,-66 741,-66"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-89C663.32,-88.14 677.96,-67.14 741,-68"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M591.25,-84.75C654.26,-85.56 669.03,-65.56 735.25,-64.75"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M591.25,-86.75C655.86,-86.75 670.64,-66.75 735.25,-66.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M591.25,-88.75C657.47,-87.94 672.24,-67.94 735.25,-68.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge8" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-60C663.9,-61.09 677.67,-88.09 741,-87"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M597,-62C662.12,-62 675.88,-89 741,-89"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-64C660.33,-62.91 674.1,-89.91 741,-91"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M591.25,-59.75C658.25,-60.88 671.85,-88.88 735.25,-87.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M591.25,-61.75C656.45,-61.75 670.05,-89.75 735.25,-89.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M591.25,-63.75C654.65,-62.62 668.25,-90.62 735.25,-91.75"/>
</g>
</g>
</svg>

BIN
examples/ex01.png generated

Binary file not shown.

Before

Width:  |  Height:  |  Size: 46 KiB

After

Width:  |  Height:  |  Size: 47 KiB

246
examples/ex01.svg generated
View File

@ -1,178 +1,178 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="931pt" height="232pt"
viewBox="0.00 0.00 931.00 232.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 228)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-228 927,-228 927,4 -4,4"/>
<svg width="923pt" height="234pt"
viewBox="0.00 0.00 923.25 233.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 229.5)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-229.5 919.25,-229.5 919.25,4 -4,4"/>
<!-- X1 -->
<g id="node1" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="182,-191 0,-191 0,-53 182,-53 182,-191"/>
<polygon fill="none" stroke="black" points="0,-168 0,-191 182,-191 182,-168 0,-168"/>
<text text-anchor="start" x="82.5" y="-175.8" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-145 0,-168 93,-168 93,-145 0,-145"/>
<text text-anchor="start" x="4" y="-152.8" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="93,-145 93,-168 143,-168 143,-145 93,-145"/>
<text text-anchor="start" x="97" y="-152.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="143,-145 143,-168 182,-168 182,-145 143,-145"/>
<text text-anchor="start" x="147" y="-152.8" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-122 0,-145 103,-145 103,-122 0,-122"/>
<text text-anchor="start" x="36" y="-129.8" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="103,-122 103,-145 182,-145 182,-122 103,-122"/>
<text text-anchor="start" x="138.5" y="-129.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-99 0,-122 103,-122 103,-99 0,-99"/>
<text text-anchor="start" x="37" y="-106.8" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="103,-99 103,-122 182,-122 182,-99 103,-99"/>
<text text-anchor="start" x="138.5" y="-106.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0,-76 0,-99 103,-99 103,-76 0,-76"/>
<text text-anchor="start" x="42" y="-83.8" font-family="arial" font-size="14.00">RX</text>
<polygon fill="none" stroke="black" points="103,-76 103,-99 182,-99 182,-76 103,-76"/>
<text text-anchor="start" x="138.5" y="-83.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-53 0,-76 103,-76 103,-53 0,-53"/>
<text text-anchor="start" x="42.5" y="-60.8" font-family="arial" font-size="14.00">TX</text>
<polygon fill="none" stroke="black" points="103,-53 103,-76 182,-76 182,-53 103,-53"/>
<text text-anchor="start" x="138.5" y="-60.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="#ffffff" stroke="black" points="180,-191.5 0,-191.5 0,-52 180,-52 180,-191.5"/>
<polygon fill="none" stroke="black" points="0,-167.75 0,-191.5 180,-191.5 180,-167.75 0,-167.75"/>
<text text-anchor="start" x="81.75" y="-174.2" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-144 0,-167.75 92.75,-167.75 92.75,-144 0,-144"/>
<text text-anchor="start" x="4" y="-150.45" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="92.75,-144 92.75,-167.75 142,-167.75 142,-144 92.75,-144"/>
<text text-anchor="start" x="96.75" y="-150.45" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="142,-144 142,-167.75 180,-167.75 180,-144 142,-144"/>
<text text-anchor="start" x="146" y="-150.45" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-121 0,-144 101.5,-144 101.5,-121 0,-121"/>
<text text-anchor="start" x="35.38" y="-126.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="101.5,-121 101.5,-144 180,-144 180,-121 101.5,-121"/>
<text text-anchor="start" x="137" y="-126.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-98 0,-121 101.5,-121 101.5,-98 0,-98"/>
<text text-anchor="start" x="36.5" y="-103.7" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="101.5,-98 101.5,-121 180,-121 180,-98 101.5,-98"/>
<text text-anchor="start" x="137" y="-103.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0,-75 0,-98 101.5,-98 101.5,-75 0,-75"/>
<text text-anchor="start" x="41.38" y="-80.7" font-family="arial" font-size="14.00">RX</text>
<polygon fill="none" stroke="black" points="101.5,-75 101.5,-98 180,-98 180,-75 101.5,-75"/>
<text text-anchor="start" x="137" y="-80.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-52 0,-75 101.5,-75 101.5,-52 0,-52"/>
<text text-anchor="start" x="42.12" y="-57.7" font-family="arial" font-size="14.00">TX</text>
<polygon fill="none" stroke="black" points="101.5,-52 101.5,-75 180,-75 180,-52 101.5,-52"/>
<text text-anchor="start" x="137" y="-57.7" font-family="arial" font-size="14.00">4</text>
</g>
<!-- W1 -->
<g id="node3" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" points="597,-224 326,-224 326,0 597,0 597,-224"/>
<polygon fill="none" stroke="black" points="326.5,-201 326.5,-224 597.5,-224 597.5,-201 326.5,-201"/>
<text text-anchor="start" x="451" y="-208.8" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="326.5,-178 326.5,-201 369.5,-201 369.5,-178 326.5,-178"/>
<text text-anchor="start" x="330.5" y="-185.8" font-family="arial" font-size="14.00">Serial</text>
<polygon fill="none" stroke="black" points="369.5,-178 369.5,-201 392.5,-201 392.5,-178 369.5,-178"/>
<text text-anchor="start" x="373.5" y="-185.8" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="392.5,-178 392.5,-201 524.5,-201 524.5,-178 392.5,-178"/>
<text text-anchor="start" x="396.5" y="-185.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
<polygon fill="none" stroke="black" points="524.5,-178 524.5,-201 554.5,-201 554.5,-178 524.5,-178"/>
<text text-anchor="start" x="528.5" y="-185.8" font-family="arial" font-size="14.00">+ S</text>
<polygon fill="none" stroke="black" points="554.5,-178 554.5,-201 597.5,-201 597.5,-178 554.5,-178"/>
<text text-anchor="start" x="558.5" y="-185.8" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="369" y="-164.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="339.5" y="-145.8" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="430.5" y="-145.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="522" y="-145.8" font-family="arial" font-size="14.00">X2:1:GND</text>
<polygon fill="#000000" stroke="none" points="326.5,-138 326.5,-140 597.5,-140 597.5,-138 326.5,-138"/>
<polygon fill="#895956" stroke="none" points="326.5,-136 326.5,-138 597.5,-138 597.5,-136 326.5,-136"/>
<polygon fill="#000000" stroke="none" points="326.5,-134 326.5,-136 597.5,-136 597.5,-134 326.5,-134"/>
<text text-anchor="start" x="340.5" y="-120.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="430" y="-120.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="523" y="-120.8" font-family="arial" font-size="14.00">X2:2:VCC</text>
<polygon fill="#000000" stroke="none" points="326.5,-113 326.5,-115 597.5,-115 597.5,-113 326.5,-113"/>
<polygon fill="#ff0000" stroke="none" points="326.5,-111 326.5,-113 597.5,-113 597.5,-111 326.5,-111"/>
<polygon fill="#000000" stroke="none" points="326.5,-109 326.5,-111 597.5,-111 597.5,-109 326.5,-109"/>
<text text-anchor="start" x="345.5" y="-95.8" font-family="arial" font-size="14.00">X1:3:RX</text>
<text text-anchor="start" x="428.5" y="-95.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:OG &#160;&#160;&#160;</text>
<text text-anchor="start" x="529" y="-95.8" font-family="arial" font-size="14.00">X2:4:TX</text>
<polygon fill="#000000" stroke="none" points="326.5,-88 326.5,-90 597.5,-90 597.5,-88 326.5,-88"/>
<polygon fill="#ff8000" stroke="none" points="326.5,-86 326.5,-88 597.5,-88 597.5,-86 326.5,-86"/>
<polygon fill="#000000" stroke="none" points="326.5,-84 326.5,-86 597.5,-86 597.5,-84 326.5,-84"/>
<text text-anchor="start" x="346.5" y="-70.8" font-family="arial" font-size="14.00">X1:4:TX</text>
<text text-anchor="start" x="430.5" y="-70.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="528" y="-70.8" font-family="arial" font-size="14.00">X2:3:RX</text>
<polygon fill="#000000" stroke="none" points="326.5,-63 326.5,-65 597.5,-65 597.5,-63 326.5,-63"/>
<polygon fill="#ffff00" stroke="none" points="326.5,-61 326.5,-63 597.5,-63 597.5,-61 326.5,-61"/>
<polygon fill="#000000" stroke="none" points="326.5,-59 326.5,-61 597.5,-61 597.5,-59 326.5,-59"/>
<text text-anchor="start" x="369" y="-45.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="339.5" y="-26.8" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="443.5" y="-26.8" font-family="arial" font-size="14.00">Shield</text>
<polygon fill="#000000" stroke="none" points="326.5,-19 326.5,-21 597.5,-21 597.5,-19 326.5,-19"/>
<text text-anchor="start" x="369" y="-5.8" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" points="591.25,-225.5 324,-225.5 324,0 591.25,0 591.25,-225.5"/>
<polygon fill="none" stroke="black" points="324,-201.75 324,-225.5 591.25,-225.5 591.25,-201.75 324,-201.75"/>
<text text-anchor="start" x="447.12" y="-208.2" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="324,-178 324,-201.75 366.5,-201.75 366.5,-178 324,-178"/>
<text text-anchor="start" x="328" y="-184.45" font-family="arial" font-size="14.00">Serial</text>
<polygon fill="none" stroke="black" points="366.5,-178 366.5,-201.75 388.75,-201.75 388.75,-178 366.5,-178"/>
<text text-anchor="start" x="370.5" y="-184.45" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="388.75,-178 388.75,-201.75 519.75,-201.75 519.75,-178 388.75,-178"/>
<text text-anchor="start" x="392.75" y="-184.45" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
<polygon fill="none" stroke="black" points="519.75,-178 519.75,-201.75 548.75,-201.75 548.75,-178 519.75,-178"/>
<text text-anchor="start" x="523.75" y="-184.45" font-family="arial" font-size="14.00">+ S</text>
<polygon fill="none" stroke="black" points="548.75,-178 548.75,-201.75 591.25,-201.75 591.25,-178 548.75,-178"/>
<text text-anchor="start" x="552.75" y="-184.45" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="365.83" y="-162.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="336.58" y="-143.7" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="425.75" y="-143.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="516.42" y="-143.7" font-family="arial" font-size="14.00">X2:1:GND</text>
<polygon fill="#000000" stroke="none" points="324,-138 324,-140 591.25,-140 591.25,-138 324,-138"/>
<polygon fill="#895956" stroke="none" points="324,-136 324,-138 591.25,-138 591.25,-136 324,-136"/>
<polygon fill="#000000" stroke="none" points="324,-134 324,-136 591.25,-136 591.25,-134 324,-134"/>
<text text-anchor="start" x="337.71" y="-118.7" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="425.38" y="-118.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="517.54" y="-118.7" font-family="arial" font-size="14.00">X2:2:VCC</text>
<polygon fill="#000000" stroke="none" points="324,-113 324,-115 591.25,-115 591.25,-113 324,-113"/>
<polygon fill="#ff0000" stroke="none" points="324,-111 324,-113 591.25,-113 591.25,-111 324,-111"/>
<polygon fill="#000000" stroke="none" points="324,-109 324,-111 591.25,-111 591.25,-109 324,-109"/>
<text text-anchor="start" x="342.58" y="-93.7" font-family="arial" font-size="14.00">X1:3:RX</text>
<text text-anchor="start" x="423.88" y="-93.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:OG &#160;&#160;&#160;</text>
<text text-anchor="start" x="523.17" y="-93.7" font-family="arial" font-size="14.00">X2:4:TX</text>
<polygon fill="#000000" stroke="none" points="324,-88 324,-90 591.25,-90 591.25,-88 324,-88"/>
<polygon fill="#ff8000" stroke="none" points="324,-86 324,-88 591.25,-88 591.25,-86 324,-86"/>
<polygon fill="#000000" stroke="none" points="324,-84 324,-86 591.25,-86 591.25,-84 324,-84"/>
<text text-anchor="start" x="343.33" y="-68.7" font-family="arial" font-size="14.00">X1:4:TX</text>
<text text-anchor="start" x="426.12" y="-68.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="522.42" y="-68.7" font-family="arial" font-size="14.00">X2:3:RX</text>
<polygon fill="#000000" stroke="none" points="324,-63 324,-65 591.25,-65 591.25,-63 324,-63"/>
<polygon fill="#ffff00" stroke="none" points="324,-61 324,-63 591.25,-63 591.25,-61 324,-61"/>
<polygon fill="#000000" stroke="none" points="324,-59 324,-61 591.25,-61 591.25,-59 324,-59"/>
<text text-anchor="start" x="365.83" y="-43.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="336.58" y="-24.7" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="438.88" y="-24.7" font-family="arial" font-size="14.00">Shield</text>
<polygon fill="#000000" stroke="none" points="324,-19 324,-21 591.25,-21 591.25,-19 324,-19"/>
<text text-anchor="start" x="365.83" y="-3.7" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge1" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-132C246.38,-132.03 262.36,-135.03 326,-135"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M182,-134C246.01,-134 261.99,-137 326,-137"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-136C245.64,-135.97 261.62,-138.97 326,-139"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-130.75C244.51,-130.81 260.46,-134.81 324,-134.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M180,-132.75C244.02,-132.75 259.98,-136.75 324,-136.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-134.75C243.54,-134.69 259.49,-138.69 324,-138.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge3" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-108C246.25,-108.02 262.24,-110.02 326,-110"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M182,-110C246.01,-110 261.99,-112 326,-112"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-112C245.76,-111.98 261.75,-113.98 326,-114"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-107.75C244.25,-107.77 260.24,-109.77 324,-109.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-109.75C244.01,-109.75 259.99,-111.75 324,-111.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-111.75C243.76,-111.73 259.75,-113.73 324,-113.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge5" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-85C246,-85 262,-85 326,-85"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M182,-87C246,-87 262,-87 326,-87"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-89C246,-89 262,-89 326,-89"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-84.75C244,-84.75 260,-84.75 324,-84.75"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M180,-86.75C244,-86.75 260,-86.75 324,-86.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-88.75C244,-88.75 260,-88.75 324,-88.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge7" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-62C245.76,-62.02 261.75,-60.02 326,-60"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M182,-64C246.01,-64 261.99,-62 326,-62"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-66C246.25,-65.98 262.24,-63.98 326,-64"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-61.75C243.76,-61.77 259.75,-59.77 324,-59.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M180,-63.75C244.01,-63.75 259.99,-61.75 324,-61.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-65.75C244.25,-65.73 260.24,-63.73 324,-63.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge9" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-134C263.63,-134 244.37,-20 326,-20"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-132.75C261.35,-132.75 242.65,-19.75 324,-19.75"/>
</g>
<!-- X2 -->
<g id="node2" class="node">
<title>X2</title>
<polygon fill="#ffffff" stroke="black" points="923,-193 741,-193 741,-55 923,-55 923,-193"/>
<polygon fill="none" stroke="black" points="741,-170 741,-193 923,-193 923,-170 741,-170"/>
<text text-anchor="start" x="823.5" y="-177.8" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="741,-147 741,-170 834,-170 834,-147 741,-147"/>
<text text-anchor="start" x="745" y="-154.8" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="834,-147 834,-170 884,-170 884,-147 834,-147"/>
<text text-anchor="start" x="838" y="-154.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="884,-147 884,-170 923,-170 923,-147 884,-147"/>
<text text-anchor="start" x="888" y="-154.8" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="741,-124 741,-147 821,-147 821,-124 741,-124"/>
<text text-anchor="start" x="777" y="-131.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="821,-124 821,-147 923,-147 923,-124 821,-124"/>
<text text-anchor="start" x="856.5" y="-131.8" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="741,-101 741,-124 821,-124 821,-101 741,-101"/>
<text text-anchor="start" x="777" y="-108.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="821,-101 821,-124 923,-124 923,-101 821,-101"/>
<text text-anchor="start" x="857.5" y="-108.8" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="741,-78 741,-101 821,-101 821,-78 741,-78"/>
<text text-anchor="start" x="777" y="-85.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="821,-78 821,-101 923,-101 923,-78 821,-78"/>
<text text-anchor="start" x="862.5" y="-85.8" font-family="arial" font-size="14.00">RX</text>
<polygon fill="none" stroke="black" points="741,-55 741,-78 821,-78 821,-55 741,-55"/>
<text text-anchor="start" x="777" y="-62.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="821,-55 821,-78 923,-78 923,-55 821,-55"/>
<text text-anchor="start" x="863" y="-62.8" font-family="arial" font-size="14.00">TX</text>
<polygon fill="#ffffff" stroke="black" points="915.25,-194.5 735.25,-194.5 735.25,-55 915.25,-55 915.25,-194.5"/>
<polygon fill="none" stroke="black" points="735.25,-170.75 735.25,-194.5 915.25,-194.5 915.25,-170.75 735.25,-170.75"/>
<text text-anchor="start" x="817" y="-177.2" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="735.25,-147 735.25,-170.75 828,-170.75 828,-147 735.25,-147"/>
<text text-anchor="start" x="739.25" y="-153.45" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="828,-147 828,-170.75 877.25,-170.75 877.25,-147 828,-147"/>
<text text-anchor="start" x="832" y="-153.45" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="877.25,-147 877.25,-170.75 915.25,-170.75 915.25,-147 877.25,-147"/>
<text text-anchor="start" x="881.25" y="-153.45" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="735.25,-124 735.25,-147 813.75,-147 813.75,-124 735.25,-124"/>
<text text-anchor="start" x="770.75" y="-129.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="813.75,-124 813.75,-147 915.25,-147 915.25,-124 813.75,-124"/>
<text text-anchor="start" x="849.12" y="-129.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="735.25,-101 735.25,-124 813.75,-124 813.75,-101 735.25,-101"/>
<text text-anchor="start" x="770.75" y="-106.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="813.75,-101 813.75,-124 915.25,-124 915.25,-101 813.75,-101"/>
<text text-anchor="start" x="850.25" y="-106.7" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="735.25,-78 735.25,-101 813.75,-101 813.75,-78 735.25,-78"/>
<text text-anchor="start" x="770.75" y="-83.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="813.75,-78 813.75,-101 915.25,-101 915.25,-78 813.75,-78"/>
<text text-anchor="start" x="855.12" y="-83.7" font-family="arial" font-size="14.00">RX</text>
<polygon fill="none" stroke="black" points="735.25,-55 735.25,-78 813.75,-78 813.75,-55 735.25,-55"/>
<text text-anchor="start" x="770.75" y="-60.7" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="813.75,-55 813.75,-78 915.25,-78 915.25,-55 813.75,-55"/>
<text text-anchor="start" x="855.88" y="-60.7" font-family="arial" font-size="14.00">TX</text>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-135C660.88,-135 676.87,-134 741,-134"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M597,-137C661,-137 677,-136 741,-136"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-139C661.13,-139 677.12,-138 741,-138"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M591.25,-134.75C655.13,-134.75 671.12,-133.75 735.25,-133.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M591.25,-136.75C655.25,-136.75 671.25,-135.75 735.25,-135.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M591.25,-138.75C655.38,-138.75 671.37,-137.75 735.25,-137.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-110C661,-110 677,-110 741,-110"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M597,-112C661,-112 677,-112 741,-112"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-114C661,-114 677,-114 741,-114"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M591.25,-109.75C655.38,-109.75 671.37,-110.75 735.25,-110.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M591.25,-111.75C655.25,-111.75 671.25,-112.75 735.25,-112.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M591.25,-113.75C655.13,-113.75 671.12,-114.75 735.25,-114.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge6" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-85C660.04,-85.86 674.68,-64.86 741,-64"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M597,-87C661.68,-87 676.32,-66 741,-66"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-89C663.32,-88.14 677.96,-67.14 741,-68"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M591.25,-84.75C654.26,-85.56 669.03,-65.56 735.25,-64.75"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M591.25,-86.75C655.86,-86.75 670.64,-66.75 735.25,-66.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M591.25,-88.75C657.47,-87.94 672.24,-67.94 735.25,-68.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge8" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-60C663.9,-61.09 677.67,-88.09 741,-87"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M597,-62C662.12,-62 675.88,-89 741,-89"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M597,-64C660.33,-62.91 674.1,-89.91 741,-91"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M591.25,-59.75C658.25,-60.88 671.85,-88.88 735.25,-87.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M591.25,-61.75C656.45,-61.75 670.05,-89.75 735.25,-89.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M591.25,-63.75C654.65,-62.62 668.25,-90.62 735.25,-91.75"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 14 KiB

356
examples/ex02.html generated
View File

@ -30,261 +30,261 @@
<div id="diagram">
<!-- XML and DOCTYPE declarations from SVG file removed -->
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="870pt" height="458pt"
viewBox="0.00 0.00 870.00 458.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 454)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-454 866,-454 866,4 -4,4"/>
<svg width="863pt" height="464pt"
viewBox="0.00 0.00 862.75 463.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 459.5)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-459.5 858.75,-459.5 858.75,4 -4,4"/>
<!-- X1 -->
<g id="node1" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="180,-262 0,-262 0,-170 180,-170 180,-262"/>
<polygon fill="none" stroke="black" points="0,-239 0,-262 180,-262 180,-239 0,-239"/>
<text text-anchor="start" x="81.5" y="-246.8" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-216 0,-239 102,-239 102,-216 0,-216"/>
<text text-anchor="start" x="4" y="-223.8" font-family="arial" font-size="14.00">Molex Micro&#45;Fit</text>
<polygon fill="none" stroke="black" points="102,-216 102,-239 141,-239 141,-216 102,-216"/>
<text text-anchor="start" x="106" y="-223.8" font-family="arial" font-size="14.00">male</text>
<polygon fill="none" stroke="black" points="141,-216 141,-239 180,-239 180,-216 141,-216"/>
<text text-anchor="start" x="145" y="-223.8" font-family="arial" font-size="14.00">2&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-193 0,-216 102,-216 102,-193 0,-193"/>
<text text-anchor="start" x="35.5" y="-200.8" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="102,-193 102,-216 180,-216 180,-193 102,-193"/>
<text text-anchor="start" x="137" y="-200.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-170 0,-193 102,-193 102,-170 0,-170"/>
<text text-anchor="start" x="36.5" y="-177.8" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="102,-170 102,-193 180,-193 180,-170 102,-170"/>
<text text-anchor="start" x="137" y="-177.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="#ffffff" stroke="black" points="177.75,-264.5 0,-264.5 0,-171 177.75,-171 177.75,-264.5"/>
<polygon fill="none" stroke="black" points="0,-240.75 0,-264.5 177.75,-264.5 177.75,-240.75 0,-240.75"/>
<text text-anchor="start" x="80.62" y="-247.2" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-217 0,-240.75 101.75,-240.75 101.75,-217 0,-217"/>
<text text-anchor="start" x="4" y="-223.45" font-family="arial" font-size="14.00">Molex Micro&#45;Fit</text>
<polygon fill="none" stroke="black" points="101.75,-217 101.75,-240.75 139.75,-240.75 139.75,-217 101.75,-217"/>
<text text-anchor="start" x="105.75" y="-223.45" font-family="arial" font-size="14.00">male</text>
<polygon fill="none" stroke="black" points="139.75,-217 139.75,-240.75 177.75,-240.75 177.75,-217 139.75,-217"/>
<text text-anchor="start" x="143.75" y="-223.45" font-family="arial" font-size="14.00">2&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-194 0,-217 100.38,-217 100.38,-194 0,-194"/>
<text text-anchor="start" x="34.81" y="-199.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="100.38,-194 100.38,-217 177.75,-217 177.75,-194 100.38,-194"/>
<text text-anchor="start" x="135.31" y="-199.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-171 0,-194 100.38,-194 100.38,-171 0,-171"/>
<text text-anchor="start" x="35.94" y="-176.7" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="100.38,-171 100.38,-194 177.75,-194 177.75,-171 100.38,-171"/>
<text text-anchor="start" x="135.31" y="-176.7" font-family="arial" font-size="14.00">2</text>
</g>
<!-- W1 -->
<g id="node5" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" points="527,-450 324,-450 324,-316 527,-316 527,-450"/>
<polygon fill="none" stroke="black" points="324.5,-427 324.5,-450 527.5,-450 527.5,-427 324.5,-427"/>
<text text-anchor="start" x="415" y="-434.8" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="324.5,-404 324.5,-427 349.5,-427 349.5,-404 324.5,-404"/>
<text text-anchor="start" x="329.5" y="-411.8" font-family="arial" font-size="14.00">2x</text>
<polygon fill="none" stroke="black" points="349.5,-404 349.5,-427 483.5,-427 483.5,-404 349.5,-404"/>
<text text-anchor="start" x="354.5" y="-411.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
<polygon fill="none" stroke="black" points="483.5,-404 483.5,-427 527.5,-427 527.5,-404 483.5,-404"/>
<text text-anchor="start" x="488" y="-411.8" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="356" y="-390.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="326.5" y="-371.8" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="394" y="-371.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="462.5" y="-371.8" font-family="arial" font-size="14.00">X2:1:GND</text>
<polygon fill="#000000" stroke="none" points="324.5,-364 324.5,-366 527.5,-366 527.5,-364 324.5,-364"/>
<polygon fill="#000000" stroke="none" points="324.5,-362 324.5,-364 527.5,-364 527.5,-362 324.5,-362"/>
<polygon fill="#000000" stroke="none" points="324.5,-360 324.5,-362 527.5,-362 527.5,-360 324.5,-360"/>
<text text-anchor="start" x="327.5" y="-346.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="393.5" y="-346.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="463.5" y="-346.8" font-family="arial" font-size="14.00">X2:2:VCC</text>
<polygon fill="#000000" stroke="none" points="324.5,-339 324.5,-341 527.5,-341 527.5,-339 324.5,-339"/>
<polygon fill="#ff0000" stroke="none" points="324.5,-337 324.5,-339 527.5,-339 527.5,-337 324.5,-337"/>
<polygon fill="#000000" stroke="none" points="324.5,-335 324.5,-337 527.5,-337 527.5,-335 324.5,-335"/>
<text text-anchor="start" x="356" y="-321.8" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" points="521.75,-455.5 321.75,-455.5 321.75,-320 521.75,-320 521.75,-455.5"/>
<polygon fill="none" stroke="black" points="321.75,-431.75 321.75,-455.5 521.75,-455.5 521.75,-431.75 321.75,-431.75"/>
<text text-anchor="start" x="411.25" y="-438.2" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="321.75,-408 321.75,-431.75 345.42,-431.75 345.42,-408 321.75,-408"/>
<text text-anchor="start" x="326.46" y="-414.45" font-family="arial" font-size="14.00">2x</text>
<polygon fill="none" stroke="black" points="345.42,-408 345.42,-431.75 477.83,-431.75 477.83,-408 345.42,-408"/>
<text text-anchor="start" x="350.12" y="-414.45" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
<polygon fill="none" stroke="black" points="477.83,-408 477.83,-431.75 521.75,-431.75 521.75,-408 477.83,-408"/>
<text text-anchor="start" x="482.54" y="-414.45" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="352.88" y="-392.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="323.62" y="-373.7" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="390.25" y="-373.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="457.62" y="-373.7" font-family="arial" font-size="14.00">X2:1:GND</text>
<polygon fill="#000000" stroke="none" points="321.75,-368 321.75,-370 521.75,-370 521.75,-368 321.75,-368"/>
<polygon fill="#000000" stroke="none" points="321.75,-366 321.75,-368 521.75,-368 521.75,-366 321.75,-366"/>
<polygon fill="#000000" stroke="none" points="321.75,-364 321.75,-366 521.75,-366 521.75,-364 321.75,-364"/>
<text text-anchor="start" x="324.75" y="-348.7" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="389.5" y="-348.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="458.75" y="-348.7" font-family="arial" font-size="14.00">X2:2:VCC</text>
<polygon fill="#000000" stroke="none" points="321.75,-343 321.75,-345 521.75,-345 521.75,-343 321.75,-343"/>
<polygon fill="#ff0000" stroke="none" points="321.75,-341 321.75,-343 521.75,-343 521.75,-341 321.75,-341"/>
<polygon fill="#000000" stroke="none" points="321.75,-339 321.75,-341 521.75,-341 521.75,-339 321.75,-339"/>
<text text-anchor="start" x="352.88" y="-323.7" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge1" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-202C277.26,-204.56 230.58,-363.56 324,-361"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-204C275.34,-204 228.66,-363 324,-363"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-206C273.42,-203.44 226.74,-362.44 324,-365"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-203.75C275.67,-206.32 227.67,-367.32 321.75,-364.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-205.75C273.75,-205.75 225.75,-366.75 321.75,-366.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-207.75C271.83,-205.18 223.83,-366.18 321.75,-368.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge3" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-179C276.6,-181.56 231.24,-338.56 324,-336"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-181C274.68,-181 229.32,-338 324,-338"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-183C272.76,-180.44 227.4,-337.44 324,-340"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-180.75C275.01,-183.31 228.33,-342.31 321.75,-339.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M177.75,-182.75C273.09,-182.75 226.41,-341.75 321.75,-341.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-184.75C271.17,-182.19 224.49,-341.19 321.75,-343.75"/>
</g>
<!-- W2 -->
<g id="node6" class="node">
<title>W2</title>
<polygon fill="#ffffff" stroke="black" points="527,-292 324,-292 324,-158 527,-158 527,-292"/>
<polygon fill="none" stroke="black" points="324.5,-269 324.5,-292 527.5,-292 527.5,-269 324.5,-269"/>
<text text-anchor="start" x="415" y="-276.8" font-family="arial" font-size="14.00">W2</text>
<polygon fill="none" stroke="black" points="324.5,-246 324.5,-269 349.5,-269 349.5,-246 324.5,-246"/>
<text text-anchor="start" x="329.5" y="-253.8" font-family="arial" font-size="14.00">2x</text>
<polygon fill="none" stroke="black" points="349.5,-246 349.5,-269 483.5,-269 483.5,-246 349.5,-246"/>
<text text-anchor="start" x="354.5" y="-253.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
<polygon fill="none" stroke="black" points="483.5,-246 483.5,-269 527.5,-269 527.5,-246 483.5,-246"/>
<text text-anchor="start" x="488" y="-253.8" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="356" y="-232.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="326.5" y="-213.8" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="394" y="-213.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="462.5" y="-213.8" font-family="arial" font-size="14.00">X3:1:GND</text>
<polygon fill="#000000" stroke="none" points="324.5,-206 324.5,-208 527.5,-208 527.5,-206 324.5,-206"/>
<polygon fill="#000000" stroke="none" points="324.5,-204 324.5,-206 527.5,-206 527.5,-204 324.5,-204"/>
<polygon fill="#000000" stroke="none" points="324.5,-202 324.5,-204 527.5,-204 527.5,-202 324.5,-202"/>
<text text-anchor="start" x="327.5" y="-188.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="393.5" y="-188.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="463.5" y="-188.8" font-family="arial" font-size="14.00">X3:2:VCC</text>
<polygon fill="#000000" stroke="none" points="324.5,-181 324.5,-183 527.5,-183 527.5,-181 324.5,-181"/>
<polygon fill="#ff0000" stroke="none" points="324.5,-179 324.5,-181 527.5,-181 527.5,-179 324.5,-179"/>
<polygon fill="#000000" stroke="none" points="324.5,-177 324.5,-179 527.5,-179 527.5,-177 324.5,-177"/>
<text text-anchor="start" x="356" y="-163.8" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" points="521.75,-295.5 321.75,-295.5 321.75,-160 521.75,-160 521.75,-295.5"/>
<polygon fill="none" stroke="black" points="321.75,-271.75 321.75,-295.5 521.75,-295.5 521.75,-271.75 321.75,-271.75"/>
<text text-anchor="start" x="411.25" y="-278.2" font-family="arial" font-size="14.00">W2</text>
<polygon fill="none" stroke="black" points="321.75,-248 321.75,-271.75 345.42,-271.75 345.42,-248 321.75,-248"/>
<text text-anchor="start" x="326.46" y="-254.45" font-family="arial" font-size="14.00">2x</text>
<polygon fill="none" stroke="black" points="345.42,-248 345.42,-271.75 477.83,-271.75 477.83,-248 345.42,-248"/>
<text text-anchor="start" x="350.12" y="-254.45" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
<polygon fill="none" stroke="black" points="477.83,-248 477.83,-271.75 521.75,-271.75 521.75,-248 477.83,-248"/>
<text text-anchor="start" x="482.54" y="-254.45" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="352.88" y="-232.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="323.62" y="-213.7" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="390.25" y="-213.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="457.62" y="-213.7" font-family="arial" font-size="14.00">X3:1:GND</text>
<polygon fill="#000000" stroke="none" points="321.75,-208 321.75,-210 521.75,-210 521.75,-208 321.75,-208"/>
<polygon fill="#000000" stroke="none" points="321.75,-206 321.75,-208 521.75,-208 521.75,-206 321.75,-206"/>
<polygon fill="#000000" stroke="none" points="321.75,-204 321.75,-206 521.75,-206 521.75,-204 321.75,-204"/>
<text text-anchor="start" x="324.75" y="-188.7" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="389.5" y="-188.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="458.75" y="-188.7" font-family="arial" font-size="14.00">X3:2:VCC</text>
<polygon fill="#000000" stroke="none" points="321.75,-183 321.75,-185 521.75,-185 521.75,-183 321.75,-183"/>
<polygon fill="#ff0000" stroke="none" points="321.75,-181 321.75,-183 521.75,-183 521.75,-181 321.75,-181"/>
<polygon fill="#000000" stroke="none" points="321.75,-179 321.75,-181 521.75,-181 521.75,-179 321.75,-179"/>
<text text-anchor="start" x="352.88" y="-163.7" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X1&#45;&#45;W2 -->
<g id="edge5" class="edge">
<title>X1:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-202C244.13,-202 260.12,-203 324,-203"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-204C244,-204 260,-205 324,-205"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-206C243.88,-206 259.87,-207 324,-207"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-203.75C241.88,-203.75 257.87,-204.75 321.75,-204.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-205.75C241.75,-205.75 257.75,-206.75 321.75,-206.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-207.75C241.63,-207.75 257.62,-208.75 321.75,-208.75"/>
</g>
<!-- X1&#45;&#45;W2 -->
<g id="edge7" class="edge">
<title>X1:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-179C243.88,-179 259.87,-178 324,-178"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-181C244,-181 260,-180 324,-180"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-183C244.13,-183 260.12,-182 324,-182"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-180.75C241.63,-180.75 257.62,-179.75 321.75,-179.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M177.75,-182.75C241.75,-182.75 257.75,-181.75 321.75,-181.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-184.75C241.88,-184.75 257.87,-183.75 321.75,-183.75"/>
</g>
<!-- W3 -->
<g id="node7" class="node">
<title>W3</title>
<polygon fill="#ffffff" stroke="black" points="527,-134 324,-134 324,0 527,0 527,-134"/>
<polygon fill="none" stroke="black" points="324.5,-111 324.5,-134 527.5,-134 527.5,-111 324.5,-111"/>
<text text-anchor="start" x="415" y="-118.8" font-family="arial" font-size="14.00">W3</text>
<polygon fill="none" stroke="black" points="324.5,-88 324.5,-111 349.5,-111 349.5,-88 324.5,-88"/>
<text text-anchor="start" x="329.5" y="-95.8" font-family="arial" font-size="14.00">2x</text>
<polygon fill="none" stroke="black" points="349.5,-88 349.5,-111 483.5,-111 483.5,-88 349.5,-88"/>
<text text-anchor="start" x="354.5" y="-95.8" font-family="arial" font-size="14.00">20 AWG (0.75 mm²)</text>
<polygon fill="none" stroke="black" points="483.5,-88 483.5,-111 527.5,-111 527.5,-88 483.5,-88"/>
<text text-anchor="start" x="488" y="-95.8" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="356" y="-74.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="326.5" y="-55.8" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="394" y="-55.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="462.5" y="-55.8" font-family="arial" font-size="14.00">X4:1:GND</text>
<polygon fill="#000000" stroke="none" points="324.5,-48 324.5,-50 527.5,-50 527.5,-48 324.5,-48"/>
<polygon fill="#000000" stroke="none" points="324.5,-46 324.5,-48 527.5,-48 527.5,-46 324.5,-46"/>
<polygon fill="#000000" stroke="none" points="324.5,-44 324.5,-46 527.5,-46 527.5,-44 324.5,-44"/>
<text text-anchor="start" x="327.5" y="-30.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="393.5" y="-30.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="463.5" y="-30.8" font-family="arial" font-size="14.00">X4:2:VCC</text>
<polygon fill="#000000" stroke="none" points="324.5,-23 324.5,-25 527.5,-25 527.5,-23 324.5,-23"/>
<polygon fill="#ff0000" stroke="none" points="324.5,-21 324.5,-23 527.5,-23 527.5,-21 324.5,-21"/>
<polygon fill="#000000" stroke="none" points="324.5,-19 324.5,-21 527.5,-21 527.5,-19 324.5,-19"/>
<text text-anchor="start" x="356" y="-5.8" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" points="521.75,-135.5 321.75,-135.5 321.75,0 521.75,0 521.75,-135.5"/>
<polygon fill="none" stroke="black" points="321.75,-111.75 321.75,-135.5 521.75,-135.5 521.75,-111.75 321.75,-111.75"/>
<text text-anchor="start" x="411.25" y="-118.2" font-family="arial" font-size="14.00">W3</text>
<polygon fill="none" stroke="black" points="321.75,-88 321.75,-111.75 345.42,-111.75 345.42,-88 321.75,-88"/>
<text text-anchor="start" x="326.46" y="-94.45" font-family="arial" font-size="14.00">2x</text>
<polygon fill="none" stroke="black" points="345.42,-88 345.42,-111.75 477.83,-111.75 477.83,-88 345.42,-88"/>
<text text-anchor="start" x="350.12" y="-94.45" font-family="arial" font-size="14.00">20 AWG (0.75 mm²)</text>
<polygon fill="none" stroke="black" points="477.83,-88 477.83,-111.75 521.75,-111.75 521.75,-88 477.83,-88"/>
<text text-anchor="start" x="482.54" y="-94.45" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="352.88" y="-72.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="323.62" y="-53.7" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="390.25" y="-53.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="457.62" y="-53.7" font-family="arial" font-size="14.00">X4:1:GND</text>
<polygon fill="#000000" stroke="none" points="321.75,-48 321.75,-50 521.75,-50 521.75,-48 321.75,-48"/>
<polygon fill="#000000" stroke="none" points="321.75,-46 321.75,-48 521.75,-48 521.75,-46 321.75,-46"/>
<polygon fill="#000000" stroke="none" points="321.75,-44 321.75,-46 521.75,-46 521.75,-44 321.75,-44"/>
<text text-anchor="start" x="324.75" y="-28.7" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="389.5" y="-28.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="458.75" y="-28.7" font-family="arial" font-size="14.00">X4:2:VCC</text>
<polygon fill="#000000" stroke="none" points="321.75,-23 321.75,-25 521.75,-25 521.75,-23 321.75,-23"/>
<polygon fill="#ff0000" stroke="none" points="321.75,-21 321.75,-23 521.75,-23 521.75,-21 321.75,-21"/>
<polygon fill="#000000" stroke="none" points="321.75,-19 321.75,-21 521.75,-21 521.75,-19 321.75,-19"/>
<text text-anchor="start" x="352.88" y="-3.7" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X1&#45;&#45;W3 -->
<g id="edge9" class="edge">
<title>X1:e&#45;&#45;W3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-202C272.76,-204.56 227.4,-47.56 324,-45"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-204C274.68,-204 229.32,-47 324,-47"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-206C276.6,-203.44 231.24,-46.44 324,-49"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-203.75C271.17,-206.31 224.49,-47.31 321.75,-44.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-205.75C273.09,-205.75 226.41,-46.75 321.75,-46.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-207.75C275.01,-205.19 228.33,-46.19 321.75,-48.75"/>
</g>
<!-- X1&#45;&#45;W3 -->
<g id="edge11" class="edge">
<title>X1:e&#45;&#45;W3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-179C273.42,-181.56 226.74,-22.56 324,-20"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-181C275.34,-181 228.66,-22 324,-22"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-183C277.26,-180.44 230.58,-21.44 324,-24"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-180.75C271.83,-183.32 223.83,-22.32 321.75,-19.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M177.75,-182.75C273.75,-182.75 225.75,-21.75 321.75,-21.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-184.75C275.67,-182.18 227.67,-21.18 321.75,-23.75"/>
</g>
<!-- X2 -->
<g id="node2" class="node">
<title>X2</title>
<polygon fill="#ffffff" stroke="black" points="862,-420 671,-420 671,-328 862,-328 862,-420"/>
<polygon fill="none" stroke="black" points="671.5,-397 671.5,-420 862.5,-420 862.5,-397 671.5,-397"/>
<text text-anchor="start" x="758.5" y="-404.8" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="671.5,-374 671.5,-397 773.5,-397 773.5,-374 671.5,-374"/>
<text text-anchor="start" x="675.5" y="-381.8" font-family="arial" font-size="14.00">Molex Micro&#45;Fit</text>
<polygon fill="none" stroke="black" points="773.5,-374 773.5,-397 823.5,-397 823.5,-374 773.5,-374"/>
<text text-anchor="start" x="777.5" y="-381.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="823.5,-374 823.5,-397 862.5,-397 862.5,-374 823.5,-374"/>
<text text-anchor="start" x="827.5" y="-381.8" font-family="arial" font-size="14.00">2&#45;pin</text>
<polygon fill="none" stroke="black" points="671.5,-351 671.5,-374 755.5,-374 755.5,-351 671.5,-351"/>
<text text-anchor="start" x="709.5" y="-358.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="755.5,-351 755.5,-374 862.5,-374 862.5,-351 755.5,-351"/>
<text text-anchor="start" x="793.5" y="-358.8" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="671.5,-328 671.5,-351 755.5,-351 755.5,-328 671.5,-328"/>
<text text-anchor="start" x="709.5" y="-335.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="755.5,-328 755.5,-351 862.5,-351 862.5,-328 755.5,-328"/>
<text text-anchor="start" x="794.5" y="-335.8" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="#ffffff" stroke="black" points="854.75,-424.5 665.75,-424.5 665.75,-331 854.75,-331 854.75,-424.5"/>
<polygon fill="none" stroke="black" points="665.75,-400.75 665.75,-424.5 854.75,-424.5 854.75,-400.75 665.75,-400.75"/>
<text text-anchor="start" x="752" y="-407.2" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="665.75,-377 665.75,-400.75 767.5,-400.75 767.5,-377 665.75,-377"/>
<text text-anchor="start" x="669.75" y="-383.45" font-family="arial" font-size="14.00">Molex Micro&#45;Fit</text>
<polygon fill="none" stroke="black" points="767.5,-377 767.5,-400.75 816.75,-400.75 816.75,-377 767.5,-377"/>
<text text-anchor="start" x="771.5" y="-383.45" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="816.75,-377 816.75,-400.75 854.75,-400.75 854.75,-377 816.75,-377"/>
<text text-anchor="start" x="820.75" y="-383.45" font-family="arial" font-size="14.00">2&#45;pin</text>
<polygon fill="none" stroke="black" points="665.75,-354 665.75,-377 748.75,-377 748.75,-354 665.75,-354"/>
<text text-anchor="start" x="703.5" y="-359.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="748.75,-354 748.75,-377 854.75,-377 854.75,-354 748.75,-354"/>
<text text-anchor="start" x="786.38" y="-359.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="665.75,-331 665.75,-354 748.75,-354 748.75,-331 665.75,-331"/>
<text text-anchor="start" x="703.5" y="-336.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="748.75,-331 748.75,-354 854.75,-354 854.75,-331 748.75,-331"/>
<text text-anchor="start" x="787.5" y="-336.7" font-family="arial" font-size="14.00">VCC</text>
</g>
<!-- X3 -->
<g id="node3" class="node">
<title>X3</title>
<polygon fill="#ffffff" stroke="black" points="862,-262 671,-262 671,-170 862,-170 862,-262"/>
<polygon fill="none" stroke="black" points="671.5,-239 671.5,-262 862.5,-262 862.5,-239 671.5,-239"/>
<text text-anchor="start" x="758.5" y="-246.8" font-family="arial" font-size="14.00">X3</text>
<polygon fill="none" stroke="black" points="671.5,-216 671.5,-239 773.5,-239 773.5,-216 671.5,-216"/>
<text text-anchor="start" x="675.5" y="-223.8" font-family="arial" font-size="14.00">Molex Micro&#45;Fit</text>
<polygon fill="none" stroke="black" points="773.5,-216 773.5,-239 823.5,-239 823.5,-216 773.5,-216"/>
<text text-anchor="start" x="777.5" y="-223.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="823.5,-216 823.5,-239 862.5,-239 862.5,-216 823.5,-216"/>
<text text-anchor="start" x="827.5" y="-223.8" font-family="arial" font-size="14.00">2&#45;pin</text>
<polygon fill="none" stroke="black" points="671.5,-193 671.5,-216 755.5,-216 755.5,-193 671.5,-193"/>
<text text-anchor="start" x="709.5" y="-200.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="755.5,-193 755.5,-216 862.5,-216 862.5,-193 755.5,-193"/>
<text text-anchor="start" x="793.5" y="-200.8" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="671.5,-170 671.5,-193 755.5,-193 755.5,-170 671.5,-170"/>
<text text-anchor="start" x="709.5" y="-177.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="755.5,-170 755.5,-193 862.5,-193 862.5,-170 755.5,-170"/>
<text text-anchor="start" x="794.5" y="-177.8" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="#ffffff" stroke="black" points="854.75,-264.5 665.75,-264.5 665.75,-171 854.75,-171 854.75,-264.5"/>
<polygon fill="none" stroke="black" points="665.75,-240.75 665.75,-264.5 854.75,-264.5 854.75,-240.75 665.75,-240.75"/>
<text text-anchor="start" x="752" y="-247.2" font-family="arial" font-size="14.00">X3</text>
<polygon fill="none" stroke="black" points="665.75,-217 665.75,-240.75 767.5,-240.75 767.5,-217 665.75,-217"/>
<text text-anchor="start" x="669.75" y="-223.45" font-family="arial" font-size="14.00">Molex Micro&#45;Fit</text>
<polygon fill="none" stroke="black" points="767.5,-217 767.5,-240.75 816.75,-240.75 816.75,-217 767.5,-217"/>
<text text-anchor="start" x="771.5" y="-223.45" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="816.75,-217 816.75,-240.75 854.75,-240.75 854.75,-217 816.75,-217"/>
<text text-anchor="start" x="820.75" y="-223.45" font-family="arial" font-size="14.00">2&#45;pin</text>
<polygon fill="none" stroke="black" points="665.75,-194 665.75,-217 748.75,-217 748.75,-194 665.75,-194"/>
<text text-anchor="start" x="703.5" y="-199.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="748.75,-194 748.75,-217 854.75,-217 854.75,-194 748.75,-194"/>
<text text-anchor="start" x="786.38" y="-199.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="665.75,-171 665.75,-194 748.75,-194 748.75,-171 665.75,-171"/>
<text text-anchor="start" x="703.5" y="-176.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="748.75,-171 748.75,-194 854.75,-194 854.75,-171 748.75,-171"/>
<text text-anchor="start" x="787.5" y="-176.7" font-family="arial" font-size="14.00">VCC</text>
</g>
<!-- X4 -->
<g id="node4" class="node">
<title>X4</title>
<polygon fill="#ffffff" stroke="black" points="862,-104 671,-104 671,-12 862,-12 862,-104"/>
<polygon fill="none" stroke="black" points="671.5,-81 671.5,-104 862.5,-104 862.5,-81 671.5,-81"/>
<text text-anchor="start" x="758.5" y="-88.8" font-family="arial" font-size="14.00">X4</text>
<polygon fill="none" stroke="black" points="671.5,-58 671.5,-81 773.5,-81 773.5,-58 671.5,-58"/>
<text text-anchor="start" x="675.5" y="-65.8" font-family="arial" font-size="14.00">Molex Micro&#45;Fit</text>
<polygon fill="none" stroke="black" points="773.5,-58 773.5,-81 823.5,-81 823.5,-58 773.5,-58"/>
<text text-anchor="start" x="777.5" y="-65.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="823.5,-58 823.5,-81 862.5,-81 862.5,-58 823.5,-58"/>
<text text-anchor="start" x="827.5" y="-65.8" font-family="arial" font-size="14.00">2&#45;pin</text>
<polygon fill="none" stroke="black" points="671.5,-35 671.5,-58 755.5,-58 755.5,-35 671.5,-35"/>
<text text-anchor="start" x="709.5" y="-42.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="755.5,-35 755.5,-58 862.5,-58 862.5,-35 755.5,-35"/>
<text text-anchor="start" x="793.5" y="-42.8" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="671.5,-12 671.5,-35 755.5,-35 755.5,-12 671.5,-12"/>
<text text-anchor="start" x="709.5" y="-19.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="755.5,-12 755.5,-35 862.5,-35 862.5,-12 755.5,-12"/>
<text text-anchor="start" x="794.5" y="-19.8" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="#ffffff" stroke="black" points="854.75,-104.5 665.75,-104.5 665.75,-11 854.75,-11 854.75,-104.5"/>
<polygon fill="none" stroke="black" points="665.75,-80.75 665.75,-104.5 854.75,-104.5 854.75,-80.75 665.75,-80.75"/>
<text text-anchor="start" x="752" y="-87.2" font-family="arial" font-size="14.00">X4</text>
<polygon fill="none" stroke="black" points="665.75,-57 665.75,-80.75 767.5,-80.75 767.5,-57 665.75,-57"/>
<text text-anchor="start" x="669.75" y="-63.45" font-family="arial" font-size="14.00">Molex Micro&#45;Fit</text>
<polygon fill="none" stroke="black" points="767.5,-57 767.5,-80.75 816.75,-80.75 816.75,-57 767.5,-57"/>
<text text-anchor="start" x="771.5" y="-63.45" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="816.75,-57 816.75,-80.75 854.75,-80.75 854.75,-57 816.75,-57"/>
<text text-anchor="start" x="820.75" y="-63.45" font-family="arial" font-size="14.00">2&#45;pin</text>
<polygon fill="none" stroke="black" points="665.75,-34 665.75,-57 748.75,-57 748.75,-34 665.75,-34"/>
<text text-anchor="start" x="703.5" y="-39.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="748.75,-34 748.75,-57 854.75,-57 854.75,-34 748.75,-34"/>
<text text-anchor="start" x="786.38" y="-39.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="665.75,-11 665.75,-34 748.75,-34 748.75,-11 665.75,-11"/>
<text text-anchor="start" x="703.5" y="-16.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="748.75,-11 748.75,-34 854.75,-34 854.75,-11 748.75,-11"/>
<text text-anchor="start" x="787.5" y="-16.7" font-family="arial" font-size="14.00">VCC</text>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-361C590.88,-361 606.87,-360 671,-360"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-363C591,-363 607,-362 671,-362"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-365C591.13,-365 607.12,-364 671,-364"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521.75,-364.75C585.63,-364.75 601.62,-363.75 665.75,-363.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521.75,-366.75C585.75,-366.75 601.75,-365.75 665.75,-365.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521.75,-368.75C585.88,-368.75 601.87,-367.75 665.75,-367.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-336C591.13,-336 607.12,-337 671,-337"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M527,-338C591,-338 607,-339 671,-339"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-340C590.88,-340 606.87,-341 671,-341"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521.75,-339.75C585.88,-339.75 601.87,-340.75 665.75,-340.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M521.75,-341.75C585.75,-341.75 601.75,-342.75 665.75,-342.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521.75,-343.75C585.63,-343.75 601.62,-344.75 665.75,-344.75"/>
</g>
<!-- W2&#45;&#45;X3 -->
<g id="edge6" class="edge">
<title>W2:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-203C590.88,-203 606.87,-202 671,-202"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-205C591,-205 607,-204 671,-204"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-207C591.13,-207 607.12,-206 671,-206"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521.75,-204.75C585.63,-204.75 601.62,-203.75 665.75,-203.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521.75,-206.75C585.75,-206.75 601.75,-205.75 665.75,-205.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521.75,-208.75C585.88,-208.75 601.87,-207.75 665.75,-207.75"/>
</g>
<!-- W2&#45;&#45;X3 -->
<g id="edge8" class="edge">
<title>W2:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-178C591.13,-178 607.12,-179 671,-179"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M527,-180C591,-180 607,-181 671,-181"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-182C590.88,-182 606.87,-183 671,-183"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521.75,-179.75C585.88,-179.75 601.87,-180.75 665.75,-180.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M521.75,-181.75C585.75,-181.75 601.75,-182.75 665.75,-182.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521.75,-183.75C585.63,-183.75 601.62,-184.75 665.75,-184.75"/>
</g>
<!-- W3&#45;&#45;X4 -->
<g id="edge10" class="edge">
<title>W3:e&#45;&#45;X4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-45C590.88,-45 606.87,-44 671,-44"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-47C591,-47 607,-46 671,-46"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-49C591.13,-49 607.12,-48 671,-48"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521.75,-44.75C585.63,-44.75 601.62,-43.75 665.75,-43.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521.75,-46.75C585.75,-46.75 601.75,-45.75 665.75,-45.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521.75,-48.75C585.88,-48.75 601.87,-47.75 665.75,-47.75"/>
</g>
<!-- W3&#45;&#45;X4 -->
<g id="edge12" class="edge">
<title>W3:e&#45;&#45;X4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-20C591.13,-20 607.12,-21 671,-21"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M527,-22C591,-22 607,-23 671,-23"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-24C590.88,-24 606.87,-25 671,-25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521.75,-19.75C585.88,-19.75 601.87,-20.75 665.75,-20.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M521.75,-21.75C585.75,-21.75 601.75,-22.75 665.75,-22.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521.75,-23.75C585.63,-23.75 601.62,-24.75 665.75,-24.75"/>
</g>
</g>
</svg>

BIN
examples/ex02.png generated

Binary file not shown.

Before

Width:  |  Height:  |  Size: 86 KiB

After

Width:  |  Height:  |  Size: 77 KiB

356
examples/ex02.svg generated
View File

@ -1,261 +1,261 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="870pt" height="458pt"
viewBox="0.00 0.00 870.00 458.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 454)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-454 866,-454 866,4 -4,4"/>
<svg width="863pt" height="464pt"
viewBox="0.00 0.00 862.75 463.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 459.5)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-459.5 858.75,-459.5 858.75,4 -4,4"/>
<!-- X1 -->
<g id="node1" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="180,-262 0,-262 0,-170 180,-170 180,-262"/>
<polygon fill="none" stroke="black" points="0,-239 0,-262 180,-262 180,-239 0,-239"/>
<text text-anchor="start" x="81.5" y="-246.8" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-216 0,-239 102,-239 102,-216 0,-216"/>
<text text-anchor="start" x="4" y="-223.8" font-family="arial" font-size="14.00">Molex Micro&#45;Fit</text>
<polygon fill="none" stroke="black" points="102,-216 102,-239 141,-239 141,-216 102,-216"/>
<text text-anchor="start" x="106" y="-223.8" font-family="arial" font-size="14.00">male</text>
<polygon fill="none" stroke="black" points="141,-216 141,-239 180,-239 180,-216 141,-216"/>
<text text-anchor="start" x="145" y="-223.8" font-family="arial" font-size="14.00">2&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-193 0,-216 102,-216 102,-193 0,-193"/>
<text text-anchor="start" x="35.5" y="-200.8" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="102,-193 102,-216 180,-216 180,-193 102,-193"/>
<text text-anchor="start" x="137" y="-200.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-170 0,-193 102,-193 102,-170 0,-170"/>
<text text-anchor="start" x="36.5" y="-177.8" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="102,-170 102,-193 180,-193 180,-170 102,-170"/>
<text text-anchor="start" x="137" y="-177.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="#ffffff" stroke="black" points="177.75,-264.5 0,-264.5 0,-171 177.75,-171 177.75,-264.5"/>
<polygon fill="none" stroke="black" points="0,-240.75 0,-264.5 177.75,-264.5 177.75,-240.75 0,-240.75"/>
<text text-anchor="start" x="80.62" y="-247.2" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-217 0,-240.75 101.75,-240.75 101.75,-217 0,-217"/>
<text text-anchor="start" x="4" y="-223.45" font-family="arial" font-size="14.00">Molex Micro&#45;Fit</text>
<polygon fill="none" stroke="black" points="101.75,-217 101.75,-240.75 139.75,-240.75 139.75,-217 101.75,-217"/>
<text text-anchor="start" x="105.75" y="-223.45" font-family="arial" font-size="14.00">male</text>
<polygon fill="none" stroke="black" points="139.75,-217 139.75,-240.75 177.75,-240.75 177.75,-217 139.75,-217"/>
<text text-anchor="start" x="143.75" y="-223.45" font-family="arial" font-size="14.00">2&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-194 0,-217 100.38,-217 100.38,-194 0,-194"/>
<text text-anchor="start" x="34.81" y="-199.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="100.38,-194 100.38,-217 177.75,-217 177.75,-194 100.38,-194"/>
<text text-anchor="start" x="135.31" y="-199.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-171 0,-194 100.38,-194 100.38,-171 0,-171"/>
<text text-anchor="start" x="35.94" y="-176.7" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="100.38,-171 100.38,-194 177.75,-194 177.75,-171 100.38,-171"/>
<text text-anchor="start" x="135.31" y="-176.7" font-family="arial" font-size="14.00">2</text>
</g>
<!-- W1 -->
<g id="node5" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" points="527,-450 324,-450 324,-316 527,-316 527,-450"/>
<polygon fill="none" stroke="black" points="324.5,-427 324.5,-450 527.5,-450 527.5,-427 324.5,-427"/>
<text text-anchor="start" x="415" y="-434.8" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="324.5,-404 324.5,-427 349.5,-427 349.5,-404 324.5,-404"/>
<text text-anchor="start" x="329.5" y="-411.8" font-family="arial" font-size="14.00">2x</text>
<polygon fill="none" stroke="black" points="349.5,-404 349.5,-427 483.5,-427 483.5,-404 349.5,-404"/>
<text text-anchor="start" x="354.5" y="-411.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
<polygon fill="none" stroke="black" points="483.5,-404 483.5,-427 527.5,-427 527.5,-404 483.5,-404"/>
<text text-anchor="start" x="488" y="-411.8" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="356" y="-390.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="326.5" y="-371.8" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="394" y="-371.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="462.5" y="-371.8" font-family="arial" font-size="14.00">X2:1:GND</text>
<polygon fill="#000000" stroke="none" points="324.5,-364 324.5,-366 527.5,-366 527.5,-364 324.5,-364"/>
<polygon fill="#000000" stroke="none" points="324.5,-362 324.5,-364 527.5,-364 527.5,-362 324.5,-362"/>
<polygon fill="#000000" stroke="none" points="324.5,-360 324.5,-362 527.5,-362 527.5,-360 324.5,-360"/>
<text text-anchor="start" x="327.5" y="-346.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="393.5" y="-346.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="463.5" y="-346.8" font-family="arial" font-size="14.00">X2:2:VCC</text>
<polygon fill="#000000" stroke="none" points="324.5,-339 324.5,-341 527.5,-341 527.5,-339 324.5,-339"/>
<polygon fill="#ff0000" stroke="none" points="324.5,-337 324.5,-339 527.5,-339 527.5,-337 324.5,-337"/>
<polygon fill="#000000" stroke="none" points="324.5,-335 324.5,-337 527.5,-337 527.5,-335 324.5,-335"/>
<text text-anchor="start" x="356" y="-321.8" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" points="521.75,-455.5 321.75,-455.5 321.75,-320 521.75,-320 521.75,-455.5"/>
<polygon fill="none" stroke="black" points="321.75,-431.75 321.75,-455.5 521.75,-455.5 521.75,-431.75 321.75,-431.75"/>
<text text-anchor="start" x="411.25" y="-438.2" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="321.75,-408 321.75,-431.75 345.42,-431.75 345.42,-408 321.75,-408"/>
<text text-anchor="start" x="326.46" y="-414.45" font-family="arial" font-size="14.00">2x</text>
<polygon fill="none" stroke="black" points="345.42,-408 345.42,-431.75 477.83,-431.75 477.83,-408 345.42,-408"/>
<text text-anchor="start" x="350.12" y="-414.45" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
<polygon fill="none" stroke="black" points="477.83,-408 477.83,-431.75 521.75,-431.75 521.75,-408 477.83,-408"/>
<text text-anchor="start" x="482.54" y="-414.45" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="352.88" y="-392.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="323.62" y="-373.7" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="390.25" y="-373.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="457.62" y="-373.7" font-family="arial" font-size="14.00">X2:1:GND</text>
<polygon fill="#000000" stroke="none" points="321.75,-368 321.75,-370 521.75,-370 521.75,-368 321.75,-368"/>
<polygon fill="#000000" stroke="none" points="321.75,-366 321.75,-368 521.75,-368 521.75,-366 321.75,-366"/>
<polygon fill="#000000" stroke="none" points="321.75,-364 321.75,-366 521.75,-366 521.75,-364 321.75,-364"/>
<text text-anchor="start" x="324.75" y="-348.7" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="389.5" y="-348.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="458.75" y="-348.7" font-family="arial" font-size="14.00">X2:2:VCC</text>
<polygon fill="#000000" stroke="none" points="321.75,-343 321.75,-345 521.75,-345 521.75,-343 321.75,-343"/>
<polygon fill="#ff0000" stroke="none" points="321.75,-341 321.75,-343 521.75,-343 521.75,-341 321.75,-341"/>
<polygon fill="#000000" stroke="none" points="321.75,-339 321.75,-341 521.75,-341 521.75,-339 321.75,-339"/>
<text text-anchor="start" x="352.88" y="-323.7" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge1" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-202C277.26,-204.56 230.58,-363.56 324,-361"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-204C275.34,-204 228.66,-363 324,-363"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-206C273.42,-203.44 226.74,-362.44 324,-365"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-203.75C275.67,-206.32 227.67,-367.32 321.75,-364.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-205.75C273.75,-205.75 225.75,-366.75 321.75,-366.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-207.75C271.83,-205.18 223.83,-366.18 321.75,-368.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge3" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-179C276.6,-181.56 231.24,-338.56 324,-336"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-181C274.68,-181 229.32,-338 324,-338"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-183C272.76,-180.44 227.4,-337.44 324,-340"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-180.75C275.01,-183.31 228.33,-342.31 321.75,-339.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M177.75,-182.75C273.09,-182.75 226.41,-341.75 321.75,-341.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-184.75C271.17,-182.19 224.49,-341.19 321.75,-343.75"/>
</g>
<!-- W2 -->
<g id="node6" class="node">
<title>W2</title>
<polygon fill="#ffffff" stroke="black" points="527,-292 324,-292 324,-158 527,-158 527,-292"/>
<polygon fill="none" stroke="black" points="324.5,-269 324.5,-292 527.5,-292 527.5,-269 324.5,-269"/>
<text text-anchor="start" x="415" y="-276.8" font-family="arial" font-size="14.00">W2</text>
<polygon fill="none" stroke="black" points="324.5,-246 324.5,-269 349.5,-269 349.5,-246 324.5,-246"/>
<text text-anchor="start" x="329.5" y="-253.8" font-family="arial" font-size="14.00">2x</text>
<polygon fill="none" stroke="black" points="349.5,-246 349.5,-269 483.5,-269 483.5,-246 349.5,-246"/>
<text text-anchor="start" x="354.5" y="-253.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
<polygon fill="none" stroke="black" points="483.5,-246 483.5,-269 527.5,-269 527.5,-246 483.5,-246"/>
<text text-anchor="start" x="488" y="-253.8" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="356" y="-232.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="326.5" y="-213.8" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="394" y="-213.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="462.5" y="-213.8" font-family="arial" font-size="14.00">X3:1:GND</text>
<polygon fill="#000000" stroke="none" points="324.5,-206 324.5,-208 527.5,-208 527.5,-206 324.5,-206"/>
<polygon fill="#000000" stroke="none" points="324.5,-204 324.5,-206 527.5,-206 527.5,-204 324.5,-204"/>
<polygon fill="#000000" stroke="none" points="324.5,-202 324.5,-204 527.5,-204 527.5,-202 324.5,-202"/>
<text text-anchor="start" x="327.5" y="-188.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="393.5" y="-188.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="463.5" y="-188.8" font-family="arial" font-size="14.00">X3:2:VCC</text>
<polygon fill="#000000" stroke="none" points="324.5,-181 324.5,-183 527.5,-183 527.5,-181 324.5,-181"/>
<polygon fill="#ff0000" stroke="none" points="324.5,-179 324.5,-181 527.5,-181 527.5,-179 324.5,-179"/>
<polygon fill="#000000" stroke="none" points="324.5,-177 324.5,-179 527.5,-179 527.5,-177 324.5,-177"/>
<text text-anchor="start" x="356" y="-163.8" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" points="521.75,-295.5 321.75,-295.5 321.75,-160 521.75,-160 521.75,-295.5"/>
<polygon fill="none" stroke="black" points="321.75,-271.75 321.75,-295.5 521.75,-295.5 521.75,-271.75 321.75,-271.75"/>
<text text-anchor="start" x="411.25" y="-278.2" font-family="arial" font-size="14.00">W2</text>
<polygon fill="none" stroke="black" points="321.75,-248 321.75,-271.75 345.42,-271.75 345.42,-248 321.75,-248"/>
<text text-anchor="start" x="326.46" y="-254.45" font-family="arial" font-size="14.00">2x</text>
<polygon fill="none" stroke="black" points="345.42,-248 345.42,-271.75 477.83,-271.75 477.83,-248 345.42,-248"/>
<text text-anchor="start" x="350.12" y="-254.45" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
<polygon fill="none" stroke="black" points="477.83,-248 477.83,-271.75 521.75,-271.75 521.75,-248 477.83,-248"/>
<text text-anchor="start" x="482.54" y="-254.45" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="352.88" y="-232.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="323.62" y="-213.7" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="390.25" y="-213.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="457.62" y="-213.7" font-family="arial" font-size="14.00">X3:1:GND</text>
<polygon fill="#000000" stroke="none" points="321.75,-208 321.75,-210 521.75,-210 521.75,-208 321.75,-208"/>
<polygon fill="#000000" stroke="none" points="321.75,-206 321.75,-208 521.75,-208 521.75,-206 321.75,-206"/>
<polygon fill="#000000" stroke="none" points="321.75,-204 321.75,-206 521.75,-206 521.75,-204 321.75,-204"/>
<text text-anchor="start" x="324.75" y="-188.7" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="389.5" y="-188.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="458.75" y="-188.7" font-family="arial" font-size="14.00">X3:2:VCC</text>
<polygon fill="#000000" stroke="none" points="321.75,-183 321.75,-185 521.75,-185 521.75,-183 321.75,-183"/>
<polygon fill="#ff0000" stroke="none" points="321.75,-181 321.75,-183 521.75,-183 521.75,-181 321.75,-181"/>
<polygon fill="#000000" stroke="none" points="321.75,-179 321.75,-181 521.75,-181 521.75,-179 321.75,-179"/>
<text text-anchor="start" x="352.88" y="-163.7" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X1&#45;&#45;W2 -->
<g id="edge5" class="edge">
<title>X1:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-202C244.13,-202 260.12,-203 324,-203"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-204C244,-204 260,-205 324,-205"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-206C243.88,-206 259.87,-207 324,-207"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-203.75C241.88,-203.75 257.87,-204.75 321.75,-204.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-205.75C241.75,-205.75 257.75,-206.75 321.75,-206.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-207.75C241.63,-207.75 257.62,-208.75 321.75,-208.75"/>
</g>
<!-- X1&#45;&#45;W2 -->
<g id="edge7" class="edge">
<title>X1:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-179C243.88,-179 259.87,-178 324,-178"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-181C244,-181 260,-180 324,-180"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-183C244.13,-183 260.12,-182 324,-182"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-180.75C241.63,-180.75 257.62,-179.75 321.75,-179.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M177.75,-182.75C241.75,-182.75 257.75,-181.75 321.75,-181.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-184.75C241.88,-184.75 257.87,-183.75 321.75,-183.75"/>
</g>
<!-- W3 -->
<g id="node7" class="node">
<title>W3</title>
<polygon fill="#ffffff" stroke="black" points="527,-134 324,-134 324,0 527,0 527,-134"/>
<polygon fill="none" stroke="black" points="324.5,-111 324.5,-134 527.5,-134 527.5,-111 324.5,-111"/>
<text text-anchor="start" x="415" y="-118.8" font-family="arial" font-size="14.00">W3</text>
<polygon fill="none" stroke="black" points="324.5,-88 324.5,-111 349.5,-111 349.5,-88 324.5,-88"/>
<text text-anchor="start" x="329.5" y="-95.8" font-family="arial" font-size="14.00">2x</text>
<polygon fill="none" stroke="black" points="349.5,-88 349.5,-111 483.5,-111 483.5,-88 349.5,-88"/>
<text text-anchor="start" x="354.5" y="-95.8" font-family="arial" font-size="14.00">20 AWG (0.75 mm²)</text>
<polygon fill="none" stroke="black" points="483.5,-88 483.5,-111 527.5,-111 527.5,-88 483.5,-88"/>
<text text-anchor="start" x="488" y="-95.8" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="356" y="-74.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="326.5" y="-55.8" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="394" y="-55.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="462.5" y="-55.8" font-family="arial" font-size="14.00">X4:1:GND</text>
<polygon fill="#000000" stroke="none" points="324.5,-48 324.5,-50 527.5,-50 527.5,-48 324.5,-48"/>
<polygon fill="#000000" stroke="none" points="324.5,-46 324.5,-48 527.5,-48 527.5,-46 324.5,-46"/>
<polygon fill="#000000" stroke="none" points="324.5,-44 324.5,-46 527.5,-46 527.5,-44 324.5,-44"/>
<text text-anchor="start" x="327.5" y="-30.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="393.5" y="-30.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="463.5" y="-30.8" font-family="arial" font-size="14.00">X4:2:VCC</text>
<polygon fill="#000000" stroke="none" points="324.5,-23 324.5,-25 527.5,-25 527.5,-23 324.5,-23"/>
<polygon fill="#ff0000" stroke="none" points="324.5,-21 324.5,-23 527.5,-23 527.5,-21 324.5,-21"/>
<polygon fill="#000000" stroke="none" points="324.5,-19 324.5,-21 527.5,-21 527.5,-19 324.5,-19"/>
<text text-anchor="start" x="356" y="-5.8" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" points="521.75,-135.5 321.75,-135.5 321.75,0 521.75,0 521.75,-135.5"/>
<polygon fill="none" stroke="black" points="321.75,-111.75 321.75,-135.5 521.75,-135.5 521.75,-111.75 321.75,-111.75"/>
<text text-anchor="start" x="411.25" y="-118.2" font-family="arial" font-size="14.00">W3</text>
<polygon fill="none" stroke="black" points="321.75,-88 321.75,-111.75 345.42,-111.75 345.42,-88 321.75,-88"/>
<text text-anchor="start" x="326.46" y="-94.45" font-family="arial" font-size="14.00">2x</text>
<polygon fill="none" stroke="black" points="345.42,-88 345.42,-111.75 477.83,-111.75 477.83,-88 345.42,-88"/>
<text text-anchor="start" x="350.12" y="-94.45" font-family="arial" font-size="14.00">20 AWG (0.75 mm²)</text>
<polygon fill="none" stroke="black" points="477.83,-88 477.83,-111.75 521.75,-111.75 521.75,-88 477.83,-88"/>
<text text-anchor="start" x="482.54" y="-94.45" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="352.88" y="-72.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="323.62" y="-53.7" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="390.25" y="-53.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="457.62" y="-53.7" font-family="arial" font-size="14.00">X4:1:GND</text>
<polygon fill="#000000" stroke="none" points="321.75,-48 321.75,-50 521.75,-50 521.75,-48 321.75,-48"/>
<polygon fill="#000000" stroke="none" points="321.75,-46 321.75,-48 521.75,-48 521.75,-46 321.75,-46"/>
<polygon fill="#000000" stroke="none" points="321.75,-44 321.75,-46 521.75,-46 521.75,-44 321.75,-44"/>
<text text-anchor="start" x="324.75" y="-28.7" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="389.5" y="-28.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="458.75" y="-28.7" font-family="arial" font-size="14.00">X4:2:VCC</text>
<polygon fill="#000000" stroke="none" points="321.75,-23 321.75,-25 521.75,-25 521.75,-23 321.75,-23"/>
<polygon fill="#ff0000" stroke="none" points="321.75,-21 321.75,-23 521.75,-23 521.75,-21 321.75,-21"/>
<polygon fill="#000000" stroke="none" points="321.75,-19 321.75,-21 521.75,-21 521.75,-19 321.75,-19"/>
<text text-anchor="start" x="352.88" y="-3.7" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X1&#45;&#45;W3 -->
<g id="edge9" class="edge">
<title>X1:e&#45;&#45;W3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-202C272.76,-204.56 227.4,-47.56 324,-45"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-204C274.68,-204 229.32,-47 324,-47"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-206C276.6,-203.44 231.24,-46.44 324,-49"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-203.75C271.17,-206.31 224.49,-47.31 321.75,-44.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-205.75C273.09,-205.75 226.41,-46.75 321.75,-46.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-207.75C275.01,-205.19 228.33,-46.19 321.75,-48.75"/>
</g>
<!-- X1&#45;&#45;W3 -->
<g id="edge11" class="edge">
<title>X1:e&#45;&#45;W3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-179C273.42,-181.56 226.74,-22.56 324,-20"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-181C275.34,-181 228.66,-22 324,-22"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-183C277.26,-180.44 230.58,-21.44 324,-24"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-180.75C271.83,-183.32 223.83,-22.32 321.75,-19.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M177.75,-182.75C273.75,-182.75 225.75,-21.75 321.75,-21.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-184.75C275.67,-182.18 227.67,-21.18 321.75,-23.75"/>
</g>
<!-- X2 -->
<g id="node2" class="node">
<title>X2</title>
<polygon fill="#ffffff" stroke="black" points="862,-420 671,-420 671,-328 862,-328 862,-420"/>
<polygon fill="none" stroke="black" points="671.5,-397 671.5,-420 862.5,-420 862.5,-397 671.5,-397"/>
<text text-anchor="start" x="758.5" y="-404.8" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="671.5,-374 671.5,-397 773.5,-397 773.5,-374 671.5,-374"/>
<text text-anchor="start" x="675.5" y="-381.8" font-family="arial" font-size="14.00">Molex Micro&#45;Fit</text>
<polygon fill="none" stroke="black" points="773.5,-374 773.5,-397 823.5,-397 823.5,-374 773.5,-374"/>
<text text-anchor="start" x="777.5" y="-381.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="823.5,-374 823.5,-397 862.5,-397 862.5,-374 823.5,-374"/>
<text text-anchor="start" x="827.5" y="-381.8" font-family="arial" font-size="14.00">2&#45;pin</text>
<polygon fill="none" stroke="black" points="671.5,-351 671.5,-374 755.5,-374 755.5,-351 671.5,-351"/>
<text text-anchor="start" x="709.5" y="-358.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="755.5,-351 755.5,-374 862.5,-374 862.5,-351 755.5,-351"/>
<text text-anchor="start" x="793.5" y="-358.8" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="671.5,-328 671.5,-351 755.5,-351 755.5,-328 671.5,-328"/>
<text text-anchor="start" x="709.5" y="-335.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="755.5,-328 755.5,-351 862.5,-351 862.5,-328 755.5,-328"/>
<text text-anchor="start" x="794.5" y="-335.8" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="#ffffff" stroke="black" points="854.75,-424.5 665.75,-424.5 665.75,-331 854.75,-331 854.75,-424.5"/>
<polygon fill="none" stroke="black" points="665.75,-400.75 665.75,-424.5 854.75,-424.5 854.75,-400.75 665.75,-400.75"/>
<text text-anchor="start" x="752" y="-407.2" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="665.75,-377 665.75,-400.75 767.5,-400.75 767.5,-377 665.75,-377"/>
<text text-anchor="start" x="669.75" y="-383.45" font-family="arial" font-size="14.00">Molex Micro&#45;Fit</text>
<polygon fill="none" stroke="black" points="767.5,-377 767.5,-400.75 816.75,-400.75 816.75,-377 767.5,-377"/>
<text text-anchor="start" x="771.5" y="-383.45" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="816.75,-377 816.75,-400.75 854.75,-400.75 854.75,-377 816.75,-377"/>
<text text-anchor="start" x="820.75" y="-383.45" font-family="arial" font-size="14.00">2&#45;pin</text>
<polygon fill="none" stroke="black" points="665.75,-354 665.75,-377 748.75,-377 748.75,-354 665.75,-354"/>
<text text-anchor="start" x="703.5" y="-359.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="748.75,-354 748.75,-377 854.75,-377 854.75,-354 748.75,-354"/>
<text text-anchor="start" x="786.38" y="-359.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="665.75,-331 665.75,-354 748.75,-354 748.75,-331 665.75,-331"/>
<text text-anchor="start" x="703.5" y="-336.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="748.75,-331 748.75,-354 854.75,-354 854.75,-331 748.75,-331"/>
<text text-anchor="start" x="787.5" y="-336.7" font-family="arial" font-size="14.00">VCC</text>
</g>
<!-- X3 -->
<g id="node3" class="node">
<title>X3</title>
<polygon fill="#ffffff" stroke="black" points="862,-262 671,-262 671,-170 862,-170 862,-262"/>
<polygon fill="none" stroke="black" points="671.5,-239 671.5,-262 862.5,-262 862.5,-239 671.5,-239"/>
<text text-anchor="start" x="758.5" y="-246.8" font-family="arial" font-size="14.00">X3</text>
<polygon fill="none" stroke="black" points="671.5,-216 671.5,-239 773.5,-239 773.5,-216 671.5,-216"/>
<text text-anchor="start" x="675.5" y="-223.8" font-family="arial" font-size="14.00">Molex Micro&#45;Fit</text>
<polygon fill="none" stroke="black" points="773.5,-216 773.5,-239 823.5,-239 823.5,-216 773.5,-216"/>
<text text-anchor="start" x="777.5" y="-223.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="823.5,-216 823.5,-239 862.5,-239 862.5,-216 823.5,-216"/>
<text text-anchor="start" x="827.5" y="-223.8" font-family="arial" font-size="14.00">2&#45;pin</text>
<polygon fill="none" stroke="black" points="671.5,-193 671.5,-216 755.5,-216 755.5,-193 671.5,-193"/>
<text text-anchor="start" x="709.5" y="-200.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="755.5,-193 755.5,-216 862.5,-216 862.5,-193 755.5,-193"/>
<text text-anchor="start" x="793.5" y="-200.8" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="671.5,-170 671.5,-193 755.5,-193 755.5,-170 671.5,-170"/>
<text text-anchor="start" x="709.5" y="-177.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="755.5,-170 755.5,-193 862.5,-193 862.5,-170 755.5,-170"/>
<text text-anchor="start" x="794.5" y="-177.8" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="#ffffff" stroke="black" points="854.75,-264.5 665.75,-264.5 665.75,-171 854.75,-171 854.75,-264.5"/>
<polygon fill="none" stroke="black" points="665.75,-240.75 665.75,-264.5 854.75,-264.5 854.75,-240.75 665.75,-240.75"/>
<text text-anchor="start" x="752" y="-247.2" font-family="arial" font-size="14.00">X3</text>
<polygon fill="none" stroke="black" points="665.75,-217 665.75,-240.75 767.5,-240.75 767.5,-217 665.75,-217"/>
<text text-anchor="start" x="669.75" y="-223.45" font-family="arial" font-size="14.00">Molex Micro&#45;Fit</text>
<polygon fill="none" stroke="black" points="767.5,-217 767.5,-240.75 816.75,-240.75 816.75,-217 767.5,-217"/>
<text text-anchor="start" x="771.5" y="-223.45" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="816.75,-217 816.75,-240.75 854.75,-240.75 854.75,-217 816.75,-217"/>
<text text-anchor="start" x="820.75" y="-223.45" font-family="arial" font-size="14.00">2&#45;pin</text>
<polygon fill="none" stroke="black" points="665.75,-194 665.75,-217 748.75,-217 748.75,-194 665.75,-194"/>
<text text-anchor="start" x="703.5" y="-199.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="748.75,-194 748.75,-217 854.75,-217 854.75,-194 748.75,-194"/>
<text text-anchor="start" x="786.38" y="-199.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="665.75,-171 665.75,-194 748.75,-194 748.75,-171 665.75,-171"/>
<text text-anchor="start" x="703.5" y="-176.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="748.75,-171 748.75,-194 854.75,-194 854.75,-171 748.75,-171"/>
<text text-anchor="start" x="787.5" y="-176.7" font-family="arial" font-size="14.00">VCC</text>
</g>
<!-- X4 -->
<g id="node4" class="node">
<title>X4</title>
<polygon fill="#ffffff" stroke="black" points="862,-104 671,-104 671,-12 862,-12 862,-104"/>
<polygon fill="none" stroke="black" points="671.5,-81 671.5,-104 862.5,-104 862.5,-81 671.5,-81"/>
<text text-anchor="start" x="758.5" y="-88.8" font-family="arial" font-size="14.00">X4</text>
<polygon fill="none" stroke="black" points="671.5,-58 671.5,-81 773.5,-81 773.5,-58 671.5,-58"/>
<text text-anchor="start" x="675.5" y="-65.8" font-family="arial" font-size="14.00">Molex Micro&#45;Fit</text>
<polygon fill="none" stroke="black" points="773.5,-58 773.5,-81 823.5,-81 823.5,-58 773.5,-58"/>
<text text-anchor="start" x="777.5" y="-65.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="823.5,-58 823.5,-81 862.5,-81 862.5,-58 823.5,-58"/>
<text text-anchor="start" x="827.5" y="-65.8" font-family="arial" font-size="14.00">2&#45;pin</text>
<polygon fill="none" stroke="black" points="671.5,-35 671.5,-58 755.5,-58 755.5,-35 671.5,-35"/>
<text text-anchor="start" x="709.5" y="-42.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="755.5,-35 755.5,-58 862.5,-58 862.5,-35 755.5,-35"/>
<text text-anchor="start" x="793.5" y="-42.8" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="671.5,-12 671.5,-35 755.5,-35 755.5,-12 671.5,-12"/>
<text text-anchor="start" x="709.5" y="-19.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="755.5,-12 755.5,-35 862.5,-35 862.5,-12 755.5,-12"/>
<text text-anchor="start" x="794.5" y="-19.8" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="#ffffff" stroke="black" points="854.75,-104.5 665.75,-104.5 665.75,-11 854.75,-11 854.75,-104.5"/>
<polygon fill="none" stroke="black" points="665.75,-80.75 665.75,-104.5 854.75,-104.5 854.75,-80.75 665.75,-80.75"/>
<text text-anchor="start" x="752" y="-87.2" font-family="arial" font-size="14.00">X4</text>
<polygon fill="none" stroke="black" points="665.75,-57 665.75,-80.75 767.5,-80.75 767.5,-57 665.75,-57"/>
<text text-anchor="start" x="669.75" y="-63.45" font-family="arial" font-size="14.00">Molex Micro&#45;Fit</text>
<polygon fill="none" stroke="black" points="767.5,-57 767.5,-80.75 816.75,-80.75 816.75,-57 767.5,-57"/>
<text text-anchor="start" x="771.5" y="-63.45" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="816.75,-57 816.75,-80.75 854.75,-80.75 854.75,-57 816.75,-57"/>
<text text-anchor="start" x="820.75" y="-63.45" font-family="arial" font-size="14.00">2&#45;pin</text>
<polygon fill="none" stroke="black" points="665.75,-34 665.75,-57 748.75,-57 748.75,-34 665.75,-34"/>
<text text-anchor="start" x="703.5" y="-39.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="748.75,-34 748.75,-57 854.75,-57 854.75,-34 748.75,-34"/>
<text text-anchor="start" x="786.38" y="-39.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="665.75,-11 665.75,-34 748.75,-34 748.75,-11 665.75,-11"/>
<text text-anchor="start" x="703.5" y="-16.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="748.75,-11 748.75,-34 854.75,-34 854.75,-11 748.75,-11"/>
<text text-anchor="start" x="787.5" y="-16.7" font-family="arial" font-size="14.00">VCC</text>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-361C590.88,-361 606.87,-360 671,-360"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-363C591,-363 607,-362 671,-362"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-365C591.13,-365 607.12,-364 671,-364"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521.75,-364.75C585.63,-364.75 601.62,-363.75 665.75,-363.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521.75,-366.75C585.75,-366.75 601.75,-365.75 665.75,-365.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521.75,-368.75C585.88,-368.75 601.87,-367.75 665.75,-367.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-336C591.13,-336 607.12,-337 671,-337"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M527,-338C591,-338 607,-339 671,-339"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-340C590.88,-340 606.87,-341 671,-341"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521.75,-339.75C585.88,-339.75 601.87,-340.75 665.75,-340.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M521.75,-341.75C585.75,-341.75 601.75,-342.75 665.75,-342.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521.75,-343.75C585.63,-343.75 601.62,-344.75 665.75,-344.75"/>
</g>
<!-- W2&#45;&#45;X3 -->
<g id="edge6" class="edge">
<title>W2:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-203C590.88,-203 606.87,-202 671,-202"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-205C591,-205 607,-204 671,-204"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-207C591.13,-207 607.12,-206 671,-206"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521.75,-204.75C585.63,-204.75 601.62,-203.75 665.75,-203.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521.75,-206.75C585.75,-206.75 601.75,-205.75 665.75,-205.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521.75,-208.75C585.88,-208.75 601.87,-207.75 665.75,-207.75"/>
</g>
<!-- W2&#45;&#45;X3 -->
<g id="edge8" class="edge">
<title>W2:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-178C591.13,-178 607.12,-179 671,-179"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M527,-180C591,-180 607,-181 671,-181"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-182C590.88,-182 606.87,-183 671,-183"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521.75,-179.75C585.88,-179.75 601.87,-180.75 665.75,-180.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M521.75,-181.75C585.75,-181.75 601.75,-182.75 665.75,-182.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521.75,-183.75C585.63,-183.75 601.62,-184.75 665.75,-184.75"/>
</g>
<!-- W3&#45;&#45;X4 -->
<g id="edge10" class="edge">
<title>W3:e&#45;&#45;X4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-45C590.88,-45 606.87,-44 671,-44"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-47C591,-47 607,-46 671,-46"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-49C591.13,-49 607.12,-48 671,-48"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521.75,-44.75C585.63,-44.75 601.62,-43.75 665.75,-43.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521.75,-46.75C585.75,-46.75 601.75,-45.75 665.75,-45.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521.75,-48.75C585.88,-48.75 601.87,-47.75 665.75,-47.75"/>
</g>
<!-- W3&#45;&#45;X4 -->
<g id="edge12" class="edge">
<title>W3:e&#45;&#45;X4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-20C591.13,-20 607.12,-21 671,-21"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M527,-22C591,-22 607,-23 671,-23"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M527,-24C590.88,-24 606.87,-25 671,-25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521.75,-19.75C585.88,-19.75 601.87,-20.75 665.75,-20.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M521.75,-21.75C585.75,-21.75 601.75,-22.75 665.75,-22.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521.75,-23.75C585.63,-23.75 601.62,-24.75 665.75,-24.75"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 20 KiB

312
examples/ex03.html generated
View File

@ -30,231 +30,231 @@
<div id="diagram">
<!-- XML and DOCTYPE declarations from SVG file removed -->
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="865pt" height="332pt"
viewBox="0.00 0.00 865.00 332.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 328)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-328 861,-328 861,4 -4,4"/>
<svg width="859pt" height="338pt"
viewBox="0.00 0.00 858.50 337.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 333.5)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-333.5 854.5,-333.5 854.5,4 -4,4"/>
<!-- X1 -->
<g id="node1" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="180,-208 0,-208 0,-116 180,-116 180,-208"/>
<polygon fill="none" stroke="black" points="0,-185 0,-208 180,-208 180,-185 0,-185"/>
<text text-anchor="start" x="81.5" y="-192.8" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-162 0,-185 102,-185 102,-162 0,-162"/>
<text text-anchor="start" x="4" y="-169.8" font-family="arial" font-size="14.00">Molex Micro&#45;Fit</text>
<polygon fill="none" stroke="black" points="102,-162 102,-185 141,-185 141,-162 102,-162"/>
<text text-anchor="start" x="106" y="-169.8" font-family="arial" font-size="14.00">male</text>
<polygon fill="none" stroke="black" points="141,-162 141,-185 180,-185 180,-162 141,-162"/>
<text text-anchor="start" x="145" y="-169.8" font-family="arial" font-size="14.00">2&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-139 0,-162 102,-162 102,-139 0,-139"/>
<text text-anchor="start" x="35.5" y="-146.8" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="102,-139 102,-162 180,-162 180,-139 102,-139"/>
<text text-anchor="start" x="137" y="-146.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-116 0,-139 102,-139 102,-116 0,-116"/>
<text text-anchor="start" x="36.5" y="-123.8" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="102,-116 102,-139 180,-139 180,-116 102,-116"/>
<text text-anchor="start" x="137" y="-123.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="#ffffff" stroke="black" points="177.75,-211.5 0,-211.5 0,-118 177.75,-118 177.75,-211.5"/>
<polygon fill="none" stroke="black" points="0,-187.75 0,-211.5 177.75,-211.5 177.75,-187.75 0,-187.75"/>
<text text-anchor="start" x="80.62" y="-194.2" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-164 0,-187.75 101.75,-187.75 101.75,-164 0,-164"/>
<text text-anchor="start" x="4" y="-170.45" font-family="arial" font-size="14.00">Molex Micro&#45;Fit</text>
<polygon fill="none" stroke="black" points="101.75,-164 101.75,-187.75 139.75,-187.75 139.75,-164 101.75,-164"/>
<text text-anchor="start" x="105.75" y="-170.45" font-family="arial" font-size="14.00">male</text>
<polygon fill="none" stroke="black" points="139.75,-164 139.75,-187.75 177.75,-187.75 177.75,-164 139.75,-164"/>
<text text-anchor="start" x="143.75" y="-170.45" font-family="arial" font-size="14.00">2&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-141 0,-164 100.38,-164 100.38,-141 0,-141"/>
<text text-anchor="start" x="34.81" y="-146.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="100.38,-141 100.38,-164 177.75,-164 177.75,-141 100.38,-141"/>
<text text-anchor="start" x="135.31" y="-146.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-118 0,-141 100.38,-141 100.38,-118 0,-118"/>
<text text-anchor="start" x="35.94" y="-123.7" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="100.38,-118 100.38,-141 177.75,-141 177.75,-118 100.38,-118"/>
<text text-anchor="start" x="135.31" y="-123.7" font-family="arial" font-size="14.00">2</text>
</g>
<!-- W1 -->
<g id="node5" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="522,-288 324,-288 324,-54 522,-54 522,-288"/>
<polygon fill="none" stroke="black" points="324,-265 324,-288 522,-288 522,-265 324,-265"/>
<text text-anchor="start" x="412" y="-272.8" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="324,-242 324,-265 347,-265 347,-242 324,-242"/>
<text text-anchor="start" x="328" y="-249.8" font-family="arial" font-size="14.00">6x</text>
<polygon fill="none" stroke="black" points="347,-242 347,-265 479,-265 479,-242 347,-242"/>
<text text-anchor="start" x="351" y="-249.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
<polygon fill="none" stroke="black" points="479,-242 479,-265 522,-265 522,-242 479,-242"/>
<text text-anchor="start" x="483" y="-249.8" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="356.5" y="-228.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="327" y="-209.8" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="397" y="-209.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="456" y="-209.8" font-family="arial" font-size="14.00">X2:1:GND</text>
<polygon fill="#000000" stroke="none" points="324,-202 324,-204 522,-204 522,-202 324,-202"/>
<polygon fill="#000000" stroke="none" points="324,-200 324,-202 522,-202 522,-200 324,-200"/>
<polygon fill="#000000" stroke="none" points="324,-198 324,-200 522,-200 522,-198 324,-198"/>
<text text-anchor="start" x="328" y="-184.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="396" y="-184.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="457" y="-184.8" font-family="arial" font-size="14.00">X2:2:VCC</text>
<polygon fill="#000000" stroke="none" points="324,-177 324,-179 522,-179 522,-177 324,-177"/>
<polygon fill="#ff0000" stroke="none" points="324,-175 324,-177 522,-177 522,-175 324,-175"/>
<polygon fill="#000000" stroke="none" points="324,-173 324,-175 522,-175 522,-173 324,-173"/>
<text text-anchor="start" x="327" y="-159.8" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="397" y="-159.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="456" y="-159.8" font-family="arial" font-size="14.00">X3:1:GND</text>
<polygon fill="#000000" stroke="none" points="324,-152 324,-154 522,-154 522,-152 324,-152"/>
<polygon fill="#000000" stroke="none" points="324,-150 324,-152 522,-152 522,-150 324,-150"/>
<polygon fill="#000000" stroke="none" points="324,-148 324,-150 522,-150 522,-148 324,-148"/>
<text text-anchor="start" x="328" y="-134.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="396" y="-134.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="457" y="-134.8" font-family="arial" font-size="14.00">X3:2:VCC</text>
<polygon fill="#000000" stroke="none" points="324,-127 324,-129 522,-129 522,-127 324,-127"/>
<polygon fill="#ff0000" stroke="none" points="324,-125 324,-127 522,-127 522,-125 324,-125"/>
<polygon fill="#000000" stroke="none" points="324,-123 324,-125 522,-125 522,-123 324,-123"/>
<text text-anchor="start" x="327" y="-109.8" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="397" y="-109.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="456" y="-109.8" font-family="arial" font-size="14.00">X4:1:GND</text>
<polygon fill="#000000" stroke="none" points="324,-102 324,-104 522,-104 522,-102 324,-102"/>
<polygon fill="#000000" stroke="none" points="324,-100 324,-102 522,-102 522,-100 324,-100"/>
<polygon fill="#000000" stroke="none" points="324,-98 324,-100 522,-100 522,-98 324,-98"/>
<text text-anchor="start" x="328" y="-84.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="396" y="-84.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="457" y="-84.8" font-family="arial" font-size="14.00">X4:2:VCC</text>
<polygon fill="#000000" stroke="none" points="324,-77 324,-79 522,-79 522,-77 324,-77"/>
<polygon fill="#ff0000" stroke="none" points="324,-75 324,-77 522,-77 522,-75 324,-75"/>
<polygon fill="#000000" stroke="none" points="324,-73 324,-75 522,-75 522,-73 324,-73"/>
<text text-anchor="start" x="356.5" y="-59.8" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="517.5,-292.5 321.75,-292.5 321.75,-57 517.5,-57 517.5,-292.5"/>
<polygon fill="none" stroke="black" points="321.75,-268.75 321.75,-292.5 517.5,-292.5 517.5,-268.75 321.75,-268.75"/>
<text text-anchor="start" x="409.12" y="-275.2" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="321.75,-245 321.75,-268.75 344,-268.75 344,-245 321.75,-245"/>
<text text-anchor="start" x="325.75" y="-251.45" font-family="arial" font-size="14.00">6x</text>
<polygon fill="none" stroke="black" points="344,-245 344,-268.75 475,-268.75 475,-245 344,-245"/>
<text text-anchor="start" x="348" y="-251.45" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
<polygon fill="none" stroke="black" points="475,-245 475,-268.75 517.5,-268.75 517.5,-245 475,-245"/>
<text text-anchor="start" x="479" y="-251.45" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="354" y="-229.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="324.75" y="-210.7" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="393.75" y="-210.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="452.25" y="-210.7" font-family="arial" font-size="14.00">X2:1:GND</text>
<polygon fill="#000000" stroke="none" points="321.75,-205 321.75,-207 517.5,-207 517.5,-205 321.75,-205"/>
<polygon fill="#000000" stroke="none" points="321.75,-203 321.75,-205 517.5,-205 517.5,-203 321.75,-203"/>
<polygon fill="#000000" stroke="none" points="321.75,-201 321.75,-203 517.5,-203 517.5,-201 321.75,-201"/>
<text text-anchor="start" x="325.88" y="-185.7" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="393" y="-185.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="453.38" y="-185.7" font-family="arial" font-size="14.00">X2:2:VCC</text>
<polygon fill="#000000" stroke="none" points="321.75,-180 321.75,-182 517.5,-182 517.5,-180 321.75,-180"/>
<polygon fill="#ff0000" stroke="none" points="321.75,-178 321.75,-180 517.5,-180 517.5,-178 321.75,-178"/>
<polygon fill="#000000" stroke="none" points="321.75,-176 321.75,-178 517.5,-178 517.5,-176 321.75,-176"/>
<text text-anchor="start" x="324.75" y="-160.7" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="393.75" y="-160.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="452.25" y="-160.7" font-family="arial" font-size="14.00">X3:1:GND</text>
<polygon fill="#000000" stroke="none" points="321.75,-155 321.75,-157 517.5,-157 517.5,-155 321.75,-155"/>
<polygon fill="#000000" stroke="none" points="321.75,-153 321.75,-155 517.5,-155 517.5,-153 321.75,-153"/>
<polygon fill="#000000" stroke="none" points="321.75,-151 321.75,-153 517.5,-153 517.5,-151 321.75,-151"/>
<text text-anchor="start" x="325.88" y="-135.7" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="393" y="-135.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="453.38" y="-135.7" font-family="arial" font-size="14.00">X3:2:VCC</text>
<polygon fill="#000000" stroke="none" points="321.75,-130 321.75,-132 517.5,-132 517.5,-130 321.75,-130"/>
<polygon fill="#ff0000" stroke="none" points="321.75,-128 321.75,-130 517.5,-130 517.5,-128 321.75,-128"/>
<polygon fill="#000000" stroke="none" points="321.75,-126 321.75,-128 517.5,-128 517.5,-126 321.75,-126"/>
<text text-anchor="start" x="324.75" y="-110.7" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="393.75" y="-110.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="452.25" y="-110.7" font-family="arial" font-size="14.00">X4:1:GND</text>
<polygon fill="#000000" stroke="none" points="321.75,-105 321.75,-107 517.5,-107 517.5,-105 321.75,-105"/>
<polygon fill="#000000" stroke="none" points="321.75,-103 321.75,-105 517.5,-105 517.5,-103 321.75,-103"/>
<polygon fill="#000000" stroke="none" points="321.75,-101 321.75,-103 517.5,-103 517.5,-101 321.75,-101"/>
<text text-anchor="start" x="325.88" y="-85.7" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="393" y="-85.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="453.38" y="-85.7" font-family="arial" font-size="14.00">X4:2:VCC</text>
<polygon fill="#000000" stroke="none" points="321.75,-80 321.75,-82 517.5,-82 517.5,-80 321.75,-80"/>
<polygon fill="#ff0000" stroke="none" points="321.75,-78 321.75,-80 517.5,-80 517.5,-78 321.75,-78"/>
<polygon fill="#000000" stroke="none" points="321.75,-76 321.75,-78 517.5,-78 517.5,-76 321.75,-76"/>
<text text-anchor="start" x="354" y="-60.7" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge1" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-148C249.87,-149.68 258.08,-200.68 324,-199"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-150C247.9,-150 256.1,-201 324,-201"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-152C245.92,-150.32 254.13,-201.32 324,-203"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-150.75C247.62,-152.43 255.83,-203.43 321.75,-201.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-152.75C245.65,-152.75 253.85,-203.75 321.75,-203.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-154.75C243.67,-153.07 251.88,-204.07 321.75,-205.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge3" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-125C249.57,-126.65 258.36,-175.65 324,-174"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-127C247.6,-127 256.4,-176 324,-176"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-129C245.64,-127.35 254.43,-176.35 324,-178"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-127.75C247.32,-129.4 256.11,-178.4 321.75,-176.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M177.75,-129.75C245.35,-129.75 254.15,-178.75 321.75,-178.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-131.75C243.39,-130.1 252.18,-179.1 321.75,-180.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge5" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-148C244.13,-148 260.12,-149 324,-149"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-150C244,-150 260,-151 324,-151"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-152C243.88,-152 259.87,-153 324,-153"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-150.75C241.88,-150.75 257.87,-151.75 321.75,-151.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-152.75C241.75,-152.75 257.75,-153.75 321.75,-153.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-154.75C241.63,-154.75 257.62,-155.75 321.75,-155.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge7" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-125C243.88,-125 259.87,-124 324,-124"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-127C244,-127 260,-126 324,-126"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-129C244.13,-129 260.12,-128 324,-128"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-127.75C241.63,-127.75 257.62,-126.75 321.75,-126.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M177.75,-129.75C241.75,-129.75 257.75,-128.75 321.75,-128.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-131.75C241.88,-131.75 257.87,-130.75 321.75,-130.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge9" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-148C245.64,-149.65 254.43,-100.65 324,-99"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-150C247.6,-150 256.4,-101 324,-101"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-152C249.57,-150.35 258.36,-101.35 324,-103"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-150.75C243.39,-152.4 252.18,-103.4 321.75,-101.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-152.75C245.35,-152.75 254.15,-103.75 321.75,-103.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-154.75C247.32,-153.1 256.11,-104.1 321.75,-105.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge11" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-125C245.92,-126.68 254.13,-75.68 324,-74"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-127C247.9,-127 256.1,-76 324,-76"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-129C249.87,-127.32 258.08,-76.32 324,-78"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-127.75C243.67,-129.43 251.88,-78.43 321.75,-76.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M177.75,-129.75C245.65,-129.75 253.85,-78.75 321.75,-78.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-131.75C247.62,-130.07 255.83,-79.07 321.75,-80.75"/>
</g>
<!-- X2 -->
<g id="node2" class="node">
<title>X2</title>
<polygon fill="#ffffff" stroke="black" points="857,-324 666,-324 666,-232 857,-232 857,-324"/>
<polygon fill="none" stroke="black" points="666.5,-301 666.5,-324 857.5,-324 857.5,-301 666.5,-301"/>
<text text-anchor="start" x="753.5" y="-308.8" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="666.5,-278 666.5,-301 768.5,-301 768.5,-278 666.5,-278"/>
<text text-anchor="start" x="670.5" y="-285.8" font-family="arial" font-size="14.00">Molex Micro&#45;Fit</text>
<polygon fill="none" stroke="black" points="768.5,-278 768.5,-301 818.5,-301 818.5,-278 768.5,-278"/>
<text text-anchor="start" x="772.5" y="-285.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="818.5,-278 818.5,-301 857.5,-301 857.5,-278 818.5,-278"/>
<text text-anchor="start" x="822.5" y="-285.8" font-family="arial" font-size="14.00">2&#45;pin</text>
<polygon fill="none" stroke="black" points="666.5,-255 666.5,-278 750.5,-278 750.5,-255 666.5,-255"/>
<text text-anchor="start" x="704.5" y="-262.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="750.5,-255 750.5,-278 857.5,-278 857.5,-255 750.5,-255"/>
<text text-anchor="start" x="788.5" y="-262.8" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="666.5,-232 666.5,-255 750.5,-255 750.5,-232 666.5,-232"/>
<text text-anchor="start" x="704.5" y="-239.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="750.5,-232 750.5,-255 857.5,-255 857.5,-232 750.5,-232"/>
<text text-anchor="start" x="789.5" y="-239.8" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="#ffffff" stroke="black" points="850.5,-329.5 661.5,-329.5 661.5,-236 850.5,-236 850.5,-329.5"/>
<polygon fill="none" stroke="black" points="661.5,-305.75 661.5,-329.5 850.5,-329.5 850.5,-305.75 661.5,-305.75"/>
<text text-anchor="start" x="747.75" y="-312.2" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="661.5,-282 661.5,-305.75 763.25,-305.75 763.25,-282 661.5,-282"/>
<text text-anchor="start" x="665.5" y="-288.45" font-family="arial" font-size="14.00">Molex Micro&#45;Fit</text>
<polygon fill="none" stroke="black" points="763.25,-282 763.25,-305.75 812.5,-305.75 812.5,-282 763.25,-282"/>
<text text-anchor="start" x="767.25" y="-288.45" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="812.5,-282 812.5,-305.75 850.5,-305.75 850.5,-282 812.5,-282"/>
<text text-anchor="start" x="816.5" y="-288.45" font-family="arial" font-size="14.00">2&#45;pin</text>
<polygon fill="none" stroke="black" points="661.5,-259 661.5,-282 744.5,-282 744.5,-259 661.5,-259"/>
<text text-anchor="start" x="699.25" y="-264.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="744.5,-259 744.5,-282 850.5,-282 850.5,-259 744.5,-259"/>
<text text-anchor="start" x="782.12" y="-264.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="661.5,-236 661.5,-259 744.5,-259 744.5,-236 661.5,-236"/>
<text text-anchor="start" x="699.25" y="-241.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="744.5,-236 744.5,-259 850.5,-259 850.5,-236 744.5,-236"/>
<text text-anchor="start" x="783.25" y="-241.7" font-family="arial" font-size="14.00">VCC</text>
</g>
<!-- X3 -->
<g id="node3" class="node">
<title>X3</title>
<polygon fill="#ffffff" stroke="black" points="857,-208 666,-208 666,-116 857,-116 857,-208"/>
<polygon fill="none" stroke="black" points="666.5,-185 666.5,-208 857.5,-208 857.5,-185 666.5,-185"/>
<text text-anchor="start" x="753.5" y="-192.8" font-family="arial" font-size="14.00">X3</text>
<polygon fill="none" stroke="black" points="666.5,-162 666.5,-185 768.5,-185 768.5,-162 666.5,-162"/>
<text text-anchor="start" x="670.5" y="-169.8" font-family="arial" font-size="14.00">Molex Micro&#45;Fit</text>
<polygon fill="none" stroke="black" points="768.5,-162 768.5,-185 818.5,-185 818.5,-162 768.5,-162"/>
<text text-anchor="start" x="772.5" y="-169.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="818.5,-162 818.5,-185 857.5,-185 857.5,-162 818.5,-162"/>
<text text-anchor="start" x="822.5" y="-169.8" font-family="arial" font-size="14.00">2&#45;pin</text>
<polygon fill="none" stroke="black" points="666.5,-139 666.5,-162 750.5,-162 750.5,-139 666.5,-139"/>
<text text-anchor="start" x="704.5" y="-146.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="750.5,-139 750.5,-162 857.5,-162 857.5,-139 750.5,-139"/>
<text text-anchor="start" x="788.5" y="-146.8" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="666.5,-116 666.5,-139 750.5,-139 750.5,-116 666.5,-116"/>
<text text-anchor="start" x="704.5" y="-123.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="750.5,-116 750.5,-139 857.5,-139 857.5,-116 750.5,-116"/>
<text text-anchor="start" x="789.5" y="-123.8" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="#ffffff" stroke="black" points="850.5,-211.5 661.5,-211.5 661.5,-118 850.5,-118 850.5,-211.5"/>
<polygon fill="none" stroke="black" points="661.5,-187.75 661.5,-211.5 850.5,-211.5 850.5,-187.75 661.5,-187.75"/>
<text text-anchor="start" x="747.75" y="-194.2" font-family="arial" font-size="14.00">X3</text>
<polygon fill="none" stroke="black" points="661.5,-164 661.5,-187.75 763.25,-187.75 763.25,-164 661.5,-164"/>
<text text-anchor="start" x="665.5" y="-170.45" font-family="arial" font-size="14.00">Molex Micro&#45;Fit</text>
<polygon fill="none" stroke="black" points="763.25,-164 763.25,-187.75 812.5,-187.75 812.5,-164 763.25,-164"/>
<text text-anchor="start" x="767.25" y="-170.45" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="812.5,-164 812.5,-187.75 850.5,-187.75 850.5,-164 812.5,-164"/>
<text text-anchor="start" x="816.5" y="-170.45" font-family="arial" font-size="14.00">2&#45;pin</text>
<polygon fill="none" stroke="black" points="661.5,-141 661.5,-164 744.5,-164 744.5,-141 661.5,-141"/>
<text text-anchor="start" x="699.25" y="-146.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="744.5,-141 744.5,-164 850.5,-164 850.5,-141 744.5,-141"/>
<text text-anchor="start" x="782.12" y="-146.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="661.5,-118 661.5,-141 744.5,-141 744.5,-118 661.5,-118"/>
<text text-anchor="start" x="699.25" y="-123.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="744.5,-118 744.5,-141 850.5,-141 850.5,-118 744.5,-118"/>
<text text-anchor="start" x="783.25" y="-123.7" font-family="arial" font-size="14.00">VCC</text>
</g>
<!-- X4 -->
<g id="node4" class="node">
<title>X4</title>
<polygon fill="#ffffff" stroke="black" points="857,-92 666,-92 666,0 857,0 857,-92"/>
<polygon fill="none" stroke="black" points="666.5,-69 666.5,-92 857.5,-92 857.5,-69 666.5,-69"/>
<text text-anchor="start" x="753.5" y="-76.8" font-family="arial" font-size="14.00">X4</text>
<polygon fill="none" stroke="black" points="666.5,-46 666.5,-69 768.5,-69 768.5,-46 666.5,-46"/>
<text text-anchor="start" x="670.5" y="-53.8" font-family="arial" font-size="14.00">Molex Micro&#45;Fit</text>
<polygon fill="none" stroke="black" points="768.5,-46 768.5,-69 818.5,-69 818.5,-46 768.5,-46"/>
<text text-anchor="start" x="772.5" y="-53.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="818.5,-46 818.5,-69 857.5,-69 857.5,-46 818.5,-46"/>
<text text-anchor="start" x="822.5" y="-53.8" font-family="arial" font-size="14.00">2&#45;pin</text>
<polygon fill="none" stroke="black" points="666.5,-23 666.5,-46 750.5,-46 750.5,-23 666.5,-23"/>
<text text-anchor="start" x="704.5" y="-30.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="750.5,-23 750.5,-46 857.5,-46 857.5,-23 750.5,-23"/>
<text text-anchor="start" x="788.5" y="-30.8" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="666.5,0 666.5,-23 750.5,-23 750.5,0 666.5,0"/>
<text text-anchor="start" x="704.5" y="-7.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="750.5,0 750.5,-23 857.5,-23 857.5,0 750.5,0"/>
<text text-anchor="start" x="789.5" y="-7.8" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="#ffffff" stroke="black" points="850.5,-93.5 661.5,-93.5 661.5,0 850.5,0 850.5,-93.5"/>
<polygon fill="none" stroke="black" points="661.5,-69.75 661.5,-93.5 850.5,-93.5 850.5,-69.75 661.5,-69.75"/>
<text text-anchor="start" x="747.75" y="-76.2" font-family="arial" font-size="14.00">X4</text>
<polygon fill="none" stroke="black" points="661.5,-46 661.5,-69.75 763.25,-69.75 763.25,-46 661.5,-46"/>
<text text-anchor="start" x="665.5" y="-52.45" font-family="arial" font-size="14.00">Molex Micro&#45;Fit</text>
<polygon fill="none" stroke="black" points="763.25,-46 763.25,-69.75 812.5,-69.75 812.5,-46 763.25,-46"/>
<text text-anchor="start" x="767.25" y="-52.45" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="812.5,-46 812.5,-69.75 850.5,-69.75 850.5,-46 812.5,-46"/>
<text text-anchor="start" x="816.5" y="-52.45" font-family="arial" font-size="14.00">2&#45;pin</text>
<polygon fill="none" stroke="black" points="661.5,-23 661.5,-46 744.5,-46 744.5,-23 661.5,-23"/>
<text text-anchor="start" x="699.25" y="-28.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="744.5,-23 744.5,-46 850.5,-46 850.5,-23 744.5,-23"/>
<text text-anchor="start" x="782.12" y="-28.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="661.5,0 661.5,-23 744.5,-23 744.5,0 661.5,0"/>
<text text-anchor="start" x="699.25" y="-5.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="744.5,0 744.5,-23 850.5,-23 850.5,0 744.5,0"/>
<text text-anchor="start" x="783.25" y="-5.7" font-family="arial" font-size="14.00">VCC</text>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-199C594.22,-200.89 597.78,-265.89 666,-264"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-201C592.22,-201 595.78,-266 666,-266"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-203C590.22,-201.11 593.78,-266.11 666,-268"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M517.5,-201.75C590.09,-203.67 592.91,-270.67 661.5,-268.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M517.5,-203.75C588.09,-203.75 590.91,-270.75 661.5,-270.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M517.5,-205.75C586.09,-203.83 588.91,-270.83 661.5,-272.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-174C594.59,-175.92 597.41,-242.92 666,-241"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M522,-176C592.59,-176 595.41,-243 666,-243"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-178C590.59,-176.08 593.41,-243.08 666,-245"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M517.5,-176.75C590.47,-178.69 592.53,-247.69 661.5,-245.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M517.5,-178.75C588.47,-178.75 590.53,-247.75 661.5,-247.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M517.5,-180.75C586.47,-178.81 588.53,-247.81 661.5,-249.75"/>
</g>
<!-- W1&#45;&#45;X3 -->
<g id="edge6" class="edge">
<title>W1:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-149C585.88,-149 601.87,-148 666,-148"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-151C586,-151 602,-150 666,-150"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-153C586.13,-153 602.12,-152 666,-152"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M517.5,-151.75C581.38,-151.75 597.37,-150.75 661.5,-150.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M517.5,-153.75C581.5,-153.75 597.5,-152.75 661.5,-152.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M517.5,-155.75C581.63,-155.75 597.62,-154.75 661.5,-154.75"/>
</g>
<!-- W1&#45;&#45;X3 -->
<g id="edge8" class="edge">
<title>W1:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-124C586.13,-124 602.12,-125 666,-125"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M522,-126C586,-126 602,-127 666,-127"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-128C585.88,-128 601.87,-129 666,-129"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M517.5,-126.75C581.63,-126.75 597.62,-127.75 661.5,-127.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M517.5,-128.75C581.5,-128.75 597.5,-129.75 661.5,-129.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M517.5,-130.75C581.38,-130.75 597.37,-131.75 661.5,-131.75"/>
</g>
<!-- W1&#45;&#45;X4 -->
<g id="edge10" class="edge">
<title>W1:e&#45;&#45;X4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-99C590.59,-100.92 593.41,-33.92 666,-32"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-101C592.59,-101 595.41,-34 666,-34"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-103C594.59,-101.08 597.41,-34.08 666,-36"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M517.5,-101.75C586.47,-103.69 588.53,-34.69 661.5,-32.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M517.5,-103.75C588.47,-103.75 590.53,-34.75 661.5,-34.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M517.5,-105.75C590.47,-103.81 592.53,-34.81 661.5,-36.75"/>
</g>
<!-- W1&#45;&#45;X4 -->
<g id="edge12" class="edge">
<title>W1:e&#45;&#45;X4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-74C590.22,-75.89 593.78,-10.89 666,-9"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M522,-76C592.22,-76 595.78,-11 666,-11"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-78C594.22,-76.11 597.78,-11.11 666,-13"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M517.5,-76.75C586.09,-78.67 588.91,-11.67 661.5,-9.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M517.5,-78.75C588.09,-78.75 590.91,-11.75 661.5,-11.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M517.5,-80.75C590.09,-78.83 592.91,-11.83 661.5,-13.75"/>
</g>
</g>
</svg>

BIN
examples/ex03.png generated

Binary file not shown.

Before

Width:  |  Height:  |  Size: 80 KiB

After

Width:  |  Height:  |  Size: 80 KiB

312
examples/ex03.svg generated
View File

@ -1,231 +1,231 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="865pt" height="332pt"
viewBox="0.00 0.00 865.00 332.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 328)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-328 861,-328 861,4 -4,4"/>
<svg width="859pt" height="338pt"
viewBox="0.00 0.00 858.50 337.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 333.5)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-333.5 854.5,-333.5 854.5,4 -4,4"/>
<!-- X1 -->
<g id="node1" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="180,-208 0,-208 0,-116 180,-116 180,-208"/>
<polygon fill="none" stroke="black" points="0,-185 0,-208 180,-208 180,-185 0,-185"/>
<text text-anchor="start" x="81.5" y="-192.8" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-162 0,-185 102,-185 102,-162 0,-162"/>
<text text-anchor="start" x="4" y="-169.8" font-family="arial" font-size="14.00">Molex Micro&#45;Fit</text>
<polygon fill="none" stroke="black" points="102,-162 102,-185 141,-185 141,-162 102,-162"/>
<text text-anchor="start" x="106" y="-169.8" font-family="arial" font-size="14.00">male</text>
<polygon fill="none" stroke="black" points="141,-162 141,-185 180,-185 180,-162 141,-162"/>
<text text-anchor="start" x="145" y="-169.8" font-family="arial" font-size="14.00">2&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-139 0,-162 102,-162 102,-139 0,-139"/>
<text text-anchor="start" x="35.5" y="-146.8" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="102,-139 102,-162 180,-162 180,-139 102,-139"/>
<text text-anchor="start" x="137" y="-146.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-116 0,-139 102,-139 102,-116 0,-116"/>
<text text-anchor="start" x="36.5" y="-123.8" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="102,-116 102,-139 180,-139 180,-116 102,-116"/>
<text text-anchor="start" x="137" y="-123.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="#ffffff" stroke="black" points="177.75,-211.5 0,-211.5 0,-118 177.75,-118 177.75,-211.5"/>
<polygon fill="none" stroke="black" points="0,-187.75 0,-211.5 177.75,-211.5 177.75,-187.75 0,-187.75"/>
<text text-anchor="start" x="80.62" y="-194.2" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-164 0,-187.75 101.75,-187.75 101.75,-164 0,-164"/>
<text text-anchor="start" x="4" y="-170.45" font-family="arial" font-size="14.00">Molex Micro&#45;Fit</text>
<polygon fill="none" stroke="black" points="101.75,-164 101.75,-187.75 139.75,-187.75 139.75,-164 101.75,-164"/>
<text text-anchor="start" x="105.75" y="-170.45" font-family="arial" font-size="14.00">male</text>
<polygon fill="none" stroke="black" points="139.75,-164 139.75,-187.75 177.75,-187.75 177.75,-164 139.75,-164"/>
<text text-anchor="start" x="143.75" y="-170.45" font-family="arial" font-size="14.00">2&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-141 0,-164 100.38,-164 100.38,-141 0,-141"/>
<text text-anchor="start" x="34.81" y="-146.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="100.38,-141 100.38,-164 177.75,-164 177.75,-141 100.38,-141"/>
<text text-anchor="start" x="135.31" y="-146.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-118 0,-141 100.38,-141 100.38,-118 0,-118"/>
<text text-anchor="start" x="35.94" y="-123.7" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="100.38,-118 100.38,-141 177.75,-141 177.75,-118 100.38,-118"/>
<text text-anchor="start" x="135.31" y="-123.7" font-family="arial" font-size="14.00">2</text>
</g>
<!-- W1 -->
<g id="node5" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="522,-288 324,-288 324,-54 522,-54 522,-288"/>
<polygon fill="none" stroke="black" points="324,-265 324,-288 522,-288 522,-265 324,-265"/>
<text text-anchor="start" x="412" y="-272.8" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="324,-242 324,-265 347,-265 347,-242 324,-242"/>
<text text-anchor="start" x="328" y="-249.8" font-family="arial" font-size="14.00">6x</text>
<polygon fill="none" stroke="black" points="347,-242 347,-265 479,-265 479,-242 347,-242"/>
<text text-anchor="start" x="351" y="-249.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
<polygon fill="none" stroke="black" points="479,-242 479,-265 522,-265 522,-242 479,-242"/>
<text text-anchor="start" x="483" y="-249.8" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="356.5" y="-228.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="327" y="-209.8" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="397" y="-209.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="456" y="-209.8" font-family="arial" font-size="14.00">X2:1:GND</text>
<polygon fill="#000000" stroke="none" points="324,-202 324,-204 522,-204 522,-202 324,-202"/>
<polygon fill="#000000" stroke="none" points="324,-200 324,-202 522,-202 522,-200 324,-200"/>
<polygon fill="#000000" stroke="none" points="324,-198 324,-200 522,-200 522,-198 324,-198"/>
<text text-anchor="start" x="328" y="-184.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="396" y="-184.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="457" y="-184.8" font-family="arial" font-size="14.00">X2:2:VCC</text>
<polygon fill="#000000" stroke="none" points="324,-177 324,-179 522,-179 522,-177 324,-177"/>
<polygon fill="#ff0000" stroke="none" points="324,-175 324,-177 522,-177 522,-175 324,-175"/>
<polygon fill="#000000" stroke="none" points="324,-173 324,-175 522,-175 522,-173 324,-173"/>
<text text-anchor="start" x="327" y="-159.8" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="397" y="-159.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="456" y="-159.8" font-family="arial" font-size="14.00">X3:1:GND</text>
<polygon fill="#000000" stroke="none" points="324,-152 324,-154 522,-154 522,-152 324,-152"/>
<polygon fill="#000000" stroke="none" points="324,-150 324,-152 522,-152 522,-150 324,-150"/>
<polygon fill="#000000" stroke="none" points="324,-148 324,-150 522,-150 522,-148 324,-148"/>
<text text-anchor="start" x="328" y="-134.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="396" y="-134.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="457" y="-134.8" font-family="arial" font-size="14.00">X3:2:VCC</text>
<polygon fill="#000000" stroke="none" points="324,-127 324,-129 522,-129 522,-127 324,-127"/>
<polygon fill="#ff0000" stroke="none" points="324,-125 324,-127 522,-127 522,-125 324,-125"/>
<polygon fill="#000000" stroke="none" points="324,-123 324,-125 522,-125 522,-123 324,-123"/>
<text text-anchor="start" x="327" y="-109.8" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="397" y="-109.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="456" y="-109.8" font-family="arial" font-size="14.00">X4:1:GND</text>
<polygon fill="#000000" stroke="none" points="324,-102 324,-104 522,-104 522,-102 324,-102"/>
<polygon fill="#000000" stroke="none" points="324,-100 324,-102 522,-102 522,-100 324,-100"/>
<polygon fill="#000000" stroke="none" points="324,-98 324,-100 522,-100 522,-98 324,-98"/>
<text text-anchor="start" x="328" y="-84.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="396" y="-84.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="457" y="-84.8" font-family="arial" font-size="14.00">X4:2:VCC</text>
<polygon fill="#000000" stroke="none" points="324,-77 324,-79 522,-79 522,-77 324,-77"/>
<polygon fill="#ff0000" stroke="none" points="324,-75 324,-77 522,-77 522,-75 324,-75"/>
<polygon fill="#000000" stroke="none" points="324,-73 324,-75 522,-75 522,-73 324,-73"/>
<text text-anchor="start" x="356.5" y="-59.8" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="517.5,-292.5 321.75,-292.5 321.75,-57 517.5,-57 517.5,-292.5"/>
<polygon fill="none" stroke="black" points="321.75,-268.75 321.75,-292.5 517.5,-292.5 517.5,-268.75 321.75,-268.75"/>
<text text-anchor="start" x="409.12" y="-275.2" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="321.75,-245 321.75,-268.75 344,-268.75 344,-245 321.75,-245"/>
<text text-anchor="start" x="325.75" y="-251.45" font-family="arial" font-size="14.00">6x</text>
<polygon fill="none" stroke="black" points="344,-245 344,-268.75 475,-268.75 475,-245 344,-245"/>
<text text-anchor="start" x="348" y="-251.45" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
<polygon fill="none" stroke="black" points="475,-245 475,-268.75 517.5,-268.75 517.5,-245 475,-245"/>
<text text-anchor="start" x="479" y="-251.45" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="354" y="-229.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="324.75" y="-210.7" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="393.75" y="-210.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="452.25" y="-210.7" font-family="arial" font-size="14.00">X2:1:GND</text>
<polygon fill="#000000" stroke="none" points="321.75,-205 321.75,-207 517.5,-207 517.5,-205 321.75,-205"/>
<polygon fill="#000000" stroke="none" points="321.75,-203 321.75,-205 517.5,-205 517.5,-203 321.75,-203"/>
<polygon fill="#000000" stroke="none" points="321.75,-201 321.75,-203 517.5,-203 517.5,-201 321.75,-201"/>
<text text-anchor="start" x="325.88" y="-185.7" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="393" y="-185.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="453.38" y="-185.7" font-family="arial" font-size="14.00">X2:2:VCC</text>
<polygon fill="#000000" stroke="none" points="321.75,-180 321.75,-182 517.5,-182 517.5,-180 321.75,-180"/>
<polygon fill="#ff0000" stroke="none" points="321.75,-178 321.75,-180 517.5,-180 517.5,-178 321.75,-178"/>
<polygon fill="#000000" stroke="none" points="321.75,-176 321.75,-178 517.5,-178 517.5,-176 321.75,-176"/>
<text text-anchor="start" x="324.75" y="-160.7" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="393.75" y="-160.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="452.25" y="-160.7" font-family="arial" font-size="14.00">X3:1:GND</text>
<polygon fill="#000000" stroke="none" points="321.75,-155 321.75,-157 517.5,-157 517.5,-155 321.75,-155"/>
<polygon fill="#000000" stroke="none" points="321.75,-153 321.75,-155 517.5,-155 517.5,-153 321.75,-153"/>
<polygon fill="#000000" stroke="none" points="321.75,-151 321.75,-153 517.5,-153 517.5,-151 321.75,-151"/>
<text text-anchor="start" x="325.88" y="-135.7" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="393" y="-135.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="453.38" y="-135.7" font-family="arial" font-size="14.00">X3:2:VCC</text>
<polygon fill="#000000" stroke="none" points="321.75,-130 321.75,-132 517.5,-132 517.5,-130 321.75,-130"/>
<polygon fill="#ff0000" stroke="none" points="321.75,-128 321.75,-130 517.5,-130 517.5,-128 321.75,-128"/>
<polygon fill="#000000" stroke="none" points="321.75,-126 321.75,-128 517.5,-128 517.5,-126 321.75,-126"/>
<text text-anchor="start" x="324.75" y="-110.7" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="393.75" y="-110.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="452.25" y="-110.7" font-family="arial" font-size="14.00">X4:1:GND</text>
<polygon fill="#000000" stroke="none" points="321.75,-105 321.75,-107 517.5,-107 517.5,-105 321.75,-105"/>
<polygon fill="#000000" stroke="none" points="321.75,-103 321.75,-105 517.5,-105 517.5,-103 321.75,-103"/>
<polygon fill="#000000" stroke="none" points="321.75,-101 321.75,-103 517.5,-103 517.5,-101 321.75,-101"/>
<text text-anchor="start" x="325.88" y="-85.7" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="393" y="-85.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="453.38" y="-85.7" font-family="arial" font-size="14.00">X4:2:VCC</text>
<polygon fill="#000000" stroke="none" points="321.75,-80 321.75,-82 517.5,-82 517.5,-80 321.75,-80"/>
<polygon fill="#ff0000" stroke="none" points="321.75,-78 321.75,-80 517.5,-80 517.5,-78 321.75,-78"/>
<polygon fill="#000000" stroke="none" points="321.75,-76 321.75,-78 517.5,-78 517.5,-76 321.75,-76"/>
<text text-anchor="start" x="354" y="-60.7" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge1" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-148C249.87,-149.68 258.08,-200.68 324,-199"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-150C247.9,-150 256.1,-201 324,-201"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-152C245.92,-150.32 254.13,-201.32 324,-203"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-150.75C247.62,-152.43 255.83,-203.43 321.75,-201.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-152.75C245.65,-152.75 253.85,-203.75 321.75,-203.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-154.75C243.67,-153.07 251.88,-204.07 321.75,-205.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge3" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-125C249.57,-126.65 258.36,-175.65 324,-174"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-127C247.6,-127 256.4,-176 324,-176"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-129C245.64,-127.35 254.43,-176.35 324,-178"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-127.75C247.32,-129.4 256.11,-178.4 321.75,-176.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M177.75,-129.75C245.35,-129.75 254.15,-178.75 321.75,-178.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-131.75C243.39,-130.1 252.18,-179.1 321.75,-180.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge5" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-148C244.13,-148 260.12,-149 324,-149"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-150C244,-150 260,-151 324,-151"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-152C243.88,-152 259.87,-153 324,-153"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-150.75C241.88,-150.75 257.87,-151.75 321.75,-151.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-152.75C241.75,-152.75 257.75,-153.75 321.75,-153.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-154.75C241.63,-154.75 257.62,-155.75 321.75,-155.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge7" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-125C243.88,-125 259.87,-124 324,-124"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-127C244,-127 260,-126 324,-126"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-129C244.13,-129 260.12,-128 324,-128"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-127.75C241.63,-127.75 257.62,-126.75 321.75,-126.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M177.75,-129.75C241.75,-129.75 257.75,-128.75 321.75,-128.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-131.75C241.88,-131.75 257.87,-130.75 321.75,-130.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge9" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-148C245.64,-149.65 254.43,-100.65 324,-99"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-150C247.6,-150 256.4,-101 324,-101"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-152C249.57,-150.35 258.36,-101.35 324,-103"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-150.75C243.39,-152.4 252.18,-103.4 321.75,-101.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-152.75C245.35,-152.75 254.15,-103.75 321.75,-103.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-154.75C247.32,-153.1 256.11,-104.1 321.75,-105.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge11" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-125C245.92,-126.68 254.13,-75.68 324,-74"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M180,-127C247.9,-127 256.1,-76 324,-76"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-129C249.87,-127.32 258.08,-76.32 324,-78"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-127.75C243.67,-129.43 251.88,-78.43 321.75,-76.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M177.75,-129.75C245.65,-129.75 253.85,-78.75 321.75,-78.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M177.75,-131.75C247.62,-130.07 255.83,-79.07 321.75,-80.75"/>
</g>
<!-- X2 -->
<g id="node2" class="node">
<title>X2</title>
<polygon fill="#ffffff" stroke="black" points="857,-324 666,-324 666,-232 857,-232 857,-324"/>
<polygon fill="none" stroke="black" points="666.5,-301 666.5,-324 857.5,-324 857.5,-301 666.5,-301"/>
<text text-anchor="start" x="753.5" y="-308.8" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="666.5,-278 666.5,-301 768.5,-301 768.5,-278 666.5,-278"/>
<text text-anchor="start" x="670.5" y="-285.8" font-family="arial" font-size="14.00">Molex Micro&#45;Fit</text>
<polygon fill="none" stroke="black" points="768.5,-278 768.5,-301 818.5,-301 818.5,-278 768.5,-278"/>
<text text-anchor="start" x="772.5" y="-285.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="818.5,-278 818.5,-301 857.5,-301 857.5,-278 818.5,-278"/>
<text text-anchor="start" x="822.5" y="-285.8" font-family="arial" font-size="14.00">2&#45;pin</text>
<polygon fill="none" stroke="black" points="666.5,-255 666.5,-278 750.5,-278 750.5,-255 666.5,-255"/>
<text text-anchor="start" x="704.5" y="-262.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="750.5,-255 750.5,-278 857.5,-278 857.5,-255 750.5,-255"/>
<text text-anchor="start" x="788.5" y="-262.8" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="666.5,-232 666.5,-255 750.5,-255 750.5,-232 666.5,-232"/>
<text text-anchor="start" x="704.5" y="-239.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="750.5,-232 750.5,-255 857.5,-255 857.5,-232 750.5,-232"/>
<text text-anchor="start" x="789.5" y="-239.8" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="#ffffff" stroke="black" points="850.5,-329.5 661.5,-329.5 661.5,-236 850.5,-236 850.5,-329.5"/>
<polygon fill="none" stroke="black" points="661.5,-305.75 661.5,-329.5 850.5,-329.5 850.5,-305.75 661.5,-305.75"/>
<text text-anchor="start" x="747.75" y="-312.2" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="661.5,-282 661.5,-305.75 763.25,-305.75 763.25,-282 661.5,-282"/>
<text text-anchor="start" x="665.5" y="-288.45" font-family="arial" font-size="14.00">Molex Micro&#45;Fit</text>
<polygon fill="none" stroke="black" points="763.25,-282 763.25,-305.75 812.5,-305.75 812.5,-282 763.25,-282"/>
<text text-anchor="start" x="767.25" y="-288.45" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="812.5,-282 812.5,-305.75 850.5,-305.75 850.5,-282 812.5,-282"/>
<text text-anchor="start" x="816.5" y="-288.45" font-family="arial" font-size="14.00">2&#45;pin</text>
<polygon fill="none" stroke="black" points="661.5,-259 661.5,-282 744.5,-282 744.5,-259 661.5,-259"/>
<text text-anchor="start" x="699.25" y="-264.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="744.5,-259 744.5,-282 850.5,-282 850.5,-259 744.5,-259"/>
<text text-anchor="start" x="782.12" y="-264.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="661.5,-236 661.5,-259 744.5,-259 744.5,-236 661.5,-236"/>
<text text-anchor="start" x="699.25" y="-241.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="744.5,-236 744.5,-259 850.5,-259 850.5,-236 744.5,-236"/>
<text text-anchor="start" x="783.25" y="-241.7" font-family="arial" font-size="14.00">VCC</text>
</g>
<!-- X3 -->
<g id="node3" class="node">
<title>X3</title>
<polygon fill="#ffffff" stroke="black" points="857,-208 666,-208 666,-116 857,-116 857,-208"/>
<polygon fill="none" stroke="black" points="666.5,-185 666.5,-208 857.5,-208 857.5,-185 666.5,-185"/>
<text text-anchor="start" x="753.5" y="-192.8" font-family="arial" font-size="14.00">X3</text>
<polygon fill="none" stroke="black" points="666.5,-162 666.5,-185 768.5,-185 768.5,-162 666.5,-162"/>
<text text-anchor="start" x="670.5" y="-169.8" font-family="arial" font-size="14.00">Molex Micro&#45;Fit</text>
<polygon fill="none" stroke="black" points="768.5,-162 768.5,-185 818.5,-185 818.5,-162 768.5,-162"/>
<text text-anchor="start" x="772.5" y="-169.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="818.5,-162 818.5,-185 857.5,-185 857.5,-162 818.5,-162"/>
<text text-anchor="start" x="822.5" y="-169.8" font-family="arial" font-size="14.00">2&#45;pin</text>
<polygon fill="none" stroke="black" points="666.5,-139 666.5,-162 750.5,-162 750.5,-139 666.5,-139"/>
<text text-anchor="start" x="704.5" y="-146.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="750.5,-139 750.5,-162 857.5,-162 857.5,-139 750.5,-139"/>
<text text-anchor="start" x="788.5" y="-146.8" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="666.5,-116 666.5,-139 750.5,-139 750.5,-116 666.5,-116"/>
<text text-anchor="start" x="704.5" y="-123.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="750.5,-116 750.5,-139 857.5,-139 857.5,-116 750.5,-116"/>
<text text-anchor="start" x="789.5" y="-123.8" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="#ffffff" stroke="black" points="850.5,-211.5 661.5,-211.5 661.5,-118 850.5,-118 850.5,-211.5"/>
<polygon fill="none" stroke="black" points="661.5,-187.75 661.5,-211.5 850.5,-211.5 850.5,-187.75 661.5,-187.75"/>
<text text-anchor="start" x="747.75" y="-194.2" font-family="arial" font-size="14.00">X3</text>
<polygon fill="none" stroke="black" points="661.5,-164 661.5,-187.75 763.25,-187.75 763.25,-164 661.5,-164"/>
<text text-anchor="start" x="665.5" y="-170.45" font-family="arial" font-size="14.00">Molex Micro&#45;Fit</text>
<polygon fill="none" stroke="black" points="763.25,-164 763.25,-187.75 812.5,-187.75 812.5,-164 763.25,-164"/>
<text text-anchor="start" x="767.25" y="-170.45" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="812.5,-164 812.5,-187.75 850.5,-187.75 850.5,-164 812.5,-164"/>
<text text-anchor="start" x="816.5" y="-170.45" font-family="arial" font-size="14.00">2&#45;pin</text>
<polygon fill="none" stroke="black" points="661.5,-141 661.5,-164 744.5,-164 744.5,-141 661.5,-141"/>
<text text-anchor="start" x="699.25" y="-146.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="744.5,-141 744.5,-164 850.5,-164 850.5,-141 744.5,-141"/>
<text text-anchor="start" x="782.12" y="-146.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="661.5,-118 661.5,-141 744.5,-141 744.5,-118 661.5,-118"/>
<text text-anchor="start" x="699.25" y="-123.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="744.5,-118 744.5,-141 850.5,-141 850.5,-118 744.5,-118"/>
<text text-anchor="start" x="783.25" y="-123.7" font-family="arial" font-size="14.00">VCC</text>
</g>
<!-- X4 -->
<g id="node4" class="node">
<title>X4</title>
<polygon fill="#ffffff" stroke="black" points="857,-92 666,-92 666,0 857,0 857,-92"/>
<polygon fill="none" stroke="black" points="666.5,-69 666.5,-92 857.5,-92 857.5,-69 666.5,-69"/>
<text text-anchor="start" x="753.5" y="-76.8" font-family="arial" font-size="14.00">X4</text>
<polygon fill="none" stroke="black" points="666.5,-46 666.5,-69 768.5,-69 768.5,-46 666.5,-46"/>
<text text-anchor="start" x="670.5" y="-53.8" font-family="arial" font-size="14.00">Molex Micro&#45;Fit</text>
<polygon fill="none" stroke="black" points="768.5,-46 768.5,-69 818.5,-69 818.5,-46 768.5,-46"/>
<text text-anchor="start" x="772.5" y="-53.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="818.5,-46 818.5,-69 857.5,-69 857.5,-46 818.5,-46"/>
<text text-anchor="start" x="822.5" y="-53.8" font-family="arial" font-size="14.00">2&#45;pin</text>
<polygon fill="none" stroke="black" points="666.5,-23 666.5,-46 750.5,-46 750.5,-23 666.5,-23"/>
<text text-anchor="start" x="704.5" y="-30.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="750.5,-23 750.5,-46 857.5,-46 857.5,-23 750.5,-23"/>
<text text-anchor="start" x="788.5" y="-30.8" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="666.5,0 666.5,-23 750.5,-23 750.5,0 666.5,0"/>
<text text-anchor="start" x="704.5" y="-7.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="750.5,0 750.5,-23 857.5,-23 857.5,0 750.5,0"/>
<text text-anchor="start" x="789.5" y="-7.8" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="#ffffff" stroke="black" points="850.5,-93.5 661.5,-93.5 661.5,0 850.5,0 850.5,-93.5"/>
<polygon fill="none" stroke="black" points="661.5,-69.75 661.5,-93.5 850.5,-93.5 850.5,-69.75 661.5,-69.75"/>
<text text-anchor="start" x="747.75" y="-76.2" font-family="arial" font-size="14.00">X4</text>
<polygon fill="none" stroke="black" points="661.5,-46 661.5,-69.75 763.25,-69.75 763.25,-46 661.5,-46"/>
<text text-anchor="start" x="665.5" y="-52.45" font-family="arial" font-size="14.00">Molex Micro&#45;Fit</text>
<polygon fill="none" stroke="black" points="763.25,-46 763.25,-69.75 812.5,-69.75 812.5,-46 763.25,-46"/>
<text text-anchor="start" x="767.25" y="-52.45" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="812.5,-46 812.5,-69.75 850.5,-69.75 850.5,-46 812.5,-46"/>
<text text-anchor="start" x="816.5" y="-52.45" font-family="arial" font-size="14.00">2&#45;pin</text>
<polygon fill="none" stroke="black" points="661.5,-23 661.5,-46 744.5,-46 744.5,-23 661.5,-23"/>
<text text-anchor="start" x="699.25" y="-28.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="744.5,-23 744.5,-46 850.5,-46 850.5,-23 744.5,-23"/>
<text text-anchor="start" x="782.12" y="-28.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="661.5,0 661.5,-23 744.5,-23 744.5,0 661.5,0"/>
<text text-anchor="start" x="699.25" y="-5.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="744.5,0 744.5,-23 850.5,-23 850.5,0 744.5,0"/>
<text text-anchor="start" x="783.25" y="-5.7" font-family="arial" font-size="14.00">VCC</text>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-199C594.22,-200.89 597.78,-265.89 666,-264"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-201C592.22,-201 595.78,-266 666,-266"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-203C590.22,-201.11 593.78,-266.11 666,-268"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M517.5,-201.75C590.09,-203.67 592.91,-270.67 661.5,-268.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M517.5,-203.75C588.09,-203.75 590.91,-270.75 661.5,-270.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M517.5,-205.75C586.09,-203.83 588.91,-270.83 661.5,-272.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-174C594.59,-175.92 597.41,-242.92 666,-241"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M522,-176C592.59,-176 595.41,-243 666,-243"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-178C590.59,-176.08 593.41,-243.08 666,-245"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M517.5,-176.75C590.47,-178.69 592.53,-247.69 661.5,-245.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M517.5,-178.75C588.47,-178.75 590.53,-247.75 661.5,-247.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M517.5,-180.75C586.47,-178.81 588.53,-247.81 661.5,-249.75"/>
</g>
<!-- W1&#45;&#45;X3 -->
<g id="edge6" class="edge">
<title>W1:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-149C585.88,-149 601.87,-148 666,-148"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-151C586,-151 602,-150 666,-150"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-153C586.13,-153 602.12,-152 666,-152"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M517.5,-151.75C581.38,-151.75 597.37,-150.75 661.5,-150.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M517.5,-153.75C581.5,-153.75 597.5,-152.75 661.5,-152.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M517.5,-155.75C581.63,-155.75 597.62,-154.75 661.5,-154.75"/>
</g>
<!-- W1&#45;&#45;X3 -->
<g id="edge8" class="edge">
<title>W1:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-124C586.13,-124 602.12,-125 666,-125"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M522,-126C586,-126 602,-127 666,-127"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-128C585.88,-128 601.87,-129 666,-129"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M517.5,-126.75C581.63,-126.75 597.62,-127.75 661.5,-127.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M517.5,-128.75C581.5,-128.75 597.5,-129.75 661.5,-129.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M517.5,-130.75C581.38,-130.75 597.37,-131.75 661.5,-131.75"/>
</g>
<!-- W1&#45;&#45;X4 -->
<g id="edge10" class="edge">
<title>W1:e&#45;&#45;X4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-99C590.59,-100.92 593.41,-33.92 666,-32"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-101C592.59,-101 595.41,-34 666,-34"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-103C594.59,-101.08 597.41,-34.08 666,-36"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M517.5,-101.75C586.47,-103.69 588.53,-34.69 661.5,-32.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M517.5,-103.75C588.47,-103.75 590.53,-34.75 661.5,-34.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M517.5,-105.75C590.47,-103.81 592.53,-34.81 661.5,-36.75"/>
</g>
<!-- W1&#45;&#45;X4 -->
<g id="edge12" class="edge">
<title>W1:e&#45;&#45;X4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-74C590.22,-75.89 593.78,-10.89 666,-9"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M522,-76C592.22,-76 595.78,-11 666,-11"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M522,-78C594.22,-76.11 597.78,-11.11 666,-13"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M517.5,-76.75C586.09,-78.67 588.91,-11.67 661.5,-9.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M517.5,-78.75C588.09,-78.75 590.91,-11.75 661.5,-11.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M517.5,-80.75C590.09,-78.83 592.91,-11.83 661.5,-13.75"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 18 KiB

224
examples/ex04.html generated
View File

@ -30,219 +30,219 @@
<div id="diagram">
<!-- XML and DOCTYPE declarations from SVG file removed -->
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="668pt" height="287pt"
viewBox="0.00 0.00 668.00 286.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 282.5)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-282.5 664,-282.5 664,4 -4,4"/>
<svg width="665pt" height="291pt"
viewBox="0.00 0.00 665.25 290.62" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 286.62)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-286.62 661.25,-286.62 661.25,4 -4,4"/>
<!-- __F_1 -->
<g id="node1" class="node">
<title>__F_1</title>
<polygon fill="#ffffff" stroke="black" points="87,-258 0,-258 0,-235 87,-235 87,-258"/>
<polygon fill="none" stroke="black" points="0.5,-234.5 0.5,-257.5 87.5,-257.5 87.5,-234.5 0.5,-234.5"/>
<text text-anchor="start" x="4.5" y="-242.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="#ffffff" stroke="black" points="86.75,-263.75 0,-263.75 0,-240 86.75,-240 86.75,-263.75"/>
<polygon fill="none" stroke="black" points="0,-240 0,-263.75 86.75,-263.75 86.75,-240 0,-240"/>
<text text-anchor="start" x="4" y="-246.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
</g>
<!-- W1 -->
<g id="node13" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="429,-278.5 231,-278.5 231,-44.5 429,-44.5 429,-278.5"/>
<polygon fill="none" stroke="black" points="231,-255.5 231,-278.5 429,-278.5 429,-255.5 231,-255.5"/>
<text text-anchor="start" x="319" y="-263.3" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="231,-232.5 231,-255.5 254,-255.5 254,-232.5 231,-232.5"/>
<text text-anchor="start" x="235" y="-240.3" font-family="arial" font-size="14.00">6x</text>
<polygon fill="none" stroke="black" points="254,-232.5 254,-255.5 386,-255.5 386,-232.5 254,-232.5"/>
<text text-anchor="start" x="258" y="-240.3" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
<polygon fill="none" stroke="black" points="386,-232.5 386,-255.5 429,-255.5 429,-232.5 386,-232.5"/>
<text text-anchor="start" x="390" y="-240.3" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="254" y="-219.3" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="306" y="-200.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="231,-192.5 231,-194.5 429,-194.5 429,-192.5 231,-192.5"/>
<polygon fill="#895956" stroke="none" points="231,-190.5 231,-192.5 429,-192.5 429,-190.5 231,-190.5"/>
<polygon fill="#000000" stroke="none" points="231,-188.5 231,-190.5 429,-190.5 429,-188.5 231,-188.5"/>
<text text-anchor="start" x="305.5" y="-175.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="231,-167.5 231,-169.5 429,-169.5 429,-167.5 231,-167.5"/>
<polygon fill="#ff0000" stroke="none" points="231,-165.5 231,-167.5 429,-167.5 429,-165.5 231,-165.5"/>
<polygon fill="#000000" stroke="none" points="231,-163.5 231,-165.5 429,-165.5 429,-163.5 231,-163.5"/>
<text text-anchor="start" x="304" y="-150.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;OG &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="231,-142.5 231,-144.5 429,-144.5 429,-142.5 231,-142.5"/>
<polygon fill="#ff8000" stroke="none" points="231,-140.5 231,-142.5 429,-142.5 429,-140.5 231,-140.5"/>
<polygon fill="#000000" stroke="none" points="231,-138.5 231,-140.5 429,-140.5 429,-138.5 231,-138.5"/>
<text text-anchor="start" x="306.5" y="-125.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="231,-117.5 231,-119.5 429,-119.5 429,-117.5 231,-117.5"/>
<polygon fill="#ffff00" stroke="none" points="231,-115.5 231,-117.5 429,-117.5 429,-115.5 231,-115.5"/>
<polygon fill="#000000" stroke="none" points="231,-113.5 231,-115.5 429,-115.5 429,-113.5 231,-113.5"/>
<text text-anchor="start" x="305" y="-100.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="231,-92.5 231,-94.5 429,-94.5 429,-92.5 231,-92.5"/>
<polygon fill="#00ff00" stroke="none" points="231,-90.5 231,-92.5 429,-92.5 429,-90.5 231,-90.5"/>
<polygon fill="#000000" stroke="none" points="231,-88.5 231,-90.5 429,-90.5 429,-88.5 231,-88.5"/>
<text text-anchor="start" x="306" y="-75.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="231,-67.5 231,-69.5 429,-69.5 429,-67.5 231,-67.5"/>
<polygon fill="#0066ff" stroke="none" points="231,-65.5 231,-67.5 429,-67.5 429,-65.5 231,-65.5"/>
<polygon fill="#000000" stroke="none" points="231,-63.5 231,-65.5 429,-65.5 429,-63.5 231,-63.5"/>
<text text-anchor="start" x="254" y="-50.3" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="426.5,-282.62 230.75,-282.62 230.75,-47.12 426.5,-47.12 426.5,-282.62"/>
<polygon fill="none" stroke="black" points="230.75,-258.88 230.75,-282.62 426.5,-282.62 426.5,-258.88 230.75,-258.88"/>
<text text-anchor="start" x="318.12" y="-265.32" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="230.75,-235.12 230.75,-258.88 253,-258.88 253,-235.12 230.75,-235.12"/>
<text text-anchor="start" x="234.75" y="-241.57" font-family="arial" font-size="14.00">6x</text>
<polygon fill="none" stroke="black" points="253,-235.12 253,-258.88 384,-258.88 384,-235.12 253,-235.12"/>
<text text-anchor="start" x="257" y="-241.57" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
<polygon fill="none" stroke="black" points="384,-235.12 384,-258.88 426.5,-258.88 426.5,-235.12 384,-235.12"/>
<text text-anchor="start" x="388" y="-241.57" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="253.17" y="-219.82" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="303.88" y="-200.82" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="230.75,-195.12 230.75,-197.12 426.5,-197.12 426.5,-195.12 230.75,-195.12"/>
<polygon fill="#895956" stroke="none" points="230.75,-193.12 230.75,-195.12 426.5,-195.12 426.5,-193.12 230.75,-193.12"/>
<polygon fill="#000000" stroke="none" points="230.75,-191.12 230.75,-193.12 426.5,-193.12 426.5,-191.12 230.75,-191.12"/>
<text text-anchor="start" x="303.5" y="-175.82" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="230.75,-170.12 230.75,-172.12 426.5,-172.12 426.5,-170.12 230.75,-170.12"/>
<polygon fill="#ff0000" stroke="none" points="230.75,-168.12 230.75,-170.12 426.5,-170.12 426.5,-168.12 230.75,-168.12"/>
<polygon fill="#000000" stroke="none" points="230.75,-166.12 230.75,-168.12 426.5,-168.12 426.5,-166.12 230.75,-166.12"/>
<text text-anchor="start" x="302" y="-150.82" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;OG &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="230.75,-145.12 230.75,-147.12 426.5,-147.12 426.5,-145.12 230.75,-145.12"/>
<polygon fill="#ff8000" stroke="none" points="230.75,-143.12 230.75,-145.12 426.5,-145.12 426.5,-143.12 230.75,-143.12"/>
<polygon fill="#000000" stroke="none" points="230.75,-141.12 230.75,-143.12 426.5,-143.12 426.5,-141.12 230.75,-141.12"/>
<text text-anchor="start" x="304.25" y="-125.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="230.75,-120.12 230.75,-122.12 426.5,-122.12 426.5,-120.12 230.75,-120.12"/>
<polygon fill="#ffff00" stroke="none" points="230.75,-118.12 230.75,-120.12 426.5,-120.12 426.5,-118.12 230.75,-118.12"/>
<polygon fill="#000000" stroke="none" points="230.75,-116.12 230.75,-118.12 426.5,-118.12 426.5,-116.12 230.75,-116.12"/>
<text text-anchor="start" x="302.75" y="-100.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="230.75,-95.12 230.75,-97.12 426.5,-97.12 426.5,-95.12 230.75,-95.12"/>
<polygon fill="#00ff00" stroke="none" points="230.75,-93.12 230.75,-95.12 426.5,-95.12 426.5,-93.12 230.75,-93.12"/>
<polygon fill="#000000" stroke="none" points="230.75,-91.12 230.75,-93.12 426.5,-93.12 426.5,-91.12 230.75,-91.12"/>
<text text-anchor="start" x="303.88" y="-75.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="230.75,-70.12 230.75,-72.12 426.5,-72.12 426.5,-70.12 230.75,-70.12"/>
<polygon fill="#0066ff" stroke="none" points="230.75,-68.12 230.75,-70.12 426.5,-70.12 426.5,-68.12 230.75,-68.12"/>
<polygon fill="#000000" stroke="none" points="230.75,-66.12 230.75,-68.12 426.5,-68.12 426.5,-66.12 230.75,-66.12"/>
<text text-anchor="start" x="253.17" y="-50.83" font-family="arial" font-size="14.00"> </text>
</g>
<!-- __F_1&#45;&#45;W1 -->
<g id="edge1" class="edge">
<title>__F_1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-244.5C153.53,-246.25 160.51,-191.25 231,-189.5"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M87,-246.5C155.51,-246.5 162.49,-191.5 231,-191.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-248.5C157.49,-246.75 164.47,-191.75 231,-193.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M86.75,-249.88C153.76,-251.67 159.76,-193.67 230.75,-191.88"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M86.75,-251.88C155.75,-251.88 161.75,-193.88 230.75,-193.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M86.75,-253.87C157.74,-252.08 163.74,-194.08 230.75,-195.87"/>
</g>
<!-- __F_2 -->
<g id="node2" class="node">
<title>__F_2</title>
<polygon fill="#ffffff" stroke="black" points="87,-211 0,-211 0,-188 87,-188 87,-211"/>
<polygon fill="none" stroke="black" points="0.5,-187.5 0.5,-210.5 87.5,-210.5 87.5,-187.5 0.5,-187.5"/>
<text text-anchor="start" x="4.5" y="-195.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="#ffffff" stroke="black" points="86.75,-215.75 0,-215.75 0,-192 86.75,-192 86.75,-215.75"/>
<polygon fill="none" stroke="black" points="0,-192 0,-215.75 86.75,-215.75 86.75,-192 0,-192"/>
<text text-anchor="start" x="4" y="-198.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
</g>
<!-- __F_2&#45;&#45;W1 -->
<g id="edge3" class="edge">
<title>__F_2:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-197.5C150.79,-198.78 163.47,-165.78 231,-164.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M87,-199.5C152.66,-199.5 165.34,-166.5 231,-166.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-201.5C154.53,-200.22 167.21,-167.22 231,-168.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M86.75,-201.88C150.73,-203.21 163,-168.21 230.75,-166.88"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M86.75,-203.88C152.61,-203.88 164.89,-168.88 230.75,-168.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M86.75,-205.87C154.5,-204.54 166.77,-169.54 230.75,-170.87"/>
</g>
<!-- __F_3 -->
<g id="node3" class="node">
<title>__F_3</title>
<polygon fill="#ffffff" stroke="black" points="87,-164 0,-164 0,-141 87,-141 87,-164"/>
<polygon fill="none" stroke="black" points="0.5,-140.5 0.5,-163.5 87.5,-163.5 87.5,-140.5 0.5,-140.5"/>
<text text-anchor="start" x="4.5" y="-148.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="#ffffff" stroke="black" points="86.75,-167.75 0,-167.75 0,-144 86.75,-144 86.75,-167.75"/>
<polygon fill="none" stroke="black" points="0,-144 0,-167.75 86.75,-167.75 86.75,-144 0,-144"/>
<text text-anchor="start" x="4" y="-150.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
</g>
<!-- __F_3&#45;&#45;W1 -->
<g id="edge5" class="edge">
<title>__F_3:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-150.5C150.04,-150.86 165.66,-139.86 231,-139.5"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M87,-152.5C151.19,-152.5 166.81,-141.5 231,-141.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-154.5C152.34,-154.14 167.96,-143.14 231,-143.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M86.75,-153.88C149.75,-154.29 165.31,-142.29 230.75,-141.88"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M86.75,-155.88C150.97,-155.88 166.53,-143.88 230.75,-143.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M86.75,-157.87C152.19,-157.46 167.75,-145.46 230.75,-145.87"/>
</g>
<!-- __F_4 -->
<g id="node4" class="node">
<title>__F_4</title>
<polygon fill="#ffffff" stroke="black" points="87,-117 0,-117 0,-94 87,-94 87,-117"/>
<polygon fill="none" stroke="black" points="0.5,-93.5 0.5,-116.5 87.5,-116.5 87.5,-93.5 0.5,-93.5"/>
<text text-anchor="start" x="4.5" y="-101.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="#ffffff" stroke="black" points="86.75,-119.75 0,-119.75 0,-96 86.75,-96 86.75,-119.75"/>
<polygon fill="none" stroke="black" points="0,-96 0,-119.75 86.75,-119.75 86.75,-96 0,-96"/>
<text text-anchor="start" x="4" y="-102.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
</g>
<!-- __F_4&#45;&#45;W1 -->
<g id="edge7" class="edge">
<title>__F_4:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-103.5C152.34,-103.86 167.96,-114.86 231,-114.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M87,-105.5C151.19,-105.5 166.81,-116.5 231,-116.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-107.5C150.04,-107.14 165.66,-118.14 231,-118.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M86.75,-105.88C152.09,-106.24 167.71,-117.24 230.75,-116.88"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M86.75,-107.88C150.94,-107.87 166.56,-118.87 230.75,-118.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M86.75,-109.87C149.79,-109.51 165.41,-120.51 230.75,-120.87"/>
</g>
<!-- __F_5 -->
<g id="node5" class="node">
<title>__F_5</title>
<polygon fill="#ffffff" stroke="black" points="87,-70 0,-70 0,-47 87,-47 87,-70"/>
<polygon fill="none" stroke="black" points="0.5,-46.5 0.5,-69.5 87.5,-69.5 87.5,-46.5 0.5,-46.5"/>
<text text-anchor="start" x="4.5" y="-54.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="#ffffff" stroke="black" points="86.75,-71.75 0,-71.75 0,-48 86.75,-48 86.75,-71.75"/>
<polygon fill="none" stroke="black" points="0,-48 0,-71.75 86.75,-71.75 86.75,-48 0,-48"/>
<text text-anchor="start" x="4" y="-54.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
</g>
<!-- __F_5&#45;&#45;W1 -->
<g id="edge9" class="edge">
<title>__F_5:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-56.5C154.53,-57.78 167.21,-90.78 231,-89.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M87,-58.5C152.66,-58.5 165.34,-91.5 231,-91.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-60.5C150.79,-59.22 163.47,-92.22 231,-93.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M86.75,-57.88C154.39,-59.19 166.87,-93.19 230.75,-91.88"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M86.75,-59.88C152.51,-59.88 164.99,-93.88 230.75,-93.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M86.75,-61.87C150.63,-60.56 163.11,-94.56 230.75,-95.87"/>
</g>
<!-- __F_6 -->
<g id="node6" class="node">
<title>__F_6</title>
<polygon fill="#ffffff" stroke="black" points="87,-23 0,-23 0,0 87,0 87,-23"/>
<polygon fill="none" stroke="black" points="0.5,0.5 0.5,-22.5 87.5,-22.5 87.5,0.5 0.5,0.5"/>
<text text-anchor="start" x="4.5" y="-7.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="#ffffff" stroke="black" points="86.75,-23.75 0,-23.75 0,0 86.75,0 86.75,-23.75"/>
<polygon fill="none" stroke="black" points="0,0 0,-23.75 86.75,-23.75 86.75,0 0,0"/>
<text text-anchor="start" x="4" y="-6.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
</g>
<!-- __F_6&#45;&#45;W1 -->
<g id="edge11" class="edge">
<title>__F_6:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-9.5C157.49,-11.25 164.47,-66.25 231,-64.5"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M87,-11.5C155.51,-11.5 162.49,-66.5 231,-66.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-13.5C153.53,-11.75 160.51,-66.75 231,-68.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M86.75,-9.88C157.57,-11.65 163.91,-68.65 230.75,-66.88"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M86.75,-11.88C155.58,-11.88 161.92,-68.88 230.75,-68.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M86.75,-13.87C153.59,-12.1 159.93,-69.1 230.75,-70.87"/>
</g>
<!-- __F_7 -->
<g id="node7" class="node">
<title>__F_7</title>
<polygon fill="#ffffff" stroke="black" points="660,-258 573,-258 573,-235 660,-235 660,-258"/>
<polygon fill="none" stroke="black" points="573.5,-234.5 573.5,-257.5 660.5,-257.5 660.5,-234.5 573.5,-234.5"/>
<text text-anchor="start" x="577.5" y="-242.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="#ffffff" stroke="black" points="657.25,-263.75 570.5,-263.75 570.5,-240 657.25,-240 657.25,-263.75"/>
<polygon fill="none" stroke="black" points="570.5,-240 570.5,-263.75 657.25,-263.75 657.25,-240 570.5,-240"/>
<text text-anchor="start" x="574.5" y="-246.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
</g>
<!-- __F_8 -->
<g id="node8" class="node">
<title>__F_8</title>
<polygon fill="#ffffff" stroke="black" points="660,-211 573,-211 573,-188 660,-188 660,-211"/>
<polygon fill="none" stroke="black" points="573.5,-187.5 573.5,-210.5 660.5,-210.5 660.5,-187.5 573.5,-187.5"/>
<text text-anchor="start" x="577.5" y="-195.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="#ffffff" stroke="black" points="657.25,-215.75 570.5,-215.75 570.5,-192 657.25,-192 657.25,-215.75"/>
<polygon fill="none" stroke="black" points="570.5,-192 570.5,-215.75 657.25,-215.75 657.25,-192 570.5,-192"/>
<text text-anchor="start" x="574.5" y="-198.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
</g>
<!-- __F_9 -->
<g id="node9" class="node">
<title>__F_9</title>
<polygon fill="#ffffff" stroke="black" points="660,-164 573,-164 573,-141 660,-141 660,-164"/>
<polygon fill="none" stroke="black" points="573.5,-140.5 573.5,-163.5 660.5,-163.5 660.5,-140.5 573.5,-140.5"/>
<text text-anchor="start" x="577.5" y="-148.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="#ffffff" stroke="black" points="657.25,-167.75 570.5,-167.75 570.5,-144 657.25,-144 657.25,-167.75"/>
<polygon fill="none" stroke="black" points="570.5,-144 570.5,-167.75 657.25,-167.75 657.25,-144 570.5,-144"/>
<text text-anchor="start" x="574.5" y="-150.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
</g>
<!-- __F_10 -->
<g id="node10" class="node">
<title>__F_10</title>
<polygon fill="#ffffff" stroke="black" points="660,-117 573,-117 573,-94 660,-94 660,-117"/>
<polygon fill="none" stroke="black" points="573.5,-93.5 573.5,-116.5 660.5,-116.5 660.5,-93.5 573.5,-93.5"/>
<text text-anchor="start" x="577.5" y="-101.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="#ffffff" stroke="black" points="657.25,-119.75 570.5,-119.75 570.5,-96 657.25,-96 657.25,-119.75"/>
<polygon fill="none" stroke="black" points="570.5,-96 570.5,-119.75 657.25,-119.75 657.25,-96 570.5,-96"/>
<text text-anchor="start" x="574.5" y="-102.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
</g>
<!-- __F_11 -->
<g id="node11" class="node">
<title>__F_11</title>
<polygon fill="#ffffff" stroke="black" points="660,-70 573,-70 573,-47 660,-47 660,-70"/>
<polygon fill="none" stroke="black" points="573.5,-46.5 573.5,-69.5 660.5,-69.5 660.5,-46.5 573.5,-46.5"/>
<text text-anchor="start" x="577.5" y="-54.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="#ffffff" stroke="black" points="657.25,-71.75 570.5,-71.75 570.5,-48 657.25,-48 657.25,-71.75"/>
<polygon fill="none" stroke="black" points="570.5,-48 570.5,-71.75 657.25,-71.75 657.25,-48 570.5,-48"/>
<text text-anchor="start" x="574.5" y="-54.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
</g>
<!-- __F_12 -->
<g id="node12" class="node">
<title>__F_12</title>
<polygon fill="#ffffff" stroke="black" points="660,-23 573,-23 573,0 660,0 660,-23"/>
<polygon fill="none" stroke="black" points="573.5,0.5 573.5,-22.5 660.5,-22.5 660.5,0.5 573.5,0.5"/>
<text text-anchor="start" x="577.5" y="-7.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="#ffffff" stroke="black" points="657.25,-23.75 570.5,-23.75 570.5,0 657.25,0 657.25,-23.75"/>
<polygon fill="none" stroke="black" points="570.5,0 570.5,-23.75 657.25,-23.75 657.25,0 570.5,0"/>
<text text-anchor="start" x="574.5" y="-6.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
</g>
<!-- W1&#45;&#45;__F_7 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;__F_7:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-189.5C499.49,-191.25 506.47,-246.25 573,-244.5"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M429,-191.5C497.51,-191.5 504.49,-246.5 573,-246.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-193.5C495.53,-191.75 502.51,-246.75 573,-248.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M426.5,-191.88C497.49,-193.67 503.49,-251.67 570.5,-249.88"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M426.5,-193.88C495.5,-193.88 501.5,-251.88 570.5,-251.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M426.5,-195.87C493.51,-194.08 499.51,-252.08 570.5,-253.87"/>
</g>
<!-- W1&#45;&#45;__F_8 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;__F_8:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-164.5C496.53,-165.78 509.21,-198.78 573,-197.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M429,-166.5C494.66,-166.5 507.34,-199.5 573,-199.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-168.5C492.79,-167.22 505.47,-200.22 573,-201.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M426.5,-166.88C494.25,-168.21 506.52,-203.21 570.5,-201.88"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M426.5,-168.88C492.36,-168.88 504.64,-203.88 570.5,-203.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M426.5,-170.87C490.48,-169.54 502.75,-204.54 570.5,-205.87"/>
</g>
<!-- W1&#45;&#45;__F_9 -->
<g id="edge6" class="edge">
<title>W1:e&#45;&#45;__F_9:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-139.5C494.34,-139.86 509.96,-150.86 573,-150.5"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M429,-141.5C493.19,-141.5 508.81,-152.5 573,-152.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-143.5C492.04,-143.14 507.66,-154.14 573,-154.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M426.5,-141.88C491.94,-142.29 507.5,-154.29 570.5,-153.88"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M426.5,-143.88C490.72,-143.88 506.28,-155.88 570.5,-155.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M426.5,-145.87C489.5,-145.46 505.06,-157.46 570.5,-157.87"/>
</g>
<!-- W1&#45;&#45;__F_10 -->
<g id="edge8" class="edge">
<title>W1:e&#45;&#45;__F_10:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-114.5C492.04,-114.86 507.66,-103.86 573,-103.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M429,-116.5C493.19,-116.5 508.81,-105.5 573,-105.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-118.5C494.34,-118.14 509.96,-107.14 573,-107.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M426.5,-116.88C489.54,-117.24 505.16,-106.24 570.5,-105.88"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M426.5,-118.88C490.69,-118.87 506.31,-107.87 570.5,-107.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M426.5,-120.87C491.84,-120.51 507.46,-109.51 570.5,-109.87"/>
</g>
<!-- W1&#45;&#45;__F_11 -->
<g id="edge10" class="edge">
<title>W1:e&#45;&#45;__F_11:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-89.5C492.79,-90.78 505.47,-57.78 573,-56.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M429,-91.5C494.66,-91.5 507.34,-58.5 573,-58.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-93.5C496.53,-92.22 509.21,-59.22 573,-60.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M426.5,-91.88C490.38,-93.19 502.86,-59.19 570.5,-57.88"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M426.5,-93.88C492.26,-93.88 504.74,-59.88 570.5,-59.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M426.5,-95.87C494.14,-94.56 506.62,-60.56 570.5,-61.87"/>
</g>
<!-- W1&#45;&#45;__F_12 -->
<g id="edge12" class="edge">
<title>W1:e&#45;&#45;__F_12:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-64.5C495.53,-66.25 502.51,-11.25 573,-9.5"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M429,-66.5C497.51,-66.5 504.49,-11.5 573,-11.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-68.5C499.49,-66.75 506.47,-11.75 573,-13.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M426.5,-66.88C493.34,-68.65 499.68,-11.65 570.5,-9.88"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M426.5,-68.88C495.33,-68.88 501.67,-11.88 570.5,-11.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M426.5,-70.87C497.32,-69.1 503.66,-12.1 570.5,-13.87"/>
</g>
</g>
</svg>

BIN
examples/ex04.png generated

Binary file not shown.

Before

Width:  |  Height:  |  Size: 69 KiB

After

Width:  |  Height:  |  Size: 69 KiB

224
examples/ex04.svg generated
View File

@ -1,219 +1,219 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="668pt" height="287pt"
viewBox="0.00 0.00 668.00 286.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 282.5)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-282.5 664,-282.5 664,4 -4,4"/>
<svg width="665pt" height="291pt"
viewBox="0.00 0.00 665.25 290.62" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 286.62)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-286.62 661.25,-286.62 661.25,4 -4,4"/>
<!-- __F_1 -->
<g id="node1" class="node">
<title>__F_1</title>
<polygon fill="#ffffff" stroke="black" points="87,-258 0,-258 0,-235 87,-235 87,-258"/>
<polygon fill="none" stroke="black" points="0.5,-234.5 0.5,-257.5 87.5,-257.5 87.5,-234.5 0.5,-234.5"/>
<text text-anchor="start" x="4.5" y="-242.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="#ffffff" stroke="black" points="86.75,-263.75 0,-263.75 0,-240 86.75,-240 86.75,-263.75"/>
<polygon fill="none" stroke="black" points="0,-240 0,-263.75 86.75,-263.75 86.75,-240 0,-240"/>
<text text-anchor="start" x="4" y="-246.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
</g>
<!-- W1 -->
<g id="node13" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="429,-278.5 231,-278.5 231,-44.5 429,-44.5 429,-278.5"/>
<polygon fill="none" stroke="black" points="231,-255.5 231,-278.5 429,-278.5 429,-255.5 231,-255.5"/>
<text text-anchor="start" x="319" y="-263.3" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="231,-232.5 231,-255.5 254,-255.5 254,-232.5 231,-232.5"/>
<text text-anchor="start" x="235" y="-240.3" font-family="arial" font-size="14.00">6x</text>
<polygon fill="none" stroke="black" points="254,-232.5 254,-255.5 386,-255.5 386,-232.5 254,-232.5"/>
<text text-anchor="start" x="258" y="-240.3" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
<polygon fill="none" stroke="black" points="386,-232.5 386,-255.5 429,-255.5 429,-232.5 386,-232.5"/>
<text text-anchor="start" x="390" y="-240.3" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="254" y="-219.3" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="306" y="-200.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="231,-192.5 231,-194.5 429,-194.5 429,-192.5 231,-192.5"/>
<polygon fill="#895956" stroke="none" points="231,-190.5 231,-192.5 429,-192.5 429,-190.5 231,-190.5"/>
<polygon fill="#000000" stroke="none" points="231,-188.5 231,-190.5 429,-190.5 429,-188.5 231,-188.5"/>
<text text-anchor="start" x="305.5" y="-175.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="231,-167.5 231,-169.5 429,-169.5 429,-167.5 231,-167.5"/>
<polygon fill="#ff0000" stroke="none" points="231,-165.5 231,-167.5 429,-167.5 429,-165.5 231,-165.5"/>
<polygon fill="#000000" stroke="none" points="231,-163.5 231,-165.5 429,-165.5 429,-163.5 231,-163.5"/>
<text text-anchor="start" x="304" y="-150.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;OG &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="231,-142.5 231,-144.5 429,-144.5 429,-142.5 231,-142.5"/>
<polygon fill="#ff8000" stroke="none" points="231,-140.5 231,-142.5 429,-142.5 429,-140.5 231,-140.5"/>
<polygon fill="#000000" stroke="none" points="231,-138.5 231,-140.5 429,-140.5 429,-138.5 231,-138.5"/>
<text text-anchor="start" x="306.5" y="-125.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="231,-117.5 231,-119.5 429,-119.5 429,-117.5 231,-117.5"/>
<polygon fill="#ffff00" stroke="none" points="231,-115.5 231,-117.5 429,-117.5 429,-115.5 231,-115.5"/>
<polygon fill="#000000" stroke="none" points="231,-113.5 231,-115.5 429,-115.5 429,-113.5 231,-113.5"/>
<text text-anchor="start" x="305" y="-100.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="231,-92.5 231,-94.5 429,-94.5 429,-92.5 231,-92.5"/>
<polygon fill="#00ff00" stroke="none" points="231,-90.5 231,-92.5 429,-92.5 429,-90.5 231,-90.5"/>
<polygon fill="#000000" stroke="none" points="231,-88.5 231,-90.5 429,-90.5 429,-88.5 231,-88.5"/>
<text text-anchor="start" x="306" y="-75.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="231,-67.5 231,-69.5 429,-69.5 429,-67.5 231,-67.5"/>
<polygon fill="#0066ff" stroke="none" points="231,-65.5 231,-67.5 429,-67.5 429,-65.5 231,-65.5"/>
<polygon fill="#000000" stroke="none" points="231,-63.5 231,-65.5 429,-65.5 429,-63.5 231,-63.5"/>
<text text-anchor="start" x="254" y="-50.3" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="426.5,-282.62 230.75,-282.62 230.75,-47.12 426.5,-47.12 426.5,-282.62"/>
<polygon fill="none" stroke="black" points="230.75,-258.88 230.75,-282.62 426.5,-282.62 426.5,-258.88 230.75,-258.88"/>
<text text-anchor="start" x="318.12" y="-265.32" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="230.75,-235.12 230.75,-258.88 253,-258.88 253,-235.12 230.75,-235.12"/>
<text text-anchor="start" x="234.75" y="-241.57" font-family="arial" font-size="14.00">6x</text>
<polygon fill="none" stroke="black" points="253,-235.12 253,-258.88 384,-258.88 384,-235.12 253,-235.12"/>
<text text-anchor="start" x="257" y="-241.57" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
<polygon fill="none" stroke="black" points="384,-235.12 384,-258.88 426.5,-258.88 426.5,-235.12 384,-235.12"/>
<text text-anchor="start" x="388" y="-241.57" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="253.17" y="-219.82" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="303.88" y="-200.82" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BN &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="230.75,-195.12 230.75,-197.12 426.5,-197.12 426.5,-195.12 230.75,-195.12"/>
<polygon fill="#895956" stroke="none" points="230.75,-193.12 230.75,-195.12 426.5,-195.12 426.5,-193.12 230.75,-193.12"/>
<polygon fill="#000000" stroke="none" points="230.75,-191.12 230.75,-193.12 426.5,-193.12 426.5,-191.12 230.75,-191.12"/>
<text text-anchor="start" x="303.5" y="-175.82" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="230.75,-170.12 230.75,-172.12 426.5,-172.12 426.5,-170.12 230.75,-170.12"/>
<polygon fill="#ff0000" stroke="none" points="230.75,-168.12 230.75,-170.12 426.5,-170.12 426.5,-168.12 230.75,-168.12"/>
<polygon fill="#000000" stroke="none" points="230.75,-166.12 230.75,-168.12 426.5,-168.12 426.5,-166.12 230.75,-166.12"/>
<text text-anchor="start" x="302" y="-150.82" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;OG &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="230.75,-145.12 230.75,-147.12 426.5,-147.12 426.5,-145.12 230.75,-145.12"/>
<polygon fill="#ff8000" stroke="none" points="230.75,-143.12 230.75,-145.12 426.5,-145.12 426.5,-143.12 230.75,-143.12"/>
<polygon fill="#000000" stroke="none" points="230.75,-141.12 230.75,-143.12 426.5,-143.12 426.5,-141.12 230.75,-141.12"/>
<text text-anchor="start" x="304.25" y="-125.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="230.75,-120.12 230.75,-122.12 426.5,-122.12 426.5,-120.12 230.75,-120.12"/>
<polygon fill="#ffff00" stroke="none" points="230.75,-118.12 230.75,-120.12 426.5,-120.12 426.5,-118.12 230.75,-118.12"/>
<polygon fill="#000000" stroke="none" points="230.75,-116.12 230.75,-118.12 426.5,-118.12 426.5,-116.12 230.75,-116.12"/>
<text text-anchor="start" x="302.75" y="-100.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="230.75,-95.12 230.75,-97.12 426.5,-97.12 426.5,-95.12 230.75,-95.12"/>
<polygon fill="#00ff00" stroke="none" points="230.75,-93.12 230.75,-95.12 426.5,-95.12 426.5,-93.12 230.75,-93.12"/>
<polygon fill="#000000" stroke="none" points="230.75,-91.12 230.75,-93.12 426.5,-93.12 426.5,-91.12 230.75,-91.12"/>
<text text-anchor="start" x="303.88" y="-75.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="230.75,-70.12 230.75,-72.12 426.5,-72.12 426.5,-70.12 230.75,-70.12"/>
<polygon fill="#0066ff" stroke="none" points="230.75,-68.12 230.75,-70.12 426.5,-70.12 426.5,-68.12 230.75,-68.12"/>
<polygon fill="#000000" stroke="none" points="230.75,-66.12 230.75,-68.12 426.5,-68.12 426.5,-66.12 230.75,-66.12"/>
<text text-anchor="start" x="253.17" y="-50.83" font-family="arial" font-size="14.00"> </text>
</g>
<!-- __F_1&#45;&#45;W1 -->
<g id="edge1" class="edge">
<title>__F_1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-244.5C153.53,-246.25 160.51,-191.25 231,-189.5"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M87,-246.5C155.51,-246.5 162.49,-191.5 231,-191.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-248.5C157.49,-246.75 164.47,-191.75 231,-193.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M86.75,-249.88C153.76,-251.67 159.76,-193.67 230.75,-191.88"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M86.75,-251.88C155.75,-251.88 161.75,-193.88 230.75,-193.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M86.75,-253.87C157.74,-252.08 163.74,-194.08 230.75,-195.87"/>
</g>
<!-- __F_2 -->
<g id="node2" class="node">
<title>__F_2</title>
<polygon fill="#ffffff" stroke="black" points="87,-211 0,-211 0,-188 87,-188 87,-211"/>
<polygon fill="none" stroke="black" points="0.5,-187.5 0.5,-210.5 87.5,-210.5 87.5,-187.5 0.5,-187.5"/>
<text text-anchor="start" x="4.5" y="-195.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="#ffffff" stroke="black" points="86.75,-215.75 0,-215.75 0,-192 86.75,-192 86.75,-215.75"/>
<polygon fill="none" stroke="black" points="0,-192 0,-215.75 86.75,-215.75 86.75,-192 0,-192"/>
<text text-anchor="start" x="4" y="-198.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
</g>
<!-- __F_2&#45;&#45;W1 -->
<g id="edge3" class="edge">
<title>__F_2:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-197.5C150.79,-198.78 163.47,-165.78 231,-164.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M87,-199.5C152.66,-199.5 165.34,-166.5 231,-166.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-201.5C154.53,-200.22 167.21,-167.22 231,-168.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M86.75,-201.88C150.73,-203.21 163,-168.21 230.75,-166.88"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M86.75,-203.88C152.61,-203.88 164.89,-168.88 230.75,-168.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M86.75,-205.87C154.5,-204.54 166.77,-169.54 230.75,-170.87"/>
</g>
<!-- __F_3 -->
<g id="node3" class="node">
<title>__F_3</title>
<polygon fill="#ffffff" stroke="black" points="87,-164 0,-164 0,-141 87,-141 87,-164"/>
<polygon fill="none" stroke="black" points="0.5,-140.5 0.5,-163.5 87.5,-163.5 87.5,-140.5 0.5,-140.5"/>
<text text-anchor="start" x="4.5" y="-148.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="#ffffff" stroke="black" points="86.75,-167.75 0,-167.75 0,-144 86.75,-144 86.75,-167.75"/>
<polygon fill="none" stroke="black" points="0,-144 0,-167.75 86.75,-167.75 86.75,-144 0,-144"/>
<text text-anchor="start" x="4" y="-150.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
</g>
<!-- __F_3&#45;&#45;W1 -->
<g id="edge5" class="edge">
<title>__F_3:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-150.5C150.04,-150.86 165.66,-139.86 231,-139.5"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M87,-152.5C151.19,-152.5 166.81,-141.5 231,-141.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-154.5C152.34,-154.14 167.96,-143.14 231,-143.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M86.75,-153.88C149.75,-154.29 165.31,-142.29 230.75,-141.88"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M86.75,-155.88C150.97,-155.88 166.53,-143.88 230.75,-143.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M86.75,-157.87C152.19,-157.46 167.75,-145.46 230.75,-145.87"/>
</g>
<!-- __F_4 -->
<g id="node4" class="node">
<title>__F_4</title>
<polygon fill="#ffffff" stroke="black" points="87,-117 0,-117 0,-94 87,-94 87,-117"/>
<polygon fill="none" stroke="black" points="0.5,-93.5 0.5,-116.5 87.5,-116.5 87.5,-93.5 0.5,-93.5"/>
<text text-anchor="start" x="4.5" y="-101.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="#ffffff" stroke="black" points="86.75,-119.75 0,-119.75 0,-96 86.75,-96 86.75,-119.75"/>
<polygon fill="none" stroke="black" points="0,-96 0,-119.75 86.75,-119.75 86.75,-96 0,-96"/>
<text text-anchor="start" x="4" y="-102.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
</g>
<!-- __F_4&#45;&#45;W1 -->
<g id="edge7" class="edge">
<title>__F_4:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-103.5C152.34,-103.86 167.96,-114.86 231,-114.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M87,-105.5C151.19,-105.5 166.81,-116.5 231,-116.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-107.5C150.04,-107.14 165.66,-118.14 231,-118.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M86.75,-105.88C152.09,-106.24 167.71,-117.24 230.75,-116.88"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M86.75,-107.88C150.94,-107.87 166.56,-118.87 230.75,-118.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M86.75,-109.87C149.79,-109.51 165.41,-120.51 230.75,-120.87"/>
</g>
<!-- __F_5 -->
<g id="node5" class="node">
<title>__F_5</title>
<polygon fill="#ffffff" stroke="black" points="87,-70 0,-70 0,-47 87,-47 87,-70"/>
<polygon fill="none" stroke="black" points="0.5,-46.5 0.5,-69.5 87.5,-69.5 87.5,-46.5 0.5,-46.5"/>
<text text-anchor="start" x="4.5" y="-54.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="#ffffff" stroke="black" points="86.75,-71.75 0,-71.75 0,-48 86.75,-48 86.75,-71.75"/>
<polygon fill="none" stroke="black" points="0,-48 0,-71.75 86.75,-71.75 86.75,-48 0,-48"/>
<text text-anchor="start" x="4" y="-54.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
</g>
<!-- __F_5&#45;&#45;W1 -->
<g id="edge9" class="edge">
<title>__F_5:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-56.5C154.53,-57.78 167.21,-90.78 231,-89.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M87,-58.5C152.66,-58.5 165.34,-91.5 231,-91.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-60.5C150.79,-59.22 163.47,-92.22 231,-93.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M86.75,-57.88C154.39,-59.19 166.87,-93.19 230.75,-91.88"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M86.75,-59.88C152.51,-59.88 164.99,-93.88 230.75,-93.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M86.75,-61.87C150.63,-60.56 163.11,-94.56 230.75,-95.87"/>
</g>
<!-- __F_6 -->
<g id="node6" class="node">
<title>__F_6</title>
<polygon fill="#ffffff" stroke="black" points="87,-23 0,-23 0,0 87,0 87,-23"/>
<polygon fill="none" stroke="black" points="0.5,0.5 0.5,-22.5 87.5,-22.5 87.5,0.5 0.5,0.5"/>
<text text-anchor="start" x="4.5" y="-7.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="#ffffff" stroke="black" points="86.75,-23.75 0,-23.75 0,0 86.75,0 86.75,-23.75"/>
<polygon fill="none" stroke="black" points="0,0 0,-23.75 86.75,-23.75 86.75,0 0,0"/>
<text text-anchor="start" x="4" y="-6.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
</g>
<!-- __F_6&#45;&#45;W1 -->
<g id="edge11" class="edge">
<title>__F_6:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-9.5C157.49,-11.25 164.47,-66.25 231,-64.5"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M87,-11.5C155.51,-11.5 162.49,-66.5 231,-66.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M87,-13.5C153.53,-11.75 160.51,-66.75 231,-68.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M86.75,-9.88C157.57,-11.65 163.91,-68.65 230.75,-66.88"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M86.75,-11.88C155.58,-11.88 161.92,-68.88 230.75,-68.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M86.75,-13.87C153.59,-12.1 159.93,-69.1 230.75,-70.87"/>
</g>
<!-- __F_7 -->
<g id="node7" class="node">
<title>__F_7</title>
<polygon fill="#ffffff" stroke="black" points="660,-258 573,-258 573,-235 660,-235 660,-258"/>
<polygon fill="none" stroke="black" points="573.5,-234.5 573.5,-257.5 660.5,-257.5 660.5,-234.5 573.5,-234.5"/>
<text text-anchor="start" x="577.5" y="-242.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="#ffffff" stroke="black" points="657.25,-263.75 570.5,-263.75 570.5,-240 657.25,-240 657.25,-263.75"/>
<polygon fill="none" stroke="black" points="570.5,-240 570.5,-263.75 657.25,-263.75 657.25,-240 570.5,-240"/>
<text text-anchor="start" x="574.5" y="-246.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
</g>
<!-- __F_8 -->
<g id="node8" class="node">
<title>__F_8</title>
<polygon fill="#ffffff" stroke="black" points="660,-211 573,-211 573,-188 660,-188 660,-211"/>
<polygon fill="none" stroke="black" points="573.5,-187.5 573.5,-210.5 660.5,-210.5 660.5,-187.5 573.5,-187.5"/>
<text text-anchor="start" x="577.5" y="-195.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="#ffffff" stroke="black" points="657.25,-215.75 570.5,-215.75 570.5,-192 657.25,-192 657.25,-215.75"/>
<polygon fill="none" stroke="black" points="570.5,-192 570.5,-215.75 657.25,-215.75 657.25,-192 570.5,-192"/>
<text text-anchor="start" x="574.5" y="-198.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
</g>
<!-- __F_9 -->
<g id="node9" class="node">
<title>__F_9</title>
<polygon fill="#ffffff" stroke="black" points="660,-164 573,-164 573,-141 660,-141 660,-164"/>
<polygon fill="none" stroke="black" points="573.5,-140.5 573.5,-163.5 660.5,-163.5 660.5,-140.5 573.5,-140.5"/>
<text text-anchor="start" x="577.5" y="-148.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="#ffffff" stroke="black" points="657.25,-167.75 570.5,-167.75 570.5,-144 657.25,-144 657.25,-167.75"/>
<polygon fill="none" stroke="black" points="570.5,-144 570.5,-167.75 657.25,-167.75 657.25,-144 570.5,-144"/>
<text text-anchor="start" x="574.5" y="-150.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
</g>
<!-- __F_10 -->
<g id="node10" class="node">
<title>__F_10</title>
<polygon fill="#ffffff" stroke="black" points="660,-117 573,-117 573,-94 660,-94 660,-117"/>
<polygon fill="none" stroke="black" points="573.5,-93.5 573.5,-116.5 660.5,-116.5 660.5,-93.5 573.5,-93.5"/>
<text text-anchor="start" x="577.5" y="-101.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="#ffffff" stroke="black" points="657.25,-119.75 570.5,-119.75 570.5,-96 657.25,-96 657.25,-119.75"/>
<polygon fill="none" stroke="black" points="570.5,-96 570.5,-119.75 657.25,-119.75 657.25,-96 570.5,-96"/>
<text text-anchor="start" x="574.5" y="-102.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
</g>
<!-- __F_11 -->
<g id="node11" class="node">
<title>__F_11</title>
<polygon fill="#ffffff" stroke="black" points="660,-70 573,-70 573,-47 660,-47 660,-70"/>
<polygon fill="none" stroke="black" points="573.5,-46.5 573.5,-69.5 660.5,-69.5 660.5,-46.5 573.5,-46.5"/>
<text text-anchor="start" x="577.5" y="-54.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="#ffffff" stroke="black" points="657.25,-71.75 570.5,-71.75 570.5,-48 657.25,-48 657.25,-71.75"/>
<polygon fill="none" stroke="black" points="570.5,-48 570.5,-71.75 657.25,-71.75 657.25,-48 570.5,-48"/>
<text text-anchor="start" x="574.5" y="-54.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
</g>
<!-- __F_12 -->
<g id="node12" class="node">
<title>__F_12</title>
<polygon fill="#ffffff" stroke="black" points="660,-23 573,-23 573,0 660,0 660,-23"/>
<polygon fill="none" stroke="black" points="573.5,0.5 573.5,-22.5 660.5,-22.5 660.5,0.5 573.5,0.5"/>
<text text-anchor="start" x="577.5" y="-7.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="#ffffff" stroke="black" points="657.25,-23.75 570.5,-23.75 570.5,0 657.25,0 657.25,-23.75"/>
<polygon fill="none" stroke="black" points="570.5,0 570.5,-23.75 657.25,-23.75 657.25,0 570.5,0"/>
<text text-anchor="start" x="574.5" y="-6.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
</g>
<!-- W1&#45;&#45;__F_7 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;__F_7:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-189.5C499.49,-191.25 506.47,-246.25 573,-244.5"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M429,-191.5C497.51,-191.5 504.49,-246.5 573,-246.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-193.5C495.53,-191.75 502.51,-246.75 573,-248.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M426.5,-191.88C497.49,-193.67 503.49,-251.67 570.5,-249.88"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M426.5,-193.88C495.5,-193.88 501.5,-251.88 570.5,-251.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M426.5,-195.87C493.51,-194.08 499.51,-252.08 570.5,-253.87"/>
</g>
<!-- W1&#45;&#45;__F_8 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;__F_8:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-164.5C496.53,-165.78 509.21,-198.78 573,-197.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M429,-166.5C494.66,-166.5 507.34,-199.5 573,-199.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-168.5C492.79,-167.22 505.47,-200.22 573,-201.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M426.5,-166.88C494.25,-168.21 506.52,-203.21 570.5,-201.88"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M426.5,-168.88C492.36,-168.88 504.64,-203.88 570.5,-203.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M426.5,-170.87C490.48,-169.54 502.75,-204.54 570.5,-205.87"/>
</g>
<!-- W1&#45;&#45;__F_9 -->
<g id="edge6" class="edge">
<title>W1:e&#45;&#45;__F_9:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-139.5C494.34,-139.86 509.96,-150.86 573,-150.5"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M429,-141.5C493.19,-141.5 508.81,-152.5 573,-152.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-143.5C492.04,-143.14 507.66,-154.14 573,-154.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M426.5,-141.88C491.94,-142.29 507.5,-154.29 570.5,-153.88"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M426.5,-143.88C490.72,-143.88 506.28,-155.88 570.5,-155.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M426.5,-145.87C489.5,-145.46 505.06,-157.46 570.5,-157.87"/>
</g>
<!-- W1&#45;&#45;__F_10 -->
<g id="edge8" class="edge">
<title>W1:e&#45;&#45;__F_10:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-114.5C492.04,-114.86 507.66,-103.86 573,-103.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M429,-116.5C493.19,-116.5 508.81,-105.5 573,-105.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-118.5C494.34,-118.14 509.96,-107.14 573,-107.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M426.5,-116.88C489.54,-117.24 505.16,-106.24 570.5,-105.88"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M426.5,-118.88C490.69,-118.87 506.31,-107.87 570.5,-107.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M426.5,-120.87C491.84,-120.51 507.46,-109.51 570.5,-109.87"/>
</g>
<!-- W1&#45;&#45;__F_11 -->
<g id="edge10" class="edge">
<title>W1:e&#45;&#45;__F_11:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-89.5C492.79,-90.78 505.47,-57.78 573,-56.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M429,-91.5C494.66,-91.5 507.34,-58.5 573,-58.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-93.5C496.53,-92.22 509.21,-59.22 573,-60.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M426.5,-91.88C490.38,-93.19 502.86,-59.19 570.5,-57.88"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M426.5,-93.88C492.26,-93.88 504.74,-59.88 570.5,-59.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M426.5,-95.87C494.14,-94.56 506.62,-60.56 570.5,-61.87"/>
</g>
<!-- W1&#45;&#45;__F_12 -->
<g id="edge12" class="edge">
<title>W1:e&#45;&#45;__F_12:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-64.5C495.53,-66.25 502.51,-11.25 573,-9.5"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M429,-66.5C497.51,-66.5 504.49,-11.5 573,-11.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M429,-68.5C499.49,-66.75 506.47,-11.75 573,-13.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M426.5,-66.88C493.34,-68.65 499.68,-11.65 570.5,-9.88"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M426.5,-68.88C495.33,-68.88 501.67,-11.88 570.5,-11.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M426.5,-70.87C497.32,-69.1 503.66,-12.1 570.5,-13.87"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

420
examples/ex05.html generated
View File

@ -30,301 +30,301 @@
<div id="diagram">
<!-- XML and DOCTYPE declarations from SVG file removed -->
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="1514pt" height="192pt"
viewBox="0.00 0.00 1514.00 192.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 188)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-188 1510,-188 1510,4 -4,4"/>
<svg width="1502pt" height="194pt"
viewBox="0.00 0.00 1502.00 193.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 189.5)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-189.5 1498,-189.5 1498,4 -4,4"/>
<!-- X1 -->
<g id="node1" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="182,-152 0,-152 0,-14 182,-14 182,-152"/>
<polygon fill="none" stroke="black" points="0,-129 0,-152 182,-152 182,-129 0,-129"/>
<text text-anchor="start" x="82.5" y="-136.8" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-106 0,-129 93,-129 93,-106 0,-106"/>
<text text-anchor="start" x="4" y="-113.8" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="93,-106 93,-129 143,-129 143,-106 93,-106"/>
<text text-anchor="start" x="97" y="-113.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="143,-106 143,-129 182,-129 182,-106 143,-106"/>
<text text-anchor="start" x="147" y="-113.8" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-83 0,-106 103,-106 103,-83 0,-83"/>
<text text-anchor="start" x="36" y="-90.8" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="103,-83 103,-106 182,-106 182,-83 103,-83"/>
<text text-anchor="start" x="138.5" y="-90.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-60 0,-83 103,-83 103,-60 0,-60"/>
<text text-anchor="start" x="37" y="-67.8" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="103,-60 103,-83 182,-83 182,-60 103,-60"/>
<text text-anchor="start" x="138.5" y="-67.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0,-37 0,-60 103,-60 103,-37 0,-37"/>
<text text-anchor="start" x="38" y="-44.8" font-family="arial" font-size="14.00">SCL</text>
<polygon fill="none" stroke="black" points="103,-37 103,-60 182,-60 182,-37 103,-37"/>
<text text-anchor="start" x="138.5" y="-44.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-14 0,-37 103,-37 103,-14 0,-14"/>
<text text-anchor="start" x="37.5" y="-21.8" font-family="arial" font-size="14.00">SDA</text>
<polygon fill="none" stroke="black" points="103,-14 103,-37 182,-37 182,-14 103,-14"/>
<text text-anchor="start" x="138.5" y="-21.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="#ffffff" stroke="black" points="180,-152.5 0,-152.5 0,-13 180,-13 180,-152.5"/>
<polygon fill="none" stroke="black" points="0,-128.75 0,-152.5 180,-152.5 180,-128.75 0,-128.75"/>
<text text-anchor="start" x="81.75" y="-135.2" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-105 0,-128.75 92.75,-128.75 92.75,-105 0,-105"/>
<text text-anchor="start" x="4" y="-111.45" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="92.75,-105 92.75,-128.75 142,-128.75 142,-105 92.75,-105"/>
<text text-anchor="start" x="96.75" y="-111.45" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="142,-105 142,-128.75 180,-128.75 180,-105 142,-105"/>
<text text-anchor="start" x="146" y="-111.45" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-82 0,-105 101.5,-105 101.5,-82 0,-82"/>
<text text-anchor="start" x="35.38" y="-87.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="101.5,-82 101.5,-105 180,-105 180,-82 101.5,-82"/>
<text text-anchor="start" x="137" y="-87.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-59 0,-82 101.5,-82 101.5,-59 0,-59"/>
<text text-anchor="start" x="36.5" y="-64.7" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="101.5,-59 101.5,-82 180,-82 180,-59 101.5,-59"/>
<text text-anchor="start" x="137" y="-64.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0,-36 0,-59 101.5,-59 101.5,-36 0,-36"/>
<text text-anchor="start" x="37.62" y="-41.7" font-family="arial" font-size="14.00">SCL</text>
<polygon fill="none" stroke="black" points="101.5,-36 101.5,-59 180,-59 180,-36 101.5,-36"/>
<text text-anchor="start" x="137" y="-41.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-13 0,-36 101.5,-36 101.5,-13 0,-13"/>
<text text-anchor="start" x="36.88" y="-18.7" font-family="arial" font-size="14.00">SDA</text>
<polygon fill="none" stroke="black" points="101.5,-13 101.5,-36 180,-36 180,-13 101.5,-13"/>
<text text-anchor="start" x="137" y="-18.7" font-family="arial" font-size="14.00">4</text>
</g>
<!-- W1 -->
<g id="node4" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="518,-184 326,-184 326,0 518,0 518,-184"/>
<polygon fill="none" stroke="black" points="326,-161 326,-184 518,-184 518,-161 326,-161"/>
<text text-anchor="start" x="411" y="-168.8" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="326,-138 326,-161 364,-161 364,-138 326,-138"/>
<text text-anchor="start" x="334" y="-145.8" font-family="arial" font-size="14.00">I2C</text>
<polygon fill="none" stroke="black" points="364,-138 364,-161 394,-161 394,-138 364,-138"/>
<text text-anchor="start" x="371.5" y="-145.8" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="394,-138 394,-161 468,-161 468,-138 394,-138"/>
<text text-anchor="start" x="401.5" y="-145.8" font-family="arial" font-size="14.00">0.25 mm²</text>
<polygon fill="none" stroke="black" points="468,-138 468,-161 518,-161 518,-138 468,-138"/>
<text text-anchor="start" x="475.5" y="-145.8" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="357.5" y="-124.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="328" y="-105.8" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="396" y="-105.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PK &#160;&#160;&#160;</text>
<text text-anchor="start" x="453" y="-105.8" font-family="arial" font-size="14.00">X2:1:GND</text>
<polygon fill="#000000" stroke="none" points="326,-98 326,-100 518,-100 518,-98 326,-98"/>
<polygon fill="#ff66cc" stroke="none" points="326,-96 326,-98 518,-98 518,-96 326,-96"/>
<polygon fill="#000000" stroke="none" points="326,-94 326,-96 518,-96 518,-94 326,-94"/>
<text text-anchor="start" x="329" y="-80.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="395" y="-80.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;TQ &#160;&#160;&#160;</text>
<text text-anchor="start" x="454" y="-80.8" font-family="arial" font-size="14.00">X2:2:VCC</text>
<polygon fill="#000000" stroke="none" points="326,-73 326,-75 518,-75 518,-73 326,-73"/>
<polygon fill="#00ffff" stroke="none" points="326,-71 326,-73 518,-73 518,-71 326,-71"/>
<polygon fill="#000000" stroke="none" points="326,-69 326,-71 518,-71 518,-69 326,-69"/>
<text text-anchor="start" x="330.5" y="-55.8" font-family="arial" font-size="14.00">X1:3:SCL</text>
<text text-anchor="start" x="396" y="-55.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="455.5" y="-55.8" font-family="arial" font-size="14.00">X2:3:SCL</text>
<polygon fill="#000000" stroke="none" points="326,-48 326,-50 518,-50 518,-48 326,-48"/>
<polygon fill="#ffff00" stroke="none" points="326,-46 326,-48 518,-48 518,-46 326,-46"/>
<polygon fill="#000000" stroke="none" points="326,-44 326,-46 518,-46 518,-44 326,-44"/>
<text text-anchor="start" x="329.5" y="-30.8" font-family="arial" font-size="14.00">X1:4:SDA</text>
<text text-anchor="start" x="396" y="-30.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;VT &#160;&#160;&#160;</text>
<text text-anchor="start" x="454.5" y="-30.8" font-family="arial" font-size="14.00">X2:4:SDA</text>
<polygon fill="#000000" stroke="none" points="326,-23 326,-25 518,-25 518,-23 326,-23"/>
<polygon fill="#8000ff" stroke="none" points="326,-21 326,-23 518,-23 518,-21 326,-21"/>
<polygon fill="#000000" stroke="none" points="326,-19 326,-21 518,-21 518,-19 326,-19"/>
<text text-anchor="start" x="357.5" y="-5.8" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="513,-185.5 324,-185.5 324,0 513,0 513,-185.5"/>
<polygon fill="none" stroke="black" points="324,-161.75 324,-185.5 513,-185.5 513,-161.75 324,-161.75"/>
<text text-anchor="start" x="408" y="-168.2" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="324,-138 324,-161.75 360.19,-161.75 360.19,-138 324,-138"/>
<text text-anchor="start" x="331.59" y="-144.45" font-family="arial" font-size="14.00">I2C</text>
<polygon fill="none" stroke="black" points="360.19,-138 360.19,-161.75 389.62,-161.75 389.62,-138 360.19,-138"/>
<text text-anchor="start" x="367.78" y="-144.45" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="389.62,-138 389.62,-161.75 463.31,-161.75 463.31,-138 389.62,-138"/>
<text text-anchor="start" x="397.22" y="-144.45" font-family="arial" font-size="14.00">0.25 mm²</text>
<polygon fill="none" stroke="black" points="463.31,-138 463.31,-161.75 513,-161.75 513,-138 463.31,-138"/>
<text text-anchor="start" x="470.91" y="-144.45" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="355.12" y="-122.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="325.88" y="-103.7" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="392.62" y="-103.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PK &#160;&#160;&#160;</text>
<text text-anchor="start" x="448.88" y="-103.7" font-family="arial" font-size="14.00">X2:1:GND</text>
<polygon fill="#000000" stroke="none" points="324,-98 324,-100 513,-100 513,-98 324,-98"/>
<polygon fill="#ff66cc" stroke="none" points="324,-96 324,-98 513,-98 513,-96 324,-96"/>
<polygon fill="#000000" stroke="none" points="324,-94 324,-96 513,-96 513,-94 324,-94"/>
<text text-anchor="start" x="327" y="-78.7" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="391.88" y="-78.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;TQ &#160;&#160;&#160;</text>
<text text-anchor="start" x="450" y="-78.7" font-family="arial" font-size="14.00">X2:2:VCC</text>
<polygon fill="#000000" stroke="none" points="324,-73 324,-75 513,-75 513,-73 324,-73"/>
<polygon fill="#00ffff" stroke="none" points="324,-71 324,-73 513,-73 513,-71 324,-71"/>
<polygon fill="#000000" stroke="none" points="324,-69 324,-71 513,-71 513,-69 324,-69"/>
<text text-anchor="start" x="328.12" y="-53.7" font-family="arial" font-size="14.00">X1:3:SCL</text>
<text text-anchor="start" x="392.62" y="-53.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="451.12" y="-53.7" font-family="arial" font-size="14.00">X2:3:SCL</text>
<polygon fill="#000000" stroke="none" points="324,-48 324,-50 513,-50 513,-48 324,-48"/>
<polygon fill="#ffff00" stroke="none" points="324,-46 324,-48 513,-48 513,-46 324,-46"/>
<polygon fill="#000000" stroke="none" points="324,-44 324,-46 513,-46 513,-44 324,-44"/>
<text text-anchor="start" x="327.38" y="-28.7" font-family="arial" font-size="14.00">X1:4:SDA</text>
<text text-anchor="start" x="393" y="-28.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;VT &#160;&#160;&#160;</text>
<text text-anchor="start" x="450.38" y="-28.7" font-family="arial" font-size="14.00">X2:4:SDA</text>
<polygon fill="#000000" stroke="none" points="324,-23 324,-25 513,-25 513,-23 324,-23"/>
<polygon fill="#8000ff" stroke="none" points="324,-21 324,-23 513,-23 513,-21 324,-21"/>
<polygon fill="#000000" stroke="none" points="324,-19 324,-21 513,-21 513,-19 324,-19"/>
<text text-anchor="start" x="355.12" y="-3.7" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge1" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-93C246.25,-93.02 262.24,-95.02 326,-95"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M182,-95C246.01,-95 261.99,-97 326,-97"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-97C245.76,-96.98 261.75,-98.98 326,-99"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-91.75C244.38,-91.78 260.36,-94.78 324,-94.75"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M180,-93.75C244.01,-93.75 259.99,-96.75 324,-96.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-95.75C243.64,-95.72 259.62,-98.72 324,-98.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge3" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-69C246.13,-69 262.12,-70 326,-70"/>
<path fill="none" stroke="#00ffff" stroke-width="2" d="M182,-71C246,-71 262,-72 326,-72"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-73C245.88,-73 261.87,-74 326,-74"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-68.75C244.13,-68.75 260.12,-69.75 324,-69.75"/>
<path fill="none" stroke="#00ffff" stroke-width="2" d="M180,-70.75C244,-70.75 260,-71.75 324,-71.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-72.75C243.88,-72.75 259.87,-73.75 324,-73.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge5" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-46C245.88,-46 261.87,-45 326,-45"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M182,-48C246,-48 262,-47 326,-47"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-50C246.13,-50 262.12,-49 326,-49"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-45.75C243.88,-45.75 259.87,-44.75 324,-44.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M180,-47.75C244,-47.75 260,-46.75 324,-46.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-49.75C244.13,-49.75 260.12,-48.75 324,-48.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge7" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-23C245.64,-23.03 261.62,-20.03 326,-20"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M182,-25C246.01,-25 261.99,-22 326,-22"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-27C246.38,-26.97 262.36,-23.97 326,-24"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-22.75C243.64,-22.78 259.62,-19.78 324,-19.75"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M180,-24.75C244.01,-24.75 259.99,-21.75 324,-21.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-26.75C244.38,-26.72 260.36,-23.72 324,-23.75"/>
</g>
<!-- X2 -->
<g id="node2" class="node">
<title>X2</title>
<polygon fill="#ffffff" stroke="black" points="844,-152 662,-152 662,-14 844,-14 844,-152"/>
<polygon fill="none" stroke="black" points="662,-129 662,-152 844,-152 844,-129 662,-129"/>
<text text-anchor="start" x="744.5" y="-136.8" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="662,-106 662,-129 755,-129 755,-106 662,-106"/>
<text text-anchor="start" x="666" y="-113.8" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="755,-106 755,-129 805,-129 805,-106 755,-106"/>
<text text-anchor="start" x="759" y="-113.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="805,-106 805,-129 844,-129 844,-106 805,-106"/>
<text text-anchor="start" x="809" y="-113.8" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="662,-83 662,-106 715,-106 715,-83 662,-83"/>
<text text-anchor="start" x="684.5" y="-90.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="715,-83 715,-106 791,-106 791,-83 715,-83"/>
<text text-anchor="start" x="737.5" y="-90.8" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="791,-83 791,-106 844,-106 844,-83 791,-83"/>
<text text-anchor="start" x="813.5" y="-90.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="662,-60 662,-83 715,-83 715,-60 662,-60"/>
<text text-anchor="start" x="684.5" y="-67.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="715,-60 715,-83 791,-83 791,-60 715,-60"/>
<text text-anchor="start" x="738.5" y="-67.8" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="791,-60 791,-83 844,-83 844,-60 791,-60"/>
<text text-anchor="start" x="813.5" y="-67.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="662,-37 662,-60 715,-60 715,-37 662,-37"/>
<text text-anchor="start" x="684.5" y="-44.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="715,-37 715,-60 791,-60 791,-37 715,-37"/>
<text text-anchor="start" x="739.5" y="-44.8" font-family="arial" font-size="14.00">SCL</text>
<polygon fill="none" stroke="black" points="791,-37 791,-60 844,-60 844,-37 791,-37"/>
<text text-anchor="start" x="813.5" y="-44.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="662,-14 662,-37 715,-37 715,-14 662,-14"/>
<text text-anchor="start" x="684.5" y="-21.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="715,-14 715,-37 791,-37 791,-14 715,-14"/>
<text text-anchor="start" x="739" y="-21.8" font-family="arial" font-size="14.00">SDA</text>
<polygon fill="none" stroke="black" points="791,-14 791,-37 844,-37 844,-14 791,-14"/>
<text text-anchor="start" x="813.5" y="-21.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="#ffffff" stroke="black" points="837,-152.5 657,-152.5 657,-13 837,-13 837,-152.5"/>
<polygon fill="none" stroke="black" points="657,-128.75 657,-152.5 837,-152.5 837,-128.75 657,-128.75"/>
<text text-anchor="start" x="738.75" y="-135.2" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="657,-105 657,-128.75 749.75,-128.75 749.75,-105 657,-105"/>
<text text-anchor="start" x="661" y="-111.45" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="749.75,-105 749.75,-128.75 799,-128.75 799,-105 749.75,-105"/>
<text text-anchor="start" x="753.75" y="-111.45" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="799,-105 799,-128.75 837,-128.75 837,-105 799,-105"/>
<text text-anchor="start" x="803" y="-111.45" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="657,-82 657,-105 709.33,-105 709.33,-82 657,-82"/>
<text text-anchor="start" x="679.42" y="-87.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="709.33,-82 709.33,-105 784.67,-105 784.67,-82 709.33,-82"/>
<text text-anchor="start" x="731.62" y="-87.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="784.67,-82 784.67,-105 837,-105 837,-82 784.67,-82"/>
<text text-anchor="start" x="807.08" y="-87.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="657,-59 657,-82 709.33,-82 709.33,-59 657,-59"/>
<text text-anchor="start" x="679.42" y="-64.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="709.33,-59 709.33,-82 784.67,-82 784.67,-59 709.33,-59"/>
<text text-anchor="start" x="732.75" y="-64.7" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="784.67,-59 784.67,-82 837,-82 837,-59 784.67,-59"/>
<text text-anchor="start" x="807.08" y="-64.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="657,-36 657,-59 709.33,-59 709.33,-36 657,-36"/>
<text text-anchor="start" x="679.42" y="-41.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="709.33,-36 709.33,-59 784.67,-59 784.67,-36 709.33,-36"/>
<text text-anchor="start" x="733.88" y="-41.7" font-family="arial" font-size="14.00">SCL</text>
<polygon fill="none" stroke="black" points="784.67,-36 784.67,-59 837,-59 837,-36 784.67,-36"/>
<text text-anchor="start" x="807.08" y="-41.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="657,-13 657,-36 709.33,-36 709.33,-13 657,-13"/>
<text text-anchor="start" x="679.42" y="-18.7" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="709.33,-13 709.33,-36 784.67,-36 784.67,-13 709.33,-13"/>
<text text-anchor="start" x="733.12" y="-18.7" font-family="arial" font-size="14.00">SDA</text>
<polygon fill="none" stroke="black" points="784.67,-13 784.67,-36 837,-36 837,-13 784.67,-13"/>
<text text-anchor="start" x="807.08" y="-18.7" font-family="arial" font-size="14.00">4</text>
</g>
<!-- W2 -->
<g id="node5" class="node">
<title>W2</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1180,-184 988,-184 988,0 1180,0 1180,-184"/>
<polygon fill="none" stroke="black" points="988,-161 988,-184 1180,-184 1180,-161 988,-161"/>
<text text-anchor="start" x="1073" y="-168.8" font-family="arial" font-size="14.00">W2</text>
<polygon fill="none" stroke="black" points="988,-138 988,-161 1026,-161 1026,-138 988,-138"/>
<text text-anchor="start" x="996" y="-145.8" font-family="arial" font-size="14.00">I2C</text>
<polygon fill="none" stroke="black" points="1026,-138 1026,-161 1056,-161 1056,-138 1026,-138"/>
<text text-anchor="start" x="1033.5" y="-145.8" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="1056,-138 1056,-161 1130,-161 1130,-138 1056,-138"/>
<text text-anchor="start" x="1063.5" y="-145.8" font-family="arial" font-size="14.00">0.25 mm²</text>
<polygon fill="none" stroke="black" points="1130,-138 1130,-161 1180,-161 1180,-138 1130,-138"/>
<text text-anchor="start" x="1137.5" y="-145.8" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="1019.5" y="-124.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="990" y="-105.8" font-family="arial" font-size="14.00">X2:1:GND</text>
<text text-anchor="start" x="1058" y="-105.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PK &#160;&#160;&#160;</text>
<text text-anchor="start" x="1115" y="-105.8" font-family="arial" font-size="14.00">X3:1:GND</text>
<polygon fill="#000000" stroke="none" points="988,-98 988,-100 1180,-100 1180,-98 988,-98"/>
<polygon fill="#ff66cc" stroke="none" points="988,-96 988,-98 1180,-98 1180,-96 988,-96"/>
<polygon fill="#000000" stroke="none" points="988,-94 988,-96 1180,-96 1180,-94 988,-94"/>
<text text-anchor="start" x="991" y="-80.8" font-family="arial" font-size="14.00">X2:2:VCC</text>
<text text-anchor="start" x="1057" y="-80.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;TQ &#160;&#160;&#160;</text>
<text text-anchor="start" x="1116" y="-80.8" font-family="arial" font-size="14.00">X3:2:VCC</text>
<polygon fill="#000000" stroke="none" points="988,-73 988,-75 1180,-75 1180,-73 988,-73"/>
<polygon fill="#00ffff" stroke="none" points="988,-71 988,-73 1180,-73 1180,-71 988,-71"/>
<polygon fill="#000000" stroke="none" points="988,-69 988,-71 1180,-71 1180,-69 988,-69"/>
<text text-anchor="start" x="992.5" y="-55.8" font-family="arial" font-size="14.00">X2:3:SCL</text>
<text text-anchor="start" x="1058" y="-55.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="1117.5" y="-55.8" font-family="arial" font-size="14.00">X3:3:SCL</text>
<polygon fill="#000000" stroke="none" points="988,-48 988,-50 1180,-50 1180,-48 988,-48"/>
<polygon fill="#ffff00" stroke="none" points="988,-46 988,-48 1180,-48 1180,-46 988,-46"/>
<polygon fill="#000000" stroke="none" points="988,-44 988,-46 1180,-46 1180,-44 988,-44"/>
<text text-anchor="start" x="991.5" y="-30.8" font-family="arial" font-size="14.00">X2:4:SDA</text>
<text text-anchor="start" x="1058" y="-30.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;VT &#160;&#160;&#160;</text>
<text text-anchor="start" x="1116.5" y="-30.8" font-family="arial" font-size="14.00">X3:4:SDA</text>
<polygon fill="#000000" stroke="none" points="988,-23 988,-25 1180,-25 1180,-23 988,-23"/>
<polygon fill="#8000ff" stroke="none" points="988,-21 988,-23 1180,-23 1180,-21 988,-21"/>
<polygon fill="#000000" stroke="none" points="988,-19 988,-21 1180,-21 1180,-19 988,-19"/>
<text text-anchor="start" x="1019.5" y="-5.8" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1170,-185.5 981,-185.5 981,0 1170,0 1170,-185.5"/>
<polygon fill="none" stroke="black" points="981,-161.75 981,-185.5 1170,-185.5 1170,-161.75 981,-161.75"/>
<text text-anchor="start" x="1065" y="-168.2" font-family="arial" font-size="14.00">W2</text>
<polygon fill="none" stroke="black" points="981,-138 981,-161.75 1017.19,-161.75 1017.19,-138 981,-138"/>
<text text-anchor="start" x="988.59" y="-144.45" font-family="arial" font-size="14.00">I2C</text>
<polygon fill="none" stroke="black" points="1017.19,-138 1017.19,-161.75 1046.62,-161.75 1046.62,-138 1017.19,-138"/>
<text text-anchor="start" x="1024.78" y="-144.45" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="1046.62,-138 1046.62,-161.75 1120.31,-161.75 1120.31,-138 1046.62,-138"/>
<text text-anchor="start" x="1054.22" y="-144.45" font-family="arial" font-size="14.00">0.25 mm²</text>
<polygon fill="none" stroke="black" points="1120.31,-138 1120.31,-161.75 1170,-161.75 1170,-138 1120.31,-138"/>
<text text-anchor="start" x="1127.91" y="-144.45" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="1012.12" y="-122.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="982.88" y="-103.7" font-family="arial" font-size="14.00">X2:1:GND</text>
<text text-anchor="start" x="1049.62" y="-103.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PK &#160;&#160;&#160;</text>
<text text-anchor="start" x="1105.88" y="-103.7" font-family="arial" font-size="14.00">X3:1:GND</text>
<polygon fill="#000000" stroke="none" points="981,-98 981,-100 1170,-100 1170,-98 981,-98"/>
<polygon fill="#ff66cc" stroke="none" points="981,-96 981,-98 1170,-98 1170,-96 981,-96"/>
<polygon fill="#000000" stroke="none" points="981,-94 981,-96 1170,-96 1170,-94 981,-94"/>
<text text-anchor="start" x="984" y="-78.7" font-family="arial" font-size="14.00">X2:2:VCC</text>
<text text-anchor="start" x="1048.88" y="-78.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;TQ &#160;&#160;&#160;</text>
<text text-anchor="start" x="1107" y="-78.7" font-family="arial" font-size="14.00">X3:2:VCC</text>
<polygon fill="#000000" stroke="none" points="981,-73 981,-75 1170,-75 1170,-73 981,-73"/>
<polygon fill="#00ffff" stroke="none" points="981,-71 981,-73 1170,-73 1170,-71 981,-71"/>
<polygon fill="#000000" stroke="none" points="981,-69 981,-71 1170,-71 1170,-69 981,-69"/>
<text text-anchor="start" x="985.12" y="-53.7" font-family="arial" font-size="14.00">X2:3:SCL</text>
<text text-anchor="start" x="1049.62" y="-53.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="1108.12" y="-53.7" font-family="arial" font-size="14.00">X3:3:SCL</text>
<polygon fill="#000000" stroke="none" points="981,-48 981,-50 1170,-50 1170,-48 981,-48"/>
<polygon fill="#ffff00" stroke="none" points="981,-46 981,-48 1170,-48 1170,-46 981,-46"/>
<polygon fill="#000000" stroke="none" points="981,-44 981,-46 1170,-46 1170,-44 981,-44"/>
<text text-anchor="start" x="984.38" y="-28.7" font-family="arial" font-size="14.00">X2:4:SDA</text>
<text text-anchor="start" x="1050" y="-28.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;VT &#160;&#160;&#160;</text>
<text text-anchor="start" x="1107.38" y="-28.7" font-family="arial" font-size="14.00">X3:4:SDA</text>
<polygon fill="#000000" stroke="none" points="981,-23 981,-25 1170,-25 1170,-23 981,-23"/>
<polygon fill="#8000ff" stroke="none" points="981,-21 981,-23 1170,-23 1170,-21 981,-21"/>
<polygon fill="#000000" stroke="none" points="981,-19 981,-21 1170,-21 1170,-19 981,-19"/>
<text text-anchor="start" x="1012.12" y="-3.7" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X2&#45;&#45;W2 -->
<g id="edge9" class="edge">
<title>X2:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M844,-93C908.25,-93.02 924.24,-95.02 988,-95"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M844,-95C908.01,-95 923.99,-97 988,-97"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M844,-97C907.76,-96.98 923.75,-98.98 988,-99"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M837,-91.75C901.38,-91.78 917.36,-94.78 981,-94.75"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M837,-93.75C901.01,-93.75 916.99,-96.75 981,-96.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M837,-95.75C900.64,-95.72 916.62,-98.72 981,-98.75"/>
</g>
<!-- X2&#45;&#45;W2 -->
<g id="edge11" class="edge">
<title>X2:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M844,-69C908.13,-69 924.12,-70 988,-70"/>
<path fill="none" stroke="#00ffff" stroke-width="2" d="M844,-71C908,-71 924,-72 988,-72"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M844,-73C907.88,-73 923.87,-74 988,-74"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M837,-68.75C901.13,-68.75 917.12,-69.75 981,-69.75"/>
<path fill="none" stroke="#00ffff" stroke-width="2" d="M837,-70.75C901,-70.75 917,-71.75 981,-71.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M837,-72.75C900.88,-72.75 916.87,-73.75 981,-73.75"/>
</g>
<!-- X2&#45;&#45;W2 -->
<g id="edge13" class="edge">
<title>X2:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M844,-46C907.88,-46 923.87,-45 988,-45"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M844,-48C908,-48 924,-47 988,-47"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M844,-50C908.13,-50 924.12,-49 988,-49"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M837,-45.75C900.88,-45.75 916.87,-44.75 981,-44.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M837,-47.75C901,-47.75 917,-46.75 981,-46.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M837,-49.75C901.13,-49.75 917.12,-48.75 981,-48.75"/>
</g>
<!-- X2&#45;&#45;W2 -->
<g id="edge15" class="edge">
<title>X2:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M844,-23C907.64,-23.03 923.62,-20.03 988,-20"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M844,-25C908.01,-25 923.99,-22 988,-22"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M844,-27C908.38,-26.97 924.36,-23.97 988,-24"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M837,-22.75C900.64,-22.78 916.62,-19.78 981,-19.75"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M837,-24.75C901.01,-24.75 916.99,-21.75 981,-21.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M837,-26.75C901.38,-26.72 917.36,-23.72 981,-23.75"/>
</g>
<!-- X3 -->
<g id="node3" class="node">
<title>X3</title>
<polygon fill="#ffffff" stroke="black" points="1506,-152 1324,-152 1324,-14 1506,-14 1506,-152"/>
<polygon fill="none" stroke="black" points="1324,-129 1324,-152 1506,-152 1506,-129 1324,-129"/>
<text text-anchor="start" x="1406.5" y="-136.8" font-family="arial" font-size="14.00">X3</text>
<polygon fill="none" stroke="black" points="1324,-106 1324,-129 1417,-129 1417,-106 1324,-106"/>
<text text-anchor="start" x="1328" y="-113.8" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="1417,-106 1417,-129 1467,-129 1467,-106 1417,-106"/>
<text text-anchor="start" x="1421" y="-113.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="1467,-106 1467,-129 1506,-129 1506,-106 1467,-106"/>
<text text-anchor="start" x="1471" y="-113.8" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="1324,-83 1324,-106 1404,-106 1404,-83 1324,-83"/>
<text text-anchor="start" x="1360" y="-90.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="1404,-83 1404,-106 1506,-106 1506,-83 1404,-83"/>
<text text-anchor="start" x="1439.5" y="-90.8" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="1324,-60 1324,-83 1404,-83 1404,-60 1324,-60"/>
<text text-anchor="start" x="1360" y="-67.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="1404,-60 1404,-83 1506,-83 1506,-60 1404,-60"/>
<text text-anchor="start" x="1440.5" y="-67.8" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="1324,-37 1324,-60 1404,-60 1404,-37 1324,-37"/>
<text text-anchor="start" x="1360" y="-44.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="1404,-37 1404,-60 1506,-60 1506,-37 1404,-37"/>
<text text-anchor="start" x="1441.5" y="-44.8" font-family="arial" font-size="14.00">SCL</text>
<polygon fill="none" stroke="black" points="1324,-14 1324,-37 1404,-37 1404,-14 1324,-14"/>
<text text-anchor="start" x="1360" y="-21.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="1404,-14 1404,-37 1506,-37 1506,-14 1404,-14"/>
<text text-anchor="start" x="1441" y="-21.8" font-family="arial" font-size="14.00">SDA</text>
<polygon fill="#ffffff" stroke="black" points="1494,-152.5 1314,-152.5 1314,-13 1494,-13 1494,-152.5"/>
<polygon fill="none" stroke="black" points="1314,-128.75 1314,-152.5 1494,-152.5 1494,-128.75 1314,-128.75"/>
<text text-anchor="start" x="1395.75" y="-135.2" font-family="arial" font-size="14.00">X3</text>
<polygon fill="none" stroke="black" points="1314,-105 1314,-128.75 1406.75,-128.75 1406.75,-105 1314,-105"/>
<text text-anchor="start" x="1318" y="-111.45" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="1406.75,-105 1406.75,-128.75 1456,-128.75 1456,-105 1406.75,-105"/>
<text text-anchor="start" x="1410.75" y="-111.45" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="1456,-105 1456,-128.75 1494,-128.75 1494,-105 1456,-105"/>
<text text-anchor="start" x="1460" y="-111.45" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="1314,-82 1314,-105 1392.5,-105 1392.5,-82 1314,-82"/>
<text text-anchor="start" x="1349.5" y="-87.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="1392.5,-82 1392.5,-105 1494,-105 1494,-82 1392.5,-82"/>
<text text-anchor="start" x="1427.88" y="-87.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="1314,-59 1314,-82 1392.5,-82 1392.5,-59 1314,-59"/>
<text text-anchor="start" x="1349.5" y="-64.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="1392.5,-59 1392.5,-82 1494,-82 1494,-59 1392.5,-59"/>
<text text-anchor="start" x="1429" y="-64.7" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="1314,-36 1314,-59 1392.5,-59 1392.5,-36 1314,-36"/>
<text text-anchor="start" x="1349.5" y="-41.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="1392.5,-36 1392.5,-59 1494,-59 1494,-36 1392.5,-36"/>
<text text-anchor="start" x="1430.12" y="-41.7" font-family="arial" font-size="14.00">SCL</text>
<polygon fill="none" stroke="black" points="1314,-13 1314,-36 1392.5,-36 1392.5,-13 1314,-13"/>
<text text-anchor="start" x="1349.5" y="-18.7" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="1392.5,-13 1392.5,-36 1494,-36 1494,-13 1392.5,-13"/>
<text text-anchor="start" x="1429.38" y="-18.7" font-family="arial" font-size="14.00">SDA</text>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M518,-95C581.76,-95.02 597.75,-93.02 662,-93"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M518,-97C582.01,-97 597.99,-95 662,-95"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M518,-99C582.25,-98.98 598.24,-96.98 662,-97"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-94.75C576.64,-94.78 592.62,-91.78 657,-91.75"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M513,-96.75C577.01,-96.75 592.99,-93.75 657,-93.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-98.75C577.38,-98.72 593.36,-95.72 657,-95.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M518,-70C581.88,-70 597.87,-69 662,-69"/>
<path fill="none" stroke="#00ffff" stroke-width="2" d="M518,-72C582,-72 598,-71 662,-71"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M518,-74C582.13,-74 598.12,-73 662,-73"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-69.75C576.88,-69.75 592.87,-68.75 657,-68.75"/>
<path fill="none" stroke="#00ffff" stroke-width="2" d="M513,-71.75C577,-71.75 593,-70.75 657,-70.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-73.75C577.13,-73.75 593.12,-72.75 657,-72.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge6" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M518,-45C582.13,-45 598.12,-46 662,-46"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M518,-47C582,-47 598,-48 662,-48"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M518,-49C581.88,-49 597.87,-50 662,-50"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-44.75C577.13,-44.75 593.12,-45.75 657,-45.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M513,-46.75C577,-46.75 593,-47.75 657,-47.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-48.75C576.88,-48.75 592.87,-49.75 657,-49.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge8" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M518,-20C582.38,-20.03 598.36,-23.03 662,-23"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M518,-22C582.01,-22 597.99,-25 662,-25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M518,-24C581.64,-23.97 597.62,-26.97 662,-27"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-19.75C577.38,-19.78 593.36,-22.78 657,-22.75"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M513,-21.75C577.01,-21.75 592.99,-24.75 657,-24.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-23.75C576.64,-23.72 592.62,-26.72 657,-26.75"/>
</g>
<!-- W2&#45;&#45;X3 -->
<g id="edge10" class="edge">
<title>W2:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1180,-95C1243.76,-95.02 1259.75,-93.02 1324,-93"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1180,-97C1244.01,-97 1259.99,-95 1324,-95"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1180,-99C1244.25,-98.98 1260.24,-96.98 1324,-97"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1170,-94.75C1233.64,-94.78 1249.62,-91.78 1314,-91.75"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1170,-96.75C1234.01,-96.75 1249.99,-93.75 1314,-93.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1170,-98.75C1234.38,-98.72 1250.36,-95.72 1314,-95.75"/>
</g>
<!-- W2&#45;&#45;X3 -->
<g id="edge12" class="edge">
<title>W2:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1180,-70C1243.88,-70 1259.87,-69 1324,-69"/>
<path fill="none" stroke="#00ffff" stroke-width="2" d="M1180,-72C1244,-72 1260,-71 1324,-71"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1180,-74C1244.13,-74 1260.12,-73 1324,-73"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1170,-69.75C1233.88,-69.75 1249.87,-68.75 1314,-68.75"/>
<path fill="none" stroke="#00ffff" stroke-width="2" d="M1170,-71.75C1234,-71.75 1250,-70.75 1314,-70.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1170,-73.75C1234.13,-73.75 1250.12,-72.75 1314,-72.75"/>
</g>
<!-- W2&#45;&#45;X3 -->
<g id="edge14" class="edge">
<title>W2:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1180,-45C1244.13,-45 1260.12,-46 1324,-46"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M1180,-47C1244,-47 1260,-48 1324,-48"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1180,-49C1243.88,-49 1259.87,-50 1324,-50"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1170,-44.75C1234.13,-44.75 1250.12,-45.75 1314,-45.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M1170,-46.75C1234,-46.75 1250,-47.75 1314,-47.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1170,-48.75C1233.88,-48.75 1249.87,-49.75 1314,-49.75"/>
</g>
<!-- W2&#45;&#45;X3 -->
<g id="edge16" class="edge">
<title>W2:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1180,-20C1244.38,-20.03 1260.36,-23.03 1324,-23"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M1180,-22C1244.01,-22 1259.99,-25 1324,-25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1180,-24C1243.64,-23.97 1259.62,-26.97 1324,-27"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1170,-19.75C1234.38,-19.78 1250.36,-22.78 1314,-22.75"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M1170,-21.75C1234.01,-21.75 1249.99,-24.75 1314,-24.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1170,-23.75C1233.64,-23.72 1249.62,-26.72 1314,-26.75"/>
</g>
</g>
</svg>

BIN
examples/ex05.png generated

Binary file not shown.

Before

Width:  |  Height:  |  Size: 50 KiB

After

Width:  |  Height:  |  Size: 44 KiB

420
examples/ex05.svg generated
View File

@ -1,301 +1,301 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="1514pt" height="192pt"
viewBox="0.00 0.00 1514.00 192.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 188)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-188 1510,-188 1510,4 -4,4"/>
<svg width="1502pt" height="194pt"
viewBox="0.00 0.00 1502.00 193.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 189.5)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-189.5 1498,-189.5 1498,4 -4,4"/>
<!-- X1 -->
<g id="node1" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="182,-152 0,-152 0,-14 182,-14 182,-152"/>
<polygon fill="none" stroke="black" points="0,-129 0,-152 182,-152 182,-129 0,-129"/>
<text text-anchor="start" x="82.5" y="-136.8" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-106 0,-129 93,-129 93,-106 0,-106"/>
<text text-anchor="start" x="4" y="-113.8" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="93,-106 93,-129 143,-129 143,-106 93,-106"/>
<text text-anchor="start" x="97" y="-113.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="143,-106 143,-129 182,-129 182,-106 143,-106"/>
<text text-anchor="start" x="147" y="-113.8" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-83 0,-106 103,-106 103,-83 0,-83"/>
<text text-anchor="start" x="36" y="-90.8" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="103,-83 103,-106 182,-106 182,-83 103,-83"/>
<text text-anchor="start" x="138.5" y="-90.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-60 0,-83 103,-83 103,-60 0,-60"/>
<text text-anchor="start" x="37" y="-67.8" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="103,-60 103,-83 182,-83 182,-60 103,-60"/>
<text text-anchor="start" x="138.5" y="-67.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0,-37 0,-60 103,-60 103,-37 0,-37"/>
<text text-anchor="start" x="38" y="-44.8" font-family="arial" font-size="14.00">SCL</text>
<polygon fill="none" stroke="black" points="103,-37 103,-60 182,-60 182,-37 103,-37"/>
<text text-anchor="start" x="138.5" y="-44.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-14 0,-37 103,-37 103,-14 0,-14"/>
<text text-anchor="start" x="37.5" y="-21.8" font-family="arial" font-size="14.00">SDA</text>
<polygon fill="none" stroke="black" points="103,-14 103,-37 182,-37 182,-14 103,-14"/>
<text text-anchor="start" x="138.5" y="-21.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="#ffffff" stroke="black" points="180,-152.5 0,-152.5 0,-13 180,-13 180,-152.5"/>
<polygon fill="none" stroke="black" points="0,-128.75 0,-152.5 180,-152.5 180,-128.75 0,-128.75"/>
<text text-anchor="start" x="81.75" y="-135.2" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-105 0,-128.75 92.75,-128.75 92.75,-105 0,-105"/>
<text text-anchor="start" x="4" y="-111.45" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="92.75,-105 92.75,-128.75 142,-128.75 142,-105 92.75,-105"/>
<text text-anchor="start" x="96.75" y="-111.45" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="142,-105 142,-128.75 180,-128.75 180,-105 142,-105"/>
<text text-anchor="start" x="146" y="-111.45" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-82 0,-105 101.5,-105 101.5,-82 0,-82"/>
<text text-anchor="start" x="35.38" y="-87.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="101.5,-82 101.5,-105 180,-105 180,-82 101.5,-82"/>
<text text-anchor="start" x="137" y="-87.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-59 0,-82 101.5,-82 101.5,-59 0,-59"/>
<text text-anchor="start" x="36.5" y="-64.7" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="101.5,-59 101.5,-82 180,-82 180,-59 101.5,-59"/>
<text text-anchor="start" x="137" y="-64.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0,-36 0,-59 101.5,-59 101.5,-36 0,-36"/>
<text text-anchor="start" x="37.62" y="-41.7" font-family="arial" font-size="14.00">SCL</text>
<polygon fill="none" stroke="black" points="101.5,-36 101.5,-59 180,-59 180,-36 101.5,-36"/>
<text text-anchor="start" x="137" y="-41.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-13 0,-36 101.5,-36 101.5,-13 0,-13"/>
<text text-anchor="start" x="36.88" y="-18.7" font-family="arial" font-size="14.00">SDA</text>
<polygon fill="none" stroke="black" points="101.5,-13 101.5,-36 180,-36 180,-13 101.5,-13"/>
<text text-anchor="start" x="137" y="-18.7" font-family="arial" font-size="14.00">4</text>
</g>
<!-- W1 -->
<g id="node4" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="518,-184 326,-184 326,0 518,0 518,-184"/>
<polygon fill="none" stroke="black" points="326,-161 326,-184 518,-184 518,-161 326,-161"/>
<text text-anchor="start" x="411" y="-168.8" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="326,-138 326,-161 364,-161 364,-138 326,-138"/>
<text text-anchor="start" x="334" y="-145.8" font-family="arial" font-size="14.00">I2C</text>
<polygon fill="none" stroke="black" points="364,-138 364,-161 394,-161 394,-138 364,-138"/>
<text text-anchor="start" x="371.5" y="-145.8" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="394,-138 394,-161 468,-161 468,-138 394,-138"/>
<text text-anchor="start" x="401.5" y="-145.8" font-family="arial" font-size="14.00">0.25 mm²</text>
<polygon fill="none" stroke="black" points="468,-138 468,-161 518,-161 518,-138 468,-138"/>
<text text-anchor="start" x="475.5" y="-145.8" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="357.5" y="-124.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="328" y="-105.8" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="396" y="-105.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PK &#160;&#160;&#160;</text>
<text text-anchor="start" x="453" y="-105.8" font-family="arial" font-size="14.00">X2:1:GND</text>
<polygon fill="#000000" stroke="none" points="326,-98 326,-100 518,-100 518,-98 326,-98"/>
<polygon fill="#ff66cc" stroke="none" points="326,-96 326,-98 518,-98 518,-96 326,-96"/>
<polygon fill="#000000" stroke="none" points="326,-94 326,-96 518,-96 518,-94 326,-94"/>
<text text-anchor="start" x="329" y="-80.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="395" y="-80.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;TQ &#160;&#160;&#160;</text>
<text text-anchor="start" x="454" y="-80.8" font-family="arial" font-size="14.00">X2:2:VCC</text>
<polygon fill="#000000" stroke="none" points="326,-73 326,-75 518,-75 518,-73 326,-73"/>
<polygon fill="#00ffff" stroke="none" points="326,-71 326,-73 518,-73 518,-71 326,-71"/>
<polygon fill="#000000" stroke="none" points="326,-69 326,-71 518,-71 518,-69 326,-69"/>
<text text-anchor="start" x="330.5" y="-55.8" font-family="arial" font-size="14.00">X1:3:SCL</text>
<text text-anchor="start" x="396" y="-55.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="455.5" y="-55.8" font-family="arial" font-size="14.00">X2:3:SCL</text>
<polygon fill="#000000" stroke="none" points="326,-48 326,-50 518,-50 518,-48 326,-48"/>
<polygon fill="#ffff00" stroke="none" points="326,-46 326,-48 518,-48 518,-46 326,-46"/>
<polygon fill="#000000" stroke="none" points="326,-44 326,-46 518,-46 518,-44 326,-44"/>
<text text-anchor="start" x="329.5" y="-30.8" font-family="arial" font-size="14.00">X1:4:SDA</text>
<text text-anchor="start" x="396" y="-30.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;VT &#160;&#160;&#160;</text>
<text text-anchor="start" x="454.5" y="-30.8" font-family="arial" font-size="14.00">X2:4:SDA</text>
<polygon fill="#000000" stroke="none" points="326,-23 326,-25 518,-25 518,-23 326,-23"/>
<polygon fill="#8000ff" stroke="none" points="326,-21 326,-23 518,-23 518,-21 326,-21"/>
<polygon fill="#000000" stroke="none" points="326,-19 326,-21 518,-21 518,-19 326,-19"/>
<text text-anchor="start" x="357.5" y="-5.8" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="513,-185.5 324,-185.5 324,0 513,0 513,-185.5"/>
<polygon fill="none" stroke="black" points="324,-161.75 324,-185.5 513,-185.5 513,-161.75 324,-161.75"/>
<text text-anchor="start" x="408" y="-168.2" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="324,-138 324,-161.75 360.19,-161.75 360.19,-138 324,-138"/>
<text text-anchor="start" x="331.59" y="-144.45" font-family="arial" font-size="14.00">I2C</text>
<polygon fill="none" stroke="black" points="360.19,-138 360.19,-161.75 389.62,-161.75 389.62,-138 360.19,-138"/>
<text text-anchor="start" x="367.78" y="-144.45" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="389.62,-138 389.62,-161.75 463.31,-161.75 463.31,-138 389.62,-138"/>
<text text-anchor="start" x="397.22" y="-144.45" font-family="arial" font-size="14.00">0.25 mm²</text>
<polygon fill="none" stroke="black" points="463.31,-138 463.31,-161.75 513,-161.75 513,-138 463.31,-138"/>
<text text-anchor="start" x="470.91" y="-144.45" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="355.12" y="-122.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="325.88" y="-103.7" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="392.62" y="-103.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PK &#160;&#160;&#160;</text>
<text text-anchor="start" x="448.88" y="-103.7" font-family="arial" font-size="14.00">X2:1:GND</text>
<polygon fill="#000000" stroke="none" points="324,-98 324,-100 513,-100 513,-98 324,-98"/>
<polygon fill="#ff66cc" stroke="none" points="324,-96 324,-98 513,-98 513,-96 324,-96"/>
<polygon fill="#000000" stroke="none" points="324,-94 324,-96 513,-96 513,-94 324,-94"/>
<text text-anchor="start" x="327" y="-78.7" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="391.88" y="-78.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;TQ &#160;&#160;&#160;</text>
<text text-anchor="start" x="450" y="-78.7" font-family="arial" font-size="14.00">X2:2:VCC</text>
<polygon fill="#000000" stroke="none" points="324,-73 324,-75 513,-75 513,-73 324,-73"/>
<polygon fill="#00ffff" stroke="none" points="324,-71 324,-73 513,-73 513,-71 324,-71"/>
<polygon fill="#000000" stroke="none" points="324,-69 324,-71 513,-71 513,-69 324,-69"/>
<text text-anchor="start" x="328.12" y="-53.7" font-family="arial" font-size="14.00">X1:3:SCL</text>
<text text-anchor="start" x="392.62" y="-53.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="451.12" y="-53.7" font-family="arial" font-size="14.00">X2:3:SCL</text>
<polygon fill="#000000" stroke="none" points="324,-48 324,-50 513,-50 513,-48 324,-48"/>
<polygon fill="#ffff00" stroke="none" points="324,-46 324,-48 513,-48 513,-46 324,-46"/>
<polygon fill="#000000" stroke="none" points="324,-44 324,-46 513,-46 513,-44 324,-44"/>
<text text-anchor="start" x="327.38" y="-28.7" font-family="arial" font-size="14.00">X1:4:SDA</text>
<text text-anchor="start" x="393" y="-28.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;VT &#160;&#160;&#160;</text>
<text text-anchor="start" x="450.38" y="-28.7" font-family="arial" font-size="14.00">X2:4:SDA</text>
<polygon fill="#000000" stroke="none" points="324,-23 324,-25 513,-25 513,-23 324,-23"/>
<polygon fill="#8000ff" stroke="none" points="324,-21 324,-23 513,-23 513,-21 324,-21"/>
<polygon fill="#000000" stroke="none" points="324,-19 324,-21 513,-21 513,-19 324,-19"/>
<text text-anchor="start" x="355.12" y="-3.7" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge1" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-93C246.25,-93.02 262.24,-95.02 326,-95"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M182,-95C246.01,-95 261.99,-97 326,-97"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-97C245.76,-96.98 261.75,-98.98 326,-99"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-91.75C244.38,-91.78 260.36,-94.78 324,-94.75"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M180,-93.75C244.01,-93.75 259.99,-96.75 324,-96.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-95.75C243.64,-95.72 259.62,-98.72 324,-98.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge3" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-69C246.13,-69 262.12,-70 326,-70"/>
<path fill="none" stroke="#00ffff" stroke-width="2" d="M182,-71C246,-71 262,-72 326,-72"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-73C245.88,-73 261.87,-74 326,-74"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-68.75C244.13,-68.75 260.12,-69.75 324,-69.75"/>
<path fill="none" stroke="#00ffff" stroke-width="2" d="M180,-70.75C244,-70.75 260,-71.75 324,-71.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-72.75C243.88,-72.75 259.87,-73.75 324,-73.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge5" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-46C245.88,-46 261.87,-45 326,-45"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M182,-48C246,-48 262,-47 326,-47"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-50C246.13,-50 262.12,-49 326,-49"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-45.75C243.88,-45.75 259.87,-44.75 324,-44.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M180,-47.75C244,-47.75 260,-46.75 324,-46.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-49.75C244.13,-49.75 260.12,-48.75 324,-48.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge7" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-23C245.64,-23.03 261.62,-20.03 326,-20"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M182,-25C246.01,-25 261.99,-22 326,-22"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-27C246.38,-26.97 262.36,-23.97 326,-24"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-22.75C243.64,-22.78 259.62,-19.78 324,-19.75"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M180,-24.75C244.01,-24.75 259.99,-21.75 324,-21.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-26.75C244.38,-26.72 260.36,-23.72 324,-23.75"/>
</g>
<!-- X2 -->
<g id="node2" class="node">
<title>X2</title>
<polygon fill="#ffffff" stroke="black" points="844,-152 662,-152 662,-14 844,-14 844,-152"/>
<polygon fill="none" stroke="black" points="662,-129 662,-152 844,-152 844,-129 662,-129"/>
<text text-anchor="start" x="744.5" y="-136.8" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="662,-106 662,-129 755,-129 755,-106 662,-106"/>
<text text-anchor="start" x="666" y="-113.8" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="755,-106 755,-129 805,-129 805,-106 755,-106"/>
<text text-anchor="start" x="759" y="-113.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="805,-106 805,-129 844,-129 844,-106 805,-106"/>
<text text-anchor="start" x="809" y="-113.8" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="662,-83 662,-106 715,-106 715,-83 662,-83"/>
<text text-anchor="start" x="684.5" y="-90.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="715,-83 715,-106 791,-106 791,-83 715,-83"/>
<text text-anchor="start" x="737.5" y="-90.8" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="791,-83 791,-106 844,-106 844,-83 791,-83"/>
<text text-anchor="start" x="813.5" y="-90.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="662,-60 662,-83 715,-83 715,-60 662,-60"/>
<text text-anchor="start" x="684.5" y="-67.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="715,-60 715,-83 791,-83 791,-60 715,-60"/>
<text text-anchor="start" x="738.5" y="-67.8" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="791,-60 791,-83 844,-83 844,-60 791,-60"/>
<text text-anchor="start" x="813.5" y="-67.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="662,-37 662,-60 715,-60 715,-37 662,-37"/>
<text text-anchor="start" x="684.5" y="-44.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="715,-37 715,-60 791,-60 791,-37 715,-37"/>
<text text-anchor="start" x="739.5" y="-44.8" font-family="arial" font-size="14.00">SCL</text>
<polygon fill="none" stroke="black" points="791,-37 791,-60 844,-60 844,-37 791,-37"/>
<text text-anchor="start" x="813.5" y="-44.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="662,-14 662,-37 715,-37 715,-14 662,-14"/>
<text text-anchor="start" x="684.5" y="-21.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="715,-14 715,-37 791,-37 791,-14 715,-14"/>
<text text-anchor="start" x="739" y="-21.8" font-family="arial" font-size="14.00">SDA</text>
<polygon fill="none" stroke="black" points="791,-14 791,-37 844,-37 844,-14 791,-14"/>
<text text-anchor="start" x="813.5" y="-21.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="#ffffff" stroke="black" points="837,-152.5 657,-152.5 657,-13 837,-13 837,-152.5"/>
<polygon fill="none" stroke="black" points="657,-128.75 657,-152.5 837,-152.5 837,-128.75 657,-128.75"/>
<text text-anchor="start" x="738.75" y="-135.2" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="657,-105 657,-128.75 749.75,-128.75 749.75,-105 657,-105"/>
<text text-anchor="start" x="661" y="-111.45" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="749.75,-105 749.75,-128.75 799,-128.75 799,-105 749.75,-105"/>
<text text-anchor="start" x="753.75" y="-111.45" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="799,-105 799,-128.75 837,-128.75 837,-105 799,-105"/>
<text text-anchor="start" x="803" y="-111.45" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="657,-82 657,-105 709.33,-105 709.33,-82 657,-82"/>
<text text-anchor="start" x="679.42" y="-87.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="709.33,-82 709.33,-105 784.67,-105 784.67,-82 709.33,-82"/>
<text text-anchor="start" x="731.62" y="-87.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="784.67,-82 784.67,-105 837,-105 837,-82 784.67,-82"/>
<text text-anchor="start" x="807.08" y="-87.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="657,-59 657,-82 709.33,-82 709.33,-59 657,-59"/>
<text text-anchor="start" x="679.42" y="-64.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="709.33,-59 709.33,-82 784.67,-82 784.67,-59 709.33,-59"/>
<text text-anchor="start" x="732.75" y="-64.7" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="784.67,-59 784.67,-82 837,-82 837,-59 784.67,-59"/>
<text text-anchor="start" x="807.08" y="-64.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="657,-36 657,-59 709.33,-59 709.33,-36 657,-36"/>
<text text-anchor="start" x="679.42" y="-41.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="709.33,-36 709.33,-59 784.67,-59 784.67,-36 709.33,-36"/>
<text text-anchor="start" x="733.88" y="-41.7" font-family="arial" font-size="14.00">SCL</text>
<polygon fill="none" stroke="black" points="784.67,-36 784.67,-59 837,-59 837,-36 784.67,-36"/>
<text text-anchor="start" x="807.08" y="-41.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="657,-13 657,-36 709.33,-36 709.33,-13 657,-13"/>
<text text-anchor="start" x="679.42" y="-18.7" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="709.33,-13 709.33,-36 784.67,-36 784.67,-13 709.33,-13"/>
<text text-anchor="start" x="733.12" y="-18.7" font-family="arial" font-size="14.00">SDA</text>
<polygon fill="none" stroke="black" points="784.67,-13 784.67,-36 837,-36 837,-13 784.67,-13"/>
<text text-anchor="start" x="807.08" y="-18.7" font-family="arial" font-size="14.00">4</text>
</g>
<!-- W2 -->
<g id="node5" class="node">
<title>W2</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1180,-184 988,-184 988,0 1180,0 1180,-184"/>
<polygon fill="none" stroke="black" points="988,-161 988,-184 1180,-184 1180,-161 988,-161"/>
<text text-anchor="start" x="1073" y="-168.8" font-family="arial" font-size="14.00">W2</text>
<polygon fill="none" stroke="black" points="988,-138 988,-161 1026,-161 1026,-138 988,-138"/>
<text text-anchor="start" x="996" y="-145.8" font-family="arial" font-size="14.00">I2C</text>
<polygon fill="none" stroke="black" points="1026,-138 1026,-161 1056,-161 1056,-138 1026,-138"/>
<text text-anchor="start" x="1033.5" y="-145.8" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="1056,-138 1056,-161 1130,-161 1130,-138 1056,-138"/>
<text text-anchor="start" x="1063.5" y="-145.8" font-family="arial" font-size="14.00">0.25 mm²</text>
<polygon fill="none" stroke="black" points="1130,-138 1130,-161 1180,-161 1180,-138 1130,-138"/>
<text text-anchor="start" x="1137.5" y="-145.8" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="1019.5" y="-124.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="990" y="-105.8" font-family="arial" font-size="14.00">X2:1:GND</text>
<text text-anchor="start" x="1058" y="-105.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PK &#160;&#160;&#160;</text>
<text text-anchor="start" x="1115" y="-105.8" font-family="arial" font-size="14.00">X3:1:GND</text>
<polygon fill="#000000" stroke="none" points="988,-98 988,-100 1180,-100 1180,-98 988,-98"/>
<polygon fill="#ff66cc" stroke="none" points="988,-96 988,-98 1180,-98 1180,-96 988,-96"/>
<polygon fill="#000000" stroke="none" points="988,-94 988,-96 1180,-96 1180,-94 988,-94"/>
<text text-anchor="start" x="991" y="-80.8" font-family="arial" font-size="14.00">X2:2:VCC</text>
<text text-anchor="start" x="1057" y="-80.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;TQ &#160;&#160;&#160;</text>
<text text-anchor="start" x="1116" y="-80.8" font-family="arial" font-size="14.00">X3:2:VCC</text>
<polygon fill="#000000" stroke="none" points="988,-73 988,-75 1180,-75 1180,-73 988,-73"/>
<polygon fill="#00ffff" stroke="none" points="988,-71 988,-73 1180,-73 1180,-71 988,-71"/>
<polygon fill="#000000" stroke="none" points="988,-69 988,-71 1180,-71 1180,-69 988,-69"/>
<text text-anchor="start" x="992.5" y="-55.8" font-family="arial" font-size="14.00">X2:3:SCL</text>
<text text-anchor="start" x="1058" y="-55.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="1117.5" y="-55.8" font-family="arial" font-size="14.00">X3:3:SCL</text>
<polygon fill="#000000" stroke="none" points="988,-48 988,-50 1180,-50 1180,-48 988,-48"/>
<polygon fill="#ffff00" stroke="none" points="988,-46 988,-48 1180,-48 1180,-46 988,-46"/>
<polygon fill="#000000" stroke="none" points="988,-44 988,-46 1180,-46 1180,-44 988,-44"/>
<text text-anchor="start" x="991.5" y="-30.8" font-family="arial" font-size="14.00">X2:4:SDA</text>
<text text-anchor="start" x="1058" y="-30.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;VT &#160;&#160;&#160;</text>
<text text-anchor="start" x="1116.5" y="-30.8" font-family="arial" font-size="14.00">X3:4:SDA</text>
<polygon fill="#000000" stroke="none" points="988,-23 988,-25 1180,-25 1180,-23 988,-23"/>
<polygon fill="#8000ff" stroke="none" points="988,-21 988,-23 1180,-23 1180,-21 988,-21"/>
<polygon fill="#000000" stroke="none" points="988,-19 988,-21 1180,-21 1180,-19 988,-19"/>
<text text-anchor="start" x="1019.5" y="-5.8" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1170,-185.5 981,-185.5 981,0 1170,0 1170,-185.5"/>
<polygon fill="none" stroke="black" points="981,-161.75 981,-185.5 1170,-185.5 1170,-161.75 981,-161.75"/>
<text text-anchor="start" x="1065" y="-168.2" font-family="arial" font-size="14.00">W2</text>
<polygon fill="none" stroke="black" points="981,-138 981,-161.75 1017.19,-161.75 1017.19,-138 981,-138"/>
<text text-anchor="start" x="988.59" y="-144.45" font-family="arial" font-size="14.00">I2C</text>
<polygon fill="none" stroke="black" points="1017.19,-138 1017.19,-161.75 1046.62,-161.75 1046.62,-138 1017.19,-138"/>
<text text-anchor="start" x="1024.78" y="-144.45" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="1046.62,-138 1046.62,-161.75 1120.31,-161.75 1120.31,-138 1046.62,-138"/>
<text text-anchor="start" x="1054.22" y="-144.45" font-family="arial" font-size="14.00">0.25 mm²</text>
<polygon fill="none" stroke="black" points="1120.31,-138 1120.31,-161.75 1170,-161.75 1170,-138 1120.31,-138"/>
<text text-anchor="start" x="1127.91" y="-144.45" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="1012.12" y="-122.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="982.88" y="-103.7" font-family="arial" font-size="14.00">X2:1:GND</text>
<text text-anchor="start" x="1049.62" y="-103.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;PK &#160;&#160;&#160;</text>
<text text-anchor="start" x="1105.88" y="-103.7" font-family="arial" font-size="14.00">X3:1:GND</text>
<polygon fill="#000000" stroke="none" points="981,-98 981,-100 1170,-100 1170,-98 981,-98"/>
<polygon fill="#ff66cc" stroke="none" points="981,-96 981,-98 1170,-98 1170,-96 981,-96"/>
<polygon fill="#000000" stroke="none" points="981,-94 981,-96 1170,-96 1170,-94 981,-94"/>
<text text-anchor="start" x="984" y="-78.7" font-family="arial" font-size="14.00">X2:2:VCC</text>
<text text-anchor="start" x="1048.88" y="-78.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;TQ &#160;&#160;&#160;</text>
<text text-anchor="start" x="1107" y="-78.7" font-family="arial" font-size="14.00">X3:2:VCC</text>
<polygon fill="#000000" stroke="none" points="981,-73 981,-75 1170,-75 1170,-73 981,-73"/>
<polygon fill="#00ffff" stroke="none" points="981,-71 981,-73 1170,-73 1170,-71 981,-71"/>
<polygon fill="#000000" stroke="none" points="981,-69 981,-71 1170,-71 1170,-69 981,-69"/>
<text text-anchor="start" x="985.12" y="-53.7" font-family="arial" font-size="14.00">X2:3:SCL</text>
<text text-anchor="start" x="1049.62" y="-53.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="1108.12" y="-53.7" font-family="arial" font-size="14.00">X3:3:SCL</text>
<polygon fill="#000000" stroke="none" points="981,-48 981,-50 1170,-50 1170,-48 981,-48"/>
<polygon fill="#ffff00" stroke="none" points="981,-46 981,-48 1170,-48 1170,-46 981,-46"/>
<polygon fill="#000000" stroke="none" points="981,-44 981,-46 1170,-46 1170,-44 981,-44"/>
<text text-anchor="start" x="984.38" y="-28.7" font-family="arial" font-size="14.00">X2:4:SDA</text>
<text text-anchor="start" x="1050" y="-28.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;VT &#160;&#160;&#160;</text>
<text text-anchor="start" x="1107.38" y="-28.7" font-family="arial" font-size="14.00">X3:4:SDA</text>
<polygon fill="#000000" stroke="none" points="981,-23 981,-25 1170,-25 1170,-23 981,-23"/>
<polygon fill="#8000ff" stroke="none" points="981,-21 981,-23 1170,-23 1170,-21 981,-21"/>
<polygon fill="#000000" stroke="none" points="981,-19 981,-21 1170,-21 1170,-19 981,-19"/>
<text text-anchor="start" x="1012.12" y="-3.7" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X2&#45;&#45;W2 -->
<g id="edge9" class="edge">
<title>X2:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M844,-93C908.25,-93.02 924.24,-95.02 988,-95"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M844,-95C908.01,-95 923.99,-97 988,-97"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M844,-97C907.76,-96.98 923.75,-98.98 988,-99"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M837,-91.75C901.38,-91.78 917.36,-94.78 981,-94.75"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M837,-93.75C901.01,-93.75 916.99,-96.75 981,-96.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M837,-95.75C900.64,-95.72 916.62,-98.72 981,-98.75"/>
</g>
<!-- X2&#45;&#45;W2 -->
<g id="edge11" class="edge">
<title>X2:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M844,-69C908.13,-69 924.12,-70 988,-70"/>
<path fill="none" stroke="#00ffff" stroke-width="2" d="M844,-71C908,-71 924,-72 988,-72"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M844,-73C907.88,-73 923.87,-74 988,-74"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M837,-68.75C901.13,-68.75 917.12,-69.75 981,-69.75"/>
<path fill="none" stroke="#00ffff" stroke-width="2" d="M837,-70.75C901,-70.75 917,-71.75 981,-71.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M837,-72.75C900.88,-72.75 916.87,-73.75 981,-73.75"/>
</g>
<!-- X2&#45;&#45;W2 -->
<g id="edge13" class="edge">
<title>X2:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M844,-46C907.88,-46 923.87,-45 988,-45"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M844,-48C908,-48 924,-47 988,-47"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M844,-50C908.13,-50 924.12,-49 988,-49"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M837,-45.75C900.88,-45.75 916.87,-44.75 981,-44.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M837,-47.75C901,-47.75 917,-46.75 981,-46.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M837,-49.75C901.13,-49.75 917.12,-48.75 981,-48.75"/>
</g>
<!-- X2&#45;&#45;W2 -->
<g id="edge15" class="edge">
<title>X2:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M844,-23C907.64,-23.03 923.62,-20.03 988,-20"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M844,-25C908.01,-25 923.99,-22 988,-22"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M844,-27C908.38,-26.97 924.36,-23.97 988,-24"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M837,-22.75C900.64,-22.78 916.62,-19.78 981,-19.75"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M837,-24.75C901.01,-24.75 916.99,-21.75 981,-21.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M837,-26.75C901.38,-26.72 917.36,-23.72 981,-23.75"/>
</g>
<!-- X3 -->
<g id="node3" class="node">
<title>X3</title>
<polygon fill="#ffffff" stroke="black" points="1506,-152 1324,-152 1324,-14 1506,-14 1506,-152"/>
<polygon fill="none" stroke="black" points="1324,-129 1324,-152 1506,-152 1506,-129 1324,-129"/>
<text text-anchor="start" x="1406.5" y="-136.8" font-family="arial" font-size="14.00">X3</text>
<polygon fill="none" stroke="black" points="1324,-106 1324,-129 1417,-129 1417,-106 1324,-106"/>
<text text-anchor="start" x="1328" y="-113.8" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="1417,-106 1417,-129 1467,-129 1467,-106 1417,-106"/>
<text text-anchor="start" x="1421" y="-113.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="1467,-106 1467,-129 1506,-129 1506,-106 1467,-106"/>
<text text-anchor="start" x="1471" y="-113.8" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="1324,-83 1324,-106 1404,-106 1404,-83 1324,-83"/>
<text text-anchor="start" x="1360" y="-90.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="1404,-83 1404,-106 1506,-106 1506,-83 1404,-83"/>
<text text-anchor="start" x="1439.5" y="-90.8" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="1324,-60 1324,-83 1404,-83 1404,-60 1324,-60"/>
<text text-anchor="start" x="1360" y="-67.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="1404,-60 1404,-83 1506,-83 1506,-60 1404,-60"/>
<text text-anchor="start" x="1440.5" y="-67.8" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="1324,-37 1324,-60 1404,-60 1404,-37 1324,-37"/>
<text text-anchor="start" x="1360" y="-44.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="1404,-37 1404,-60 1506,-60 1506,-37 1404,-37"/>
<text text-anchor="start" x="1441.5" y="-44.8" font-family="arial" font-size="14.00">SCL</text>
<polygon fill="none" stroke="black" points="1324,-14 1324,-37 1404,-37 1404,-14 1324,-14"/>
<text text-anchor="start" x="1360" y="-21.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="1404,-14 1404,-37 1506,-37 1506,-14 1404,-14"/>
<text text-anchor="start" x="1441" y="-21.8" font-family="arial" font-size="14.00">SDA</text>
<polygon fill="#ffffff" stroke="black" points="1494,-152.5 1314,-152.5 1314,-13 1494,-13 1494,-152.5"/>
<polygon fill="none" stroke="black" points="1314,-128.75 1314,-152.5 1494,-152.5 1494,-128.75 1314,-128.75"/>
<text text-anchor="start" x="1395.75" y="-135.2" font-family="arial" font-size="14.00">X3</text>
<polygon fill="none" stroke="black" points="1314,-105 1314,-128.75 1406.75,-128.75 1406.75,-105 1314,-105"/>
<text text-anchor="start" x="1318" y="-111.45" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="1406.75,-105 1406.75,-128.75 1456,-128.75 1456,-105 1406.75,-105"/>
<text text-anchor="start" x="1410.75" y="-111.45" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="1456,-105 1456,-128.75 1494,-128.75 1494,-105 1456,-105"/>
<text text-anchor="start" x="1460" y="-111.45" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="1314,-82 1314,-105 1392.5,-105 1392.5,-82 1314,-82"/>
<text text-anchor="start" x="1349.5" y="-87.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="1392.5,-82 1392.5,-105 1494,-105 1494,-82 1392.5,-82"/>
<text text-anchor="start" x="1427.88" y="-87.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="1314,-59 1314,-82 1392.5,-82 1392.5,-59 1314,-59"/>
<text text-anchor="start" x="1349.5" y="-64.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="1392.5,-59 1392.5,-82 1494,-82 1494,-59 1392.5,-59"/>
<text text-anchor="start" x="1429" y="-64.7" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="1314,-36 1314,-59 1392.5,-59 1392.5,-36 1314,-36"/>
<text text-anchor="start" x="1349.5" y="-41.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="1392.5,-36 1392.5,-59 1494,-59 1494,-36 1392.5,-36"/>
<text text-anchor="start" x="1430.12" y="-41.7" font-family="arial" font-size="14.00">SCL</text>
<polygon fill="none" stroke="black" points="1314,-13 1314,-36 1392.5,-36 1392.5,-13 1314,-13"/>
<text text-anchor="start" x="1349.5" y="-18.7" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="1392.5,-13 1392.5,-36 1494,-36 1494,-13 1392.5,-13"/>
<text text-anchor="start" x="1429.38" y="-18.7" font-family="arial" font-size="14.00">SDA</text>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M518,-95C581.76,-95.02 597.75,-93.02 662,-93"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M518,-97C582.01,-97 597.99,-95 662,-95"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M518,-99C582.25,-98.98 598.24,-96.98 662,-97"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-94.75C576.64,-94.78 592.62,-91.78 657,-91.75"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M513,-96.75C577.01,-96.75 592.99,-93.75 657,-93.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-98.75C577.38,-98.72 593.36,-95.72 657,-95.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M518,-70C581.88,-70 597.87,-69 662,-69"/>
<path fill="none" stroke="#00ffff" stroke-width="2" d="M518,-72C582,-72 598,-71 662,-71"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M518,-74C582.13,-74 598.12,-73 662,-73"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-69.75C576.88,-69.75 592.87,-68.75 657,-68.75"/>
<path fill="none" stroke="#00ffff" stroke-width="2" d="M513,-71.75C577,-71.75 593,-70.75 657,-70.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-73.75C577.13,-73.75 593.12,-72.75 657,-72.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge6" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M518,-45C582.13,-45 598.12,-46 662,-46"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M518,-47C582,-47 598,-48 662,-48"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M518,-49C581.88,-49 597.87,-50 662,-50"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-44.75C577.13,-44.75 593.12,-45.75 657,-45.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M513,-46.75C577,-46.75 593,-47.75 657,-47.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-48.75C576.88,-48.75 592.87,-49.75 657,-49.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge8" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M518,-20C582.38,-20.03 598.36,-23.03 662,-23"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M518,-22C582.01,-22 597.99,-25 662,-25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M518,-24C581.64,-23.97 597.62,-26.97 662,-27"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-19.75C577.38,-19.78 593.36,-22.78 657,-22.75"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M513,-21.75C577.01,-21.75 592.99,-24.75 657,-24.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-23.75C576.64,-23.72 592.62,-26.72 657,-26.75"/>
</g>
<!-- W2&#45;&#45;X3 -->
<g id="edge10" class="edge">
<title>W2:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1180,-95C1243.76,-95.02 1259.75,-93.02 1324,-93"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1180,-97C1244.01,-97 1259.99,-95 1324,-95"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1180,-99C1244.25,-98.98 1260.24,-96.98 1324,-97"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1170,-94.75C1233.64,-94.78 1249.62,-91.78 1314,-91.75"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1170,-96.75C1234.01,-96.75 1249.99,-93.75 1314,-93.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1170,-98.75C1234.38,-98.72 1250.36,-95.72 1314,-95.75"/>
</g>
<!-- W2&#45;&#45;X3 -->
<g id="edge12" class="edge">
<title>W2:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1180,-70C1243.88,-70 1259.87,-69 1324,-69"/>
<path fill="none" stroke="#00ffff" stroke-width="2" d="M1180,-72C1244,-72 1260,-71 1324,-71"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1180,-74C1244.13,-74 1260.12,-73 1324,-73"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1170,-69.75C1233.88,-69.75 1249.87,-68.75 1314,-68.75"/>
<path fill="none" stroke="#00ffff" stroke-width="2" d="M1170,-71.75C1234,-71.75 1250,-70.75 1314,-70.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1170,-73.75C1234.13,-73.75 1250.12,-72.75 1314,-72.75"/>
</g>
<!-- W2&#45;&#45;X3 -->
<g id="edge14" class="edge">
<title>W2:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1180,-45C1244.13,-45 1260.12,-46 1324,-46"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M1180,-47C1244,-47 1260,-48 1324,-48"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1180,-49C1243.88,-49 1259.87,-50 1324,-50"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1170,-44.75C1234.13,-44.75 1250.12,-45.75 1314,-45.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M1170,-46.75C1234,-46.75 1250,-47.75 1314,-47.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1170,-48.75C1233.88,-48.75 1249.87,-49.75 1314,-49.75"/>
</g>
<!-- W2&#45;&#45;X3 -->
<g id="edge16" class="edge">
<title>W2:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1180,-20C1244.38,-20.03 1260.36,-23.03 1324,-23"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M1180,-22C1244.01,-22 1259.99,-25 1324,-25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1180,-24C1243.64,-23.97 1259.62,-26.97 1324,-27"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1170,-19.75C1234.38,-19.78 1250.36,-22.78 1314,-22.75"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M1170,-21.75C1234.01,-21.75 1249.99,-24.75 1314,-24.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1170,-23.75C1233.64,-23.72 1249.62,-26.72 1314,-26.75"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 23 KiB

900
examples/ex06.html generated

File diff suppressed because it is too large Load Diff

BIN
examples/ex06.png generated

Binary file not shown.

Before

Width:  |  Height:  |  Size: 292 KiB

After

Width:  |  Height:  |  Size: 332 KiB

900
examples/ex06.svg generated

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 48 KiB

After

Width:  |  Height:  |  Size: 50 KiB

140
examples/ex07.html generated
View File

@ -30,105 +30,105 @@
<div id="diagram">
<!-- XML and DOCTYPE declarations from SVG file removed -->
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="841pt" height="153pt"
viewBox="0.00 0.00 841.00 152.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 148.5)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-148.5 837,-148.5 837,4 -4,4"/>
<svg width="837pt" height="156pt"
viewBox="0.00 0.00 837.00 156.12" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 152.12)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-152.12 833,-152.12 833,4 -4,4"/>
<!-- X1 -->
<g id="node1" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="205,-115 0,-115 0,0 205,0 205,-115"/>
<polygon fill="none" stroke="black" points="0.5,-91.5 0.5,-114.5 205.5,-114.5 205.5,-91.5 0.5,-91.5"/>
<text text-anchor="start" x="94.5" y="-99.3" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0.5,-68.5 0.5,-91.5 95.5,-91.5 95.5,-68.5 0.5,-68.5"/>
<text text-anchor="start" x="8.5" y="-76.3" font-family="arial" font-size="14.00">TE 776164&#45;1</text>
<polygon fill="none" stroke="black" points="95.5,-68.5 95.5,-91.5 152.5,-91.5 152.5,-68.5 95.5,-68.5"/>
<text text-anchor="start" x="103" y="-76.3" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="152.5,-68.5 152.5,-91.5 205.5,-91.5 205.5,-68.5 152.5,-68.5"/>
<text text-anchor="start" x="160" y="-76.3" font-family="arial" font-size="14.00">35&#45;pin</text>
<polygon fill="none" stroke="black" points="0.5,-45.5 0.5,-68.5 205.5,-68.5 205.5,-45.5 0.5,-45.5"/>
<text text-anchor="start" x="99" y="-53.3" font-family="arial" font-size="14.00">5</text>
<polygon fill="none" stroke="black" points="0.5,-22.5 0.5,-45.5 205.5,-45.5 205.5,-22.5 0.5,-22.5"/>
<text text-anchor="start" x="99" y="-30.3" font-family="arial" font-size="14.00">6</text>
<polygon fill="none" stroke="black" points="0.5,0.5 0.5,-22.5 205.5,-22.5 205.5,0.5 0.5,0.5"/>
<text text-anchor="start" x="4.5" y="-7.3" font-family="arial" font-size="14.00">Unconnected pins are not shown</text>
<polygon fill="#ffffff" stroke="black" points="204.5,-118.75 0,-118.75 0,0 204.5,0 204.5,-118.75"/>
<polygon fill="none" stroke="black" points="0,-95 0,-118.75 204.5,-118.75 204.5,-95 0,-95"/>
<text text-anchor="start" x="94" y="-101.45" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-71.25 0,-95 93.92,-95 93.92,-71.25 0,-71.25"/>
<text text-anchor="start" x="7.96" y="-77.7" font-family="arial" font-size="14.00">TE 776164&#45;1</text>
<polygon fill="none" stroke="black" points="93.92,-71.25 93.92,-95 151.08,-95 151.08,-71.25 93.92,-71.25"/>
<text text-anchor="start" x="101.88" y="-77.7" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="151.08,-71.25 151.08,-95 204.5,-95 204.5,-71.25 151.08,-71.25"/>
<text text-anchor="start" x="159.04" y="-77.7" font-family="arial" font-size="14.00">35&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-47.5 0,-71.25 204.5,-71.25 204.5,-47.5 0,-47.5"/>
<text text-anchor="start" x="98.5" y="-53.95" font-family="arial" font-size="14.00">5</text>
<polygon fill="none" stroke="black" points="0,-23.75 0,-47.5 204.5,-47.5 204.5,-23.75 0,-23.75"/>
<text text-anchor="start" x="98.5" y="-30.2" font-family="arial" font-size="14.00">6</text>
<polygon fill="none" stroke="black" points="0,0 0,-23.75 204.5,-23.75 204.5,0 0,0"/>
<text text-anchor="start" x="4" y="-6.45" font-family="arial" font-size="14.00">Unconnected pins are not shown</text>
</g>
<!-- C1 -->
<g id="node3" class="node">
<title>C1</title>
<polygon fill="#ffffff" stroke="black" points="484,-144.5 349,-144.5 349,-10.5 484,-10.5 484,-144.5"/>
<polygon fill="none" stroke="black" points="349.5,-121.5 349.5,-144.5 484.5,-144.5 484.5,-121.5 349.5,-121.5"/>
<text text-anchor="start" x="408" y="-129.3" font-family="arial" font-size="14.00">C1</text>
<polygon fill="none" stroke="black" points="349.5,-98.5 349.5,-121.5 379.5,-121.5 379.5,-98.5 349.5,-98.5"/>
<text text-anchor="start" x="357" y="-106.3" font-family="arial" font-size="14.00">2x</text>
<polygon fill="none" stroke="black" points="379.5,-98.5 379.5,-121.5 446.5,-121.5 446.5,-98.5 379.5,-98.5"/>
<text text-anchor="start" x="387" y="-106.3" font-family="arial" font-size="14.00">20 AWG</text>
<polygon fill="none" stroke="black" points="446.5,-98.5 446.5,-121.5 484.5,-121.5 484.5,-98.5 446.5,-98.5"/>
<text text-anchor="start" x="453.5" y="-106.3" font-family="arial" font-size="14.00">1 m</text>
<text text-anchor="start" x="363.5" y="-85.3" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="351.5" y="-66.3" font-family="arial" font-size="14.00">X1:5</text>
<text text-anchor="start" x="385" y="-66.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="454.5" y="-66.3" font-family="arial" font-size="14.00">X2:7</text>
<polygon fill="#000000" stroke="none" points="349.5,-58.5 349.5,-60.5 484.5,-60.5 484.5,-58.5 349.5,-58.5"/>
<polygon fill="#ffff00" stroke="none" points="349.5,-56.5 349.5,-58.5 484.5,-58.5 484.5,-56.5 349.5,-56.5"/>
<polygon fill="#000000" stroke="none" points="349.5,-54.5 349.5,-56.5 484.5,-56.5 484.5,-54.5 349.5,-54.5"/>
<text text-anchor="start" x="351.5" y="-41.3" font-family="arial" font-size="14.00">X1:6</text>
<text text-anchor="start" x="383.5" y="-41.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="454.5" y="-41.3" font-family="arial" font-size="14.00">X2:2</text>
<polygon fill="#000000" stroke="none" points="349.5,-33.5 349.5,-35.5 484.5,-35.5 484.5,-33.5 349.5,-33.5"/>
<polygon fill="#00ff00" stroke="none" points="349.5,-31.5 349.5,-33.5 484.5,-33.5 484.5,-31.5 349.5,-31.5"/>
<polygon fill="#000000" stroke="none" points="349.5,-29.5 349.5,-31.5 484.5,-31.5 484.5,-29.5 349.5,-29.5"/>
<text text-anchor="start" x="363.5" y="-16.3" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" points="480.5,-148.12 348.5,-148.12 348.5,-12.62 480.5,-12.62 480.5,-148.12"/>
<polygon fill="none" stroke="black" points="348.5,-124.38 348.5,-148.12 480.5,-148.12 480.5,-124.38 348.5,-124.38"/>
<text text-anchor="start" x="405.88" y="-130.82" font-family="arial" font-size="14.00">C1</text>
<polygon fill="none" stroke="black" points="348.5,-100.62 348.5,-124.38 377,-124.38 377,-100.62 348.5,-100.62"/>
<text text-anchor="start" x="355.62" y="-107.08" font-family="arial" font-size="14.00">2x</text>
<polygon fill="none" stroke="black" points="377,-100.62 377,-124.38 443,-124.38 443,-100.62 377,-100.62"/>
<text text-anchor="start" x="384.12" y="-107.08" font-family="arial" font-size="14.00">20 AWG</text>
<polygon fill="none" stroke="black" points="443,-100.62 443,-124.38 480.5,-124.38 480.5,-100.62 443,-100.62"/>
<text text-anchor="start" x="450.12" y="-107.08" font-family="arial" font-size="14.00">1 m</text>
<text text-anchor="start" x="362.12" y="-85.33" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="350.12" y="-66.33" font-family="arial" font-size="14.00">X1:5</text>
<text text-anchor="start" x="383" y="-66.33" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="451.12" y="-66.33" font-family="arial" font-size="14.00">X2:7</text>
<polygon fill="#000000" stroke="none" points="348.5,-60.62 348.5,-62.62 480.5,-62.62 480.5,-60.62 348.5,-60.62"/>
<polygon fill="#ffff00" stroke="none" points="348.5,-58.62 348.5,-60.62 480.5,-60.62 480.5,-58.62 348.5,-58.62"/>
<polygon fill="#000000" stroke="none" points="348.5,-56.62 348.5,-58.62 480.5,-58.62 480.5,-56.62 348.5,-56.62"/>
<text text-anchor="start" x="350.12" y="-41.33" font-family="arial" font-size="14.00">X1:6</text>
<text text-anchor="start" x="381.5" y="-41.33" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="451.12" y="-41.33" font-family="arial" font-size="14.00">X2:2</text>
<polygon fill="#000000" stroke="none" points="348.5,-35.62 348.5,-37.62 480.5,-37.62 480.5,-35.62 348.5,-35.62"/>
<polygon fill="#00ff00" stroke="none" points="348.5,-33.62 348.5,-35.62 480.5,-35.62 480.5,-33.62 348.5,-33.62"/>
<polygon fill="#000000" stroke="none" points="348.5,-31.62 348.5,-33.62 480.5,-33.62 480.5,-31.62 348.5,-31.62"/>
<text text-anchor="start" x="362.12" y="-16.32" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X1&#45;&#45;C1 -->
<g id="edge1" class="edge">
<title>X1:e&#45;&#45;C1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M205,-54.5C269.13,-54.5 285.12,-55.5 349,-55.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M205,-56.5C269,-56.5 285,-57.5 349,-57.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M205,-58.5C268.88,-58.5 284.87,-59.5 349,-59.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M204.5,-57.38C268.5,-57.38 284.5,-57.38 348.5,-57.38"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M204.5,-59.38C268.5,-59.38 284.5,-59.38 348.5,-59.38"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M204.5,-61.37C268.5,-61.38 284.5,-61.38 348.5,-61.37"/>
</g>
<!-- X1&#45;&#45;C1 -->
<g id="edge3" class="edge">
<title>X1:e&#45;&#45;C1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M205,-31.5C268.88,-31.5 284.87,-30.5 349,-30.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M205,-33.5C269,-33.5 285,-32.5 349,-32.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M205,-35.5C269.13,-35.5 285.12,-34.5 349,-34.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M204.5,-33.38C268.38,-33.38 284.37,-32.38 348.5,-32.38"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M204.5,-35.38C268.5,-35.38 284.5,-34.38 348.5,-34.38"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M204.5,-37.37C268.63,-37.37 284.62,-36.37 348.5,-36.37"/>
</g>
<!-- X2 -->
<g id="node2" class="node">
<title>X2</title>
<polygon fill="#ffffff" stroke="black" points="833,-115 628,-115 628,0 833,0 833,-115"/>
<polygon fill="none" stroke="black" points="628.5,-91.5 628.5,-114.5 833.5,-114.5 833.5,-91.5 628.5,-91.5"/>
<text text-anchor="start" x="722.5" y="-99.3" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="628.5,-68.5 628.5,-91.5 698.5,-91.5 698.5,-68.5 628.5,-68.5"/>
<text text-anchor="start" x="644" y="-76.3" font-family="arial" font-size="14.00">D&#45;Sub</text>
<polygon fill="none" stroke="black" points="698.5,-68.5 698.5,-91.5 771.5,-91.5 771.5,-68.5 698.5,-68.5"/>
<text text-anchor="start" x="714" y="-76.3" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="771.5,-68.5 771.5,-91.5 833.5,-91.5 833.5,-68.5 771.5,-68.5"/>
<text text-anchor="start" x="787" y="-76.3" font-family="arial" font-size="14.00">9&#45;pin</text>
<polygon fill="none" stroke="black" points="628.5,-45.5 628.5,-68.5 833.5,-68.5 833.5,-45.5 628.5,-45.5"/>
<text text-anchor="start" x="727" y="-53.3" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="628.5,-22.5 628.5,-45.5 833.5,-45.5 833.5,-22.5 628.5,-22.5"/>
<text text-anchor="start" x="727" y="-30.3" font-family="arial" font-size="14.00">7</text>
<polygon fill="none" stroke="black" points="628.5,0.5 628.5,-22.5 833.5,-22.5 833.5,0.5 628.5,0.5"/>
<text text-anchor="start" x="632.5" y="-7.3" font-family="arial" font-size="14.00">Unconnected pins are not shown</text>
<polygon fill="#ffffff" stroke="black" points="829,-118.75 624.5,-118.75 624.5,0 829,0 829,-118.75"/>
<polygon fill="none" stroke="black" points="624.5,-95 624.5,-118.75 829,-118.75 829,-95 624.5,-95"/>
<text text-anchor="start" x="718.5" y="-101.45" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="624.5,-71.25 624.5,-95 694.42,-95 694.42,-71.25 624.5,-71.25"/>
<text text-anchor="start" x="640.33" y="-77.7" font-family="arial" font-size="14.00">D&#45;Sub</text>
<polygon fill="none" stroke="black" points="694.42,-71.25 694.42,-95 767.33,-95 767.33,-71.25 694.42,-71.25"/>
<text text-anchor="start" x="710.25" y="-77.7" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="767.33,-71.25 767.33,-95 829,-95 829,-71.25 767.33,-71.25"/>
<text text-anchor="start" x="783.17" y="-77.7" font-family="arial" font-size="14.00">9&#45;pin</text>
<polygon fill="none" stroke="black" points="624.5,-47.5 624.5,-71.25 829,-71.25 829,-47.5 624.5,-47.5"/>
<text text-anchor="start" x="723" y="-53.95" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="624.5,-23.75 624.5,-47.5 829,-47.5 829,-23.75 624.5,-23.75"/>
<text text-anchor="start" x="723" y="-30.2" font-family="arial" font-size="14.00">7</text>
<polygon fill="none" stroke="black" points="624.5,0 624.5,-23.75 829,-23.75 829,0 624.5,0"/>
<text text-anchor="start" x="628.5" y="-6.45" font-family="arial" font-size="14.00">Unconnected pins are not shown</text>
</g>
<!-- C1&#45;&#45;X2 -->
<g id="edge2" class="edge">
<title>C1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M484,-55.5C547.16,-56.48 561.4,-32.48 628,-31.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M484,-57.5C548.88,-57.5 563.12,-33.5 628,-33.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M484,-59.5C550.6,-58.52 564.84,-34.52 628,-35.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M480.5,-57.38C543.66,-58.35 557.9,-34.35 624.5,-33.38"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M480.5,-59.37C545.38,-59.37 559.62,-35.38 624.5,-35.37"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M480.5,-61.37C547.1,-60.4 561.34,-36.4 624.5,-37.37"/>
</g>
<!-- C1&#45;&#45;X2 -->
<g id="edge4" class="edge">
<title>C1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M484,-30.5C550.6,-31.48 564.84,-55.48 628,-54.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M484,-32.5C548.88,-32.5 563.12,-56.5 628,-56.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M484,-34.5C547.16,-33.52 561.4,-57.52 628,-58.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M480.5,-32.38C547.2,-33.39 561.29,-58.39 624.5,-57.38"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M480.5,-34.38C545.46,-34.38 559.54,-59.38 624.5,-59.38"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M480.5,-36.37C543.71,-35.36 557.8,-60.36 624.5,-61.37"/>
</g>
</g>
</svg>

BIN
examples/ex07.png generated

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 27 KiB

140
examples/ex07.svg generated
View File

@ -1,105 +1,105 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="841pt" height="153pt"
viewBox="0.00 0.00 841.00 152.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 148.5)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-148.5 837,-148.5 837,4 -4,4"/>
<svg width="837pt" height="156pt"
viewBox="0.00 0.00 837.00 156.12" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 152.12)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-152.12 833,-152.12 833,4 -4,4"/>
<!-- X1 -->
<g id="node1" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="205,-115 0,-115 0,0 205,0 205,-115"/>
<polygon fill="none" stroke="black" points="0.5,-91.5 0.5,-114.5 205.5,-114.5 205.5,-91.5 0.5,-91.5"/>
<text text-anchor="start" x="94.5" y="-99.3" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0.5,-68.5 0.5,-91.5 95.5,-91.5 95.5,-68.5 0.5,-68.5"/>
<text text-anchor="start" x="8.5" y="-76.3" font-family="arial" font-size="14.00">TE 776164&#45;1</text>
<polygon fill="none" stroke="black" points="95.5,-68.5 95.5,-91.5 152.5,-91.5 152.5,-68.5 95.5,-68.5"/>
<text text-anchor="start" x="103" y="-76.3" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="152.5,-68.5 152.5,-91.5 205.5,-91.5 205.5,-68.5 152.5,-68.5"/>
<text text-anchor="start" x="160" y="-76.3" font-family="arial" font-size="14.00">35&#45;pin</text>
<polygon fill="none" stroke="black" points="0.5,-45.5 0.5,-68.5 205.5,-68.5 205.5,-45.5 0.5,-45.5"/>
<text text-anchor="start" x="99" y="-53.3" font-family="arial" font-size="14.00">5</text>
<polygon fill="none" stroke="black" points="0.5,-22.5 0.5,-45.5 205.5,-45.5 205.5,-22.5 0.5,-22.5"/>
<text text-anchor="start" x="99" y="-30.3" font-family="arial" font-size="14.00">6</text>
<polygon fill="none" stroke="black" points="0.5,0.5 0.5,-22.5 205.5,-22.5 205.5,0.5 0.5,0.5"/>
<text text-anchor="start" x="4.5" y="-7.3" font-family="arial" font-size="14.00">Unconnected pins are not shown</text>
<polygon fill="#ffffff" stroke="black" points="204.5,-118.75 0,-118.75 0,0 204.5,0 204.5,-118.75"/>
<polygon fill="none" stroke="black" points="0,-95 0,-118.75 204.5,-118.75 204.5,-95 0,-95"/>
<text text-anchor="start" x="94" y="-101.45" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-71.25 0,-95 93.92,-95 93.92,-71.25 0,-71.25"/>
<text text-anchor="start" x="7.96" y="-77.7" font-family="arial" font-size="14.00">TE 776164&#45;1</text>
<polygon fill="none" stroke="black" points="93.92,-71.25 93.92,-95 151.08,-95 151.08,-71.25 93.92,-71.25"/>
<text text-anchor="start" x="101.88" y="-77.7" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="151.08,-71.25 151.08,-95 204.5,-95 204.5,-71.25 151.08,-71.25"/>
<text text-anchor="start" x="159.04" y="-77.7" font-family="arial" font-size="14.00">35&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-47.5 0,-71.25 204.5,-71.25 204.5,-47.5 0,-47.5"/>
<text text-anchor="start" x="98.5" y="-53.95" font-family="arial" font-size="14.00">5</text>
<polygon fill="none" stroke="black" points="0,-23.75 0,-47.5 204.5,-47.5 204.5,-23.75 0,-23.75"/>
<text text-anchor="start" x="98.5" y="-30.2" font-family="arial" font-size="14.00">6</text>
<polygon fill="none" stroke="black" points="0,0 0,-23.75 204.5,-23.75 204.5,0 0,0"/>
<text text-anchor="start" x="4" y="-6.45" font-family="arial" font-size="14.00">Unconnected pins are not shown</text>
</g>
<!-- C1 -->
<g id="node3" class="node">
<title>C1</title>
<polygon fill="#ffffff" stroke="black" points="484,-144.5 349,-144.5 349,-10.5 484,-10.5 484,-144.5"/>
<polygon fill="none" stroke="black" points="349.5,-121.5 349.5,-144.5 484.5,-144.5 484.5,-121.5 349.5,-121.5"/>
<text text-anchor="start" x="408" y="-129.3" font-family="arial" font-size="14.00">C1</text>
<polygon fill="none" stroke="black" points="349.5,-98.5 349.5,-121.5 379.5,-121.5 379.5,-98.5 349.5,-98.5"/>
<text text-anchor="start" x="357" y="-106.3" font-family="arial" font-size="14.00">2x</text>
<polygon fill="none" stroke="black" points="379.5,-98.5 379.5,-121.5 446.5,-121.5 446.5,-98.5 379.5,-98.5"/>
<text text-anchor="start" x="387" y="-106.3" font-family="arial" font-size="14.00">20 AWG</text>
<polygon fill="none" stroke="black" points="446.5,-98.5 446.5,-121.5 484.5,-121.5 484.5,-98.5 446.5,-98.5"/>
<text text-anchor="start" x="453.5" y="-106.3" font-family="arial" font-size="14.00">1 m</text>
<text text-anchor="start" x="363.5" y="-85.3" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="351.5" y="-66.3" font-family="arial" font-size="14.00">X1:5</text>
<text text-anchor="start" x="385" y="-66.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="454.5" y="-66.3" font-family="arial" font-size="14.00">X2:7</text>
<polygon fill="#000000" stroke="none" points="349.5,-58.5 349.5,-60.5 484.5,-60.5 484.5,-58.5 349.5,-58.5"/>
<polygon fill="#ffff00" stroke="none" points="349.5,-56.5 349.5,-58.5 484.5,-58.5 484.5,-56.5 349.5,-56.5"/>
<polygon fill="#000000" stroke="none" points="349.5,-54.5 349.5,-56.5 484.5,-56.5 484.5,-54.5 349.5,-54.5"/>
<text text-anchor="start" x="351.5" y="-41.3" font-family="arial" font-size="14.00">X1:6</text>
<text text-anchor="start" x="383.5" y="-41.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="454.5" y="-41.3" font-family="arial" font-size="14.00">X2:2</text>
<polygon fill="#000000" stroke="none" points="349.5,-33.5 349.5,-35.5 484.5,-35.5 484.5,-33.5 349.5,-33.5"/>
<polygon fill="#00ff00" stroke="none" points="349.5,-31.5 349.5,-33.5 484.5,-33.5 484.5,-31.5 349.5,-31.5"/>
<polygon fill="#000000" stroke="none" points="349.5,-29.5 349.5,-31.5 484.5,-31.5 484.5,-29.5 349.5,-29.5"/>
<text text-anchor="start" x="363.5" y="-16.3" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" points="480.5,-148.12 348.5,-148.12 348.5,-12.62 480.5,-12.62 480.5,-148.12"/>
<polygon fill="none" stroke="black" points="348.5,-124.38 348.5,-148.12 480.5,-148.12 480.5,-124.38 348.5,-124.38"/>
<text text-anchor="start" x="405.88" y="-130.82" font-family="arial" font-size="14.00">C1</text>
<polygon fill="none" stroke="black" points="348.5,-100.62 348.5,-124.38 377,-124.38 377,-100.62 348.5,-100.62"/>
<text text-anchor="start" x="355.62" y="-107.08" font-family="arial" font-size="14.00">2x</text>
<polygon fill="none" stroke="black" points="377,-100.62 377,-124.38 443,-124.38 443,-100.62 377,-100.62"/>
<text text-anchor="start" x="384.12" y="-107.08" font-family="arial" font-size="14.00">20 AWG</text>
<polygon fill="none" stroke="black" points="443,-100.62 443,-124.38 480.5,-124.38 480.5,-100.62 443,-100.62"/>
<text text-anchor="start" x="450.12" y="-107.08" font-family="arial" font-size="14.00">1 m</text>
<text text-anchor="start" x="362.12" y="-85.33" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="350.12" y="-66.33" font-family="arial" font-size="14.00">X1:5</text>
<text text-anchor="start" x="383" y="-66.33" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="451.12" y="-66.33" font-family="arial" font-size="14.00">X2:7</text>
<polygon fill="#000000" stroke="none" points="348.5,-60.62 348.5,-62.62 480.5,-62.62 480.5,-60.62 348.5,-60.62"/>
<polygon fill="#ffff00" stroke="none" points="348.5,-58.62 348.5,-60.62 480.5,-60.62 480.5,-58.62 348.5,-58.62"/>
<polygon fill="#000000" stroke="none" points="348.5,-56.62 348.5,-58.62 480.5,-58.62 480.5,-56.62 348.5,-56.62"/>
<text text-anchor="start" x="350.12" y="-41.33" font-family="arial" font-size="14.00">X1:6</text>
<text text-anchor="start" x="381.5" y="-41.33" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="451.12" y="-41.33" font-family="arial" font-size="14.00">X2:2</text>
<polygon fill="#000000" stroke="none" points="348.5,-35.62 348.5,-37.62 480.5,-37.62 480.5,-35.62 348.5,-35.62"/>
<polygon fill="#00ff00" stroke="none" points="348.5,-33.62 348.5,-35.62 480.5,-35.62 480.5,-33.62 348.5,-33.62"/>
<polygon fill="#000000" stroke="none" points="348.5,-31.62 348.5,-33.62 480.5,-33.62 480.5,-31.62 348.5,-31.62"/>
<text text-anchor="start" x="362.12" y="-16.32" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X1&#45;&#45;C1 -->
<g id="edge1" class="edge">
<title>X1:e&#45;&#45;C1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M205,-54.5C269.13,-54.5 285.12,-55.5 349,-55.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M205,-56.5C269,-56.5 285,-57.5 349,-57.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M205,-58.5C268.88,-58.5 284.87,-59.5 349,-59.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M204.5,-57.38C268.5,-57.38 284.5,-57.38 348.5,-57.38"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M204.5,-59.38C268.5,-59.38 284.5,-59.38 348.5,-59.38"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M204.5,-61.37C268.5,-61.38 284.5,-61.38 348.5,-61.37"/>
</g>
<!-- X1&#45;&#45;C1 -->
<g id="edge3" class="edge">
<title>X1:e&#45;&#45;C1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M205,-31.5C268.88,-31.5 284.87,-30.5 349,-30.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M205,-33.5C269,-33.5 285,-32.5 349,-32.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M205,-35.5C269.13,-35.5 285.12,-34.5 349,-34.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M204.5,-33.38C268.38,-33.38 284.37,-32.38 348.5,-32.38"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M204.5,-35.38C268.5,-35.38 284.5,-34.38 348.5,-34.38"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M204.5,-37.37C268.63,-37.37 284.62,-36.37 348.5,-36.37"/>
</g>
<!-- X2 -->
<g id="node2" class="node">
<title>X2</title>
<polygon fill="#ffffff" stroke="black" points="833,-115 628,-115 628,0 833,0 833,-115"/>
<polygon fill="none" stroke="black" points="628.5,-91.5 628.5,-114.5 833.5,-114.5 833.5,-91.5 628.5,-91.5"/>
<text text-anchor="start" x="722.5" y="-99.3" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="628.5,-68.5 628.5,-91.5 698.5,-91.5 698.5,-68.5 628.5,-68.5"/>
<text text-anchor="start" x="644" y="-76.3" font-family="arial" font-size="14.00">D&#45;Sub</text>
<polygon fill="none" stroke="black" points="698.5,-68.5 698.5,-91.5 771.5,-91.5 771.5,-68.5 698.5,-68.5"/>
<text text-anchor="start" x="714" y="-76.3" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="771.5,-68.5 771.5,-91.5 833.5,-91.5 833.5,-68.5 771.5,-68.5"/>
<text text-anchor="start" x="787" y="-76.3" font-family="arial" font-size="14.00">9&#45;pin</text>
<polygon fill="none" stroke="black" points="628.5,-45.5 628.5,-68.5 833.5,-68.5 833.5,-45.5 628.5,-45.5"/>
<text text-anchor="start" x="727" y="-53.3" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="628.5,-22.5 628.5,-45.5 833.5,-45.5 833.5,-22.5 628.5,-22.5"/>
<text text-anchor="start" x="727" y="-30.3" font-family="arial" font-size="14.00">7</text>
<polygon fill="none" stroke="black" points="628.5,0.5 628.5,-22.5 833.5,-22.5 833.5,0.5 628.5,0.5"/>
<text text-anchor="start" x="632.5" y="-7.3" font-family="arial" font-size="14.00">Unconnected pins are not shown</text>
<polygon fill="#ffffff" stroke="black" points="829,-118.75 624.5,-118.75 624.5,0 829,0 829,-118.75"/>
<polygon fill="none" stroke="black" points="624.5,-95 624.5,-118.75 829,-118.75 829,-95 624.5,-95"/>
<text text-anchor="start" x="718.5" y="-101.45" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="624.5,-71.25 624.5,-95 694.42,-95 694.42,-71.25 624.5,-71.25"/>
<text text-anchor="start" x="640.33" y="-77.7" font-family="arial" font-size="14.00">D&#45;Sub</text>
<polygon fill="none" stroke="black" points="694.42,-71.25 694.42,-95 767.33,-95 767.33,-71.25 694.42,-71.25"/>
<text text-anchor="start" x="710.25" y="-77.7" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="767.33,-71.25 767.33,-95 829,-95 829,-71.25 767.33,-71.25"/>
<text text-anchor="start" x="783.17" y="-77.7" font-family="arial" font-size="14.00">9&#45;pin</text>
<polygon fill="none" stroke="black" points="624.5,-47.5 624.5,-71.25 829,-71.25 829,-47.5 624.5,-47.5"/>
<text text-anchor="start" x="723" y="-53.95" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="624.5,-23.75 624.5,-47.5 829,-47.5 829,-23.75 624.5,-23.75"/>
<text text-anchor="start" x="723" y="-30.2" font-family="arial" font-size="14.00">7</text>
<polygon fill="none" stroke="black" points="624.5,0 624.5,-23.75 829,-23.75 829,0 624.5,0"/>
<text text-anchor="start" x="628.5" y="-6.45" font-family="arial" font-size="14.00">Unconnected pins are not shown</text>
</g>
<!-- C1&#45;&#45;X2 -->
<g id="edge2" class="edge">
<title>C1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M484,-55.5C547.16,-56.48 561.4,-32.48 628,-31.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M484,-57.5C548.88,-57.5 563.12,-33.5 628,-33.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M484,-59.5C550.6,-58.52 564.84,-34.52 628,-35.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M480.5,-57.38C543.66,-58.35 557.9,-34.35 624.5,-33.38"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M480.5,-59.37C545.38,-59.37 559.62,-35.38 624.5,-35.37"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M480.5,-61.37C547.1,-60.4 561.34,-36.4 624.5,-37.37"/>
</g>
<!-- C1&#45;&#45;X2 -->
<g id="edge4" class="edge">
<title>C1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M484,-30.5C550.6,-31.48 564.84,-55.48 628,-54.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M484,-32.5C548.88,-32.5 563.12,-56.5 628,-56.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M484,-34.5C547.16,-33.52 561.4,-57.52 628,-58.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M480.5,-32.38C547.2,-33.39 561.29,-58.39 624.5,-57.38"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M480.5,-34.38C545.46,-34.38 559.54,-59.38 624.5,-59.38"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M480.5,-36.37C543.71,-35.36 557.8,-60.36 624.5,-61.37"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 7.6 KiB

After

Width:  |  Height:  |  Size: 7.8 KiB

164
examples/ex08.html generated

File diff suppressed because one or more lines are too long

BIN
examples/ex08.png generated

Binary file not shown.

Before

Width:  |  Height:  |  Size: 65 KiB

After

Width:  |  Height:  |  Size: 56 KiB

164
examples/ex08.svg generated

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 18 KiB

810
examples/ex09.html generated
View File

@ -30,524 +30,524 @@
<div id="diagram">
<!-- XML and DOCTYPE declarations from SVG file removed -->
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="820pt" height="1158pt"
viewBox="0.00 0.00 820.00 1158.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 1154)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-1154 816,-1154 816,4 -4,4"/>
<svg width="813pt" height="1196pt"
viewBox="0.00 0.00 812.75 1195.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 1191.5)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-1191.5 808.75,-1191.5 808.75,4 -4,4"/>
<!-- X1 -->
<g id="node1" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="132,-732.5 0,-732.5 0,-387.5 132,-387.5 132,-732.5"/>
<polygon fill="none" stroke="black" points="0,-709 0,-732 132,-732 132,-709 0,-709"/>
<text text-anchor="start" x="57.5" y="-716.8" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-686 0,-709 47,-709 47,-686 0,-686"/>
<text text-anchor="start" x="4" y="-693.8" font-family="arial" font-size="14.00">D&#45;Sub</text>
<polygon fill="none" stroke="black" points="47,-686 47,-709 86,-709 86,-686 47,-686"/>
<text text-anchor="start" x="51" y="-693.8" font-family="arial" font-size="14.00">male</text>
<polygon fill="none" stroke="black" points="86,-686 86,-709 132,-709 132,-686 86,-686"/>
<text text-anchor="start" x="90" y="-693.8" font-family="arial" font-size="14.00">25&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-663 0,-686 98,-686 98,-663 0,-663"/>
<text text-anchor="start" x="10" y="-670.8" font-family="arial" font-size="14.00">SENSE_P_1</text>
<polygon fill="none" stroke="black" points="98,-663 98,-686 132,-686 132,-663 98,-663"/>
<text text-anchor="start" x="111" y="-670.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-640 0,-663 98,-663 98,-640 0,-640"/>
<text text-anchor="start" x="9.5" y="-647.8" font-family="arial" font-size="14.00">SENSE_N_1</text>
<polygon fill="none" stroke="black" points="98,-640 98,-663 132,-663 132,-640 98,-640"/>
<text text-anchor="start" x="107" y="-647.8" font-family="arial" font-size="14.00">14</text>
<polygon fill="none" stroke="black" points="0,-617 0,-640 98,-640 98,-617 0,-617"/>
<text text-anchor="start" x="10" y="-624.8" font-family="arial" font-size="14.00">SENSE_P_2</text>
<polygon fill="none" stroke="black" points="98,-617 98,-640 132,-640 132,-617 98,-617"/>
<text text-anchor="start" x="111" y="-624.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-594 0,-617 98,-617 98,-594 0,-594"/>
<text text-anchor="start" x="9.5" y="-601.8" font-family="arial" font-size="14.00">SENSE_N_2</text>
<polygon fill="none" stroke="black" points="98,-594 98,-617 132,-617 132,-594 98,-594"/>
<text text-anchor="start" x="107" y="-601.8" font-family="arial" font-size="14.00">16</text>
<polygon fill="none" stroke="black" points="0,-571 0,-594 98,-594 98,-571 0,-571"/>
<text text-anchor="start" x="10" y="-578.8" font-family="arial" font-size="14.00">SENSE_P_3</text>
<polygon fill="none" stroke="black" points="98,-571 98,-594 132,-594 132,-571 98,-571"/>
<text text-anchor="start" x="111" y="-578.8" font-family="arial" font-size="14.00">5</text>
<polygon fill="none" stroke="black" points="0,-548 0,-571 98,-571 98,-548 0,-548"/>
<text text-anchor="start" x="9.5" y="-555.8" font-family="arial" font-size="14.00">SENSE_N_3</text>
<polygon fill="none" stroke="black" points="98,-548 98,-571 132,-571 132,-548 98,-548"/>
<text text-anchor="start" x="107" y="-555.8" font-family="arial" font-size="14.00">18</text>
<polygon fill="none" stroke="black" points="0,-525 0,-548 98,-548 98,-525 0,-525"/>
<text text-anchor="start" x="10" y="-532.8" font-family="arial" font-size="14.00">SENSE_P_4</text>
<polygon fill="none" stroke="black" points="98,-525 98,-548 132,-548 132,-525 98,-525"/>
<text text-anchor="start" x="111" y="-532.8" font-family="arial" font-size="14.00">7</text>
<polygon fill="none" stroke="black" points="0,-502 0,-525 98,-525 98,-502 0,-502"/>
<text text-anchor="start" x="9.5" y="-509.8" font-family="arial" font-size="14.00">SENSE_N_4</text>
<polygon fill="none" stroke="black" points="98,-502 98,-525 132,-525 132,-502 98,-502"/>
<text text-anchor="start" x="107" y="-509.8" font-family="arial" font-size="14.00">20</text>
<polygon fill="none" stroke="black" points="0,-479 0,-502 98,-502 98,-479 0,-479"/>
<text text-anchor="start" x="10" y="-486.8" font-family="arial" font-size="14.00">SENSE_P_5</text>
<polygon fill="none" stroke="black" points="98,-479 98,-502 132,-502 132,-479 98,-479"/>
<text text-anchor="start" x="111" y="-486.8" font-family="arial" font-size="14.00">9</text>
<polygon fill="none" stroke="black" points="0,-456 0,-479 98,-479 98,-456 0,-456"/>
<text text-anchor="start" x="9.5" y="-463.8" font-family="arial" font-size="14.00">SENSE_N_5</text>
<polygon fill="none" stroke="black" points="98,-456 98,-479 132,-479 132,-456 98,-456"/>
<text text-anchor="start" x="107" y="-463.8" font-family="arial" font-size="14.00">22</text>
<polygon fill="none" stroke="black" points="0,-433 0,-456 98,-456 98,-433 0,-433"/>
<text text-anchor="start" x="10" y="-440.8" font-family="arial" font-size="14.00">SENSE_P_6</text>
<polygon fill="none" stroke="black" points="98,-433 98,-456 132,-456 132,-433 98,-433"/>
<text text-anchor="start" x="107.5" y="-440.8" font-family="arial" font-size="14.00">11</text>
<polygon fill="none" stroke="black" points="0,-410 0,-433 98,-433 98,-410 0,-410"/>
<text text-anchor="start" x="9.5" y="-417.8" font-family="arial" font-size="14.00">SENSE_N_6</text>
<polygon fill="none" stroke="black" points="98,-410 98,-433 132,-433 132,-410 98,-410"/>
<text text-anchor="start" x="107" y="-417.8" font-family="arial" font-size="14.00">24</text>
<polygon fill="none" stroke="black" points="0,-387 0,-410 98,-410 98,-387 0,-387"/>
<text text-anchor="start" x="33.5" y="-394.8" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="98,-387 98,-410 132,-410 132,-387 98,-387"/>
<text text-anchor="start" x="107" y="-394.8" font-family="arial" font-size="14.00">13</text>
<polygon fill="#ffffff" stroke="black" points="129.75,-752 0,-752 0,-405.5 129.75,-405.5 129.75,-752"/>
<polygon fill="none" stroke="black" points="0,-728.25 0,-752 129.75,-752 129.75,-728.25 0,-728.25"/>
<text text-anchor="start" x="56.62" y="-734.7" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-704.5 0,-728.25 46.25,-728.25 46.25,-704.5 0,-704.5"/>
<text text-anchor="start" x="4" y="-710.95" font-family="arial" font-size="14.00">D&#45;Sub</text>
<polygon fill="none" stroke="black" points="46.25,-704.5 46.25,-728.25 84.25,-728.25 84.25,-704.5 46.25,-704.5"/>
<text text-anchor="start" x="50.25" y="-710.95" font-family="arial" font-size="14.00">male</text>
<polygon fill="none" stroke="black" points="84.25,-704.5 84.25,-728.25 129.75,-728.25 129.75,-704.5 84.25,-704.5"/>
<text text-anchor="start" x="88.25" y="-710.95" font-family="arial" font-size="14.00">25&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-681.5 0,-704.5 96.38,-704.5 96.38,-681.5 0,-681.5"/>
<text text-anchor="start" x="9.56" y="-687.2" font-family="arial" font-size="14.00">SENSE_P_1</text>
<polygon fill="none" stroke="black" points="96.38,-681.5 96.38,-704.5 129.75,-704.5 129.75,-681.5 96.38,-681.5"/>
<text text-anchor="start" x="109.31" y="-687.2" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-658.5 0,-681.5 96.38,-681.5 96.38,-658.5 0,-658.5"/>
<text text-anchor="start" x="9.19" y="-664.2" font-family="arial" font-size="14.00">SENSE_N_1</text>
<polygon fill="none" stroke="black" points="96.38,-658.5 96.38,-681.5 129.75,-681.5 129.75,-658.5 96.38,-658.5"/>
<text text-anchor="start" x="105.56" y="-664.2" font-family="arial" font-size="14.00">14</text>
<polygon fill="none" stroke="black" points="0,-635.5 0,-658.5 96.38,-658.5 96.38,-635.5 0,-635.5"/>
<text text-anchor="start" x="9.56" y="-641.2" font-family="arial" font-size="14.00">SENSE_P_2</text>
<polygon fill="none" stroke="black" points="96.38,-635.5 96.38,-658.5 129.75,-658.5 129.75,-635.5 96.38,-635.5"/>
<text text-anchor="start" x="109.31" y="-641.2" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-612.5 0,-635.5 96.38,-635.5 96.38,-612.5 0,-612.5"/>
<text text-anchor="start" x="9.19" y="-618.2" font-family="arial" font-size="14.00">SENSE_N_2</text>
<polygon fill="none" stroke="black" points="96.38,-612.5 96.38,-635.5 129.75,-635.5 129.75,-612.5 96.38,-612.5"/>
<text text-anchor="start" x="105.56" y="-618.2" font-family="arial" font-size="14.00">16</text>
<polygon fill="none" stroke="black" points="0,-589.5 0,-612.5 96.38,-612.5 96.38,-589.5 0,-589.5"/>
<text text-anchor="start" x="9.56" y="-595.2" font-family="arial" font-size="14.00">SENSE_P_3</text>
<polygon fill="none" stroke="black" points="96.38,-589.5 96.38,-612.5 129.75,-612.5 129.75,-589.5 96.38,-589.5"/>
<text text-anchor="start" x="109.31" y="-595.2" font-family="arial" font-size="14.00">5</text>
<polygon fill="none" stroke="black" points="0,-566.5 0,-589.5 96.38,-589.5 96.38,-566.5 0,-566.5"/>
<text text-anchor="start" x="9.19" y="-572.2" font-family="arial" font-size="14.00">SENSE_N_3</text>
<polygon fill="none" stroke="black" points="96.38,-566.5 96.38,-589.5 129.75,-589.5 129.75,-566.5 96.38,-566.5"/>
<text text-anchor="start" x="105.56" y="-572.2" font-family="arial" font-size="14.00">18</text>
<polygon fill="none" stroke="black" points="0,-543.5 0,-566.5 96.38,-566.5 96.38,-543.5 0,-543.5"/>
<text text-anchor="start" x="9.56" y="-549.2" font-family="arial" font-size="14.00">SENSE_P_4</text>
<polygon fill="none" stroke="black" points="96.38,-543.5 96.38,-566.5 129.75,-566.5 129.75,-543.5 96.38,-543.5"/>
<text text-anchor="start" x="109.31" y="-549.2" font-family="arial" font-size="14.00">7</text>
<polygon fill="none" stroke="black" points="0,-520.5 0,-543.5 96.38,-543.5 96.38,-520.5 0,-520.5"/>
<text text-anchor="start" x="9.19" y="-526.2" font-family="arial" font-size="14.00">SENSE_N_4</text>
<polygon fill="none" stroke="black" points="96.38,-520.5 96.38,-543.5 129.75,-543.5 129.75,-520.5 96.38,-520.5"/>
<text text-anchor="start" x="105.56" y="-526.2" font-family="arial" font-size="14.00">20</text>
<polygon fill="none" stroke="black" points="0,-497.5 0,-520.5 96.38,-520.5 96.38,-497.5 0,-497.5"/>
<text text-anchor="start" x="9.56" y="-503.2" font-family="arial" font-size="14.00">SENSE_P_5</text>
<polygon fill="none" stroke="black" points="96.38,-497.5 96.38,-520.5 129.75,-520.5 129.75,-497.5 96.38,-497.5"/>
<text text-anchor="start" x="109.31" y="-503.2" font-family="arial" font-size="14.00">9</text>
<polygon fill="none" stroke="black" points="0,-474.5 0,-497.5 96.38,-497.5 96.38,-474.5 0,-474.5"/>
<text text-anchor="start" x="9.19" y="-480.2" font-family="arial" font-size="14.00">SENSE_N_5</text>
<polygon fill="none" stroke="black" points="96.38,-474.5 96.38,-497.5 129.75,-497.5 129.75,-474.5 96.38,-474.5"/>
<text text-anchor="start" x="105.56" y="-480.2" font-family="arial" font-size="14.00">22</text>
<polygon fill="none" stroke="black" points="0,-451.5 0,-474.5 96.38,-474.5 96.38,-451.5 0,-451.5"/>
<text text-anchor="start" x="9.56" y="-457.2" font-family="arial" font-size="14.00">SENSE_P_6</text>
<polygon fill="none" stroke="black" points="96.38,-451.5 96.38,-474.5 129.75,-474.5 129.75,-451.5 96.38,-451.5"/>
<text text-anchor="start" x="105.94" y="-457.2" font-family="arial" font-size="14.00">11</text>
<polygon fill="none" stroke="black" points="0,-428.5 0,-451.5 96.38,-451.5 96.38,-428.5 0,-428.5"/>
<text text-anchor="start" x="9.19" y="-434.2" font-family="arial" font-size="14.00">SENSE_N_6</text>
<polygon fill="none" stroke="black" points="96.38,-428.5 96.38,-451.5 129.75,-451.5 129.75,-428.5 96.38,-428.5"/>
<text text-anchor="start" x="105.56" y="-434.2" font-family="arial" font-size="14.00">24</text>
<polygon fill="none" stroke="black" points="0,-405.5 0,-428.5 96.38,-428.5 96.38,-405.5 0,-405.5"/>
<text text-anchor="start" x="32.81" y="-411.2" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="96.38,-405.5 96.38,-428.5 129.75,-428.5 129.75,-405.5 96.38,-405.5"/>
<text text-anchor="start" x="105.56" y="-411.2" font-family="arial" font-size="14.00">13</text>
</g>
<!-- W1 -->
<g id="node3" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" points="540,-800 276,-800 276,-328 540,-328 540,-800"/>
<polygon fill="none" stroke="black" points="276,-777 276,-800 540,-800 540,-777 276,-777"/>
<text text-anchor="start" x="397" y="-784.8" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="276,-754 276,-777 330,-777 330,-754 276,-754"/>
<text text-anchor="start" x="292" y="-761.8" font-family="arial" font-size="14.00">12x</text>
<polygon fill="none" stroke="black" points="330,-754 330,-777 421,-777 421,-754 330,-754"/>
<text text-anchor="start" x="346" y="-761.8" font-family="arial" font-size="14.00">0.25 mm²</text>
<polygon fill="none" stroke="black" points="421,-754 421,-777 474,-777 474,-754 421,-754"/>
<text text-anchor="start" x="436.5" y="-761.8" font-family="arial" font-size="14.00">+ S</text>
<polygon fill="none" stroke="black" points="474,-754 474,-777 540,-777 540,-754 474,-754"/>
<text text-anchor="start" x="489.5" y="-761.8" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="335" y="-740.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="278" y="-721.8" font-family="arial" font-size="14.00">X1:14:SENSE_N_1</text>
<text text-anchor="start" x="411" y="-721.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:WH &#160;&#160;&#160;</text>
<text text-anchor="start" x="499" y="-721.8" font-family="arial" font-size="14.00">X2:z2</text>
<polygon fill="#000000" stroke="none" points="276,-714 276,-716 540,-716 540,-714 276,-714"/>
<polygon fill="#ffffff" stroke="none" points="276,-712 276,-714 540,-714 540,-712 276,-712"/>
<polygon fill="#ffffff" stroke="none" points="276,-710 276,-712 540,-712 540,-710 276,-710"/>
<polygon fill="#ffffff" stroke="none" points="276,-708 276,-710 540,-710 540,-708 276,-708"/>
<polygon fill="#000000" stroke="none" points="276,-706 276,-708 540,-708 540,-706 276,-706"/>
<text text-anchor="start" x="282.5" y="-692.8" font-family="arial" font-size="14.00">X1:1:SENSE_P_1</text>
<text text-anchor="start" x="413.5" y="-692.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="498.5" y="-692.8" font-family="arial" font-size="14.00">X2:d4</text>
<polygon fill="#000000" stroke="none" points="276,-685 276,-687 540,-687 540,-685 276,-685"/>
<polygon fill="#895956" stroke="none" points="276,-683 276,-685 540,-685 540,-683 276,-683"/>
<polygon fill="#895956" stroke="none" points="276,-681 276,-683 540,-683 540,-681 276,-681"/>
<polygon fill="#895956" stroke="none" points="276,-679 276,-681 540,-681 540,-679 276,-679"/>
<polygon fill="#000000" stroke="none" points="276,-677 276,-679 540,-679 540,-677 276,-677"/>
<text text-anchor="start" x="278" y="-663.8" font-family="arial" font-size="14.00">X1:16:SENSE_N_2</text>
<text text-anchor="start" x="412" y="-663.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="499" y="-663.8" font-family="arial" font-size="14.00">X2:z8</text>
<polygon fill="#000000" stroke="none" points="276,-656 276,-658 540,-658 540,-656 276,-656"/>
<polygon fill="#00ff00" stroke="none" points="276,-654 276,-656 540,-656 540,-654 276,-654"/>
<polygon fill="#00ff00" stroke="none" points="276,-652 276,-654 540,-654 540,-652 276,-652"/>
<polygon fill="#00ff00" stroke="none" points="276,-650 276,-652 540,-652 540,-650 276,-650"/>
<polygon fill="#000000" stroke="none" points="276,-648 276,-650 540,-650 540,-648 276,-648"/>
<text text-anchor="start" x="282.5" y="-634.8" font-family="arial" font-size="14.00">X1:3:SENSE_P_2</text>
<text text-anchor="start" x="413.5" y="-634.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="495" y="-634.8" font-family="arial" font-size="14.00">X2:d10</text>
<polygon fill="#000000" stroke="none" points="276,-627 276,-629 540,-629 540,-627 276,-627"/>
<polygon fill="#ffff00" stroke="none" points="276,-625 276,-627 540,-627 540,-625 276,-625"/>
<polygon fill="#ffff00" stroke="none" points="276,-623 276,-625 540,-625 540,-623 276,-623"/>
<polygon fill="#ffff00" stroke="none" points="276,-621 276,-623 540,-623 540,-621 276,-621"/>
<polygon fill="#000000" stroke="none" points="276,-619 276,-621 540,-621 540,-619 276,-619"/>
<text text-anchor="start" x="278" y="-605.8" font-family="arial" font-size="14.00">X1:18:SENSE_N_3</text>
<text text-anchor="start" x="412.5" y="-605.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;5:GY &#160;&#160;&#160;</text>
<text text-anchor="start" x="495" y="-605.8" font-family="arial" font-size="14.00">X2:z14</text>
<polygon fill="#000000" stroke="none" points="276,-598 276,-600 540,-600 540,-598 276,-598"/>
<polygon fill="#999999" stroke="none" points="276,-596 276,-598 540,-598 540,-596 276,-596"/>
<polygon fill="#999999" stroke="none" points="276,-594 276,-596 540,-596 540,-594 276,-594"/>
<polygon fill="#999999" stroke="none" points="276,-592 276,-594 540,-594 540,-592 276,-592"/>
<polygon fill="#000000" stroke="none" points="276,-590 276,-592 540,-592 540,-590 276,-590"/>
<text text-anchor="start" x="282.5" y="-576.8" font-family="arial" font-size="14.00">X1:5:SENSE_P_3</text>
<text text-anchor="start" x="413.5" y="-576.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;6:PK &#160;&#160;&#160;</text>
<text text-anchor="start" x="495" y="-576.8" font-family="arial" font-size="14.00">X2:d16</text>
<polygon fill="#000000" stroke="none" points="276,-569 276,-571 540,-571 540,-569 276,-569"/>
<polygon fill="#ff66cc" stroke="none" points="276,-567 276,-569 540,-569 540,-567 276,-567"/>
<polygon fill="#ff66cc" stroke="none" points="276,-565 276,-567 540,-567 540,-565 276,-565"/>
<polygon fill="#ff66cc" stroke="none" points="276,-563 276,-565 540,-565 540,-563 276,-563"/>
<polygon fill="#000000" stroke="none" points="276,-561 276,-563 540,-563 540,-561 276,-561"/>
<text text-anchor="start" x="278" y="-547.8" font-family="arial" font-size="14.00">X1:20:SENSE_N_4</text>
<text text-anchor="start" x="413.5" y="-547.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;7:BU &#160;&#160;&#160;</text>
<text text-anchor="start" x="495" y="-547.8" font-family="arial" font-size="14.00">X2:z18</text>
<polygon fill="#000000" stroke="none" points="276,-540 276,-542 540,-542 540,-540 276,-540"/>
<polygon fill="#0066ff" stroke="none" points="276,-538 276,-540 540,-540 540,-538 276,-538"/>
<polygon fill="#0066ff" stroke="none" points="276,-536 276,-538 540,-538 540,-536 276,-536"/>
<polygon fill="#0066ff" stroke="none" points="276,-534 276,-536 540,-536 540,-534 276,-534"/>
<polygon fill="#000000" stroke="none" points="276,-532 276,-534 540,-534 540,-532 276,-532"/>
<text text-anchor="start" x="282.5" y="-518.8" font-family="arial" font-size="14.00">X1:7:SENSE_P_4</text>
<text text-anchor="start" x="413" y="-518.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;8:RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="495" y="-518.8" font-family="arial" font-size="14.00">X2:d20</text>
<polygon fill="#000000" stroke="none" points="276,-511 276,-513 540,-513 540,-511 276,-511"/>
<polygon fill="#ff0000" stroke="none" points="276,-509 276,-511 540,-511 540,-509 276,-509"/>
<polygon fill="#ff0000" stroke="none" points="276,-507 276,-509 540,-509 540,-507 276,-507"/>
<polygon fill="#ff0000" stroke="none" points="276,-505 276,-507 540,-507 540,-505 276,-505"/>
<polygon fill="#000000" stroke="none" points="276,-503 276,-505 540,-505 540,-503 276,-503"/>
<text text-anchor="start" x="278" y="-489.8" font-family="arial" font-size="14.00">X1:22:SENSE_N_5</text>
<text text-anchor="start" x="413.5" y="-489.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;9:BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="495" y="-489.8" font-family="arial" font-size="14.00">X2:z24</text>
<polygon fill="#000000" stroke="none" points="276,-482 276,-484 540,-484 540,-482 276,-482"/>
<polygon fill="#000000" stroke="none" points="276,-480 276,-482 540,-482 540,-480 276,-480"/>
<polygon fill="#000000" stroke="none" points="276,-478 276,-480 540,-480 540,-478 276,-478"/>
<polygon fill="#000000" stroke="none" points="276,-476 276,-478 540,-478 540,-476 276,-476"/>
<polygon fill="#000000" stroke="none" points="276,-474 276,-476 540,-476 540,-474 276,-474"/>
<text text-anchor="start" x="282.5" y="-460.8" font-family="arial" font-size="14.00">X1:9:SENSE_P_5</text>
<text text-anchor="start" x="410.5" y="-460.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;10:VT &#160;&#160;&#160;</text>
<text text-anchor="start" x="495" y="-460.8" font-family="arial" font-size="14.00">X2:d26</text>
<polygon fill="#000000" stroke="none" points="276,-453 276,-455 540,-455 540,-453 276,-453"/>
<polygon fill="#8000ff" stroke="none" points="276,-451 276,-453 540,-453 540,-451 276,-451"/>
<polygon fill="#8000ff" stroke="none" points="276,-449 276,-451 540,-451 540,-449 276,-449"/>
<polygon fill="#8000ff" stroke="none" points="276,-447 276,-449 540,-449 540,-447 276,-447"/>
<polygon fill="#000000" stroke="none" points="276,-445 276,-447 540,-447 540,-445 276,-445"/>
<text text-anchor="start" x="278" y="-431.8" font-family="arial" font-size="14.00">X1:24:SENSE_N_6</text>
<text text-anchor="start" x="400" y="-431.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;11:GYPK &#160;&#160;&#160;</text>
<text text-anchor="start" x="495" y="-431.8" font-family="arial" font-size="14.00">X2:z30</text>
<polygon fill="#000000" stroke="none" points="276,-424 276,-426 540,-426 540,-424 276,-424"/>
<polygon fill="#999999" stroke="none" points="276,-422 276,-424 540,-424 540,-422 276,-422"/>
<polygon fill="#ff66cc" stroke="none" points="276,-420 276,-422 540,-422 540,-420 276,-420"/>
<polygon fill="#999999" stroke="none" points="276,-418 276,-420 540,-420 540,-418 276,-418"/>
<polygon fill="#000000" stroke="none" points="276,-416 276,-418 540,-418 540,-416 276,-416"/>
<text text-anchor="start" x="279" y="-402.8" font-family="arial" font-size="14.00">X1:11:SENSE_P_6</text>
<text text-anchor="start" x="400" y="-402.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;12:RDBU &#160;&#160;&#160;</text>
<text text-anchor="start" x="495" y="-402.8" font-family="arial" font-size="14.00">X2:d32</text>
<polygon fill="#000000" stroke="none" points="276,-395 276,-397 540,-397 540,-395 276,-395"/>
<polygon fill="#ff0000" stroke="none" points="276,-393 276,-395 540,-395 540,-393 276,-393"/>
<polygon fill="#0066ff" stroke="none" points="276,-391 276,-393 540,-393 540,-391 276,-391"/>
<polygon fill="#ff0000" stroke="none" points="276,-389 276,-391 540,-391 540,-389 276,-389"/>
<polygon fill="#000000" stroke="none" points="276,-387 276,-389 540,-389 540,-387 276,-387"/>
<text text-anchor="start" x="335" y="-373.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="302" y="-354.8" font-family="arial" font-size="14.00">X1:13:GND</text>
<text text-anchor="start" x="426.5" y="-354.8" font-family="arial" font-size="14.00">Shield</text>
<polygon fill="#000000" stroke="none" points="276,-347 276,-349 540,-349 540,-347 276,-347"/>
<text text-anchor="start" x="335" y="-333.8" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" points="534.75,-820.5 273.75,-820.5 273.75,-347 534.75,-347 534.75,-820.5"/>
<polygon fill="none" stroke="black" points="273.75,-796.75 273.75,-820.5 534.75,-820.5 534.75,-796.75 273.75,-796.75"/>
<text text-anchor="start" x="393.75" y="-803.2" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="273.75,-773 273.75,-796.75 326.81,-796.75 326.81,-773 273.75,-773"/>
<text text-anchor="start" x="289.41" y="-779.45" font-family="arial" font-size="14.00">12x</text>
<polygon fill="none" stroke="black" points="326.81,-773 326.81,-796.75 416.62,-796.75 416.62,-773 326.81,-773"/>
<text text-anchor="start" x="342.47" y="-779.45" font-family="arial" font-size="14.00">0.25 mm²</text>
<polygon fill="none" stroke="black" points="416.62,-773 416.62,-796.75 468.94,-796.75 468.94,-773 416.62,-773"/>
<text text-anchor="start" x="432.28" y="-779.45" font-family="arial" font-size="14.00">+ S</text>
<polygon fill="none" stroke="black" points="468.94,-773 468.94,-796.75 534.75,-796.75 534.75,-773 468.94,-773"/>
<text text-anchor="start" x="484.59" y="-779.45" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="332.38" y="-757.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="275.75" y="-738.7" font-family="arial" font-size="14.00">X1:14:SENSE_N_1</text>
<text text-anchor="start" x="407.62" y="-738.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:WH &#160;&#160;&#160;</text>
<text text-anchor="start" x="494.5" y="-738.7" font-family="arial" font-size="14.00">X2:z2</text>
<polygon fill="#000000" stroke="none" points="273.75,-733 273.75,-735 534.75,-735 534.75,-733 273.75,-733"/>
<polygon fill="#ffffff" stroke="none" points="273.75,-731 273.75,-733 534.75,-733 534.75,-731 273.75,-731"/>
<polygon fill="#ffffff" stroke="none" points="273.75,-729 273.75,-731 534.75,-731 534.75,-729 273.75,-729"/>
<polygon fill="#ffffff" stroke="none" points="273.75,-727 273.75,-729 534.75,-729 534.75,-727 273.75,-727"/>
<polygon fill="#000000" stroke="none" points="273.75,-725 273.75,-727 534.75,-727 534.75,-725 273.75,-725"/>
<text text-anchor="start" x="279.88" y="-709.7" font-family="arial" font-size="14.00">X1:1:SENSE_P_1</text>
<text text-anchor="start" x="409.88" y="-709.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="494.12" y="-709.7" font-family="arial" font-size="14.00">X2:d4</text>
<polygon fill="#000000" stroke="none" points="273.75,-704 273.75,-706 534.75,-706 534.75,-704 273.75,-704"/>
<polygon fill="#895956" stroke="none" points="273.75,-702 273.75,-704 534.75,-704 534.75,-702 273.75,-702"/>
<polygon fill="#895956" stroke="none" points="273.75,-700 273.75,-702 534.75,-702 534.75,-700 273.75,-700"/>
<polygon fill="#895956" stroke="none" points="273.75,-698 273.75,-700 534.75,-700 534.75,-698 273.75,-698"/>
<polygon fill="#000000" stroke="none" points="273.75,-696 273.75,-698 534.75,-698 534.75,-696 273.75,-696"/>
<text text-anchor="start" x="275.75" y="-680.7" font-family="arial" font-size="14.00">X1:16:SENSE_N_2</text>
<text text-anchor="start" x="408.75" y="-680.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="494.5" y="-680.7" font-family="arial" font-size="14.00">X2:z8</text>
<polygon fill="#000000" stroke="none" points="273.75,-675 273.75,-677 534.75,-677 534.75,-675 273.75,-675"/>
<polygon fill="#00ff00" stroke="none" points="273.75,-673 273.75,-675 534.75,-675 534.75,-673 273.75,-673"/>
<polygon fill="#00ff00" stroke="none" points="273.75,-671 273.75,-673 534.75,-673 534.75,-671 273.75,-671"/>
<polygon fill="#00ff00" stroke="none" points="273.75,-669 273.75,-671 534.75,-671 534.75,-669 273.75,-669"/>
<polygon fill="#000000" stroke="none" points="273.75,-667 273.75,-669 534.75,-669 534.75,-667 273.75,-667"/>
<text text-anchor="start" x="279.88" y="-651.7" font-family="arial" font-size="14.00">X1:3:SENSE_P_2</text>
<text text-anchor="start" x="410.25" y="-651.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="490.38" y="-651.7" font-family="arial" font-size="14.00">X2:d10</text>
<polygon fill="#000000" stroke="none" points="273.75,-646 273.75,-648 534.75,-648 534.75,-646 273.75,-646"/>
<polygon fill="#ffff00" stroke="none" points="273.75,-644 273.75,-646 534.75,-646 534.75,-644 273.75,-644"/>
<polygon fill="#ffff00" stroke="none" points="273.75,-642 273.75,-644 534.75,-644 534.75,-642 273.75,-642"/>
<polygon fill="#ffff00" stroke="none" points="273.75,-640 273.75,-642 534.75,-642 534.75,-640 273.75,-640"/>
<polygon fill="#000000" stroke="none" points="273.75,-638 273.75,-640 534.75,-640 534.75,-638 273.75,-638"/>
<text text-anchor="start" x="275.75" y="-622.7" font-family="arial" font-size="14.00">X1:18:SENSE_N_3</text>
<text text-anchor="start" x="409.12" y="-622.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;5:GY &#160;&#160;&#160;</text>
<text text-anchor="start" x="490.75" y="-622.7" font-family="arial" font-size="14.00">X2:z14</text>
<polygon fill="#000000" stroke="none" points="273.75,-617 273.75,-619 534.75,-619 534.75,-617 273.75,-617"/>
<polygon fill="#999999" stroke="none" points="273.75,-615 273.75,-617 534.75,-617 534.75,-615 273.75,-615"/>
<polygon fill="#999999" stroke="none" points="273.75,-613 273.75,-615 534.75,-615 534.75,-613 273.75,-613"/>
<polygon fill="#999999" stroke="none" points="273.75,-611 273.75,-613 534.75,-613 534.75,-611 273.75,-611"/>
<polygon fill="#000000" stroke="none" points="273.75,-609 273.75,-611 534.75,-611 534.75,-609 273.75,-609"/>
<text text-anchor="start" x="279.88" y="-593.7" font-family="arial" font-size="14.00">X1:5:SENSE_P_3</text>
<text text-anchor="start" x="410.25" y="-593.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;6:PK &#160;&#160;&#160;</text>
<text text-anchor="start" x="490.38" y="-593.7" font-family="arial" font-size="14.00">X2:d16</text>
<polygon fill="#000000" stroke="none" points="273.75,-588 273.75,-590 534.75,-590 534.75,-588 273.75,-588"/>
<polygon fill="#ff66cc" stroke="none" points="273.75,-586 273.75,-588 534.75,-588 534.75,-586 273.75,-586"/>
<polygon fill="#ff66cc" stroke="none" points="273.75,-584 273.75,-586 534.75,-586 534.75,-584 273.75,-584"/>
<polygon fill="#ff66cc" stroke="none" points="273.75,-582 273.75,-584 534.75,-584 534.75,-582 273.75,-582"/>
<polygon fill="#000000" stroke="none" points="273.75,-580 273.75,-582 534.75,-582 534.75,-580 273.75,-580"/>
<text text-anchor="start" x="275.75" y="-564.7" font-family="arial" font-size="14.00">X1:20:SENSE_N_4</text>
<text text-anchor="start" x="409.88" y="-564.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;7:BU &#160;&#160;&#160;</text>
<text text-anchor="start" x="490.75" y="-564.7" font-family="arial" font-size="14.00">X2:z18</text>
<polygon fill="#000000" stroke="none" points="273.75,-559 273.75,-561 534.75,-561 534.75,-559 273.75,-559"/>
<polygon fill="#0066ff" stroke="none" points="273.75,-557 273.75,-559 534.75,-559 534.75,-557 273.75,-557"/>
<polygon fill="#0066ff" stroke="none" points="273.75,-555 273.75,-557 534.75,-557 534.75,-555 273.75,-555"/>
<polygon fill="#0066ff" stroke="none" points="273.75,-553 273.75,-555 534.75,-555 534.75,-553 273.75,-553"/>
<polygon fill="#000000" stroke="none" points="273.75,-551 273.75,-553 534.75,-553 534.75,-551 273.75,-551"/>
<text text-anchor="start" x="279.88" y="-535.7" font-family="arial" font-size="14.00">X1:7:SENSE_P_4</text>
<text text-anchor="start" x="409.5" y="-535.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;8:RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="490.38" y="-535.7" font-family="arial" font-size="14.00">X2:d20</text>
<polygon fill="#000000" stroke="none" points="273.75,-530 273.75,-532 534.75,-532 534.75,-530 273.75,-530"/>
<polygon fill="#ff0000" stroke="none" points="273.75,-528 273.75,-530 534.75,-530 534.75,-528 273.75,-528"/>
<polygon fill="#ff0000" stroke="none" points="273.75,-526 273.75,-528 534.75,-528 534.75,-526 273.75,-526"/>
<polygon fill="#ff0000" stroke="none" points="273.75,-524 273.75,-526 534.75,-526 534.75,-524 273.75,-524"/>
<polygon fill="#000000" stroke="none" points="273.75,-522 273.75,-524 534.75,-524 534.75,-522 273.75,-522"/>
<text text-anchor="start" x="275.75" y="-506.7" font-family="arial" font-size="14.00">X1:22:SENSE_N_5</text>
<text text-anchor="start" x="410.25" y="-506.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;9:BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="490.75" y="-506.7" font-family="arial" font-size="14.00">X2:z24</text>
<polygon fill="#000000" stroke="none" points="273.75,-501 273.75,-503 534.75,-503 534.75,-501 273.75,-501"/>
<polygon fill="#000000" stroke="none" points="273.75,-499 273.75,-501 534.75,-501 534.75,-499 273.75,-499"/>
<polygon fill="#000000" stroke="none" points="273.75,-497 273.75,-499 534.75,-499 534.75,-497 273.75,-497"/>
<polygon fill="#000000" stroke="none" points="273.75,-495 273.75,-497 534.75,-497 534.75,-495 273.75,-495"/>
<polygon fill="#000000" stroke="none" points="273.75,-493 273.75,-495 534.75,-495 534.75,-493 273.75,-493"/>
<text text-anchor="start" x="279.88" y="-477.7" font-family="arial" font-size="14.00">X1:9:SENSE_P_5</text>
<text text-anchor="start" x="406.88" y="-477.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;10:VT &#160;&#160;&#160;</text>
<text text-anchor="start" x="490.38" y="-477.7" font-family="arial" font-size="14.00">X2:d26</text>
<polygon fill="#000000" stroke="none" points="273.75,-472 273.75,-474 534.75,-474 534.75,-472 273.75,-472"/>
<polygon fill="#8000ff" stroke="none" points="273.75,-470 273.75,-472 534.75,-472 534.75,-470 273.75,-470"/>
<polygon fill="#8000ff" stroke="none" points="273.75,-468 273.75,-470 534.75,-470 534.75,-468 273.75,-468"/>
<polygon fill="#8000ff" stroke="none" points="273.75,-466 273.75,-468 534.75,-468 534.75,-466 273.75,-466"/>
<polygon fill="#000000" stroke="none" points="273.75,-464 273.75,-466 534.75,-466 534.75,-464 273.75,-464"/>
<text text-anchor="start" x="275.75" y="-448.7" font-family="arial" font-size="14.00">X1:24:SENSE_N_6</text>
<text text-anchor="start" x="396.75" y="-448.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;11:GYPK &#160;&#160;&#160;</text>
<text text-anchor="start" x="490.75" y="-448.7" font-family="arial" font-size="14.00">X2:z30</text>
<polygon fill="#000000" stroke="none" points="273.75,-443 273.75,-445 534.75,-445 534.75,-443 273.75,-443"/>
<polygon fill="#999999" stroke="none" points="273.75,-441 273.75,-443 534.75,-443 534.75,-441 273.75,-441"/>
<polygon fill="#ff66cc" stroke="none" points="273.75,-439 273.75,-441 534.75,-441 534.75,-439 273.75,-439"/>
<polygon fill="#999999" stroke="none" points="273.75,-437 273.75,-439 534.75,-439 534.75,-437 273.75,-437"/>
<polygon fill="#000000" stroke="none" points="273.75,-435 273.75,-437 534.75,-437 534.75,-435 273.75,-435"/>
<text text-anchor="start" x="276.5" y="-419.7" font-family="arial" font-size="14.00">X1:11:SENSE_P_6</text>
<text text-anchor="start" x="396.38" y="-419.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;12:RDBU &#160;&#160;&#160;</text>
<text text-anchor="start" x="490.38" y="-419.7" font-family="arial" font-size="14.00">X2:d32</text>
<polygon fill="#000000" stroke="none" points="273.75,-414 273.75,-416 534.75,-416 534.75,-414 273.75,-414"/>
<polygon fill="#ff0000" stroke="none" points="273.75,-412 273.75,-414 534.75,-414 534.75,-412 273.75,-412"/>
<polygon fill="#0066ff" stroke="none" points="273.75,-410 273.75,-412 534.75,-412 534.75,-410 273.75,-410"/>
<polygon fill="#ff0000" stroke="none" points="273.75,-408 273.75,-410 534.75,-410 534.75,-408 273.75,-408"/>
<polygon fill="#000000" stroke="none" points="273.75,-406 273.75,-408 534.75,-408 534.75,-406 273.75,-406"/>
<text text-anchor="start" x="332.38" y="-390.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="299.38" y="-371.7" font-family="arial" font-size="14.00">X1:13:GND</text>
<text text-anchor="start" x="423" y="-371.7" font-family="arial" font-size="14.00">Shield</text>
<polygon fill="#000000" stroke="none" points="273.75,-366 273.75,-368 534.75,-368 534.75,-366 273.75,-366"/>
<text text-anchor="start" x="332.38" y="-350.7" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge1" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-671C197.69,-671.34 213.54,-678.34 276,-678"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M132,-673C196.88,-673.17 212.73,-680.17 276,-680"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M132,-675C196.08,-675 211.92,-682 276,-682"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M132,-677C195.27,-676.83 211.12,-683.83 276,-684"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-679C194.46,-678.66 210.31,-685.66 276,-686"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-688.75C195.66,-689.18 211.46,-697.18 273.75,-696.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M129.75,-690.75C194.75,-690.97 210.55,-698.97 273.75,-698.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M129.75,-692.75C193.85,-692.75 209.65,-700.75 273.75,-700.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M129.75,-694.75C192.95,-694.53 208.75,-702.53 273.75,-702.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-696.75C192.04,-696.32 207.84,-704.32 273.75,-704.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge3" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-648C205.15,-651.62 210.82,-710.62 276,-707"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M132,-650C203.15,-651.81 208.83,-710.81 276,-709"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M132,-652C201.16,-652 206.84,-711 276,-711"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M132,-654C199.17,-652.19 204.85,-711.19 276,-713"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-656C197.18,-652.38 202.85,-711.38 276,-715"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-665.75C203.07,-669.4 208.4,-729.4 273.75,-725.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M129.75,-667.75C201.08,-669.57 206.41,-729.57 273.75,-727.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M129.75,-669.75C199.08,-669.75 204.42,-729.75 273.75,-729.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M129.75,-671.75C197.09,-669.93 202.42,-729.93 273.75,-731.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-673.75C195.1,-670.1 200.43,-730.1 273.75,-733.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge5" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-625C194.84,-625.18 210.76,-620.18 276,-620"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M132,-627C195.44,-627.09 211.36,-622.09 276,-622"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M132,-629C196.04,-629 211.96,-624 276,-624"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M132,-631C196.64,-630.91 212.56,-625.91 276,-626"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-633C197.24,-632.82 213.16,-627.82 276,-628"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-642.75C192.8,-642.87 208.75,-638.87 273.75,-638.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M129.75,-644.75C193.29,-644.81 209.24,-640.81 273.75,-640.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M129.75,-646.75C193.77,-646.75 209.73,-642.75 273.75,-642.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M129.75,-648.75C194.26,-648.69 210.21,-644.69 273.75,-644.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-650.75C194.75,-650.63 210.7,-646.63 273.75,-646.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge7" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-602C203.25,-605.22 212.6,-652.22 276,-649"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M132,-604C201.28,-605.61 210.64,-652.61 276,-651"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M132,-606C199.32,-606 208.68,-653 276,-653"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M132,-608C197.36,-606.39 206.72,-653.39 276,-655"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-610C195.4,-606.78 204.75,-653.78 276,-657"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-619.75C201.14,-623.01 210.22,-671.01 273.75,-667.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M129.75,-621.75C199.18,-623.38 208.25,-671.38 273.75,-669.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M129.75,-623.75C197.21,-623.75 206.29,-671.75 273.75,-671.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M129.75,-625.75C195.25,-624.12 204.32,-672.12 273.75,-673.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-627.75C193.28,-624.49 202.36,-672.49 273.75,-675.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge9" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-579C193.45,-580.34 208.57,-563.34 276,-562"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M132,-581C194.95,-581.67 210.06,-564.67 276,-564"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M132,-583C196.44,-583 211.56,-566 276,-566"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M132,-585C197.94,-584.33 213.05,-567.33 276,-568"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-587C199.43,-585.66 214.55,-568.66 276,-570"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-596.75C191.24,-597.99 206.46,-581.99 273.75,-580.75"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M129.75,-598.75C192.69,-599.37 207.91,-583.37 273.75,-582.75"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M129.75,-600.75C194.14,-600.75 209.36,-584.75 273.75,-584.75"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M129.75,-602.75C195.59,-602.13 210.81,-586.13 273.75,-586.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-604.75C197.04,-603.51 212.26,-587.51 273.75,-588.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge11" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-555C201.76,-557.73 213.82,-593.73 276,-591"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M132,-557C199.87,-558.36 211.93,-594.36 276,-593"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M132,-559C197.97,-559 210.03,-595 276,-595"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M132,-561C196.07,-559.64 208.13,-595.64 276,-597"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-563C194.18,-560.27 206.24,-596.27 276,-599"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-573.75C199.51,-576.48 211.57,-612.48 273.75,-609.75"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M129.75,-575.75C197.62,-577.11 209.68,-613.11 273.75,-611.75"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M129.75,-577.75C195.72,-577.75 207.78,-613.75 273.75,-613.75"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M129.75,-579.75C193.82,-578.39 205.88,-614.39 273.75,-615.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-581.75C191.93,-579.02 203.99,-615.02 273.75,-617.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge13" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-532C193.6,-534.25 207.2,-506.25 276,-504"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M132,-534C195.4,-535.13 209,-507.13 276,-506"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M132,-536C197.2,-536 210.8,-508 276,-508"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M132,-538C199,-536.87 212.6,-508.87 276,-510"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-540C200.8,-537.75 214.4,-509.75 276,-512"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-550.75C191.35,-553 204.95,-525 273.75,-522.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M129.75,-552.75C193.15,-553.88 206.75,-525.88 273.75,-524.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M129.75,-554.75C194.95,-554.75 208.55,-526.75 273.75,-526.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M129.75,-556.75C196.75,-555.62 210.35,-527.62 273.75,-528.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-558.75C198.55,-556.5 212.15,-528.5 273.75,-530.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge15" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-509C200.32,-510.96 214.56,-534.96 276,-533"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M132,-511C198.6,-511.98 212.84,-535.98 276,-535"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M132,-513C196.88,-513 211.12,-537 276,-537"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M132,-515C195.16,-514.02 209.4,-538.02 276,-539"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-517C193.44,-515.04 207.68,-539.04 276,-541"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-527.75C198.07,-529.71 212.31,-553.71 273.75,-551.75"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M129.75,-529.75C196.35,-530.73 210.59,-554.73 273.75,-553.75"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M129.75,-531.75C194.63,-531.75 208.87,-555.75 273.75,-555.75"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M129.75,-533.75C192.91,-532.77 207.15,-556.77 273.75,-557.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-535.75C191.19,-533.79 205.43,-557.79 273.75,-559.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge17" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-486C194.57,-488.93 205.72,-448.93 276,-446"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M132,-488C196.5,-489.46 207.65,-449.46 276,-448"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M132,-490C198.42,-490 209.58,-450 276,-450"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M132,-492C200.35,-490.54 211.5,-450.54 276,-452"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-494C202.28,-491.07 213.43,-451.07 276,-454"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-504.75C192.32,-507.68 203.47,-467.68 273.75,-464.75"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M129.75,-506.75C194.25,-508.21 205.4,-468.21 273.75,-466.75"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M129.75,-508.75C196.17,-508.75 207.33,-468.75 273.75,-468.75"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M129.75,-510.75C198.1,-509.29 209.25,-469.29 273.75,-470.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-512.75C200.03,-509.82 211.18,-469.82 273.75,-472.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge19" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-463C198.66,-463.83 214.22,-475.83 276,-475"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-465C197.44,-465.42 213,-477.42 276,-477"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-467C196.22,-467 211.78,-479 276,-479"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-469C195,-468.58 210.56,-480.58 276,-481"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-471C193.78,-470.17 209.34,-482.17 276,-483"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-481.75C196.41,-482.58 211.97,-494.58 273.75,-493.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-483.75C195.19,-484.17 210.75,-496.17 273.75,-495.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-485.75C193.97,-485.75 209.53,-497.75 273.75,-497.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-487.75C192.75,-487.33 208.31,-499.33 273.75,-499.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-489.75C191.53,-488.92 207.09,-500.92 273.75,-501.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge21" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-440C196.09,-443.4 204,-391.4 276,-388"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M132,-442C198.07,-443.7 205.98,-391.7 276,-390"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M132,-444C200.05,-444 207.95,-392 276,-392"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M132,-446C202.02,-444.3 209.93,-392.3 276,-394"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-448C204,-444.6 211.91,-392.6 276,-396"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-458.75C193.84,-462.15 201.75,-410.15 273.75,-406.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M129.75,-460.75C195.82,-462.45 203.73,-410.45 273.75,-408.75"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M129.75,-462.75C197.8,-462.75 205.7,-410.75 273.75,-410.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M129.75,-464.75C199.77,-463.05 207.68,-411.05 273.75,-412.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-466.75C201.75,-463.35 209.66,-411.35 273.75,-414.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge23" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-417C196,-417 212,-417 276,-417"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M132,-419C196,-419 212,-419 276,-419"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M132,-421C196,-421 212,-421 276,-421"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M132,-423C196,-423 212,-423 276,-423"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-425C196,-425 212,-425 276,-425"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-435.75C193.75,-435.75 209.75,-435.75 273.75,-435.75"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M129.75,-437.75C193.75,-437.75 209.75,-437.75 273.75,-437.75"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M129.75,-439.75C193.75,-439.75 209.75,-439.75 273.75,-439.75"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M129.75,-441.75C193.75,-441.75 209.75,-441.75 273.75,-441.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-443.75C193.75,-443.75 209.75,-443.75 273.75,-443.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge25" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-398C199.75,-398 208.25,-348 276,-348"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-416.75C197.5,-416.75 206,-366.75 273.75,-366.75"/>
</g>
<!-- X2 -->
<g id="node2" class="node">
<title>X2</title>
<polygon fill="#ffffff" stroke="black" points="812,-1150 684,-1150 684,0 812,0 812,-1150"/>
<polygon fill="none" stroke="black" points="684,-1127 684,-1150 812,-1150 812,-1127 684,-1127"/>
<text text-anchor="start" x="739.5" y="-1134.8" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="684,-1104 684,-1127 716,-1127 716,-1104 684,-1104"/>
<text text-anchor="start" x="688" y="-1111.8" font-family="arial" font-size="14.00">F48</text>
<polygon fill="none" stroke="black" points="716,-1104 716,-1127 766,-1127 766,-1104 716,-1104"/>
<text text-anchor="start" x="720" y="-1111.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="766,-1104 766,-1127 812,-1127 812,-1104 766,-1104"/>
<text text-anchor="start" x="770" y="-1111.8" font-family="arial" font-size="14.00">48&#45;pin</text>
<polygon fill="none" stroke="black" points="684,-1081 684,-1104 812,-1104 812,-1081 684,-1081"/>
<text text-anchor="start" x="740.5" y="-1088.8" font-family="arial" font-size="14.00">z2</text>
<polygon fill="none" stroke="black" points="684,-1058 684,-1081 812,-1081 812,-1058 684,-1058"/>
<text text-anchor="start" x="740" y="-1065.8" font-family="arial" font-size="14.00">b2</text>
<polygon fill="none" stroke="black" points="684,-1035 684,-1058 812,-1058 812,-1035 684,-1035"/>
<text text-anchor="start" x="740" y="-1042.8" font-family="arial" font-size="14.00">d2</text>
<polygon fill="none" stroke="black" points="684,-1012 684,-1035 812,-1035 812,-1012 684,-1012"/>
<text text-anchor="start" x="740.5" y="-1019.8" font-family="arial" font-size="14.00">z4</text>
<polygon fill="none" stroke="black" points="684,-989 684,-1012 812,-1012 812,-989 684,-989"/>
<text text-anchor="start" x="740" y="-996.8" font-family="arial" font-size="14.00">b4</text>
<polygon fill="none" stroke="black" points="684,-966 684,-989 812,-989 812,-966 684,-966"/>
<text text-anchor="start" x="740" y="-973.8" font-family="arial" font-size="14.00">d4</text>
<polygon fill="none" stroke="black" points="684,-943 684,-966 812,-966 812,-943 684,-943"/>
<text text-anchor="start" x="740.5" y="-950.8" font-family="arial" font-size="14.00">z6</text>
<polygon fill="none" stroke="black" points="684,-920 684,-943 812,-943 812,-920 684,-920"/>
<text text-anchor="start" x="740" y="-927.8" font-family="arial" font-size="14.00">b6</text>
<polygon fill="none" stroke="black" points="684,-897 684,-920 812,-920 812,-897 684,-897"/>
<text text-anchor="start" x="740" y="-904.8" font-family="arial" font-size="14.00">d6</text>
<polygon fill="none" stroke="black" points="684,-874 684,-897 812,-897 812,-874 684,-874"/>
<text text-anchor="start" x="740.5" y="-881.8" font-family="arial" font-size="14.00">z8</text>
<polygon fill="none" stroke="black" points="684,-851 684,-874 812,-874 812,-851 684,-851"/>
<text text-anchor="start" x="740" y="-858.8" font-family="arial" font-size="14.00">b8</text>
<polygon fill="none" stroke="black" points="684,-828 684,-851 812,-851 812,-828 684,-828"/>
<text text-anchor="start" x="740" y="-835.8" font-family="arial" font-size="14.00">d8</text>
<polygon fill="none" stroke="black" points="684,-805 684,-828 812,-828 812,-805 684,-805"/>
<text text-anchor="start" x="737" y="-812.8" font-family="arial" font-size="14.00">z10</text>
<polygon fill="none" stroke="black" points="684,-782 684,-805 812,-805 812,-782 684,-782"/>
<text text-anchor="start" x="736.5" y="-789.8" font-family="arial" font-size="14.00">b10</text>
<polygon fill="none" stroke="black" points="684,-759 684,-782 812,-782 812,-759 684,-759"/>
<text text-anchor="start" x="736.5" y="-766.8" font-family="arial" font-size="14.00">d10</text>
<polygon fill="none" stroke="black" points="684,-736 684,-759 812,-759 812,-736 684,-736"/>
<text text-anchor="start" x="737" y="-743.8" font-family="arial" font-size="14.00">z12</text>
<polygon fill="none" stroke="black" points="684,-713 684,-736 812,-736 812,-713 684,-713"/>
<text text-anchor="start" x="736.5" y="-720.8" font-family="arial" font-size="14.00">b12</text>
<polygon fill="none" stroke="black" points="684,-690 684,-713 812,-713 812,-690 684,-690"/>
<text text-anchor="start" x="736.5" y="-697.8" font-family="arial" font-size="14.00">d12</text>
<polygon fill="none" stroke="black" points="684,-667 684,-690 812,-690 812,-667 684,-667"/>
<text text-anchor="start" x="737" y="-674.8" font-family="arial" font-size="14.00">z14</text>
<polygon fill="none" stroke="black" points="684,-644 684,-667 812,-667 812,-644 684,-644"/>
<text text-anchor="start" x="736.5" y="-651.8" font-family="arial" font-size="14.00">b14</text>
<polygon fill="none" stroke="black" points="684,-621 684,-644 812,-644 812,-621 684,-621"/>
<text text-anchor="start" x="736.5" y="-628.8" font-family="arial" font-size="14.00">d14</text>
<polygon fill="none" stroke="black" points="684,-598 684,-621 812,-621 812,-598 684,-598"/>
<text text-anchor="start" x="737" y="-605.8" font-family="arial" font-size="14.00">z16</text>
<polygon fill="none" stroke="black" points="684,-575 684,-598 812,-598 812,-575 684,-575"/>
<text text-anchor="start" x="736.5" y="-582.8" font-family="arial" font-size="14.00">b16</text>
<polygon fill="none" stroke="black" points="684,-552 684,-575 812,-575 812,-552 684,-552"/>
<text text-anchor="start" x="736.5" y="-559.8" font-family="arial" font-size="14.00">d16</text>
<polygon fill="none" stroke="black" points="684,-529 684,-552 812,-552 812,-529 684,-529"/>
<text text-anchor="start" x="737" y="-536.8" font-family="arial" font-size="14.00">z18</text>
<polygon fill="none" stroke="black" points="684,-506 684,-529 812,-529 812,-506 684,-506"/>
<text text-anchor="start" x="736.5" y="-513.8" font-family="arial" font-size="14.00">b18</text>
<polygon fill="none" stroke="black" points="684,-483 684,-506 812,-506 812,-483 684,-483"/>
<text text-anchor="start" x="736.5" y="-490.8" font-family="arial" font-size="14.00">d18</text>
<polygon fill="none" stroke="black" points="684,-460 684,-483 812,-483 812,-460 684,-460"/>
<text text-anchor="start" x="737" y="-467.8" font-family="arial" font-size="14.00">z20</text>
<polygon fill="none" stroke="black" points="684,-437 684,-460 812,-460 812,-437 684,-437"/>
<text text-anchor="start" x="736.5" y="-444.8" font-family="arial" font-size="14.00">b20</text>
<polygon fill="none" stroke="black" points="684,-414 684,-437 812,-437 812,-414 684,-414"/>
<text text-anchor="start" x="736.5" y="-421.8" font-family="arial" font-size="14.00">d20</text>
<polygon fill="none" stroke="black" points="684,-391 684,-414 812,-414 812,-391 684,-391"/>
<text text-anchor="start" x="737" y="-398.8" font-family="arial" font-size="14.00">z22</text>
<polygon fill="none" stroke="black" points="684,-368 684,-391 812,-391 812,-368 684,-368"/>
<text text-anchor="start" x="736.5" y="-375.8" font-family="arial" font-size="14.00">b22</text>
<polygon fill="none" stroke="black" points="684,-345 684,-368 812,-368 812,-345 684,-345"/>
<text text-anchor="start" x="736.5" y="-352.8" font-family="arial" font-size="14.00">d22</text>
<polygon fill="none" stroke="black" points="684,-322 684,-345 812,-345 812,-322 684,-322"/>
<text text-anchor="start" x="737" y="-329.8" font-family="arial" font-size="14.00">z24</text>
<polygon fill="none" stroke="black" points="684,-299 684,-322 812,-322 812,-299 684,-299"/>
<text text-anchor="start" x="736.5" y="-306.8" font-family="arial" font-size="14.00">b24</text>
<polygon fill="none" stroke="black" points="684,-276 684,-299 812,-299 812,-276 684,-276"/>
<text text-anchor="start" x="736.5" y="-283.8" font-family="arial" font-size="14.00">d24</text>
<polygon fill="none" stroke="black" points="684,-253 684,-276 812,-276 812,-253 684,-253"/>
<text text-anchor="start" x="737" y="-260.8" font-family="arial" font-size="14.00">z26</text>
<polygon fill="none" stroke="black" points="684,-230 684,-253 812,-253 812,-230 684,-230"/>
<text text-anchor="start" x="736.5" y="-237.8" font-family="arial" font-size="14.00">b26</text>
<polygon fill="none" stroke="black" points="684,-207 684,-230 812,-230 812,-207 684,-207"/>
<text text-anchor="start" x="736.5" y="-214.8" font-family="arial" font-size="14.00">d26</text>
<polygon fill="none" stroke="black" points="684,-184 684,-207 812,-207 812,-184 684,-184"/>
<text text-anchor="start" x="737" y="-191.8" font-family="arial" font-size="14.00">z28</text>
<polygon fill="none" stroke="black" points="684,-161 684,-184 812,-184 812,-161 684,-161"/>
<text text-anchor="start" x="736.5" y="-168.8" font-family="arial" font-size="14.00">b28</text>
<polygon fill="none" stroke="black" points="684,-138 684,-161 812,-161 812,-138 684,-138"/>
<text text-anchor="start" x="736.5" y="-145.8" font-family="arial" font-size="14.00">d28</text>
<polygon fill="none" stroke="black" points="684,-115 684,-138 812,-138 812,-115 684,-115"/>
<text text-anchor="start" x="737" y="-122.8" font-family="arial" font-size="14.00">z30</text>
<polygon fill="none" stroke="black" points="684,-92 684,-115 812,-115 812,-92 684,-92"/>
<text text-anchor="start" x="736.5" y="-99.8" font-family="arial" font-size="14.00">b30</text>
<polygon fill="none" stroke="black" points="684,-69 684,-92 812,-92 812,-69 684,-69"/>
<text text-anchor="start" x="736.5" y="-76.8" font-family="arial" font-size="14.00">d30</text>
<polygon fill="none" stroke="black" points="684,-46 684,-69 812,-69 812,-46 684,-46"/>
<text text-anchor="start" x="737" y="-53.8" font-family="arial" font-size="14.00">z32</text>
<polygon fill="none" stroke="black" points="684,-23 684,-46 812,-46 812,-23 684,-23"/>
<text text-anchor="start" x="736.5" y="-30.8" font-family="arial" font-size="14.00">b32</text>
<polygon fill="none" stroke="black" points="684,0 684,-23 812,-23 812,0 684,0"/>
<text text-anchor="start" x="736.5" y="-7.8" font-family="arial" font-size="14.00">d32</text>
<polygon fill="#ffffff" stroke="black" points="804.75,-1187.5 678.75,-1187.5 678.75,0 804.75,0 804.75,-1187.5"/>
<polygon fill="none" stroke="black" points="678.75,-1163.75 678.75,-1187.5 804.75,-1187.5 804.75,-1163.75 678.75,-1163.75"/>
<text text-anchor="start" x="733.5" y="-1170.2" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="678.75,-1140 678.75,-1163.75 710,-1163.75 710,-1140 678.75,-1140"/>
<text text-anchor="start" x="682.75" y="-1146.45" font-family="arial" font-size="14.00">F48</text>
<polygon fill="none" stroke="black" points="710,-1140 710,-1163.75 759.25,-1163.75 759.25,-1140 710,-1140"/>
<text text-anchor="start" x="714" y="-1146.45" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="759.25,-1140 759.25,-1163.75 804.75,-1163.75 804.75,-1140 759.25,-1140"/>
<text text-anchor="start" x="763.25" y="-1146.45" font-family="arial" font-size="14.00">48&#45;pin</text>
<polygon fill="none" stroke="black" points="678.75,-1116.25 678.75,-1140 804.75,-1140 804.75,-1116.25 678.75,-1116.25"/>
<text text-anchor="start" x="734.62" y="-1122.7" font-family="arial" font-size="14.00">z2</text>
<polygon fill="none" stroke="black" points="678.75,-1092.5 678.75,-1116.25 804.75,-1116.25 804.75,-1092.5 678.75,-1092.5"/>
<text text-anchor="start" x="734.25" y="-1098.95" font-family="arial" font-size="14.00">b2</text>
<polygon fill="none" stroke="black" points="678.75,-1068.75 678.75,-1092.5 804.75,-1092.5 804.75,-1068.75 678.75,-1068.75"/>
<text text-anchor="start" x="734.25" y="-1075.2" font-family="arial" font-size="14.00">d2</text>
<polygon fill="none" stroke="black" points="678.75,-1045 678.75,-1068.75 804.75,-1068.75 804.75,-1045 678.75,-1045"/>
<text text-anchor="start" x="734.62" y="-1051.45" font-family="arial" font-size="14.00">z4</text>
<polygon fill="none" stroke="black" points="678.75,-1021.25 678.75,-1045 804.75,-1045 804.75,-1021.25 678.75,-1021.25"/>
<text text-anchor="start" x="734.25" y="-1027.7" font-family="arial" font-size="14.00">b4</text>
<polygon fill="none" stroke="black" points="678.75,-997.5 678.75,-1021.25 804.75,-1021.25 804.75,-997.5 678.75,-997.5"/>
<text text-anchor="start" x="734.25" y="-1003.95" font-family="arial" font-size="14.00">d4</text>
<polygon fill="none" stroke="black" points="678.75,-973.75 678.75,-997.5 804.75,-997.5 804.75,-973.75 678.75,-973.75"/>
<text text-anchor="start" x="734.62" y="-980.2" font-family="arial" font-size="14.00">z6</text>
<polygon fill="none" stroke="black" points="678.75,-950 678.75,-973.75 804.75,-973.75 804.75,-950 678.75,-950"/>
<text text-anchor="start" x="734.25" y="-956.45" font-family="arial" font-size="14.00">b6</text>
<polygon fill="none" stroke="black" points="678.75,-926.25 678.75,-950 804.75,-950 804.75,-926.25 678.75,-926.25"/>
<text text-anchor="start" x="734.25" y="-932.7" font-family="arial" font-size="14.00">d6</text>
<polygon fill="none" stroke="black" points="678.75,-902.5 678.75,-926.25 804.75,-926.25 804.75,-902.5 678.75,-902.5"/>
<text text-anchor="start" x="734.62" y="-908.95" font-family="arial" font-size="14.00">z8</text>
<polygon fill="none" stroke="black" points="678.75,-878.75 678.75,-902.5 804.75,-902.5 804.75,-878.75 678.75,-878.75"/>
<text text-anchor="start" x="734.25" y="-885.2" font-family="arial" font-size="14.00">b8</text>
<polygon fill="none" stroke="black" points="678.75,-855 678.75,-878.75 804.75,-878.75 804.75,-855 678.75,-855"/>
<text text-anchor="start" x="734.25" y="-861.45" font-family="arial" font-size="14.00">d8</text>
<polygon fill="none" stroke="black" points="678.75,-831.25 678.75,-855 804.75,-855 804.75,-831.25 678.75,-831.25"/>
<text text-anchor="start" x="730.88" y="-837.7" font-family="arial" font-size="14.00">z10</text>
<polygon fill="none" stroke="black" points="678.75,-807.5 678.75,-831.25 804.75,-831.25 804.75,-807.5 678.75,-807.5"/>
<text text-anchor="start" x="730.5" y="-813.95" font-family="arial" font-size="14.00">b10</text>
<polygon fill="none" stroke="black" points="678.75,-783.75 678.75,-807.5 804.75,-807.5 804.75,-783.75 678.75,-783.75"/>
<text text-anchor="start" x="730.5" y="-790.2" font-family="arial" font-size="14.00">d10</text>
<polygon fill="none" stroke="black" points="678.75,-760 678.75,-783.75 804.75,-783.75 804.75,-760 678.75,-760"/>
<text text-anchor="start" x="730.88" y="-766.45" font-family="arial" font-size="14.00">z12</text>
<polygon fill="none" stroke="black" points="678.75,-736.25 678.75,-760 804.75,-760 804.75,-736.25 678.75,-736.25"/>
<text text-anchor="start" x="730.5" y="-742.7" font-family="arial" font-size="14.00">b12</text>
<polygon fill="none" stroke="black" points="678.75,-712.5 678.75,-736.25 804.75,-736.25 804.75,-712.5 678.75,-712.5"/>
<text text-anchor="start" x="730.5" y="-718.95" font-family="arial" font-size="14.00">d12</text>
<polygon fill="none" stroke="black" points="678.75,-688.75 678.75,-712.5 804.75,-712.5 804.75,-688.75 678.75,-688.75"/>
<text text-anchor="start" x="730.88" y="-695.2" font-family="arial" font-size="14.00">z14</text>
<polygon fill="none" stroke="black" points="678.75,-665 678.75,-688.75 804.75,-688.75 804.75,-665 678.75,-665"/>
<text text-anchor="start" x="730.5" y="-671.45" font-family="arial" font-size="14.00">b14</text>
<polygon fill="none" stroke="black" points="678.75,-641.25 678.75,-665 804.75,-665 804.75,-641.25 678.75,-641.25"/>
<text text-anchor="start" x="730.5" y="-647.7" font-family="arial" font-size="14.00">d14</text>
<polygon fill="none" stroke="black" points="678.75,-617.5 678.75,-641.25 804.75,-641.25 804.75,-617.5 678.75,-617.5"/>
<text text-anchor="start" x="730.88" y="-623.95" font-family="arial" font-size="14.00">z16</text>
<polygon fill="none" stroke="black" points="678.75,-593.75 678.75,-617.5 804.75,-617.5 804.75,-593.75 678.75,-593.75"/>
<text text-anchor="start" x="730.5" y="-600.2" font-family="arial" font-size="14.00">b16</text>
<polygon fill="none" stroke="black" points="678.75,-570 678.75,-593.75 804.75,-593.75 804.75,-570 678.75,-570"/>
<text text-anchor="start" x="730.5" y="-576.45" font-family="arial" font-size="14.00">d16</text>
<polygon fill="none" stroke="black" points="678.75,-546.25 678.75,-570 804.75,-570 804.75,-546.25 678.75,-546.25"/>
<text text-anchor="start" x="730.88" y="-552.7" font-family="arial" font-size="14.00">z18</text>
<polygon fill="none" stroke="black" points="678.75,-522.5 678.75,-546.25 804.75,-546.25 804.75,-522.5 678.75,-522.5"/>
<text text-anchor="start" x="730.5" y="-528.95" font-family="arial" font-size="14.00">b18</text>
<polygon fill="none" stroke="black" points="678.75,-498.75 678.75,-522.5 804.75,-522.5 804.75,-498.75 678.75,-498.75"/>
<text text-anchor="start" x="730.5" y="-505.2" font-family="arial" font-size="14.00">d18</text>
<polygon fill="none" stroke="black" points="678.75,-475 678.75,-498.75 804.75,-498.75 804.75,-475 678.75,-475"/>
<text text-anchor="start" x="730.88" y="-481.45" font-family="arial" font-size="14.00">z20</text>
<polygon fill="none" stroke="black" points="678.75,-451.25 678.75,-475 804.75,-475 804.75,-451.25 678.75,-451.25"/>
<text text-anchor="start" x="730.5" y="-457.7" font-family="arial" font-size="14.00">b20</text>
<polygon fill="none" stroke="black" points="678.75,-427.5 678.75,-451.25 804.75,-451.25 804.75,-427.5 678.75,-427.5"/>
<text text-anchor="start" x="730.5" y="-433.95" font-family="arial" font-size="14.00">d20</text>
<polygon fill="none" stroke="black" points="678.75,-403.75 678.75,-427.5 804.75,-427.5 804.75,-403.75 678.75,-403.75"/>
<text text-anchor="start" x="730.88" y="-410.2" font-family="arial" font-size="14.00">z22</text>
<polygon fill="none" stroke="black" points="678.75,-380 678.75,-403.75 804.75,-403.75 804.75,-380 678.75,-380"/>
<text text-anchor="start" x="730.5" y="-386.45" font-family="arial" font-size="14.00">b22</text>
<polygon fill="none" stroke="black" points="678.75,-356.25 678.75,-380 804.75,-380 804.75,-356.25 678.75,-356.25"/>
<text text-anchor="start" x="730.5" y="-362.7" font-family="arial" font-size="14.00">d22</text>
<polygon fill="none" stroke="black" points="678.75,-332.5 678.75,-356.25 804.75,-356.25 804.75,-332.5 678.75,-332.5"/>
<text text-anchor="start" x="730.88" y="-338.95" font-family="arial" font-size="14.00">z24</text>
<polygon fill="none" stroke="black" points="678.75,-308.75 678.75,-332.5 804.75,-332.5 804.75,-308.75 678.75,-308.75"/>
<text text-anchor="start" x="730.5" y="-315.2" font-family="arial" font-size="14.00">b24</text>
<polygon fill="none" stroke="black" points="678.75,-285 678.75,-308.75 804.75,-308.75 804.75,-285 678.75,-285"/>
<text text-anchor="start" x="730.5" y="-291.45" font-family="arial" font-size="14.00">d24</text>
<polygon fill="none" stroke="black" points="678.75,-261.25 678.75,-285 804.75,-285 804.75,-261.25 678.75,-261.25"/>
<text text-anchor="start" x="730.88" y="-267.7" font-family="arial" font-size="14.00">z26</text>
<polygon fill="none" stroke="black" points="678.75,-237.5 678.75,-261.25 804.75,-261.25 804.75,-237.5 678.75,-237.5"/>
<text text-anchor="start" x="730.5" y="-243.95" font-family="arial" font-size="14.00">b26</text>
<polygon fill="none" stroke="black" points="678.75,-213.75 678.75,-237.5 804.75,-237.5 804.75,-213.75 678.75,-213.75"/>
<text text-anchor="start" x="730.5" y="-220.2" font-family="arial" font-size="14.00">d26</text>
<polygon fill="none" stroke="black" points="678.75,-190 678.75,-213.75 804.75,-213.75 804.75,-190 678.75,-190"/>
<text text-anchor="start" x="730.88" y="-196.45" font-family="arial" font-size="14.00">z28</text>
<polygon fill="none" stroke="black" points="678.75,-166.25 678.75,-190 804.75,-190 804.75,-166.25 678.75,-166.25"/>
<text text-anchor="start" x="730.5" y="-172.7" font-family="arial" font-size="14.00">b28</text>
<polygon fill="none" stroke="black" points="678.75,-142.5 678.75,-166.25 804.75,-166.25 804.75,-142.5 678.75,-142.5"/>
<text text-anchor="start" x="730.5" y="-148.95" font-family="arial" font-size="14.00">d28</text>
<polygon fill="none" stroke="black" points="678.75,-118.75 678.75,-142.5 804.75,-142.5 804.75,-118.75 678.75,-118.75"/>
<text text-anchor="start" x="730.88" y="-125.2" font-family="arial" font-size="14.00">z30</text>
<polygon fill="none" stroke="black" points="678.75,-95 678.75,-118.75 804.75,-118.75 804.75,-95 678.75,-95"/>
<text text-anchor="start" x="730.5" y="-101.45" font-family="arial" font-size="14.00">b30</text>
<polygon fill="none" stroke="black" points="678.75,-71.25 678.75,-95 804.75,-95 804.75,-71.25 678.75,-71.25"/>
<text text-anchor="start" x="730.5" y="-77.7" font-family="arial" font-size="14.00">d30</text>
<polygon fill="none" stroke="black" points="678.75,-47.5 678.75,-71.25 804.75,-71.25 804.75,-47.5 678.75,-47.5"/>
<text text-anchor="start" x="730.88" y="-53.95" font-family="arial" font-size="14.00">z32</text>
<polygon fill="none" stroke="black" points="678.75,-23.75 678.75,-47.5 804.75,-47.5 804.75,-23.75 678.75,-23.75"/>
<text text-anchor="start" x="730.5" y="-30.2" font-family="arial" font-size="14.00">b32</text>
<polygon fill="none" stroke="black" points="678.75,0 678.75,-23.75 804.75,-23.75 804.75,0 678.75,0"/>
<text text-anchor="start" x="730.5" y="-6.45" font-family="arial" font-size="14.00">d32</text>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-678C689.87,-683.79 541.28,-979.79 684,-974"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M540,-680C688.08,-682.9 539.49,-978.9 684,-976"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M540,-682C686.3,-682 537.7,-978 684,-978"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M540,-684C684.51,-681.1 535.92,-977.1 684,-980"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-686C682.72,-680.21 534.13,-976.21 684,-982"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-696.75C689.82,-702.58 530.79,-1011.58 678.75,-1005.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M534.75,-698.75C688.04,-701.67 529.01,-1010.67 678.75,-1007.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M534.75,-700.75C686.26,-700.75 527.24,-1009.75 678.75,-1009.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M534.75,-702.75C684.49,-699.83 525.46,-1008.83 678.75,-1011.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-704.75C682.71,-698.92 523.68,-1007.92 678.75,-1013.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-707C724.91,-712.99 506.03,-1094.99 684,-1089"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M540,-709C723.18,-711.99 504.3,-1093.99 684,-1091"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M540,-711C721.44,-711 502.56,-1093 684,-1093"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M540,-713C719.7,-710.01 500.82,-1092.01 684,-1095"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-715C717.97,-709.01 499.09,-1091.01 684,-1097"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-725.75C726.32,-731.77 494.09,-1129.77 678.75,-1123.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M534.75,-727.75C724.59,-730.76 492.37,-1128.76 678.75,-1125.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M534.75,-729.75C722.86,-729.75 490.64,-1127.75 678.75,-1127.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M534.75,-731.75C721.13,-728.74 488.91,-1126.74 678.75,-1129.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-733.75C719.41,-727.73 487.18,-1125.73 678.75,-1131.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge6" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-620C635.32,-625.02 596.41,-772.02 684,-767"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M540,-622C633.39,-624.51 594.48,-771.51 684,-769"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M540,-624C631.46,-624 592.54,-771 684,-771"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M540,-626C629.52,-623.49 590.61,-770.49 684,-773"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-628C627.59,-622.98 588.68,-769.98 684,-775"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-638.75C631.98,-643.83 589.22,-796.83 678.75,-791.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M534.75,-640.75C630.06,-643.29 587.3,-796.29 678.75,-793.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M534.75,-642.75C628.13,-642.75 585.37,-795.75 678.75,-795.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M534.75,-644.75C626.2,-642.21 583.44,-795.21 678.75,-797.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-646.75C624.28,-641.67 581.52,-794.67 678.75,-799.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge8" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-649C665.42,-654.57 565.94,-887.57 684,-882"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M540,-651C663.58,-653.79 564.1,-886.79 684,-884"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M540,-653C661.74,-653 562.26,-886 684,-886"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M540,-655C659.9,-652.21 560.42,-885.21 684,-888"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-657C658.06,-651.43 558.58,-884.43 684,-890"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-667.75C663.95,-673.36 556.87,-916.36 678.75,-910.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M534.75,-669.75C662.12,-672.56 555.04,-915.56 678.75,-912.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M534.75,-671.75C660.29,-671.75 553.21,-914.75 678.75,-914.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M534.75,-673.75C658.46,-670.94 551.38,-913.94 678.75,-916.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-675.75C656.63,-670.14 549.55,-913.14 678.75,-918.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge10" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-562C603.28,-562.07 619.25,-559.07 684,-559"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M540,-564C603.64,-564.03 619.62,-561.03 684,-561"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M540,-566C604.01,-566 619.99,-563 684,-563"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M540,-568C604.38,-567.97 620.36,-564.97 684,-565"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-570C604.75,-569.93 620.72,-566.93 684,-567"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-580.75C598.03,-580.82 614,-577.82 678.75,-577.75"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M534.75,-582.75C598.39,-582.78 614.37,-579.78 678.75,-579.75"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M534.75,-584.75C598.76,-584.75 614.74,-581.75 678.75,-581.75"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M534.75,-586.75C599.13,-586.72 615.11,-583.72 678.75,-583.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-588.75C599.5,-588.68 615.47,-585.68 678.75,-585.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge12" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-591C618.09,-595.2 613.9,-679.2 684,-675"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M540,-593C616.09,-595.1 611.9,-679.1 684,-677"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M540,-595C614.09,-595 609.91,-679 684,-679"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M540,-597C612.1,-594.9 607.91,-678.9 684,-681"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-599C610.1,-594.8 605.91,-678.8 684,-683"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-609.75C613.52,-614 607.97,-701 678.75,-696.75"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M534.75,-611.75C611.52,-613.88 605.97,-700.88 678.75,-698.75"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M534.75,-613.75C609.52,-613.75 603.98,-700.75 678.75,-700.75"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M534.75,-615.75C607.53,-613.62 601.98,-700.62 678.75,-702.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-617.75C605.53,-613.5 599.98,-700.5 678.75,-704.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge14" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-504C609.87,-508.18 606.13,-425.18 684,-421"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M540,-506C611.87,-508.09 608.13,-425.09 684,-423"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M540,-508C613.87,-508 610.13,-425 684,-425"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M540,-510C615.87,-507.91 612.13,-424.91 684,-427"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-512C617.87,-507.82 614.13,-424.82 684,-429"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-522.75C605.53,-527 599.98,-440 678.75,-435.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M534.75,-524.75C607.53,-526.88 601.98,-439.88 678.75,-437.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M534.75,-526.75C609.52,-526.75 603.98,-439.75 678.75,-439.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M534.75,-528.75C611.52,-526.62 605.97,-439.62 678.75,-441.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-530.75C613.52,-526.5 607.97,-439.5 678.75,-443.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge16" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-533C604.75,-533.07 620.72,-536.07 684,-536"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M540,-535C604.38,-535.03 620.36,-538.03 684,-538"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M540,-537C604.01,-537 619.99,-540 684,-540"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M540,-539C603.64,-538.97 619.62,-541.97 684,-542"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-541C603.28,-540.93 619.25,-543.93 684,-544"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-551.75C599.25,-551.78 615.24,-553.78 678.75,-553.75"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M534.75,-553.75C599,-553.77 614.99,-555.77 678.75,-555.75"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M534.75,-555.75C598.76,-555.75 614.74,-557.75 678.75,-557.75"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M534.75,-557.75C598.51,-557.73 614.5,-559.73 678.75,-559.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-559.75C598.26,-559.72 614.25,-561.72 678.75,-561.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge18" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-446C657.68,-451.57 558.96,-219.57 684,-214"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M540,-448C659.52,-450.78 560.8,-218.78 684,-216"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M540,-450C661.36,-450 562.64,-218 684,-218"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M540,-452C663.2,-449.22 564.48,-217.22 684,-220"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-454C665.04,-448.43 566.32,-216.43 684,-222"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-464.75C656.63,-470.36 549.55,-227.36 678.75,-221.75"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M534.75,-466.75C658.46,-469.56 551.38,-226.56 678.75,-223.75"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M534.75,-468.75C660.29,-468.75 553.21,-225.75 678.75,-225.75"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M534.75,-470.75C662.12,-467.94 555.04,-224.94 678.75,-227.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-472.75C663.95,-467.14 556.87,-224.14 678.75,-229.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge20" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-475C627.27,-480.01 588.99,-334.01 684,-329"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-477C629.21,-479.51 590.93,-333.51 684,-331"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-479C631.14,-479 592.86,-333 684,-333"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-481C633.07,-478.49 594.79,-332.49 684,-335"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-483C635.01,-477.99 596.73,-331.99 684,-337"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-493.75C624.28,-498.83 581.52,-345.83 678.75,-340.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-495.75C626.2,-498.29 583.44,-345.29 678.75,-342.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-497.75C628.13,-497.75 585.37,-344.75 678.75,-344.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-499.75C630.06,-497.21 587.3,-344.21 678.75,-346.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-501.75C631.98,-496.67 589.22,-343.67 678.75,-348.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge22" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-388C717.55,-393.99 499.5,-12.99 684,-7"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M540,-390C719.29,-392.99 501.24,-11.99 684,-9"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M540,-392C721.02,-392 502.98,-11 684,-11"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M540,-394C722.76,-391.01 504.71,-10.01 684,-13"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-396C724.5,-390.01 506.45,-9.01 684,-15"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-406.75C719.82,-412.77 486.77,-13.77 678.75,-7.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M534.75,-408.75C721.55,-411.76 488.49,-12.76 678.75,-9.75"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M534.75,-410.75C723.28,-410.75 490.22,-11.75 678.75,-11.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M534.75,-412.75C725.01,-409.74 491.95,-10.74 678.75,-13.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-414.75C726.73,-408.73 493.68,-9.73 678.75,-15.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge24" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-417C682.32,-422.79 534.53,-127.79 684,-122"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M540,-419C684.11,-421.9 536.31,-126.9 684,-124"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M540,-421C685.9,-421 538.1,-126 684,-126"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M540,-423C687.69,-420.1 539.89,-125.1 684,-128"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-425C689.47,-419.21 541.68,-124.21 684,-130"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-435.75C682.71,-441.58 523.68,-132.58 678.75,-126.75"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M534.75,-437.75C684.49,-440.67 525.46,-131.67 678.75,-128.75"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M534.75,-439.75C686.26,-439.75 527.24,-130.75 678.75,-130.75"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M534.75,-441.75C688.04,-438.83 529.01,-129.83 678.75,-132.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-443.75C689.82,-437.92 530.79,-128.92 678.75,-134.75"/>
</g>
</g>
</svg>

BIN
examples/ex09.png generated

Binary file not shown.

Before

Width:  |  Height:  |  Size: 240 KiB

After

Width:  |  Height:  |  Size: 272 KiB

810
examples/ex09.svg generated
View File

@ -1,524 +1,524 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="820pt" height="1158pt"
viewBox="0.00 0.00 820.00 1158.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 1154)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-1154 816,-1154 816,4 -4,4"/>
<svg width="813pt" height="1196pt"
viewBox="0.00 0.00 812.75 1195.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 1191.5)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-1191.5 808.75,-1191.5 808.75,4 -4,4"/>
<!-- X1 -->
<g id="node1" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="132,-732.5 0,-732.5 0,-387.5 132,-387.5 132,-732.5"/>
<polygon fill="none" stroke="black" points="0,-709 0,-732 132,-732 132,-709 0,-709"/>
<text text-anchor="start" x="57.5" y="-716.8" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-686 0,-709 47,-709 47,-686 0,-686"/>
<text text-anchor="start" x="4" y="-693.8" font-family="arial" font-size="14.00">D&#45;Sub</text>
<polygon fill="none" stroke="black" points="47,-686 47,-709 86,-709 86,-686 47,-686"/>
<text text-anchor="start" x="51" y="-693.8" font-family="arial" font-size="14.00">male</text>
<polygon fill="none" stroke="black" points="86,-686 86,-709 132,-709 132,-686 86,-686"/>
<text text-anchor="start" x="90" y="-693.8" font-family="arial" font-size="14.00">25&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-663 0,-686 98,-686 98,-663 0,-663"/>
<text text-anchor="start" x="10" y="-670.8" font-family="arial" font-size="14.00">SENSE_P_1</text>
<polygon fill="none" stroke="black" points="98,-663 98,-686 132,-686 132,-663 98,-663"/>
<text text-anchor="start" x="111" y="-670.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-640 0,-663 98,-663 98,-640 0,-640"/>
<text text-anchor="start" x="9.5" y="-647.8" font-family="arial" font-size="14.00">SENSE_N_1</text>
<polygon fill="none" stroke="black" points="98,-640 98,-663 132,-663 132,-640 98,-640"/>
<text text-anchor="start" x="107" y="-647.8" font-family="arial" font-size="14.00">14</text>
<polygon fill="none" stroke="black" points="0,-617 0,-640 98,-640 98,-617 0,-617"/>
<text text-anchor="start" x="10" y="-624.8" font-family="arial" font-size="14.00">SENSE_P_2</text>
<polygon fill="none" stroke="black" points="98,-617 98,-640 132,-640 132,-617 98,-617"/>
<text text-anchor="start" x="111" y="-624.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-594 0,-617 98,-617 98,-594 0,-594"/>
<text text-anchor="start" x="9.5" y="-601.8" font-family="arial" font-size="14.00">SENSE_N_2</text>
<polygon fill="none" stroke="black" points="98,-594 98,-617 132,-617 132,-594 98,-594"/>
<text text-anchor="start" x="107" y="-601.8" font-family="arial" font-size="14.00">16</text>
<polygon fill="none" stroke="black" points="0,-571 0,-594 98,-594 98,-571 0,-571"/>
<text text-anchor="start" x="10" y="-578.8" font-family="arial" font-size="14.00">SENSE_P_3</text>
<polygon fill="none" stroke="black" points="98,-571 98,-594 132,-594 132,-571 98,-571"/>
<text text-anchor="start" x="111" y="-578.8" font-family="arial" font-size="14.00">5</text>
<polygon fill="none" stroke="black" points="0,-548 0,-571 98,-571 98,-548 0,-548"/>
<text text-anchor="start" x="9.5" y="-555.8" font-family="arial" font-size="14.00">SENSE_N_3</text>
<polygon fill="none" stroke="black" points="98,-548 98,-571 132,-571 132,-548 98,-548"/>
<text text-anchor="start" x="107" y="-555.8" font-family="arial" font-size="14.00">18</text>
<polygon fill="none" stroke="black" points="0,-525 0,-548 98,-548 98,-525 0,-525"/>
<text text-anchor="start" x="10" y="-532.8" font-family="arial" font-size="14.00">SENSE_P_4</text>
<polygon fill="none" stroke="black" points="98,-525 98,-548 132,-548 132,-525 98,-525"/>
<text text-anchor="start" x="111" y="-532.8" font-family="arial" font-size="14.00">7</text>
<polygon fill="none" stroke="black" points="0,-502 0,-525 98,-525 98,-502 0,-502"/>
<text text-anchor="start" x="9.5" y="-509.8" font-family="arial" font-size="14.00">SENSE_N_4</text>
<polygon fill="none" stroke="black" points="98,-502 98,-525 132,-525 132,-502 98,-502"/>
<text text-anchor="start" x="107" y="-509.8" font-family="arial" font-size="14.00">20</text>
<polygon fill="none" stroke="black" points="0,-479 0,-502 98,-502 98,-479 0,-479"/>
<text text-anchor="start" x="10" y="-486.8" font-family="arial" font-size="14.00">SENSE_P_5</text>
<polygon fill="none" stroke="black" points="98,-479 98,-502 132,-502 132,-479 98,-479"/>
<text text-anchor="start" x="111" y="-486.8" font-family="arial" font-size="14.00">9</text>
<polygon fill="none" stroke="black" points="0,-456 0,-479 98,-479 98,-456 0,-456"/>
<text text-anchor="start" x="9.5" y="-463.8" font-family="arial" font-size="14.00">SENSE_N_5</text>
<polygon fill="none" stroke="black" points="98,-456 98,-479 132,-479 132,-456 98,-456"/>
<text text-anchor="start" x="107" y="-463.8" font-family="arial" font-size="14.00">22</text>
<polygon fill="none" stroke="black" points="0,-433 0,-456 98,-456 98,-433 0,-433"/>
<text text-anchor="start" x="10" y="-440.8" font-family="arial" font-size="14.00">SENSE_P_6</text>
<polygon fill="none" stroke="black" points="98,-433 98,-456 132,-456 132,-433 98,-433"/>
<text text-anchor="start" x="107.5" y="-440.8" font-family="arial" font-size="14.00">11</text>
<polygon fill="none" stroke="black" points="0,-410 0,-433 98,-433 98,-410 0,-410"/>
<text text-anchor="start" x="9.5" y="-417.8" font-family="arial" font-size="14.00">SENSE_N_6</text>
<polygon fill="none" stroke="black" points="98,-410 98,-433 132,-433 132,-410 98,-410"/>
<text text-anchor="start" x="107" y="-417.8" font-family="arial" font-size="14.00">24</text>
<polygon fill="none" stroke="black" points="0,-387 0,-410 98,-410 98,-387 0,-387"/>
<text text-anchor="start" x="33.5" y="-394.8" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="98,-387 98,-410 132,-410 132,-387 98,-387"/>
<text text-anchor="start" x="107" y="-394.8" font-family="arial" font-size="14.00">13</text>
<polygon fill="#ffffff" stroke="black" points="129.75,-752 0,-752 0,-405.5 129.75,-405.5 129.75,-752"/>
<polygon fill="none" stroke="black" points="0,-728.25 0,-752 129.75,-752 129.75,-728.25 0,-728.25"/>
<text text-anchor="start" x="56.62" y="-734.7" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-704.5 0,-728.25 46.25,-728.25 46.25,-704.5 0,-704.5"/>
<text text-anchor="start" x="4" y="-710.95" font-family="arial" font-size="14.00">D&#45;Sub</text>
<polygon fill="none" stroke="black" points="46.25,-704.5 46.25,-728.25 84.25,-728.25 84.25,-704.5 46.25,-704.5"/>
<text text-anchor="start" x="50.25" y="-710.95" font-family="arial" font-size="14.00">male</text>
<polygon fill="none" stroke="black" points="84.25,-704.5 84.25,-728.25 129.75,-728.25 129.75,-704.5 84.25,-704.5"/>
<text text-anchor="start" x="88.25" y="-710.95" font-family="arial" font-size="14.00">25&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-681.5 0,-704.5 96.38,-704.5 96.38,-681.5 0,-681.5"/>
<text text-anchor="start" x="9.56" y="-687.2" font-family="arial" font-size="14.00">SENSE_P_1</text>
<polygon fill="none" stroke="black" points="96.38,-681.5 96.38,-704.5 129.75,-704.5 129.75,-681.5 96.38,-681.5"/>
<text text-anchor="start" x="109.31" y="-687.2" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-658.5 0,-681.5 96.38,-681.5 96.38,-658.5 0,-658.5"/>
<text text-anchor="start" x="9.19" y="-664.2" font-family="arial" font-size="14.00">SENSE_N_1</text>
<polygon fill="none" stroke="black" points="96.38,-658.5 96.38,-681.5 129.75,-681.5 129.75,-658.5 96.38,-658.5"/>
<text text-anchor="start" x="105.56" y="-664.2" font-family="arial" font-size="14.00">14</text>
<polygon fill="none" stroke="black" points="0,-635.5 0,-658.5 96.38,-658.5 96.38,-635.5 0,-635.5"/>
<text text-anchor="start" x="9.56" y="-641.2" font-family="arial" font-size="14.00">SENSE_P_2</text>
<polygon fill="none" stroke="black" points="96.38,-635.5 96.38,-658.5 129.75,-658.5 129.75,-635.5 96.38,-635.5"/>
<text text-anchor="start" x="109.31" y="-641.2" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-612.5 0,-635.5 96.38,-635.5 96.38,-612.5 0,-612.5"/>
<text text-anchor="start" x="9.19" y="-618.2" font-family="arial" font-size="14.00">SENSE_N_2</text>
<polygon fill="none" stroke="black" points="96.38,-612.5 96.38,-635.5 129.75,-635.5 129.75,-612.5 96.38,-612.5"/>
<text text-anchor="start" x="105.56" y="-618.2" font-family="arial" font-size="14.00">16</text>
<polygon fill="none" stroke="black" points="0,-589.5 0,-612.5 96.38,-612.5 96.38,-589.5 0,-589.5"/>
<text text-anchor="start" x="9.56" y="-595.2" font-family="arial" font-size="14.00">SENSE_P_3</text>
<polygon fill="none" stroke="black" points="96.38,-589.5 96.38,-612.5 129.75,-612.5 129.75,-589.5 96.38,-589.5"/>
<text text-anchor="start" x="109.31" y="-595.2" font-family="arial" font-size="14.00">5</text>
<polygon fill="none" stroke="black" points="0,-566.5 0,-589.5 96.38,-589.5 96.38,-566.5 0,-566.5"/>
<text text-anchor="start" x="9.19" y="-572.2" font-family="arial" font-size="14.00">SENSE_N_3</text>
<polygon fill="none" stroke="black" points="96.38,-566.5 96.38,-589.5 129.75,-589.5 129.75,-566.5 96.38,-566.5"/>
<text text-anchor="start" x="105.56" y="-572.2" font-family="arial" font-size="14.00">18</text>
<polygon fill="none" stroke="black" points="0,-543.5 0,-566.5 96.38,-566.5 96.38,-543.5 0,-543.5"/>
<text text-anchor="start" x="9.56" y="-549.2" font-family="arial" font-size="14.00">SENSE_P_4</text>
<polygon fill="none" stroke="black" points="96.38,-543.5 96.38,-566.5 129.75,-566.5 129.75,-543.5 96.38,-543.5"/>
<text text-anchor="start" x="109.31" y="-549.2" font-family="arial" font-size="14.00">7</text>
<polygon fill="none" stroke="black" points="0,-520.5 0,-543.5 96.38,-543.5 96.38,-520.5 0,-520.5"/>
<text text-anchor="start" x="9.19" y="-526.2" font-family="arial" font-size="14.00">SENSE_N_4</text>
<polygon fill="none" stroke="black" points="96.38,-520.5 96.38,-543.5 129.75,-543.5 129.75,-520.5 96.38,-520.5"/>
<text text-anchor="start" x="105.56" y="-526.2" font-family="arial" font-size="14.00">20</text>
<polygon fill="none" stroke="black" points="0,-497.5 0,-520.5 96.38,-520.5 96.38,-497.5 0,-497.5"/>
<text text-anchor="start" x="9.56" y="-503.2" font-family="arial" font-size="14.00">SENSE_P_5</text>
<polygon fill="none" stroke="black" points="96.38,-497.5 96.38,-520.5 129.75,-520.5 129.75,-497.5 96.38,-497.5"/>
<text text-anchor="start" x="109.31" y="-503.2" font-family="arial" font-size="14.00">9</text>
<polygon fill="none" stroke="black" points="0,-474.5 0,-497.5 96.38,-497.5 96.38,-474.5 0,-474.5"/>
<text text-anchor="start" x="9.19" y="-480.2" font-family="arial" font-size="14.00">SENSE_N_5</text>
<polygon fill="none" stroke="black" points="96.38,-474.5 96.38,-497.5 129.75,-497.5 129.75,-474.5 96.38,-474.5"/>
<text text-anchor="start" x="105.56" y="-480.2" font-family="arial" font-size="14.00">22</text>
<polygon fill="none" stroke="black" points="0,-451.5 0,-474.5 96.38,-474.5 96.38,-451.5 0,-451.5"/>
<text text-anchor="start" x="9.56" y="-457.2" font-family="arial" font-size="14.00">SENSE_P_6</text>
<polygon fill="none" stroke="black" points="96.38,-451.5 96.38,-474.5 129.75,-474.5 129.75,-451.5 96.38,-451.5"/>
<text text-anchor="start" x="105.94" y="-457.2" font-family="arial" font-size="14.00">11</text>
<polygon fill="none" stroke="black" points="0,-428.5 0,-451.5 96.38,-451.5 96.38,-428.5 0,-428.5"/>
<text text-anchor="start" x="9.19" y="-434.2" font-family="arial" font-size="14.00">SENSE_N_6</text>
<polygon fill="none" stroke="black" points="96.38,-428.5 96.38,-451.5 129.75,-451.5 129.75,-428.5 96.38,-428.5"/>
<text text-anchor="start" x="105.56" y="-434.2" font-family="arial" font-size="14.00">24</text>
<polygon fill="none" stroke="black" points="0,-405.5 0,-428.5 96.38,-428.5 96.38,-405.5 0,-405.5"/>
<text text-anchor="start" x="32.81" y="-411.2" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="96.38,-405.5 96.38,-428.5 129.75,-428.5 129.75,-405.5 96.38,-405.5"/>
<text text-anchor="start" x="105.56" y="-411.2" font-family="arial" font-size="14.00">13</text>
</g>
<!-- W1 -->
<g id="node3" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" points="540,-800 276,-800 276,-328 540,-328 540,-800"/>
<polygon fill="none" stroke="black" points="276,-777 276,-800 540,-800 540,-777 276,-777"/>
<text text-anchor="start" x="397" y="-784.8" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="276,-754 276,-777 330,-777 330,-754 276,-754"/>
<text text-anchor="start" x="292" y="-761.8" font-family="arial" font-size="14.00">12x</text>
<polygon fill="none" stroke="black" points="330,-754 330,-777 421,-777 421,-754 330,-754"/>
<text text-anchor="start" x="346" y="-761.8" font-family="arial" font-size="14.00">0.25 mm²</text>
<polygon fill="none" stroke="black" points="421,-754 421,-777 474,-777 474,-754 421,-754"/>
<text text-anchor="start" x="436.5" y="-761.8" font-family="arial" font-size="14.00">+ S</text>
<polygon fill="none" stroke="black" points="474,-754 474,-777 540,-777 540,-754 474,-754"/>
<text text-anchor="start" x="489.5" y="-761.8" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="335" y="-740.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="278" y="-721.8" font-family="arial" font-size="14.00">X1:14:SENSE_N_1</text>
<text text-anchor="start" x="411" y="-721.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:WH &#160;&#160;&#160;</text>
<text text-anchor="start" x="499" y="-721.8" font-family="arial" font-size="14.00">X2:z2</text>
<polygon fill="#000000" stroke="none" points="276,-714 276,-716 540,-716 540,-714 276,-714"/>
<polygon fill="#ffffff" stroke="none" points="276,-712 276,-714 540,-714 540,-712 276,-712"/>
<polygon fill="#ffffff" stroke="none" points="276,-710 276,-712 540,-712 540,-710 276,-710"/>
<polygon fill="#ffffff" stroke="none" points="276,-708 276,-710 540,-710 540,-708 276,-708"/>
<polygon fill="#000000" stroke="none" points="276,-706 276,-708 540,-708 540,-706 276,-706"/>
<text text-anchor="start" x="282.5" y="-692.8" font-family="arial" font-size="14.00">X1:1:SENSE_P_1</text>
<text text-anchor="start" x="413.5" y="-692.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="498.5" y="-692.8" font-family="arial" font-size="14.00">X2:d4</text>
<polygon fill="#000000" stroke="none" points="276,-685 276,-687 540,-687 540,-685 276,-685"/>
<polygon fill="#895956" stroke="none" points="276,-683 276,-685 540,-685 540,-683 276,-683"/>
<polygon fill="#895956" stroke="none" points="276,-681 276,-683 540,-683 540,-681 276,-681"/>
<polygon fill="#895956" stroke="none" points="276,-679 276,-681 540,-681 540,-679 276,-679"/>
<polygon fill="#000000" stroke="none" points="276,-677 276,-679 540,-679 540,-677 276,-677"/>
<text text-anchor="start" x="278" y="-663.8" font-family="arial" font-size="14.00">X1:16:SENSE_N_2</text>
<text text-anchor="start" x="412" y="-663.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="499" y="-663.8" font-family="arial" font-size="14.00">X2:z8</text>
<polygon fill="#000000" stroke="none" points="276,-656 276,-658 540,-658 540,-656 276,-656"/>
<polygon fill="#00ff00" stroke="none" points="276,-654 276,-656 540,-656 540,-654 276,-654"/>
<polygon fill="#00ff00" stroke="none" points="276,-652 276,-654 540,-654 540,-652 276,-652"/>
<polygon fill="#00ff00" stroke="none" points="276,-650 276,-652 540,-652 540,-650 276,-650"/>
<polygon fill="#000000" stroke="none" points="276,-648 276,-650 540,-650 540,-648 276,-648"/>
<text text-anchor="start" x="282.5" y="-634.8" font-family="arial" font-size="14.00">X1:3:SENSE_P_2</text>
<text text-anchor="start" x="413.5" y="-634.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="495" y="-634.8" font-family="arial" font-size="14.00">X2:d10</text>
<polygon fill="#000000" stroke="none" points="276,-627 276,-629 540,-629 540,-627 276,-627"/>
<polygon fill="#ffff00" stroke="none" points="276,-625 276,-627 540,-627 540,-625 276,-625"/>
<polygon fill="#ffff00" stroke="none" points="276,-623 276,-625 540,-625 540,-623 276,-623"/>
<polygon fill="#ffff00" stroke="none" points="276,-621 276,-623 540,-623 540,-621 276,-621"/>
<polygon fill="#000000" stroke="none" points="276,-619 276,-621 540,-621 540,-619 276,-619"/>
<text text-anchor="start" x="278" y="-605.8" font-family="arial" font-size="14.00">X1:18:SENSE_N_3</text>
<text text-anchor="start" x="412.5" y="-605.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;5:GY &#160;&#160;&#160;</text>
<text text-anchor="start" x="495" y="-605.8" font-family="arial" font-size="14.00">X2:z14</text>
<polygon fill="#000000" stroke="none" points="276,-598 276,-600 540,-600 540,-598 276,-598"/>
<polygon fill="#999999" stroke="none" points="276,-596 276,-598 540,-598 540,-596 276,-596"/>
<polygon fill="#999999" stroke="none" points="276,-594 276,-596 540,-596 540,-594 276,-594"/>
<polygon fill="#999999" stroke="none" points="276,-592 276,-594 540,-594 540,-592 276,-592"/>
<polygon fill="#000000" stroke="none" points="276,-590 276,-592 540,-592 540,-590 276,-590"/>
<text text-anchor="start" x="282.5" y="-576.8" font-family="arial" font-size="14.00">X1:5:SENSE_P_3</text>
<text text-anchor="start" x="413.5" y="-576.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;6:PK &#160;&#160;&#160;</text>
<text text-anchor="start" x="495" y="-576.8" font-family="arial" font-size="14.00">X2:d16</text>
<polygon fill="#000000" stroke="none" points="276,-569 276,-571 540,-571 540,-569 276,-569"/>
<polygon fill="#ff66cc" stroke="none" points="276,-567 276,-569 540,-569 540,-567 276,-567"/>
<polygon fill="#ff66cc" stroke="none" points="276,-565 276,-567 540,-567 540,-565 276,-565"/>
<polygon fill="#ff66cc" stroke="none" points="276,-563 276,-565 540,-565 540,-563 276,-563"/>
<polygon fill="#000000" stroke="none" points="276,-561 276,-563 540,-563 540,-561 276,-561"/>
<text text-anchor="start" x="278" y="-547.8" font-family="arial" font-size="14.00">X1:20:SENSE_N_4</text>
<text text-anchor="start" x="413.5" y="-547.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;7:BU &#160;&#160;&#160;</text>
<text text-anchor="start" x="495" y="-547.8" font-family="arial" font-size="14.00">X2:z18</text>
<polygon fill="#000000" stroke="none" points="276,-540 276,-542 540,-542 540,-540 276,-540"/>
<polygon fill="#0066ff" stroke="none" points="276,-538 276,-540 540,-540 540,-538 276,-538"/>
<polygon fill="#0066ff" stroke="none" points="276,-536 276,-538 540,-538 540,-536 276,-536"/>
<polygon fill="#0066ff" stroke="none" points="276,-534 276,-536 540,-536 540,-534 276,-534"/>
<polygon fill="#000000" stroke="none" points="276,-532 276,-534 540,-534 540,-532 276,-532"/>
<text text-anchor="start" x="282.5" y="-518.8" font-family="arial" font-size="14.00">X1:7:SENSE_P_4</text>
<text text-anchor="start" x="413" y="-518.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;8:RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="495" y="-518.8" font-family="arial" font-size="14.00">X2:d20</text>
<polygon fill="#000000" stroke="none" points="276,-511 276,-513 540,-513 540,-511 276,-511"/>
<polygon fill="#ff0000" stroke="none" points="276,-509 276,-511 540,-511 540,-509 276,-509"/>
<polygon fill="#ff0000" stroke="none" points="276,-507 276,-509 540,-509 540,-507 276,-507"/>
<polygon fill="#ff0000" stroke="none" points="276,-505 276,-507 540,-507 540,-505 276,-505"/>
<polygon fill="#000000" stroke="none" points="276,-503 276,-505 540,-505 540,-503 276,-503"/>
<text text-anchor="start" x="278" y="-489.8" font-family="arial" font-size="14.00">X1:22:SENSE_N_5</text>
<text text-anchor="start" x="413.5" y="-489.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;9:BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="495" y="-489.8" font-family="arial" font-size="14.00">X2:z24</text>
<polygon fill="#000000" stroke="none" points="276,-482 276,-484 540,-484 540,-482 276,-482"/>
<polygon fill="#000000" stroke="none" points="276,-480 276,-482 540,-482 540,-480 276,-480"/>
<polygon fill="#000000" stroke="none" points="276,-478 276,-480 540,-480 540,-478 276,-478"/>
<polygon fill="#000000" stroke="none" points="276,-476 276,-478 540,-478 540,-476 276,-476"/>
<polygon fill="#000000" stroke="none" points="276,-474 276,-476 540,-476 540,-474 276,-474"/>
<text text-anchor="start" x="282.5" y="-460.8" font-family="arial" font-size="14.00">X1:9:SENSE_P_5</text>
<text text-anchor="start" x="410.5" y="-460.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;10:VT &#160;&#160;&#160;</text>
<text text-anchor="start" x="495" y="-460.8" font-family="arial" font-size="14.00">X2:d26</text>
<polygon fill="#000000" stroke="none" points="276,-453 276,-455 540,-455 540,-453 276,-453"/>
<polygon fill="#8000ff" stroke="none" points="276,-451 276,-453 540,-453 540,-451 276,-451"/>
<polygon fill="#8000ff" stroke="none" points="276,-449 276,-451 540,-451 540,-449 276,-449"/>
<polygon fill="#8000ff" stroke="none" points="276,-447 276,-449 540,-449 540,-447 276,-447"/>
<polygon fill="#000000" stroke="none" points="276,-445 276,-447 540,-447 540,-445 276,-445"/>
<text text-anchor="start" x="278" y="-431.8" font-family="arial" font-size="14.00">X1:24:SENSE_N_6</text>
<text text-anchor="start" x="400" y="-431.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;11:GYPK &#160;&#160;&#160;</text>
<text text-anchor="start" x="495" y="-431.8" font-family="arial" font-size="14.00">X2:z30</text>
<polygon fill="#000000" stroke="none" points="276,-424 276,-426 540,-426 540,-424 276,-424"/>
<polygon fill="#999999" stroke="none" points="276,-422 276,-424 540,-424 540,-422 276,-422"/>
<polygon fill="#ff66cc" stroke="none" points="276,-420 276,-422 540,-422 540,-420 276,-420"/>
<polygon fill="#999999" stroke="none" points="276,-418 276,-420 540,-420 540,-418 276,-418"/>
<polygon fill="#000000" stroke="none" points="276,-416 276,-418 540,-418 540,-416 276,-416"/>
<text text-anchor="start" x="279" y="-402.8" font-family="arial" font-size="14.00">X1:11:SENSE_P_6</text>
<text text-anchor="start" x="400" y="-402.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;12:RDBU &#160;&#160;&#160;</text>
<text text-anchor="start" x="495" y="-402.8" font-family="arial" font-size="14.00">X2:d32</text>
<polygon fill="#000000" stroke="none" points="276,-395 276,-397 540,-397 540,-395 276,-395"/>
<polygon fill="#ff0000" stroke="none" points="276,-393 276,-395 540,-395 540,-393 276,-393"/>
<polygon fill="#0066ff" stroke="none" points="276,-391 276,-393 540,-393 540,-391 276,-391"/>
<polygon fill="#ff0000" stroke="none" points="276,-389 276,-391 540,-391 540,-389 276,-389"/>
<polygon fill="#000000" stroke="none" points="276,-387 276,-389 540,-389 540,-387 276,-387"/>
<text text-anchor="start" x="335" y="-373.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="302" y="-354.8" font-family="arial" font-size="14.00">X1:13:GND</text>
<text text-anchor="start" x="426.5" y="-354.8" font-family="arial" font-size="14.00">Shield</text>
<polygon fill="#000000" stroke="none" points="276,-347 276,-349 540,-349 540,-347 276,-347"/>
<text text-anchor="start" x="335" y="-333.8" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" points="534.75,-820.5 273.75,-820.5 273.75,-347 534.75,-347 534.75,-820.5"/>
<polygon fill="none" stroke="black" points="273.75,-796.75 273.75,-820.5 534.75,-820.5 534.75,-796.75 273.75,-796.75"/>
<text text-anchor="start" x="393.75" y="-803.2" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="273.75,-773 273.75,-796.75 326.81,-796.75 326.81,-773 273.75,-773"/>
<text text-anchor="start" x="289.41" y="-779.45" font-family="arial" font-size="14.00">12x</text>
<polygon fill="none" stroke="black" points="326.81,-773 326.81,-796.75 416.62,-796.75 416.62,-773 326.81,-773"/>
<text text-anchor="start" x="342.47" y="-779.45" font-family="arial" font-size="14.00">0.25 mm²</text>
<polygon fill="none" stroke="black" points="416.62,-773 416.62,-796.75 468.94,-796.75 468.94,-773 416.62,-773"/>
<text text-anchor="start" x="432.28" y="-779.45" font-family="arial" font-size="14.00">+ S</text>
<polygon fill="none" stroke="black" points="468.94,-773 468.94,-796.75 534.75,-796.75 534.75,-773 468.94,-773"/>
<text text-anchor="start" x="484.59" y="-779.45" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="332.38" y="-757.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="275.75" y="-738.7" font-family="arial" font-size="14.00">X1:14:SENSE_N_1</text>
<text text-anchor="start" x="407.62" y="-738.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:WH &#160;&#160;&#160;</text>
<text text-anchor="start" x="494.5" y="-738.7" font-family="arial" font-size="14.00">X2:z2</text>
<polygon fill="#000000" stroke="none" points="273.75,-733 273.75,-735 534.75,-735 534.75,-733 273.75,-733"/>
<polygon fill="#ffffff" stroke="none" points="273.75,-731 273.75,-733 534.75,-733 534.75,-731 273.75,-731"/>
<polygon fill="#ffffff" stroke="none" points="273.75,-729 273.75,-731 534.75,-731 534.75,-729 273.75,-729"/>
<polygon fill="#ffffff" stroke="none" points="273.75,-727 273.75,-729 534.75,-729 534.75,-727 273.75,-727"/>
<polygon fill="#000000" stroke="none" points="273.75,-725 273.75,-727 534.75,-727 534.75,-725 273.75,-725"/>
<text text-anchor="start" x="279.88" y="-709.7" font-family="arial" font-size="14.00">X1:1:SENSE_P_1</text>
<text text-anchor="start" x="409.88" y="-709.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="494.12" y="-709.7" font-family="arial" font-size="14.00">X2:d4</text>
<polygon fill="#000000" stroke="none" points="273.75,-704 273.75,-706 534.75,-706 534.75,-704 273.75,-704"/>
<polygon fill="#895956" stroke="none" points="273.75,-702 273.75,-704 534.75,-704 534.75,-702 273.75,-702"/>
<polygon fill="#895956" stroke="none" points="273.75,-700 273.75,-702 534.75,-702 534.75,-700 273.75,-700"/>
<polygon fill="#895956" stroke="none" points="273.75,-698 273.75,-700 534.75,-700 534.75,-698 273.75,-698"/>
<polygon fill="#000000" stroke="none" points="273.75,-696 273.75,-698 534.75,-698 534.75,-696 273.75,-696"/>
<text text-anchor="start" x="275.75" y="-680.7" font-family="arial" font-size="14.00">X1:16:SENSE_N_2</text>
<text text-anchor="start" x="408.75" y="-680.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="494.5" y="-680.7" font-family="arial" font-size="14.00">X2:z8</text>
<polygon fill="#000000" stroke="none" points="273.75,-675 273.75,-677 534.75,-677 534.75,-675 273.75,-675"/>
<polygon fill="#00ff00" stroke="none" points="273.75,-673 273.75,-675 534.75,-675 534.75,-673 273.75,-673"/>
<polygon fill="#00ff00" stroke="none" points="273.75,-671 273.75,-673 534.75,-673 534.75,-671 273.75,-671"/>
<polygon fill="#00ff00" stroke="none" points="273.75,-669 273.75,-671 534.75,-671 534.75,-669 273.75,-669"/>
<polygon fill="#000000" stroke="none" points="273.75,-667 273.75,-669 534.75,-669 534.75,-667 273.75,-667"/>
<text text-anchor="start" x="279.88" y="-651.7" font-family="arial" font-size="14.00">X1:3:SENSE_P_2</text>
<text text-anchor="start" x="410.25" y="-651.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="490.38" y="-651.7" font-family="arial" font-size="14.00">X2:d10</text>
<polygon fill="#000000" stroke="none" points="273.75,-646 273.75,-648 534.75,-648 534.75,-646 273.75,-646"/>
<polygon fill="#ffff00" stroke="none" points="273.75,-644 273.75,-646 534.75,-646 534.75,-644 273.75,-644"/>
<polygon fill="#ffff00" stroke="none" points="273.75,-642 273.75,-644 534.75,-644 534.75,-642 273.75,-642"/>
<polygon fill="#ffff00" stroke="none" points="273.75,-640 273.75,-642 534.75,-642 534.75,-640 273.75,-640"/>
<polygon fill="#000000" stroke="none" points="273.75,-638 273.75,-640 534.75,-640 534.75,-638 273.75,-638"/>
<text text-anchor="start" x="275.75" y="-622.7" font-family="arial" font-size="14.00">X1:18:SENSE_N_3</text>
<text text-anchor="start" x="409.12" y="-622.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;5:GY &#160;&#160;&#160;</text>
<text text-anchor="start" x="490.75" y="-622.7" font-family="arial" font-size="14.00">X2:z14</text>
<polygon fill="#000000" stroke="none" points="273.75,-617 273.75,-619 534.75,-619 534.75,-617 273.75,-617"/>
<polygon fill="#999999" stroke="none" points="273.75,-615 273.75,-617 534.75,-617 534.75,-615 273.75,-615"/>
<polygon fill="#999999" stroke="none" points="273.75,-613 273.75,-615 534.75,-615 534.75,-613 273.75,-613"/>
<polygon fill="#999999" stroke="none" points="273.75,-611 273.75,-613 534.75,-613 534.75,-611 273.75,-611"/>
<polygon fill="#000000" stroke="none" points="273.75,-609 273.75,-611 534.75,-611 534.75,-609 273.75,-609"/>
<text text-anchor="start" x="279.88" y="-593.7" font-family="arial" font-size="14.00">X1:5:SENSE_P_3</text>
<text text-anchor="start" x="410.25" y="-593.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;6:PK &#160;&#160;&#160;</text>
<text text-anchor="start" x="490.38" y="-593.7" font-family="arial" font-size="14.00">X2:d16</text>
<polygon fill="#000000" stroke="none" points="273.75,-588 273.75,-590 534.75,-590 534.75,-588 273.75,-588"/>
<polygon fill="#ff66cc" stroke="none" points="273.75,-586 273.75,-588 534.75,-588 534.75,-586 273.75,-586"/>
<polygon fill="#ff66cc" stroke="none" points="273.75,-584 273.75,-586 534.75,-586 534.75,-584 273.75,-584"/>
<polygon fill="#ff66cc" stroke="none" points="273.75,-582 273.75,-584 534.75,-584 534.75,-582 273.75,-582"/>
<polygon fill="#000000" stroke="none" points="273.75,-580 273.75,-582 534.75,-582 534.75,-580 273.75,-580"/>
<text text-anchor="start" x="275.75" y="-564.7" font-family="arial" font-size="14.00">X1:20:SENSE_N_4</text>
<text text-anchor="start" x="409.88" y="-564.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;7:BU &#160;&#160;&#160;</text>
<text text-anchor="start" x="490.75" y="-564.7" font-family="arial" font-size="14.00">X2:z18</text>
<polygon fill="#000000" stroke="none" points="273.75,-559 273.75,-561 534.75,-561 534.75,-559 273.75,-559"/>
<polygon fill="#0066ff" stroke="none" points="273.75,-557 273.75,-559 534.75,-559 534.75,-557 273.75,-557"/>
<polygon fill="#0066ff" stroke="none" points="273.75,-555 273.75,-557 534.75,-557 534.75,-555 273.75,-555"/>
<polygon fill="#0066ff" stroke="none" points="273.75,-553 273.75,-555 534.75,-555 534.75,-553 273.75,-553"/>
<polygon fill="#000000" stroke="none" points="273.75,-551 273.75,-553 534.75,-553 534.75,-551 273.75,-551"/>
<text text-anchor="start" x="279.88" y="-535.7" font-family="arial" font-size="14.00">X1:7:SENSE_P_4</text>
<text text-anchor="start" x="409.5" y="-535.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;8:RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="490.38" y="-535.7" font-family="arial" font-size="14.00">X2:d20</text>
<polygon fill="#000000" stroke="none" points="273.75,-530 273.75,-532 534.75,-532 534.75,-530 273.75,-530"/>
<polygon fill="#ff0000" stroke="none" points="273.75,-528 273.75,-530 534.75,-530 534.75,-528 273.75,-528"/>
<polygon fill="#ff0000" stroke="none" points="273.75,-526 273.75,-528 534.75,-528 534.75,-526 273.75,-526"/>
<polygon fill="#ff0000" stroke="none" points="273.75,-524 273.75,-526 534.75,-526 534.75,-524 273.75,-524"/>
<polygon fill="#000000" stroke="none" points="273.75,-522 273.75,-524 534.75,-524 534.75,-522 273.75,-522"/>
<text text-anchor="start" x="275.75" y="-506.7" font-family="arial" font-size="14.00">X1:22:SENSE_N_5</text>
<text text-anchor="start" x="410.25" y="-506.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;9:BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="490.75" y="-506.7" font-family="arial" font-size="14.00">X2:z24</text>
<polygon fill="#000000" stroke="none" points="273.75,-501 273.75,-503 534.75,-503 534.75,-501 273.75,-501"/>
<polygon fill="#000000" stroke="none" points="273.75,-499 273.75,-501 534.75,-501 534.75,-499 273.75,-499"/>
<polygon fill="#000000" stroke="none" points="273.75,-497 273.75,-499 534.75,-499 534.75,-497 273.75,-497"/>
<polygon fill="#000000" stroke="none" points="273.75,-495 273.75,-497 534.75,-497 534.75,-495 273.75,-495"/>
<polygon fill="#000000" stroke="none" points="273.75,-493 273.75,-495 534.75,-495 534.75,-493 273.75,-493"/>
<text text-anchor="start" x="279.88" y="-477.7" font-family="arial" font-size="14.00">X1:9:SENSE_P_5</text>
<text text-anchor="start" x="406.88" y="-477.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;10:VT &#160;&#160;&#160;</text>
<text text-anchor="start" x="490.38" y="-477.7" font-family="arial" font-size="14.00">X2:d26</text>
<polygon fill="#000000" stroke="none" points="273.75,-472 273.75,-474 534.75,-474 534.75,-472 273.75,-472"/>
<polygon fill="#8000ff" stroke="none" points="273.75,-470 273.75,-472 534.75,-472 534.75,-470 273.75,-470"/>
<polygon fill="#8000ff" stroke="none" points="273.75,-468 273.75,-470 534.75,-470 534.75,-468 273.75,-468"/>
<polygon fill="#8000ff" stroke="none" points="273.75,-466 273.75,-468 534.75,-468 534.75,-466 273.75,-466"/>
<polygon fill="#000000" stroke="none" points="273.75,-464 273.75,-466 534.75,-466 534.75,-464 273.75,-464"/>
<text text-anchor="start" x="275.75" y="-448.7" font-family="arial" font-size="14.00">X1:24:SENSE_N_6</text>
<text text-anchor="start" x="396.75" y="-448.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;11:GYPK &#160;&#160;&#160;</text>
<text text-anchor="start" x="490.75" y="-448.7" font-family="arial" font-size="14.00">X2:z30</text>
<polygon fill="#000000" stroke="none" points="273.75,-443 273.75,-445 534.75,-445 534.75,-443 273.75,-443"/>
<polygon fill="#999999" stroke="none" points="273.75,-441 273.75,-443 534.75,-443 534.75,-441 273.75,-441"/>
<polygon fill="#ff66cc" stroke="none" points="273.75,-439 273.75,-441 534.75,-441 534.75,-439 273.75,-439"/>
<polygon fill="#999999" stroke="none" points="273.75,-437 273.75,-439 534.75,-439 534.75,-437 273.75,-437"/>
<polygon fill="#000000" stroke="none" points="273.75,-435 273.75,-437 534.75,-437 534.75,-435 273.75,-435"/>
<text text-anchor="start" x="276.5" y="-419.7" font-family="arial" font-size="14.00">X1:11:SENSE_P_6</text>
<text text-anchor="start" x="396.38" y="-419.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;12:RDBU &#160;&#160;&#160;</text>
<text text-anchor="start" x="490.38" y="-419.7" font-family="arial" font-size="14.00">X2:d32</text>
<polygon fill="#000000" stroke="none" points="273.75,-414 273.75,-416 534.75,-416 534.75,-414 273.75,-414"/>
<polygon fill="#ff0000" stroke="none" points="273.75,-412 273.75,-414 534.75,-414 534.75,-412 273.75,-412"/>
<polygon fill="#0066ff" stroke="none" points="273.75,-410 273.75,-412 534.75,-412 534.75,-410 273.75,-410"/>
<polygon fill="#ff0000" stroke="none" points="273.75,-408 273.75,-410 534.75,-410 534.75,-408 273.75,-408"/>
<polygon fill="#000000" stroke="none" points="273.75,-406 273.75,-408 534.75,-408 534.75,-406 273.75,-406"/>
<text text-anchor="start" x="332.38" y="-390.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="299.38" y="-371.7" font-family="arial" font-size="14.00">X1:13:GND</text>
<text text-anchor="start" x="423" y="-371.7" font-family="arial" font-size="14.00">Shield</text>
<polygon fill="#000000" stroke="none" points="273.75,-366 273.75,-368 534.75,-368 534.75,-366 273.75,-366"/>
<text text-anchor="start" x="332.38" y="-350.7" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge1" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-671C197.69,-671.34 213.54,-678.34 276,-678"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M132,-673C196.88,-673.17 212.73,-680.17 276,-680"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M132,-675C196.08,-675 211.92,-682 276,-682"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M132,-677C195.27,-676.83 211.12,-683.83 276,-684"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-679C194.46,-678.66 210.31,-685.66 276,-686"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-688.75C195.66,-689.18 211.46,-697.18 273.75,-696.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M129.75,-690.75C194.75,-690.97 210.55,-698.97 273.75,-698.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M129.75,-692.75C193.85,-692.75 209.65,-700.75 273.75,-700.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M129.75,-694.75C192.95,-694.53 208.75,-702.53 273.75,-702.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-696.75C192.04,-696.32 207.84,-704.32 273.75,-704.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge3" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-648C205.15,-651.62 210.82,-710.62 276,-707"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M132,-650C203.15,-651.81 208.83,-710.81 276,-709"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M132,-652C201.16,-652 206.84,-711 276,-711"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M132,-654C199.17,-652.19 204.85,-711.19 276,-713"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-656C197.18,-652.38 202.85,-711.38 276,-715"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-665.75C203.07,-669.4 208.4,-729.4 273.75,-725.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M129.75,-667.75C201.08,-669.57 206.41,-729.57 273.75,-727.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M129.75,-669.75C199.08,-669.75 204.42,-729.75 273.75,-729.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M129.75,-671.75C197.09,-669.93 202.42,-729.93 273.75,-731.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-673.75C195.1,-670.1 200.43,-730.1 273.75,-733.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge5" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-625C194.84,-625.18 210.76,-620.18 276,-620"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M132,-627C195.44,-627.09 211.36,-622.09 276,-622"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M132,-629C196.04,-629 211.96,-624 276,-624"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M132,-631C196.64,-630.91 212.56,-625.91 276,-626"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-633C197.24,-632.82 213.16,-627.82 276,-628"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-642.75C192.8,-642.87 208.75,-638.87 273.75,-638.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M129.75,-644.75C193.29,-644.81 209.24,-640.81 273.75,-640.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M129.75,-646.75C193.77,-646.75 209.73,-642.75 273.75,-642.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M129.75,-648.75C194.26,-648.69 210.21,-644.69 273.75,-644.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-650.75C194.75,-650.63 210.7,-646.63 273.75,-646.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge7" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-602C203.25,-605.22 212.6,-652.22 276,-649"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M132,-604C201.28,-605.61 210.64,-652.61 276,-651"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M132,-606C199.32,-606 208.68,-653 276,-653"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M132,-608C197.36,-606.39 206.72,-653.39 276,-655"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-610C195.4,-606.78 204.75,-653.78 276,-657"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-619.75C201.14,-623.01 210.22,-671.01 273.75,-667.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M129.75,-621.75C199.18,-623.38 208.25,-671.38 273.75,-669.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M129.75,-623.75C197.21,-623.75 206.29,-671.75 273.75,-671.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M129.75,-625.75C195.25,-624.12 204.32,-672.12 273.75,-673.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-627.75C193.28,-624.49 202.36,-672.49 273.75,-675.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge9" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-579C193.45,-580.34 208.57,-563.34 276,-562"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M132,-581C194.95,-581.67 210.06,-564.67 276,-564"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M132,-583C196.44,-583 211.56,-566 276,-566"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M132,-585C197.94,-584.33 213.05,-567.33 276,-568"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-587C199.43,-585.66 214.55,-568.66 276,-570"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-596.75C191.24,-597.99 206.46,-581.99 273.75,-580.75"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M129.75,-598.75C192.69,-599.37 207.91,-583.37 273.75,-582.75"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M129.75,-600.75C194.14,-600.75 209.36,-584.75 273.75,-584.75"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M129.75,-602.75C195.59,-602.13 210.81,-586.13 273.75,-586.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-604.75C197.04,-603.51 212.26,-587.51 273.75,-588.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge11" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-555C201.76,-557.73 213.82,-593.73 276,-591"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M132,-557C199.87,-558.36 211.93,-594.36 276,-593"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M132,-559C197.97,-559 210.03,-595 276,-595"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M132,-561C196.07,-559.64 208.13,-595.64 276,-597"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-563C194.18,-560.27 206.24,-596.27 276,-599"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-573.75C199.51,-576.48 211.57,-612.48 273.75,-609.75"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M129.75,-575.75C197.62,-577.11 209.68,-613.11 273.75,-611.75"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M129.75,-577.75C195.72,-577.75 207.78,-613.75 273.75,-613.75"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M129.75,-579.75C193.82,-578.39 205.88,-614.39 273.75,-615.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-581.75C191.93,-579.02 203.99,-615.02 273.75,-617.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge13" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-532C193.6,-534.25 207.2,-506.25 276,-504"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M132,-534C195.4,-535.13 209,-507.13 276,-506"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M132,-536C197.2,-536 210.8,-508 276,-508"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M132,-538C199,-536.87 212.6,-508.87 276,-510"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-540C200.8,-537.75 214.4,-509.75 276,-512"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-550.75C191.35,-553 204.95,-525 273.75,-522.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M129.75,-552.75C193.15,-553.88 206.75,-525.88 273.75,-524.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M129.75,-554.75C194.95,-554.75 208.55,-526.75 273.75,-526.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M129.75,-556.75C196.75,-555.62 210.35,-527.62 273.75,-528.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-558.75C198.55,-556.5 212.15,-528.5 273.75,-530.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge15" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-509C200.32,-510.96 214.56,-534.96 276,-533"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M132,-511C198.6,-511.98 212.84,-535.98 276,-535"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M132,-513C196.88,-513 211.12,-537 276,-537"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M132,-515C195.16,-514.02 209.4,-538.02 276,-539"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-517C193.44,-515.04 207.68,-539.04 276,-541"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-527.75C198.07,-529.71 212.31,-553.71 273.75,-551.75"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M129.75,-529.75C196.35,-530.73 210.59,-554.73 273.75,-553.75"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M129.75,-531.75C194.63,-531.75 208.87,-555.75 273.75,-555.75"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M129.75,-533.75C192.91,-532.77 207.15,-556.77 273.75,-557.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-535.75C191.19,-533.79 205.43,-557.79 273.75,-559.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge17" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-486C194.57,-488.93 205.72,-448.93 276,-446"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M132,-488C196.5,-489.46 207.65,-449.46 276,-448"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M132,-490C198.42,-490 209.58,-450 276,-450"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M132,-492C200.35,-490.54 211.5,-450.54 276,-452"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-494C202.28,-491.07 213.43,-451.07 276,-454"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-504.75C192.32,-507.68 203.47,-467.68 273.75,-464.75"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M129.75,-506.75C194.25,-508.21 205.4,-468.21 273.75,-466.75"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M129.75,-508.75C196.17,-508.75 207.33,-468.75 273.75,-468.75"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M129.75,-510.75C198.1,-509.29 209.25,-469.29 273.75,-470.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-512.75C200.03,-509.82 211.18,-469.82 273.75,-472.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge19" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-463C198.66,-463.83 214.22,-475.83 276,-475"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-465C197.44,-465.42 213,-477.42 276,-477"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-467C196.22,-467 211.78,-479 276,-479"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-469C195,-468.58 210.56,-480.58 276,-481"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-471C193.78,-470.17 209.34,-482.17 276,-483"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-481.75C196.41,-482.58 211.97,-494.58 273.75,-493.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-483.75C195.19,-484.17 210.75,-496.17 273.75,-495.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-485.75C193.97,-485.75 209.53,-497.75 273.75,-497.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-487.75C192.75,-487.33 208.31,-499.33 273.75,-499.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-489.75C191.53,-488.92 207.09,-500.92 273.75,-501.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge21" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-440C196.09,-443.4 204,-391.4 276,-388"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M132,-442C198.07,-443.7 205.98,-391.7 276,-390"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M132,-444C200.05,-444 207.95,-392 276,-392"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M132,-446C202.02,-444.3 209.93,-392.3 276,-394"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-448C204,-444.6 211.91,-392.6 276,-396"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-458.75C193.84,-462.15 201.75,-410.15 273.75,-406.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M129.75,-460.75C195.82,-462.45 203.73,-410.45 273.75,-408.75"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M129.75,-462.75C197.8,-462.75 205.7,-410.75 273.75,-410.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M129.75,-464.75C199.77,-463.05 207.68,-411.05 273.75,-412.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-466.75C201.75,-463.35 209.66,-411.35 273.75,-414.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge23" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-417C196,-417 212,-417 276,-417"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M132,-419C196,-419 212,-419 276,-419"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M132,-421C196,-421 212,-421 276,-421"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M132,-423C196,-423 212,-423 276,-423"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-425C196,-425 212,-425 276,-425"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-435.75C193.75,-435.75 209.75,-435.75 273.75,-435.75"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M129.75,-437.75C193.75,-437.75 209.75,-437.75 273.75,-437.75"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M129.75,-439.75C193.75,-439.75 209.75,-439.75 273.75,-439.75"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M129.75,-441.75C193.75,-441.75 209.75,-441.75 273.75,-441.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-443.75C193.75,-443.75 209.75,-443.75 273.75,-443.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge25" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M132,-398C199.75,-398 208.25,-348 276,-348"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M129.75,-416.75C197.5,-416.75 206,-366.75 273.75,-366.75"/>
</g>
<!-- X2 -->
<g id="node2" class="node">
<title>X2</title>
<polygon fill="#ffffff" stroke="black" points="812,-1150 684,-1150 684,0 812,0 812,-1150"/>
<polygon fill="none" stroke="black" points="684,-1127 684,-1150 812,-1150 812,-1127 684,-1127"/>
<text text-anchor="start" x="739.5" y="-1134.8" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="684,-1104 684,-1127 716,-1127 716,-1104 684,-1104"/>
<text text-anchor="start" x="688" y="-1111.8" font-family="arial" font-size="14.00">F48</text>
<polygon fill="none" stroke="black" points="716,-1104 716,-1127 766,-1127 766,-1104 716,-1104"/>
<text text-anchor="start" x="720" y="-1111.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="766,-1104 766,-1127 812,-1127 812,-1104 766,-1104"/>
<text text-anchor="start" x="770" y="-1111.8" font-family="arial" font-size="14.00">48&#45;pin</text>
<polygon fill="none" stroke="black" points="684,-1081 684,-1104 812,-1104 812,-1081 684,-1081"/>
<text text-anchor="start" x="740.5" y="-1088.8" font-family="arial" font-size="14.00">z2</text>
<polygon fill="none" stroke="black" points="684,-1058 684,-1081 812,-1081 812,-1058 684,-1058"/>
<text text-anchor="start" x="740" y="-1065.8" font-family="arial" font-size="14.00">b2</text>
<polygon fill="none" stroke="black" points="684,-1035 684,-1058 812,-1058 812,-1035 684,-1035"/>
<text text-anchor="start" x="740" y="-1042.8" font-family="arial" font-size="14.00">d2</text>
<polygon fill="none" stroke="black" points="684,-1012 684,-1035 812,-1035 812,-1012 684,-1012"/>
<text text-anchor="start" x="740.5" y="-1019.8" font-family="arial" font-size="14.00">z4</text>
<polygon fill="none" stroke="black" points="684,-989 684,-1012 812,-1012 812,-989 684,-989"/>
<text text-anchor="start" x="740" y="-996.8" font-family="arial" font-size="14.00">b4</text>
<polygon fill="none" stroke="black" points="684,-966 684,-989 812,-989 812,-966 684,-966"/>
<text text-anchor="start" x="740" y="-973.8" font-family="arial" font-size="14.00">d4</text>
<polygon fill="none" stroke="black" points="684,-943 684,-966 812,-966 812,-943 684,-943"/>
<text text-anchor="start" x="740.5" y="-950.8" font-family="arial" font-size="14.00">z6</text>
<polygon fill="none" stroke="black" points="684,-920 684,-943 812,-943 812,-920 684,-920"/>
<text text-anchor="start" x="740" y="-927.8" font-family="arial" font-size="14.00">b6</text>
<polygon fill="none" stroke="black" points="684,-897 684,-920 812,-920 812,-897 684,-897"/>
<text text-anchor="start" x="740" y="-904.8" font-family="arial" font-size="14.00">d6</text>
<polygon fill="none" stroke="black" points="684,-874 684,-897 812,-897 812,-874 684,-874"/>
<text text-anchor="start" x="740.5" y="-881.8" font-family="arial" font-size="14.00">z8</text>
<polygon fill="none" stroke="black" points="684,-851 684,-874 812,-874 812,-851 684,-851"/>
<text text-anchor="start" x="740" y="-858.8" font-family="arial" font-size="14.00">b8</text>
<polygon fill="none" stroke="black" points="684,-828 684,-851 812,-851 812,-828 684,-828"/>
<text text-anchor="start" x="740" y="-835.8" font-family="arial" font-size="14.00">d8</text>
<polygon fill="none" stroke="black" points="684,-805 684,-828 812,-828 812,-805 684,-805"/>
<text text-anchor="start" x="737" y="-812.8" font-family="arial" font-size="14.00">z10</text>
<polygon fill="none" stroke="black" points="684,-782 684,-805 812,-805 812,-782 684,-782"/>
<text text-anchor="start" x="736.5" y="-789.8" font-family="arial" font-size="14.00">b10</text>
<polygon fill="none" stroke="black" points="684,-759 684,-782 812,-782 812,-759 684,-759"/>
<text text-anchor="start" x="736.5" y="-766.8" font-family="arial" font-size="14.00">d10</text>
<polygon fill="none" stroke="black" points="684,-736 684,-759 812,-759 812,-736 684,-736"/>
<text text-anchor="start" x="737" y="-743.8" font-family="arial" font-size="14.00">z12</text>
<polygon fill="none" stroke="black" points="684,-713 684,-736 812,-736 812,-713 684,-713"/>
<text text-anchor="start" x="736.5" y="-720.8" font-family="arial" font-size="14.00">b12</text>
<polygon fill="none" stroke="black" points="684,-690 684,-713 812,-713 812,-690 684,-690"/>
<text text-anchor="start" x="736.5" y="-697.8" font-family="arial" font-size="14.00">d12</text>
<polygon fill="none" stroke="black" points="684,-667 684,-690 812,-690 812,-667 684,-667"/>
<text text-anchor="start" x="737" y="-674.8" font-family="arial" font-size="14.00">z14</text>
<polygon fill="none" stroke="black" points="684,-644 684,-667 812,-667 812,-644 684,-644"/>
<text text-anchor="start" x="736.5" y="-651.8" font-family="arial" font-size="14.00">b14</text>
<polygon fill="none" stroke="black" points="684,-621 684,-644 812,-644 812,-621 684,-621"/>
<text text-anchor="start" x="736.5" y="-628.8" font-family="arial" font-size="14.00">d14</text>
<polygon fill="none" stroke="black" points="684,-598 684,-621 812,-621 812,-598 684,-598"/>
<text text-anchor="start" x="737" y="-605.8" font-family="arial" font-size="14.00">z16</text>
<polygon fill="none" stroke="black" points="684,-575 684,-598 812,-598 812,-575 684,-575"/>
<text text-anchor="start" x="736.5" y="-582.8" font-family="arial" font-size="14.00">b16</text>
<polygon fill="none" stroke="black" points="684,-552 684,-575 812,-575 812,-552 684,-552"/>
<text text-anchor="start" x="736.5" y="-559.8" font-family="arial" font-size="14.00">d16</text>
<polygon fill="none" stroke="black" points="684,-529 684,-552 812,-552 812,-529 684,-529"/>
<text text-anchor="start" x="737" y="-536.8" font-family="arial" font-size="14.00">z18</text>
<polygon fill="none" stroke="black" points="684,-506 684,-529 812,-529 812,-506 684,-506"/>
<text text-anchor="start" x="736.5" y="-513.8" font-family="arial" font-size="14.00">b18</text>
<polygon fill="none" stroke="black" points="684,-483 684,-506 812,-506 812,-483 684,-483"/>
<text text-anchor="start" x="736.5" y="-490.8" font-family="arial" font-size="14.00">d18</text>
<polygon fill="none" stroke="black" points="684,-460 684,-483 812,-483 812,-460 684,-460"/>
<text text-anchor="start" x="737" y="-467.8" font-family="arial" font-size="14.00">z20</text>
<polygon fill="none" stroke="black" points="684,-437 684,-460 812,-460 812,-437 684,-437"/>
<text text-anchor="start" x="736.5" y="-444.8" font-family="arial" font-size="14.00">b20</text>
<polygon fill="none" stroke="black" points="684,-414 684,-437 812,-437 812,-414 684,-414"/>
<text text-anchor="start" x="736.5" y="-421.8" font-family="arial" font-size="14.00">d20</text>
<polygon fill="none" stroke="black" points="684,-391 684,-414 812,-414 812,-391 684,-391"/>
<text text-anchor="start" x="737" y="-398.8" font-family="arial" font-size="14.00">z22</text>
<polygon fill="none" stroke="black" points="684,-368 684,-391 812,-391 812,-368 684,-368"/>
<text text-anchor="start" x="736.5" y="-375.8" font-family="arial" font-size="14.00">b22</text>
<polygon fill="none" stroke="black" points="684,-345 684,-368 812,-368 812,-345 684,-345"/>
<text text-anchor="start" x="736.5" y="-352.8" font-family="arial" font-size="14.00">d22</text>
<polygon fill="none" stroke="black" points="684,-322 684,-345 812,-345 812,-322 684,-322"/>
<text text-anchor="start" x="737" y="-329.8" font-family="arial" font-size="14.00">z24</text>
<polygon fill="none" stroke="black" points="684,-299 684,-322 812,-322 812,-299 684,-299"/>
<text text-anchor="start" x="736.5" y="-306.8" font-family="arial" font-size="14.00">b24</text>
<polygon fill="none" stroke="black" points="684,-276 684,-299 812,-299 812,-276 684,-276"/>
<text text-anchor="start" x="736.5" y="-283.8" font-family="arial" font-size="14.00">d24</text>
<polygon fill="none" stroke="black" points="684,-253 684,-276 812,-276 812,-253 684,-253"/>
<text text-anchor="start" x="737" y="-260.8" font-family="arial" font-size="14.00">z26</text>
<polygon fill="none" stroke="black" points="684,-230 684,-253 812,-253 812,-230 684,-230"/>
<text text-anchor="start" x="736.5" y="-237.8" font-family="arial" font-size="14.00">b26</text>
<polygon fill="none" stroke="black" points="684,-207 684,-230 812,-230 812,-207 684,-207"/>
<text text-anchor="start" x="736.5" y="-214.8" font-family="arial" font-size="14.00">d26</text>
<polygon fill="none" stroke="black" points="684,-184 684,-207 812,-207 812,-184 684,-184"/>
<text text-anchor="start" x="737" y="-191.8" font-family="arial" font-size="14.00">z28</text>
<polygon fill="none" stroke="black" points="684,-161 684,-184 812,-184 812,-161 684,-161"/>
<text text-anchor="start" x="736.5" y="-168.8" font-family="arial" font-size="14.00">b28</text>
<polygon fill="none" stroke="black" points="684,-138 684,-161 812,-161 812,-138 684,-138"/>
<text text-anchor="start" x="736.5" y="-145.8" font-family="arial" font-size="14.00">d28</text>
<polygon fill="none" stroke="black" points="684,-115 684,-138 812,-138 812,-115 684,-115"/>
<text text-anchor="start" x="737" y="-122.8" font-family="arial" font-size="14.00">z30</text>
<polygon fill="none" stroke="black" points="684,-92 684,-115 812,-115 812,-92 684,-92"/>
<text text-anchor="start" x="736.5" y="-99.8" font-family="arial" font-size="14.00">b30</text>
<polygon fill="none" stroke="black" points="684,-69 684,-92 812,-92 812,-69 684,-69"/>
<text text-anchor="start" x="736.5" y="-76.8" font-family="arial" font-size="14.00">d30</text>
<polygon fill="none" stroke="black" points="684,-46 684,-69 812,-69 812,-46 684,-46"/>
<text text-anchor="start" x="737" y="-53.8" font-family="arial" font-size="14.00">z32</text>
<polygon fill="none" stroke="black" points="684,-23 684,-46 812,-46 812,-23 684,-23"/>
<text text-anchor="start" x="736.5" y="-30.8" font-family="arial" font-size="14.00">b32</text>
<polygon fill="none" stroke="black" points="684,0 684,-23 812,-23 812,0 684,0"/>
<text text-anchor="start" x="736.5" y="-7.8" font-family="arial" font-size="14.00">d32</text>
<polygon fill="#ffffff" stroke="black" points="804.75,-1187.5 678.75,-1187.5 678.75,0 804.75,0 804.75,-1187.5"/>
<polygon fill="none" stroke="black" points="678.75,-1163.75 678.75,-1187.5 804.75,-1187.5 804.75,-1163.75 678.75,-1163.75"/>
<text text-anchor="start" x="733.5" y="-1170.2" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="678.75,-1140 678.75,-1163.75 710,-1163.75 710,-1140 678.75,-1140"/>
<text text-anchor="start" x="682.75" y="-1146.45" font-family="arial" font-size="14.00">F48</text>
<polygon fill="none" stroke="black" points="710,-1140 710,-1163.75 759.25,-1163.75 759.25,-1140 710,-1140"/>
<text text-anchor="start" x="714" y="-1146.45" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="759.25,-1140 759.25,-1163.75 804.75,-1163.75 804.75,-1140 759.25,-1140"/>
<text text-anchor="start" x="763.25" y="-1146.45" font-family="arial" font-size="14.00">48&#45;pin</text>
<polygon fill="none" stroke="black" points="678.75,-1116.25 678.75,-1140 804.75,-1140 804.75,-1116.25 678.75,-1116.25"/>
<text text-anchor="start" x="734.62" y="-1122.7" font-family="arial" font-size="14.00">z2</text>
<polygon fill="none" stroke="black" points="678.75,-1092.5 678.75,-1116.25 804.75,-1116.25 804.75,-1092.5 678.75,-1092.5"/>
<text text-anchor="start" x="734.25" y="-1098.95" font-family="arial" font-size="14.00">b2</text>
<polygon fill="none" stroke="black" points="678.75,-1068.75 678.75,-1092.5 804.75,-1092.5 804.75,-1068.75 678.75,-1068.75"/>
<text text-anchor="start" x="734.25" y="-1075.2" font-family="arial" font-size="14.00">d2</text>
<polygon fill="none" stroke="black" points="678.75,-1045 678.75,-1068.75 804.75,-1068.75 804.75,-1045 678.75,-1045"/>
<text text-anchor="start" x="734.62" y="-1051.45" font-family="arial" font-size="14.00">z4</text>
<polygon fill="none" stroke="black" points="678.75,-1021.25 678.75,-1045 804.75,-1045 804.75,-1021.25 678.75,-1021.25"/>
<text text-anchor="start" x="734.25" y="-1027.7" font-family="arial" font-size="14.00">b4</text>
<polygon fill="none" stroke="black" points="678.75,-997.5 678.75,-1021.25 804.75,-1021.25 804.75,-997.5 678.75,-997.5"/>
<text text-anchor="start" x="734.25" y="-1003.95" font-family="arial" font-size="14.00">d4</text>
<polygon fill="none" stroke="black" points="678.75,-973.75 678.75,-997.5 804.75,-997.5 804.75,-973.75 678.75,-973.75"/>
<text text-anchor="start" x="734.62" y="-980.2" font-family="arial" font-size="14.00">z6</text>
<polygon fill="none" stroke="black" points="678.75,-950 678.75,-973.75 804.75,-973.75 804.75,-950 678.75,-950"/>
<text text-anchor="start" x="734.25" y="-956.45" font-family="arial" font-size="14.00">b6</text>
<polygon fill="none" stroke="black" points="678.75,-926.25 678.75,-950 804.75,-950 804.75,-926.25 678.75,-926.25"/>
<text text-anchor="start" x="734.25" y="-932.7" font-family="arial" font-size="14.00">d6</text>
<polygon fill="none" stroke="black" points="678.75,-902.5 678.75,-926.25 804.75,-926.25 804.75,-902.5 678.75,-902.5"/>
<text text-anchor="start" x="734.62" y="-908.95" font-family="arial" font-size="14.00">z8</text>
<polygon fill="none" stroke="black" points="678.75,-878.75 678.75,-902.5 804.75,-902.5 804.75,-878.75 678.75,-878.75"/>
<text text-anchor="start" x="734.25" y="-885.2" font-family="arial" font-size="14.00">b8</text>
<polygon fill="none" stroke="black" points="678.75,-855 678.75,-878.75 804.75,-878.75 804.75,-855 678.75,-855"/>
<text text-anchor="start" x="734.25" y="-861.45" font-family="arial" font-size="14.00">d8</text>
<polygon fill="none" stroke="black" points="678.75,-831.25 678.75,-855 804.75,-855 804.75,-831.25 678.75,-831.25"/>
<text text-anchor="start" x="730.88" y="-837.7" font-family="arial" font-size="14.00">z10</text>
<polygon fill="none" stroke="black" points="678.75,-807.5 678.75,-831.25 804.75,-831.25 804.75,-807.5 678.75,-807.5"/>
<text text-anchor="start" x="730.5" y="-813.95" font-family="arial" font-size="14.00">b10</text>
<polygon fill="none" stroke="black" points="678.75,-783.75 678.75,-807.5 804.75,-807.5 804.75,-783.75 678.75,-783.75"/>
<text text-anchor="start" x="730.5" y="-790.2" font-family="arial" font-size="14.00">d10</text>
<polygon fill="none" stroke="black" points="678.75,-760 678.75,-783.75 804.75,-783.75 804.75,-760 678.75,-760"/>
<text text-anchor="start" x="730.88" y="-766.45" font-family="arial" font-size="14.00">z12</text>
<polygon fill="none" stroke="black" points="678.75,-736.25 678.75,-760 804.75,-760 804.75,-736.25 678.75,-736.25"/>
<text text-anchor="start" x="730.5" y="-742.7" font-family="arial" font-size="14.00">b12</text>
<polygon fill="none" stroke="black" points="678.75,-712.5 678.75,-736.25 804.75,-736.25 804.75,-712.5 678.75,-712.5"/>
<text text-anchor="start" x="730.5" y="-718.95" font-family="arial" font-size="14.00">d12</text>
<polygon fill="none" stroke="black" points="678.75,-688.75 678.75,-712.5 804.75,-712.5 804.75,-688.75 678.75,-688.75"/>
<text text-anchor="start" x="730.88" y="-695.2" font-family="arial" font-size="14.00">z14</text>
<polygon fill="none" stroke="black" points="678.75,-665 678.75,-688.75 804.75,-688.75 804.75,-665 678.75,-665"/>
<text text-anchor="start" x="730.5" y="-671.45" font-family="arial" font-size="14.00">b14</text>
<polygon fill="none" stroke="black" points="678.75,-641.25 678.75,-665 804.75,-665 804.75,-641.25 678.75,-641.25"/>
<text text-anchor="start" x="730.5" y="-647.7" font-family="arial" font-size="14.00">d14</text>
<polygon fill="none" stroke="black" points="678.75,-617.5 678.75,-641.25 804.75,-641.25 804.75,-617.5 678.75,-617.5"/>
<text text-anchor="start" x="730.88" y="-623.95" font-family="arial" font-size="14.00">z16</text>
<polygon fill="none" stroke="black" points="678.75,-593.75 678.75,-617.5 804.75,-617.5 804.75,-593.75 678.75,-593.75"/>
<text text-anchor="start" x="730.5" y="-600.2" font-family="arial" font-size="14.00">b16</text>
<polygon fill="none" stroke="black" points="678.75,-570 678.75,-593.75 804.75,-593.75 804.75,-570 678.75,-570"/>
<text text-anchor="start" x="730.5" y="-576.45" font-family="arial" font-size="14.00">d16</text>
<polygon fill="none" stroke="black" points="678.75,-546.25 678.75,-570 804.75,-570 804.75,-546.25 678.75,-546.25"/>
<text text-anchor="start" x="730.88" y="-552.7" font-family="arial" font-size="14.00">z18</text>
<polygon fill="none" stroke="black" points="678.75,-522.5 678.75,-546.25 804.75,-546.25 804.75,-522.5 678.75,-522.5"/>
<text text-anchor="start" x="730.5" y="-528.95" font-family="arial" font-size="14.00">b18</text>
<polygon fill="none" stroke="black" points="678.75,-498.75 678.75,-522.5 804.75,-522.5 804.75,-498.75 678.75,-498.75"/>
<text text-anchor="start" x="730.5" y="-505.2" font-family="arial" font-size="14.00">d18</text>
<polygon fill="none" stroke="black" points="678.75,-475 678.75,-498.75 804.75,-498.75 804.75,-475 678.75,-475"/>
<text text-anchor="start" x="730.88" y="-481.45" font-family="arial" font-size="14.00">z20</text>
<polygon fill="none" stroke="black" points="678.75,-451.25 678.75,-475 804.75,-475 804.75,-451.25 678.75,-451.25"/>
<text text-anchor="start" x="730.5" y="-457.7" font-family="arial" font-size="14.00">b20</text>
<polygon fill="none" stroke="black" points="678.75,-427.5 678.75,-451.25 804.75,-451.25 804.75,-427.5 678.75,-427.5"/>
<text text-anchor="start" x="730.5" y="-433.95" font-family="arial" font-size="14.00">d20</text>
<polygon fill="none" stroke="black" points="678.75,-403.75 678.75,-427.5 804.75,-427.5 804.75,-403.75 678.75,-403.75"/>
<text text-anchor="start" x="730.88" y="-410.2" font-family="arial" font-size="14.00">z22</text>
<polygon fill="none" stroke="black" points="678.75,-380 678.75,-403.75 804.75,-403.75 804.75,-380 678.75,-380"/>
<text text-anchor="start" x="730.5" y="-386.45" font-family="arial" font-size="14.00">b22</text>
<polygon fill="none" stroke="black" points="678.75,-356.25 678.75,-380 804.75,-380 804.75,-356.25 678.75,-356.25"/>
<text text-anchor="start" x="730.5" y="-362.7" font-family="arial" font-size="14.00">d22</text>
<polygon fill="none" stroke="black" points="678.75,-332.5 678.75,-356.25 804.75,-356.25 804.75,-332.5 678.75,-332.5"/>
<text text-anchor="start" x="730.88" y="-338.95" font-family="arial" font-size="14.00">z24</text>
<polygon fill="none" stroke="black" points="678.75,-308.75 678.75,-332.5 804.75,-332.5 804.75,-308.75 678.75,-308.75"/>
<text text-anchor="start" x="730.5" y="-315.2" font-family="arial" font-size="14.00">b24</text>
<polygon fill="none" stroke="black" points="678.75,-285 678.75,-308.75 804.75,-308.75 804.75,-285 678.75,-285"/>
<text text-anchor="start" x="730.5" y="-291.45" font-family="arial" font-size="14.00">d24</text>
<polygon fill="none" stroke="black" points="678.75,-261.25 678.75,-285 804.75,-285 804.75,-261.25 678.75,-261.25"/>
<text text-anchor="start" x="730.88" y="-267.7" font-family="arial" font-size="14.00">z26</text>
<polygon fill="none" stroke="black" points="678.75,-237.5 678.75,-261.25 804.75,-261.25 804.75,-237.5 678.75,-237.5"/>
<text text-anchor="start" x="730.5" y="-243.95" font-family="arial" font-size="14.00">b26</text>
<polygon fill="none" stroke="black" points="678.75,-213.75 678.75,-237.5 804.75,-237.5 804.75,-213.75 678.75,-213.75"/>
<text text-anchor="start" x="730.5" y="-220.2" font-family="arial" font-size="14.00">d26</text>
<polygon fill="none" stroke="black" points="678.75,-190 678.75,-213.75 804.75,-213.75 804.75,-190 678.75,-190"/>
<text text-anchor="start" x="730.88" y="-196.45" font-family="arial" font-size="14.00">z28</text>
<polygon fill="none" stroke="black" points="678.75,-166.25 678.75,-190 804.75,-190 804.75,-166.25 678.75,-166.25"/>
<text text-anchor="start" x="730.5" y="-172.7" font-family="arial" font-size="14.00">b28</text>
<polygon fill="none" stroke="black" points="678.75,-142.5 678.75,-166.25 804.75,-166.25 804.75,-142.5 678.75,-142.5"/>
<text text-anchor="start" x="730.5" y="-148.95" font-family="arial" font-size="14.00">d28</text>
<polygon fill="none" stroke="black" points="678.75,-118.75 678.75,-142.5 804.75,-142.5 804.75,-118.75 678.75,-118.75"/>
<text text-anchor="start" x="730.88" y="-125.2" font-family="arial" font-size="14.00">z30</text>
<polygon fill="none" stroke="black" points="678.75,-95 678.75,-118.75 804.75,-118.75 804.75,-95 678.75,-95"/>
<text text-anchor="start" x="730.5" y="-101.45" font-family="arial" font-size="14.00">b30</text>
<polygon fill="none" stroke="black" points="678.75,-71.25 678.75,-95 804.75,-95 804.75,-71.25 678.75,-71.25"/>
<text text-anchor="start" x="730.5" y="-77.7" font-family="arial" font-size="14.00">d30</text>
<polygon fill="none" stroke="black" points="678.75,-47.5 678.75,-71.25 804.75,-71.25 804.75,-47.5 678.75,-47.5"/>
<text text-anchor="start" x="730.88" y="-53.95" font-family="arial" font-size="14.00">z32</text>
<polygon fill="none" stroke="black" points="678.75,-23.75 678.75,-47.5 804.75,-47.5 804.75,-23.75 678.75,-23.75"/>
<text text-anchor="start" x="730.5" y="-30.2" font-family="arial" font-size="14.00">b32</text>
<polygon fill="none" stroke="black" points="678.75,0 678.75,-23.75 804.75,-23.75 804.75,0 678.75,0"/>
<text text-anchor="start" x="730.5" y="-6.45" font-family="arial" font-size="14.00">d32</text>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-678C689.87,-683.79 541.28,-979.79 684,-974"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M540,-680C688.08,-682.9 539.49,-978.9 684,-976"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M540,-682C686.3,-682 537.7,-978 684,-978"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M540,-684C684.51,-681.1 535.92,-977.1 684,-980"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-686C682.72,-680.21 534.13,-976.21 684,-982"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-696.75C689.82,-702.58 530.79,-1011.58 678.75,-1005.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M534.75,-698.75C688.04,-701.67 529.01,-1010.67 678.75,-1007.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M534.75,-700.75C686.26,-700.75 527.24,-1009.75 678.75,-1009.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M534.75,-702.75C684.49,-699.83 525.46,-1008.83 678.75,-1011.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-704.75C682.71,-698.92 523.68,-1007.92 678.75,-1013.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-707C724.91,-712.99 506.03,-1094.99 684,-1089"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M540,-709C723.18,-711.99 504.3,-1093.99 684,-1091"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M540,-711C721.44,-711 502.56,-1093 684,-1093"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M540,-713C719.7,-710.01 500.82,-1092.01 684,-1095"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-715C717.97,-709.01 499.09,-1091.01 684,-1097"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-725.75C726.32,-731.77 494.09,-1129.77 678.75,-1123.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M534.75,-727.75C724.59,-730.76 492.37,-1128.76 678.75,-1125.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M534.75,-729.75C722.86,-729.75 490.64,-1127.75 678.75,-1127.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M534.75,-731.75C721.13,-728.74 488.91,-1126.74 678.75,-1129.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-733.75C719.41,-727.73 487.18,-1125.73 678.75,-1131.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge6" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-620C635.32,-625.02 596.41,-772.02 684,-767"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M540,-622C633.39,-624.51 594.48,-771.51 684,-769"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M540,-624C631.46,-624 592.54,-771 684,-771"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M540,-626C629.52,-623.49 590.61,-770.49 684,-773"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-628C627.59,-622.98 588.68,-769.98 684,-775"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-638.75C631.98,-643.83 589.22,-796.83 678.75,-791.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M534.75,-640.75C630.06,-643.29 587.3,-796.29 678.75,-793.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M534.75,-642.75C628.13,-642.75 585.37,-795.75 678.75,-795.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M534.75,-644.75C626.2,-642.21 583.44,-795.21 678.75,-797.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-646.75C624.28,-641.67 581.52,-794.67 678.75,-799.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge8" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-649C665.42,-654.57 565.94,-887.57 684,-882"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M540,-651C663.58,-653.79 564.1,-886.79 684,-884"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M540,-653C661.74,-653 562.26,-886 684,-886"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M540,-655C659.9,-652.21 560.42,-885.21 684,-888"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-657C658.06,-651.43 558.58,-884.43 684,-890"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-667.75C663.95,-673.36 556.87,-916.36 678.75,-910.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M534.75,-669.75C662.12,-672.56 555.04,-915.56 678.75,-912.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M534.75,-671.75C660.29,-671.75 553.21,-914.75 678.75,-914.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M534.75,-673.75C658.46,-670.94 551.38,-913.94 678.75,-916.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-675.75C656.63,-670.14 549.55,-913.14 678.75,-918.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge10" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-562C603.28,-562.07 619.25,-559.07 684,-559"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M540,-564C603.64,-564.03 619.62,-561.03 684,-561"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M540,-566C604.01,-566 619.99,-563 684,-563"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M540,-568C604.38,-567.97 620.36,-564.97 684,-565"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-570C604.75,-569.93 620.72,-566.93 684,-567"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-580.75C598.03,-580.82 614,-577.82 678.75,-577.75"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M534.75,-582.75C598.39,-582.78 614.37,-579.78 678.75,-579.75"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M534.75,-584.75C598.76,-584.75 614.74,-581.75 678.75,-581.75"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M534.75,-586.75C599.13,-586.72 615.11,-583.72 678.75,-583.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-588.75C599.5,-588.68 615.47,-585.68 678.75,-585.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge12" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-591C618.09,-595.2 613.9,-679.2 684,-675"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M540,-593C616.09,-595.1 611.9,-679.1 684,-677"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M540,-595C614.09,-595 609.91,-679 684,-679"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M540,-597C612.1,-594.9 607.91,-678.9 684,-681"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-599C610.1,-594.8 605.91,-678.8 684,-683"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-609.75C613.52,-614 607.97,-701 678.75,-696.75"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M534.75,-611.75C611.52,-613.88 605.97,-700.88 678.75,-698.75"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M534.75,-613.75C609.52,-613.75 603.98,-700.75 678.75,-700.75"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M534.75,-615.75C607.53,-613.62 601.98,-700.62 678.75,-702.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-617.75C605.53,-613.5 599.98,-700.5 678.75,-704.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge14" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-504C609.87,-508.18 606.13,-425.18 684,-421"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M540,-506C611.87,-508.09 608.13,-425.09 684,-423"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M540,-508C613.87,-508 610.13,-425 684,-425"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M540,-510C615.87,-507.91 612.13,-424.91 684,-427"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-512C617.87,-507.82 614.13,-424.82 684,-429"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-522.75C605.53,-527 599.98,-440 678.75,-435.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M534.75,-524.75C607.53,-526.88 601.98,-439.88 678.75,-437.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M534.75,-526.75C609.52,-526.75 603.98,-439.75 678.75,-439.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M534.75,-528.75C611.52,-526.62 605.97,-439.62 678.75,-441.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-530.75C613.52,-526.5 607.97,-439.5 678.75,-443.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge16" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-533C604.75,-533.07 620.72,-536.07 684,-536"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M540,-535C604.38,-535.03 620.36,-538.03 684,-538"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M540,-537C604.01,-537 619.99,-540 684,-540"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M540,-539C603.64,-538.97 619.62,-541.97 684,-542"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-541C603.28,-540.93 619.25,-543.93 684,-544"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-551.75C599.25,-551.78 615.24,-553.78 678.75,-553.75"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M534.75,-553.75C599,-553.77 614.99,-555.77 678.75,-555.75"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M534.75,-555.75C598.76,-555.75 614.74,-557.75 678.75,-557.75"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M534.75,-557.75C598.51,-557.73 614.5,-559.73 678.75,-559.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-559.75C598.26,-559.72 614.25,-561.72 678.75,-561.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge18" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-446C657.68,-451.57 558.96,-219.57 684,-214"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M540,-448C659.52,-450.78 560.8,-218.78 684,-216"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M540,-450C661.36,-450 562.64,-218 684,-218"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M540,-452C663.2,-449.22 564.48,-217.22 684,-220"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-454C665.04,-448.43 566.32,-216.43 684,-222"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-464.75C656.63,-470.36 549.55,-227.36 678.75,-221.75"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M534.75,-466.75C658.46,-469.56 551.38,-226.56 678.75,-223.75"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M534.75,-468.75C660.29,-468.75 553.21,-225.75 678.75,-225.75"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M534.75,-470.75C662.12,-467.94 555.04,-224.94 678.75,-227.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-472.75C663.95,-467.14 556.87,-224.14 678.75,-229.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge20" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-475C627.27,-480.01 588.99,-334.01 684,-329"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-477C629.21,-479.51 590.93,-333.51 684,-331"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-479C631.14,-479 592.86,-333 684,-333"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-481C633.07,-478.49 594.79,-332.49 684,-335"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-483C635.01,-477.99 596.73,-331.99 684,-337"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-493.75C624.28,-498.83 581.52,-345.83 678.75,-340.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-495.75C626.2,-498.29 583.44,-345.29 678.75,-342.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-497.75C628.13,-497.75 585.37,-344.75 678.75,-344.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-499.75C630.06,-497.21 587.3,-344.21 678.75,-346.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-501.75C631.98,-496.67 589.22,-343.67 678.75,-348.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge22" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-388C717.55,-393.99 499.5,-12.99 684,-7"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M540,-390C719.29,-392.99 501.24,-11.99 684,-9"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M540,-392C721.02,-392 502.98,-11 684,-11"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M540,-394C722.76,-391.01 504.71,-10.01 684,-13"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-396C724.5,-390.01 506.45,-9.01 684,-15"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-406.75C719.82,-412.77 486.77,-13.77 678.75,-7.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M534.75,-408.75C721.55,-411.76 488.49,-12.76 678.75,-9.75"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M534.75,-410.75C723.28,-410.75 490.22,-11.75 678.75,-11.75"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M534.75,-412.75C725.01,-409.74 491.95,-10.74 678.75,-13.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-414.75C726.73,-408.73 493.68,-9.73 678.75,-15.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge24" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-417C682.32,-422.79 534.53,-127.79 684,-122"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M540,-419C684.11,-421.9 536.31,-126.9 684,-124"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M540,-421C685.9,-421 538.1,-126 684,-126"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M540,-423C687.69,-420.1 539.89,-125.1 684,-128"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M540,-425C689.47,-419.21 541.68,-124.21 684,-130"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-435.75C682.71,-441.58 523.68,-132.58 678.75,-126.75"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M534.75,-437.75C684.49,-440.67 525.46,-131.67 678.75,-128.75"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M534.75,-439.75C686.26,-439.75 527.24,-130.75 678.75,-130.75"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M534.75,-441.75C688.04,-438.83 529.01,-129.83 678.75,-132.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M534.75,-443.75C689.82,-437.92 530.79,-128.92 678.75,-134.75"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 46 KiB

488
examples/ex10.html generated
View File

@ -30,327 +30,327 @@
<div id="diagram">
<!-- XML and DOCTYPE declarations from SVG file removed -->
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="1097pt" height="324pt"
viewBox="0.00 0.00 1097.00 324.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 320)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-320 1093,-320 1093,4 -4,4"/>
<svg width="1089pt" height="326pt"
viewBox="0.00 0.00 1089.00 325.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 321.5)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-321.5 1085,-321.5 1085,4 -4,4"/>
<!-- X1 -->
<g id="node1" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="289,-264 0,-264 0,-34 289,-34 289,-264"/>
<polygon fill="none" stroke="black" points="0.5,-241 0.5,-264 289.5,-264 289.5,-241 0.5,-241"/>
<text text-anchor="start" x="136.5" y="-248.8" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0.5,-218 0.5,-241 211.5,-241 211.5,-218 0.5,-218"/>
<text text-anchor="start" x="4.5" y="-225.8" font-family="arial" font-size="14.00">Stewart Connector SS&#45;37000&#45;002</text>
<polygon fill="none" stroke="black" points="211.5,-218 211.5,-241 250.5,-241 250.5,-218 211.5,-218"/>
<text text-anchor="start" x="215.5" y="-225.8" font-family="arial" font-size="14.00">male</text>
<polygon fill="none" stroke="black" points="250.5,-218 250.5,-241 289.5,-241 289.5,-218 250.5,-218"/>
<text text-anchor="start" x="254.5" y="-225.8" font-family="arial" font-size="14.00">8&#45;pin</text>
<polygon fill="none" stroke="black" points="0.5,-195 0.5,-218 155.5,-218 155.5,-195 0.5,-195"/>
<text text-anchor="start" x="64" y="-202.8" font-family="arial" font-size="14.00">DA+</text>
<polygon fill="none" stroke="black" points="155.5,-195 155.5,-218 289.5,-218 289.5,-195 155.5,-195"/>
<text text-anchor="start" x="218.5" y="-202.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0.5,-172 0.5,-195 155.5,-195 155.5,-172 0.5,-172"/>
<text text-anchor="start" x="66" y="-179.8" font-family="arial" font-size="14.00">DA&#45;</text>
<polygon fill="none" stroke="black" points="155.5,-172 155.5,-195 289.5,-195 289.5,-172 155.5,-172"/>
<text text-anchor="start" x="218.5" y="-179.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0.5,-149 0.5,-172 155.5,-172 155.5,-149 0.5,-149"/>
<text text-anchor="start" x="64" y="-156.8" font-family="arial" font-size="14.00">DB+</text>
<polygon fill="none" stroke="black" points="155.5,-149 155.5,-172 289.5,-172 289.5,-149 155.5,-149"/>
<text text-anchor="start" x="218.5" y="-156.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0.5,-126 0.5,-149 155.5,-149 155.5,-126 0.5,-126"/>
<text text-anchor="start" x="64" y="-133.8" font-family="arial" font-size="14.00">DC+</text>
<polygon fill="none" stroke="black" points="155.5,-126 155.5,-149 289.5,-149 289.5,-126 155.5,-126"/>
<text text-anchor="start" x="218.5" y="-133.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="0.5,-103 0.5,-126 155.5,-126 155.5,-103 0.5,-103"/>
<text text-anchor="start" x="65.5" y="-110.8" font-family="arial" font-size="14.00">DC&#45;</text>
<polygon fill="none" stroke="black" points="155.5,-103 155.5,-126 289.5,-126 289.5,-103 155.5,-103"/>
<text text-anchor="start" x="218.5" y="-110.8" font-family="arial" font-size="14.00">5</text>
<polygon fill="none" stroke="black" points="0.5,-80 0.5,-103 155.5,-103 155.5,-80 0.5,-80"/>
<text text-anchor="start" x="66" y="-87.8" font-family="arial" font-size="14.00">DB&#45;</text>
<polygon fill="none" stroke="black" points="155.5,-80 155.5,-103 289.5,-103 289.5,-80 155.5,-80"/>
<text text-anchor="start" x="218.5" y="-87.8" font-family="arial" font-size="14.00">6</text>
<polygon fill="none" stroke="black" points="0.5,-57 0.5,-80 155.5,-80 155.5,-57 0.5,-57"/>
<text text-anchor="start" x="64" y="-64.8" font-family="arial" font-size="14.00">DD+</text>
<polygon fill="none" stroke="black" points="155.5,-57 155.5,-80 289.5,-80 289.5,-57 155.5,-57"/>
<text text-anchor="start" x="218.5" y="-64.8" font-family="arial" font-size="14.00">7</text>
<polygon fill="none" stroke="black" points="0.5,-34 0.5,-57 155.5,-57 155.5,-34 0.5,-34"/>
<text text-anchor="start" x="65.5" y="-41.8" font-family="arial" font-size="14.00">DD&#45;</text>
<polygon fill="none" stroke="black" points="155.5,-34 155.5,-57 289.5,-57 289.5,-34 155.5,-34"/>
<text text-anchor="start" x="218.5" y="-41.8" font-family="arial" font-size="14.00">8</text>
<polygon fill="#ffffff" stroke="black" points="286.5,-264.5 0,-264.5 0,-33 286.5,-33 286.5,-264.5"/>
<polygon fill="none" stroke="black" points="0,-240.75 0,-264.5 286.5,-264.5 286.5,-240.75 0,-240.75"/>
<text text-anchor="start" x="135" y="-247.2" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-217 0,-240.75 210.5,-240.75 210.5,-217 0,-217"/>
<text text-anchor="start" x="4" y="-223.45" font-family="arial" font-size="14.00">Stewart Connector SS&#45;37000&#45;002</text>
<polygon fill="none" stroke="black" points="210.5,-217 210.5,-240.75 248.5,-240.75 248.5,-217 210.5,-217"/>
<text text-anchor="start" x="214.5" y="-223.45" font-family="arial" font-size="14.00">male</text>
<polygon fill="none" stroke="black" points="248.5,-217 248.5,-240.75 286.5,-240.75 286.5,-217 248.5,-217"/>
<text text-anchor="start" x="252.5" y="-223.45" font-family="arial" font-size="14.00">8&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-194 0,-217 153.25,-217 153.25,-194 0,-194"/>
<text text-anchor="start" x="63.12" y="-199.7" font-family="arial" font-size="14.00">DA+</text>
<polygon fill="none" stroke="black" points="153.25,-194 153.25,-217 286.5,-217 286.5,-194 153.25,-194"/>
<text text-anchor="start" x="216.12" y="-199.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-171 0,-194 153.25,-194 153.25,-171 0,-171"/>
<text text-anchor="start" x="65" y="-176.7" font-family="arial" font-size="14.00">DA&#45;</text>
<polygon fill="none" stroke="black" points="153.25,-171 153.25,-194 286.5,-194 286.5,-171 153.25,-171"/>
<text text-anchor="start" x="216.12" y="-176.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0,-148 0,-171 153.25,-171 153.25,-148 0,-148"/>
<text text-anchor="start" x="63.12" y="-153.7" font-family="arial" font-size="14.00">DB+</text>
<polygon fill="none" stroke="black" points="153.25,-148 153.25,-171 286.5,-171 286.5,-148 153.25,-148"/>
<text text-anchor="start" x="216.12" y="-153.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-125 0,-148 153.25,-148 153.25,-125 0,-125"/>
<text text-anchor="start" x="62.75" y="-130.7" font-family="arial" font-size="14.00">DC+</text>
<polygon fill="none" stroke="black" points="153.25,-125 153.25,-148 286.5,-148 286.5,-125 153.25,-125"/>
<text text-anchor="start" x="216.12" y="-130.7" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="0,-102 0,-125 153.25,-125 153.25,-102 0,-102"/>
<text text-anchor="start" x="64.62" y="-107.7" font-family="arial" font-size="14.00">DC&#45;</text>
<polygon fill="none" stroke="black" points="153.25,-102 153.25,-125 286.5,-125 286.5,-102 153.25,-102"/>
<text text-anchor="start" x="216.12" y="-107.7" font-family="arial" font-size="14.00">5</text>
<polygon fill="none" stroke="black" points="0,-79 0,-102 153.25,-102 153.25,-79 0,-79"/>
<text text-anchor="start" x="65" y="-84.7" font-family="arial" font-size="14.00">DB&#45;</text>
<polygon fill="none" stroke="black" points="153.25,-79 153.25,-102 286.5,-102 286.5,-79 153.25,-79"/>
<text text-anchor="start" x="216.12" y="-84.7" font-family="arial" font-size="14.00">6</text>
<polygon fill="none" stroke="black" points="0,-56 0,-79 153.25,-79 153.25,-56 0,-56"/>
<text text-anchor="start" x="62.75" y="-61.7" font-family="arial" font-size="14.00">DD+</text>
<polygon fill="none" stroke="black" points="153.25,-56 153.25,-79 286.5,-79 286.5,-56 153.25,-56"/>
<text text-anchor="start" x="216.12" y="-61.7" font-family="arial" font-size="14.00">7</text>
<polygon fill="none" stroke="black" points="0,-33 0,-56 153.25,-56 153.25,-33 0,-33"/>
<text text-anchor="start" x="64.62" y="-38.7" font-family="arial" font-size="14.00">DD&#45;</text>
<polygon fill="none" stroke="black" points="153.25,-33 153.25,-56 286.5,-56 286.5,-33 153.25,-33"/>
<text text-anchor="start" x="216.12" y="-38.7" font-family="arial" font-size="14.00">8</text>
</g>
<!-- W1 -->
<g id="node3" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" points="656,-316 433,-316 433,0 656,0 656,-316"/>
<polygon fill="none" stroke="black" points="433.5,-293 433.5,-316 656.5,-316 656.5,-293 433.5,-293"/>
<text text-anchor="start" x="534" y="-300.8" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="433.5,-270 433.5,-293 498.5,-293 498.5,-270 433.5,-270"/>
<text text-anchor="start" x="445" y="-277.8" font-family="arial" font-size="14.00">CAT5e</text>
<polygon fill="none" stroke="black" points="498.5,-270 498.5,-293 536.5,-293 536.5,-270 498.5,-270"/>
<text text-anchor="start" x="510" y="-277.8" font-family="arial" font-size="14.00">8x</text>
<polygon fill="none" stroke="black" points="536.5,-270 536.5,-293 610.5,-293 610.5,-270 536.5,-270"/>
<text text-anchor="start" x="547.5" y="-277.8" font-family="arial" font-size="14.00">24 AWG</text>
<polygon fill="none" stroke="black" points="610.5,-270 610.5,-293 656.5,-293 656.5,-270 610.5,-270"/>
<text text-anchor="start" x="621.5" y="-277.8" font-family="arial" font-size="14.00">1 m</text>
<text text-anchor="start" x="463.5" y="-256.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="436" y="-237.8" font-family="arial" font-size="14.00">X1:1:DA+</text>
<text text-anchor="start" x="500" y="-237.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:WHGN &#160;&#160;&#160;</text>
<text text-anchor="start" x="595" y="-237.8" font-family="arial" font-size="14.00">X2:3:DA+</text>
<polygon fill="#000000" stroke="none" points="433.5,-230 433.5,-232 656.5,-232 656.5,-230 433.5,-230"/>
<polygon fill="#ffffff" stroke="none" points="433.5,-228 433.5,-230 656.5,-230 656.5,-228 433.5,-228"/>
<polygon fill="#00ff00" stroke="none" points="433.5,-226 433.5,-228 656.5,-228 656.5,-226 433.5,-226"/>
<polygon fill="#ffffff" stroke="none" points="433.5,-224 433.5,-226 656.5,-226 656.5,-224 433.5,-224"/>
<polygon fill="#000000" stroke="none" points="433.5,-222 433.5,-224 656.5,-224 656.5,-222 433.5,-222"/>
<text text-anchor="start" x="438" y="-208.8" font-family="arial" font-size="14.00">X1:2:DA&#45;</text>
<text text-anchor="start" x="511.5" y="-208.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="597" y="-208.8" font-family="arial" font-size="14.00">X2:6:DA&#45;</text>
<polygon fill="#000000" stroke="none" points="433.5,-201 433.5,-203 656.5,-203 656.5,-201 433.5,-201"/>
<polygon fill="#00ff00" stroke="none" points="433.5,-199 433.5,-201 656.5,-201 656.5,-199 433.5,-199"/>
<polygon fill="#00ff00" stroke="none" points="433.5,-197 433.5,-199 656.5,-199 656.5,-197 433.5,-197"/>
<polygon fill="#00ff00" stroke="none" points="433.5,-195 433.5,-197 656.5,-197 656.5,-195 433.5,-195"/>
<polygon fill="#000000" stroke="none" points="433.5,-193 433.5,-195 656.5,-195 656.5,-193 433.5,-193"/>
<text text-anchor="start" x="436" y="-179.8" font-family="arial" font-size="14.00">X1:3:DB+</text>
<text text-anchor="start" x="499.5" y="-179.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:WHOG &#160;&#160;&#160;</text>
<text text-anchor="start" x="595" y="-179.8" font-family="arial" font-size="14.00">X2:1:DB+</text>
<polygon fill="#000000" stroke="none" points="433.5,-172 433.5,-174 656.5,-174 656.5,-172 433.5,-172"/>
<polygon fill="#ffffff" stroke="none" points="433.5,-170 433.5,-172 656.5,-172 656.5,-170 433.5,-170"/>
<polygon fill="#ff8000" stroke="none" points="433.5,-168 433.5,-170 656.5,-170 656.5,-168 433.5,-168"/>
<polygon fill="#ffffff" stroke="none" points="433.5,-166 433.5,-168 656.5,-168 656.5,-166 433.5,-166"/>
<polygon fill="#000000" stroke="none" points="433.5,-164 433.5,-166 656.5,-166 656.5,-164 433.5,-164"/>
<text text-anchor="start" x="435.5" y="-150.8" font-family="arial" font-size="14.00">X1:4:DC+</text>
<text text-anchor="start" x="513" y="-150.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:BU &#160;&#160;&#160;</text>
<text text-anchor="start" x="594.5" y="-150.8" font-family="arial" font-size="14.00">X2:7:DC+</text>
<polygon fill="#000000" stroke="none" points="433.5,-143 433.5,-145 656.5,-145 656.5,-143 433.5,-143"/>
<polygon fill="#0066ff" stroke="none" points="433.5,-141 433.5,-143 656.5,-143 656.5,-141 433.5,-141"/>
<polygon fill="#0066ff" stroke="none" points="433.5,-139 433.5,-141 656.5,-141 656.5,-139 433.5,-139"/>
<polygon fill="#0066ff" stroke="none" points="433.5,-137 433.5,-139 656.5,-139 656.5,-137 433.5,-137"/>
<polygon fill="#000000" stroke="none" points="433.5,-135 433.5,-137 656.5,-137 656.5,-135 433.5,-135"/>
<text text-anchor="start" x="437.5" y="-121.8" font-family="arial" font-size="14.00">X1:5:DC&#45;</text>
<text text-anchor="start" x="501" y="-121.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;5:WHBU &#160;&#160;&#160;</text>
<text text-anchor="start" x="596.5" y="-121.8" font-family="arial" font-size="14.00">X2:8:DC&#45;</text>
<polygon fill="#000000" stroke="none" points="433.5,-114 433.5,-116 656.5,-116 656.5,-114 433.5,-114"/>
<polygon fill="#ffffff" stroke="none" points="433.5,-112 433.5,-114 656.5,-114 656.5,-112 433.5,-112"/>
<polygon fill="#0066ff" stroke="none" points="433.5,-110 433.5,-112 656.5,-112 656.5,-110 433.5,-110"/>
<polygon fill="#ffffff" stroke="none" points="433.5,-108 433.5,-110 656.5,-110 656.5,-108 433.5,-108"/>
<polygon fill="#000000" stroke="none" points="433.5,-106 433.5,-108 656.5,-108 656.5,-106 433.5,-106"/>
<text text-anchor="start" x="438" y="-92.8" font-family="arial" font-size="14.00">X1:6:DB&#45;</text>
<text text-anchor="start" x="511" y="-92.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;6:OG &#160;&#160;&#160;</text>
<text text-anchor="start" x="597" y="-92.8" font-family="arial" font-size="14.00">X2:2:DB&#45;</text>
<polygon fill="#000000" stroke="none" points="433.5,-85 433.5,-87 656.5,-87 656.5,-85 433.5,-85"/>
<polygon fill="#ff8000" stroke="none" points="433.5,-83 433.5,-85 656.5,-85 656.5,-83 433.5,-83"/>
<polygon fill="#ff8000" stroke="none" points="433.5,-81 433.5,-83 656.5,-83 656.5,-81 433.5,-81"/>
<polygon fill="#ff8000" stroke="none" points="433.5,-79 433.5,-81 656.5,-81 656.5,-79 433.5,-79"/>
<polygon fill="#000000" stroke="none" points="433.5,-77 433.5,-79 656.5,-79 656.5,-77 433.5,-77"/>
<text text-anchor="start" x="435.5" y="-63.8" font-family="arial" font-size="14.00">X1:7:DD+</text>
<text text-anchor="start" x="501" y="-63.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;7:WHBN &#160;&#160;&#160;</text>
<text text-anchor="start" x="594.5" y="-63.8" font-family="arial" font-size="14.00">X2:4:DD+</text>
<polygon fill="#000000" stroke="none" points="433.5,-56 433.5,-58 656.5,-58 656.5,-56 433.5,-56"/>
<polygon fill="#ffffff" stroke="none" points="433.5,-54 433.5,-56 656.5,-56 656.5,-54 433.5,-54"/>
<polygon fill="#895956" stroke="none" points="433.5,-52 433.5,-54 656.5,-54 656.5,-52 433.5,-52"/>
<polygon fill="#ffffff" stroke="none" points="433.5,-50 433.5,-52 656.5,-52 656.5,-50 433.5,-50"/>
<polygon fill="#000000" stroke="none" points="433.5,-48 433.5,-50 656.5,-50 656.5,-48 433.5,-48"/>
<text text-anchor="start" x="437.5" y="-34.8" font-family="arial" font-size="14.00">X1:8:DD&#45;</text>
<text text-anchor="start" x="513" y="-34.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;8:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="596.5" y="-34.8" font-family="arial" font-size="14.00">X2:5:DD&#45;</text>
<polygon fill="#000000" stroke="none" points="433.5,-27 433.5,-29 656.5,-29 656.5,-27 433.5,-27"/>
<polygon fill="#895956" stroke="none" points="433.5,-25 433.5,-27 656.5,-27 656.5,-25 433.5,-25"/>
<polygon fill="#895956" stroke="none" points="433.5,-23 433.5,-25 656.5,-25 656.5,-23 433.5,-23"/>
<polygon fill="#895956" stroke="none" points="433.5,-21 433.5,-23 656.5,-23 656.5,-21 433.5,-21"/>
<polygon fill="#000000" stroke="none" points="433.5,-19 433.5,-21 656.5,-21 656.5,-19 433.5,-19"/>
<text text-anchor="start" x="463.5" y="-5.8" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" points="650.5,-317.5 430.5,-317.5 430.5,0 650.5,0 650.5,-317.5"/>
<polygon fill="none" stroke="black" points="430.5,-293.75 430.5,-317.5 650.5,-317.5 650.5,-293.75 430.5,-293.75"/>
<text text-anchor="start" x="530" y="-300.2" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="430.5,-270 430.5,-293.75 494.12,-293.75 494.12,-270 430.5,-270"/>
<text text-anchor="start" x="441.69" y="-276.45" font-family="arial" font-size="14.00">CAT5e</text>
<polygon fill="none" stroke="black" points="494.12,-270 494.12,-293.75 530.75,-293.75 530.75,-270 494.12,-270"/>
<text text-anchor="start" x="505.31" y="-276.45" font-family="arial" font-size="14.00">8x</text>
<polygon fill="none" stroke="black" points="530.75,-270 530.75,-293.75 604.88,-293.75 604.88,-270 530.75,-270"/>
<text text-anchor="start" x="541.94" y="-276.45" font-family="arial" font-size="14.00">24 AWG</text>
<polygon fill="none" stroke="black" points="604.88,-270 604.88,-293.75 650.5,-293.75 650.5,-270 604.88,-270"/>
<text text-anchor="start" x="616.06" y="-276.45" font-family="arial" font-size="14.00">1 m</text>
<text text-anchor="start" x="460.12" y="-254.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="432.75" y="-235.7" font-family="arial" font-size="14.00">X1:1:DA+</text>
<text text-anchor="start" x="495.88" y="-235.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:WHGN &#160;&#160;&#160;</text>
<text text-anchor="start" x="589.75" y="-235.7" font-family="arial" font-size="14.00">X2:3:DA+</text>
<polygon fill="#000000" stroke="none" points="430.5,-230 430.5,-232 650.5,-232 650.5,-230 430.5,-230"/>
<polygon fill="#ffffff" stroke="none" points="430.5,-228 430.5,-230 650.5,-230 650.5,-228 430.5,-228"/>
<polygon fill="#00ff00" stroke="none" points="430.5,-226 430.5,-228 650.5,-228 650.5,-226 430.5,-226"/>
<polygon fill="#ffffff" stroke="none" points="430.5,-224 430.5,-226 650.5,-226 650.5,-224 430.5,-224"/>
<polygon fill="#000000" stroke="none" points="430.5,-222 430.5,-224 650.5,-224 650.5,-222 430.5,-222"/>
<text text-anchor="start" x="434.62" y="-206.7" font-family="arial" font-size="14.00">X1:2:DA&#45;</text>
<text text-anchor="start" x="507.5" y="-206.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="591.62" y="-206.7" font-family="arial" font-size="14.00">X2:6:DA&#45;</text>
<polygon fill="#000000" stroke="none" points="430.5,-201 430.5,-203 650.5,-203 650.5,-201 430.5,-201"/>
<polygon fill="#00ff00" stroke="none" points="430.5,-199 430.5,-201 650.5,-201 650.5,-199 430.5,-199"/>
<polygon fill="#00ff00" stroke="none" points="430.5,-197 430.5,-199 650.5,-199 650.5,-197 430.5,-197"/>
<polygon fill="#00ff00" stroke="none" points="430.5,-195 430.5,-197 650.5,-197 650.5,-195 430.5,-195"/>
<polygon fill="#000000" stroke="none" points="430.5,-193 430.5,-195 650.5,-195 650.5,-193 430.5,-193"/>
<text text-anchor="start" x="432.75" y="-177.7" font-family="arial" font-size="14.00">X1:3:DB+</text>
<text text-anchor="start" x="495.12" y="-177.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:WHOG &#160;&#160;&#160;</text>
<text text-anchor="start" x="589.75" y="-177.7" font-family="arial" font-size="14.00">X2:1:DB+</text>
<polygon fill="#000000" stroke="none" points="430.5,-172 430.5,-174 650.5,-174 650.5,-172 430.5,-172"/>
<polygon fill="#ffffff" stroke="none" points="430.5,-170 430.5,-172 650.5,-172 650.5,-170 430.5,-170"/>
<polygon fill="#ff8000" stroke="none" points="430.5,-168 430.5,-170 650.5,-170 650.5,-168 430.5,-168"/>
<polygon fill="#ffffff" stroke="none" points="430.5,-166 430.5,-168 650.5,-168 650.5,-166 430.5,-166"/>
<polygon fill="#000000" stroke="none" points="430.5,-164 430.5,-166 650.5,-166 650.5,-164 430.5,-164"/>
<text text-anchor="start" x="432.38" y="-148.7" font-family="arial" font-size="14.00">X1:4:DC+</text>
<text text-anchor="start" x="508.62" y="-148.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:BU &#160;&#160;&#160;</text>
<text text-anchor="start" x="589.38" y="-148.7" font-family="arial" font-size="14.00">X2:7:DC+</text>
<polygon fill="#000000" stroke="none" points="430.5,-143 430.5,-145 650.5,-145 650.5,-143 430.5,-143"/>
<polygon fill="#0066ff" stroke="none" points="430.5,-141 430.5,-143 650.5,-143 650.5,-141 430.5,-141"/>
<polygon fill="#0066ff" stroke="none" points="430.5,-139 430.5,-141 650.5,-141 650.5,-139 430.5,-139"/>
<polygon fill="#0066ff" stroke="none" points="430.5,-137 430.5,-139 650.5,-139 650.5,-137 430.5,-137"/>
<polygon fill="#000000" stroke="none" points="430.5,-135 430.5,-137 650.5,-137 650.5,-135 430.5,-135"/>
<text text-anchor="start" x="434.25" y="-119.7" font-family="arial" font-size="14.00">X1:5:DC&#45;</text>
<text text-anchor="start" x="497" y="-119.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;5:WHBU &#160;&#160;&#160;</text>
<text text-anchor="start" x="591.25" y="-119.7" font-family="arial" font-size="14.00">X2:8:DC&#45;</text>
<polygon fill="#000000" stroke="none" points="430.5,-114 430.5,-116 650.5,-116 650.5,-114 430.5,-114"/>
<polygon fill="#ffffff" stroke="none" points="430.5,-112 430.5,-114 650.5,-114 650.5,-112 430.5,-112"/>
<polygon fill="#0066ff" stroke="none" points="430.5,-110 430.5,-112 650.5,-112 650.5,-110 430.5,-110"/>
<polygon fill="#ffffff" stroke="none" points="430.5,-108 430.5,-110 650.5,-110 650.5,-108 430.5,-108"/>
<polygon fill="#000000" stroke="none" points="430.5,-106 430.5,-108 650.5,-108 650.5,-106 430.5,-106"/>
<text text-anchor="start" x="434.62" y="-90.7" font-family="arial" font-size="14.00">X1:6:DB&#45;</text>
<text text-anchor="start" x="506.75" y="-90.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;6:OG &#160;&#160;&#160;</text>
<text text-anchor="start" x="591.62" y="-90.7" font-family="arial" font-size="14.00">X2:2:DB&#45;</text>
<polygon fill="#000000" stroke="none" points="430.5,-85 430.5,-87 650.5,-87 650.5,-85 430.5,-85"/>
<polygon fill="#ff8000" stroke="none" points="430.5,-83 430.5,-85 650.5,-85 650.5,-83 430.5,-83"/>
<polygon fill="#ff8000" stroke="none" points="430.5,-81 430.5,-83 650.5,-83 650.5,-81 430.5,-81"/>
<polygon fill="#ff8000" stroke="none" points="430.5,-79 430.5,-81 650.5,-81 650.5,-79 430.5,-79"/>
<polygon fill="#000000" stroke="none" points="430.5,-77 430.5,-79 650.5,-79 650.5,-77 430.5,-77"/>
<text text-anchor="start" x="432.38" y="-61.7" font-family="arial" font-size="14.00">X1:7:DD+</text>
<text text-anchor="start" x="497" y="-61.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;7:WHBN &#160;&#160;&#160;</text>
<text text-anchor="start" x="589.38" y="-61.7" font-family="arial" font-size="14.00">X2:4:DD+</text>
<polygon fill="#000000" stroke="none" points="430.5,-56 430.5,-58 650.5,-58 650.5,-56 430.5,-56"/>
<polygon fill="#ffffff" stroke="none" points="430.5,-54 430.5,-56 650.5,-56 650.5,-54 430.5,-54"/>
<polygon fill="#895956" stroke="none" points="430.5,-52 430.5,-54 650.5,-54 650.5,-52 430.5,-52"/>
<polygon fill="#ffffff" stroke="none" points="430.5,-50 430.5,-52 650.5,-52 650.5,-50 430.5,-50"/>
<polygon fill="#000000" stroke="none" points="430.5,-48 430.5,-50 650.5,-50 650.5,-48 430.5,-48"/>
<text text-anchor="start" x="434.25" y="-32.7" font-family="arial" font-size="14.00">X1:8:DD&#45;</text>
<text text-anchor="start" x="508.62" y="-32.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;8:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="591.25" y="-32.7" font-family="arial" font-size="14.00">X2:5:DD&#45;</text>
<polygon fill="#000000" stroke="none" points="430.5,-27 430.5,-29 650.5,-29 650.5,-27 430.5,-27"/>
<polygon fill="#895956" stroke="none" points="430.5,-25 430.5,-27 650.5,-27 650.5,-25 430.5,-25"/>
<polygon fill="#895956" stroke="none" points="430.5,-23 430.5,-25 650.5,-25 650.5,-23 430.5,-23"/>
<polygon fill="#895956" stroke="none" points="430.5,-21 430.5,-23 650.5,-23 650.5,-21 430.5,-21"/>
<polygon fill="#000000" stroke="none" points="430.5,-19 430.5,-21 650.5,-21 650.5,-19 430.5,-19"/>
<text text-anchor="start" x="460.12" y="-3.7" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge1" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-203C356.83,-204.62 371.6,-224.62 433,-223"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-205C355.22,-205.81 369.99,-225.81 433,-225"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M289,-207C353.61,-207 368.39,-227 433,-227"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-209C352.01,-208.19 366.78,-228.19 433,-229"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-211C350.4,-209.38 365.17,-229.38 433,-231"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M286.5,-201.75C354.46,-203.46 369.1,-224.46 430.5,-222.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M286.5,-203.75C352.82,-204.61 367.46,-225.61 430.5,-224.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M286.5,-205.75C351.18,-205.75 365.82,-226.75 430.5,-226.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M286.5,-207.75C349.54,-206.89 364.18,-227.89 430.5,-228.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M286.5,-209.75C347.9,-208.04 362.54,-229.04 430.5,-230.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge3" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-180C355.99,-181.04 371.39,-195.04 433,-194"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M289,-182C354.65,-182.52 370.04,-196.52 433,-196"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M289,-184C353.3,-184 368.7,-198 433,-198"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M289,-186C351.96,-185.48 367.35,-199.48 433,-200"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-188C350.61,-186.96 366.01,-200.96 433,-202"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M286.5,-178.75C353.65,-179.89 368.95,-194.89 430.5,-193.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M286.5,-180.75C352.25,-181.32 367.55,-196.32 430.5,-195.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M286.5,-182.75C350.85,-182.75 366.15,-197.75 430.5,-197.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M286.5,-184.75C349.45,-184.18 364.75,-199.18 430.5,-199.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M286.5,-186.75C348.05,-185.61 363.35,-200.61 430.5,-201.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge5" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-157C354.91,-157.43 370.71,-165.43 433,-165"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-159C354,-159.22 369.8,-167.22 433,-167"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M289,-161C353.1,-161 368.9,-169 433,-169"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-163C352.2,-162.78 368,-170.78 433,-171"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-165C351.29,-164.57 367.09,-172.57 433,-173"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M286.5,-155.75C352.61,-156.28 368.36,-165.28 430.5,-164.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M286.5,-157.75C351.62,-158.01 367.37,-167.01 430.5,-166.75"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M286.5,-159.75C350.62,-159.75 366.38,-168.75 430.5,-168.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M286.5,-161.75C349.63,-161.49 365.38,-170.49 430.5,-170.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M286.5,-163.75C348.64,-163.22 364.39,-172.22 430.5,-172.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge7" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-133C353.75,-133.07 369.72,-136.07 433,-136"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M289,-135C353.38,-135.03 369.36,-138.03 433,-138"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M289,-137C353.01,-137 368.99,-140 433,-140"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M289,-139C352.64,-138.97 368.62,-141.97 433,-142"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-141C352.28,-140.93 368.25,-143.93 433,-144"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M286.5,-132.75C351.25,-132.82 367.22,-135.82 430.5,-135.75"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M286.5,-134.75C350.88,-134.78 366.86,-137.78 430.5,-137.75"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M286.5,-136.75C350.51,-136.75 366.49,-139.75 430.5,-139.75"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M286.5,-138.75C350.14,-138.72 366.12,-141.72 430.5,-141.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M286.5,-140.75C349.78,-140.68 365.75,-143.68 430.5,-143.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge9" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-110C352.28,-110.07 368.25,-107.07 433,-107"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-112C352.64,-112.03 368.62,-109.03 433,-109"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M289,-114C353.01,-114 368.99,-111 433,-111"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-116C353.38,-115.97 369.36,-112.97 433,-113"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-118C353.75,-117.93 369.72,-114.93 433,-115"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M286.5,-109.75C349.78,-109.82 365.75,-106.82 430.5,-106.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M286.5,-111.75C350.14,-111.78 366.12,-108.78 430.5,-108.75"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M286.5,-113.75C350.51,-113.75 366.49,-110.75 430.5,-110.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M286.5,-115.75C350.88,-115.72 366.86,-112.72 430.5,-112.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M286.5,-117.75C351.25,-117.68 367.22,-114.68 430.5,-114.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge11" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-87C351.14,-87.53 366.89,-78.53 433,-78"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M289,-89C352.13,-89.26 367.88,-80.26 433,-80"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M289,-91C353.12,-91 368.88,-82 433,-82"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M289,-93C354.12,-92.74 369.87,-83.74 433,-84"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-95C355.11,-94.47 370.86,-85.47 433,-86"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M286.5,-86.75C348.64,-87.28 364.39,-78.28 430.5,-77.75"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M286.5,-88.75C349.63,-89.01 365.38,-80.01 430.5,-79.75"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M286.5,-90.75C350.62,-90.75 366.38,-81.75 430.5,-81.75"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M286.5,-92.75C351.62,-92.49 367.37,-83.49 430.5,-83.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M286.5,-94.75C352.61,-94.22 368.36,-85.22 430.5,-85.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge13" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-64C350.55,-65.14 365.85,-50.14 433,-49"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-66C351.95,-66.57 367.25,-51.57 433,-51"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M289,-68C353.35,-68 368.65,-53 433,-53"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-70C354.75,-69.43 370.05,-54.43 433,-55"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-72C356.15,-70.86 371.45,-55.86 433,-57"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M286.5,-63.75C348.05,-64.89 363.35,-49.89 430.5,-48.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M286.5,-65.75C349.45,-66.32 364.75,-51.32 430.5,-50.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M286.5,-67.75C350.85,-67.75 366.15,-52.75 430.5,-52.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M286.5,-69.75C352.25,-69.18 367.55,-54.18 430.5,-54.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M286.5,-71.75C353.65,-70.61 368.95,-55.61 430.5,-56.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge15" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-41C350.4,-42.71 365.04,-21.71 433,-20"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M289,-43C352.04,-43.86 366.68,-22.86 433,-22"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M289,-45C353.68,-45 368.32,-24 433,-24"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M289,-47C355.32,-46.14 369.96,-25.14 433,-26"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-49C356.96,-47.29 371.6,-26.29 433,-28"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M286.5,-40.75C347.9,-42.46 362.54,-21.46 430.5,-19.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M286.5,-42.75C349.54,-43.61 364.18,-22.61 430.5,-21.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M286.5,-44.75C351.18,-44.75 365.82,-23.75 430.5,-23.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M286.5,-46.75C352.82,-45.89 367.46,-24.89 430.5,-25.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M286.5,-48.75C354.46,-47.04 369.1,-26.04 430.5,-27.75"/>
</g>
<!-- X2 -->
<g id="node2" class="node">
<title>X2</title>
<polygon fill="#ffffff" stroke="black" points="1089,-278 800,-278 800,-48 1089,-48 1089,-278"/>
<polygon fill="none" stroke="black" points="800.5,-255 800.5,-278 1089.5,-278 1089.5,-255 800.5,-255"/>
<text text-anchor="start" x="936.5" y="-262.8" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="800.5,-232 800.5,-255 1011.5,-255 1011.5,-232 800.5,-232"/>
<text text-anchor="start" x="804.5" y="-239.8" font-family="arial" font-size="14.00">Stewart Connector SS&#45;37000&#45;002</text>
<polygon fill="none" stroke="black" points="1011.5,-232 1011.5,-255 1050.5,-255 1050.5,-232 1011.5,-232"/>
<text text-anchor="start" x="1015.5" y="-239.8" font-family="arial" font-size="14.00">male</text>
<polygon fill="none" stroke="black" points="1050.5,-232 1050.5,-255 1089.5,-255 1089.5,-232 1050.5,-232"/>
<text text-anchor="start" x="1054.5" y="-239.8" font-family="arial" font-size="14.00">8&#45;pin</text>
<polygon fill="none" stroke="black" points="800.5,-209 800.5,-232 935.5,-232 935.5,-209 800.5,-209"/>
<text text-anchor="start" x="864" y="-216.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="935.5,-209 935.5,-232 1089.5,-232 1089.5,-209 935.5,-209"/>
<text text-anchor="start" x="998.5" y="-216.8" font-family="arial" font-size="14.00">DB+</text>
<polygon fill="none" stroke="black" points="800.5,-186 800.5,-209 935.5,-209 935.5,-186 800.5,-186"/>
<text text-anchor="start" x="864" y="-193.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="935.5,-186 935.5,-209 1089.5,-209 1089.5,-186 935.5,-186"/>
<text text-anchor="start" x="1000.5" y="-193.8" font-family="arial" font-size="14.00">DB&#45;</text>
<polygon fill="none" stroke="black" points="800.5,-163 800.5,-186 935.5,-186 935.5,-163 800.5,-163"/>
<text text-anchor="start" x="864" y="-170.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="935.5,-163 935.5,-186 1089.5,-186 1089.5,-163 935.5,-163"/>
<text text-anchor="start" x="998.5" y="-170.8" font-family="arial" font-size="14.00">DA+</text>
<polygon fill="none" stroke="black" points="800.5,-140 800.5,-163 935.5,-163 935.5,-140 800.5,-140"/>
<text text-anchor="start" x="864" y="-147.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="935.5,-140 935.5,-163 1089.5,-163 1089.5,-140 935.5,-140"/>
<text text-anchor="start" x="998.5" y="-147.8" font-family="arial" font-size="14.00">DD+</text>
<polygon fill="none" stroke="black" points="800.5,-117 800.5,-140 935.5,-140 935.5,-117 800.5,-117"/>
<text text-anchor="start" x="864" y="-124.8" font-family="arial" font-size="14.00">5</text>
<polygon fill="none" stroke="black" points="935.5,-117 935.5,-140 1089.5,-140 1089.5,-117 935.5,-117"/>
<text text-anchor="start" x="1000" y="-124.8" font-family="arial" font-size="14.00">DD&#45;</text>
<polygon fill="none" stroke="black" points="800.5,-94 800.5,-117 935.5,-117 935.5,-94 800.5,-94"/>
<text text-anchor="start" x="864" y="-101.8" font-family="arial" font-size="14.00">6</text>
<polygon fill="none" stroke="black" points="935.5,-94 935.5,-117 1089.5,-117 1089.5,-94 935.5,-94"/>
<text text-anchor="start" x="1000.5" y="-101.8" font-family="arial" font-size="14.00">DA&#45;</text>
<polygon fill="none" stroke="black" points="800.5,-71 800.5,-94 935.5,-94 935.5,-71 800.5,-71"/>
<text text-anchor="start" x="864" y="-78.8" font-family="arial" font-size="14.00">7</text>
<polygon fill="none" stroke="black" points="935.5,-71 935.5,-94 1089.5,-94 1089.5,-71 935.5,-71"/>
<text text-anchor="start" x="998.5" y="-78.8" font-family="arial" font-size="14.00">DC+</text>
<polygon fill="none" stroke="black" points="800.5,-48 800.5,-71 935.5,-71 935.5,-48 800.5,-48"/>
<text text-anchor="start" x="864" y="-55.8" font-family="arial" font-size="14.00">8</text>
<polygon fill="none" stroke="black" points="935.5,-48 935.5,-71 1089.5,-71 1089.5,-48 935.5,-48"/>
<text text-anchor="start" x="1000" y="-55.8" font-family="arial" font-size="14.00">DC&#45;</text>
<polygon fill="#ffffff" stroke="black" points="1081,-278.5 794.5,-278.5 794.5,-47 1081,-47 1081,-278.5"/>
<polygon fill="none" stroke="black" points="794.5,-254.75 794.5,-278.5 1081,-278.5 1081,-254.75 794.5,-254.75"/>
<text text-anchor="start" x="929.5" y="-261.2" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="794.5,-231 794.5,-254.75 1005,-254.75 1005,-231 794.5,-231"/>
<text text-anchor="start" x="798.5" y="-237.45" font-family="arial" font-size="14.00">Stewart Connector SS&#45;37000&#45;002</text>
<polygon fill="none" stroke="black" points="1005,-231 1005,-254.75 1043,-254.75 1043,-231 1005,-231"/>
<text text-anchor="start" x="1009" y="-237.45" font-family="arial" font-size="14.00">male</text>
<polygon fill="none" stroke="black" points="1043,-231 1043,-254.75 1081,-254.75 1081,-231 1043,-231"/>
<text text-anchor="start" x="1047" y="-237.45" font-family="arial" font-size="14.00">8&#45;pin</text>
<polygon fill="none" stroke="black" points="794.5,-208 794.5,-231 927.75,-231 927.75,-208 794.5,-208"/>
<text text-anchor="start" x="857.38" y="-213.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="927.75,-208 927.75,-231 1081,-231 1081,-208 927.75,-208"/>
<text text-anchor="start" x="990.88" y="-213.7" font-family="arial" font-size="14.00">DB+</text>
<polygon fill="none" stroke="black" points="794.5,-185 794.5,-208 927.75,-208 927.75,-185 794.5,-185"/>
<text text-anchor="start" x="857.38" y="-190.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="927.75,-185 927.75,-208 1081,-208 1081,-185 927.75,-185"/>
<text text-anchor="start" x="992.75" y="-190.7" font-family="arial" font-size="14.00">DB&#45;</text>
<polygon fill="none" stroke="black" points="794.5,-162 794.5,-185 927.75,-185 927.75,-162 794.5,-162"/>
<text text-anchor="start" x="857.38" y="-167.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="927.75,-162 927.75,-185 1081,-185 1081,-162 927.75,-162"/>
<text text-anchor="start" x="990.88" y="-167.7" font-family="arial" font-size="14.00">DA+</text>
<polygon fill="none" stroke="black" points="794.5,-139 794.5,-162 927.75,-162 927.75,-139 794.5,-139"/>
<text text-anchor="start" x="857.38" y="-144.7" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="927.75,-139 927.75,-162 1081,-162 1081,-139 927.75,-139"/>
<text text-anchor="start" x="990.5" y="-144.7" font-family="arial" font-size="14.00">DD+</text>
<polygon fill="none" stroke="black" points="794.5,-116 794.5,-139 927.75,-139 927.75,-116 794.5,-116"/>
<text text-anchor="start" x="857.38" y="-121.7" font-family="arial" font-size="14.00">5</text>
<polygon fill="none" stroke="black" points="927.75,-116 927.75,-139 1081,-139 1081,-116 927.75,-116"/>
<text text-anchor="start" x="992.38" y="-121.7" font-family="arial" font-size="14.00">DD&#45;</text>
<polygon fill="none" stroke="black" points="794.5,-93 794.5,-116 927.75,-116 927.75,-93 794.5,-93"/>
<text text-anchor="start" x="857.38" y="-98.7" font-family="arial" font-size="14.00">6</text>
<polygon fill="none" stroke="black" points="927.75,-93 927.75,-116 1081,-116 1081,-93 927.75,-93"/>
<text text-anchor="start" x="992.75" y="-98.7" font-family="arial" font-size="14.00">DA&#45;</text>
<polygon fill="none" stroke="black" points="794.5,-70 794.5,-93 927.75,-93 927.75,-70 794.5,-70"/>
<text text-anchor="start" x="857.38" y="-75.7" font-family="arial" font-size="14.00">7</text>
<polygon fill="none" stroke="black" points="927.75,-70 927.75,-93 1081,-93 1081,-70 927.75,-70"/>
<text text-anchor="start" x="990.5" y="-75.7" font-family="arial" font-size="14.00">DC+</text>
<polygon fill="none" stroke="black" points="794.5,-47 794.5,-70 927.75,-70 927.75,-47 794.5,-47"/>
<text text-anchor="start" x="857.38" y="-52.7" font-family="arial" font-size="14.00">8</text>
<polygon fill="none" stroke="black" points="927.75,-47 927.75,-70 1081,-70 1081,-47 927.75,-47"/>
<text text-anchor="start" x="992.38" y="-52.7" font-family="arial" font-size="14.00">DC&#45;</text>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-223C720.09,-226.4 728,-174.4 800,-171"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M656,-225C722.07,-226.7 729.98,-174.7 800,-173"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M656,-227C724.05,-227 731.95,-175 800,-175"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M656,-229C726.02,-227.3 733.93,-175.3 800,-177"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-231C728,-227.6 735.91,-175.6 800,-179"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M650.5,-222.75C714.74,-226.18 722.34,-173.18 794.5,-169.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M650.5,-224.75C716.72,-226.47 724.32,-173.47 794.5,-171.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M650.5,-226.75C718.7,-226.75 726.3,-173.75 794.5,-173.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M650.5,-228.75C720.68,-227.03 728.28,-174.03 794.5,-175.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M650.5,-230.75C722.66,-227.32 730.26,-174.32 794.5,-177.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-194C728.2,-198.36 719.83,-105.36 800,-101"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M656,-196C730.19,-198.18 721.82,-105.18 800,-103"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M656,-198C732.19,-198 723.81,-105 800,-105"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M656,-200C734.18,-197.82 725.81,-104.82 800,-107"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-202C736.17,-197.64 727.8,-104.64 800,-109"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M650.5,-193.75C722.7,-198.11 714.33,-105.11 794.5,-100.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M650.5,-195.75C724.69,-197.93 716.32,-104.93 794.5,-102.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M650.5,-197.75C726.69,-197.75 718.31,-104.75 794.5,-104.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M650.5,-199.75C728.68,-197.57 720.31,-104.57 794.5,-106.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M650.5,-201.75C730.67,-197.39 722.3,-104.39 794.5,-108.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge6" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-165C728,-168.4 735.91,-220.4 800,-217"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M656,-167C726.02,-168.7 733.93,-220.7 800,-219"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M656,-169C724.05,-169 731.95,-221 800,-221"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M656,-171C722.07,-169.3 729.98,-221.3 800,-223"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-173C720.09,-169.6 728,-221.6 800,-225"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M650.5,-164.75C722.34,-168.11 730.55,-219.11 794.5,-215.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M650.5,-166.75C720.37,-168.43 728.58,-219.43 794.5,-217.75"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M650.5,-168.75C718.4,-168.75 726.6,-219.75 794.5,-219.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M650.5,-170.75C716.42,-169.07 724.63,-220.07 794.5,-221.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M650.5,-172.75C714.45,-169.39 722.66,-220.39 794.5,-223.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge8" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-136C721.02,-139.59 727.02,-81.59 800,-78"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M656,-138C723.01,-139.79 729.01,-81.79 800,-80"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M656,-140C725,-140 731,-82 800,-82"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M656,-142C726.99,-140.21 732.99,-82.21 800,-84"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-144C728.98,-140.41 734.98,-82.41 800,-86"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M650.5,-135.75C715.52,-139.34 721.52,-81.34 794.5,-77.75"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M650.5,-137.75C717.51,-139.54 723.51,-81.54 794.5,-79.75"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M650.5,-139.75C719.5,-139.75 725.5,-81.75 794.5,-81.75"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M650.5,-141.75C721.49,-139.96 727.49,-81.96 794.5,-83.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M650.5,-143.75C723.48,-140.16 729.48,-82.16 794.5,-85.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge10" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-107C720.09,-110.4 728,-58.4 800,-55"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M656,-109C722.07,-110.7 729.98,-58.7 800,-57"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M656,-111C724.05,-111 731.95,-59 800,-59"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M656,-113C726.02,-111.3 733.93,-59.3 800,-61"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-115C728,-111.6 735.91,-59.6 800,-63"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M650.5,-106.75C714.59,-110.15 722.5,-58.15 794.5,-54.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M650.5,-108.75C716.57,-110.45 724.48,-58.45 794.5,-56.75"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M650.5,-110.75C718.55,-110.75 726.45,-58.75 794.5,-58.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M650.5,-112.75C720.52,-111.05 728.43,-59.05 794.5,-60.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M650.5,-114.75C722.5,-111.35 730.41,-59.35 794.5,-62.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge12" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-78C742.12,-82.69 721.76,-198.69 800,-194"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M656,-80C740.15,-82.35 719.79,-198.35 800,-196"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M656,-82C738.18,-82 717.82,-198 800,-198"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M656,-84C736.21,-81.65 715.85,-197.65 800,-200"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-86C734.24,-81.31 713.88,-197.31 800,-202"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M650.5,-77.75C736.35,-82.43 716.54,-197.43 794.5,-192.75"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M650.5,-79.75C734.38,-82.09 714.57,-197.09 794.5,-194.75"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M650.5,-81.75C732.4,-81.75 712.6,-196.75 794.5,-196.75"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M650.5,-83.75C730.43,-81.41 710.62,-196.41 794.5,-198.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M650.5,-85.75C728.46,-81.07 708.65,-196.07 794.5,-200.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge14" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-49C737.39,-53.44 726.56,-151.44 800,-147"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M656,-51C735.4,-53.22 724.57,-151.22 800,-149"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M656,-53C733.42,-53 722.58,-151 800,-151"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M656,-55C731.43,-52.78 720.6,-150.78 800,-153"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-57C729.44,-52.56 718.61,-150.56 800,-155"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M650.5,-48.75C731.89,-53.19 721.06,-151.19 794.5,-146.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M650.5,-50.75C729.9,-52.97 719.07,-150.97 794.5,-148.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M650.5,-52.75C727.92,-52.75 717.08,-150.75 794.5,-150.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M650.5,-54.75C725.93,-52.53 715.1,-150.53 794.5,-152.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M650.5,-56.75C723.94,-52.31 713.11,-150.31 794.5,-154.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge16" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-20C738.91,-24.53 725.02,-128.53 800,-124"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M656,-22C736.93,-24.26 723.04,-128.26 800,-126"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M656,-24C734.95,-24 721.05,-128 800,-128"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M656,-26C732.96,-23.74 719.07,-127.74 800,-130"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-28C730.98,-23.47 717.09,-127.47 800,-132"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M650.5,-19.75C733.41,-24.28 719.52,-128.28 794.5,-123.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M650.5,-21.75C731.43,-24.01 717.54,-128.01 794.5,-125.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M650.5,-23.75C729.45,-23.75 715.55,-127.75 794.5,-127.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M650.5,-25.75C727.46,-23.49 713.57,-127.49 794.5,-129.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M650.5,-27.75C725.48,-23.22 711.59,-127.22 794.5,-131.75"/>
</g>
</g>
</svg>

BIN
examples/ex10.png generated

Binary file not shown.

Before

Width:  |  Height:  |  Size: 144 KiB

After

Width:  |  Height:  |  Size: 129 KiB

488
examples/ex10.svg generated
View File

@ -1,327 +1,327 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="1097pt" height="324pt"
viewBox="0.00 0.00 1097.00 324.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 320)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-320 1093,-320 1093,4 -4,4"/>
<svg width="1089pt" height="326pt"
viewBox="0.00 0.00 1089.00 325.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 321.5)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-321.5 1085,-321.5 1085,4 -4,4"/>
<!-- X1 -->
<g id="node1" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="289,-264 0,-264 0,-34 289,-34 289,-264"/>
<polygon fill="none" stroke="black" points="0.5,-241 0.5,-264 289.5,-264 289.5,-241 0.5,-241"/>
<text text-anchor="start" x="136.5" y="-248.8" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0.5,-218 0.5,-241 211.5,-241 211.5,-218 0.5,-218"/>
<text text-anchor="start" x="4.5" y="-225.8" font-family="arial" font-size="14.00">Stewart Connector SS&#45;37000&#45;002</text>
<polygon fill="none" stroke="black" points="211.5,-218 211.5,-241 250.5,-241 250.5,-218 211.5,-218"/>
<text text-anchor="start" x="215.5" y="-225.8" font-family="arial" font-size="14.00">male</text>
<polygon fill="none" stroke="black" points="250.5,-218 250.5,-241 289.5,-241 289.5,-218 250.5,-218"/>
<text text-anchor="start" x="254.5" y="-225.8" font-family="arial" font-size="14.00">8&#45;pin</text>
<polygon fill="none" stroke="black" points="0.5,-195 0.5,-218 155.5,-218 155.5,-195 0.5,-195"/>
<text text-anchor="start" x="64" y="-202.8" font-family="arial" font-size="14.00">DA+</text>
<polygon fill="none" stroke="black" points="155.5,-195 155.5,-218 289.5,-218 289.5,-195 155.5,-195"/>
<text text-anchor="start" x="218.5" y="-202.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0.5,-172 0.5,-195 155.5,-195 155.5,-172 0.5,-172"/>
<text text-anchor="start" x="66" y="-179.8" font-family="arial" font-size="14.00">DA&#45;</text>
<polygon fill="none" stroke="black" points="155.5,-172 155.5,-195 289.5,-195 289.5,-172 155.5,-172"/>
<text text-anchor="start" x="218.5" y="-179.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0.5,-149 0.5,-172 155.5,-172 155.5,-149 0.5,-149"/>
<text text-anchor="start" x="64" y="-156.8" font-family="arial" font-size="14.00">DB+</text>
<polygon fill="none" stroke="black" points="155.5,-149 155.5,-172 289.5,-172 289.5,-149 155.5,-149"/>
<text text-anchor="start" x="218.5" y="-156.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0.5,-126 0.5,-149 155.5,-149 155.5,-126 0.5,-126"/>
<text text-anchor="start" x="64" y="-133.8" font-family="arial" font-size="14.00">DC+</text>
<polygon fill="none" stroke="black" points="155.5,-126 155.5,-149 289.5,-149 289.5,-126 155.5,-126"/>
<text text-anchor="start" x="218.5" y="-133.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="0.5,-103 0.5,-126 155.5,-126 155.5,-103 0.5,-103"/>
<text text-anchor="start" x="65.5" y="-110.8" font-family="arial" font-size="14.00">DC&#45;</text>
<polygon fill="none" stroke="black" points="155.5,-103 155.5,-126 289.5,-126 289.5,-103 155.5,-103"/>
<text text-anchor="start" x="218.5" y="-110.8" font-family="arial" font-size="14.00">5</text>
<polygon fill="none" stroke="black" points="0.5,-80 0.5,-103 155.5,-103 155.5,-80 0.5,-80"/>
<text text-anchor="start" x="66" y="-87.8" font-family="arial" font-size="14.00">DB&#45;</text>
<polygon fill="none" stroke="black" points="155.5,-80 155.5,-103 289.5,-103 289.5,-80 155.5,-80"/>
<text text-anchor="start" x="218.5" y="-87.8" font-family="arial" font-size="14.00">6</text>
<polygon fill="none" stroke="black" points="0.5,-57 0.5,-80 155.5,-80 155.5,-57 0.5,-57"/>
<text text-anchor="start" x="64" y="-64.8" font-family="arial" font-size="14.00">DD+</text>
<polygon fill="none" stroke="black" points="155.5,-57 155.5,-80 289.5,-80 289.5,-57 155.5,-57"/>
<text text-anchor="start" x="218.5" y="-64.8" font-family="arial" font-size="14.00">7</text>
<polygon fill="none" stroke="black" points="0.5,-34 0.5,-57 155.5,-57 155.5,-34 0.5,-34"/>
<text text-anchor="start" x="65.5" y="-41.8" font-family="arial" font-size="14.00">DD&#45;</text>
<polygon fill="none" stroke="black" points="155.5,-34 155.5,-57 289.5,-57 289.5,-34 155.5,-34"/>
<text text-anchor="start" x="218.5" y="-41.8" font-family="arial" font-size="14.00">8</text>
<polygon fill="#ffffff" stroke="black" points="286.5,-264.5 0,-264.5 0,-33 286.5,-33 286.5,-264.5"/>
<polygon fill="none" stroke="black" points="0,-240.75 0,-264.5 286.5,-264.5 286.5,-240.75 0,-240.75"/>
<text text-anchor="start" x="135" y="-247.2" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-217 0,-240.75 210.5,-240.75 210.5,-217 0,-217"/>
<text text-anchor="start" x="4" y="-223.45" font-family="arial" font-size="14.00">Stewart Connector SS&#45;37000&#45;002</text>
<polygon fill="none" stroke="black" points="210.5,-217 210.5,-240.75 248.5,-240.75 248.5,-217 210.5,-217"/>
<text text-anchor="start" x="214.5" y="-223.45" font-family="arial" font-size="14.00">male</text>
<polygon fill="none" stroke="black" points="248.5,-217 248.5,-240.75 286.5,-240.75 286.5,-217 248.5,-217"/>
<text text-anchor="start" x="252.5" y="-223.45" font-family="arial" font-size="14.00">8&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-194 0,-217 153.25,-217 153.25,-194 0,-194"/>
<text text-anchor="start" x="63.12" y="-199.7" font-family="arial" font-size="14.00">DA+</text>
<polygon fill="none" stroke="black" points="153.25,-194 153.25,-217 286.5,-217 286.5,-194 153.25,-194"/>
<text text-anchor="start" x="216.12" y="-199.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-171 0,-194 153.25,-194 153.25,-171 0,-171"/>
<text text-anchor="start" x="65" y="-176.7" font-family="arial" font-size="14.00">DA&#45;</text>
<polygon fill="none" stroke="black" points="153.25,-171 153.25,-194 286.5,-194 286.5,-171 153.25,-171"/>
<text text-anchor="start" x="216.12" y="-176.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0,-148 0,-171 153.25,-171 153.25,-148 0,-148"/>
<text text-anchor="start" x="63.12" y="-153.7" font-family="arial" font-size="14.00">DB+</text>
<polygon fill="none" stroke="black" points="153.25,-148 153.25,-171 286.5,-171 286.5,-148 153.25,-148"/>
<text text-anchor="start" x="216.12" y="-153.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-125 0,-148 153.25,-148 153.25,-125 0,-125"/>
<text text-anchor="start" x="62.75" y="-130.7" font-family="arial" font-size="14.00">DC+</text>
<polygon fill="none" stroke="black" points="153.25,-125 153.25,-148 286.5,-148 286.5,-125 153.25,-125"/>
<text text-anchor="start" x="216.12" y="-130.7" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="0,-102 0,-125 153.25,-125 153.25,-102 0,-102"/>
<text text-anchor="start" x="64.62" y="-107.7" font-family="arial" font-size="14.00">DC&#45;</text>
<polygon fill="none" stroke="black" points="153.25,-102 153.25,-125 286.5,-125 286.5,-102 153.25,-102"/>
<text text-anchor="start" x="216.12" y="-107.7" font-family="arial" font-size="14.00">5</text>
<polygon fill="none" stroke="black" points="0,-79 0,-102 153.25,-102 153.25,-79 0,-79"/>
<text text-anchor="start" x="65" y="-84.7" font-family="arial" font-size="14.00">DB&#45;</text>
<polygon fill="none" stroke="black" points="153.25,-79 153.25,-102 286.5,-102 286.5,-79 153.25,-79"/>
<text text-anchor="start" x="216.12" y="-84.7" font-family="arial" font-size="14.00">6</text>
<polygon fill="none" stroke="black" points="0,-56 0,-79 153.25,-79 153.25,-56 0,-56"/>
<text text-anchor="start" x="62.75" y="-61.7" font-family="arial" font-size="14.00">DD+</text>
<polygon fill="none" stroke="black" points="153.25,-56 153.25,-79 286.5,-79 286.5,-56 153.25,-56"/>
<text text-anchor="start" x="216.12" y="-61.7" font-family="arial" font-size="14.00">7</text>
<polygon fill="none" stroke="black" points="0,-33 0,-56 153.25,-56 153.25,-33 0,-33"/>
<text text-anchor="start" x="64.62" y="-38.7" font-family="arial" font-size="14.00">DD&#45;</text>
<polygon fill="none" stroke="black" points="153.25,-33 153.25,-56 286.5,-56 286.5,-33 153.25,-33"/>
<text text-anchor="start" x="216.12" y="-38.7" font-family="arial" font-size="14.00">8</text>
</g>
<!-- W1 -->
<g id="node3" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" points="656,-316 433,-316 433,0 656,0 656,-316"/>
<polygon fill="none" stroke="black" points="433.5,-293 433.5,-316 656.5,-316 656.5,-293 433.5,-293"/>
<text text-anchor="start" x="534" y="-300.8" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="433.5,-270 433.5,-293 498.5,-293 498.5,-270 433.5,-270"/>
<text text-anchor="start" x="445" y="-277.8" font-family="arial" font-size="14.00">CAT5e</text>
<polygon fill="none" stroke="black" points="498.5,-270 498.5,-293 536.5,-293 536.5,-270 498.5,-270"/>
<text text-anchor="start" x="510" y="-277.8" font-family="arial" font-size="14.00">8x</text>
<polygon fill="none" stroke="black" points="536.5,-270 536.5,-293 610.5,-293 610.5,-270 536.5,-270"/>
<text text-anchor="start" x="547.5" y="-277.8" font-family="arial" font-size="14.00">24 AWG</text>
<polygon fill="none" stroke="black" points="610.5,-270 610.5,-293 656.5,-293 656.5,-270 610.5,-270"/>
<text text-anchor="start" x="621.5" y="-277.8" font-family="arial" font-size="14.00">1 m</text>
<text text-anchor="start" x="463.5" y="-256.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="436" y="-237.8" font-family="arial" font-size="14.00">X1:1:DA+</text>
<text text-anchor="start" x="500" y="-237.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:WHGN &#160;&#160;&#160;</text>
<text text-anchor="start" x="595" y="-237.8" font-family="arial" font-size="14.00">X2:3:DA+</text>
<polygon fill="#000000" stroke="none" points="433.5,-230 433.5,-232 656.5,-232 656.5,-230 433.5,-230"/>
<polygon fill="#ffffff" stroke="none" points="433.5,-228 433.5,-230 656.5,-230 656.5,-228 433.5,-228"/>
<polygon fill="#00ff00" stroke="none" points="433.5,-226 433.5,-228 656.5,-228 656.5,-226 433.5,-226"/>
<polygon fill="#ffffff" stroke="none" points="433.5,-224 433.5,-226 656.5,-226 656.5,-224 433.5,-224"/>
<polygon fill="#000000" stroke="none" points="433.5,-222 433.5,-224 656.5,-224 656.5,-222 433.5,-222"/>
<text text-anchor="start" x="438" y="-208.8" font-family="arial" font-size="14.00">X1:2:DA&#45;</text>
<text text-anchor="start" x="511.5" y="-208.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="597" y="-208.8" font-family="arial" font-size="14.00">X2:6:DA&#45;</text>
<polygon fill="#000000" stroke="none" points="433.5,-201 433.5,-203 656.5,-203 656.5,-201 433.5,-201"/>
<polygon fill="#00ff00" stroke="none" points="433.5,-199 433.5,-201 656.5,-201 656.5,-199 433.5,-199"/>
<polygon fill="#00ff00" stroke="none" points="433.5,-197 433.5,-199 656.5,-199 656.5,-197 433.5,-197"/>
<polygon fill="#00ff00" stroke="none" points="433.5,-195 433.5,-197 656.5,-197 656.5,-195 433.5,-195"/>
<polygon fill="#000000" stroke="none" points="433.5,-193 433.5,-195 656.5,-195 656.5,-193 433.5,-193"/>
<text text-anchor="start" x="436" y="-179.8" font-family="arial" font-size="14.00">X1:3:DB+</text>
<text text-anchor="start" x="499.5" y="-179.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:WHOG &#160;&#160;&#160;</text>
<text text-anchor="start" x="595" y="-179.8" font-family="arial" font-size="14.00">X2:1:DB+</text>
<polygon fill="#000000" stroke="none" points="433.5,-172 433.5,-174 656.5,-174 656.5,-172 433.5,-172"/>
<polygon fill="#ffffff" stroke="none" points="433.5,-170 433.5,-172 656.5,-172 656.5,-170 433.5,-170"/>
<polygon fill="#ff8000" stroke="none" points="433.5,-168 433.5,-170 656.5,-170 656.5,-168 433.5,-168"/>
<polygon fill="#ffffff" stroke="none" points="433.5,-166 433.5,-168 656.5,-168 656.5,-166 433.5,-166"/>
<polygon fill="#000000" stroke="none" points="433.5,-164 433.5,-166 656.5,-166 656.5,-164 433.5,-164"/>
<text text-anchor="start" x="435.5" y="-150.8" font-family="arial" font-size="14.00">X1:4:DC+</text>
<text text-anchor="start" x="513" y="-150.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:BU &#160;&#160;&#160;</text>
<text text-anchor="start" x="594.5" y="-150.8" font-family="arial" font-size="14.00">X2:7:DC+</text>
<polygon fill="#000000" stroke="none" points="433.5,-143 433.5,-145 656.5,-145 656.5,-143 433.5,-143"/>
<polygon fill="#0066ff" stroke="none" points="433.5,-141 433.5,-143 656.5,-143 656.5,-141 433.5,-141"/>
<polygon fill="#0066ff" stroke="none" points="433.5,-139 433.5,-141 656.5,-141 656.5,-139 433.5,-139"/>
<polygon fill="#0066ff" stroke="none" points="433.5,-137 433.5,-139 656.5,-139 656.5,-137 433.5,-137"/>
<polygon fill="#000000" stroke="none" points="433.5,-135 433.5,-137 656.5,-137 656.5,-135 433.5,-135"/>
<text text-anchor="start" x="437.5" y="-121.8" font-family="arial" font-size="14.00">X1:5:DC&#45;</text>
<text text-anchor="start" x="501" y="-121.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;5:WHBU &#160;&#160;&#160;</text>
<text text-anchor="start" x="596.5" y="-121.8" font-family="arial" font-size="14.00">X2:8:DC&#45;</text>
<polygon fill="#000000" stroke="none" points="433.5,-114 433.5,-116 656.5,-116 656.5,-114 433.5,-114"/>
<polygon fill="#ffffff" stroke="none" points="433.5,-112 433.5,-114 656.5,-114 656.5,-112 433.5,-112"/>
<polygon fill="#0066ff" stroke="none" points="433.5,-110 433.5,-112 656.5,-112 656.5,-110 433.5,-110"/>
<polygon fill="#ffffff" stroke="none" points="433.5,-108 433.5,-110 656.5,-110 656.5,-108 433.5,-108"/>
<polygon fill="#000000" stroke="none" points="433.5,-106 433.5,-108 656.5,-108 656.5,-106 433.5,-106"/>
<text text-anchor="start" x="438" y="-92.8" font-family="arial" font-size="14.00">X1:6:DB&#45;</text>
<text text-anchor="start" x="511" y="-92.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;6:OG &#160;&#160;&#160;</text>
<text text-anchor="start" x="597" y="-92.8" font-family="arial" font-size="14.00">X2:2:DB&#45;</text>
<polygon fill="#000000" stroke="none" points="433.5,-85 433.5,-87 656.5,-87 656.5,-85 433.5,-85"/>
<polygon fill="#ff8000" stroke="none" points="433.5,-83 433.5,-85 656.5,-85 656.5,-83 433.5,-83"/>
<polygon fill="#ff8000" stroke="none" points="433.5,-81 433.5,-83 656.5,-83 656.5,-81 433.5,-81"/>
<polygon fill="#ff8000" stroke="none" points="433.5,-79 433.5,-81 656.5,-81 656.5,-79 433.5,-79"/>
<polygon fill="#000000" stroke="none" points="433.5,-77 433.5,-79 656.5,-79 656.5,-77 433.5,-77"/>
<text text-anchor="start" x="435.5" y="-63.8" font-family="arial" font-size="14.00">X1:7:DD+</text>
<text text-anchor="start" x="501" y="-63.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;7:WHBN &#160;&#160;&#160;</text>
<text text-anchor="start" x="594.5" y="-63.8" font-family="arial" font-size="14.00">X2:4:DD+</text>
<polygon fill="#000000" stroke="none" points="433.5,-56 433.5,-58 656.5,-58 656.5,-56 433.5,-56"/>
<polygon fill="#ffffff" stroke="none" points="433.5,-54 433.5,-56 656.5,-56 656.5,-54 433.5,-54"/>
<polygon fill="#895956" stroke="none" points="433.5,-52 433.5,-54 656.5,-54 656.5,-52 433.5,-52"/>
<polygon fill="#ffffff" stroke="none" points="433.5,-50 433.5,-52 656.5,-52 656.5,-50 433.5,-50"/>
<polygon fill="#000000" stroke="none" points="433.5,-48 433.5,-50 656.5,-50 656.5,-48 433.5,-48"/>
<text text-anchor="start" x="437.5" y="-34.8" font-family="arial" font-size="14.00">X1:8:DD&#45;</text>
<text text-anchor="start" x="513" y="-34.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;8:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="596.5" y="-34.8" font-family="arial" font-size="14.00">X2:5:DD&#45;</text>
<polygon fill="#000000" stroke="none" points="433.5,-27 433.5,-29 656.5,-29 656.5,-27 433.5,-27"/>
<polygon fill="#895956" stroke="none" points="433.5,-25 433.5,-27 656.5,-27 656.5,-25 433.5,-25"/>
<polygon fill="#895956" stroke="none" points="433.5,-23 433.5,-25 656.5,-25 656.5,-23 433.5,-23"/>
<polygon fill="#895956" stroke="none" points="433.5,-21 433.5,-23 656.5,-23 656.5,-21 433.5,-21"/>
<polygon fill="#000000" stroke="none" points="433.5,-19 433.5,-21 656.5,-21 656.5,-19 433.5,-19"/>
<text text-anchor="start" x="463.5" y="-5.8" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" points="650.5,-317.5 430.5,-317.5 430.5,0 650.5,0 650.5,-317.5"/>
<polygon fill="none" stroke="black" points="430.5,-293.75 430.5,-317.5 650.5,-317.5 650.5,-293.75 430.5,-293.75"/>
<text text-anchor="start" x="530" y="-300.2" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="430.5,-270 430.5,-293.75 494.12,-293.75 494.12,-270 430.5,-270"/>
<text text-anchor="start" x="441.69" y="-276.45" font-family="arial" font-size="14.00">CAT5e</text>
<polygon fill="none" stroke="black" points="494.12,-270 494.12,-293.75 530.75,-293.75 530.75,-270 494.12,-270"/>
<text text-anchor="start" x="505.31" y="-276.45" font-family="arial" font-size="14.00">8x</text>
<polygon fill="none" stroke="black" points="530.75,-270 530.75,-293.75 604.88,-293.75 604.88,-270 530.75,-270"/>
<text text-anchor="start" x="541.94" y="-276.45" font-family="arial" font-size="14.00">24 AWG</text>
<polygon fill="none" stroke="black" points="604.88,-270 604.88,-293.75 650.5,-293.75 650.5,-270 604.88,-270"/>
<text text-anchor="start" x="616.06" y="-276.45" font-family="arial" font-size="14.00">1 m</text>
<text text-anchor="start" x="460.12" y="-254.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="432.75" y="-235.7" font-family="arial" font-size="14.00">X1:1:DA+</text>
<text text-anchor="start" x="495.88" y="-235.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:WHGN &#160;&#160;&#160;</text>
<text text-anchor="start" x="589.75" y="-235.7" font-family="arial" font-size="14.00">X2:3:DA+</text>
<polygon fill="#000000" stroke="none" points="430.5,-230 430.5,-232 650.5,-232 650.5,-230 430.5,-230"/>
<polygon fill="#ffffff" stroke="none" points="430.5,-228 430.5,-230 650.5,-230 650.5,-228 430.5,-228"/>
<polygon fill="#00ff00" stroke="none" points="430.5,-226 430.5,-228 650.5,-228 650.5,-226 430.5,-226"/>
<polygon fill="#ffffff" stroke="none" points="430.5,-224 430.5,-226 650.5,-226 650.5,-224 430.5,-224"/>
<polygon fill="#000000" stroke="none" points="430.5,-222 430.5,-224 650.5,-224 650.5,-222 430.5,-222"/>
<text text-anchor="start" x="434.62" y="-206.7" font-family="arial" font-size="14.00">X1:2:DA&#45;</text>
<text text-anchor="start" x="507.5" y="-206.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="591.62" y="-206.7" font-family="arial" font-size="14.00">X2:6:DA&#45;</text>
<polygon fill="#000000" stroke="none" points="430.5,-201 430.5,-203 650.5,-203 650.5,-201 430.5,-201"/>
<polygon fill="#00ff00" stroke="none" points="430.5,-199 430.5,-201 650.5,-201 650.5,-199 430.5,-199"/>
<polygon fill="#00ff00" stroke="none" points="430.5,-197 430.5,-199 650.5,-199 650.5,-197 430.5,-197"/>
<polygon fill="#00ff00" stroke="none" points="430.5,-195 430.5,-197 650.5,-197 650.5,-195 430.5,-195"/>
<polygon fill="#000000" stroke="none" points="430.5,-193 430.5,-195 650.5,-195 650.5,-193 430.5,-193"/>
<text text-anchor="start" x="432.75" y="-177.7" font-family="arial" font-size="14.00">X1:3:DB+</text>
<text text-anchor="start" x="495.12" y="-177.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:WHOG &#160;&#160;&#160;</text>
<text text-anchor="start" x="589.75" y="-177.7" font-family="arial" font-size="14.00">X2:1:DB+</text>
<polygon fill="#000000" stroke="none" points="430.5,-172 430.5,-174 650.5,-174 650.5,-172 430.5,-172"/>
<polygon fill="#ffffff" stroke="none" points="430.5,-170 430.5,-172 650.5,-172 650.5,-170 430.5,-170"/>
<polygon fill="#ff8000" stroke="none" points="430.5,-168 430.5,-170 650.5,-170 650.5,-168 430.5,-168"/>
<polygon fill="#ffffff" stroke="none" points="430.5,-166 430.5,-168 650.5,-168 650.5,-166 430.5,-166"/>
<polygon fill="#000000" stroke="none" points="430.5,-164 430.5,-166 650.5,-166 650.5,-164 430.5,-164"/>
<text text-anchor="start" x="432.38" y="-148.7" font-family="arial" font-size="14.00">X1:4:DC+</text>
<text text-anchor="start" x="508.62" y="-148.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:BU &#160;&#160;&#160;</text>
<text text-anchor="start" x="589.38" y="-148.7" font-family="arial" font-size="14.00">X2:7:DC+</text>
<polygon fill="#000000" stroke="none" points="430.5,-143 430.5,-145 650.5,-145 650.5,-143 430.5,-143"/>
<polygon fill="#0066ff" stroke="none" points="430.5,-141 430.5,-143 650.5,-143 650.5,-141 430.5,-141"/>
<polygon fill="#0066ff" stroke="none" points="430.5,-139 430.5,-141 650.5,-141 650.5,-139 430.5,-139"/>
<polygon fill="#0066ff" stroke="none" points="430.5,-137 430.5,-139 650.5,-139 650.5,-137 430.5,-137"/>
<polygon fill="#000000" stroke="none" points="430.5,-135 430.5,-137 650.5,-137 650.5,-135 430.5,-135"/>
<text text-anchor="start" x="434.25" y="-119.7" font-family="arial" font-size="14.00">X1:5:DC&#45;</text>
<text text-anchor="start" x="497" y="-119.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;5:WHBU &#160;&#160;&#160;</text>
<text text-anchor="start" x="591.25" y="-119.7" font-family="arial" font-size="14.00">X2:8:DC&#45;</text>
<polygon fill="#000000" stroke="none" points="430.5,-114 430.5,-116 650.5,-116 650.5,-114 430.5,-114"/>
<polygon fill="#ffffff" stroke="none" points="430.5,-112 430.5,-114 650.5,-114 650.5,-112 430.5,-112"/>
<polygon fill="#0066ff" stroke="none" points="430.5,-110 430.5,-112 650.5,-112 650.5,-110 430.5,-110"/>
<polygon fill="#ffffff" stroke="none" points="430.5,-108 430.5,-110 650.5,-110 650.5,-108 430.5,-108"/>
<polygon fill="#000000" stroke="none" points="430.5,-106 430.5,-108 650.5,-108 650.5,-106 430.5,-106"/>
<text text-anchor="start" x="434.62" y="-90.7" font-family="arial" font-size="14.00">X1:6:DB&#45;</text>
<text text-anchor="start" x="506.75" y="-90.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;6:OG &#160;&#160;&#160;</text>
<text text-anchor="start" x="591.62" y="-90.7" font-family="arial" font-size="14.00">X2:2:DB&#45;</text>
<polygon fill="#000000" stroke="none" points="430.5,-85 430.5,-87 650.5,-87 650.5,-85 430.5,-85"/>
<polygon fill="#ff8000" stroke="none" points="430.5,-83 430.5,-85 650.5,-85 650.5,-83 430.5,-83"/>
<polygon fill="#ff8000" stroke="none" points="430.5,-81 430.5,-83 650.5,-83 650.5,-81 430.5,-81"/>
<polygon fill="#ff8000" stroke="none" points="430.5,-79 430.5,-81 650.5,-81 650.5,-79 430.5,-79"/>
<polygon fill="#000000" stroke="none" points="430.5,-77 430.5,-79 650.5,-79 650.5,-77 430.5,-77"/>
<text text-anchor="start" x="432.38" y="-61.7" font-family="arial" font-size="14.00">X1:7:DD+</text>
<text text-anchor="start" x="497" y="-61.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;7:WHBN &#160;&#160;&#160;</text>
<text text-anchor="start" x="589.38" y="-61.7" font-family="arial" font-size="14.00">X2:4:DD+</text>
<polygon fill="#000000" stroke="none" points="430.5,-56 430.5,-58 650.5,-58 650.5,-56 430.5,-56"/>
<polygon fill="#ffffff" stroke="none" points="430.5,-54 430.5,-56 650.5,-56 650.5,-54 430.5,-54"/>
<polygon fill="#895956" stroke="none" points="430.5,-52 430.5,-54 650.5,-54 650.5,-52 430.5,-52"/>
<polygon fill="#ffffff" stroke="none" points="430.5,-50 430.5,-52 650.5,-52 650.5,-50 430.5,-50"/>
<polygon fill="#000000" stroke="none" points="430.5,-48 430.5,-50 650.5,-50 650.5,-48 430.5,-48"/>
<text text-anchor="start" x="434.25" y="-32.7" font-family="arial" font-size="14.00">X1:8:DD&#45;</text>
<text text-anchor="start" x="508.62" y="-32.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;8:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="591.25" y="-32.7" font-family="arial" font-size="14.00">X2:5:DD&#45;</text>
<polygon fill="#000000" stroke="none" points="430.5,-27 430.5,-29 650.5,-29 650.5,-27 430.5,-27"/>
<polygon fill="#895956" stroke="none" points="430.5,-25 430.5,-27 650.5,-27 650.5,-25 430.5,-25"/>
<polygon fill="#895956" stroke="none" points="430.5,-23 430.5,-25 650.5,-25 650.5,-23 430.5,-23"/>
<polygon fill="#895956" stroke="none" points="430.5,-21 430.5,-23 650.5,-23 650.5,-21 430.5,-21"/>
<polygon fill="#000000" stroke="none" points="430.5,-19 430.5,-21 650.5,-21 650.5,-19 430.5,-19"/>
<text text-anchor="start" x="460.12" y="-3.7" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge1" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-203C356.83,-204.62 371.6,-224.62 433,-223"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-205C355.22,-205.81 369.99,-225.81 433,-225"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M289,-207C353.61,-207 368.39,-227 433,-227"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-209C352.01,-208.19 366.78,-228.19 433,-229"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-211C350.4,-209.38 365.17,-229.38 433,-231"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M286.5,-201.75C354.46,-203.46 369.1,-224.46 430.5,-222.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M286.5,-203.75C352.82,-204.61 367.46,-225.61 430.5,-224.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M286.5,-205.75C351.18,-205.75 365.82,-226.75 430.5,-226.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M286.5,-207.75C349.54,-206.89 364.18,-227.89 430.5,-228.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M286.5,-209.75C347.9,-208.04 362.54,-229.04 430.5,-230.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge3" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-180C355.99,-181.04 371.39,-195.04 433,-194"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M289,-182C354.65,-182.52 370.04,-196.52 433,-196"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M289,-184C353.3,-184 368.7,-198 433,-198"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M289,-186C351.96,-185.48 367.35,-199.48 433,-200"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-188C350.61,-186.96 366.01,-200.96 433,-202"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M286.5,-178.75C353.65,-179.89 368.95,-194.89 430.5,-193.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M286.5,-180.75C352.25,-181.32 367.55,-196.32 430.5,-195.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M286.5,-182.75C350.85,-182.75 366.15,-197.75 430.5,-197.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M286.5,-184.75C349.45,-184.18 364.75,-199.18 430.5,-199.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M286.5,-186.75C348.05,-185.61 363.35,-200.61 430.5,-201.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge5" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-157C354.91,-157.43 370.71,-165.43 433,-165"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-159C354,-159.22 369.8,-167.22 433,-167"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M289,-161C353.1,-161 368.9,-169 433,-169"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-163C352.2,-162.78 368,-170.78 433,-171"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-165C351.29,-164.57 367.09,-172.57 433,-173"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M286.5,-155.75C352.61,-156.28 368.36,-165.28 430.5,-164.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M286.5,-157.75C351.62,-158.01 367.37,-167.01 430.5,-166.75"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M286.5,-159.75C350.62,-159.75 366.38,-168.75 430.5,-168.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M286.5,-161.75C349.63,-161.49 365.38,-170.49 430.5,-170.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M286.5,-163.75C348.64,-163.22 364.39,-172.22 430.5,-172.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge7" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-133C353.75,-133.07 369.72,-136.07 433,-136"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M289,-135C353.38,-135.03 369.36,-138.03 433,-138"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M289,-137C353.01,-137 368.99,-140 433,-140"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M289,-139C352.64,-138.97 368.62,-141.97 433,-142"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-141C352.28,-140.93 368.25,-143.93 433,-144"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M286.5,-132.75C351.25,-132.82 367.22,-135.82 430.5,-135.75"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M286.5,-134.75C350.88,-134.78 366.86,-137.78 430.5,-137.75"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M286.5,-136.75C350.51,-136.75 366.49,-139.75 430.5,-139.75"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M286.5,-138.75C350.14,-138.72 366.12,-141.72 430.5,-141.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M286.5,-140.75C349.78,-140.68 365.75,-143.68 430.5,-143.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge9" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-110C352.28,-110.07 368.25,-107.07 433,-107"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-112C352.64,-112.03 368.62,-109.03 433,-109"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M289,-114C353.01,-114 368.99,-111 433,-111"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-116C353.38,-115.97 369.36,-112.97 433,-113"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-118C353.75,-117.93 369.72,-114.93 433,-115"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M286.5,-109.75C349.78,-109.82 365.75,-106.82 430.5,-106.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M286.5,-111.75C350.14,-111.78 366.12,-108.78 430.5,-108.75"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M286.5,-113.75C350.51,-113.75 366.49,-110.75 430.5,-110.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M286.5,-115.75C350.88,-115.72 366.86,-112.72 430.5,-112.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M286.5,-117.75C351.25,-117.68 367.22,-114.68 430.5,-114.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge11" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-87C351.14,-87.53 366.89,-78.53 433,-78"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M289,-89C352.13,-89.26 367.88,-80.26 433,-80"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M289,-91C353.12,-91 368.88,-82 433,-82"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M289,-93C354.12,-92.74 369.87,-83.74 433,-84"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-95C355.11,-94.47 370.86,-85.47 433,-86"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M286.5,-86.75C348.64,-87.28 364.39,-78.28 430.5,-77.75"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M286.5,-88.75C349.63,-89.01 365.38,-80.01 430.5,-79.75"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M286.5,-90.75C350.62,-90.75 366.38,-81.75 430.5,-81.75"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M286.5,-92.75C351.62,-92.49 367.37,-83.49 430.5,-83.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M286.5,-94.75C352.61,-94.22 368.36,-85.22 430.5,-85.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge13" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-64C350.55,-65.14 365.85,-50.14 433,-49"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-66C351.95,-66.57 367.25,-51.57 433,-51"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M289,-68C353.35,-68 368.65,-53 433,-53"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-70C354.75,-69.43 370.05,-54.43 433,-55"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-72C356.15,-70.86 371.45,-55.86 433,-57"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M286.5,-63.75C348.05,-64.89 363.35,-49.89 430.5,-48.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M286.5,-65.75C349.45,-66.32 364.75,-51.32 430.5,-50.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M286.5,-67.75C350.85,-67.75 366.15,-52.75 430.5,-52.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M286.5,-69.75C352.25,-69.18 367.55,-54.18 430.5,-54.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M286.5,-71.75C353.65,-70.61 368.95,-55.61 430.5,-56.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge15" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-41C350.4,-42.71 365.04,-21.71 433,-20"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M289,-43C352.04,-43.86 366.68,-22.86 433,-22"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M289,-45C353.68,-45 368.32,-24 433,-24"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M289,-47C355.32,-46.14 369.96,-25.14 433,-26"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-49C356.96,-47.29 371.6,-26.29 433,-28"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M286.5,-40.75C347.9,-42.46 362.54,-21.46 430.5,-19.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M286.5,-42.75C349.54,-43.61 364.18,-22.61 430.5,-21.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M286.5,-44.75C351.18,-44.75 365.82,-23.75 430.5,-23.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M286.5,-46.75C352.82,-45.89 367.46,-24.89 430.5,-25.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M286.5,-48.75C354.46,-47.04 369.1,-26.04 430.5,-27.75"/>
</g>
<!-- X2 -->
<g id="node2" class="node">
<title>X2</title>
<polygon fill="#ffffff" stroke="black" points="1089,-278 800,-278 800,-48 1089,-48 1089,-278"/>
<polygon fill="none" stroke="black" points="800.5,-255 800.5,-278 1089.5,-278 1089.5,-255 800.5,-255"/>
<text text-anchor="start" x="936.5" y="-262.8" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="800.5,-232 800.5,-255 1011.5,-255 1011.5,-232 800.5,-232"/>
<text text-anchor="start" x="804.5" y="-239.8" font-family="arial" font-size="14.00">Stewart Connector SS&#45;37000&#45;002</text>
<polygon fill="none" stroke="black" points="1011.5,-232 1011.5,-255 1050.5,-255 1050.5,-232 1011.5,-232"/>
<text text-anchor="start" x="1015.5" y="-239.8" font-family="arial" font-size="14.00">male</text>
<polygon fill="none" stroke="black" points="1050.5,-232 1050.5,-255 1089.5,-255 1089.5,-232 1050.5,-232"/>
<text text-anchor="start" x="1054.5" y="-239.8" font-family="arial" font-size="14.00">8&#45;pin</text>
<polygon fill="none" stroke="black" points="800.5,-209 800.5,-232 935.5,-232 935.5,-209 800.5,-209"/>
<text text-anchor="start" x="864" y="-216.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="935.5,-209 935.5,-232 1089.5,-232 1089.5,-209 935.5,-209"/>
<text text-anchor="start" x="998.5" y="-216.8" font-family="arial" font-size="14.00">DB+</text>
<polygon fill="none" stroke="black" points="800.5,-186 800.5,-209 935.5,-209 935.5,-186 800.5,-186"/>
<text text-anchor="start" x="864" y="-193.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="935.5,-186 935.5,-209 1089.5,-209 1089.5,-186 935.5,-186"/>
<text text-anchor="start" x="1000.5" y="-193.8" font-family="arial" font-size="14.00">DB&#45;</text>
<polygon fill="none" stroke="black" points="800.5,-163 800.5,-186 935.5,-186 935.5,-163 800.5,-163"/>
<text text-anchor="start" x="864" y="-170.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="935.5,-163 935.5,-186 1089.5,-186 1089.5,-163 935.5,-163"/>
<text text-anchor="start" x="998.5" y="-170.8" font-family="arial" font-size="14.00">DA+</text>
<polygon fill="none" stroke="black" points="800.5,-140 800.5,-163 935.5,-163 935.5,-140 800.5,-140"/>
<text text-anchor="start" x="864" y="-147.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="935.5,-140 935.5,-163 1089.5,-163 1089.5,-140 935.5,-140"/>
<text text-anchor="start" x="998.5" y="-147.8" font-family="arial" font-size="14.00">DD+</text>
<polygon fill="none" stroke="black" points="800.5,-117 800.5,-140 935.5,-140 935.5,-117 800.5,-117"/>
<text text-anchor="start" x="864" y="-124.8" font-family="arial" font-size="14.00">5</text>
<polygon fill="none" stroke="black" points="935.5,-117 935.5,-140 1089.5,-140 1089.5,-117 935.5,-117"/>
<text text-anchor="start" x="1000" y="-124.8" font-family="arial" font-size="14.00">DD&#45;</text>
<polygon fill="none" stroke="black" points="800.5,-94 800.5,-117 935.5,-117 935.5,-94 800.5,-94"/>
<text text-anchor="start" x="864" y="-101.8" font-family="arial" font-size="14.00">6</text>
<polygon fill="none" stroke="black" points="935.5,-94 935.5,-117 1089.5,-117 1089.5,-94 935.5,-94"/>
<text text-anchor="start" x="1000.5" y="-101.8" font-family="arial" font-size="14.00">DA&#45;</text>
<polygon fill="none" stroke="black" points="800.5,-71 800.5,-94 935.5,-94 935.5,-71 800.5,-71"/>
<text text-anchor="start" x="864" y="-78.8" font-family="arial" font-size="14.00">7</text>
<polygon fill="none" stroke="black" points="935.5,-71 935.5,-94 1089.5,-94 1089.5,-71 935.5,-71"/>
<text text-anchor="start" x="998.5" y="-78.8" font-family="arial" font-size="14.00">DC+</text>
<polygon fill="none" stroke="black" points="800.5,-48 800.5,-71 935.5,-71 935.5,-48 800.5,-48"/>
<text text-anchor="start" x="864" y="-55.8" font-family="arial" font-size="14.00">8</text>
<polygon fill="none" stroke="black" points="935.5,-48 935.5,-71 1089.5,-71 1089.5,-48 935.5,-48"/>
<text text-anchor="start" x="1000" y="-55.8" font-family="arial" font-size="14.00">DC&#45;</text>
<polygon fill="#ffffff" stroke="black" points="1081,-278.5 794.5,-278.5 794.5,-47 1081,-47 1081,-278.5"/>
<polygon fill="none" stroke="black" points="794.5,-254.75 794.5,-278.5 1081,-278.5 1081,-254.75 794.5,-254.75"/>
<text text-anchor="start" x="929.5" y="-261.2" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="794.5,-231 794.5,-254.75 1005,-254.75 1005,-231 794.5,-231"/>
<text text-anchor="start" x="798.5" y="-237.45" font-family="arial" font-size="14.00">Stewart Connector SS&#45;37000&#45;002</text>
<polygon fill="none" stroke="black" points="1005,-231 1005,-254.75 1043,-254.75 1043,-231 1005,-231"/>
<text text-anchor="start" x="1009" y="-237.45" font-family="arial" font-size="14.00">male</text>
<polygon fill="none" stroke="black" points="1043,-231 1043,-254.75 1081,-254.75 1081,-231 1043,-231"/>
<text text-anchor="start" x="1047" y="-237.45" font-family="arial" font-size="14.00">8&#45;pin</text>
<polygon fill="none" stroke="black" points="794.5,-208 794.5,-231 927.75,-231 927.75,-208 794.5,-208"/>
<text text-anchor="start" x="857.38" y="-213.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="927.75,-208 927.75,-231 1081,-231 1081,-208 927.75,-208"/>
<text text-anchor="start" x="990.88" y="-213.7" font-family="arial" font-size="14.00">DB+</text>
<polygon fill="none" stroke="black" points="794.5,-185 794.5,-208 927.75,-208 927.75,-185 794.5,-185"/>
<text text-anchor="start" x="857.38" y="-190.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="927.75,-185 927.75,-208 1081,-208 1081,-185 927.75,-185"/>
<text text-anchor="start" x="992.75" y="-190.7" font-family="arial" font-size="14.00">DB&#45;</text>
<polygon fill="none" stroke="black" points="794.5,-162 794.5,-185 927.75,-185 927.75,-162 794.5,-162"/>
<text text-anchor="start" x="857.38" y="-167.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="927.75,-162 927.75,-185 1081,-185 1081,-162 927.75,-162"/>
<text text-anchor="start" x="990.88" y="-167.7" font-family="arial" font-size="14.00">DA+</text>
<polygon fill="none" stroke="black" points="794.5,-139 794.5,-162 927.75,-162 927.75,-139 794.5,-139"/>
<text text-anchor="start" x="857.38" y="-144.7" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="927.75,-139 927.75,-162 1081,-162 1081,-139 927.75,-139"/>
<text text-anchor="start" x="990.5" y="-144.7" font-family="arial" font-size="14.00">DD+</text>
<polygon fill="none" stroke="black" points="794.5,-116 794.5,-139 927.75,-139 927.75,-116 794.5,-116"/>
<text text-anchor="start" x="857.38" y="-121.7" font-family="arial" font-size="14.00">5</text>
<polygon fill="none" stroke="black" points="927.75,-116 927.75,-139 1081,-139 1081,-116 927.75,-116"/>
<text text-anchor="start" x="992.38" y="-121.7" font-family="arial" font-size="14.00">DD&#45;</text>
<polygon fill="none" stroke="black" points="794.5,-93 794.5,-116 927.75,-116 927.75,-93 794.5,-93"/>
<text text-anchor="start" x="857.38" y="-98.7" font-family="arial" font-size="14.00">6</text>
<polygon fill="none" stroke="black" points="927.75,-93 927.75,-116 1081,-116 1081,-93 927.75,-93"/>
<text text-anchor="start" x="992.75" y="-98.7" font-family="arial" font-size="14.00">DA&#45;</text>
<polygon fill="none" stroke="black" points="794.5,-70 794.5,-93 927.75,-93 927.75,-70 794.5,-70"/>
<text text-anchor="start" x="857.38" y="-75.7" font-family="arial" font-size="14.00">7</text>
<polygon fill="none" stroke="black" points="927.75,-70 927.75,-93 1081,-93 1081,-70 927.75,-70"/>
<text text-anchor="start" x="990.5" y="-75.7" font-family="arial" font-size="14.00">DC+</text>
<polygon fill="none" stroke="black" points="794.5,-47 794.5,-70 927.75,-70 927.75,-47 794.5,-47"/>
<text text-anchor="start" x="857.38" y="-52.7" font-family="arial" font-size="14.00">8</text>
<polygon fill="none" stroke="black" points="927.75,-47 927.75,-70 1081,-70 1081,-47 927.75,-47"/>
<text text-anchor="start" x="992.38" y="-52.7" font-family="arial" font-size="14.00">DC&#45;</text>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-223C720.09,-226.4 728,-174.4 800,-171"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M656,-225C722.07,-226.7 729.98,-174.7 800,-173"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M656,-227C724.05,-227 731.95,-175 800,-175"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M656,-229C726.02,-227.3 733.93,-175.3 800,-177"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-231C728,-227.6 735.91,-175.6 800,-179"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M650.5,-222.75C714.74,-226.18 722.34,-173.18 794.5,-169.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M650.5,-224.75C716.72,-226.47 724.32,-173.47 794.5,-171.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M650.5,-226.75C718.7,-226.75 726.3,-173.75 794.5,-173.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M650.5,-228.75C720.68,-227.03 728.28,-174.03 794.5,-175.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M650.5,-230.75C722.66,-227.32 730.26,-174.32 794.5,-177.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-194C728.2,-198.36 719.83,-105.36 800,-101"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M656,-196C730.19,-198.18 721.82,-105.18 800,-103"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M656,-198C732.19,-198 723.81,-105 800,-105"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M656,-200C734.18,-197.82 725.81,-104.82 800,-107"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-202C736.17,-197.64 727.8,-104.64 800,-109"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M650.5,-193.75C722.7,-198.11 714.33,-105.11 794.5,-100.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M650.5,-195.75C724.69,-197.93 716.32,-104.93 794.5,-102.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M650.5,-197.75C726.69,-197.75 718.31,-104.75 794.5,-104.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M650.5,-199.75C728.68,-197.57 720.31,-104.57 794.5,-106.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M650.5,-201.75C730.67,-197.39 722.3,-104.39 794.5,-108.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge6" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-165C728,-168.4 735.91,-220.4 800,-217"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M656,-167C726.02,-168.7 733.93,-220.7 800,-219"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M656,-169C724.05,-169 731.95,-221 800,-221"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M656,-171C722.07,-169.3 729.98,-221.3 800,-223"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-173C720.09,-169.6 728,-221.6 800,-225"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M650.5,-164.75C722.34,-168.11 730.55,-219.11 794.5,-215.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M650.5,-166.75C720.37,-168.43 728.58,-219.43 794.5,-217.75"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M650.5,-168.75C718.4,-168.75 726.6,-219.75 794.5,-219.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M650.5,-170.75C716.42,-169.07 724.63,-220.07 794.5,-221.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M650.5,-172.75C714.45,-169.39 722.66,-220.39 794.5,-223.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge8" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-136C721.02,-139.59 727.02,-81.59 800,-78"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M656,-138C723.01,-139.79 729.01,-81.79 800,-80"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M656,-140C725,-140 731,-82 800,-82"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M656,-142C726.99,-140.21 732.99,-82.21 800,-84"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-144C728.98,-140.41 734.98,-82.41 800,-86"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M650.5,-135.75C715.52,-139.34 721.52,-81.34 794.5,-77.75"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M650.5,-137.75C717.51,-139.54 723.51,-81.54 794.5,-79.75"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M650.5,-139.75C719.5,-139.75 725.5,-81.75 794.5,-81.75"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M650.5,-141.75C721.49,-139.96 727.49,-81.96 794.5,-83.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M650.5,-143.75C723.48,-140.16 729.48,-82.16 794.5,-85.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge10" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-107C720.09,-110.4 728,-58.4 800,-55"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M656,-109C722.07,-110.7 729.98,-58.7 800,-57"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M656,-111C724.05,-111 731.95,-59 800,-59"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M656,-113C726.02,-111.3 733.93,-59.3 800,-61"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-115C728,-111.6 735.91,-59.6 800,-63"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M650.5,-106.75C714.59,-110.15 722.5,-58.15 794.5,-54.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M650.5,-108.75C716.57,-110.45 724.48,-58.45 794.5,-56.75"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M650.5,-110.75C718.55,-110.75 726.45,-58.75 794.5,-58.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M650.5,-112.75C720.52,-111.05 728.43,-59.05 794.5,-60.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M650.5,-114.75C722.5,-111.35 730.41,-59.35 794.5,-62.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge12" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-78C742.12,-82.69 721.76,-198.69 800,-194"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M656,-80C740.15,-82.35 719.79,-198.35 800,-196"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M656,-82C738.18,-82 717.82,-198 800,-198"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M656,-84C736.21,-81.65 715.85,-197.65 800,-200"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-86C734.24,-81.31 713.88,-197.31 800,-202"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M650.5,-77.75C736.35,-82.43 716.54,-197.43 794.5,-192.75"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M650.5,-79.75C734.38,-82.09 714.57,-197.09 794.5,-194.75"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M650.5,-81.75C732.4,-81.75 712.6,-196.75 794.5,-196.75"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M650.5,-83.75C730.43,-81.41 710.62,-196.41 794.5,-198.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M650.5,-85.75C728.46,-81.07 708.65,-196.07 794.5,-200.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge14" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-49C737.39,-53.44 726.56,-151.44 800,-147"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M656,-51C735.4,-53.22 724.57,-151.22 800,-149"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M656,-53C733.42,-53 722.58,-151 800,-151"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M656,-55C731.43,-52.78 720.6,-150.78 800,-153"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-57C729.44,-52.56 718.61,-150.56 800,-155"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M650.5,-48.75C731.89,-53.19 721.06,-151.19 794.5,-146.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M650.5,-50.75C729.9,-52.97 719.07,-150.97 794.5,-148.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M650.5,-52.75C727.92,-52.75 717.08,-150.75 794.5,-150.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M650.5,-54.75C725.93,-52.53 715.1,-150.53 794.5,-152.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M650.5,-56.75C723.94,-52.31 713.11,-150.31 794.5,-154.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge16" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-20C738.91,-24.53 725.02,-128.53 800,-124"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M656,-22C736.93,-24.26 723.04,-128.26 800,-126"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M656,-24C734.95,-24 721.05,-128 800,-128"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M656,-26C732.96,-23.74 719.07,-127.74 800,-130"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M656,-28C730.98,-23.47 717.09,-127.47 800,-132"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M650.5,-19.75C733.41,-24.28 719.52,-128.28 794.5,-123.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M650.5,-21.75C731.43,-24.01 717.54,-128.01 794.5,-125.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M650.5,-23.75C729.45,-23.75 715.55,-127.75 794.5,-127.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M650.5,-25.75C727.46,-23.49 713.57,-127.49 794.5,-129.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M650.5,-27.75C725.48,-23.22 711.59,-127.22 794.5,-131.75"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 27 KiB

218
examples/ex11.html generated
View File

@ -30,172 +30,172 @@
<div id="diagram">
<!-- XML and DOCTYPE declarations from SVG file removed -->
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="694pt" height="215pt"
viewBox="0.00 0.00 694.00 214.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 210.5)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-210.5 690,-210.5 690,4 -4,4"/>
<svg width="688pt" height="218pt"
viewBox="0.00 0.00 687.50 217.62" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 213.62)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-213.62 683.5,-213.62 683.5,4 -4,4"/>
<!-- __F_1 -->
<g id="node1" class="node">
<title>__F_1</title>
<polygon fill="#ffffff" stroke="black" points="317,-164 229,-164 229,-141 317,-141 317,-164"/>
<polygon fill="none" stroke="black" points="229,-140.5 229,-163.5 280,-163.5 280,-140.5 229,-140.5"/>
<text text-anchor="start" x="233" y="-148.3" font-family="arial" font-size="14.00">Ferrule</text>
<polygon fill="none" stroke="black" points="280,-140.5 280,-163.5 309,-163.5 309,-140.5 280,-140.5"/>
<text text-anchor="start" x="284" y="-148.3" font-family="arial" font-size="14.00">GY</text>
<polygon fill="#999999" stroke="none" points="309,-140.5 309,-163.5 317,-163.5 317,-140.5 309,-140.5"/>
<polygon fill="none" stroke="black" points="309,-140.5 309,-163.5 317,-163.5 317,-140.5 309,-140.5"/>
<polygon fill="#ffffff" stroke="black" points="314,-167.75 227,-167.75 227,-144 314,-144 314,-167.75"/>
<polygon fill="none" stroke="black" points="227,-144 227,-167.75 277.75,-167.75 277.75,-144 227,-144"/>
<text text-anchor="start" x="231" y="-150.45" font-family="arial" font-size="14.00">Ferrule</text>
<polygon fill="none" stroke="black" points="277.75,-144 277.75,-167.75 306,-167.75 306,-144 277.75,-144"/>
<text text-anchor="start" x="281.75" y="-150.45" font-family="arial" font-size="14.00">GY</text>
<polygon fill="#999999" stroke="none" points="306,-144 306,-167.75 314,-167.75 314,-144 306,-144"/>
<polygon fill="none" stroke="black" points="306,-144 306,-167.75 314,-167.75 314,-144 306,-144"/>
</g>
<!-- X1 -->
<g id="node5" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="686,-174.5 461,-174.5 461,-36.5 686,-36.5 686,-174.5"/>
<polygon fill="none" stroke="black" points="461.5,-151.5 461.5,-174.5 686.5,-174.5 686.5,-151.5 461.5,-151.5"/>
<text text-anchor="start" x="565.5" y="-159.3" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="461.5,-128.5 461.5,-151.5 570.5,-151.5 570.5,-128.5 461.5,-128.5"/>
<text text-anchor="start" x="465.5" y="-136.3" font-family="arial" font-size="14.00">Screw connector</text>
<polygon fill="none" stroke="black" points="570.5,-128.5 570.5,-151.5 609.5,-151.5 609.5,-128.5 570.5,-128.5"/>
<text text-anchor="start" x="574.5" y="-136.3" font-family="arial" font-size="14.00">male</text>
<polygon fill="none" stroke="black" points="609.5,-128.5 609.5,-151.5 648.5,-151.5 648.5,-128.5 609.5,-128.5"/>
<text text-anchor="start" x="613.5" y="-136.3" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="648.5,-128.5 648.5,-151.5 678.5,-151.5 678.5,-128.5 648.5,-128.5"/>
<text text-anchor="start" x="652.5" y="-136.3" font-family="arial" font-size="14.00">GN</text>
<polygon fill="#00ff00" stroke="none" points="678.5,-128.5 678.5,-151.5 686.5,-151.5 686.5,-128.5 678.5,-128.5"/>
<polygon fill="none" stroke="black" points="678.5,-128.5 678.5,-151.5 686.5,-151.5 686.5,-128.5 678.5,-128.5"/>
<polygon fill="none" stroke="black" points="461.5,-105.5 461.5,-128.5 573.5,-128.5 573.5,-105.5 461.5,-105.5"/>
<text text-anchor="start" x="513.5" y="-113.3" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="573.5,-105.5 573.5,-128.5 686.5,-128.5 686.5,-105.5 573.5,-105.5"/>
<text text-anchor="start" x="625" y="-113.3" font-family="arial" font-size="14.00">A</text>
<polygon fill="none" stroke="black" points="461.5,-82.5 461.5,-105.5 573.5,-105.5 573.5,-82.5 461.5,-82.5"/>
<text text-anchor="start" x="513.5" y="-90.3" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="573.5,-82.5 573.5,-105.5 686.5,-105.5 686.5,-82.5 573.5,-82.5"/>
<text text-anchor="start" x="625" y="-90.3" font-family="arial" font-size="14.00">B</text>
<polygon fill="none" stroke="black" points="461.5,-59.5 461.5,-82.5 573.5,-82.5 573.5,-59.5 461.5,-59.5"/>
<text text-anchor="start" x="513.5" y="-67.3" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="573.5,-59.5 573.5,-82.5 686.5,-82.5 686.5,-59.5 573.5,-59.5"/>
<text text-anchor="start" x="625" y="-67.3" font-family="arial" font-size="14.00">C</text>
<polygon fill="none" stroke="black" points="461.5,-36.5 461.5,-59.5 573.5,-59.5 573.5,-36.5 461.5,-36.5"/>
<text text-anchor="start" x="513.5" y="-44.3" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="573.5,-36.5 573.5,-59.5 686.5,-59.5 686.5,-36.5 573.5,-36.5"/>
<text text-anchor="start" x="625" y="-44.3" font-family="arial" font-size="14.00">D</text>
<polygon fill="#ffffff" stroke="black" points="679.5,-176.62 458,-176.62 458,-37.12 679.5,-37.12 679.5,-176.62"/>
<polygon fill="none" stroke="black" points="458,-152.88 458,-176.62 679.5,-176.62 679.5,-152.88 458,-152.88"/>
<text text-anchor="start" x="560.5" y="-159.32" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="458,-129.12 458,-152.88 566.5,-152.88 566.5,-129.12 458,-129.12"/>
<text text-anchor="start" x="462" y="-135.57" font-family="arial" font-size="14.00">Screw connector</text>
<polygon fill="none" stroke="black" points="566.5,-129.12 566.5,-152.88 604.5,-152.88 604.5,-129.12 566.5,-129.12"/>
<text text-anchor="start" x="570.5" y="-135.57" font-family="arial" font-size="14.00">male</text>
<polygon fill="none" stroke="black" points="604.5,-129.12 604.5,-152.88 642.5,-152.88 642.5,-129.12 604.5,-129.12"/>
<text text-anchor="start" x="608.5" y="-135.57" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="642.5,-129.12 642.5,-152.88 671.5,-152.88 671.5,-129.12 642.5,-129.12"/>
<text text-anchor="start" x="646.5" y="-135.57" font-family="arial" font-size="14.00">GN</text>
<polygon fill="#00ff00" stroke="none" points="671.5,-129.12 671.5,-152.88 679.5,-152.88 679.5,-129.12 671.5,-129.12"/>
<polygon fill="none" stroke="black" points="671.5,-129.12 671.5,-152.88 679.5,-152.88 679.5,-129.12 671.5,-129.12"/>
<polygon fill="none" stroke="black" points="458,-106.12 458,-129.12 567.75,-129.12 567.75,-106.12 458,-106.12"/>
<text text-anchor="start" x="509.12" y="-111.83" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="567.75,-106.12 567.75,-129.12 679.5,-129.12 679.5,-106.12 567.75,-106.12"/>
<text text-anchor="start" x="619.12" y="-111.83" font-family="arial" font-size="14.00">A</text>
<polygon fill="none" stroke="black" points="458,-83.12 458,-106.12 567.75,-106.12 567.75,-83.12 458,-83.12"/>
<text text-anchor="start" x="509.12" y="-88.83" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="567.75,-83.12 567.75,-106.12 679.5,-106.12 679.5,-83.12 567.75,-83.12"/>
<text text-anchor="start" x="619.12" y="-88.83" font-family="arial" font-size="14.00">B</text>
<polygon fill="none" stroke="black" points="458,-60.12 458,-83.12 567.75,-83.12 567.75,-60.12 458,-60.12"/>
<text text-anchor="start" x="509.12" y="-65.83" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="567.75,-60.12 567.75,-83.12 679.5,-83.12 679.5,-60.12 567.75,-60.12"/>
<text text-anchor="start" x="618.75" y="-65.83" font-family="arial" font-size="14.00">C</text>
<polygon fill="none" stroke="black" points="458,-37.12 458,-60.12 567.75,-60.12 567.75,-37.12 458,-37.12"/>
<text text-anchor="start" x="509.12" y="-42.83" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="567.75,-37.12 567.75,-60.12 679.5,-60.12 679.5,-37.12 567.75,-37.12"/>
<text text-anchor="start" x="618.75" y="-42.83" font-family="arial" font-size="14.00">D</text>
</g>
<!-- __F_1&#45;&#45;X1 -->
<g id="edge5" class="edge">
<title>__F_1:e&#45;&#45;X1:w</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M317,-152.5C378.88,-152.5 393.45,-121.61 449.6,-117.87"/>
<polygon fill="#000000" stroke="#000000" points="449.61,-121.37 459.49,-117.55 449.38,-114.37 449.61,-121.37"/>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M314,-155.88C376.18,-155.88 390.2,-122.34 446.55,-118.28"/>
<polygon fill="#000000" stroke="#000000" points="446.62,-121.78 456.49,-117.93 446.37,-114.78 446.62,-121.78"/>
</g>
<!-- __F_2 -->
<g id="node2" class="node">
<title>__F_2</title>
<polygon fill="#ffffff" stroke="black" points="317,-117 229,-117 229,-94 317,-94 317,-117"/>
<polygon fill="none" stroke="black" points="229,-93.5 229,-116.5 280,-116.5 280,-93.5 229,-93.5"/>
<text text-anchor="start" x="233" y="-101.3" font-family="arial" font-size="14.00">Ferrule</text>
<polygon fill="none" stroke="black" points="280,-93.5 280,-116.5 309,-116.5 309,-93.5 280,-93.5"/>
<text text-anchor="start" x="284" y="-101.3" font-family="arial" font-size="14.00">GY</text>
<polygon fill="#999999" stroke="none" points="309,-93.5 309,-116.5 317,-116.5 317,-93.5 309,-93.5"/>
<polygon fill="none" stroke="black" points="309,-93.5 309,-116.5 317,-116.5 317,-93.5 309,-93.5"/>
<polygon fill="#ffffff" stroke="black" points="314,-119.75 227,-119.75 227,-96 314,-96 314,-119.75"/>
<polygon fill="none" stroke="black" points="227,-96 227,-119.75 277.75,-119.75 277.75,-96 227,-96"/>
<text text-anchor="start" x="231" y="-102.45" font-family="arial" font-size="14.00">Ferrule</text>
<polygon fill="none" stroke="black" points="277.75,-96 277.75,-119.75 306,-119.75 306,-96 277.75,-96"/>
<text text-anchor="start" x="281.75" y="-102.45" font-family="arial" font-size="14.00">GY</text>
<polygon fill="#999999" stroke="none" points="306,-96 306,-119.75 314,-119.75 314,-96 306,-96"/>
<polygon fill="none" stroke="black" points="306,-96 306,-119.75 314,-119.75 314,-96 306,-96"/>
</g>
<!-- __F_2&#45;&#45;X1 -->
<g id="edge6" class="edge">
<title>__F_2:e&#45;&#45;X1:w</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M317,-105.5C377.21,-105.5 394.64,-94.95 449.5,-93.63"/>
<polygon fill="#000000" stroke="#000000" points="449.53,-97.13 459.49,-93.52 449.45,-90.14 449.53,-97.13"/>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M314,-107.88C374.24,-107.88 391.61,-96.45 446.5,-95.02"/>
<polygon fill="#000000" stroke="#000000" points="446.53,-98.52 456.49,-94.89 446.44,-91.52 446.53,-98.52"/>
</g>
<!-- __F_3 -->
<g id="node3" class="node">
<title>__F_3</title>
<polygon fill="#ffffff" stroke="black" points="317,-70 229,-70 229,-47 317,-47 317,-70"/>
<polygon fill="none" stroke="black" points="229,-46.5 229,-69.5 280,-69.5 280,-46.5 229,-46.5"/>
<text text-anchor="start" x="233" y="-54.3" font-family="arial" font-size="14.00">Ferrule</text>
<polygon fill="none" stroke="black" points="280,-46.5 280,-69.5 309,-69.5 309,-46.5 280,-46.5"/>
<text text-anchor="start" x="284" y="-54.3" font-family="arial" font-size="14.00">GY</text>
<polygon fill="#999999" stroke="none" points="309,-46.5 309,-69.5 317,-69.5 317,-46.5 309,-46.5"/>
<polygon fill="none" stroke="black" points="309,-46.5 309,-69.5 317,-69.5 317,-46.5 309,-46.5"/>
<polygon fill="#ffffff" stroke="black" points="314,-71.75 227,-71.75 227,-48 314,-48 314,-71.75"/>
<polygon fill="none" stroke="black" points="227,-48 227,-71.75 277.75,-71.75 277.75,-48 227,-48"/>
<text text-anchor="start" x="231" y="-54.45" font-family="arial" font-size="14.00">Ferrule</text>
<polygon fill="none" stroke="black" points="277.75,-48 277.75,-71.75 306,-71.75 306,-48 277.75,-48"/>
<text text-anchor="start" x="281.75" y="-54.45" font-family="arial" font-size="14.00">GY</text>
<polygon fill="#999999" stroke="none" points="306,-48 306,-71.75 314,-71.75 314,-48 306,-48"/>
<polygon fill="none" stroke="black" points="306,-48 306,-71.75 314,-71.75 314,-48 306,-48"/>
</g>
<!-- __F_3&#45;&#45;X1 -->
<g id="edge7" class="edge">
<title>__F_3:e&#45;&#45;X1:w</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M317,-58.5C377.21,-58.5 394.64,-69.05 449.5,-70.37"/>
<polygon fill="#000000" stroke="#000000" points="449.45,-73.86 459.49,-70.48 449.53,-66.87 449.45,-73.86"/>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M314,-59.88C374.21,-59.88 391.64,-70.42 446.5,-71.74"/>
<polygon fill="#000000" stroke="#000000" points="446.45,-75.24 456.49,-71.86 446.53,-68.24 446.45,-75.24"/>
</g>
<!-- __F_4 -->
<g id="node4" class="node">
<title>__F_4</title>
<polygon fill="#ffffff" stroke="black" points="317,-23 229,-23 229,0 317,0 317,-23"/>
<polygon fill="none" stroke="black" points="229,0.5 229,-22.5 280,-22.5 280,0.5 229,0.5"/>
<text text-anchor="start" x="233" y="-7.3" font-family="arial" font-size="14.00">Ferrule</text>
<polygon fill="none" stroke="black" points="280,0.5 280,-22.5 309,-22.5 309,0.5 280,0.5"/>
<text text-anchor="start" x="284" y="-7.3" font-family="arial" font-size="14.00">GY</text>
<polygon fill="#999999" stroke="none" points="309,0.5 309,-22.5 317,-22.5 317,0.5 309,0.5"/>
<polygon fill="none" stroke="black" points="309,0.5 309,-22.5 317,-22.5 317,0.5 309,0.5"/>
<polygon fill="#ffffff" stroke="black" points="314,-23.75 227,-23.75 227,0 314,0 314,-23.75"/>
<polygon fill="none" stroke="black" points="227,0 227,-23.75 277.75,-23.75 277.75,0 227,0"/>
<text text-anchor="start" x="231" y="-6.45" font-family="arial" font-size="14.00">Ferrule</text>
<polygon fill="none" stroke="black" points="277.75,0 277.75,-23.75 306,-23.75 306,0 277.75,0"/>
<text text-anchor="start" x="281.75" y="-6.45" font-family="arial" font-size="14.00">GY</text>
<polygon fill="#999999" stroke="none" points="306,0 306,-23.75 314,-23.75 314,0 306,0"/>
<polygon fill="none" stroke="black" points="306,0 306,-23.75 314,-23.75 314,0 306,0"/>
</g>
<!-- __F_4&#45;&#45;X1 -->
<g id="edge8" class="edge">
<title>__F_4:e&#45;&#45;X1:w</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M317,-11.5C378.98,-11.5 393.37,-43.27 449.59,-47.12"/>
<polygon fill="#000000" stroke="#000000" points="449.38,-50.61 459.49,-47.45 449.61,-43.62 449.38,-50.61"/>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M314,-11.88C376.08,-11.88 390.29,-44.53 446.57,-48.48"/>
<polygon fill="#000000" stroke="#000000" points="446.37,-51.98 456.49,-48.82 446.61,-44.98 446.37,-51.98"/>
</g>
<!-- W1 -->
<g id="node6" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" points="85,-206.5 0,-206.5 0,-22.5 85,-22.5 85,-206.5"/>
<polygon fill="none" stroke="black" points="0.5,-183.5 0.5,-206.5 85.5,-206.5 85.5,-183.5 0.5,-183.5"/>
<text text-anchor="start" x="32" y="-191.3" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="0.5,-160.5 0.5,-183.5 32.5,-183.5 32.5,-160.5 0.5,-160.5"/>
<text text-anchor="start" x="9" y="-168.3" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="32.5,-160.5 32.5,-183.5 68.5,-183.5 68.5,-160.5 32.5,-160.5"/>
<text text-anchor="start" x="41" y="-168.3" font-family="arial" font-size="14.00">BK</text>
<polygon fill="#000000" stroke="none" points="68.5,-160.5 68.5,-183.5 85.5,-183.5 85.5,-160.5 68.5,-160.5"/>
<polygon fill="none" stroke="black" points="68.5,-160.5 68.5,-183.5 85.5,-183.5 85.5,-160.5 68.5,-160.5"/>
<text text-anchor="start" x="2.5" y="-147.3" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="13" y="-128.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:BK &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="0.5,-120.5 0.5,-122.5 85.5,-122.5 85.5,-120.5 0.5,-120.5"/>
<polygon fill="#000000" stroke="none" points="0.5,-118.5 0.5,-120.5 85.5,-120.5 85.5,-118.5 0.5,-118.5"/>
<polygon fill="#000000" stroke="none" points="0.5,-116.5 0.5,-118.5 85.5,-118.5 85.5,-116.5 0.5,-116.5"/>
<text text-anchor="start" x="10.5" y="-103.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:WH &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="0.5,-95.5 0.5,-97.5 85.5,-97.5 85.5,-95.5 0.5,-95.5"/>
<polygon fill="#ffffff" stroke="none" points="0.5,-93.5 0.5,-95.5 85.5,-95.5 85.5,-93.5 0.5,-93.5"/>
<polygon fill="#000000" stroke="none" points="0.5,-91.5 0.5,-93.5 85.5,-93.5 85.5,-91.5 0.5,-91.5"/>
<text text-anchor="start" x="13" y="-78.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:BU &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="0.5,-70.5 0.5,-72.5 85.5,-72.5 85.5,-70.5 0.5,-70.5"/>
<polygon fill="#0066ff" stroke="none" points="0.5,-68.5 0.5,-70.5 85.5,-70.5 85.5,-68.5 0.5,-68.5"/>
<polygon fill="#000000" stroke="none" points="0.5,-66.5 0.5,-68.5 85.5,-68.5 85.5,-66.5 0.5,-66.5"/>
<text text-anchor="start" x="13" y="-53.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:BN &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="0.5,-45.5 0.5,-47.5 85.5,-47.5 85.5,-45.5 0.5,-45.5"/>
<polygon fill="#895956" stroke="none" points="0.5,-43.5 0.5,-45.5 85.5,-45.5 85.5,-43.5 0.5,-43.5"/>
<polygon fill="#000000" stroke="none" points="0.5,-41.5 0.5,-43.5 85.5,-43.5 85.5,-41.5 0.5,-41.5"/>
<text text-anchor="start" x="2.5" y="-28.3" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" points="83,-209.62 0,-209.62 0,-24.12 83,-24.12 83,-209.62"/>
<polygon fill="none" stroke="black" points="0,-185.88 0,-209.62 83,-209.62 83,-185.88 0,-185.88"/>
<text text-anchor="start" x="31" y="-192.32" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="0,-162.12 0,-185.88 31.17,-185.88 31.17,-162.12 0,-162.12"/>
<text text-anchor="start" x="8.46" y="-168.57" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="31.17,-162.12 31.17,-185.88 66.08,-185.88 66.08,-162.12 31.17,-162.12"/>
<text text-anchor="start" x="39.62" y="-168.57" font-family="arial" font-size="14.00">BK</text>
<polygon fill="#000000" stroke="none" points="66.08,-162.12 66.08,-185.88 83,-185.88 83,-162.12 66.08,-162.12"/>
<polygon fill="none" stroke="black" points="66.08,-162.12 66.08,-185.88 83,-185.88 83,-162.12 66.08,-162.12"/>
<text text-anchor="start" x="1.62" y="-146.82" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="11.5" y="-127.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:BK &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="0,-122.12 0,-124.12 83,-124.12 83,-122.12 0,-122.12"/>
<polygon fill="#000000" stroke="none" points="0,-120.12 0,-122.12 83,-122.12 83,-120.12 0,-120.12"/>
<polygon fill="#000000" stroke="none" points="0,-118.12 0,-120.12 83,-120.12 83,-118.12 0,-118.12"/>
<text text-anchor="start" x="8.88" y="-102.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:WH &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="0,-97.12 0,-99.12 83,-99.12 83,-97.12 0,-97.12"/>
<polygon fill="#ffffff" stroke="none" points="0,-95.12 0,-97.12 83,-97.12 83,-95.12 0,-95.12"/>
<polygon fill="#000000" stroke="none" points="0,-93.12 0,-95.12 83,-95.12 83,-93.12 0,-93.12"/>
<text text-anchor="start" x="11.12" y="-77.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:BU &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="0,-72.12 0,-74.12 83,-74.12 83,-72.12 0,-72.12"/>
<polygon fill="#0066ff" stroke="none" points="0,-70.12 0,-72.12 83,-72.12 83,-70.12 0,-70.12"/>
<polygon fill="#000000" stroke="none" points="0,-68.12 0,-70.12 83,-70.12 83,-68.12 0,-68.12"/>
<text text-anchor="start" x="11.12" y="-52.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:BN &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="0,-47.12 0,-49.12 83,-49.12 83,-47.12 0,-47.12"/>
<polygon fill="#895956" stroke="none" points="0,-45.12 0,-47.12 83,-47.12 83,-45.12 0,-45.12"/>
<polygon fill="#000000" stroke="none" points="0,-43.12 0,-45.12 83,-45.12 83,-43.12 0,-43.12"/>
<text text-anchor="start" x="1.62" y="-27.82" font-family="arial" font-size="14.00"> </text>
</g>
<!-- W1&#45;&#45;__F_1 -->
<g id="edge1" class="edge">
<title>W1:e&#45;&#45;__F_1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M85,-117.5C152.53,-118.78 165.21,-151.78 229,-150.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M85,-119.5C150.66,-119.5 163.34,-152.5 229,-152.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M85,-121.5C148.79,-120.22 161.47,-153.22 229,-154.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M83,-118.88C150.75,-120.21 163.02,-155.21 227,-153.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M83,-120.88C148.86,-120.88 161.14,-155.88 227,-155.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M83,-122.87C146.98,-121.54 159.25,-156.54 227,-157.87"/>
</g>
<!-- W1&#45;&#45;__F_2 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;__F_2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M85,-92.5C150.34,-92.86 165.96,-103.86 229,-103.5"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M85,-94.5C149.19,-94.5 164.81,-105.5 229,-105.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M85,-96.5C148.04,-96.14 163.66,-107.14 229,-107.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M83,-93.88C148.44,-94.29 164,-106.29 227,-105.88"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M83,-95.87C147.22,-95.87 162.78,-107.87 227,-107.87"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M83,-97.87C146,-97.46 161.56,-109.46 227,-109.87"/>
</g>
<!-- W1&#45;&#45;__F_3 -->
<g id="edge3" class="edge">
<title>W1:e&#45;&#45;__F_3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M85,-67.5C148.04,-67.86 163.66,-56.86 229,-56.5"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M85,-69.5C149.19,-69.5 164.81,-58.5 229,-58.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M85,-71.5C150.34,-71.14 165.96,-60.14 229,-60.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M83,-68.88C146.04,-69.24 161.66,-58.24 227,-57.88"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M83,-70.88C147.19,-70.87 162.81,-59.88 227,-59.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M83,-72.87C148.34,-72.51 163.96,-61.51 227,-61.87"/>
</g>
<!-- W1&#45;&#45;__F_4 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;__F_4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M85,-42.5C148.79,-43.78 161.47,-10.78 229,-9.5"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M85,-44.5C150.66,-44.5 163.34,-11.5 229,-11.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M85,-46.5C152.53,-45.22 165.21,-12.22 229,-13.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M83,-43.88C146.88,-45.19 159.36,-11.19 227,-9.88"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M83,-45.88C148.76,-45.88 161.24,-11.88 227,-11.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M83,-47.87C150.64,-46.56 163.12,-12.56 227,-13.87"/>
</g>
</g>
</svg>

BIN
examples/ex11.png generated

Binary file not shown.

Before

Width:  |  Height:  |  Size: 37 KiB

After

Width:  |  Height:  |  Size: 42 KiB

218
examples/ex11.svg generated
View File

@ -1,172 +1,172 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="694pt" height="215pt"
viewBox="0.00 0.00 694.00 214.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 210.5)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-210.5 690,-210.5 690,4 -4,4"/>
<svg width="688pt" height="218pt"
viewBox="0.00 0.00 687.50 217.62" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 213.62)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-213.62 683.5,-213.62 683.5,4 -4,4"/>
<!-- __F_1 -->
<g id="node1" class="node">
<title>__F_1</title>
<polygon fill="#ffffff" stroke="black" points="317,-164 229,-164 229,-141 317,-141 317,-164"/>
<polygon fill="none" stroke="black" points="229,-140.5 229,-163.5 280,-163.5 280,-140.5 229,-140.5"/>
<text text-anchor="start" x="233" y="-148.3" font-family="arial" font-size="14.00">Ferrule</text>
<polygon fill="none" stroke="black" points="280,-140.5 280,-163.5 309,-163.5 309,-140.5 280,-140.5"/>
<text text-anchor="start" x="284" y="-148.3" font-family="arial" font-size="14.00">GY</text>
<polygon fill="#999999" stroke="none" points="309,-140.5 309,-163.5 317,-163.5 317,-140.5 309,-140.5"/>
<polygon fill="none" stroke="black" points="309,-140.5 309,-163.5 317,-163.5 317,-140.5 309,-140.5"/>
<polygon fill="#ffffff" stroke="black" points="314,-167.75 227,-167.75 227,-144 314,-144 314,-167.75"/>
<polygon fill="none" stroke="black" points="227,-144 227,-167.75 277.75,-167.75 277.75,-144 227,-144"/>
<text text-anchor="start" x="231" y="-150.45" font-family="arial" font-size="14.00">Ferrule</text>
<polygon fill="none" stroke="black" points="277.75,-144 277.75,-167.75 306,-167.75 306,-144 277.75,-144"/>
<text text-anchor="start" x="281.75" y="-150.45" font-family="arial" font-size="14.00">GY</text>
<polygon fill="#999999" stroke="none" points="306,-144 306,-167.75 314,-167.75 314,-144 306,-144"/>
<polygon fill="none" stroke="black" points="306,-144 306,-167.75 314,-167.75 314,-144 306,-144"/>
</g>
<!-- X1 -->
<g id="node5" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="686,-174.5 461,-174.5 461,-36.5 686,-36.5 686,-174.5"/>
<polygon fill="none" stroke="black" points="461.5,-151.5 461.5,-174.5 686.5,-174.5 686.5,-151.5 461.5,-151.5"/>
<text text-anchor="start" x="565.5" y="-159.3" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="461.5,-128.5 461.5,-151.5 570.5,-151.5 570.5,-128.5 461.5,-128.5"/>
<text text-anchor="start" x="465.5" y="-136.3" font-family="arial" font-size="14.00">Screw connector</text>
<polygon fill="none" stroke="black" points="570.5,-128.5 570.5,-151.5 609.5,-151.5 609.5,-128.5 570.5,-128.5"/>
<text text-anchor="start" x="574.5" y="-136.3" font-family="arial" font-size="14.00">male</text>
<polygon fill="none" stroke="black" points="609.5,-128.5 609.5,-151.5 648.5,-151.5 648.5,-128.5 609.5,-128.5"/>
<text text-anchor="start" x="613.5" y="-136.3" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="648.5,-128.5 648.5,-151.5 678.5,-151.5 678.5,-128.5 648.5,-128.5"/>
<text text-anchor="start" x="652.5" y="-136.3" font-family="arial" font-size="14.00">GN</text>
<polygon fill="#00ff00" stroke="none" points="678.5,-128.5 678.5,-151.5 686.5,-151.5 686.5,-128.5 678.5,-128.5"/>
<polygon fill="none" stroke="black" points="678.5,-128.5 678.5,-151.5 686.5,-151.5 686.5,-128.5 678.5,-128.5"/>
<polygon fill="none" stroke="black" points="461.5,-105.5 461.5,-128.5 573.5,-128.5 573.5,-105.5 461.5,-105.5"/>
<text text-anchor="start" x="513.5" y="-113.3" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="573.5,-105.5 573.5,-128.5 686.5,-128.5 686.5,-105.5 573.5,-105.5"/>
<text text-anchor="start" x="625" y="-113.3" font-family="arial" font-size="14.00">A</text>
<polygon fill="none" stroke="black" points="461.5,-82.5 461.5,-105.5 573.5,-105.5 573.5,-82.5 461.5,-82.5"/>
<text text-anchor="start" x="513.5" y="-90.3" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="573.5,-82.5 573.5,-105.5 686.5,-105.5 686.5,-82.5 573.5,-82.5"/>
<text text-anchor="start" x="625" y="-90.3" font-family="arial" font-size="14.00">B</text>
<polygon fill="none" stroke="black" points="461.5,-59.5 461.5,-82.5 573.5,-82.5 573.5,-59.5 461.5,-59.5"/>
<text text-anchor="start" x="513.5" y="-67.3" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="573.5,-59.5 573.5,-82.5 686.5,-82.5 686.5,-59.5 573.5,-59.5"/>
<text text-anchor="start" x="625" y="-67.3" font-family="arial" font-size="14.00">C</text>
<polygon fill="none" stroke="black" points="461.5,-36.5 461.5,-59.5 573.5,-59.5 573.5,-36.5 461.5,-36.5"/>
<text text-anchor="start" x="513.5" y="-44.3" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="573.5,-36.5 573.5,-59.5 686.5,-59.5 686.5,-36.5 573.5,-36.5"/>
<text text-anchor="start" x="625" y="-44.3" font-family="arial" font-size="14.00">D</text>
<polygon fill="#ffffff" stroke="black" points="679.5,-176.62 458,-176.62 458,-37.12 679.5,-37.12 679.5,-176.62"/>
<polygon fill="none" stroke="black" points="458,-152.88 458,-176.62 679.5,-176.62 679.5,-152.88 458,-152.88"/>
<text text-anchor="start" x="560.5" y="-159.32" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="458,-129.12 458,-152.88 566.5,-152.88 566.5,-129.12 458,-129.12"/>
<text text-anchor="start" x="462" y="-135.57" font-family="arial" font-size="14.00">Screw connector</text>
<polygon fill="none" stroke="black" points="566.5,-129.12 566.5,-152.88 604.5,-152.88 604.5,-129.12 566.5,-129.12"/>
<text text-anchor="start" x="570.5" y="-135.57" font-family="arial" font-size="14.00">male</text>
<polygon fill="none" stroke="black" points="604.5,-129.12 604.5,-152.88 642.5,-152.88 642.5,-129.12 604.5,-129.12"/>
<text text-anchor="start" x="608.5" y="-135.57" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="642.5,-129.12 642.5,-152.88 671.5,-152.88 671.5,-129.12 642.5,-129.12"/>
<text text-anchor="start" x="646.5" y="-135.57" font-family="arial" font-size="14.00">GN</text>
<polygon fill="#00ff00" stroke="none" points="671.5,-129.12 671.5,-152.88 679.5,-152.88 679.5,-129.12 671.5,-129.12"/>
<polygon fill="none" stroke="black" points="671.5,-129.12 671.5,-152.88 679.5,-152.88 679.5,-129.12 671.5,-129.12"/>
<polygon fill="none" stroke="black" points="458,-106.12 458,-129.12 567.75,-129.12 567.75,-106.12 458,-106.12"/>
<text text-anchor="start" x="509.12" y="-111.83" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="567.75,-106.12 567.75,-129.12 679.5,-129.12 679.5,-106.12 567.75,-106.12"/>
<text text-anchor="start" x="619.12" y="-111.83" font-family="arial" font-size="14.00">A</text>
<polygon fill="none" stroke="black" points="458,-83.12 458,-106.12 567.75,-106.12 567.75,-83.12 458,-83.12"/>
<text text-anchor="start" x="509.12" y="-88.83" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="567.75,-83.12 567.75,-106.12 679.5,-106.12 679.5,-83.12 567.75,-83.12"/>
<text text-anchor="start" x="619.12" y="-88.83" font-family="arial" font-size="14.00">B</text>
<polygon fill="none" stroke="black" points="458,-60.12 458,-83.12 567.75,-83.12 567.75,-60.12 458,-60.12"/>
<text text-anchor="start" x="509.12" y="-65.83" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="567.75,-60.12 567.75,-83.12 679.5,-83.12 679.5,-60.12 567.75,-60.12"/>
<text text-anchor="start" x="618.75" y="-65.83" font-family="arial" font-size="14.00">C</text>
<polygon fill="none" stroke="black" points="458,-37.12 458,-60.12 567.75,-60.12 567.75,-37.12 458,-37.12"/>
<text text-anchor="start" x="509.12" y="-42.83" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="567.75,-37.12 567.75,-60.12 679.5,-60.12 679.5,-37.12 567.75,-37.12"/>
<text text-anchor="start" x="618.75" y="-42.83" font-family="arial" font-size="14.00">D</text>
</g>
<!-- __F_1&#45;&#45;X1 -->
<g id="edge5" class="edge">
<title>__F_1:e&#45;&#45;X1:w</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M317,-152.5C378.88,-152.5 393.45,-121.61 449.6,-117.87"/>
<polygon fill="#000000" stroke="#000000" points="449.61,-121.37 459.49,-117.55 449.38,-114.37 449.61,-121.37"/>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M314,-155.88C376.18,-155.88 390.2,-122.34 446.55,-118.28"/>
<polygon fill="#000000" stroke="#000000" points="446.62,-121.78 456.49,-117.93 446.37,-114.78 446.62,-121.78"/>
</g>
<!-- __F_2 -->
<g id="node2" class="node">
<title>__F_2</title>
<polygon fill="#ffffff" stroke="black" points="317,-117 229,-117 229,-94 317,-94 317,-117"/>
<polygon fill="none" stroke="black" points="229,-93.5 229,-116.5 280,-116.5 280,-93.5 229,-93.5"/>
<text text-anchor="start" x="233" y="-101.3" font-family="arial" font-size="14.00">Ferrule</text>
<polygon fill="none" stroke="black" points="280,-93.5 280,-116.5 309,-116.5 309,-93.5 280,-93.5"/>
<text text-anchor="start" x="284" y="-101.3" font-family="arial" font-size="14.00">GY</text>
<polygon fill="#999999" stroke="none" points="309,-93.5 309,-116.5 317,-116.5 317,-93.5 309,-93.5"/>
<polygon fill="none" stroke="black" points="309,-93.5 309,-116.5 317,-116.5 317,-93.5 309,-93.5"/>
<polygon fill="#ffffff" stroke="black" points="314,-119.75 227,-119.75 227,-96 314,-96 314,-119.75"/>
<polygon fill="none" stroke="black" points="227,-96 227,-119.75 277.75,-119.75 277.75,-96 227,-96"/>
<text text-anchor="start" x="231" y="-102.45" font-family="arial" font-size="14.00">Ferrule</text>
<polygon fill="none" stroke="black" points="277.75,-96 277.75,-119.75 306,-119.75 306,-96 277.75,-96"/>
<text text-anchor="start" x="281.75" y="-102.45" font-family="arial" font-size="14.00">GY</text>
<polygon fill="#999999" stroke="none" points="306,-96 306,-119.75 314,-119.75 314,-96 306,-96"/>
<polygon fill="none" stroke="black" points="306,-96 306,-119.75 314,-119.75 314,-96 306,-96"/>
</g>
<!-- __F_2&#45;&#45;X1 -->
<g id="edge6" class="edge">
<title>__F_2:e&#45;&#45;X1:w</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M317,-105.5C377.21,-105.5 394.64,-94.95 449.5,-93.63"/>
<polygon fill="#000000" stroke="#000000" points="449.53,-97.13 459.49,-93.52 449.45,-90.14 449.53,-97.13"/>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M314,-107.88C374.24,-107.88 391.61,-96.45 446.5,-95.02"/>
<polygon fill="#000000" stroke="#000000" points="446.53,-98.52 456.49,-94.89 446.44,-91.52 446.53,-98.52"/>
</g>
<!-- __F_3 -->
<g id="node3" class="node">
<title>__F_3</title>
<polygon fill="#ffffff" stroke="black" points="317,-70 229,-70 229,-47 317,-47 317,-70"/>
<polygon fill="none" stroke="black" points="229,-46.5 229,-69.5 280,-69.5 280,-46.5 229,-46.5"/>
<text text-anchor="start" x="233" y="-54.3" font-family="arial" font-size="14.00">Ferrule</text>
<polygon fill="none" stroke="black" points="280,-46.5 280,-69.5 309,-69.5 309,-46.5 280,-46.5"/>
<text text-anchor="start" x="284" y="-54.3" font-family="arial" font-size="14.00">GY</text>
<polygon fill="#999999" stroke="none" points="309,-46.5 309,-69.5 317,-69.5 317,-46.5 309,-46.5"/>
<polygon fill="none" stroke="black" points="309,-46.5 309,-69.5 317,-69.5 317,-46.5 309,-46.5"/>
<polygon fill="#ffffff" stroke="black" points="314,-71.75 227,-71.75 227,-48 314,-48 314,-71.75"/>
<polygon fill="none" stroke="black" points="227,-48 227,-71.75 277.75,-71.75 277.75,-48 227,-48"/>
<text text-anchor="start" x="231" y="-54.45" font-family="arial" font-size="14.00">Ferrule</text>
<polygon fill="none" stroke="black" points="277.75,-48 277.75,-71.75 306,-71.75 306,-48 277.75,-48"/>
<text text-anchor="start" x="281.75" y="-54.45" font-family="arial" font-size="14.00">GY</text>
<polygon fill="#999999" stroke="none" points="306,-48 306,-71.75 314,-71.75 314,-48 306,-48"/>
<polygon fill="none" stroke="black" points="306,-48 306,-71.75 314,-71.75 314,-48 306,-48"/>
</g>
<!-- __F_3&#45;&#45;X1 -->
<g id="edge7" class="edge">
<title>__F_3:e&#45;&#45;X1:w</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M317,-58.5C377.21,-58.5 394.64,-69.05 449.5,-70.37"/>
<polygon fill="#000000" stroke="#000000" points="449.45,-73.86 459.49,-70.48 449.53,-66.87 449.45,-73.86"/>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M314,-59.88C374.21,-59.88 391.64,-70.42 446.5,-71.74"/>
<polygon fill="#000000" stroke="#000000" points="446.45,-75.24 456.49,-71.86 446.53,-68.24 446.45,-75.24"/>
</g>
<!-- __F_4 -->
<g id="node4" class="node">
<title>__F_4</title>
<polygon fill="#ffffff" stroke="black" points="317,-23 229,-23 229,0 317,0 317,-23"/>
<polygon fill="none" stroke="black" points="229,0.5 229,-22.5 280,-22.5 280,0.5 229,0.5"/>
<text text-anchor="start" x="233" y="-7.3" font-family="arial" font-size="14.00">Ferrule</text>
<polygon fill="none" stroke="black" points="280,0.5 280,-22.5 309,-22.5 309,0.5 280,0.5"/>
<text text-anchor="start" x="284" y="-7.3" font-family="arial" font-size="14.00">GY</text>
<polygon fill="#999999" stroke="none" points="309,0.5 309,-22.5 317,-22.5 317,0.5 309,0.5"/>
<polygon fill="none" stroke="black" points="309,0.5 309,-22.5 317,-22.5 317,0.5 309,0.5"/>
<polygon fill="#ffffff" stroke="black" points="314,-23.75 227,-23.75 227,0 314,0 314,-23.75"/>
<polygon fill="none" stroke="black" points="227,0 227,-23.75 277.75,-23.75 277.75,0 227,0"/>
<text text-anchor="start" x="231" y="-6.45" font-family="arial" font-size="14.00">Ferrule</text>
<polygon fill="none" stroke="black" points="277.75,0 277.75,-23.75 306,-23.75 306,0 277.75,0"/>
<text text-anchor="start" x="281.75" y="-6.45" font-family="arial" font-size="14.00">GY</text>
<polygon fill="#999999" stroke="none" points="306,0 306,-23.75 314,-23.75 314,0 306,0"/>
<polygon fill="none" stroke="black" points="306,0 306,-23.75 314,-23.75 314,0 306,0"/>
</g>
<!-- __F_4&#45;&#45;X1 -->
<g id="edge8" class="edge">
<title>__F_4:e&#45;&#45;X1:w</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M317,-11.5C378.98,-11.5 393.37,-43.27 449.59,-47.12"/>
<polygon fill="#000000" stroke="#000000" points="449.38,-50.61 459.49,-47.45 449.61,-43.62 449.38,-50.61"/>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M314,-11.88C376.08,-11.88 390.29,-44.53 446.57,-48.48"/>
<polygon fill="#000000" stroke="#000000" points="446.37,-51.98 456.49,-48.82 446.61,-44.98 446.37,-51.98"/>
</g>
<!-- W1 -->
<g id="node6" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" points="85,-206.5 0,-206.5 0,-22.5 85,-22.5 85,-206.5"/>
<polygon fill="none" stroke="black" points="0.5,-183.5 0.5,-206.5 85.5,-206.5 85.5,-183.5 0.5,-183.5"/>
<text text-anchor="start" x="32" y="-191.3" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="0.5,-160.5 0.5,-183.5 32.5,-183.5 32.5,-160.5 0.5,-160.5"/>
<text text-anchor="start" x="9" y="-168.3" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="32.5,-160.5 32.5,-183.5 68.5,-183.5 68.5,-160.5 32.5,-160.5"/>
<text text-anchor="start" x="41" y="-168.3" font-family="arial" font-size="14.00">BK</text>
<polygon fill="#000000" stroke="none" points="68.5,-160.5 68.5,-183.5 85.5,-183.5 85.5,-160.5 68.5,-160.5"/>
<polygon fill="none" stroke="black" points="68.5,-160.5 68.5,-183.5 85.5,-183.5 85.5,-160.5 68.5,-160.5"/>
<text text-anchor="start" x="2.5" y="-147.3" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="13" y="-128.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:BK &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="0.5,-120.5 0.5,-122.5 85.5,-122.5 85.5,-120.5 0.5,-120.5"/>
<polygon fill="#000000" stroke="none" points="0.5,-118.5 0.5,-120.5 85.5,-120.5 85.5,-118.5 0.5,-118.5"/>
<polygon fill="#000000" stroke="none" points="0.5,-116.5 0.5,-118.5 85.5,-118.5 85.5,-116.5 0.5,-116.5"/>
<text text-anchor="start" x="10.5" y="-103.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:WH &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="0.5,-95.5 0.5,-97.5 85.5,-97.5 85.5,-95.5 0.5,-95.5"/>
<polygon fill="#ffffff" stroke="none" points="0.5,-93.5 0.5,-95.5 85.5,-95.5 85.5,-93.5 0.5,-93.5"/>
<polygon fill="#000000" stroke="none" points="0.5,-91.5 0.5,-93.5 85.5,-93.5 85.5,-91.5 0.5,-91.5"/>
<text text-anchor="start" x="13" y="-78.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:BU &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="0.5,-70.5 0.5,-72.5 85.5,-72.5 85.5,-70.5 0.5,-70.5"/>
<polygon fill="#0066ff" stroke="none" points="0.5,-68.5 0.5,-70.5 85.5,-70.5 85.5,-68.5 0.5,-68.5"/>
<polygon fill="#000000" stroke="none" points="0.5,-66.5 0.5,-68.5 85.5,-68.5 85.5,-66.5 0.5,-66.5"/>
<text text-anchor="start" x="13" y="-53.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:BN &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="0.5,-45.5 0.5,-47.5 85.5,-47.5 85.5,-45.5 0.5,-45.5"/>
<polygon fill="#895956" stroke="none" points="0.5,-43.5 0.5,-45.5 85.5,-45.5 85.5,-43.5 0.5,-43.5"/>
<polygon fill="#000000" stroke="none" points="0.5,-41.5 0.5,-43.5 85.5,-43.5 85.5,-41.5 0.5,-41.5"/>
<text text-anchor="start" x="2.5" y="-28.3" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" points="83,-209.62 0,-209.62 0,-24.12 83,-24.12 83,-209.62"/>
<polygon fill="none" stroke="black" points="0,-185.88 0,-209.62 83,-209.62 83,-185.88 0,-185.88"/>
<text text-anchor="start" x="31" y="-192.32" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="0,-162.12 0,-185.88 31.17,-185.88 31.17,-162.12 0,-162.12"/>
<text text-anchor="start" x="8.46" y="-168.57" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="31.17,-162.12 31.17,-185.88 66.08,-185.88 66.08,-162.12 31.17,-162.12"/>
<text text-anchor="start" x="39.62" y="-168.57" font-family="arial" font-size="14.00">BK</text>
<polygon fill="#000000" stroke="none" points="66.08,-162.12 66.08,-185.88 83,-185.88 83,-162.12 66.08,-162.12"/>
<polygon fill="none" stroke="black" points="66.08,-162.12 66.08,-185.88 83,-185.88 83,-162.12 66.08,-162.12"/>
<text text-anchor="start" x="1.62" y="-146.82" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="11.5" y="-127.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:BK &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="0,-122.12 0,-124.12 83,-124.12 83,-122.12 0,-122.12"/>
<polygon fill="#000000" stroke="none" points="0,-120.12 0,-122.12 83,-122.12 83,-120.12 0,-120.12"/>
<polygon fill="#000000" stroke="none" points="0,-118.12 0,-120.12 83,-120.12 83,-118.12 0,-118.12"/>
<text text-anchor="start" x="8.88" y="-102.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:WH &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="0,-97.12 0,-99.12 83,-99.12 83,-97.12 0,-97.12"/>
<polygon fill="#ffffff" stroke="none" points="0,-95.12 0,-97.12 83,-97.12 83,-95.12 0,-95.12"/>
<polygon fill="#000000" stroke="none" points="0,-93.12 0,-95.12 83,-95.12 83,-93.12 0,-93.12"/>
<text text-anchor="start" x="11.12" y="-77.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:BU &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="0,-72.12 0,-74.12 83,-74.12 83,-72.12 0,-72.12"/>
<polygon fill="#0066ff" stroke="none" points="0,-70.12 0,-72.12 83,-72.12 83,-70.12 0,-70.12"/>
<polygon fill="#000000" stroke="none" points="0,-68.12 0,-70.12 83,-70.12 83,-68.12 0,-68.12"/>
<text text-anchor="start" x="11.12" y="-52.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:BN &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="0,-47.12 0,-49.12 83,-49.12 83,-47.12 0,-47.12"/>
<polygon fill="#895956" stroke="none" points="0,-45.12 0,-47.12 83,-47.12 83,-45.12 0,-45.12"/>
<polygon fill="#000000" stroke="none" points="0,-43.12 0,-45.12 83,-45.12 83,-43.12 0,-43.12"/>
<text text-anchor="start" x="1.62" y="-27.82" font-family="arial" font-size="14.00"> </text>
</g>
<!-- W1&#45;&#45;__F_1 -->
<g id="edge1" class="edge">
<title>W1:e&#45;&#45;__F_1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M85,-117.5C152.53,-118.78 165.21,-151.78 229,-150.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M85,-119.5C150.66,-119.5 163.34,-152.5 229,-152.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M85,-121.5C148.79,-120.22 161.47,-153.22 229,-154.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M83,-118.88C150.75,-120.21 163.02,-155.21 227,-153.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M83,-120.88C148.86,-120.88 161.14,-155.88 227,-155.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M83,-122.87C146.98,-121.54 159.25,-156.54 227,-157.87"/>
</g>
<!-- W1&#45;&#45;__F_2 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;__F_2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M85,-92.5C150.34,-92.86 165.96,-103.86 229,-103.5"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M85,-94.5C149.19,-94.5 164.81,-105.5 229,-105.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M85,-96.5C148.04,-96.14 163.66,-107.14 229,-107.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M83,-93.88C148.44,-94.29 164,-106.29 227,-105.88"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M83,-95.87C147.22,-95.87 162.78,-107.87 227,-107.87"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M83,-97.87C146,-97.46 161.56,-109.46 227,-109.87"/>
</g>
<!-- W1&#45;&#45;__F_3 -->
<g id="edge3" class="edge">
<title>W1:e&#45;&#45;__F_3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M85,-67.5C148.04,-67.86 163.66,-56.86 229,-56.5"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M85,-69.5C149.19,-69.5 164.81,-58.5 229,-58.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M85,-71.5C150.34,-71.14 165.96,-60.14 229,-60.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M83,-68.88C146.04,-69.24 161.66,-58.24 227,-57.88"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M83,-70.88C147.19,-70.87 162.81,-59.88 227,-59.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M83,-72.87C148.34,-72.51 163.96,-61.51 227,-61.87"/>
</g>
<!-- W1&#45;&#45;__F_4 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;__F_4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M85,-42.5C148.79,-43.78 161.47,-10.78 229,-9.5"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M85,-44.5C150.66,-44.5 163.34,-11.5 229,-11.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M85,-46.5C152.53,-45.22 165.21,-12.22 229,-13.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M83,-43.88C146.88,-45.19 159.36,-11.19 227,-9.88"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M83,-45.88C148.76,-45.88 161.24,-11.88 227,-11.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M83,-47.87C150.64,-46.56 163.12,-12.56 227,-13.87"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

272
examples/ex12.html generated
View File

@ -30,195 +30,195 @@
<div id="diagram">
<!-- XML and DOCTYPE declarations from SVG file removed -->
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="1083pt" height="201pt"
viewBox="0.00 0.00 1083.00 200.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 196.5)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-196.5 1079,-196.5 1079,4 -4,4"/>
<svg width="1071pt" height="205pt"
viewBox="0.00 0.00 1071.25 204.88" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 200.88)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-200.88 1067.25,-200.88 1067.25,4 -4,4"/>
<!-- X1 -->
<g id="node1" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="462,-161 243,-161 243,0 462,0 462,-161"/>
<polygon fill="none" stroke="black" points="243.5,-137.5 243.5,-160.5 462.5,-160.5 462.5,-137.5 243.5,-137.5"/>
<text text-anchor="start" x="344.5" y="-145.3" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="243.5,-114.5 243.5,-137.5 349.5,-137.5 349.5,-114.5 243.5,-114.5"/>
<text text-anchor="start" x="247.5" y="-122.3" font-family="arial" font-size="14.00">Dupont 2.54mm</text>
<polygon fill="none" stroke="black" points="349.5,-114.5 349.5,-137.5 388.5,-137.5 388.5,-114.5 349.5,-114.5"/>
<text text-anchor="start" x="353.5" y="-122.3" font-family="arial" font-size="14.00">male</text>
<polygon fill="none" stroke="black" points="388.5,-114.5 388.5,-137.5 427.5,-137.5 427.5,-114.5 388.5,-114.5"/>
<text text-anchor="start" x="392.5" y="-122.3" font-family="arial" font-size="14.00">5&#45;pin</text>
<polygon fill="none" stroke="black" points="427.5,-114.5 427.5,-137.5 454.5,-137.5 454.5,-114.5 427.5,-114.5"/>
<text text-anchor="start" x="431.5" y="-122.3" font-family="arial" font-size="14.00">BK</text>
<polygon fill="#000000" stroke="none" points="454.5,-114.5 454.5,-137.5 462.5,-137.5 462.5,-114.5 454.5,-114.5"/>
<polygon fill="none" stroke="black" points="454.5,-114.5 454.5,-137.5 462.5,-137.5 462.5,-114.5 454.5,-114.5"/>
<polygon fill="none" stroke="black" points="243.5,-91.5 243.5,-114.5 462.5,-114.5 462.5,-91.5 243.5,-91.5"/>
<text text-anchor="start" x="349" y="-99.3" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="243.5,-68.5 243.5,-91.5 462.5,-91.5 462.5,-68.5 243.5,-68.5"/>
<text text-anchor="start" x="349" y="-76.3" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="243.5,-45.5 243.5,-68.5 462.5,-68.5 462.5,-45.5 243.5,-45.5"/>
<text text-anchor="start" x="349" y="-53.3" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="243.5,-22.5 243.5,-45.5 462.5,-45.5 462.5,-22.5 243.5,-22.5"/>
<text text-anchor="start" x="349" y="-30.3" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="243.5,0.5 243.5,-22.5 462.5,-22.5 462.5,0.5 243.5,0.5"/>
<text text-anchor="start" x="349" y="-7.3" font-family="arial" font-size="14.00">5</text>
<polygon fill="#ffffff" stroke="black" points="455.5,-166.25 240,-166.25 240,0 455.5,0 455.5,-166.25"/>
<polygon fill="none" stroke="black" points="240,-142.5 240,-166.25 455.5,-166.25 455.5,-142.5 240,-142.5"/>
<text text-anchor="start" x="339.5" y="-148.95" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="240,-118.75 240,-142.5 345.5,-142.5 345.5,-118.75 240,-118.75"/>
<text text-anchor="start" x="244" y="-125.2" font-family="arial" font-size="14.00">Dupont 2.54mm</text>
<polygon fill="none" stroke="black" points="345.5,-118.75 345.5,-142.5 383.5,-142.5 383.5,-118.75 345.5,-118.75"/>
<text text-anchor="start" x="349.5" y="-125.2" font-family="arial" font-size="14.00">male</text>
<polygon fill="none" stroke="black" points="383.5,-118.75 383.5,-142.5 421.5,-142.5 421.5,-118.75 383.5,-118.75"/>
<text text-anchor="start" x="387.5" y="-125.2" font-family="arial" font-size="14.00">5&#45;pin</text>
<polygon fill="none" stroke="black" points="421.5,-118.75 421.5,-142.5 447.5,-142.5 447.5,-118.75 421.5,-118.75"/>
<text text-anchor="start" x="425.5" y="-125.2" font-family="arial" font-size="14.00">BK</text>
<polygon fill="#000000" stroke="none" points="447.5,-118.75 447.5,-142.5 455.5,-142.5 455.5,-118.75 447.5,-118.75"/>
<polygon fill="none" stroke="black" points="447.5,-118.75 447.5,-142.5 455.5,-142.5 455.5,-118.75 447.5,-118.75"/>
<polygon fill="none" stroke="black" points="240,-95 240,-118.75 455.5,-118.75 455.5,-95 240,-95"/>
<text text-anchor="start" x="344" y="-101.45" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="240,-71.25 240,-95 455.5,-95 455.5,-71.25 240,-71.25"/>
<text text-anchor="start" x="344" y="-77.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="240,-47.5 240,-71.25 455.5,-71.25 455.5,-47.5 240,-47.5"/>
<text text-anchor="start" x="344" y="-53.95" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="240,-23.75 240,-47.5 455.5,-47.5 455.5,-23.75 240,-23.75"/>
<text text-anchor="start" x="344" y="-30.2" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="240,0 240,-23.75 455.5,-23.75 455.5,0 240,0"/>
<text text-anchor="start" x="344" y="-6.45" font-family="arial" font-size="14.00">5</text>
</g>
<!-- X2 -->
<g id="node2" class="node">
<title>X2</title>
<polygon fill="#ffffff" stroke="black" points="836,-161 606,-161 606,0 836,0 836,-161"/>
<polygon fill="none" stroke="black" points="606,-137.5 606,-160.5 836,-160.5 836,-137.5 606,-137.5"/>
<text text-anchor="start" x="712.5" y="-145.3" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="606,-114.5 606,-137.5 712,-137.5 712,-114.5 606,-114.5"/>
<text text-anchor="start" x="610" y="-122.3" font-family="arial" font-size="14.00">Dupont 2.54mm</text>
<polygon fill="none" stroke="black" points="712,-114.5 712,-137.5 762,-137.5 762,-114.5 712,-114.5"/>
<text text-anchor="start" x="716" y="-122.3" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="762,-114.5 762,-137.5 801,-137.5 801,-114.5 762,-114.5"/>
<text text-anchor="start" x="766" y="-122.3" font-family="arial" font-size="14.00">5&#45;pin</text>
<polygon fill="none" stroke="black" points="801,-114.5 801,-137.5 828,-137.5 828,-114.5 801,-114.5"/>
<text text-anchor="start" x="805" y="-122.3" font-family="arial" font-size="14.00">BK</text>
<polygon fill="#000000" stroke="none" points="828,-114.5 828,-137.5 836,-137.5 836,-114.5 828,-114.5"/>
<polygon fill="none" stroke="black" points="828,-114.5 828,-137.5 836,-137.5 836,-114.5 828,-114.5"/>
<polygon fill="none" stroke="black" points="606,-91.5 606,-114.5 836,-114.5 836,-91.5 606,-91.5"/>
<text text-anchor="start" x="717" y="-99.3" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="606,-68.5 606,-91.5 836,-91.5 836,-68.5 606,-68.5"/>
<text text-anchor="start" x="717" y="-76.3" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="606,-45.5 606,-68.5 836,-68.5 836,-45.5 606,-45.5"/>
<text text-anchor="start" x="717" y="-53.3" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="606,-22.5 606,-45.5 836,-45.5 836,-22.5 606,-22.5"/>
<text text-anchor="start" x="717" y="-30.3" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="606,0.5 606,-22.5 836,-22.5 836,0.5 606,0.5"/>
<text text-anchor="start" x="717" y="-7.3" font-family="arial" font-size="14.00">5</text>
<polygon fill="#ffffff" stroke="black" points="826.25,-166.25 599.5,-166.25 599.5,0 826.25,0 826.25,-166.25"/>
<polygon fill="none" stroke="black" points="599.5,-142.5 599.5,-166.25 826.25,-166.25 826.25,-142.5 599.5,-142.5"/>
<text text-anchor="start" x="704.62" y="-148.95" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="599.5,-118.75 599.5,-142.5 705,-142.5 705,-118.75 599.5,-118.75"/>
<text text-anchor="start" x="603.5" y="-125.2" font-family="arial" font-size="14.00">Dupont 2.54mm</text>
<polygon fill="none" stroke="black" points="705,-118.75 705,-142.5 754.25,-142.5 754.25,-118.75 705,-118.75"/>
<text text-anchor="start" x="709" y="-125.2" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="754.25,-118.75 754.25,-142.5 792.25,-142.5 792.25,-118.75 754.25,-118.75"/>
<text text-anchor="start" x="758.25" y="-125.2" font-family="arial" font-size="14.00">5&#45;pin</text>
<polygon fill="none" stroke="black" points="792.25,-118.75 792.25,-142.5 818.25,-142.5 818.25,-118.75 792.25,-118.75"/>
<text text-anchor="start" x="796.25" y="-125.2" font-family="arial" font-size="14.00">BK</text>
<polygon fill="#000000" stroke="none" points="818.25,-118.75 818.25,-142.5 826.25,-142.5 826.25,-118.75 818.25,-118.75"/>
<polygon fill="none" stroke="black" points="818.25,-118.75 818.25,-142.5 826.25,-142.5 826.25,-118.75 818.25,-118.75"/>
<polygon fill="none" stroke="black" points="599.5,-95 599.5,-118.75 826.25,-118.75 826.25,-95 599.5,-95"/>
<text text-anchor="start" x="709.12" y="-101.45" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="599.5,-71.25 599.5,-95 826.25,-95 826.25,-71.25 599.5,-71.25"/>
<text text-anchor="start" x="709.12" y="-77.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="599.5,-47.5 599.5,-71.25 826.25,-71.25 826.25,-47.5 599.5,-47.5"/>
<text text-anchor="start" x="709.12" y="-53.95" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="599.5,-23.75 599.5,-47.5 826.25,-47.5 826.25,-23.75 599.5,-23.75"/>
<text text-anchor="start" x="709.12" y="-30.2" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="599.5,0 599.5,-23.75 826.25,-23.75 826.25,0 599.5,0"/>
<text text-anchor="start" x="709.12" y="-6.45" font-family="arial" font-size="14.00">5</text>
</g>
<!-- X1&#45;&#45;X2 -->
<g id="edge9" class="edge">
<title>X1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M462,-79.5C522,-79.5 539.81,-79.5 594.54,-79.5"/>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M462,-81.5C522,-81.5 539.81,-81.5 594.54,-81.5"/>
<polygon fill="#000000" stroke="#000000" points="594.49,-84 604.49,-80.5 594.49,-77 594.49,-84"/>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M455.5,-82.13C515.5,-82.12 533.31,-82.12 588.04,-82.13"/>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M455.5,-84.12C515.5,-84.12 533.31,-84.12 588.04,-84.12"/>
<polygon fill="#000000" stroke="#000000" points="587.99,-86.63 597.99,-83.13 587.99,-79.63 587.99,-86.63"/>
</g>
<!-- W2 -->
<g id="node4" class="node">
<title>W2</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1075,-192.5 980,-192.5 980,-8.5 1075,-8.5 1075,-192.5"/>
<polygon fill="none" stroke="black" points="980.5,-169.5 980.5,-192.5 1075.5,-192.5 1075.5,-169.5 980.5,-169.5"/>
<text text-anchor="start" x="1017" y="-177.3" font-family="arial" font-size="14.00">W2</text>
<polygon fill="none" stroke="black" points="980.5,-146.5 980.5,-169.5 1018.5,-169.5 1018.5,-146.5 980.5,-146.5"/>
<text text-anchor="start" x="992" y="-154.3" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="1018.5,-146.5 1018.5,-169.5 1075.5,-169.5 1075.5,-146.5 1018.5,-146.5"/>
<text text-anchor="start" x="1029.5" y="-154.3" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="994.5" y="-133.3" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="982.5" y="-114.3" font-family="arial" font-size="14.00">X2:1</text>
<text text-anchor="start" x="1015" y="-114.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="980.5,-106.5 980.5,-108.5 1075.5,-108.5 1075.5,-106.5 980.5,-106.5"/>
<polygon fill="#ff0000" stroke="none" points="980.5,-104.5 980.5,-106.5 1075.5,-106.5 1075.5,-104.5 980.5,-104.5"/>
<polygon fill="#000000" stroke="none" points="980.5,-102.5 980.5,-104.5 1075.5,-104.5 1075.5,-102.5 980.5,-102.5"/>
<text text-anchor="start" x="982.5" y="-89.3" font-family="arial" font-size="14.00">X2:2</text>
<text text-anchor="start" x="1016" y="-89.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="980.5,-81.5 980.5,-83.5 1075.5,-83.5 1075.5,-81.5 980.5,-81.5"/>
<polygon fill="#000000" stroke="none" points="980.5,-79.5 980.5,-81.5 1075.5,-81.5 1075.5,-79.5 980.5,-79.5"/>
<polygon fill="#000000" stroke="none" points="980.5,-77.5 980.5,-79.5 1075.5,-79.5 1075.5,-77.5 980.5,-77.5"/>
<text text-anchor="start" x="982.5" y="-64.3" font-family="arial" font-size="14.00">X2:3</text>
<text text-anchor="start" x="1015.5" y="-64.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="980.5,-56.5 980.5,-58.5 1075.5,-58.5 1075.5,-56.5 980.5,-56.5"/>
<polygon fill="#0066ff" stroke="none" points="980.5,-54.5 980.5,-56.5 1075.5,-56.5 1075.5,-54.5 980.5,-54.5"/>
<polygon fill="#000000" stroke="none" points="980.5,-52.5 980.5,-54.5 1075.5,-54.5 1075.5,-52.5 980.5,-52.5"/>
<text text-anchor="start" x="982.5" y="-39.3" font-family="arial" font-size="14.00">X2:4</text>
<text text-anchor="start" x="1014.5" y="-39.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="980.5,-31.5 980.5,-33.5 1075.5,-33.5 1075.5,-31.5 980.5,-31.5"/>
<polygon fill="#00ff00" stroke="none" points="980.5,-29.5 980.5,-31.5 1075.5,-31.5 1075.5,-29.5 980.5,-29.5"/>
<polygon fill="#000000" stroke="none" points="980.5,-27.5 980.5,-29.5 1075.5,-29.5 1075.5,-27.5 980.5,-27.5"/>
<text text-anchor="start" x="994.5" y="-14.3" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1063.25,-196.88 970.25,-196.88 970.25,-11.38 1063.25,-11.38 1063.25,-196.88"/>
<polygon fill="none" stroke="black" points="970.25,-173.12 970.25,-196.88 1063.25,-196.88 1063.25,-173.12 970.25,-173.12"/>
<text text-anchor="start" x="1006.25" y="-179.57" font-family="arial" font-size="14.00">W2</text>
<polygon fill="none" stroke="black" points="970.25,-149.38 970.25,-173.12 1006.62,-173.12 1006.62,-149.38 970.25,-149.38"/>
<text text-anchor="start" x="981.31" y="-155.82" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="1006.62,-149.38 1006.62,-173.12 1063.25,-173.12 1063.25,-149.38 1006.62,-149.38"/>
<text text-anchor="start" x="1017.69" y="-155.82" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="983.88" y="-134.07" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="971.88" y="-115.08" font-family="arial" font-size="14.00">X2:1</text>
<text text-anchor="start" x="1003.62" y="-115.08" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="970.25,-109.38 970.25,-111.38 1063.25,-111.38 1063.25,-109.38 970.25,-109.38"/>
<polygon fill="#ff0000" stroke="none" points="970.25,-107.38 970.25,-109.38 1063.25,-109.38 1063.25,-107.38 970.25,-107.38"/>
<polygon fill="#000000" stroke="none" points="970.25,-105.38 970.25,-107.38 1063.25,-107.38 1063.25,-105.38 970.25,-105.38"/>
<text text-anchor="start" x="971.88" y="-90.08" font-family="arial" font-size="14.00">X2:2</text>
<text text-anchor="start" x="1004.38" y="-90.08" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="970.25,-84.38 970.25,-86.38 1063.25,-86.38 1063.25,-84.38 970.25,-84.38"/>
<polygon fill="#000000" stroke="none" points="970.25,-82.38 970.25,-84.38 1063.25,-84.38 1063.25,-82.38 970.25,-82.38"/>
<polygon fill="#000000" stroke="none" points="970.25,-80.38 970.25,-82.38 1063.25,-82.38 1063.25,-80.38 970.25,-80.38"/>
<text text-anchor="start" x="971.88" y="-65.08" font-family="arial" font-size="14.00">X2:3</text>
<text text-anchor="start" x="1004" y="-65.08" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="970.25,-59.38 970.25,-61.38 1063.25,-61.38 1063.25,-59.38 970.25,-59.38"/>
<polygon fill="#0066ff" stroke="none" points="970.25,-57.38 970.25,-59.38 1063.25,-59.38 1063.25,-57.38 970.25,-57.38"/>
<polygon fill="#000000" stroke="none" points="970.25,-55.38 970.25,-57.38 1063.25,-57.38 1063.25,-55.38 970.25,-55.38"/>
<text text-anchor="start" x="971.88" y="-40.08" font-family="arial" font-size="14.00">X2:4</text>
<text text-anchor="start" x="1002.88" y="-40.08" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="970.25,-34.38 970.25,-36.38 1063.25,-36.38 1063.25,-34.38 970.25,-34.38"/>
<polygon fill="#00ff00" stroke="none" points="970.25,-32.38 970.25,-34.38 1063.25,-34.38 1063.25,-32.38 970.25,-32.38"/>
<polygon fill="#000000" stroke="none" points="970.25,-30.38 970.25,-32.38 1063.25,-32.38 1063.25,-30.38 970.25,-30.38"/>
<text text-anchor="start" x="983.88" y="-15.07" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X2&#45;&#45;W2 -->
<g id="edge5" class="edge">
<title>X2:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M836,-101.5C900.25,-101.52 916.24,-103.52 980,-103.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M836,-103.5C900.01,-103.5 915.99,-105.5 980,-105.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M836,-105.5C899.76,-105.48 915.75,-107.48 980,-107.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M826.25,-105.13C890.38,-105.13 906.37,-106.13 970.25,-106.13"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M826.25,-107.12C890.25,-107.12 906.25,-108.12 970.25,-108.12"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M826.25,-109.12C890.13,-109.12 906.12,-110.12 970.25,-110.12"/>
</g>
<!-- X2&#45;&#45;W2 -->
<g id="edge6" class="edge">
<title>X2:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M836,-77.5C900.13,-77.5 916.12,-78.5 980,-78.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M836,-79.5C900,-79.5 916,-80.5 980,-80.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M836,-81.5C899.88,-81.5 915.87,-82.5 980,-82.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M826.25,-81.13C890.25,-81.12 906.25,-81.12 970.25,-81.13"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M826.25,-83.12C890.25,-83.12 906.25,-83.12 970.25,-83.12"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M826.25,-85.12C890.25,-85.12 906.25,-85.12 970.25,-85.12"/>
</g>
<!-- X2&#45;&#45;W2 -->
<g id="edge7" class="edge">
<title>X2:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M836,-54.5C899.88,-54.5 915.87,-53.5 980,-53.5"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M836,-56.5C900,-56.5 916,-55.5 980,-55.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M836,-58.5C900.13,-58.5 916.12,-57.5 980,-57.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M826.25,-57.13C890.13,-57.13 906.12,-56.13 970.25,-56.13"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M826.25,-59.12C890.25,-59.13 906.25,-58.13 970.25,-58.12"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M826.25,-61.12C890.38,-61.12 906.37,-60.12 970.25,-60.12"/>
</g>
<!-- X2&#45;&#45;W2 -->
<g id="edge8" class="edge">
<title>X2:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M836,-31.5C899.64,-31.53 915.62,-28.53 980,-28.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M836,-33.5C900.01,-33.5 915.99,-30.5 980,-30.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M836,-35.5C900.38,-35.47 916.36,-32.47 980,-32.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M826.25,-33.13C890.01,-33.14 906,-31.14 970.25,-31.13"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M826.25,-35.12C890.26,-35.12 906.24,-33.12 970.25,-33.12"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M826.25,-37.12C890.5,-37.11 906.49,-35.11 970.25,-35.12"/>
</g>
<!-- W1 -->
<g id="node3" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="99,-192.5 0,-192.5 0,-8.5 99,-8.5 99,-192.5"/>
<polygon fill="none" stroke="black" points="0.5,-169.5 0.5,-192.5 99.5,-192.5 99.5,-169.5 0.5,-169.5"/>
<text text-anchor="start" x="39" y="-177.3" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="0.5,-146.5 0.5,-169.5 40.5,-169.5 40.5,-146.5 0.5,-146.5"/>
<text text-anchor="start" x="13" y="-154.3" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="40.5,-146.5 40.5,-169.5 99.5,-169.5 99.5,-146.5 40.5,-146.5"/>
<text text-anchor="start" x="52.5" y="-154.3" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="2.5" y="-133.3" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="11" y="-114.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="69.5" y="-114.3" font-family="arial" font-size="14.00">X1:1</text>
<polygon fill="#000000" stroke="none" points="0.5,-106.5 0.5,-108.5 99.5,-108.5 99.5,-106.5 0.5,-106.5"/>
<polygon fill="#ff0000" stroke="none" points="0.5,-104.5 0.5,-106.5 99.5,-106.5 99.5,-104.5 0.5,-104.5"/>
<polygon fill="#000000" stroke="none" points="0.5,-102.5 0.5,-104.5 99.5,-104.5 99.5,-102.5 0.5,-102.5"/>
<text text-anchor="start" x="12" y="-89.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="69.5" y="-89.3" font-family="arial" font-size="14.00">X1:2</text>
<polygon fill="#000000" stroke="none" points="0.5,-81.5 0.5,-83.5 99.5,-83.5 99.5,-81.5 0.5,-81.5"/>
<polygon fill="#000000" stroke="none" points="0.5,-79.5 0.5,-81.5 99.5,-81.5 99.5,-79.5 0.5,-79.5"/>
<polygon fill="#000000" stroke="none" points="0.5,-77.5 0.5,-79.5 99.5,-79.5 99.5,-77.5 0.5,-77.5"/>
<text text-anchor="start" x="11.5" y="-64.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
<text text-anchor="start" x="69.5" y="-64.3" font-family="arial" font-size="14.00">X1:3</text>
<polygon fill="#000000" stroke="none" points="0.5,-56.5 0.5,-58.5 99.5,-58.5 99.5,-56.5 0.5,-56.5"/>
<polygon fill="#0066ff" stroke="none" points="0.5,-54.5 0.5,-56.5 99.5,-56.5 99.5,-54.5 0.5,-54.5"/>
<polygon fill="#000000" stroke="none" points="0.5,-52.5 0.5,-54.5 99.5,-54.5 99.5,-52.5 0.5,-52.5"/>
<text text-anchor="start" x="10.5" y="-39.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="69.5" y="-39.3" font-family="arial" font-size="14.00">X1:4</text>
<polygon fill="#000000" stroke="none" points="0.5,-31.5 0.5,-33.5 99.5,-33.5 99.5,-31.5 0.5,-31.5"/>
<polygon fill="#00ff00" stroke="none" points="0.5,-29.5 0.5,-31.5 99.5,-31.5 99.5,-29.5 0.5,-29.5"/>
<polygon fill="#000000" stroke="none" points="0.5,-27.5 0.5,-29.5 99.5,-29.5 99.5,-27.5 0.5,-27.5"/>
<text text-anchor="start" x="2.5" y="-14.3" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="96,-196.88 0,-196.88 0,-11.38 96,-11.38 96,-196.88"/>
<polygon fill="none" stroke="black" points="0,-173.12 0,-196.88 96,-196.88 96,-173.12 0,-173.12"/>
<text text-anchor="start" x="37.5" y="-179.57" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="0,-149.38 0,-173.12 37.88,-173.12 37.88,-149.38 0,-149.38"/>
<text text-anchor="start" x="11.81" y="-155.82" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="37.88,-149.38 37.88,-173.12 96,-173.12 96,-149.38 37.88,-149.38"/>
<text text-anchor="start" x="49.69" y="-155.82" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="1.62" y="-134.07" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="9.38" y="-115.08" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="66.62" y="-115.08" font-family="arial" font-size="14.00">X1:1</text>
<polygon fill="#000000" stroke="none" points="0,-109.38 0,-111.38 96,-111.38 96,-109.38 0,-109.38"/>
<polygon fill="#ff0000" stroke="none" points="0,-107.38 0,-109.38 96,-109.38 96,-107.38 0,-107.38"/>
<polygon fill="#000000" stroke="none" points="0,-105.38 0,-107.38 96,-107.38 96,-105.38 0,-105.38"/>
<text text-anchor="start" x="10.12" y="-90.08" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="66.62" y="-90.08" font-family="arial" font-size="14.00">X1:2</text>
<polygon fill="#000000" stroke="none" points="0,-84.38 0,-86.38 96,-86.38 96,-84.38 0,-84.38"/>
<polygon fill="#000000" stroke="none" points="0,-82.38 0,-84.38 96,-84.38 96,-82.38 0,-82.38"/>
<polygon fill="#000000" stroke="none" points="0,-80.38 0,-82.38 96,-82.38 96,-80.38 0,-80.38"/>
<text text-anchor="start" x="9.75" y="-65.08" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
<text text-anchor="start" x="66.62" y="-65.08" font-family="arial" font-size="14.00">X1:3</text>
<polygon fill="#000000" stroke="none" points="0,-59.38 0,-61.38 96,-61.38 96,-59.38 0,-59.38"/>
<polygon fill="#0066ff" stroke="none" points="0,-57.38 0,-59.38 96,-59.38 96,-57.38 0,-57.38"/>
<polygon fill="#000000" stroke="none" points="0,-55.38 0,-57.38 96,-57.38 96,-55.38 0,-55.38"/>
<text text-anchor="start" x="8.62" y="-40.08" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="66.62" y="-40.08" font-family="arial" font-size="14.00">X1:4</text>
<polygon fill="#000000" stroke="none" points="0,-34.38 0,-36.38 96,-36.38 96,-34.38 0,-34.38"/>
<polygon fill="#00ff00" stroke="none" points="0,-32.38 0,-34.38 96,-34.38 96,-32.38 0,-32.38"/>
<polygon fill="#000000" stroke="none" points="0,-30.38 0,-32.38 96,-32.38 96,-30.38 0,-30.38"/>
<text text-anchor="start" x="1.62" y="-15.07" font-family="arial" font-size="14.00"> </text>
</g>
<!-- W1&#45;&#45;X1 -->
<g id="edge1" class="edge">
<title>W1:e&#45;&#45;X1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M99,-103.5C162.76,-103.52 178.75,-101.52 243,-101.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M99,-105.5C163.01,-105.5 178.99,-103.5 243,-103.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M99,-107.5C163.25,-107.48 179.24,-105.48 243,-105.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M96,-106.13C159.88,-106.13 175.87,-105.13 240,-105.13"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M96,-108.12C160,-108.12 176,-107.12 240,-107.12"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M96,-110.12C160.13,-110.12 176.12,-109.12 240,-109.12"/>
</g>
<!-- W1&#45;&#45;X1 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;X1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M99,-78.5C162.88,-78.5 178.87,-77.5 243,-77.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M99,-80.5C163,-80.5 179,-79.5 243,-79.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M99,-82.5C163.13,-82.5 179.12,-81.5 243,-81.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M96,-81.13C160,-81.12 176,-81.12 240,-81.13"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M96,-83.12C160,-83.12 176,-83.12 240,-83.12"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M96,-85.12C160,-85.12 176,-85.12 240,-85.12"/>
</g>
<!-- W1&#45;&#45;X1 -->
<g id="edge3" class="edge">
<title>W1:e&#45;&#45;X1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M99,-53.5C163.13,-53.5 179.12,-54.5 243,-54.5"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M99,-55.5C163,-55.5 179,-56.5 243,-56.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M99,-57.5C162.88,-57.5 178.87,-58.5 243,-58.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M96,-56.13C160.13,-56.13 176.12,-57.13 240,-57.13"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M96,-58.12C160,-58.13 176,-59.13 240,-59.12"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M96,-60.12C159.88,-60.12 175.87,-61.12 240,-61.12"/>
</g>
<!-- W1&#45;&#45;X1 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;X1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M99,-28.5C163.38,-28.53 179.36,-31.53 243,-31.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M99,-30.5C163.01,-30.5 178.99,-33.5 243,-33.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M99,-32.5C162.64,-32.47 178.62,-35.47 243,-35.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M96,-31.13C160.25,-31.14 176.24,-33.14 240,-33.13"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M96,-33.12C160.01,-33.12 175.99,-35.12 240,-35.12"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M96,-35.12C159.76,-35.11 175.75,-37.11 240,-37.12"/>
</g>
</g>
</svg>

BIN
examples/ex12.png generated

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 27 KiB

272
examples/ex12.svg generated
View File

@ -1,195 +1,195 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="1083pt" height="201pt"
viewBox="0.00 0.00 1083.00 200.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 196.5)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-196.5 1079,-196.5 1079,4 -4,4"/>
<svg width="1071pt" height="205pt"
viewBox="0.00 0.00 1071.25 204.88" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 200.88)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-200.88 1067.25,-200.88 1067.25,4 -4,4"/>
<!-- X1 -->
<g id="node1" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="462,-161 243,-161 243,0 462,0 462,-161"/>
<polygon fill="none" stroke="black" points="243.5,-137.5 243.5,-160.5 462.5,-160.5 462.5,-137.5 243.5,-137.5"/>
<text text-anchor="start" x="344.5" y="-145.3" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="243.5,-114.5 243.5,-137.5 349.5,-137.5 349.5,-114.5 243.5,-114.5"/>
<text text-anchor="start" x="247.5" y="-122.3" font-family="arial" font-size="14.00">Dupont 2.54mm</text>
<polygon fill="none" stroke="black" points="349.5,-114.5 349.5,-137.5 388.5,-137.5 388.5,-114.5 349.5,-114.5"/>
<text text-anchor="start" x="353.5" y="-122.3" font-family="arial" font-size="14.00">male</text>
<polygon fill="none" stroke="black" points="388.5,-114.5 388.5,-137.5 427.5,-137.5 427.5,-114.5 388.5,-114.5"/>
<text text-anchor="start" x="392.5" y="-122.3" font-family="arial" font-size="14.00">5&#45;pin</text>
<polygon fill="none" stroke="black" points="427.5,-114.5 427.5,-137.5 454.5,-137.5 454.5,-114.5 427.5,-114.5"/>
<text text-anchor="start" x="431.5" y="-122.3" font-family="arial" font-size="14.00">BK</text>
<polygon fill="#000000" stroke="none" points="454.5,-114.5 454.5,-137.5 462.5,-137.5 462.5,-114.5 454.5,-114.5"/>
<polygon fill="none" stroke="black" points="454.5,-114.5 454.5,-137.5 462.5,-137.5 462.5,-114.5 454.5,-114.5"/>
<polygon fill="none" stroke="black" points="243.5,-91.5 243.5,-114.5 462.5,-114.5 462.5,-91.5 243.5,-91.5"/>
<text text-anchor="start" x="349" y="-99.3" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="243.5,-68.5 243.5,-91.5 462.5,-91.5 462.5,-68.5 243.5,-68.5"/>
<text text-anchor="start" x="349" y="-76.3" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="243.5,-45.5 243.5,-68.5 462.5,-68.5 462.5,-45.5 243.5,-45.5"/>
<text text-anchor="start" x="349" y="-53.3" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="243.5,-22.5 243.5,-45.5 462.5,-45.5 462.5,-22.5 243.5,-22.5"/>
<text text-anchor="start" x="349" y="-30.3" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="243.5,0.5 243.5,-22.5 462.5,-22.5 462.5,0.5 243.5,0.5"/>
<text text-anchor="start" x="349" y="-7.3" font-family="arial" font-size="14.00">5</text>
<polygon fill="#ffffff" stroke="black" points="455.5,-166.25 240,-166.25 240,0 455.5,0 455.5,-166.25"/>
<polygon fill="none" stroke="black" points="240,-142.5 240,-166.25 455.5,-166.25 455.5,-142.5 240,-142.5"/>
<text text-anchor="start" x="339.5" y="-148.95" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="240,-118.75 240,-142.5 345.5,-142.5 345.5,-118.75 240,-118.75"/>
<text text-anchor="start" x="244" y="-125.2" font-family="arial" font-size="14.00">Dupont 2.54mm</text>
<polygon fill="none" stroke="black" points="345.5,-118.75 345.5,-142.5 383.5,-142.5 383.5,-118.75 345.5,-118.75"/>
<text text-anchor="start" x="349.5" y="-125.2" font-family="arial" font-size="14.00">male</text>
<polygon fill="none" stroke="black" points="383.5,-118.75 383.5,-142.5 421.5,-142.5 421.5,-118.75 383.5,-118.75"/>
<text text-anchor="start" x="387.5" y="-125.2" font-family="arial" font-size="14.00">5&#45;pin</text>
<polygon fill="none" stroke="black" points="421.5,-118.75 421.5,-142.5 447.5,-142.5 447.5,-118.75 421.5,-118.75"/>
<text text-anchor="start" x="425.5" y="-125.2" font-family="arial" font-size="14.00">BK</text>
<polygon fill="#000000" stroke="none" points="447.5,-118.75 447.5,-142.5 455.5,-142.5 455.5,-118.75 447.5,-118.75"/>
<polygon fill="none" stroke="black" points="447.5,-118.75 447.5,-142.5 455.5,-142.5 455.5,-118.75 447.5,-118.75"/>
<polygon fill="none" stroke="black" points="240,-95 240,-118.75 455.5,-118.75 455.5,-95 240,-95"/>
<text text-anchor="start" x="344" y="-101.45" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="240,-71.25 240,-95 455.5,-95 455.5,-71.25 240,-71.25"/>
<text text-anchor="start" x="344" y="-77.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="240,-47.5 240,-71.25 455.5,-71.25 455.5,-47.5 240,-47.5"/>
<text text-anchor="start" x="344" y="-53.95" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="240,-23.75 240,-47.5 455.5,-47.5 455.5,-23.75 240,-23.75"/>
<text text-anchor="start" x="344" y="-30.2" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="240,0 240,-23.75 455.5,-23.75 455.5,0 240,0"/>
<text text-anchor="start" x="344" y="-6.45" font-family="arial" font-size="14.00">5</text>
</g>
<!-- X2 -->
<g id="node2" class="node">
<title>X2</title>
<polygon fill="#ffffff" stroke="black" points="836,-161 606,-161 606,0 836,0 836,-161"/>
<polygon fill="none" stroke="black" points="606,-137.5 606,-160.5 836,-160.5 836,-137.5 606,-137.5"/>
<text text-anchor="start" x="712.5" y="-145.3" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="606,-114.5 606,-137.5 712,-137.5 712,-114.5 606,-114.5"/>
<text text-anchor="start" x="610" y="-122.3" font-family="arial" font-size="14.00">Dupont 2.54mm</text>
<polygon fill="none" stroke="black" points="712,-114.5 712,-137.5 762,-137.5 762,-114.5 712,-114.5"/>
<text text-anchor="start" x="716" y="-122.3" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="762,-114.5 762,-137.5 801,-137.5 801,-114.5 762,-114.5"/>
<text text-anchor="start" x="766" y="-122.3" font-family="arial" font-size="14.00">5&#45;pin</text>
<polygon fill="none" stroke="black" points="801,-114.5 801,-137.5 828,-137.5 828,-114.5 801,-114.5"/>
<text text-anchor="start" x="805" y="-122.3" font-family="arial" font-size="14.00">BK</text>
<polygon fill="#000000" stroke="none" points="828,-114.5 828,-137.5 836,-137.5 836,-114.5 828,-114.5"/>
<polygon fill="none" stroke="black" points="828,-114.5 828,-137.5 836,-137.5 836,-114.5 828,-114.5"/>
<polygon fill="none" stroke="black" points="606,-91.5 606,-114.5 836,-114.5 836,-91.5 606,-91.5"/>
<text text-anchor="start" x="717" y="-99.3" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="606,-68.5 606,-91.5 836,-91.5 836,-68.5 606,-68.5"/>
<text text-anchor="start" x="717" y="-76.3" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="606,-45.5 606,-68.5 836,-68.5 836,-45.5 606,-45.5"/>
<text text-anchor="start" x="717" y="-53.3" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="606,-22.5 606,-45.5 836,-45.5 836,-22.5 606,-22.5"/>
<text text-anchor="start" x="717" y="-30.3" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="606,0.5 606,-22.5 836,-22.5 836,0.5 606,0.5"/>
<text text-anchor="start" x="717" y="-7.3" font-family="arial" font-size="14.00">5</text>
<polygon fill="#ffffff" stroke="black" points="826.25,-166.25 599.5,-166.25 599.5,0 826.25,0 826.25,-166.25"/>
<polygon fill="none" stroke="black" points="599.5,-142.5 599.5,-166.25 826.25,-166.25 826.25,-142.5 599.5,-142.5"/>
<text text-anchor="start" x="704.62" y="-148.95" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="599.5,-118.75 599.5,-142.5 705,-142.5 705,-118.75 599.5,-118.75"/>
<text text-anchor="start" x="603.5" y="-125.2" font-family="arial" font-size="14.00">Dupont 2.54mm</text>
<polygon fill="none" stroke="black" points="705,-118.75 705,-142.5 754.25,-142.5 754.25,-118.75 705,-118.75"/>
<text text-anchor="start" x="709" y="-125.2" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="754.25,-118.75 754.25,-142.5 792.25,-142.5 792.25,-118.75 754.25,-118.75"/>
<text text-anchor="start" x="758.25" y="-125.2" font-family="arial" font-size="14.00">5&#45;pin</text>
<polygon fill="none" stroke="black" points="792.25,-118.75 792.25,-142.5 818.25,-142.5 818.25,-118.75 792.25,-118.75"/>
<text text-anchor="start" x="796.25" y="-125.2" font-family="arial" font-size="14.00">BK</text>
<polygon fill="#000000" stroke="none" points="818.25,-118.75 818.25,-142.5 826.25,-142.5 826.25,-118.75 818.25,-118.75"/>
<polygon fill="none" stroke="black" points="818.25,-118.75 818.25,-142.5 826.25,-142.5 826.25,-118.75 818.25,-118.75"/>
<polygon fill="none" stroke="black" points="599.5,-95 599.5,-118.75 826.25,-118.75 826.25,-95 599.5,-95"/>
<text text-anchor="start" x="709.12" y="-101.45" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="599.5,-71.25 599.5,-95 826.25,-95 826.25,-71.25 599.5,-71.25"/>
<text text-anchor="start" x="709.12" y="-77.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="599.5,-47.5 599.5,-71.25 826.25,-71.25 826.25,-47.5 599.5,-47.5"/>
<text text-anchor="start" x="709.12" y="-53.95" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="599.5,-23.75 599.5,-47.5 826.25,-47.5 826.25,-23.75 599.5,-23.75"/>
<text text-anchor="start" x="709.12" y="-30.2" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="599.5,0 599.5,-23.75 826.25,-23.75 826.25,0 599.5,0"/>
<text text-anchor="start" x="709.12" y="-6.45" font-family="arial" font-size="14.00">5</text>
</g>
<!-- X1&#45;&#45;X2 -->
<g id="edge9" class="edge">
<title>X1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M462,-79.5C522,-79.5 539.81,-79.5 594.54,-79.5"/>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M462,-81.5C522,-81.5 539.81,-81.5 594.54,-81.5"/>
<polygon fill="#000000" stroke="#000000" points="594.49,-84 604.49,-80.5 594.49,-77 594.49,-84"/>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M455.5,-82.13C515.5,-82.12 533.31,-82.12 588.04,-82.13"/>
<path fill="none" stroke="#000000" stroke-dasharray="5,2" d="M455.5,-84.12C515.5,-84.12 533.31,-84.12 588.04,-84.12"/>
<polygon fill="#000000" stroke="#000000" points="587.99,-86.63 597.99,-83.13 587.99,-79.63 587.99,-86.63"/>
</g>
<!-- W2 -->
<g id="node4" class="node">
<title>W2</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1075,-192.5 980,-192.5 980,-8.5 1075,-8.5 1075,-192.5"/>
<polygon fill="none" stroke="black" points="980.5,-169.5 980.5,-192.5 1075.5,-192.5 1075.5,-169.5 980.5,-169.5"/>
<text text-anchor="start" x="1017" y="-177.3" font-family="arial" font-size="14.00">W2</text>
<polygon fill="none" stroke="black" points="980.5,-146.5 980.5,-169.5 1018.5,-169.5 1018.5,-146.5 980.5,-146.5"/>
<text text-anchor="start" x="992" y="-154.3" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="1018.5,-146.5 1018.5,-169.5 1075.5,-169.5 1075.5,-146.5 1018.5,-146.5"/>
<text text-anchor="start" x="1029.5" y="-154.3" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="994.5" y="-133.3" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="982.5" y="-114.3" font-family="arial" font-size="14.00">X2:1</text>
<text text-anchor="start" x="1015" y="-114.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="980.5,-106.5 980.5,-108.5 1075.5,-108.5 1075.5,-106.5 980.5,-106.5"/>
<polygon fill="#ff0000" stroke="none" points="980.5,-104.5 980.5,-106.5 1075.5,-106.5 1075.5,-104.5 980.5,-104.5"/>
<polygon fill="#000000" stroke="none" points="980.5,-102.5 980.5,-104.5 1075.5,-104.5 1075.5,-102.5 980.5,-102.5"/>
<text text-anchor="start" x="982.5" y="-89.3" font-family="arial" font-size="14.00">X2:2</text>
<text text-anchor="start" x="1016" y="-89.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="980.5,-81.5 980.5,-83.5 1075.5,-83.5 1075.5,-81.5 980.5,-81.5"/>
<polygon fill="#000000" stroke="none" points="980.5,-79.5 980.5,-81.5 1075.5,-81.5 1075.5,-79.5 980.5,-79.5"/>
<polygon fill="#000000" stroke="none" points="980.5,-77.5 980.5,-79.5 1075.5,-79.5 1075.5,-77.5 980.5,-77.5"/>
<text text-anchor="start" x="982.5" y="-64.3" font-family="arial" font-size="14.00">X2:3</text>
<text text-anchor="start" x="1015.5" y="-64.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="980.5,-56.5 980.5,-58.5 1075.5,-58.5 1075.5,-56.5 980.5,-56.5"/>
<polygon fill="#0066ff" stroke="none" points="980.5,-54.5 980.5,-56.5 1075.5,-56.5 1075.5,-54.5 980.5,-54.5"/>
<polygon fill="#000000" stroke="none" points="980.5,-52.5 980.5,-54.5 1075.5,-54.5 1075.5,-52.5 980.5,-52.5"/>
<text text-anchor="start" x="982.5" y="-39.3" font-family="arial" font-size="14.00">X2:4</text>
<text text-anchor="start" x="1014.5" y="-39.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="980.5,-31.5 980.5,-33.5 1075.5,-33.5 1075.5,-31.5 980.5,-31.5"/>
<polygon fill="#00ff00" stroke="none" points="980.5,-29.5 980.5,-31.5 1075.5,-31.5 1075.5,-29.5 980.5,-29.5"/>
<polygon fill="#000000" stroke="none" points="980.5,-27.5 980.5,-29.5 1075.5,-29.5 1075.5,-27.5 980.5,-27.5"/>
<text text-anchor="start" x="994.5" y="-14.3" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1063.25,-196.88 970.25,-196.88 970.25,-11.38 1063.25,-11.38 1063.25,-196.88"/>
<polygon fill="none" stroke="black" points="970.25,-173.12 970.25,-196.88 1063.25,-196.88 1063.25,-173.12 970.25,-173.12"/>
<text text-anchor="start" x="1006.25" y="-179.57" font-family="arial" font-size="14.00">W2</text>
<polygon fill="none" stroke="black" points="970.25,-149.38 970.25,-173.12 1006.62,-173.12 1006.62,-149.38 970.25,-149.38"/>
<text text-anchor="start" x="981.31" y="-155.82" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="1006.62,-149.38 1006.62,-173.12 1063.25,-173.12 1063.25,-149.38 1006.62,-149.38"/>
<text text-anchor="start" x="1017.69" y="-155.82" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="983.88" y="-134.07" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="971.88" y="-115.08" font-family="arial" font-size="14.00">X2:1</text>
<text text-anchor="start" x="1003.62" y="-115.08" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="970.25,-109.38 970.25,-111.38 1063.25,-111.38 1063.25,-109.38 970.25,-109.38"/>
<polygon fill="#ff0000" stroke="none" points="970.25,-107.38 970.25,-109.38 1063.25,-109.38 1063.25,-107.38 970.25,-107.38"/>
<polygon fill="#000000" stroke="none" points="970.25,-105.38 970.25,-107.38 1063.25,-107.38 1063.25,-105.38 970.25,-105.38"/>
<text text-anchor="start" x="971.88" y="-90.08" font-family="arial" font-size="14.00">X2:2</text>
<text text-anchor="start" x="1004.38" y="-90.08" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="970.25,-84.38 970.25,-86.38 1063.25,-86.38 1063.25,-84.38 970.25,-84.38"/>
<polygon fill="#000000" stroke="none" points="970.25,-82.38 970.25,-84.38 1063.25,-84.38 1063.25,-82.38 970.25,-82.38"/>
<polygon fill="#000000" stroke="none" points="970.25,-80.38 970.25,-82.38 1063.25,-82.38 1063.25,-80.38 970.25,-80.38"/>
<text text-anchor="start" x="971.88" y="-65.08" font-family="arial" font-size="14.00">X2:3</text>
<text text-anchor="start" x="1004" y="-65.08" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="970.25,-59.38 970.25,-61.38 1063.25,-61.38 1063.25,-59.38 970.25,-59.38"/>
<polygon fill="#0066ff" stroke="none" points="970.25,-57.38 970.25,-59.38 1063.25,-59.38 1063.25,-57.38 970.25,-57.38"/>
<polygon fill="#000000" stroke="none" points="970.25,-55.38 970.25,-57.38 1063.25,-57.38 1063.25,-55.38 970.25,-55.38"/>
<text text-anchor="start" x="971.88" y="-40.08" font-family="arial" font-size="14.00">X2:4</text>
<text text-anchor="start" x="1002.88" y="-40.08" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="970.25,-34.38 970.25,-36.38 1063.25,-36.38 1063.25,-34.38 970.25,-34.38"/>
<polygon fill="#00ff00" stroke="none" points="970.25,-32.38 970.25,-34.38 1063.25,-34.38 1063.25,-32.38 970.25,-32.38"/>
<polygon fill="#000000" stroke="none" points="970.25,-30.38 970.25,-32.38 1063.25,-32.38 1063.25,-30.38 970.25,-30.38"/>
<text text-anchor="start" x="983.88" y="-15.07" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X2&#45;&#45;W2 -->
<g id="edge5" class="edge">
<title>X2:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M836,-101.5C900.25,-101.52 916.24,-103.52 980,-103.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M836,-103.5C900.01,-103.5 915.99,-105.5 980,-105.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M836,-105.5C899.76,-105.48 915.75,-107.48 980,-107.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M826.25,-105.13C890.38,-105.13 906.37,-106.13 970.25,-106.13"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M826.25,-107.12C890.25,-107.12 906.25,-108.12 970.25,-108.12"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M826.25,-109.12C890.13,-109.12 906.12,-110.12 970.25,-110.12"/>
</g>
<!-- X2&#45;&#45;W2 -->
<g id="edge6" class="edge">
<title>X2:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M836,-77.5C900.13,-77.5 916.12,-78.5 980,-78.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M836,-79.5C900,-79.5 916,-80.5 980,-80.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M836,-81.5C899.88,-81.5 915.87,-82.5 980,-82.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M826.25,-81.13C890.25,-81.12 906.25,-81.12 970.25,-81.13"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M826.25,-83.12C890.25,-83.12 906.25,-83.12 970.25,-83.12"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M826.25,-85.12C890.25,-85.12 906.25,-85.12 970.25,-85.12"/>
</g>
<!-- X2&#45;&#45;W2 -->
<g id="edge7" class="edge">
<title>X2:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M836,-54.5C899.88,-54.5 915.87,-53.5 980,-53.5"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M836,-56.5C900,-56.5 916,-55.5 980,-55.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M836,-58.5C900.13,-58.5 916.12,-57.5 980,-57.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M826.25,-57.13C890.13,-57.13 906.12,-56.13 970.25,-56.13"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M826.25,-59.12C890.25,-59.13 906.25,-58.13 970.25,-58.12"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M826.25,-61.12C890.38,-61.12 906.37,-60.12 970.25,-60.12"/>
</g>
<!-- X2&#45;&#45;W2 -->
<g id="edge8" class="edge">
<title>X2:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M836,-31.5C899.64,-31.53 915.62,-28.53 980,-28.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M836,-33.5C900.01,-33.5 915.99,-30.5 980,-30.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M836,-35.5C900.38,-35.47 916.36,-32.47 980,-32.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M826.25,-33.13C890.01,-33.14 906,-31.14 970.25,-31.13"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M826.25,-35.12C890.26,-35.12 906.24,-33.12 970.25,-33.12"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M826.25,-37.12C890.5,-37.11 906.49,-35.11 970.25,-35.12"/>
</g>
<!-- W1 -->
<g id="node3" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="99,-192.5 0,-192.5 0,-8.5 99,-8.5 99,-192.5"/>
<polygon fill="none" stroke="black" points="0.5,-169.5 0.5,-192.5 99.5,-192.5 99.5,-169.5 0.5,-169.5"/>
<text text-anchor="start" x="39" y="-177.3" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="0.5,-146.5 0.5,-169.5 40.5,-169.5 40.5,-146.5 0.5,-146.5"/>
<text text-anchor="start" x="13" y="-154.3" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="40.5,-146.5 40.5,-169.5 99.5,-169.5 99.5,-146.5 40.5,-146.5"/>
<text text-anchor="start" x="52.5" y="-154.3" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="2.5" y="-133.3" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="11" y="-114.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="69.5" y="-114.3" font-family="arial" font-size="14.00">X1:1</text>
<polygon fill="#000000" stroke="none" points="0.5,-106.5 0.5,-108.5 99.5,-108.5 99.5,-106.5 0.5,-106.5"/>
<polygon fill="#ff0000" stroke="none" points="0.5,-104.5 0.5,-106.5 99.5,-106.5 99.5,-104.5 0.5,-104.5"/>
<polygon fill="#000000" stroke="none" points="0.5,-102.5 0.5,-104.5 99.5,-104.5 99.5,-102.5 0.5,-102.5"/>
<text text-anchor="start" x="12" y="-89.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="69.5" y="-89.3" font-family="arial" font-size="14.00">X1:2</text>
<polygon fill="#000000" stroke="none" points="0.5,-81.5 0.5,-83.5 99.5,-83.5 99.5,-81.5 0.5,-81.5"/>
<polygon fill="#000000" stroke="none" points="0.5,-79.5 0.5,-81.5 99.5,-81.5 99.5,-79.5 0.5,-79.5"/>
<polygon fill="#000000" stroke="none" points="0.5,-77.5 0.5,-79.5 99.5,-79.5 99.5,-77.5 0.5,-77.5"/>
<text text-anchor="start" x="11.5" y="-64.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
<text text-anchor="start" x="69.5" y="-64.3" font-family="arial" font-size="14.00">X1:3</text>
<polygon fill="#000000" stroke="none" points="0.5,-56.5 0.5,-58.5 99.5,-58.5 99.5,-56.5 0.5,-56.5"/>
<polygon fill="#0066ff" stroke="none" points="0.5,-54.5 0.5,-56.5 99.5,-56.5 99.5,-54.5 0.5,-54.5"/>
<polygon fill="#000000" stroke="none" points="0.5,-52.5 0.5,-54.5 99.5,-54.5 99.5,-52.5 0.5,-52.5"/>
<text text-anchor="start" x="10.5" y="-39.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="69.5" y="-39.3" font-family="arial" font-size="14.00">X1:4</text>
<polygon fill="#000000" stroke="none" points="0.5,-31.5 0.5,-33.5 99.5,-33.5 99.5,-31.5 0.5,-31.5"/>
<polygon fill="#00ff00" stroke="none" points="0.5,-29.5 0.5,-31.5 99.5,-31.5 99.5,-29.5 0.5,-29.5"/>
<polygon fill="#000000" stroke="none" points="0.5,-27.5 0.5,-29.5 99.5,-29.5 99.5,-27.5 0.5,-27.5"/>
<text text-anchor="start" x="2.5" y="-14.3" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="96,-196.88 0,-196.88 0,-11.38 96,-11.38 96,-196.88"/>
<polygon fill="none" stroke="black" points="0,-173.12 0,-196.88 96,-196.88 96,-173.12 0,-173.12"/>
<text text-anchor="start" x="37.5" y="-179.57" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="0,-149.38 0,-173.12 37.88,-173.12 37.88,-149.38 0,-149.38"/>
<text text-anchor="start" x="11.81" y="-155.82" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="37.88,-149.38 37.88,-173.12 96,-173.12 96,-149.38 37.88,-149.38"/>
<text text-anchor="start" x="49.69" y="-155.82" font-family="arial" font-size="14.00">0.2 m</text>
<text text-anchor="start" x="1.62" y="-134.07" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="9.38" y="-115.08" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="66.62" y="-115.08" font-family="arial" font-size="14.00">X1:1</text>
<polygon fill="#000000" stroke="none" points="0,-109.38 0,-111.38 96,-111.38 96,-109.38 0,-109.38"/>
<polygon fill="#ff0000" stroke="none" points="0,-107.38 0,-109.38 96,-109.38 96,-107.38 0,-107.38"/>
<polygon fill="#000000" stroke="none" points="0,-105.38 0,-107.38 96,-107.38 96,-105.38 0,-105.38"/>
<text text-anchor="start" x="10.12" y="-90.08" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="66.62" y="-90.08" font-family="arial" font-size="14.00">X1:2</text>
<polygon fill="#000000" stroke="none" points="0,-84.38 0,-86.38 96,-86.38 96,-84.38 0,-84.38"/>
<polygon fill="#000000" stroke="none" points="0,-82.38 0,-84.38 96,-84.38 96,-82.38 0,-82.38"/>
<polygon fill="#000000" stroke="none" points="0,-80.38 0,-82.38 96,-82.38 96,-80.38 0,-80.38"/>
<text text-anchor="start" x="9.75" y="-65.08" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BU &#160;&#160;&#160;</text>
<text text-anchor="start" x="66.62" y="-65.08" font-family="arial" font-size="14.00">X1:3</text>
<polygon fill="#000000" stroke="none" points="0,-59.38 0,-61.38 96,-61.38 96,-59.38 0,-59.38"/>
<polygon fill="#0066ff" stroke="none" points="0,-57.38 0,-59.38 96,-59.38 96,-57.38 0,-57.38"/>
<polygon fill="#000000" stroke="none" points="0,-55.38 0,-57.38 96,-57.38 96,-55.38 0,-55.38"/>
<text text-anchor="start" x="8.62" y="-40.08" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="66.62" y="-40.08" font-family="arial" font-size="14.00">X1:4</text>
<polygon fill="#000000" stroke="none" points="0,-34.38 0,-36.38 96,-36.38 96,-34.38 0,-34.38"/>
<polygon fill="#00ff00" stroke="none" points="0,-32.38 0,-34.38 96,-34.38 96,-32.38 0,-32.38"/>
<polygon fill="#000000" stroke="none" points="0,-30.38 0,-32.38 96,-32.38 96,-30.38 0,-30.38"/>
<text text-anchor="start" x="1.62" y="-15.07" font-family="arial" font-size="14.00"> </text>
</g>
<!-- W1&#45;&#45;X1 -->
<g id="edge1" class="edge">
<title>W1:e&#45;&#45;X1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M99,-103.5C162.76,-103.52 178.75,-101.52 243,-101.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M99,-105.5C163.01,-105.5 178.99,-103.5 243,-103.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M99,-107.5C163.25,-107.48 179.24,-105.48 243,-105.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M96,-106.13C159.88,-106.13 175.87,-105.13 240,-105.13"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M96,-108.12C160,-108.12 176,-107.12 240,-107.12"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M96,-110.12C160.13,-110.12 176.12,-109.12 240,-109.12"/>
</g>
<!-- W1&#45;&#45;X1 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;X1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M99,-78.5C162.88,-78.5 178.87,-77.5 243,-77.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M99,-80.5C163,-80.5 179,-79.5 243,-79.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M99,-82.5C163.13,-82.5 179.12,-81.5 243,-81.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M96,-81.13C160,-81.12 176,-81.12 240,-81.13"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M96,-83.12C160,-83.12 176,-83.12 240,-83.12"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M96,-85.12C160,-85.12 176,-85.12 240,-85.12"/>
</g>
<!-- W1&#45;&#45;X1 -->
<g id="edge3" class="edge">
<title>W1:e&#45;&#45;X1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M99,-53.5C163.13,-53.5 179.12,-54.5 243,-54.5"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M99,-55.5C163,-55.5 179,-56.5 243,-56.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M99,-57.5C162.88,-57.5 178.87,-58.5 243,-58.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M96,-56.13C160.13,-56.13 176.12,-57.13 240,-57.13"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M96,-58.12C160,-58.13 176,-59.13 240,-59.12"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M96,-60.12C159.88,-60.12 175.87,-61.12 240,-61.12"/>
</g>
<!-- W1&#45;&#45;X1 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;X1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M99,-28.5C163.38,-28.53 179.36,-31.53 243,-31.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M99,-30.5C163.01,-30.5 178.99,-33.5 243,-33.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M99,-32.5C162.64,-32.47 178.62,-35.47 243,-35.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M96,-31.13C160.25,-31.14 176.24,-33.14 240,-33.13"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M96,-33.12C160.01,-33.12 175.99,-35.12 240,-35.12"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M96,-35.12C159.76,-35.11 175.75,-37.11 240,-37.12"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 16 KiB

466
examples/ex13.html generated
View File

@ -30,376 +30,376 @@
<div id="diagram">
<!-- XML and DOCTYPE declarations from SVG file removed -->
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="959pt" height="400pt"
viewBox="0.00 0.00 959.00 400.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 396)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-396 955,-396 955,4 -4,4"/>
<svg width="951pt" height="404pt"
viewBox="0.00 0.00 951.25 403.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 399.5)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-399.5 947.25,-399.5 947.25,4 -4,4"/>
<!-- X1 -->
<g id="node1" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="39,-256 0,-256 0,-118 39,-118 39,-256"/>
<polygon fill="none" stroke="black" points="0.5,-233 0.5,-256 39.5,-256 39.5,-233 0.5,-233"/>
<text text-anchor="start" x="11.5" y="-240.8" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0.5,-210 0.5,-233 39.5,-233 39.5,-210 0.5,-210"/>
<text text-anchor="start" x="4.5" y="-217.8" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="0.5,-187 0.5,-210 21.5,-210 21.5,-187 0.5,-187"/>
<text text-anchor="start" x="6" y="-194.8" font-family="arial" font-size="14.00">A</text>
<polygon fill="none" stroke="black" points="21.5,-187 21.5,-210 39.5,-210 39.5,-187 21.5,-187"/>
<text text-anchor="start" x="26.5" y="-194.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0.5,-164 0.5,-187 21.5,-187 21.5,-164 0.5,-164"/>
<text text-anchor="start" x="6" y="-171.8" font-family="arial" font-size="14.00">B</text>
<polygon fill="none" stroke="black" points="21.5,-164 21.5,-187 39.5,-187 39.5,-164 21.5,-164"/>
<text text-anchor="start" x="26.5" y="-171.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0.5,-141 0.5,-164 21.5,-164 21.5,-141 0.5,-141"/>
<text text-anchor="start" x="6" y="-148.8" font-family="arial" font-size="14.00">C</text>
<polygon fill="none" stroke="black" points="21.5,-141 21.5,-164 39.5,-164 39.5,-141 21.5,-141"/>
<text text-anchor="start" x="26.5" y="-148.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0.5,-118 0.5,-141 21.5,-141 21.5,-118 0.5,-118"/>
<text text-anchor="start" x="6" y="-125.8" font-family="arial" font-size="14.00">D</text>
<polygon fill="none" stroke="black" points="21.5,-118 21.5,-141 39.5,-141 39.5,-118 21.5,-118"/>
<text text-anchor="start" x="26.5" y="-125.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="#ffffff" stroke="black" points="38,-256.5 0,-256.5 0,-117 38,-117 38,-256.5"/>
<polygon fill="none" stroke="black" points="0,-232.75 0,-256.5 38,-256.5 38,-232.75 0,-232.75"/>
<text text-anchor="start" x="10.75" y="-239.2" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-209 0,-232.75 38,-232.75 38,-209 0,-209"/>
<text text-anchor="start" x="4" y="-215.45" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-186 0,-209 20,-209 20,-186 0,-186"/>
<text text-anchor="start" x="5.5" y="-191.7" font-family="arial" font-size="14.00">A</text>
<polygon fill="none" stroke="black" points="20,-186 20,-209 38,-209 38,-186 20,-186"/>
<text text-anchor="start" x="25.25" y="-191.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-163 0,-186 20,-186 20,-163 0,-163"/>
<text text-anchor="start" x="5.5" y="-168.7" font-family="arial" font-size="14.00">B</text>
<polygon fill="none" stroke="black" points="20,-163 20,-186 38,-186 38,-163 20,-163"/>
<text text-anchor="start" x="25.25" y="-168.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0,-140 0,-163 20,-163 20,-140 0,-140"/>
<text text-anchor="start" x="5.12" y="-145.7" font-family="arial" font-size="14.00">C</text>
<polygon fill="none" stroke="black" points="20,-140 20,-163 38,-163 38,-140 20,-140"/>
<text text-anchor="start" x="25.25" y="-145.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-117 0,-140 20,-140 20,-117 0,-117"/>
<text text-anchor="start" x="5.12" y="-122.7" font-family="arial" font-size="14.00">D</text>
<polygon fill="none" stroke="black" points="20,-117 20,-140 38,-140 38,-117 20,-117"/>
<text text-anchor="start" x="25.25" y="-122.7" font-family="arial" font-size="14.00">4</text>
</g>
<!-- C1 -->
<g id="node8" class="node">
<title>C1</title>
<polygon fill="#ffffff" stroke="black" points="306,-288 183,-288 183,-104 306,-104 306,-288"/>
<polygon fill="none" stroke="black" points="183.5,-265 183.5,-288 306.5,-288 306.5,-265 183.5,-265"/>
<text text-anchor="start" x="236" y="-272.8" font-family="arial" font-size="14.00">C1</text>
<polygon fill="none" stroke="black" points="183.5,-242 183.5,-265 306.5,-265 306.5,-242 183.5,-242"/>
<text text-anchor="start" x="237.5" y="-249.8" font-family="arial" font-size="14.00">4x</text>
<text text-anchor="start" x="204.5" y="-228.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="186" y="-209.8" font-family="arial" font-size="14.00">X1:1:A</text>
<text text-anchor="start" x="231.5" y="-209.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:WH &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="183.5,-202 183.5,-204 306.5,-204 306.5,-202 183.5,-202"/>
<polygon fill="#ffffff" stroke="none" points="183.5,-200 183.5,-202 306.5,-202 306.5,-200 183.5,-200"/>
<polygon fill="#000000" stroke="none" points="183.5,-198 183.5,-200 306.5,-200 306.5,-198 183.5,-198"/>
<text text-anchor="start" x="186" y="-184.8" font-family="arial" font-size="14.00">X1:2:B</text>
<text text-anchor="start" x="234" y="-184.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:BN &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="183.5,-177 183.5,-179 306.5,-179 306.5,-177 183.5,-177"/>
<polygon fill="#895956" stroke="none" points="183.5,-175 183.5,-177 306.5,-177 306.5,-175 183.5,-175"/>
<polygon fill="#000000" stroke="none" points="183.5,-173 183.5,-175 306.5,-175 306.5,-173 183.5,-173"/>
<text text-anchor="start" x="185.5" y="-159.8" font-family="arial" font-size="14.00">X1:3:C</text>
<text text-anchor="start" x="232.5" y="-159.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:GN &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="183.5,-152 183.5,-154 306.5,-154 306.5,-152 183.5,-152"/>
<polygon fill="#00ff00" stroke="none" points="183.5,-150 183.5,-152 306.5,-152 306.5,-150 183.5,-150"/>
<polygon fill="#000000" stroke="none" points="183.5,-148 183.5,-150 306.5,-150 306.5,-148 183.5,-148"/>
<text text-anchor="start" x="185.5" y="-134.8" font-family="arial" font-size="14.00">X1:4:D</text>
<text text-anchor="start" x="234" y="-134.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="183.5,-127 183.5,-129 306.5,-129 306.5,-127 183.5,-127"/>
<polygon fill="#ffff00" stroke="none" points="183.5,-125 183.5,-127 306.5,-127 306.5,-125 183.5,-125"/>
<polygon fill="#000000" stroke="none" points="183.5,-123 183.5,-125 306.5,-125 306.5,-123 183.5,-123"/>
<text text-anchor="start" x="204.5" y="-109.8" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" points="303,-289.5 182,-289.5 182,-104 303,-104 303,-289.5"/>
<polygon fill="none" stroke="black" points="182,-265.75 182,-289.5 303,-289.5 303,-265.75 182,-265.75"/>
<text text-anchor="start" x="233.88" y="-272.2" font-family="arial" font-size="14.00">C1</text>
<polygon fill="none" stroke="black" points="182,-242 182,-265.75 303,-265.75 303,-242 182,-242"/>
<text text-anchor="start" x="235.38" y="-248.45" font-family="arial" font-size="14.00">4x</text>
<text text-anchor="start" x="202.62" y="-226.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="184.25" y="-207.7" font-family="arial" font-size="14.00">X1:1:A</text>
<text text-anchor="start" x="228.88" y="-207.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:WH &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="182,-202 182,-204 303,-204 303,-202 182,-202"/>
<polygon fill="#ffffff" stroke="none" points="182,-200 182,-202 303,-202 303,-200 182,-200"/>
<polygon fill="#000000" stroke="none" points="182,-198 182,-200 303,-200 303,-198 182,-198"/>
<text text-anchor="start" x="184.25" y="-182.7" font-family="arial" font-size="14.00">X1:2:B</text>
<text text-anchor="start" x="231.12" y="-182.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:BN &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="182,-177 182,-179 303,-179 303,-177 182,-177"/>
<polygon fill="#895956" stroke="none" points="182,-175 182,-177 303,-177 303,-175 182,-175"/>
<polygon fill="#000000" stroke="none" points="182,-173 182,-175 303,-175 303,-173 182,-173"/>
<text text-anchor="start" x="183.88" y="-157.7" font-family="arial" font-size="14.00">X1:3:C</text>
<text text-anchor="start" x="230" y="-157.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:GN &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="182,-152 182,-154 303,-154 303,-152 182,-152"/>
<polygon fill="#00ff00" stroke="none" points="182,-150 182,-152 303,-152 303,-150 182,-150"/>
<polygon fill="#000000" stroke="none" points="182,-148 182,-150 303,-150 303,-148 182,-148"/>
<text text-anchor="start" x="183.88" y="-132.7" font-family="arial" font-size="14.00">X1:4:D</text>
<text text-anchor="start" x="231.5" y="-132.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="182,-127 182,-129 303,-129 303,-127 182,-127"/>
<polygon fill="#ffff00" stroke="none" points="182,-125 182,-127 303,-127 303,-125 182,-125"/>
<polygon fill="#000000" stroke="none" points="182,-123 182,-125 303,-125 303,-123 182,-123"/>
<text text-anchor="start" x="202.62" y="-107.7" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X1&#45;&#45;C1 -->
<g id="edge1" class="edge">
<title>X1:e&#45;&#45;C1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-197C103.25,-197.02 119.24,-199.02 183,-199"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M39,-199C103.01,-199 118.99,-201 183,-201"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-201C102.76,-200.98 118.75,-202.98 183,-203"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M38,-195.75C102.38,-195.78 118.36,-198.78 182,-198.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M38,-197.75C102.01,-197.75 117.99,-200.75 182,-200.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M38,-199.75C101.64,-199.72 117.62,-202.72 182,-202.75"/>
</g>
<!-- X1&#45;&#45;C1 -->
<g id="edge3" class="edge">
<title>X1:e&#45;&#45;C1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-173C103.13,-173 119.12,-174 183,-174"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M39,-175C103,-175 119,-176 183,-176"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-177C102.88,-177 118.87,-178 183,-178"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M38,-172.75C102.13,-172.75 118.12,-173.75 182,-173.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M38,-174.75C102,-174.75 118,-175.75 182,-175.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M38,-176.75C101.88,-176.75 117.87,-177.75 182,-177.75"/>
</g>
<!-- X1&#45;&#45;C1 -->
<g id="edge5" class="edge">
<title>X1:e&#45;&#45;C1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-150C102.88,-150 118.87,-149 183,-149"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M39,-152C103,-152 119,-151 183,-151"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-154C103.13,-154 119.12,-153 183,-153"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M38,-149.75C101.88,-149.75 117.87,-148.75 182,-148.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M38,-151.75C102,-151.75 118,-150.75 182,-150.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M38,-153.75C102.13,-153.75 118.12,-152.75 182,-152.75"/>
</g>
<!-- X1&#45;&#45;C1 -->
<g id="edge7" class="edge">
<title>X1:e&#45;&#45;C1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-127C102.64,-127.03 118.62,-124.03 183,-124"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M39,-129C103.01,-129 118.99,-126 183,-126"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-131C103.38,-130.97 119.36,-127.97 183,-128"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M38,-126.75C101.64,-126.78 117.62,-123.78 182,-123.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M38,-128.75C102.01,-128.75 117.99,-125.75 182,-125.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M38,-130.75C102.38,-130.72 118.36,-127.72 182,-127.75"/>
</g>
<!-- F1 -->
<g id="node2" class="node">
<title>F1</title>
<polygon fill="#ffffff" stroke="black" points="497,-245.5 450,-245.5 450,-222.5 497,-222.5 497,-245.5"/>
<polygon fill="none" stroke="black" points="450.5,-222 450.5,-245 497.5,-245 497.5,-222 450.5,-222"/>
<text text-anchor="start" x="454.5" y="-229.8" font-family="arial" font-size="14.00">ferrule</text>
<polygon fill="#ffffff" stroke="black" points="493.25,-247.62 447,-247.62 447,-223.88 493.25,-223.88 493.25,-247.62"/>
<polygon fill="none" stroke="black" points="447,-223.88 447,-247.62 493.25,-247.62 493.25,-223.88 447,-223.88"/>
<text text-anchor="start" x="451" y="-230.32" font-family="arial" font-size="14.00">ferrule</text>
</g>
<!-- C2 -->
<g id="node9" class="node">
<title>C2</title>
<polygon fill="#ffffff" stroke="black" points="768,-392 641,-392 641,-208 768,-208 768,-392"/>
<polygon fill="none" stroke="black" points="641.5,-369 641.5,-392 768.5,-392 768.5,-369 641.5,-369"/>
<text text-anchor="start" x="696" y="-376.8" font-family="arial" font-size="14.00">C2</text>
<polygon fill="none" stroke="black" points="641.5,-346 641.5,-369 768.5,-369 768.5,-346 641.5,-346"/>
<text text-anchor="start" x="697.5" y="-353.8" font-family="arial" font-size="14.00">4x</text>
<text text-anchor="start" x="643.5" y="-332.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="651.5" y="-313.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:WH &#160;&#160;&#160;</text>
<text text-anchor="start" x="725" y="-313.8" font-family="arial" font-size="14.00">X2:1:A</text>
<polygon fill="#000000" stroke="none" points="641.5,-306 641.5,-308 768.5,-308 768.5,-306 641.5,-306"/>
<polygon fill="#ffffff" stroke="none" points="641.5,-304 641.5,-306 768.5,-306 768.5,-304 641.5,-304"/>
<polygon fill="#000000" stroke="none" points="641.5,-302 641.5,-304 768.5,-304 768.5,-302 641.5,-302"/>
<text text-anchor="start" x="654" y="-288.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="725" y="-288.8" font-family="arial" font-size="14.00">X2:2:B</text>
<polygon fill="#000000" stroke="none" points="641.5,-281 641.5,-283 768.5,-283 768.5,-281 641.5,-281"/>
<polygon fill="#895956" stroke="none" points="641.5,-279 641.5,-281 768.5,-281 768.5,-279 641.5,-279"/>
<polygon fill="#000000" stroke="none" points="641.5,-277 641.5,-279 768.5,-279 768.5,-277 641.5,-277"/>
<text text-anchor="start" x="652.5" y="-263.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="724.5" y="-263.8" font-family="arial" font-size="14.00">X2:3:C</text>
<polygon fill="#000000" stroke="none" points="641.5,-256 641.5,-258 768.5,-258 768.5,-256 641.5,-256"/>
<polygon fill="#00ff00" stroke="none" points="641.5,-254 641.5,-256 768.5,-256 768.5,-254 641.5,-254"/>
<polygon fill="#000000" stroke="none" points="641.5,-252 641.5,-254 768.5,-254 768.5,-252 641.5,-252"/>
<text text-anchor="start" x="654" y="-238.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="724.5" y="-238.8" font-family="arial" font-size="14.00">X2:4:D</text>
<polygon fill="#000000" stroke="none" points="641.5,-231 641.5,-233 768.5,-233 768.5,-231 641.5,-231"/>
<polygon fill="#ffff00" stroke="none" points="641.5,-229 641.5,-231 768.5,-231 768.5,-229 641.5,-229"/>
<polygon fill="#000000" stroke="none" points="641.5,-227 641.5,-229 768.5,-229 768.5,-227 641.5,-227"/>
<text text-anchor="start" x="643.5" y="-213.8" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" points="761.25,-395.5 637.25,-395.5 637.25,-210 761.25,-210 761.25,-395.5"/>
<polygon fill="none" stroke="black" points="637.25,-371.75 637.25,-395.5 761.25,-395.5 761.25,-371.75 637.25,-371.75"/>
<text text-anchor="start" x="690.62" y="-378.2" font-family="arial" font-size="14.00">C2</text>
<polygon fill="none" stroke="black" points="637.25,-348 637.25,-371.75 761.25,-371.75 761.25,-348 637.25,-348"/>
<text text-anchor="start" x="692.12" y="-354.45" font-family="arial" font-size="14.00">4x</text>
<text text-anchor="start" x="638.88" y="-332.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="646.12" y="-313.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:WH &#160;&#160;&#160;</text>
<text text-anchor="start" x="718.5" y="-313.7" font-family="arial" font-size="14.00">X2:1:A</text>
<polygon fill="#000000" stroke="none" points="637.25,-308 637.25,-310 761.25,-310 761.25,-308 637.25,-308"/>
<polygon fill="#ffffff" stroke="none" points="637.25,-306 637.25,-308 761.25,-308 761.25,-306 637.25,-306"/>
<polygon fill="#000000" stroke="none" points="637.25,-304 637.25,-306 761.25,-306 761.25,-304 637.25,-304"/>
<text text-anchor="start" x="648.38" y="-288.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="718.5" y="-288.7" font-family="arial" font-size="14.00">X2:2:B</text>
<polygon fill="#000000" stroke="none" points="637.25,-283 637.25,-285 761.25,-285 761.25,-283 637.25,-283"/>
<polygon fill="#895956" stroke="none" points="637.25,-281 637.25,-283 761.25,-283 761.25,-281 637.25,-281"/>
<polygon fill="#000000" stroke="none" points="637.25,-279 637.25,-281 761.25,-281 761.25,-279 637.25,-279"/>
<text text-anchor="start" x="647.25" y="-263.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="718.12" y="-263.7" font-family="arial" font-size="14.00">X2:3:C</text>
<polygon fill="#000000" stroke="none" points="637.25,-258 637.25,-260 761.25,-260 761.25,-258 637.25,-258"/>
<polygon fill="#00ff00" stroke="none" points="637.25,-256 637.25,-258 761.25,-258 761.25,-256 637.25,-256"/>
<polygon fill="#000000" stroke="none" points="637.25,-254 637.25,-256 761.25,-256 761.25,-254 637.25,-254"/>
<text text-anchor="start" x="648.75" y="-238.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="718.12" y="-238.7" font-family="arial" font-size="14.00">X2:4:D</text>
<polygon fill="#000000" stroke="none" points="637.25,-233 637.25,-235 761.25,-235 761.25,-233 637.25,-233"/>
<polygon fill="#ffff00" stroke="none" points="637.25,-231 637.25,-233 761.25,-233 761.25,-231 637.25,-231"/>
<polygon fill="#000000" stroke="none" points="637.25,-229 637.25,-231 761.25,-231 761.25,-229 637.25,-229"/>
<text text-anchor="start" x="638.88" y="-213.7" font-family="arial" font-size="14.00"> </text>
</g>
<!-- F1&#45;&#45;C2 -->
<g id="edge9" class="edge">
<title>F1:e&#45;&#45;C2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-232C570.36,-233.96 571.64,-304.96 641,-303"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M497,-234C568.36,-234 569.64,-305 641,-305"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-236C566.36,-234.04 567.64,-305.04 641,-307"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M493.25,-233.75C566.61,-235.71 567.89,-306.71 637.25,-304.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M493.25,-235.75C564.61,-235.75 565.89,-306.75 637.25,-306.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M493.25,-237.75C562.61,-235.79 563.89,-306.79 637.25,-308.75"/>
</g>
<!-- C3 -->
<g id="node10" class="node">
<title>C3</title>
<polygon fill="#ffffff" stroke="black" points="768,-184 641,-184 641,0 768,0 768,-184"/>
<polygon fill="none" stroke="black" points="641.5,-161 641.5,-184 768.5,-184 768.5,-161 641.5,-161"/>
<text text-anchor="start" x="696" y="-168.8" font-family="arial" font-size="14.00">C3</text>
<polygon fill="none" stroke="black" points="641.5,-138 641.5,-161 768.5,-161 768.5,-138 641.5,-138"/>
<text text-anchor="start" x="697.5" y="-145.8" font-family="arial" font-size="14.00">4x</text>
<text text-anchor="start" x="643.5" y="-124.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="651.5" y="-105.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:WH &#160;&#160;&#160;</text>
<text text-anchor="start" x="725" y="-105.8" font-family="arial" font-size="14.00">X3:1:A</text>
<polygon fill="#000000" stroke="none" points="641.5,-98 641.5,-100 768.5,-100 768.5,-98 641.5,-98"/>
<polygon fill="#ffffff" stroke="none" points="641.5,-96 641.5,-98 768.5,-98 768.5,-96 641.5,-96"/>
<polygon fill="#000000" stroke="none" points="641.5,-94 641.5,-96 768.5,-96 768.5,-94 641.5,-94"/>
<text text-anchor="start" x="654" y="-80.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="725" y="-80.8" font-family="arial" font-size="14.00">X3:2:B</text>
<polygon fill="#000000" stroke="none" points="641.5,-73 641.5,-75 768.5,-75 768.5,-73 641.5,-73"/>
<polygon fill="#895956" stroke="none" points="641.5,-71 641.5,-73 768.5,-73 768.5,-71 641.5,-71"/>
<polygon fill="#000000" stroke="none" points="641.5,-69 641.5,-71 768.5,-71 768.5,-69 641.5,-69"/>
<text text-anchor="start" x="652.5" y="-55.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="724.5" y="-55.8" font-family="arial" font-size="14.00">X3:3:C</text>
<polygon fill="#000000" stroke="none" points="641.5,-48 641.5,-50 768.5,-50 768.5,-48 641.5,-48"/>
<polygon fill="#00ff00" stroke="none" points="641.5,-46 641.5,-48 768.5,-48 768.5,-46 641.5,-46"/>
<polygon fill="#000000" stroke="none" points="641.5,-44 641.5,-46 768.5,-46 768.5,-44 641.5,-44"/>
<text text-anchor="start" x="654" y="-30.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="724.5" y="-30.8" font-family="arial" font-size="14.00">X3:4:D</text>
<polygon fill="#000000" stroke="none" points="641.5,-23 641.5,-25 768.5,-25 768.5,-23 641.5,-23"/>
<polygon fill="#ffff00" stroke="none" points="641.5,-21 641.5,-23 768.5,-23 768.5,-21 641.5,-21"/>
<polygon fill="#000000" stroke="none" points="641.5,-19 641.5,-21 768.5,-21 768.5,-19 641.5,-19"/>
<text text-anchor="start" x="643.5" y="-5.8" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" points="761.25,-185.5 637.25,-185.5 637.25,0 761.25,0 761.25,-185.5"/>
<polygon fill="none" stroke="black" points="637.25,-161.75 637.25,-185.5 761.25,-185.5 761.25,-161.75 637.25,-161.75"/>
<text text-anchor="start" x="690.62" y="-168.2" font-family="arial" font-size="14.00">C3</text>
<polygon fill="none" stroke="black" points="637.25,-138 637.25,-161.75 761.25,-161.75 761.25,-138 637.25,-138"/>
<text text-anchor="start" x="692.12" y="-144.45" font-family="arial" font-size="14.00">4x</text>
<text text-anchor="start" x="638.88" y="-122.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="646.12" y="-103.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:WH &#160;&#160;&#160;</text>
<text text-anchor="start" x="718.5" y="-103.7" font-family="arial" font-size="14.00">X3:1:A</text>
<polygon fill="#000000" stroke="none" points="637.25,-98 637.25,-100 761.25,-100 761.25,-98 637.25,-98"/>
<polygon fill="#ffffff" stroke="none" points="637.25,-96 637.25,-98 761.25,-98 761.25,-96 637.25,-96"/>
<polygon fill="#000000" stroke="none" points="637.25,-94 637.25,-96 761.25,-96 761.25,-94 637.25,-94"/>
<text text-anchor="start" x="648.38" y="-78.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="718.5" y="-78.7" font-family="arial" font-size="14.00">X3:2:B</text>
<polygon fill="#000000" stroke="none" points="637.25,-73 637.25,-75 761.25,-75 761.25,-73 637.25,-73"/>
<polygon fill="#895956" stroke="none" points="637.25,-71 637.25,-73 761.25,-73 761.25,-71 637.25,-71"/>
<polygon fill="#000000" stroke="none" points="637.25,-69 637.25,-71 761.25,-71 761.25,-69 637.25,-69"/>
<text text-anchor="start" x="647.25" y="-53.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="718.12" y="-53.7" font-family="arial" font-size="14.00">X3:3:C</text>
<polygon fill="#000000" stroke="none" points="637.25,-48 637.25,-50 761.25,-50 761.25,-48 637.25,-48"/>
<polygon fill="#00ff00" stroke="none" points="637.25,-46 637.25,-48 761.25,-48 761.25,-46 637.25,-46"/>
<polygon fill="#000000" stroke="none" points="637.25,-44 637.25,-46 761.25,-46 761.25,-44 637.25,-44"/>
<text text-anchor="start" x="648.75" y="-28.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="718.12" y="-28.7" font-family="arial" font-size="14.00">X3:4:D</text>
<polygon fill="#000000" stroke="none" points="637.25,-23 637.25,-25 761.25,-25 761.25,-23 637.25,-23"/>
<polygon fill="#ffff00" stroke="none" points="637.25,-21 637.25,-23 761.25,-23 761.25,-21 637.25,-21"/>
<polygon fill="#000000" stroke="none" points="637.25,-19 637.25,-21 761.25,-21 761.25,-19 637.25,-19"/>
<text text-anchor="start" x="638.88" y="-3.7" font-family="arial" font-size="14.00"> </text>
</g>
<!-- F1&#45;&#45;C3 -->
<g id="edge17" class="edge">
<title>F1:e&#45;&#45;C3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-232C583.39,-234.46 550.72,-97.46 641,-95"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M497,-234C585.34,-234 552.66,-97 641,-97"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-236C587.28,-233.54 554.61,-96.54 641,-99"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M493.25,-233.75C580.26,-236.22 546.35,-97.22 637.25,-94.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M493.25,-235.75C582.2,-235.75 548.3,-96.75 637.25,-96.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M493.25,-237.75C584.15,-235.28 550.24,-96.28 637.25,-98.75"/>
</g>
<!-- F2 -->
<g id="node3" class="node">
<title>F2</title>
<polygon fill="#ffffff" stroke="black" points="497,-198.5 450,-198.5 450,-175.5 497,-175.5 497,-198.5"/>
<polygon fill="none" stroke="black" points="450.5,-175 450.5,-198 497.5,-198 497.5,-175 450.5,-175"/>
<text text-anchor="start" x="454.5" y="-182.8" font-family="arial" font-size="14.00">ferrule</text>
<polygon fill="#ffffff" stroke="black" points="493.25,-199.62 447,-199.62 447,-175.88 493.25,-175.88 493.25,-199.62"/>
<polygon fill="none" stroke="black" points="447,-175.88 447,-199.62 493.25,-199.62 493.25,-175.88 447,-175.88"/>
<text text-anchor="start" x="451" y="-182.32" font-family="arial" font-size="14.00">ferrule</text>
</g>
<!-- F2&#45;&#45;C2 -->
<g id="edge11" class="edge">
<title>F2:e&#45;&#45;C2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-185C575.18,-187.18 566.81,-280.18 641,-278"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M497,-187C573.19,-187 564.81,-280 641,-280"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-189C571.19,-186.82 562.82,-279.82 641,-282"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M493.25,-185.75C571.67,-187.94 562.81,-281.94 637.25,-279.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M493.25,-187.75C569.68,-187.75 560.82,-281.75 637.25,-281.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M493.25,-189.75C567.69,-187.56 558.83,-281.56 637.25,-283.75"/>
</g>
<!-- F2&#45;&#45;C3 -->
<g id="edge19" class="edge">
<title>F2:e&#45;&#45;C3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-185C576.93,-187.34 557.12,-72.34 641,-70"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M497,-187C578.9,-187 559.1,-72 641,-72"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-189C580.88,-186.66 561.07,-71.66 641,-74"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M493.25,-185.75C573.46,-188.1 553.1,-72.1 637.25,-69.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M493.25,-187.75C575.43,-187.75 555.07,-71.75 637.25,-71.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M493.25,-189.75C577.4,-187.4 557.04,-71.4 637.25,-73.75"/>
</g>
<!-- F3 -->
<g id="node4" class="node">
<title>F3</title>
<polygon fill="#ffffff" stroke="black" points="497,-151.5 450,-151.5 450,-128.5 497,-128.5 497,-151.5"/>
<polygon fill="none" stroke="black" points="450.5,-128 450.5,-151 497.5,-151 497.5,-128 450.5,-128"/>
<text text-anchor="start" x="454.5" y="-135.8" font-family="arial" font-size="14.00">ferrule</text>
<polygon fill="#ffffff" stroke="black" points="493.25,-151.62 447,-151.62 447,-127.88 493.25,-127.88 493.25,-151.62"/>
<polygon fill="none" stroke="black" points="447,-127.88 447,-151.62 493.25,-151.62 493.25,-127.88 447,-127.88"/>
<text text-anchor="start" x="451" y="-134.32" font-family="arial" font-size="14.00">ferrule</text>
</g>
<!-- F3&#45;&#45;C2 -->
<g id="edge13" class="edge">
<title>F3:e&#45;&#45;C2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-138C580.88,-140.34 561.07,-255.34 641,-253"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M497,-140C578.9,-140 559.1,-255 641,-255"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-142C576.93,-139.66 557.12,-254.66 641,-257"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M493.25,-137.75C577.68,-140.1 556.76,-257.1 637.25,-254.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M493.25,-139.75C575.71,-139.75 554.79,-256.75 637.25,-256.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M493.25,-141.75C573.74,-139.4 552.82,-256.4 637.25,-258.75"/>
</g>
<!-- F3&#45;&#45;C3 -->
<g id="edge21" class="edge">
<title>F3:e&#45;&#45;C3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-138C571.19,-140.18 562.82,-47.18 641,-45"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M497,-140C573.19,-140 564.81,-47 641,-47"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-142C575.18,-139.82 566.81,-46.82 641,-49"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M493.25,-137.75C567.44,-139.93 559.07,-46.93 637.25,-44.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M493.25,-139.75C569.44,-139.75 561.06,-46.75 637.25,-46.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M493.25,-141.75C571.43,-139.57 563.06,-46.57 637.25,-48.75"/>
</g>
<!-- F4 -->
<g id="node5" class="node">
<title>F4</title>
<polygon fill="#ffffff" stroke="black" points="497,-104.5 450,-104.5 450,-81.5 497,-81.5 497,-104.5"/>
<polygon fill="none" stroke="black" points="450.5,-81 450.5,-104 497.5,-104 497.5,-81 450.5,-81"/>
<text text-anchor="start" x="454.5" y="-88.8" font-family="arial" font-size="14.00">ferrule</text>
<polygon fill="#ffffff" stroke="black" points="493.25,-103.62 447,-103.62 447,-79.88 493.25,-79.88 493.25,-103.62"/>
<polygon fill="none" stroke="black" points="447,-79.88 447,-103.62 493.25,-103.62 493.25,-79.88 447,-79.88"/>
<text text-anchor="start" x="451" y="-86.33" font-family="arial" font-size="14.00">ferrule</text>
</g>
<!-- F4&#45;&#45;C2 -->
<g id="edge15" class="edge">
<title>F4:e&#45;&#45;C2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-91C587.28,-93.46 554.61,-230.46 641,-228"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M497,-93C585.34,-93 552.66,-230 641,-230"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-95C583.39,-92.54 550.72,-229.54 641,-232"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M493.25,-89.75C584.45,-92.23 549.93,-232.23 637.25,-229.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M493.25,-91.75C582.51,-91.75 547.99,-231.75 637.25,-231.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M493.25,-93.75C580.57,-91.27 546.05,-231.27 637.25,-233.75"/>
</g>
<!-- F4&#45;&#45;C3 -->
<g id="edge23" class="edge">
<title>F4:e&#45;&#45;C3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-91C566.36,-92.96 567.64,-21.96 641,-20"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M497,-93C568.36,-93 569.64,-22 641,-22"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-95C570.36,-93.04 571.64,-22.04 641,-24"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M493.25,-89.75C562.41,-91.7 564.09,-21.7 637.25,-19.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M493.25,-91.75C564.41,-91.75 566.09,-21.75 637.25,-21.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M493.25,-93.75C566.41,-91.8 568.09,-21.8 637.25,-23.75"/>
</g>
<!-- X2 -->
<g id="node6" class="node">
<title>X2</title>
<polygon fill="#ffffff" stroke="black" points="951,-360 912,-360 912,-222 951,-222 951,-360"/>
<polygon fill="none" stroke="black" points="912.5,-337 912.5,-360 951.5,-360 951.5,-337 912.5,-337"/>
<text text-anchor="start" x="923.5" y="-344.8" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="912.5,-314 912.5,-337 951.5,-337 951.5,-314 912.5,-314"/>
<text text-anchor="start" x="916.5" y="-321.8" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="912.5,-291 912.5,-314 931.5,-314 931.5,-291 912.5,-291"/>
<text text-anchor="start" x="918" y="-298.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="931.5,-291 931.5,-314 951.5,-314 951.5,-291 931.5,-291"/>
<text text-anchor="start" x="936.5" y="-298.8" font-family="arial" font-size="14.00">A</text>
<polygon fill="none" stroke="black" points="912.5,-268 912.5,-291 931.5,-291 931.5,-268 912.5,-268"/>
<text text-anchor="start" x="918" y="-275.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="931.5,-268 931.5,-291 951.5,-291 951.5,-268 931.5,-268"/>
<text text-anchor="start" x="936.5" y="-275.8" font-family="arial" font-size="14.00">B</text>
<polygon fill="none" stroke="black" points="912.5,-245 912.5,-268 931.5,-268 931.5,-245 912.5,-245"/>
<text text-anchor="start" x="918" y="-252.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="931.5,-245 931.5,-268 951.5,-268 951.5,-245 931.5,-245"/>
<text text-anchor="start" x="936.5" y="-252.8" font-family="arial" font-size="14.00">C</text>
<polygon fill="none" stroke="black" points="912.5,-222 912.5,-245 931.5,-245 931.5,-222 912.5,-222"/>
<text text-anchor="start" x="918" y="-229.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="931.5,-222 931.5,-245 951.5,-245 951.5,-222 931.5,-222"/>
<text text-anchor="start" x="936.5" y="-229.8" font-family="arial" font-size="14.00">D</text>
<polygon fill="#ffffff" stroke="black" points="943.25,-362.5 905.25,-362.5 905.25,-223 943.25,-223 943.25,-362.5"/>
<polygon fill="none" stroke="black" points="905.25,-338.75 905.25,-362.5 943.25,-362.5 943.25,-338.75 905.25,-338.75"/>
<text text-anchor="start" x="916" y="-345.2" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="905.25,-315 905.25,-338.75 943.25,-338.75 943.25,-315 905.25,-315"/>
<text text-anchor="start" x="909.25" y="-321.45" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="905.25,-292 905.25,-315 923.25,-315 923.25,-292 905.25,-292"/>
<text text-anchor="start" x="910.5" y="-297.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="923.25,-292 923.25,-315 943.25,-315 943.25,-292 923.25,-292"/>
<text text-anchor="start" x="928.75" y="-297.7" font-family="arial" font-size="14.00">A</text>
<polygon fill="none" stroke="black" points="905.25,-269 905.25,-292 923.25,-292 923.25,-269 905.25,-269"/>
<text text-anchor="start" x="910.5" y="-274.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="923.25,-269 923.25,-292 943.25,-292 943.25,-269 923.25,-269"/>
<text text-anchor="start" x="928.75" y="-274.7" font-family="arial" font-size="14.00">B</text>
<polygon fill="none" stroke="black" points="905.25,-246 905.25,-269 923.25,-269 923.25,-246 905.25,-246"/>
<text text-anchor="start" x="910.5" y="-251.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="923.25,-246 923.25,-269 943.25,-269 943.25,-246 923.25,-246"/>
<text text-anchor="start" x="928.38" y="-251.7" font-family="arial" font-size="14.00">C</text>
<polygon fill="none" stroke="black" points="905.25,-223 905.25,-246 923.25,-246 923.25,-223 905.25,-223"/>
<text text-anchor="start" x="910.5" y="-228.7" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="923.25,-223 923.25,-246 943.25,-246 943.25,-223 923.25,-223"/>
<text text-anchor="start" x="928.38" y="-228.7" font-family="arial" font-size="14.00">D</text>
</g>
<!-- X3 -->
<g id="node7" class="node">
<title>X3</title>
<polygon fill="#ffffff" stroke="black" points="951,-152 912,-152 912,-14 951,-14 951,-152"/>
<polygon fill="none" stroke="black" points="912.5,-129 912.5,-152 951.5,-152 951.5,-129 912.5,-129"/>
<text text-anchor="start" x="923.5" y="-136.8" font-family="arial" font-size="14.00">X3</text>
<polygon fill="none" stroke="black" points="912.5,-106 912.5,-129 951.5,-129 951.5,-106 912.5,-106"/>
<text text-anchor="start" x="916.5" y="-113.8" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="912.5,-83 912.5,-106 931.5,-106 931.5,-83 912.5,-83"/>
<text text-anchor="start" x="918" y="-90.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="931.5,-83 931.5,-106 951.5,-106 951.5,-83 931.5,-83"/>
<text text-anchor="start" x="936.5" y="-90.8" font-family="arial" font-size="14.00">A</text>
<polygon fill="none" stroke="black" points="912.5,-60 912.5,-83 931.5,-83 931.5,-60 912.5,-60"/>
<text text-anchor="start" x="918" y="-67.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="931.5,-60 931.5,-83 951.5,-83 951.5,-60 931.5,-60"/>
<text text-anchor="start" x="936.5" y="-67.8" font-family="arial" font-size="14.00">B</text>
<polygon fill="none" stroke="black" points="912.5,-37 912.5,-60 931.5,-60 931.5,-37 912.5,-37"/>
<text text-anchor="start" x="918" y="-44.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="931.5,-37 931.5,-60 951.5,-60 951.5,-37 931.5,-37"/>
<text text-anchor="start" x="936.5" y="-44.8" font-family="arial" font-size="14.00">C</text>
<polygon fill="none" stroke="black" points="912.5,-14 912.5,-37 931.5,-37 931.5,-14 912.5,-14"/>
<text text-anchor="start" x="918" y="-21.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="931.5,-14 931.5,-37 951.5,-37 951.5,-14 931.5,-14"/>
<text text-anchor="start" x="936.5" y="-21.8" font-family="arial" font-size="14.00">D</text>
<polygon fill="#ffffff" stroke="black" points="943.25,-152.5 905.25,-152.5 905.25,-13 943.25,-13 943.25,-152.5"/>
<polygon fill="none" stroke="black" points="905.25,-128.75 905.25,-152.5 943.25,-152.5 943.25,-128.75 905.25,-128.75"/>
<text text-anchor="start" x="916" y="-135.2" font-family="arial" font-size="14.00">X3</text>
<polygon fill="none" stroke="black" points="905.25,-105 905.25,-128.75 943.25,-128.75 943.25,-105 905.25,-105"/>
<text text-anchor="start" x="909.25" y="-111.45" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="905.25,-82 905.25,-105 923.25,-105 923.25,-82 905.25,-82"/>
<text text-anchor="start" x="910.5" y="-87.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="923.25,-82 923.25,-105 943.25,-105 943.25,-82 923.25,-82"/>
<text text-anchor="start" x="928.75" y="-87.7" font-family="arial" font-size="14.00">A</text>
<polygon fill="none" stroke="black" points="905.25,-59 905.25,-82 923.25,-82 923.25,-59 905.25,-59"/>
<text text-anchor="start" x="910.5" y="-64.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="923.25,-59 923.25,-82 943.25,-82 943.25,-59 923.25,-59"/>
<text text-anchor="start" x="928.75" y="-64.7" font-family="arial" font-size="14.00">B</text>
<polygon fill="none" stroke="black" points="905.25,-36 905.25,-59 923.25,-59 923.25,-36 905.25,-36"/>
<text text-anchor="start" x="910.5" y="-41.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="923.25,-36 923.25,-59 943.25,-59 943.25,-36 923.25,-36"/>
<text text-anchor="start" x="928.38" y="-41.7" font-family="arial" font-size="14.00">C</text>
<polygon fill="none" stroke="black" points="905.25,-13 905.25,-36 923.25,-36 923.25,-13 905.25,-13"/>
<text text-anchor="start" x="910.5" y="-18.7" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="923.25,-13 923.25,-36 943.25,-36 943.25,-13 923.25,-13"/>
<text text-anchor="start" x="928.38" y="-18.7" font-family="arial" font-size="14.00">D</text>
</g>
<!-- C1&#45;&#45;F1 -->
<g id="edge2" class="edge">
<title>C1:e&#45;&#45;F1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M306,-199C373.53,-200.28 386.21,-233.28 450,-232"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M306,-201C371.66,-201 384.34,-234 450,-234"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M306,-203C369.79,-201.72 382.47,-234.72 450,-236"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M303,-198.75C370.75,-200.09 383.02,-235.09 447,-233.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M303,-200.75C368.86,-200.75 381.14,-235.75 447,-235.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M303,-202.75C366.98,-201.41 379.25,-236.41 447,-237.75"/>
</g>
<!-- C1&#45;&#45;F2 -->
<g id="edge4" class="edge">
<title>C1:e&#45;&#45;F2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M306,-174C371.34,-174.36 386.96,-185.36 450,-185"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M306,-176C370.19,-176 385.81,-187 450,-187"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M306,-178C369.04,-177.64 384.66,-188.64 450,-189"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M303,-173.75C368.44,-174.17 384,-186.17 447,-185.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M303,-175.75C367.22,-175.75 382.78,-187.75 447,-187.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M303,-177.75C366,-177.33 381.56,-189.33 447,-189.75"/>
</g>
<!-- C1&#45;&#45;F3 -->
<g id="edge6" class="edge">
<title>C1:e&#45;&#45;F3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M306,-149C369.04,-149.36 384.66,-138.36 450,-138"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M306,-151C370.19,-151 385.81,-140 450,-140"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M306,-153C371.34,-152.64 386.96,-141.64 450,-142"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M303,-148.75C366.04,-149.11 381.66,-138.11 447,-137.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M303,-150.75C367.19,-150.75 382.81,-139.75 447,-139.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M303,-152.75C368.34,-152.39 383.96,-141.39 447,-141.75"/>
</g>
<!-- C1&#45;&#45;F4 -->
<g id="edge8" class="edge">
<title>C1:e&#45;&#45;F4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M306,-124C369.79,-125.28 382.47,-92.28 450,-91"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M306,-126C371.66,-126 384.34,-93 450,-93"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M306,-128C373.53,-126.72 386.21,-93.72 450,-95"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M303,-123.75C366.88,-125.06 379.36,-91.06 447,-89.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M303,-125.75C368.76,-125.75 381.24,-91.75 447,-91.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M303,-127.75C370.64,-126.44 383.12,-92.44 447,-93.75"/>
</g>
<!-- C2&#45;&#45;X2 -->
<g id="edge10" class="edge">
<title>C2:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-303C831.76,-303.02 847.75,-301.02 912,-301"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M768,-305C832.01,-305 847.99,-303 912,-303"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-307C832.25,-306.98 848.24,-304.98 912,-305"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M761.25,-304.75C824.89,-304.78 840.87,-301.78 905.25,-301.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M761.25,-306.75C825.26,-306.75 841.24,-303.75 905.25,-303.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M761.25,-308.75C825.63,-308.72 841.61,-305.72 905.25,-305.75"/>
</g>
<!-- C2&#45;&#45;X2 -->
<g id="edge12" class="edge">
<title>C2:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-278C831.88,-278 847.87,-277 912,-277"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M768,-280C832,-280 848,-279 912,-279"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-282C832.13,-282 848.12,-281 912,-281"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M761.25,-279.75C825.13,-279.75 841.12,-278.75 905.25,-278.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M761.25,-281.75C825.25,-281.75 841.25,-280.75 905.25,-280.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M761.25,-283.75C825.38,-283.75 841.37,-282.75 905.25,-282.75"/>
</g>
<!-- C2&#45;&#45;X2 -->
<g id="edge14" class="edge">
<title>C2:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-253C832.13,-253 848.12,-254 912,-254"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M768,-255C832,-255 848,-256 912,-256"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-257C831.88,-257 847.87,-258 912,-258"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M761.25,-254.75C825.38,-254.75 841.37,-255.75 905.25,-255.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M761.25,-256.75C825.25,-256.75 841.25,-257.75 905.25,-257.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M761.25,-258.75C825.13,-258.75 841.12,-259.75 905.25,-259.75"/>
</g>
<!-- C2&#45;&#45;X2 -->
<g id="edge16" class="edge">
<title>C2:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-228C832.38,-228.03 848.36,-231.03 912,-231"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M768,-230C832.01,-230 847.99,-233 912,-233"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-232C831.64,-231.97 847.62,-234.97 912,-235"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M761.25,-229.75C825.63,-229.78 841.61,-232.78 905.25,-232.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M761.25,-231.75C825.26,-231.75 841.24,-234.75 905.25,-234.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M761.25,-233.75C824.89,-233.72 840.87,-236.72 905.25,-236.75"/>
</g>
<!-- C3&#45;&#45;X3 -->
<g id="edge18" class="edge">
<title>C3:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-95C831.76,-95.02 847.75,-93.02 912,-93"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M768,-97C832.01,-97 847.99,-95 912,-95"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-99C832.25,-98.98 848.24,-96.98 912,-97"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M761.25,-94.75C824.89,-94.78 840.87,-91.78 905.25,-91.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M761.25,-96.75C825.26,-96.75 841.24,-93.75 905.25,-93.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M761.25,-98.75C825.63,-98.72 841.61,-95.72 905.25,-95.75"/>
</g>
<!-- C3&#45;&#45;X3 -->
<g id="edge20" class="edge">
<title>C3:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-70C831.88,-70 847.87,-69 912,-69"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M768,-72C832,-72 848,-71 912,-71"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-74C832.13,-74 848.12,-73 912,-73"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M761.25,-69.75C825.13,-69.75 841.12,-68.75 905.25,-68.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M761.25,-71.75C825.25,-71.75 841.25,-70.75 905.25,-70.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M761.25,-73.75C825.38,-73.75 841.37,-72.75 905.25,-72.75"/>
</g>
<!-- C3&#45;&#45;X3 -->
<g id="edge22" class="edge">
<title>C3:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-45C832.13,-45 848.12,-46 912,-46"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M768,-47C832,-47 848,-48 912,-48"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-49C831.88,-49 847.87,-50 912,-50"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M761.25,-44.75C825.38,-44.75 841.37,-45.75 905.25,-45.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M761.25,-46.75C825.25,-46.75 841.25,-47.75 905.25,-47.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M761.25,-48.75C825.13,-48.75 841.12,-49.75 905.25,-49.75"/>
</g>
<!-- C3&#45;&#45;X3 -->
<g id="edge24" class="edge">
<title>C3:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-20C832.38,-20.03 848.36,-23.03 912,-23"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M768,-22C832.01,-22 847.99,-25 912,-25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-24C831.64,-23.97 847.62,-26.97 912,-27"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M761.25,-19.75C825.63,-19.78 841.61,-22.78 905.25,-22.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M761.25,-21.75C825.26,-21.75 841.24,-24.75 905.25,-24.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M761.25,-23.75C824.89,-23.72 840.87,-26.72 905.25,-26.75"/>
</g>
</g>
</svg>

BIN
examples/ex13.png generated

Binary file not shown.

Before

Width:  |  Height:  |  Size: 120 KiB

After

Width:  |  Height:  |  Size: 108 KiB

466
examples/ex13.svg generated
View File

@ -1,376 +1,376 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="959pt" height="400pt"
viewBox="0.00 0.00 959.00 400.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 396)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-396 955,-396 955,4 -4,4"/>
<svg width="951pt" height="404pt"
viewBox="0.00 0.00 951.25 403.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 399.5)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-399.5 947.25,-399.5 947.25,4 -4,4"/>
<!-- X1 -->
<g id="node1" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="39,-256 0,-256 0,-118 39,-118 39,-256"/>
<polygon fill="none" stroke="black" points="0.5,-233 0.5,-256 39.5,-256 39.5,-233 0.5,-233"/>
<text text-anchor="start" x="11.5" y="-240.8" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0.5,-210 0.5,-233 39.5,-233 39.5,-210 0.5,-210"/>
<text text-anchor="start" x="4.5" y="-217.8" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="0.5,-187 0.5,-210 21.5,-210 21.5,-187 0.5,-187"/>
<text text-anchor="start" x="6" y="-194.8" font-family="arial" font-size="14.00">A</text>
<polygon fill="none" stroke="black" points="21.5,-187 21.5,-210 39.5,-210 39.5,-187 21.5,-187"/>
<text text-anchor="start" x="26.5" y="-194.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0.5,-164 0.5,-187 21.5,-187 21.5,-164 0.5,-164"/>
<text text-anchor="start" x="6" y="-171.8" font-family="arial" font-size="14.00">B</text>
<polygon fill="none" stroke="black" points="21.5,-164 21.5,-187 39.5,-187 39.5,-164 21.5,-164"/>
<text text-anchor="start" x="26.5" y="-171.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0.5,-141 0.5,-164 21.5,-164 21.5,-141 0.5,-141"/>
<text text-anchor="start" x="6" y="-148.8" font-family="arial" font-size="14.00">C</text>
<polygon fill="none" stroke="black" points="21.5,-141 21.5,-164 39.5,-164 39.5,-141 21.5,-141"/>
<text text-anchor="start" x="26.5" y="-148.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0.5,-118 0.5,-141 21.5,-141 21.5,-118 0.5,-118"/>
<text text-anchor="start" x="6" y="-125.8" font-family="arial" font-size="14.00">D</text>
<polygon fill="none" stroke="black" points="21.5,-118 21.5,-141 39.5,-141 39.5,-118 21.5,-118"/>
<text text-anchor="start" x="26.5" y="-125.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="#ffffff" stroke="black" points="38,-256.5 0,-256.5 0,-117 38,-117 38,-256.5"/>
<polygon fill="none" stroke="black" points="0,-232.75 0,-256.5 38,-256.5 38,-232.75 0,-232.75"/>
<text text-anchor="start" x="10.75" y="-239.2" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-209 0,-232.75 38,-232.75 38,-209 0,-209"/>
<text text-anchor="start" x="4" y="-215.45" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-186 0,-209 20,-209 20,-186 0,-186"/>
<text text-anchor="start" x="5.5" y="-191.7" font-family="arial" font-size="14.00">A</text>
<polygon fill="none" stroke="black" points="20,-186 20,-209 38,-209 38,-186 20,-186"/>
<text text-anchor="start" x="25.25" y="-191.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-163 0,-186 20,-186 20,-163 0,-163"/>
<text text-anchor="start" x="5.5" y="-168.7" font-family="arial" font-size="14.00">B</text>
<polygon fill="none" stroke="black" points="20,-163 20,-186 38,-186 38,-163 20,-163"/>
<text text-anchor="start" x="25.25" y="-168.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0,-140 0,-163 20,-163 20,-140 0,-140"/>
<text text-anchor="start" x="5.12" y="-145.7" font-family="arial" font-size="14.00">C</text>
<polygon fill="none" stroke="black" points="20,-140 20,-163 38,-163 38,-140 20,-140"/>
<text text-anchor="start" x="25.25" y="-145.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-117 0,-140 20,-140 20,-117 0,-117"/>
<text text-anchor="start" x="5.12" y="-122.7" font-family="arial" font-size="14.00">D</text>
<polygon fill="none" stroke="black" points="20,-117 20,-140 38,-140 38,-117 20,-117"/>
<text text-anchor="start" x="25.25" y="-122.7" font-family="arial" font-size="14.00">4</text>
</g>
<!-- C1 -->
<g id="node8" class="node">
<title>C1</title>
<polygon fill="#ffffff" stroke="black" points="306,-288 183,-288 183,-104 306,-104 306,-288"/>
<polygon fill="none" stroke="black" points="183.5,-265 183.5,-288 306.5,-288 306.5,-265 183.5,-265"/>
<text text-anchor="start" x="236" y="-272.8" font-family="arial" font-size="14.00">C1</text>
<polygon fill="none" stroke="black" points="183.5,-242 183.5,-265 306.5,-265 306.5,-242 183.5,-242"/>
<text text-anchor="start" x="237.5" y="-249.8" font-family="arial" font-size="14.00">4x</text>
<text text-anchor="start" x="204.5" y="-228.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="186" y="-209.8" font-family="arial" font-size="14.00">X1:1:A</text>
<text text-anchor="start" x="231.5" y="-209.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:WH &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="183.5,-202 183.5,-204 306.5,-204 306.5,-202 183.5,-202"/>
<polygon fill="#ffffff" stroke="none" points="183.5,-200 183.5,-202 306.5,-202 306.5,-200 183.5,-200"/>
<polygon fill="#000000" stroke="none" points="183.5,-198 183.5,-200 306.5,-200 306.5,-198 183.5,-198"/>
<text text-anchor="start" x="186" y="-184.8" font-family="arial" font-size="14.00">X1:2:B</text>
<text text-anchor="start" x="234" y="-184.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:BN &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="183.5,-177 183.5,-179 306.5,-179 306.5,-177 183.5,-177"/>
<polygon fill="#895956" stroke="none" points="183.5,-175 183.5,-177 306.5,-177 306.5,-175 183.5,-175"/>
<polygon fill="#000000" stroke="none" points="183.5,-173 183.5,-175 306.5,-175 306.5,-173 183.5,-173"/>
<text text-anchor="start" x="185.5" y="-159.8" font-family="arial" font-size="14.00">X1:3:C</text>
<text text-anchor="start" x="232.5" y="-159.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:GN &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="183.5,-152 183.5,-154 306.5,-154 306.5,-152 183.5,-152"/>
<polygon fill="#00ff00" stroke="none" points="183.5,-150 183.5,-152 306.5,-152 306.5,-150 183.5,-150"/>
<polygon fill="#000000" stroke="none" points="183.5,-148 183.5,-150 306.5,-150 306.5,-148 183.5,-148"/>
<text text-anchor="start" x="185.5" y="-134.8" font-family="arial" font-size="14.00">X1:4:D</text>
<text text-anchor="start" x="234" y="-134.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="183.5,-127 183.5,-129 306.5,-129 306.5,-127 183.5,-127"/>
<polygon fill="#ffff00" stroke="none" points="183.5,-125 183.5,-127 306.5,-127 306.5,-125 183.5,-125"/>
<polygon fill="#000000" stroke="none" points="183.5,-123 183.5,-125 306.5,-125 306.5,-123 183.5,-123"/>
<text text-anchor="start" x="204.5" y="-109.8" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" points="303,-289.5 182,-289.5 182,-104 303,-104 303,-289.5"/>
<polygon fill="none" stroke="black" points="182,-265.75 182,-289.5 303,-289.5 303,-265.75 182,-265.75"/>
<text text-anchor="start" x="233.88" y="-272.2" font-family="arial" font-size="14.00">C1</text>
<polygon fill="none" stroke="black" points="182,-242 182,-265.75 303,-265.75 303,-242 182,-242"/>
<text text-anchor="start" x="235.38" y="-248.45" font-family="arial" font-size="14.00">4x</text>
<text text-anchor="start" x="202.62" y="-226.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="184.25" y="-207.7" font-family="arial" font-size="14.00">X1:1:A</text>
<text text-anchor="start" x="228.88" y="-207.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:WH &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="182,-202 182,-204 303,-204 303,-202 182,-202"/>
<polygon fill="#ffffff" stroke="none" points="182,-200 182,-202 303,-202 303,-200 182,-200"/>
<polygon fill="#000000" stroke="none" points="182,-198 182,-200 303,-200 303,-198 182,-198"/>
<text text-anchor="start" x="184.25" y="-182.7" font-family="arial" font-size="14.00">X1:2:B</text>
<text text-anchor="start" x="231.12" y="-182.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:BN &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="182,-177 182,-179 303,-179 303,-177 182,-177"/>
<polygon fill="#895956" stroke="none" points="182,-175 182,-177 303,-177 303,-175 182,-175"/>
<polygon fill="#000000" stroke="none" points="182,-173 182,-175 303,-175 303,-173 182,-173"/>
<text text-anchor="start" x="183.88" y="-157.7" font-family="arial" font-size="14.00">X1:3:C</text>
<text text-anchor="start" x="230" y="-157.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:GN &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="182,-152 182,-154 303,-154 303,-152 182,-152"/>
<polygon fill="#00ff00" stroke="none" points="182,-150 182,-152 303,-152 303,-150 182,-150"/>
<polygon fill="#000000" stroke="none" points="182,-148 182,-150 303,-150 303,-148 182,-148"/>
<text text-anchor="start" x="183.88" y="-132.7" font-family="arial" font-size="14.00">X1:4:D</text>
<text text-anchor="start" x="231.5" y="-132.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<polygon fill="#000000" stroke="none" points="182,-127 182,-129 303,-129 303,-127 182,-127"/>
<polygon fill="#ffff00" stroke="none" points="182,-125 182,-127 303,-127 303,-125 182,-125"/>
<polygon fill="#000000" stroke="none" points="182,-123 182,-125 303,-125 303,-123 182,-123"/>
<text text-anchor="start" x="202.62" y="-107.7" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X1&#45;&#45;C1 -->
<g id="edge1" class="edge">
<title>X1:e&#45;&#45;C1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-197C103.25,-197.02 119.24,-199.02 183,-199"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M39,-199C103.01,-199 118.99,-201 183,-201"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-201C102.76,-200.98 118.75,-202.98 183,-203"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M38,-195.75C102.38,-195.78 118.36,-198.78 182,-198.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M38,-197.75C102.01,-197.75 117.99,-200.75 182,-200.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M38,-199.75C101.64,-199.72 117.62,-202.72 182,-202.75"/>
</g>
<!-- X1&#45;&#45;C1 -->
<g id="edge3" class="edge">
<title>X1:e&#45;&#45;C1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-173C103.13,-173 119.12,-174 183,-174"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M39,-175C103,-175 119,-176 183,-176"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-177C102.88,-177 118.87,-178 183,-178"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M38,-172.75C102.13,-172.75 118.12,-173.75 182,-173.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M38,-174.75C102,-174.75 118,-175.75 182,-175.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M38,-176.75C101.88,-176.75 117.87,-177.75 182,-177.75"/>
</g>
<!-- X1&#45;&#45;C1 -->
<g id="edge5" class="edge">
<title>X1:e&#45;&#45;C1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-150C102.88,-150 118.87,-149 183,-149"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M39,-152C103,-152 119,-151 183,-151"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-154C103.13,-154 119.12,-153 183,-153"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M38,-149.75C101.88,-149.75 117.87,-148.75 182,-148.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M38,-151.75C102,-151.75 118,-150.75 182,-150.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M38,-153.75C102.13,-153.75 118.12,-152.75 182,-152.75"/>
</g>
<!-- X1&#45;&#45;C1 -->
<g id="edge7" class="edge">
<title>X1:e&#45;&#45;C1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-127C102.64,-127.03 118.62,-124.03 183,-124"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M39,-129C103.01,-129 118.99,-126 183,-126"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-131C103.38,-130.97 119.36,-127.97 183,-128"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M38,-126.75C101.64,-126.78 117.62,-123.78 182,-123.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M38,-128.75C102.01,-128.75 117.99,-125.75 182,-125.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M38,-130.75C102.38,-130.72 118.36,-127.72 182,-127.75"/>
</g>
<!-- F1 -->
<g id="node2" class="node">
<title>F1</title>
<polygon fill="#ffffff" stroke="black" points="497,-245.5 450,-245.5 450,-222.5 497,-222.5 497,-245.5"/>
<polygon fill="none" stroke="black" points="450.5,-222 450.5,-245 497.5,-245 497.5,-222 450.5,-222"/>
<text text-anchor="start" x="454.5" y="-229.8" font-family="arial" font-size="14.00">ferrule</text>
<polygon fill="#ffffff" stroke="black" points="493.25,-247.62 447,-247.62 447,-223.88 493.25,-223.88 493.25,-247.62"/>
<polygon fill="none" stroke="black" points="447,-223.88 447,-247.62 493.25,-247.62 493.25,-223.88 447,-223.88"/>
<text text-anchor="start" x="451" y="-230.32" font-family="arial" font-size="14.00">ferrule</text>
</g>
<!-- C2 -->
<g id="node9" class="node">
<title>C2</title>
<polygon fill="#ffffff" stroke="black" points="768,-392 641,-392 641,-208 768,-208 768,-392"/>
<polygon fill="none" stroke="black" points="641.5,-369 641.5,-392 768.5,-392 768.5,-369 641.5,-369"/>
<text text-anchor="start" x="696" y="-376.8" font-family="arial" font-size="14.00">C2</text>
<polygon fill="none" stroke="black" points="641.5,-346 641.5,-369 768.5,-369 768.5,-346 641.5,-346"/>
<text text-anchor="start" x="697.5" y="-353.8" font-family="arial" font-size="14.00">4x</text>
<text text-anchor="start" x="643.5" y="-332.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="651.5" y="-313.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:WH &#160;&#160;&#160;</text>
<text text-anchor="start" x="725" y="-313.8" font-family="arial" font-size="14.00">X2:1:A</text>
<polygon fill="#000000" stroke="none" points="641.5,-306 641.5,-308 768.5,-308 768.5,-306 641.5,-306"/>
<polygon fill="#ffffff" stroke="none" points="641.5,-304 641.5,-306 768.5,-306 768.5,-304 641.5,-304"/>
<polygon fill="#000000" stroke="none" points="641.5,-302 641.5,-304 768.5,-304 768.5,-302 641.5,-302"/>
<text text-anchor="start" x="654" y="-288.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="725" y="-288.8" font-family="arial" font-size="14.00">X2:2:B</text>
<polygon fill="#000000" stroke="none" points="641.5,-281 641.5,-283 768.5,-283 768.5,-281 641.5,-281"/>
<polygon fill="#895956" stroke="none" points="641.5,-279 641.5,-281 768.5,-281 768.5,-279 641.5,-279"/>
<polygon fill="#000000" stroke="none" points="641.5,-277 641.5,-279 768.5,-279 768.5,-277 641.5,-277"/>
<text text-anchor="start" x="652.5" y="-263.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="724.5" y="-263.8" font-family="arial" font-size="14.00">X2:3:C</text>
<polygon fill="#000000" stroke="none" points="641.5,-256 641.5,-258 768.5,-258 768.5,-256 641.5,-256"/>
<polygon fill="#00ff00" stroke="none" points="641.5,-254 641.5,-256 768.5,-256 768.5,-254 641.5,-254"/>
<polygon fill="#000000" stroke="none" points="641.5,-252 641.5,-254 768.5,-254 768.5,-252 641.5,-252"/>
<text text-anchor="start" x="654" y="-238.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="724.5" y="-238.8" font-family="arial" font-size="14.00">X2:4:D</text>
<polygon fill="#000000" stroke="none" points="641.5,-231 641.5,-233 768.5,-233 768.5,-231 641.5,-231"/>
<polygon fill="#ffff00" stroke="none" points="641.5,-229 641.5,-231 768.5,-231 768.5,-229 641.5,-229"/>
<polygon fill="#000000" stroke="none" points="641.5,-227 641.5,-229 768.5,-229 768.5,-227 641.5,-227"/>
<text text-anchor="start" x="643.5" y="-213.8" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" points="761.25,-395.5 637.25,-395.5 637.25,-210 761.25,-210 761.25,-395.5"/>
<polygon fill="none" stroke="black" points="637.25,-371.75 637.25,-395.5 761.25,-395.5 761.25,-371.75 637.25,-371.75"/>
<text text-anchor="start" x="690.62" y="-378.2" font-family="arial" font-size="14.00">C2</text>
<polygon fill="none" stroke="black" points="637.25,-348 637.25,-371.75 761.25,-371.75 761.25,-348 637.25,-348"/>
<text text-anchor="start" x="692.12" y="-354.45" font-family="arial" font-size="14.00">4x</text>
<text text-anchor="start" x="638.88" y="-332.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="646.12" y="-313.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:WH &#160;&#160;&#160;</text>
<text text-anchor="start" x="718.5" y="-313.7" font-family="arial" font-size="14.00">X2:1:A</text>
<polygon fill="#000000" stroke="none" points="637.25,-308 637.25,-310 761.25,-310 761.25,-308 637.25,-308"/>
<polygon fill="#ffffff" stroke="none" points="637.25,-306 637.25,-308 761.25,-308 761.25,-306 637.25,-306"/>
<polygon fill="#000000" stroke="none" points="637.25,-304 637.25,-306 761.25,-306 761.25,-304 637.25,-304"/>
<text text-anchor="start" x="648.38" y="-288.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="718.5" y="-288.7" font-family="arial" font-size="14.00">X2:2:B</text>
<polygon fill="#000000" stroke="none" points="637.25,-283 637.25,-285 761.25,-285 761.25,-283 637.25,-283"/>
<polygon fill="#895956" stroke="none" points="637.25,-281 637.25,-283 761.25,-283 761.25,-281 637.25,-281"/>
<polygon fill="#000000" stroke="none" points="637.25,-279 637.25,-281 761.25,-281 761.25,-279 637.25,-279"/>
<text text-anchor="start" x="647.25" y="-263.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="718.12" y="-263.7" font-family="arial" font-size="14.00">X2:3:C</text>
<polygon fill="#000000" stroke="none" points="637.25,-258 637.25,-260 761.25,-260 761.25,-258 637.25,-258"/>
<polygon fill="#00ff00" stroke="none" points="637.25,-256 637.25,-258 761.25,-258 761.25,-256 637.25,-256"/>
<polygon fill="#000000" stroke="none" points="637.25,-254 637.25,-256 761.25,-256 761.25,-254 637.25,-254"/>
<text text-anchor="start" x="648.75" y="-238.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="718.12" y="-238.7" font-family="arial" font-size="14.00">X2:4:D</text>
<polygon fill="#000000" stroke="none" points="637.25,-233 637.25,-235 761.25,-235 761.25,-233 637.25,-233"/>
<polygon fill="#ffff00" stroke="none" points="637.25,-231 637.25,-233 761.25,-233 761.25,-231 637.25,-231"/>
<polygon fill="#000000" stroke="none" points="637.25,-229 637.25,-231 761.25,-231 761.25,-229 637.25,-229"/>
<text text-anchor="start" x="638.88" y="-213.7" font-family="arial" font-size="14.00"> </text>
</g>
<!-- F1&#45;&#45;C2 -->
<g id="edge9" class="edge">
<title>F1:e&#45;&#45;C2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-232C570.36,-233.96 571.64,-304.96 641,-303"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M497,-234C568.36,-234 569.64,-305 641,-305"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-236C566.36,-234.04 567.64,-305.04 641,-307"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M493.25,-233.75C566.61,-235.71 567.89,-306.71 637.25,-304.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M493.25,-235.75C564.61,-235.75 565.89,-306.75 637.25,-306.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M493.25,-237.75C562.61,-235.79 563.89,-306.79 637.25,-308.75"/>
</g>
<!-- C3 -->
<g id="node10" class="node">
<title>C3</title>
<polygon fill="#ffffff" stroke="black" points="768,-184 641,-184 641,0 768,0 768,-184"/>
<polygon fill="none" stroke="black" points="641.5,-161 641.5,-184 768.5,-184 768.5,-161 641.5,-161"/>
<text text-anchor="start" x="696" y="-168.8" font-family="arial" font-size="14.00">C3</text>
<polygon fill="none" stroke="black" points="641.5,-138 641.5,-161 768.5,-161 768.5,-138 641.5,-138"/>
<text text-anchor="start" x="697.5" y="-145.8" font-family="arial" font-size="14.00">4x</text>
<text text-anchor="start" x="643.5" y="-124.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="651.5" y="-105.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:WH &#160;&#160;&#160;</text>
<text text-anchor="start" x="725" y="-105.8" font-family="arial" font-size="14.00">X3:1:A</text>
<polygon fill="#000000" stroke="none" points="641.5,-98 641.5,-100 768.5,-100 768.5,-98 641.5,-98"/>
<polygon fill="#ffffff" stroke="none" points="641.5,-96 641.5,-98 768.5,-98 768.5,-96 641.5,-96"/>
<polygon fill="#000000" stroke="none" points="641.5,-94 641.5,-96 768.5,-96 768.5,-94 641.5,-94"/>
<text text-anchor="start" x="654" y="-80.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="725" y="-80.8" font-family="arial" font-size="14.00">X3:2:B</text>
<polygon fill="#000000" stroke="none" points="641.5,-73 641.5,-75 768.5,-75 768.5,-73 641.5,-73"/>
<polygon fill="#895956" stroke="none" points="641.5,-71 641.5,-73 768.5,-73 768.5,-71 641.5,-71"/>
<polygon fill="#000000" stroke="none" points="641.5,-69 641.5,-71 768.5,-71 768.5,-69 641.5,-69"/>
<text text-anchor="start" x="652.5" y="-55.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="724.5" y="-55.8" font-family="arial" font-size="14.00">X3:3:C</text>
<polygon fill="#000000" stroke="none" points="641.5,-48 641.5,-50 768.5,-50 768.5,-48 641.5,-48"/>
<polygon fill="#00ff00" stroke="none" points="641.5,-46 641.5,-48 768.5,-48 768.5,-46 641.5,-46"/>
<polygon fill="#000000" stroke="none" points="641.5,-44 641.5,-46 768.5,-46 768.5,-44 641.5,-44"/>
<text text-anchor="start" x="654" y="-30.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="724.5" y="-30.8" font-family="arial" font-size="14.00">X3:4:D</text>
<polygon fill="#000000" stroke="none" points="641.5,-23 641.5,-25 768.5,-25 768.5,-23 641.5,-23"/>
<polygon fill="#ffff00" stroke="none" points="641.5,-21 641.5,-23 768.5,-23 768.5,-21 641.5,-21"/>
<polygon fill="#000000" stroke="none" points="641.5,-19 641.5,-21 768.5,-21 768.5,-19 641.5,-19"/>
<text text-anchor="start" x="643.5" y="-5.8" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" points="761.25,-185.5 637.25,-185.5 637.25,0 761.25,0 761.25,-185.5"/>
<polygon fill="none" stroke="black" points="637.25,-161.75 637.25,-185.5 761.25,-185.5 761.25,-161.75 637.25,-161.75"/>
<text text-anchor="start" x="690.62" y="-168.2" font-family="arial" font-size="14.00">C3</text>
<polygon fill="none" stroke="black" points="637.25,-138 637.25,-161.75 761.25,-161.75 761.25,-138 637.25,-138"/>
<text text-anchor="start" x="692.12" y="-144.45" font-family="arial" font-size="14.00">4x</text>
<text text-anchor="start" x="638.88" y="-122.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="646.12" y="-103.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:WH &#160;&#160;&#160;</text>
<text text-anchor="start" x="718.5" y="-103.7" font-family="arial" font-size="14.00">X3:1:A</text>
<polygon fill="#000000" stroke="none" points="637.25,-98 637.25,-100 761.25,-100 761.25,-98 637.25,-98"/>
<polygon fill="#ffffff" stroke="none" points="637.25,-96 637.25,-98 761.25,-98 761.25,-96 637.25,-96"/>
<polygon fill="#000000" stroke="none" points="637.25,-94 637.25,-96 761.25,-96 761.25,-94 637.25,-94"/>
<text text-anchor="start" x="648.38" y="-78.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="718.5" y="-78.7" font-family="arial" font-size="14.00">X3:2:B</text>
<polygon fill="#000000" stroke="none" points="637.25,-73 637.25,-75 761.25,-75 761.25,-73 637.25,-73"/>
<polygon fill="#895956" stroke="none" points="637.25,-71 637.25,-73 761.25,-73 761.25,-71 637.25,-71"/>
<polygon fill="#000000" stroke="none" points="637.25,-69 637.25,-71 761.25,-71 761.25,-69 637.25,-69"/>
<text text-anchor="start" x="647.25" y="-53.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="718.12" y="-53.7" font-family="arial" font-size="14.00">X3:3:C</text>
<polygon fill="#000000" stroke="none" points="637.25,-48 637.25,-50 761.25,-50 761.25,-48 637.25,-48"/>
<polygon fill="#00ff00" stroke="none" points="637.25,-46 637.25,-48 761.25,-48 761.25,-46 637.25,-46"/>
<polygon fill="#000000" stroke="none" points="637.25,-44 637.25,-46 761.25,-46 761.25,-44 637.25,-44"/>
<text text-anchor="start" x="648.75" y="-28.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="718.12" y="-28.7" font-family="arial" font-size="14.00">X3:4:D</text>
<polygon fill="#000000" stroke="none" points="637.25,-23 637.25,-25 761.25,-25 761.25,-23 637.25,-23"/>
<polygon fill="#ffff00" stroke="none" points="637.25,-21 637.25,-23 761.25,-23 761.25,-21 637.25,-21"/>
<polygon fill="#000000" stroke="none" points="637.25,-19 637.25,-21 761.25,-21 761.25,-19 637.25,-19"/>
<text text-anchor="start" x="638.88" y="-3.7" font-family="arial" font-size="14.00"> </text>
</g>
<!-- F1&#45;&#45;C3 -->
<g id="edge17" class="edge">
<title>F1:e&#45;&#45;C3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-232C583.39,-234.46 550.72,-97.46 641,-95"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M497,-234C585.34,-234 552.66,-97 641,-97"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-236C587.28,-233.54 554.61,-96.54 641,-99"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M493.25,-233.75C580.26,-236.22 546.35,-97.22 637.25,-94.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M493.25,-235.75C582.2,-235.75 548.3,-96.75 637.25,-96.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M493.25,-237.75C584.15,-235.28 550.24,-96.28 637.25,-98.75"/>
</g>
<!-- F2 -->
<g id="node3" class="node">
<title>F2</title>
<polygon fill="#ffffff" stroke="black" points="497,-198.5 450,-198.5 450,-175.5 497,-175.5 497,-198.5"/>
<polygon fill="none" stroke="black" points="450.5,-175 450.5,-198 497.5,-198 497.5,-175 450.5,-175"/>
<text text-anchor="start" x="454.5" y="-182.8" font-family="arial" font-size="14.00">ferrule</text>
<polygon fill="#ffffff" stroke="black" points="493.25,-199.62 447,-199.62 447,-175.88 493.25,-175.88 493.25,-199.62"/>
<polygon fill="none" stroke="black" points="447,-175.88 447,-199.62 493.25,-199.62 493.25,-175.88 447,-175.88"/>
<text text-anchor="start" x="451" y="-182.32" font-family="arial" font-size="14.00">ferrule</text>
</g>
<!-- F2&#45;&#45;C2 -->
<g id="edge11" class="edge">
<title>F2:e&#45;&#45;C2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-185C575.18,-187.18 566.81,-280.18 641,-278"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M497,-187C573.19,-187 564.81,-280 641,-280"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-189C571.19,-186.82 562.82,-279.82 641,-282"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M493.25,-185.75C571.67,-187.94 562.81,-281.94 637.25,-279.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M493.25,-187.75C569.68,-187.75 560.82,-281.75 637.25,-281.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M493.25,-189.75C567.69,-187.56 558.83,-281.56 637.25,-283.75"/>
</g>
<!-- F2&#45;&#45;C3 -->
<g id="edge19" class="edge">
<title>F2:e&#45;&#45;C3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-185C576.93,-187.34 557.12,-72.34 641,-70"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M497,-187C578.9,-187 559.1,-72 641,-72"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-189C580.88,-186.66 561.07,-71.66 641,-74"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M493.25,-185.75C573.46,-188.1 553.1,-72.1 637.25,-69.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M493.25,-187.75C575.43,-187.75 555.07,-71.75 637.25,-71.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M493.25,-189.75C577.4,-187.4 557.04,-71.4 637.25,-73.75"/>
</g>
<!-- F3 -->
<g id="node4" class="node">
<title>F3</title>
<polygon fill="#ffffff" stroke="black" points="497,-151.5 450,-151.5 450,-128.5 497,-128.5 497,-151.5"/>
<polygon fill="none" stroke="black" points="450.5,-128 450.5,-151 497.5,-151 497.5,-128 450.5,-128"/>
<text text-anchor="start" x="454.5" y="-135.8" font-family="arial" font-size="14.00">ferrule</text>
<polygon fill="#ffffff" stroke="black" points="493.25,-151.62 447,-151.62 447,-127.88 493.25,-127.88 493.25,-151.62"/>
<polygon fill="none" stroke="black" points="447,-127.88 447,-151.62 493.25,-151.62 493.25,-127.88 447,-127.88"/>
<text text-anchor="start" x="451" y="-134.32" font-family="arial" font-size="14.00">ferrule</text>
</g>
<!-- F3&#45;&#45;C2 -->
<g id="edge13" class="edge">
<title>F3:e&#45;&#45;C2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-138C580.88,-140.34 561.07,-255.34 641,-253"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M497,-140C578.9,-140 559.1,-255 641,-255"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-142C576.93,-139.66 557.12,-254.66 641,-257"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M493.25,-137.75C577.68,-140.1 556.76,-257.1 637.25,-254.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M493.25,-139.75C575.71,-139.75 554.79,-256.75 637.25,-256.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M493.25,-141.75C573.74,-139.4 552.82,-256.4 637.25,-258.75"/>
</g>
<!-- F3&#45;&#45;C3 -->
<g id="edge21" class="edge">
<title>F3:e&#45;&#45;C3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-138C571.19,-140.18 562.82,-47.18 641,-45"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M497,-140C573.19,-140 564.81,-47 641,-47"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-142C575.18,-139.82 566.81,-46.82 641,-49"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M493.25,-137.75C567.44,-139.93 559.07,-46.93 637.25,-44.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M493.25,-139.75C569.44,-139.75 561.06,-46.75 637.25,-46.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M493.25,-141.75C571.43,-139.57 563.06,-46.57 637.25,-48.75"/>
</g>
<!-- F4 -->
<g id="node5" class="node">
<title>F4</title>
<polygon fill="#ffffff" stroke="black" points="497,-104.5 450,-104.5 450,-81.5 497,-81.5 497,-104.5"/>
<polygon fill="none" stroke="black" points="450.5,-81 450.5,-104 497.5,-104 497.5,-81 450.5,-81"/>
<text text-anchor="start" x="454.5" y="-88.8" font-family="arial" font-size="14.00">ferrule</text>
<polygon fill="#ffffff" stroke="black" points="493.25,-103.62 447,-103.62 447,-79.88 493.25,-79.88 493.25,-103.62"/>
<polygon fill="none" stroke="black" points="447,-79.88 447,-103.62 493.25,-103.62 493.25,-79.88 447,-79.88"/>
<text text-anchor="start" x="451" y="-86.33" font-family="arial" font-size="14.00">ferrule</text>
</g>
<!-- F4&#45;&#45;C2 -->
<g id="edge15" class="edge">
<title>F4:e&#45;&#45;C2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-91C587.28,-93.46 554.61,-230.46 641,-228"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M497,-93C585.34,-93 552.66,-230 641,-230"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-95C583.39,-92.54 550.72,-229.54 641,-232"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M493.25,-89.75C584.45,-92.23 549.93,-232.23 637.25,-229.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M493.25,-91.75C582.51,-91.75 547.99,-231.75 637.25,-231.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M493.25,-93.75C580.57,-91.27 546.05,-231.27 637.25,-233.75"/>
</g>
<!-- F4&#45;&#45;C3 -->
<g id="edge23" class="edge">
<title>F4:e&#45;&#45;C3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-91C566.36,-92.96 567.64,-21.96 641,-20"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M497,-93C568.36,-93 569.64,-22 641,-22"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M497,-95C570.36,-93.04 571.64,-22.04 641,-24"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M493.25,-89.75C562.41,-91.7 564.09,-21.7 637.25,-19.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M493.25,-91.75C564.41,-91.75 566.09,-21.75 637.25,-21.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M493.25,-93.75C566.41,-91.8 568.09,-21.8 637.25,-23.75"/>
</g>
<!-- X2 -->
<g id="node6" class="node">
<title>X2</title>
<polygon fill="#ffffff" stroke="black" points="951,-360 912,-360 912,-222 951,-222 951,-360"/>
<polygon fill="none" stroke="black" points="912.5,-337 912.5,-360 951.5,-360 951.5,-337 912.5,-337"/>
<text text-anchor="start" x="923.5" y="-344.8" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="912.5,-314 912.5,-337 951.5,-337 951.5,-314 912.5,-314"/>
<text text-anchor="start" x="916.5" y="-321.8" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="912.5,-291 912.5,-314 931.5,-314 931.5,-291 912.5,-291"/>
<text text-anchor="start" x="918" y="-298.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="931.5,-291 931.5,-314 951.5,-314 951.5,-291 931.5,-291"/>
<text text-anchor="start" x="936.5" y="-298.8" font-family="arial" font-size="14.00">A</text>
<polygon fill="none" stroke="black" points="912.5,-268 912.5,-291 931.5,-291 931.5,-268 912.5,-268"/>
<text text-anchor="start" x="918" y="-275.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="931.5,-268 931.5,-291 951.5,-291 951.5,-268 931.5,-268"/>
<text text-anchor="start" x="936.5" y="-275.8" font-family="arial" font-size="14.00">B</text>
<polygon fill="none" stroke="black" points="912.5,-245 912.5,-268 931.5,-268 931.5,-245 912.5,-245"/>
<text text-anchor="start" x="918" y="-252.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="931.5,-245 931.5,-268 951.5,-268 951.5,-245 931.5,-245"/>
<text text-anchor="start" x="936.5" y="-252.8" font-family="arial" font-size="14.00">C</text>
<polygon fill="none" stroke="black" points="912.5,-222 912.5,-245 931.5,-245 931.5,-222 912.5,-222"/>
<text text-anchor="start" x="918" y="-229.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="931.5,-222 931.5,-245 951.5,-245 951.5,-222 931.5,-222"/>
<text text-anchor="start" x="936.5" y="-229.8" font-family="arial" font-size="14.00">D</text>
<polygon fill="#ffffff" stroke="black" points="943.25,-362.5 905.25,-362.5 905.25,-223 943.25,-223 943.25,-362.5"/>
<polygon fill="none" stroke="black" points="905.25,-338.75 905.25,-362.5 943.25,-362.5 943.25,-338.75 905.25,-338.75"/>
<text text-anchor="start" x="916" y="-345.2" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="905.25,-315 905.25,-338.75 943.25,-338.75 943.25,-315 905.25,-315"/>
<text text-anchor="start" x="909.25" y="-321.45" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="905.25,-292 905.25,-315 923.25,-315 923.25,-292 905.25,-292"/>
<text text-anchor="start" x="910.5" y="-297.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="923.25,-292 923.25,-315 943.25,-315 943.25,-292 923.25,-292"/>
<text text-anchor="start" x="928.75" y="-297.7" font-family="arial" font-size="14.00">A</text>
<polygon fill="none" stroke="black" points="905.25,-269 905.25,-292 923.25,-292 923.25,-269 905.25,-269"/>
<text text-anchor="start" x="910.5" y="-274.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="923.25,-269 923.25,-292 943.25,-292 943.25,-269 923.25,-269"/>
<text text-anchor="start" x="928.75" y="-274.7" font-family="arial" font-size="14.00">B</text>
<polygon fill="none" stroke="black" points="905.25,-246 905.25,-269 923.25,-269 923.25,-246 905.25,-246"/>
<text text-anchor="start" x="910.5" y="-251.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="923.25,-246 923.25,-269 943.25,-269 943.25,-246 923.25,-246"/>
<text text-anchor="start" x="928.38" y="-251.7" font-family="arial" font-size="14.00">C</text>
<polygon fill="none" stroke="black" points="905.25,-223 905.25,-246 923.25,-246 923.25,-223 905.25,-223"/>
<text text-anchor="start" x="910.5" y="-228.7" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="923.25,-223 923.25,-246 943.25,-246 943.25,-223 923.25,-223"/>
<text text-anchor="start" x="928.38" y="-228.7" font-family="arial" font-size="14.00">D</text>
</g>
<!-- X3 -->
<g id="node7" class="node">
<title>X3</title>
<polygon fill="#ffffff" stroke="black" points="951,-152 912,-152 912,-14 951,-14 951,-152"/>
<polygon fill="none" stroke="black" points="912.5,-129 912.5,-152 951.5,-152 951.5,-129 912.5,-129"/>
<text text-anchor="start" x="923.5" y="-136.8" font-family="arial" font-size="14.00">X3</text>
<polygon fill="none" stroke="black" points="912.5,-106 912.5,-129 951.5,-129 951.5,-106 912.5,-106"/>
<text text-anchor="start" x="916.5" y="-113.8" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="912.5,-83 912.5,-106 931.5,-106 931.5,-83 912.5,-83"/>
<text text-anchor="start" x="918" y="-90.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="931.5,-83 931.5,-106 951.5,-106 951.5,-83 931.5,-83"/>
<text text-anchor="start" x="936.5" y="-90.8" font-family="arial" font-size="14.00">A</text>
<polygon fill="none" stroke="black" points="912.5,-60 912.5,-83 931.5,-83 931.5,-60 912.5,-60"/>
<text text-anchor="start" x="918" y="-67.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="931.5,-60 931.5,-83 951.5,-83 951.5,-60 931.5,-60"/>
<text text-anchor="start" x="936.5" y="-67.8" font-family="arial" font-size="14.00">B</text>
<polygon fill="none" stroke="black" points="912.5,-37 912.5,-60 931.5,-60 931.5,-37 912.5,-37"/>
<text text-anchor="start" x="918" y="-44.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="931.5,-37 931.5,-60 951.5,-60 951.5,-37 931.5,-37"/>
<text text-anchor="start" x="936.5" y="-44.8" font-family="arial" font-size="14.00">C</text>
<polygon fill="none" stroke="black" points="912.5,-14 912.5,-37 931.5,-37 931.5,-14 912.5,-14"/>
<text text-anchor="start" x="918" y="-21.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="931.5,-14 931.5,-37 951.5,-37 951.5,-14 931.5,-14"/>
<text text-anchor="start" x="936.5" y="-21.8" font-family="arial" font-size="14.00">D</text>
<polygon fill="#ffffff" stroke="black" points="943.25,-152.5 905.25,-152.5 905.25,-13 943.25,-13 943.25,-152.5"/>
<polygon fill="none" stroke="black" points="905.25,-128.75 905.25,-152.5 943.25,-152.5 943.25,-128.75 905.25,-128.75"/>
<text text-anchor="start" x="916" y="-135.2" font-family="arial" font-size="14.00">X3</text>
<polygon fill="none" stroke="black" points="905.25,-105 905.25,-128.75 943.25,-128.75 943.25,-105 905.25,-105"/>
<text text-anchor="start" x="909.25" y="-111.45" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="905.25,-82 905.25,-105 923.25,-105 923.25,-82 905.25,-82"/>
<text text-anchor="start" x="910.5" y="-87.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="923.25,-82 923.25,-105 943.25,-105 943.25,-82 923.25,-82"/>
<text text-anchor="start" x="928.75" y="-87.7" font-family="arial" font-size="14.00">A</text>
<polygon fill="none" stroke="black" points="905.25,-59 905.25,-82 923.25,-82 923.25,-59 905.25,-59"/>
<text text-anchor="start" x="910.5" y="-64.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="923.25,-59 923.25,-82 943.25,-82 943.25,-59 923.25,-59"/>
<text text-anchor="start" x="928.75" y="-64.7" font-family="arial" font-size="14.00">B</text>
<polygon fill="none" stroke="black" points="905.25,-36 905.25,-59 923.25,-59 923.25,-36 905.25,-36"/>
<text text-anchor="start" x="910.5" y="-41.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="923.25,-36 923.25,-59 943.25,-59 943.25,-36 923.25,-36"/>
<text text-anchor="start" x="928.38" y="-41.7" font-family="arial" font-size="14.00">C</text>
<polygon fill="none" stroke="black" points="905.25,-13 905.25,-36 923.25,-36 923.25,-13 905.25,-13"/>
<text text-anchor="start" x="910.5" y="-18.7" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="923.25,-13 923.25,-36 943.25,-36 943.25,-13 923.25,-13"/>
<text text-anchor="start" x="928.38" y="-18.7" font-family="arial" font-size="14.00">D</text>
</g>
<!-- C1&#45;&#45;F1 -->
<g id="edge2" class="edge">
<title>C1:e&#45;&#45;F1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M306,-199C373.53,-200.28 386.21,-233.28 450,-232"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M306,-201C371.66,-201 384.34,-234 450,-234"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M306,-203C369.79,-201.72 382.47,-234.72 450,-236"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M303,-198.75C370.75,-200.09 383.02,-235.09 447,-233.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M303,-200.75C368.86,-200.75 381.14,-235.75 447,-235.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M303,-202.75C366.98,-201.41 379.25,-236.41 447,-237.75"/>
</g>
<!-- C1&#45;&#45;F2 -->
<g id="edge4" class="edge">
<title>C1:e&#45;&#45;F2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M306,-174C371.34,-174.36 386.96,-185.36 450,-185"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M306,-176C370.19,-176 385.81,-187 450,-187"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M306,-178C369.04,-177.64 384.66,-188.64 450,-189"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M303,-173.75C368.44,-174.17 384,-186.17 447,-185.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M303,-175.75C367.22,-175.75 382.78,-187.75 447,-187.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M303,-177.75C366,-177.33 381.56,-189.33 447,-189.75"/>
</g>
<!-- C1&#45;&#45;F3 -->
<g id="edge6" class="edge">
<title>C1:e&#45;&#45;F3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M306,-149C369.04,-149.36 384.66,-138.36 450,-138"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M306,-151C370.19,-151 385.81,-140 450,-140"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M306,-153C371.34,-152.64 386.96,-141.64 450,-142"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M303,-148.75C366.04,-149.11 381.66,-138.11 447,-137.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M303,-150.75C367.19,-150.75 382.81,-139.75 447,-139.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M303,-152.75C368.34,-152.39 383.96,-141.39 447,-141.75"/>
</g>
<!-- C1&#45;&#45;F4 -->
<g id="edge8" class="edge">
<title>C1:e&#45;&#45;F4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M306,-124C369.79,-125.28 382.47,-92.28 450,-91"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M306,-126C371.66,-126 384.34,-93 450,-93"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M306,-128C373.53,-126.72 386.21,-93.72 450,-95"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M303,-123.75C366.88,-125.06 379.36,-91.06 447,-89.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M303,-125.75C368.76,-125.75 381.24,-91.75 447,-91.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M303,-127.75C370.64,-126.44 383.12,-92.44 447,-93.75"/>
</g>
<!-- C2&#45;&#45;X2 -->
<g id="edge10" class="edge">
<title>C2:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-303C831.76,-303.02 847.75,-301.02 912,-301"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M768,-305C832.01,-305 847.99,-303 912,-303"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-307C832.25,-306.98 848.24,-304.98 912,-305"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M761.25,-304.75C824.89,-304.78 840.87,-301.78 905.25,-301.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M761.25,-306.75C825.26,-306.75 841.24,-303.75 905.25,-303.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M761.25,-308.75C825.63,-308.72 841.61,-305.72 905.25,-305.75"/>
</g>
<!-- C2&#45;&#45;X2 -->
<g id="edge12" class="edge">
<title>C2:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-278C831.88,-278 847.87,-277 912,-277"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M768,-280C832,-280 848,-279 912,-279"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-282C832.13,-282 848.12,-281 912,-281"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M761.25,-279.75C825.13,-279.75 841.12,-278.75 905.25,-278.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M761.25,-281.75C825.25,-281.75 841.25,-280.75 905.25,-280.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M761.25,-283.75C825.38,-283.75 841.37,-282.75 905.25,-282.75"/>
</g>
<!-- C2&#45;&#45;X2 -->
<g id="edge14" class="edge">
<title>C2:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-253C832.13,-253 848.12,-254 912,-254"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M768,-255C832,-255 848,-256 912,-256"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-257C831.88,-257 847.87,-258 912,-258"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M761.25,-254.75C825.38,-254.75 841.37,-255.75 905.25,-255.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M761.25,-256.75C825.25,-256.75 841.25,-257.75 905.25,-257.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M761.25,-258.75C825.13,-258.75 841.12,-259.75 905.25,-259.75"/>
</g>
<!-- C2&#45;&#45;X2 -->
<g id="edge16" class="edge">
<title>C2:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-228C832.38,-228.03 848.36,-231.03 912,-231"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M768,-230C832.01,-230 847.99,-233 912,-233"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-232C831.64,-231.97 847.62,-234.97 912,-235"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M761.25,-229.75C825.63,-229.78 841.61,-232.78 905.25,-232.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M761.25,-231.75C825.26,-231.75 841.24,-234.75 905.25,-234.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M761.25,-233.75C824.89,-233.72 840.87,-236.72 905.25,-236.75"/>
</g>
<!-- C3&#45;&#45;X3 -->
<g id="edge18" class="edge">
<title>C3:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-95C831.76,-95.02 847.75,-93.02 912,-93"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M768,-97C832.01,-97 847.99,-95 912,-95"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-99C832.25,-98.98 848.24,-96.98 912,-97"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M761.25,-94.75C824.89,-94.78 840.87,-91.78 905.25,-91.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M761.25,-96.75C825.26,-96.75 841.24,-93.75 905.25,-93.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M761.25,-98.75C825.63,-98.72 841.61,-95.72 905.25,-95.75"/>
</g>
<!-- C3&#45;&#45;X3 -->
<g id="edge20" class="edge">
<title>C3:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-70C831.88,-70 847.87,-69 912,-69"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M768,-72C832,-72 848,-71 912,-71"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-74C832.13,-74 848.12,-73 912,-73"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M761.25,-69.75C825.13,-69.75 841.12,-68.75 905.25,-68.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M761.25,-71.75C825.25,-71.75 841.25,-70.75 905.25,-70.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M761.25,-73.75C825.38,-73.75 841.37,-72.75 905.25,-72.75"/>
</g>
<!-- C3&#45;&#45;X3 -->
<g id="edge22" class="edge">
<title>C3:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-45C832.13,-45 848.12,-46 912,-46"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M768,-47C832,-47 848,-48 912,-48"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-49C831.88,-49 847.87,-50 912,-50"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M761.25,-44.75C825.38,-44.75 841.37,-45.75 905.25,-45.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M761.25,-46.75C825.25,-46.75 841.25,-47.75 905.25,-47.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M761.25,-48.75C825.13,-48.75 841.12,-49.75 905.25,-49.75"/>
</g>
<!-- C3&#45;&#45;X3 -->
<g id="edge24" class="edge">
<title>C3:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-20C832.38,-20.03 848.36,-23.03 912,-23"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M768,-22C832.01,-22 847.99,-25 912,-25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M768,-24C831.64,-23.97 847.62,-26.97 912,-27"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M761.25,-19.75C825.63,-19.78 841.61,-22.78 905.25,-22.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M761.25,-21.75C825.26,-21.75 841.24,-24.75 905.25,-24.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M761.25,-23.75C824.89,-23.72 840.87,-26.72 905.25,-26.75"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 27 KiB

858
examples/ex14.html generated

File diff suppressed because it is too large Load Diff

BIN
examples/ex14.png generated

Binary file not shown.

Before

Width:  |  Height:  |  Size: 201 KiB

After

Width:  |  Height:  |  Size: 202 KiB

858
examples/ex14.svg generated

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 49 KiB

After

Width:  |  Height:  |  Size: 52 KiB

View File

@ -39,6 +39,10 @@ setup(
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Utilities",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],

View File

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
from dataclasses import InitVar, dataclass, field
from dataclasses import InitVar, asdict, dataclass, field, replace
from enum import Enum, auto
from pathlib import Path
from typing import Dict, List, Optional, Tuple, Union
@ -47,6 +47,19 @@ class Metadata(dict):
pass
@dataclass
class Terminology:
"""Terms that the user might want to override"""
pin: Optional[PlainText] = None
wire: Optional[PlainText] = None
shield: Optional[PlainText] = None
def fully_populated(self):
"""Return a copy where empty field values are replaced with their names"""
return replace(self, **{k: v or k for k, v in asdict(self).items()})
@dataclass
class Options:
fontname: PlainText = "arial"
@ -58,6 +71,7 @@ class Options:
color_mode: ColorMode = "SHORT"
mini_bom_mode: bool = True
template_separator: str = "."
terminology: Optional[Terminology] = None
def __post_init__(self):
if not self.bgcolor_node:
@ -68,6 +82,7 @@ class Options:
self.bgcolor_cable = self.bgcolor_node
if not self.bgcolor_bundle:
self.bgcolor_bundle = self.bgcolor_cable
self.terminology = Terminology(**(self.terminology or {}))
@dataclass
@ -212,9 +227,11 @@ class Connector:
raise Exception("Loops must be between exactly two pins!")
for pin in loop:
if pin not in self.pins:
raise Exception(f'Unknown loop pin "{pin}" for connector "{self.name}"!')
raise Exception(
f'Unknown loop pin "{pin}" for connector "{self.name}"!'
)
# Make sure loop connected pins are not hidden.
self.activate_pin(pin)
self.activate_pin(pin, None)
for i, item in enumerate(self.additional_components):
if isinstance(item, dict):
@ -234,7 +251,7 @@ class Connector:
return self.pincount
elif qty_multiplier == "populated":
return sum(self.visible_pins.values())
elif qty_multiplier == 'unpopulated':
elif qty_multiplier == "unpopulated":
return max(0, self.pincount - sum(self.visible_pins.values()))
else:
raise ValueError(
@ -316,7 +333,7 @@ class Cable:
f"Warning: Cable {self.name} length_unit={self.length_unit} is ignored because its length contains {u}"
)
self.length_unit = u
elif not any(isinstance(self.length, t) for t in [int, float]):
elif not isinstance(self.length, (int, float)):
raise Exception(f"Cable {self.name} length has a non-numeric value")
elif self.length_unit is None:
self.length_unit = "m"

View File

@ -53,6 +53,17 @@ from wireviz.wv_helper import (
)
from wireviz.wv_html import generate_html_output
OLD_CONNECTOR_ATTR = {
"pinout": "was renamed to 'pinlabels' in v0.2",
"pinnumbers": "was renamed to 'pins' in v0.2",
"autogenerate": "is replaced with new syntax in v0.4",
}
def check_old(node: str, old_attr: dict, args: dict) -> None:
"""Raise exception for any outdated attributes in args."""
for attr, descr in old_attr.items():
if attr in args:
raise ValueError(f"'{attr}' in {node}: '{attr}' {descr}")
@dataclass
class Harness:
@ -66,8 +77,10 @@ class Harness:
self.mates = []
self._bom = [] # Internal Cache for generated bom
self.additional_bom_items = []
self.terminology = self.options.terminology.fully_populated()
def add_connector(self, name: str, *args, **kwargs) -> None:
check_old(f"Connector '{name}'", OLD_CONNECTOR_ATTR, kwargs)
self.connectors[name] = Connector(name, *args, **kwargs)
def add_cable(self, name: str, *args, **kwargs) -> None:
@ -94,7 +107,7 @@ class Harness:
to_pin: (int, str),
) -> None:
# check from and to connectors
for (name, pin) in zip([from_name, to_name], [from_pin, to_pin]):
for name, pin in zip([from_name, to_name], [from_pin, to_pin]):
if name is not None and name in self.connectors:
connector = self.connectors[name]
# check if provided name is ambiguous
@ -188,7 +201,7 @@ class Harness:
html_line_breaks(pn_info_string(HEADER_SPN, connector.supplier, connector.spn))],
[html_line_breaks(connector.type),
html_line_breaks(connector.subtype),
f'{connector.pincount}-pin' if connector.show_pincount else None,
f'{connector.pincount}-{self.terminology.pin}' if connector.show_pincount else None,
translate_color(connector.color, self.options.color_mode) if connector.color else None,
html_colorbar(connector.color)],
'<!-- connector table -->' if connector.style != 'simple' else None,
@ -372,16 +385,20 @@ class Harness:
)
manufacturer_info = pn_info_string(
HEADER_MPN,
cable.manufacturer[i - 1]
if isinstance(cable.manufacturer, list)
else None,
(
cable.manufacturer[i - 1]
if isinstance(cable.manufacturer, list)
else None
),
cable.mpn[i - 1] if isinstance(cable.mpn, list) else None,
)
supplier_info = pn_info_string(
HEADER_SPN,
cable.supplier[i - 1]
if isinstance(cable.supplier, list)
else None,
(
cable.supplier[i - 1]
if isinstance(cable.supplier, list)
else None
),
cable.spn[i - 1] if isinstance(cable.spn, list) else None,
)
if manufacturer_info:
@ -403,7 +420,7 @@ class Harness:
wirehtml.append(" <tr><td>&nbsp;</td></tr>") # spacer
wirehtml.append(" <tr>")
wirehtml.append(" <td><!-- s_in --></td>")
wirehtml.append(" <td>Shield</td>")
wirehtml.append(f" <td>{self.terminology.shield.title()}</td>")
wirehtml.append(" <td><!-- s_out --></td>")
wirehtml.append(" </tr>")
if isinstance(cable.shield, str):
@ -444,9 +461,11 @@ class Harness:
# shield is shown with specified color and black borders, or as a thin black wire otherwise
dot.attr(
"edge",
color=":".join(["#000000", shield_color_hex, "#000000"])
if isinstance(cable.shield, str)
else "#000000",
color=(
":".join(["#000000", shield_color_hex, "#000000"])
if isinstance(cable.shield, str)
else "#000000"
),
)
if connection.from_pin is not None: # connect to left
from_connector = self.connectors[connection.from_name]
@ -650,7 +669,6 @@ class Harness:
graph = self.graph
return embed_svg_images(graph.pipe(format="svg").decode("utf-8"), Path.cwd())
def output(
self,
filename: (str, Path),

View File

@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
# Please don't import anything in this file to avoid issues when it is imported in setup.py
__version__ = "0.4"
__version__ = "0.5-dev"
CMD_NAME = "wireviz" # Lower case command and module name
APP_NAME = "WireViz" # Application name in texts meant to be human readable

View File

@ -115,8 +115,11 @@ def parse(
# keep track of auto-generated designators to avoid duplicates
autogenerated_designators = {}
# When title is not given, either deduce it from filename, or use default text.
if "title" not in harness.metadata:
harness.metadata["title"] = Path(yaml_file).stem if yaml_file else ""
harness.metadata["title"] = (
Path(yaml_file).stem if yaml_file else "WireViz diagram and BOM"
)
# add items
# parse YAML input file ====================================================
@ -201,7 +204,6 @@ def parse(
expected_type = alternating_types[1 - alternating_types.index(expected_type)]
for connection_set in connection_sets:
# figure out number of parallel connections within this set
connectioncount = []
for entry in connection_set:
@ -407,6 +409,7 @@ def _get_yaml_data_and_path(inp: Union[str, Path, Dict]) -> (Dict, Path):
# when trying to expand and resolve it as a path.
# Catch this error, but raise any others
from errno import ENAMETOOLONG
if type(e) is OSError and e.errno != ENAMETOOLONG:
raise e
# file does not exist; assume inp is a YAML string

View File

@ -36,7 +36,11 @@ def get_additional_component_table(
if component.additional_components:
rows.append(["Additional components"])
# Ignore components that have qty 0
for part in [part for part in component.additional_components if component.get_qty_multiplier(part.qty_multiplier)]:
for part in [
part
for part in component.additional_components
if component.get_qty_multiplier(part.qty_multiplier)
]:
common_args = {
"qty": part.qty * component.get_qty_multiplier(part.qty_multiplier),
"unit": part.unit,
@ -65,7 +69,11 @@ def get_additional_component_bom(component: Union[Connector, Cable]) -> List[BOM
"""Return a list of BOM entries with additional components."""
bom_entries = []
# Ignore components that have qty 0
for part in [part for part in component.additional_components if component.get_qty_multiplier(part.qty_multiplier)]:
for part in [
part
for part in component.additional_components
if component.get_qty_multiplier(part.qty_multiplier)
]:
bom_entries.append(
{
"description": part.description,
@ -99,7 +107,11 @@ def generate_bom(harness: "Harness") -> List[BOMEntry]:
"Connector"
+ (f", {connector.type}" if connector.type else "")
+ (f", {connector.subtype}" if connector.subtype else "")
+ (f", {connector.pincount} pins" if connector.show_pincount else "")
+ (
f", {connector.pincount} {harness.terminology.pin}s"
if connector.show_pincount
else ""
)
+ (
f", {translate_color(connector.color, harness.options.color_mode)}"
if connector.color
@ -132,7 +144,7 @@ def generate_bom(harness: "Harness") -> List[BOMEntry]:
if cable.gauge
else " wires"
)
+ (" shielded" if cable.shield else "")
+ (f" {harness.terminology.shield}ed" if cable.shield else "")
+ (
f", {translate_color(cable.color, harness.options.color_mode)}"
if cable.color
@ -152,7 +164,7 @@ def generate_bom(harness: "Harness") -> List[BOMEntry]:
# add each wire from the bundle to the bom
for index, color in enumerate(cable.colors):
description = (
"Wire"
harness.terminology.wire.title()
+ (f", {cable.type}" if cable.type else "")
+ (f", {cable.gauge} {cable.gauge_unit}" if cable.gauge else "")
+ (

View File

@ -14,11 +14,11 @@ from wireviz import APP_NAME, __version__
from wireviz.wv_helper import open_file_read
format_codes = {
"c": "csv",
# "c": "csv",
"g": "gv",
"h": "html",
"p": "png",
"P": "pdf",
# "P": "pdf",
"s": "svg",
"t": "tsv",
}
@ -28,7 +28,11 @@ epilog += "following characters to specify which file types to output:\n"
epilog += ", ".join([f"{key} ({value.upper()})" for key, value in format_codes.items()])
@click.command(epilog=epilog, no_args_is_help=True)
@click.command(
epilog=epilog,
no_args_is_help=True,
context_settings=dict(help_option_names=["-h", "--help"]),
)
@click.argument("file", nargs=-1)
@click.option(
"-f",

View File

@ -28,7 +28,7 @@ COLOR_CODES = {
"BUVT", "VTBU", "OGVT", "VTOG", "GNVT", "VTGN", "BNVT", "VTBN", "SLVT", "VTSL",
],
"TELALT": [ # 25x2: Tip and then ring of each pair
"WHBU", "BU", "WHOG", "OG", "WHGN", "GN", "WHBN", "BN", "WHSL", "SL",
"WHBU", "BU", "WHOG", "OG", "WHGN", "GN", "WHBN", "BN", "WHSL", "SL",
"RDBU", "BURD", "RDOG", "OGRD", "RDGN", "GNRD", "RDBN", "BNRD", "RDSL", "SLRD",
"BKBU", "BUBK", "BKOG", "OGBK", "BKGN", "GNBK", "BKBN", "BNBK", "BKSL", "SLBK",
"YEBU", "BUYE", "YEOG", "OGYE", "YEGN", "GNYE", "YEBN", "BNYE", "YESL", "SLYE",
@ -156,7 +156,7 @@ def get_color_hex(input: Colors, pad: bool = False) -> List[str]:
if len(output) == 2: # Give wires with EXACTLY 2 colors that striped look.
output += output[:1]
elif pad and len(output) == 1: # Hacky style fix: Give single color wires
output *= 3 # a triple-up so that wires are the same size.
output *= 3 # a triple-up so that wires are the same size
return output

View File

@ -97,9 +97,9 @@ def generate_html_output(
if isinstance(entry, Dict):
replacements[f"<!-- %{item}_{index+1}% -->"] = str(category)
for entry_key, entry_value in entry.items():
replacements[
f"<!-- %{item}_{index+1}_{entry_key}% -->"
] = html_line_breaks(str(entry_value))
replacements[f"<!-- %{item}_{index+1}_{entry_key}% -->"] = (
html_line_breaks(str(entry_value))
)
replacements['"sheetsize_default"'] = '"{}"'.format(
metadata.get("template", {}).get("sheetsize", "")

176
tutorial/tutorial01.html generated
View File

@ -30,139 +30,139 @@
<div id="diagram">
<!-- XML and DOCTYPE declarations from SVG file removed -->
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="484pt" height="192pt"
viewBox="0.00 0.00 484.00 192.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 188)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-188 480,-188 480,4 -4,4"/>
<svg width="479pt" height="194pt"
viewBox="0.00 0.00 479.00 193.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 189.5)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-189.5 475,-189.5 475,4 -4,4"/>
<!-- X1 -->
<g id="node1" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="39,-152 0,-152 0,-14 39,-14 39,-152"/>
<polygon fill="none" stroke="black" points="0.5,-129 0.5,-152 39.5,-152 39.5,-129 0.5,-129"/>
<text text-anchor="start" x="11.5" y="-136.8" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0.5,-106 0.5,-129 39.5,-129 39.5,-106 0.5,-106"/>
<text text-anchor="start" x="4.5" y="-113.8" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="0.5,-83 0.5,-106 39.5,-106 39.5,-83 0.5,-83"/>
<text text-anchor="start" x="16" y="-90.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0.5,-60 0.5,-83 39.5,-83 39.5,-60 0.5,-60"/>
<text text-anchor="start" x="16" y="-67.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0.5,-37 0.5,-60 39.5,-60 39.5,-37 0.5,-37"/>
<text text-anchor="start" x="16" y="-44.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0.5,-14 0.5,-37 39.5,-37 39.5,-14 0.5,-14"/>
<text text-anchor="start" x="16" y="-21.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="#ffffff" stroke="black" points="38,-155 0,-155 0,-12.5 38,-12.5 38,-155"/>
<polygon fill="none" stroke="black" points="0,-131.25 0,-155 38,-155 38,-131.25 0,-131.25"/>
<text text-anchor="start" x="10.75" y="-137.7" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-107.5 0,-131.25 38,-131.25 38,-107.5 0,-107.5"/>
<text text-anchor="start" x="4" y="-113.95" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-83.75 0,-107.5 38,-107.5 38,-83.75 0,-83.75"/>
<text text-anchor="start" x="15.25" y="-90.2" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-60 0,-83.75 38,-83.75 38,-60 0,-60"/>
<text text-anchor="start" x="15.25" y="-66.45" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0,-36.25 0,-60 38,-60 38,-36.25 0,-36.25"/>
<text text-anchor="start" x="15.25" y="-42.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-12.5 0,-36.25 38,-36.25 38,-12.5 0,-12.5"/>
<text text-anchor="start" x="15.25" y="-18.95" font-family="arial" font-size="14.00">4</text>
</g>
<!-- W1 -->
<g id="node3" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" points="293,-184 183,-184 183,0 293,0 293,-184"/>
<polygon fill="none" stroke="black" points="183,-161 183,-184 293,-184 293,-161 183,-161"/>
<text text-anchor="start" x="227" y="-168.8" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="183,-138 183,-161 234,-161 234,-138 183,-138"/>
<text text-anchor="start" x="201" y="-145.8" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="234,-138 234,-161 293,-161 293,-138 234,-138"/>
<text text-anchor="start" x="251.5" y="-145.8" font-family="arial" font-size="14.00">1 m</text>
<text text-anchor="start" x="197" y="-124.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="185" y="-105.8" font-family="arial" font-size="14.00">X1:1</text>
<text text-anchor="start" x="217" y="-105.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1 &#160;&#160;&#160;</text>
<text text-anchor="start" x="263" y="-105.8" font-family="arial" font-size="14.00">X2:1</text>
<polygon fill="#000000" stroke="none" points="183,-98 183,-100 293,-100 293,-98 183,-98"/>
<polygon fill="#ffffff" stroke="none" points="183,-96 183,-98 293,-98 293,-96 183,-96"/>
<polygon fill="#000000" stroke="none" points="183,-94 183,-96 293,-96 293,-94 183,-94"/>
<text text-anchor="start" x="185" y="-80.8" font-family="arial" font-size="14.00">X1:2</text>
<text text-anchor="start" x="217" y="-80.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2 &#160;&#160;&#160;</text>
<text text-anchor="start" x="263" y="-80.8" font-family="arial" font-size="14.00">X2:2</text>
<polygon fill="#000000" stroke="none" points="183,-73 183,-75 293,-75 293,-73 183,-73"/>
<polygon fill="#ffffff" stroke="none" points="183,-71 183,-73 293,-73 293,-71 183,-71"/>
<polygon fill="#000000" stroke="none" points="183,-69 183,-71 293,-71 293,-69 183,-69"/>
<text text-anchor="start" x="185" y="-55.8" font-family="arial" font-size="14.00">X1:3</text>
<text text-anchor="start" x="217" y="-55.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3 &#160;&#160;&#160;</text>
<text text-anchor="start" x="263" y="-55.8" font-family="arial" font-size="14.00">X2:3</text>
<polygon fill="#000000" stroke="none" points="183,-48 183,-50 293,-50 293,-48 183,-48"/>
<polygon fill="#ffffff" stroke="none" points="183,-46 183,-48 293,-48 293,-46 183,-46"/>
<polygon fill="#000000" stroke="none" points="183,-44 183,-46 293,-46 293,-44 183,-44"/>
<text text-anchor="start" x="185" y="-30.8" font-family="arial" font-size="14.00">X1:4</text>
<text text-anchor="start" x="217" y="-30.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4 &#160;&#160;&#160;</text>
<text text-anchor="start" x="263" y="-30.8" font-family="arial" font-size="14.00">X2:4</text>
<polygon fill="#000000" stroke="none" points="183,-23 183,-25 293,-25 293,-23 183,-23"/>
<polygon fill="#ffffff" stroke="none" points="183,-21 183,-23 293,-23 293,-21 183,-21"/>
<polygon fill="#000000" stroke="none" points="183,-19 183,-21 293,-21 293,-19 183,-19"/>
<text text-anchor="start" x="197" y="-5.8" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" points="289,-185.5 182,-185.5 182,0 289,0 289,-185.5"/>
<polygon fill="none" stroke="black" points="182,-161.75 182,-185.5 289,-185.5 289,-161.75 182,-161.75"/>
<text text-anchor="start" x="225" y="-168.2" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="182,-138 182,-161.75 231,-161.75 231,-138 182,-138"/>
<text text-anchor="start" x="199.38" y="-144.45" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="231,-138 231,-161.75 289,-161.75 289,-138 231,-138"/>
<text text-anchor="start" x="248.38" y="-144.45" font-family="arial" font-size="14.00">1 m</text>
<text text-anchor="start" x="195.62" y="-122.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="183.62" y="-103.7" font-family="arial" font-size="14.00">X1:1</text>
<text text-anchor="start" x="214.88" y="-103.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1 &#160;&#160;&#160;</text>
<text text-anchor="start" x="259.62" y="-103.7" font-family="arial" font-size="14.00">X2:1</text>
<polygon fill="#000000" stroke="none" points="182,-98 182,-100 289,-100 289,-98 182,-98"/>
<polygon fill="#ffffff" stroke="none" points="182,-96 182,-98 289,-98 289,-96 182,-96"/>
<polygon fill="#000000" stroke="none" points="182,-94 182,-96 289,-96 289,-94 182,-94"/>
<text text-anchor="start" x="183.62" y="-78.7" font-family="arial" font-size="14.00">X1:2</text>
<text text-anchor="start" x="214.88" y="-78.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2 &#160;&#160;&#160;</text>
<text text-anchor="start" x="259.62" y="-78.7" font-family="arial" font-size="14.00">X2:2</text>
<polygon fill="#000000" stroke="none" points="182,-73 182,-75 289,-75 289,-73 182,-73"/>
<polygon fill="#ffffff" stroke="none" points="182,-71 182,-73 289,-73 289,-71 182,-71"/>
<polygon fill="#000000" stroke="none" points="182,-69 182,-71 289,-71 289,-69 182,-69"/>
<text text-anchor="start" x="183.62" y="-53.7" font-family="arial" font-size="14.00">X1:3</text>
<text text-anchor="start" x="214.88" y="-53.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3 &#160;&#160;&#160;</text>
<text text-anchor="start" x="259.62" y="-53.7" font-family="arial" font-size="14.00">X2:3</text>
<polygon fill="#000000" stroke="none" points="182,-48 182,-50 289,-50 289,-48 182,-48"/>
<polygon fill="#ffffff" stroke="none" points="182,-46 182,-48 289,-48 289,-46 182,-46"/>
<polygon fill="#000000" stroke="none" points="182,-44 182,-46 289,-46 289,-44 182,-44"/>
<text text-anchor="start" x="183.62" y="-28.7" font-family="arial" font-size="14.00">X1:4</text>
<text text-anchor="start" x="214.88" y="-28.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4 &#160;&#160;&#160;</text>
<text text-anchor="start" x="259.62" y="-28.7" font-family="arial" font-size="14.00">X2:4</text>
<polygon fill="#000000" stroke="none" points="182,-23 182,-25 289,-25 289,-23 182,-23"/>
<polygon fill="#ffffff" stroke="none" points="182,-21 182,-23 289,-23 289,-21 182,-21"/>
<polygon fill="#000000" stroke="none" points="182,-19 182,-21 289,-21 289,-19 182,-19"/>
<text text-anchor="start" x="195.62" y="-3.7" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge1" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-93C103.25,-93.02 119.24,-95.02 183,-95"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M39,-95C103.01,-95 118.99,-97 183,-97"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-97C102.76,-96.98 118.75,-98.98 183,-99"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M38,-93.75C102.13,-93.75 118.12,-94.75 182,-94.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M38,-95.75C102,-95.75 118,-96.75 182,-96.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M38,-97.75C101.88,-97.75 117.87,-98.75 182,-98.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge3" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-69C103.13,-69 119.12,-70 183,-70"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M39,-71C103,-71 119,-72 183,-72"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-73C102.88,-73 118.87,-74 183,-74"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M38,-69.75C102,-69.75 118,-69.75 182,-69.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M38,-71.75C102,-71.75 118,-71.75 182,-71.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M38,-73.75C102,-73.75 118,-73.75 182,-73.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge5" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-46C102.88,-46 118.87,-45 183,-45"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M39,-48C103,-48 119,-47 183,-47"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-50C103.13,-50 119.12,-49 183,-49"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M38,-45.75C101.88,-45.75 117.87,-44.75 182,-44.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M38,-47.75C102,-47.75 118,-46.75 182,-46.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M38,-49.75C102.13,-49.75 118.12,-48.75 182,-48.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge7" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-23C102.64,-23.03 118.62,-20.03 183,-20"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M39,-25C103.01,-25 118.99,-22 183,-22"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-27C103.38,-26.97 119.36,-23.97 183,-24"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M38,-22.75C101.64,-22.78 117.62,-19.78 182,-19.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M38,-24.75C102.01,-24.75 117.99,-21.75 182,-21.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M38,-26.75C102.38,-26.72 118.36,-23.72 182,-23.75"/>
</g>
<!-- X2 -->
<g id="node2" class="node">
<title>X2</title>
<polygon fill="#ffffff" stroke="black" points="476,-152 437,-152 437,-14 476,-14 476,-152"/>
<polygon fill="none" stroke="black" points="437.5,-129 437.5,-152 476.5,-152 476.5,-129 437.5,-129"/>
<text text-anchor="start" x="448.5" y="-136.8" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="437.5,-106 437.5,-129 476.5,-129 476.5,-106 437.5,-106"/>
<text text-anchor="start" x="441.5" y="-113.8" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="437.5,-83 437.5,-106 476.5,-106 476.5,-83 437.5,-83"/>
<text text-anchor="start" x="453" y="-90.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="437.5,-60 437.5,-83 476.5,-83 476.5,-60 437.5,-60"/>
<text text-anchor="start" x="453" y="-67.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="437.5,-37 437.5,-60 476.5,-60 476.5,-37 437.5,-37"/>
<text text-anchor="start" x="453" y="-44.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="437.5,-14 437.5,-37 476.5,-37 476.5,-14 437.5,-14"/>
<text text-anchor="start" x="453" y="-21.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="#ffffff" stroke="black" points="471,-155 433,-155 433,-12.5 471,-12.5 471,-155"/>
<polygon fill="none" stroke="black" points="433,-131.25 433,-155 471,-155 471,-131.25 433,-131.25"/>
<text text-anchor="start" x="443.75" y="-137.7" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="433,-107.5 433,-131.25 471,-131.25 471,-107.5 433,-107.5"/>
<text text-anchor="start" x="437" y="-113.95" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="433,-83.75 433,-107.5 471,-107.5 471,-83.75 433,-83.75"/>
<text text-anchor="start" x="448.25" y="-90.2" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="433,-60 433,-83.75 471,-83.75 471,-60 433,-60"/>
<text text-anchor="start" x="448.25" y="-66.45" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="433,-36.25 433,-60 471,-60 471,-36.25 433,-36.25"/>
<text text-anchor="start" x="448.25" y="-42.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="433,-12.5 433,-36.25 471,-36.25 471,-12.5 433,-12.5"/>
<text text-anchor="start" x="448.25" y="-18.95" font-family="arial" font-size="14.00">4</text>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M293,-95C356.76,-95.02 372.75,-93.02 437,-93"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M293,-97C357.01,-97 372.99,-95 437,-95"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M293,-99C357.25,-98.98 373.24,-96.98 437,-97"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-94.75C352.88,-94.75 368.87,-93.75 433,-93.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-96.75C353,-96.75 369,-95.75 433,-95.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-98.75C353.13,-98.75 369.12,-97.75 433,-97.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M293,-70C356.88,-70 372.87,-69 437,-69"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M293,-72C357,-72 373,-71 437,-71"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M293,-74C357.13,-74 373.12,-73 437,-73"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-69.75C353,-69.75 369,-69.75 433,-69.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-71.75C353,-71.75 369,-71.75 433,-71.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-73.75C353,-73.75 369,-73.75 433,-73.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge6" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M293,-45C357.13,-45 373.12,-46 437,-46"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M293,-47C357,-47 373,-48 437,-48"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M293,-49C356.88,-49 372.87,-50 437,-50"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-44.75C353.13,-44.75 369.12,-45.75 433,-45.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-46.75C353,-46.75 369,-47.75 433,-47.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-48.75C352.88,-48.75 368.87,-49.75 433,-49.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge8" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M293,-20C357.38,-20.03 373.36,-23.03 437,-23"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M293,-22C357.01,-22 372.99,-25 437,-25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M293,-24C356.64,-23.97 372.62,-26.97 437,-27"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-19.75C353.38,-19.78 369.36,-22.78 433,-22.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-21.75C353.01,-21.75 368.99,-24.75 433,-24.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-23.75C352.64,-23.72 368.62,-26.72 433,-26.75"/>
</g>
</g>
</svg>

BIN
tutorial/tutorial01.png generated

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 16 KiB

176
tutorial/tutorial01.svg generated
View File

@ -1,139 +1,139 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="484pt" height="192pt"
viewBox="0.00 0.00 484.00 192.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 188)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-188 480,-188 480,4 -4,4"/>
<svg width="479pt" height="194pt"
viewBox="0.00 0.00 479.00 193.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 189.5)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-189.5 475,-189.5 475,4 -4,4"/>
<!-- X1 -->
<g id="node1" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="39,-152 0,-152 0,-14 39,-14 39,-152"/>
<polygon fill="none" stroke="black" points="0.5,-129 0.5,-152 39.5,-152 39.5,-129 0.5,-129"/>
<text text-anchor="start" x="11.5" y="-136.8" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0.5,-106 0.5,-129 39.5,-129 39.5,-106 0.5,-106"/>
<text text-anchor="start" x="4.5" y="-113.8" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="0.5,-83 0.5,-106 39.5,-106 39.5,-83 0.5,-83"/>
<text text-anchor="start" x="16" y="-90.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0.5,-60 0.5,-83 39.5,-83 39.5,-60 0.5,-60"/>
<text text-anchor="start" x="16" y="-67.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0.5,-37 0.5,-60 39.5,-60 39.5,-37 0.5,-37"/>
<text text-anchor="start" x="16" y="-44.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0.5,-14 0.5,-37 39.5,-37 39.5,-14 0.5,-14"/>
<text text-anchor="start" x="16" y="-21.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="#ffffff" stroke="black" points="38,-155 0,-155 0,-12.5 38,-12.5 38,-155"/>
<polygon fill="none" stroke="black" points="0,-131.25 0,-155 38,-155 38,-131.25 0,-131.25"/>
<text text-anchor="start" x="10.75" y="-137.7" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-107.5 0,-131.25 38,-131.25 38,-107.5 0,-107.5"/>
<text text-anchor="start" x="4" y="-113.95" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-83.75 0,-107.5 38,-107.5 38,-83.75 0,-83.75"/>
<text text-anchor="start" x="15.25" y="-90.2" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-60 0,-83.75 38,-83.75 38,-60 0,-60"/>
<text text-anchor="start" x="15.25" y="-66.45" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0,-36.25 0,-60 38,-60 38,-36.25 0,-36.25"/>
<text text-anchor="start" x="15.25" y="-42.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-12.5 0,-36.25 38,-36.25 38,-12.5 0,-12.5"/>
<text text-anchor="start" x="15.25" y="-18.95" font-family="arial" font-size="14.00">4</text>
</g>
<!-- W1 -->
<g id="node3" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" points="293,-184 183,-184 183,0 293,0 293,-184"/>
<polygon fill="none" stroke="black" points="183,-161 183,-184 293,-184 293,-161 183,-161"/>
<text text-anchor="start" x="227" y="-168.8" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="183,-138 183,-161 234,-161 234,-138 183,-138"/>
<text text-anchor="start" x="201" y="-145.8" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="234,-138 234,-161 293,-161 293,-138 234,-138"/>
<text text-anchor="start" x="251.5" y="-145.8" font-family="arial" font-size="14.00">1 m</text>
<text text-anchor="start" x="197" y="-124.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="185" y="-105.8" font-family="arial" font-size="14.00">X1:1</text>
<text text-anchor="start" x="217" y="-105.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1 &#160;&#160;&#160;</text>
<text text-anchor="start" x="263" y="-105.8" font-family="arial" font-size="14.00">X2:1</text>
<polygon fill="#000000" stroke="none" points="183,-98 183,-100 293,-100 293,-98 183,-98"/>
<polygon fill="#ffffff" stroke="none" points="183,-96 183,-98 293,-98 293,-96 183,-96"/>
<polygon fill="#000000" stroke="none" points="183,-94 183,-96 293,-96 293,-94 183,-94"/>
<text text-anchor="start" x="185" y="-80.8" font-family="arial" font-size="14.00">X1:2</text>
<text text-anchor="start" x="217" y="-80.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2 &#160;&#160;&#160;</text>
<text text-anchor="start" x="263" y="-80.8" font-family="arial" font-size="14.00">X2:2</text>
<polygon fill="#000000" stroke="none" points="183,-73 183,-75 293,-75 293,-73 183,-73"/>
<polygon fill="#ffffff" stroke="none" points="183,-71 183,-73 293,-73 293,-71 183,-71"/>
<polygon fill="#000000" stroke="none" points="183,-69 183,-71 293,-71 293,-69 183,-69"/>
<text text-anchor="start" x="185" y="-55.8" font-family="arial" font-size="14.00">X1:3</text>
<text text-anchor="start" x="217" y="-55.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3 &#160;&#160;&#160;</text>
<text text-anchor="start" x="263" y="-55.8" font-family="arial" font-size="14.00">X2:3</text>
<polygon fill="#000000" stroke="none" points="183,-48 183,-50 293,-50 293,-48 183,-48"/>
<polygon fill="#ffffff" stroke="none" points="183,-46 183,-48 293,-48 293,-46 183,-46"/>
<polygon fill="#000000" stroke="none" points="183,-44 183,-46 293,-46 293,-44 183,-44"/>
<text text-anchor="start" x="185" y="-30.8" font-family="arial" font-size="14.00">X1:4</text>
<text text-anchor="start" x="217" y="-30.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4 &#160;&#160;&#160;</text>
<text text-anchor="start" x="263" y="-30.8" font-family="arial" font-size="14.00">X2:4</text>
<polygon fill="#000000" stroke="none" points="183,-23 183,-25 293,-25 293,-23 183,-23"/>
<polygon fill="#ffffff" stroke="none" points="183,-21 183,-23 293,-23 293,-21 183,-21"/>
<polygon fill="#000000" stroke="none" points="183,-19 183,-21 293,-21 293,-19 183,-19"/>
<text text-anchor="start" x="197" y="-5.8" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" points="289,-185.5 182,-185.5 182,0 289,0 289,-185.5"/>
<polygon fill="none" stroke="black" points="182,-161.75 182,-185.5 289,-185.5 289,-161.75 182,-161.75"/>
<text text-anchor="start" x="225" y="-168.2" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="182,-138 182,-161.75 231,-161.75 231,-138 182,-138"/>
<text text-anchor="start" x="199.38" y="-144.45" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="231,-138 231,-161.75 289,-161.75 289,-138 231,-138"/>
<text text-anchor="start" x="248.38" y="-144.45" font-family="arial" font-size="14.00">1 m</text>
<text text-anchor="start" x="195.62" y="-122.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="183.62" y="-103.7" font-family="arial" font-size="14.00">X1:1</text>
<text text-anchor="start" x="214.88" y="-103.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1 &#160;&#160;&#160;</text>
<text text-anchor="start" x="259.62" y="-103.7" font-family="arial" font-size="14.00">X2:1</text>
<polygon fill="#000000" stroke="none" points="182,-98 182,-100 289,-100 289,-98 182,-98"/>
<polygon fill="#ffffff" stroke="none" points="182,-96 182,-98 289,-98 289,-96 182,-96"/>
<polygon fill="#000000" stroke="none" points="182,-94 182,-96 289,-96 289,-94 182,-94"/>
<text text-anchor="start" x="183.62" y="-78.7" font-family="arial" font-size="14.00">X1:2</text>
<text text-anchor="start" x="214.88" y="-78.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2 &#160;&#160;&#160;</text>
<text text-anchor="start" x="259.62" y="-78.7" font-family="arial" font-size="14.00">X2:2</text>
<polygon fill="#000000" stroke="none" points="182,-73 182,-75 289,-75 289,-73 182,-73"/>
<polygon fill="#ffffff" stroke="none" points="182,-71 182,-73 289,-73 289,-71 182,-71"/>
<polygon fill="#000000" stroke="none" points="182,-69 182,-71 289,-71 289,-69 182,-69"/>
<text text-anchor="start" x="183.62" y="-53.7" font-family="arial" font-size="14.00">X1:3</text>
<text text-anchor="start" x="214.88" y="-53.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3 &#160;&#160;&#160;</text>
<text text-anchor="start" x="259.62" y="-53.7" font-family="arial" font-size="14.00">X2:3</text>
<polygon fill="#000000" stroke="none" points="182,-48 182,-50 289,-50 289,-48 182,-48"/>
<polygon fill="#ffffff" stroke="none" points="182,-46 182,-48 289,-48 289,-46 182,-46"/>
<polygon fill="#000000" stroke="none" points="182,-44 182,-46 289,-46 289,-44 182,-44"/>
<text text-anchor="start" x="183.62" y="-28.7" font-family="arial" font-size="14.00">X1:4</text>
<text text-anchor="start" x="214.88" y="-28.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4 &#160;&#160;&#160;</text>
<text text-anchor="start" x="259.62" y="-28.7" font-family="arial" font-size="14.00">X2:4</text>
<polygon fill="#000000" stroke="none" points="182,-23 182,-25 289,-25 289,-23 182,-23"/>
<polygon fill="#ffffff" stroke="none" points="182,-21 182,-23 289,-23 289,-21 182,-21"/>
<polygon fill="#000000" stroke="none" points="182,-19 182,-21 289,-21 289,-19 182,-19"/>
<text text-anchor="start" x="195.62" y="-3.7" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge1" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-93C103.25,-93.02 119.24,-95.02 183,-95"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M39,-95C103.01,-95 118.99,-97 183,-97"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-97C102.76,-96.98 118.75,-98.98 183,-99"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M38,-93.75C102.13,-93.75 118.12,-94.75 182,-94.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M38,-95.75C102,-95.75 118,-96.75 182,-96.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M38,-97.75C101.88,-97.75 117.87,-98.75 182,-98.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge3" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-69C103.13,-69 119.12,-70 183,-70"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M39,-71C103,-71 119,-72 183,-72"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-73C102.88,-73 118.87,-74 183,-74"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M38,-69.75C102,-69.75 118,-69.75 182,-69.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M38,-71.75C102,-71.75 118,-71.75 182,-71.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M38,-73.75C102,-73.75 118,-73.75 182,-73.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge5" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-46C102.88,-46 118.87,-45 183,-45"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M39,-48C103,-48 119,-47 183,-47"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-50C103.13,-50 119.12,-49 183,-49"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M38,-45.75C101.88,-45.75 117.87,-44.75 182,-44.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M38,-47.75C102,-47.75 118,-46.75 182,-46.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M38,-49.75C102.13,-49.75 118.12,-48.75 182,-48.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge7" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-23C102.64,-23.03 118.62,-20.03 183,-20"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M39,-25C103.01,-25 118.99,-22 183,-22"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M39,-27C103.38,-26.97 119.36,-23.97 183,-24"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M38,-22.75C101.64,-22.78 117.62,-19.78 182,-19.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M38,-24.75C102.01,-24.75 117.99,-21.75 182,-21.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M38,-26.75C102.38,-26.72 118.36,-23.72 182,-23.75"/>
</g>
<!-- X2 -->
<g id="node2" class="node">
<title>X2</title>
<polygon fill="#ffffff" stroke="black" points="476,-152 437,-152 437,-14 476,-14 476,-152"/>
<polygon fill="none" stroke="black" points="437.5,-129 437.5,-152 476.5,-152 476.5,-129 437.5,-129"/>
<text text-anchor="start" x="448.5" y="-136.8" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="437.5,-106 437.5,-129 476.5,-129 476.5,-106 437.5,-106"/>
<text text-anchor="start" x="441.5" y="-113.8" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="437.5,-83 437.5,-106 476.5,-106 476.5,-83 437.5,-83"/>
<text text-anchor="start" x="453" y="-90.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="437.5,-60 437.5,-83 476.5,-83 476.5,-60 437.5,-60"/>
<text text-anchor="start" x="453" y="-67.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="437.5,-37 437.5,-60 476.5,-60 476.5,-37 437.5,-37"/>
<text text-anchor="start" x="453" y="-44.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="437.5,-14 437.5,-37 476.5,-37 476.5,-14 437.5,-14"/>
<text text-anchor="start" x="453" y="-21.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="#ffffff" stroke="black" points="471,-155 433,-155 433,-12.5 471,-12.5 471,-155"/>
<polygon fill="none" stroke="black" points="433,-131.25 433,-155 471,-155 471,-131.25 433,-131.25"/>
<text text-anchor="start" x="443.75" y="-137.7" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="433,-107.5 433,-131.25 471,-131.25 471,-107.5 433,-107.5"/>
<text text-anchor="start" x="437" y="-113.95" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="433,-83.75 433,-107.5 471,-107.5 471,-83.75 433,-83.75"/>
<text text-anchor="start" x="448.25" y="-90.2" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="433,-60 433,-83.75 471,-83.75 471,-60 433,-60"/>
<text text-anchor="start" x="448.25" y="-66.45" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="433,-36.25 433,-60 471,-60 471,-36.25 433,-36.25"/>
<text text-anchor="start" x="448.25" y="-42.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="433,-12.5 433,-36.25 471,-36.25 471,-12.5 433,-12.5"/>
<text text-anchor="start" x="448.25" y="-18.95" font-family="arial" font-size="14.00">4</text>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M293,-95C356.76,-95.02 372.75,-93.02 437,-93"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M293,-97C357.01,-97 372.99,-95 437,-95"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M293,-99C357.25,-98.98 373.24,-96.98 437,-97"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-94.75C352.88,-94.75 368.87,-93.75 433,-93.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-96.75C353,-96.75 369,-95.75 433,-95.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-98.75C353.13,-98.75 369.12,-97.75 433,-97.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M293,-70C356.88,-70 372.87,-69 437,-69"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M293,-72C357,-72 373,-71 437,-71"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M293,-74C357.13,-74 373.12,-73 437,-73"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-69.75C353,-69.75 369,-69.75 433,-69.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-71.75C353,-71.75 369,-71.75 433,-71.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-73.75C353,-73.75 369,-73.75 433,-73.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge6" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M293,-45C357.13,-45 373.12,-46 437,-46"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M293,-47C357,-47 373,-48 437,-48"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M293,-49C356.88,-49 372.87,-50 437,-50"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-44.75C353.13,-44.75 369.12,-45.75 433,-45.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-46.75C353,-46.75 369,-47.75 433,-47.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-48.75C352.88,-48.75 368.87,-49.75 433,-49.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge8" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M293,-20C357.38,-20.03 373.36,-23.03 437,-23"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M293,-22C357.01,-22 372.99,-25 437,-25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M293,-24C356.64,-23.97 372.62,-26.97 437,-27"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-19.75C353.38,-19.78 369.36,-22.78 433,-22.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M289,-21.75C353.01,-21.75 368.99,-24.75 433,-24.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M289,-23.75C352.64,-23.72 368.62,-26.72 433,-26.75"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 9.2 KiB

After

Width:  |  Height:  |  Size: 9.5 KiB

196
tutorial/tutorial02.html generated
View File

@ -30,149 +30,149 @@
<div id="diagram">
<!-- XML and DOCTYPE declarations from SVG file removed -->
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="847pt" height="192pt"
viewBox="0.00 0.00 847.00 192.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 188)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-188 843,-188 843,4 -4,4"/>
<svg width="841pt" height="194pt"
viewBox="0.00 0.00 840.50 193.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 189.5)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-189.5 836.5,-189.5 836.5,4 -4,4"/>
<!-- X1 -->
<g id="node1" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="182,-152 0,-152 0,-14 182,-14 182,-152"/>
<polygon fill="none" stroke="black" points="0,-129 0,-152 182,-152 182,-129 0,-129"/>
<text text-anchor="start" x="82.5" y="-136.8" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-106 0,-129 93,-129 93,-106 0,-106"/>
<text text-anchor="start" x="4" y="-113.8" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="93,-106 93,-129 143,-129 143,-106 93,-106"/>
<text text-anchor="start" x="97" y="-113.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="143,-106 143,-129 182,-129 182,-106 143,-106"/>
<text text-anchor="start" x="147" y="-113.8" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-83 0,-106 182,-106 182,-83 0,-83"/>
<text text-anchor="start" x="87" y="-90.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-60 0,-83 182,-83 182,-60 0,-60"/>
<text text-anchor="start" x="87" y="-67.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0,-37 0,-60 182,-60 182,-37 0,-37"/>
<text text-anchor="start" x="87" y="-44.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-14 0,-37 182,-37 182,-14 0,-14"/>
<text text-anchor="start" x="87" y="-21.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="#ffffff" stroke="black" points="180,-155 0,-155 0,-12.5 180,-12.5 180,-155"/>
<polygon fill="none" stroke="black" points="0,-131.25 0,-155 180,-155 180,-131.25 0,-131.25"/>
<text text-anchor="start" x="81.75" y="-137.7" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-107.5 0,-131.25 92.75,-131.25 92.75,-107.5 0,-107.5"/>
<text text-anchor="start" x="4" y="-113.95" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="92.75,-107.5 92.75,-131.25 142,-131.25 142,-107.5 92.75,-107.5"/>
<text text-anchor="start" x="96.75" y="-113.95" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="142,-107.5 142,-131.25 180,-131.25 180,-107.5 142,-107.5"/>
<text text-anchor="start" x="146" y="-113.95" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-83.75 0,-107.5 180,-107.5 180,-83.75 0,-83.75"/>
<text text-anchor="start" x="86.25" y="-90.2" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-60 0,-83.75 180,-83.75 180,-60 0,-60"/>
<text text-anchor="start" x="86.25" y="-66.45" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0,-36.25 0,-60 180,-60 180,-36.25 0,-36.25"/>
<text text-anchor="start" x="86.25" y="-42.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-12.5 0,-36.25 180,-36.25 180,-12.5 0,-12.5"/>
<text text-anchor="start" x="86.25" y="-18.95" font-family="arial" font-size="14.00">4</text>
</g>
<!-- W1 -->
<g id="node3" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" points="513,-184 326,-184 326,0 513,0 513,-184"/>
<polygon fill="none" stroke="black" points="326.5,-161 326.5,-184 513.5,-184 513.5,-161 326.5,-161"/>
<text text-anchor="start" x="409" y="-168.8" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="326.5,-138 326.5,-161 349.5,-161 349.5,-138 326.5,-138"/>
<text text-anchor="start" x="330.5" y="-145.8" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="349.5,-138 349.5,-161 481.5,-161 481.5,-138 349.5,-138"/>
<text text-anchor="start" x="353.5" y="-145.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
<polygon fill="none" stroke="black" points="481.5,-138 481.5,-161 513.5,-161 513.5,-138 481.5,-138"/>
<text text-anchor="start" x="485.5" y="-145.8" font-family="arial" font-size="14.00">1 m</text>
<text text-anchor="start" x="349" y="-124.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="337" y="-105.8" font-family="arial" font-size="14.00">X1:1</text>
<text text-anchor="start" x="386" y="-105.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:WH &#160;&#160;&#160;</text>
<text text-anchor="start" x="475.5" y="-105.8" font-family="arial" font-size="14.00">X2:1</text>
<polygon fill="#000000" stroke="none" points="326.5,-98 326.5,-100 513.5,-100 513.5,-98 326.5,-98"/>
<polygon fill="#ffffff" stroke="none" points="326.5,-96 326.5,-98 513.5,-98 513.5,-96 326.5,-96"/>
<polygon fill="#000000" stroke="none" points="326.5,-94 326.5,-96 513.5,-96 513.5,-94 326.5,-94"/>
<text text-anchor="start" x="337" y="-80.8" font-family="arial" font-size="14.00">X1:2</text>
<text text-anchor="start" x="388.5" y="-80.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="475.5" y="-80.8" font-family="arial" font-size="14.00">X2:2</text>
<polygon fill="#000000" stroke="none" points="326.5,-73 326.5,-75 513.5,-75 513.5,-73 326.5,-73"/>
<polygon fill="#895956" stroke="none" points="326.5,-71 326.5,-73 513.5,-73 513.5,-71 326.5,-71"/>
<polygon fill="#000000" stroke="none" points="326.5,-69 326.5,-71 513.5,-71 513.5,-69 326.5,-69"/>
<text text-anchor="start" x="337" y="-55.8" font-family="arial" font-size="14.00">X1:3</text>
<text text-anchor="start" x="387" y="-55.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="475.5" y="-55.8" font-family="arial" font-size="14.00">X2:4</text>
<polygon fill="#000000" stroke="none" points="326.5,-48 326.5,-50 513.5,-50 513.5,-48 326.5,-48"/>
<polygon fill="#00ff00" stroke="none" points="326.5,-46 326.5,-48 513.5,-48 513.5,-46 326.5,-46"/>
<polygon fill="#000000" stroke="none" points="326.5,-44 326.5,-46 513.5,-46 513.5,-44 326.5,-44"/>
<text text-anchor="start" x="337" y="-30.8" font-family="arial" font-size="14.00">X1:4</text>
<text text-anchor="start" x="388.5" y="-30.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="475.5" y="-30.8" font-family="arial" font-size="14.00">X2:3</text>
<polygon fill="#000000" stroke="none" points="326.5,-23 326.5,-25 513.5,-25 513.5,-23 326.5,-23"/>
<polygon fill="#ffff00" stroke="none" points="326.5,-21 326.5,-23 513.5,-23 513.5,-21 326.5,-21"/>
<polygon fill="#000000" stroke="none" points="326.5,-19 326.5,-21 513.5,-21 513.5,-19 326.5,-19"/>
<text text-anchor="start" x="349" y="-5.8" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" points="508.5,-185.5 324,-185.5 324,0 508.5,0 508.5,-185.5"/>
<polygon fill="none" stroke="black" points="324,-161.75 324,-185.5 508.5,-185.5 508.5,-161.75 324,-161.75"/>
<text text-anchor="start" x="405.75" y="-168.2" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="324,-138 324,-161.75 346.25,-161.75 346.25,-138 324,-138"/>
<text text-anchor="start" x="328" y="-144.45" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="346.25,-138 346.25,-161.75 477.25,-161.75 477.25,-138 346.25,-138"/>
<text text-anchor="start" x="350.25" y="-144.45" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
<polygon fill="none" stroke="black" points="477.25,-138 477.25,-161.75 508.5,-161.75 508.5,-138 477.25,-138"/>
<text text-anchor="start" x="481.25" y="-144.45" font-family="arial" font-size="14.00">1 m</text>
<text text-anchor="start" x="346.04" y="-122.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="334.04" y="-103.7" font-family="arial" font-size="14.00">X1:1</text>
<text text-anchor="start" x="382.12" y="-103.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:WH &#160;&#160;&#160;</text>
<text text-anchor="start" x="470.71" y="-103.7" font-family="arial" font-size="14.00">X2:1</text>
<polygon fill="#000000" stroke="none" points="324,-98 324,-100 508.5,-100 508.5,-98 324,-98"/>
<polygon fill="#ffffff" stroke="none" points="324,-96 324,-98 508.5,-98 508.5,-96 324,-96"/>
<polygon fill="#000000" stroke="none" points="324,-94 324,-96 508.5,-96 508.5,-94 324,-94"/>
<text text-anchor="start" x="334.04" y="-78.7" font-family="arial" font-size="14.00">X1:2</text>
<text text-anchor="start" x="384.38" y="-78.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="470.71" y="-78.7" font-family="arial" font-size="14.00">X2:2</text>
<polygon fill="#000000" stroke="none" points="324,-73 324,-75 508.5,-75 508.5,-73 324,-73"/>
<polygon fill="#895956" stroke="none" points="324,-71 324,-73 508.5,-73 508.5,-71 324,-71"/>
<polygon fill="#000000" stroke="none" points="324,-69 324,-71 508.5,-71 508.5,-69 324,-69"/>
<text text-anchor="start" x="334.04" y="-53.7" font-family="arial" font-size="14.00">X1:3</text>
<text text-anchor="start" x="383.25" y="-53.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="470.71" y="-53.7" font-family="arial" font-size="14.00">X2:4</text>
<polygon fill="#000000" stroke="none" points="324,-48 324,-50 508.5,-50 508.5,-48 324,-48"/>
<polygon fill="#00ff00" stroke="none" points="324,-46 324,-48 508.5,-48 508.5,-46 324,-46"/>
<polygon fill="#000000" stroke="none" points="324,-44 324,-46 508.5,-46 508.5,-44 324,-44"/>
<text text-anchor="start" x="334.04" y="-28.7" font-family="arial" font-size="14.00">X1:4</text>
<text text-anchor="start" x="384.75" y="-28.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="470.71" y="-28.7" font-family="arial" font-size="14.00">X2:3</text>
<polygon fill="#000000" stroke="none" points="324,-23 324,-25 508.5,-25 508.5,-23 324,-23"/>
<polygon fill="#ffff00" stroke="none" points="324,-21 324,-23 508.5,-23 508.5,-21 324,-21"/>
<polygon fill="#000000" stroke="none" points="324,-19 324,-21 508.5,-21 508.5,-19 324,-19"/>
<text text-anchor="start" x="346.04" y="-3.7" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge1" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-93C246.25,-93.02 262.24,-95.02 326,-95"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M182,-95C246.01,-95 261.99,-97 326,-97"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-97C245.76,-96.98 261.75,-98.98 326,-99"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-93.75C244.13,-93.75 260.12,-94.75 324,-94.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M180,-95.75C244,-95.75 260,-96.75 324,-96.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-97.75C243.88,-97.75 259.87,-98.75 324,-98.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge3" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-69C246.13,-69 262.12,-70 326,-70"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M182,-71C246,-71 262,-72 326,-72"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-73C245.88,-73 261.87,-74 326,-74"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-69.75C244,-69.75 260,-69.75 324,-69.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M180,-71.75C244,-71.75 260,-71.75 324,-71.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-73.75C244,-73.75 260,-73.75 324,-73.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge5" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-46C245.88,-46 261.87,-45 326,-45"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M182,-48C246,-48 262,-47 326,-47"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-50C246.13,-50 262.12,-49 326,-49"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-45.75C243.88,-45.75 259.87,-44.75 324,-44.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M180,-47.75C244,-47.75 260,-46.75 324,-46.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-49.75C244.13,-49.75 260.12,-48.75 324,-48.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge7" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-23C245.64,-23.03 261.62,-20.03 326,-20"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M182,-25C246.01,-25 261.99,-22 326,-22"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-27C246.38,-26.97 262.36,-23.97 326,-24"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-22.75C243.64,-22.78 259.62,-19.78 324,-19.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M180,-24.75C244.01,-24.75 259.99,-21.75 324,-21.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-26.75C244.38,-26.72 260.36,-23.72 324,-23.75"/>
</g>
<!-- X2 -->
<g id="node2" class="node">
<title>X2</title>
<polygon fill="#ffffff" stroke="black" points="839,-154 657,-154 657,-16 839,-16 839,-154"/>
<polygon fill="none" stroke="black" points="657,-131 657,-154 839,-154 839,-131 657,-131"/>
<text text-anchor="start" x="739.5" y="-138.8" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="657,-108 657,-131 750,-131 750,-108 657,-108"/>
<text text-anchor="start" x="661" y="-115.8" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="750,-108 750,-131 800,-131 800,-108 750,-108"/>
<text text-anchor="start" x="754" y="-115.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="800,-108 800,-131 839,-131 839,-108 800,-108"/>
<text text-anchor="start" x="804" y="-115.8" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="657,-85 657,-108 839,-108 839,-85 657,-85"/>
<text text-anchor="start" x="744" y="-92.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="657,-62 657,-85 839,-85 839,-62 657,-62"/>
<text text-anchor="start" x="744" y="-69.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="657,-39 657,-62 839,-62 839,-39 657,-39"/>
<text text-anchor="start" x="744" y="-46.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="657,-16 657,-39 839,-39 839,-16 657,-16"/>
<text text-anchor="start" x="744" y="-23.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="#ffffff" stroke="black" points="832.5,-156 652.5,-156 652.5,-13.5 832.5,-13.5 832.5,-156"/>
<polygon fill="none" stroke="black" points="652.5,-132.25 652.5,-156 832.5,-156 832.5,-132.25 652.5,-132.25"/>
<text text-anchor="start" x="734.25" y="-138.7" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="652.5,-108.5 652.5,-132.25 745.25,-132.25 745.25,-108.5 652.5,-108.5"/>
<text text-anchor="start" x="656.5" y="-114.95" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="745.25,-108.5 745.25,-132.25 794.5,-132.25 794.5,-108.5 745.25,-108.5"/>
<text text-anchor="start" x="749.25" y="-114.95" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="794.5,-108.5 794.5,-132.25 832.5,-132.25 832.5,-108.5 794.5,-108.5"/>
<text text-anchor="start" x="798.5" y="-114.95" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="652.5,-84.75 652.5,-108.5 832.5,-108.5 832.5,-84.75 652.5,-84.75"/>
<text text-anchor="start" x="738.75" y="-91.2" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="652.5,-61 652.5,-84.75 832.5,-84.75 832.5,-61 652.5,-61"/>
<text text-anchor="start" x="738.75" y="-67.45" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="652.5,-37.25 652.5,-61 832.5,-61 832.5,-37.25 652.5,-37.25"/>
<text text-anchor="start" x="738.75" y="-43.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="652.5,-13.5 652.5,-37.25 832.5,-37.25 832.5,-13.5 652.5,-13.5"/>
<text text-anchor="start" x="738.75" y="-19.95" font-family="arial" font-size="14.00">4</text>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-95C577,-95 593,-95 657,-95"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M513,-97C577,-97 593,-97 657,-97"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-99C577,-99 593,-99 657,-99"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M508.5,-94.75C572.5,-94.75 588.5,-94.75 652.5,-94.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M508.5,-96.75C572.5,-96.75 588.5,-96.75 652.5,-96.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M508.5,-98.75C572.5,-98.75 588.5,-98.75 652.5,-98.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-70C577.13,-70 593.12,-71 657,-71"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M513,-72C577,-72 593,-73 657,-73"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-74C576.88,-74 592.87,-75 657,-75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M508.5,-69.75C572.63,-69.75 588.62,-70.75 652.5,-70.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M508.5,-71.75C572.5,-71.75 588.5,-72.75 652.5,-72.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M508.5,-73.75C572.38,-73.75 588.37,-74.75 652.5,-74.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge6" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-45C576.01,-45.81 590.78,-25.81 657,-25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M513,-47C577.61,-47 592.39,-27 657,-27"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-49C579.22,-48.19 593.99,-28.19 657,-29"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M508.5,-44.75C571.54,-45.61 586.18,-24.61 652.5,-23.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M508.5,-46.75C573.18,-46.75 587.82,-25.75 652.5,-25.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M508.5,-48.75C574.82,-47.89 589.46,-26.89 652.5,-27.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge8" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-20C580,-21.13 593.6,-49.13 657,-48"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M513,-22C578.2,-22 591.8,-50 657,-50"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-24C576.4,-22.87 590,-50.87 657,-52"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M508.5,-19.75C575.4,-20.84 589.17,-47.84 652.5,-46.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M508.5,-21.75C573.62,-21.75 587.38,-48.75 652.5,-48.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M508.5,-23.75C571.83,-22.66 585.6,-49.66 652.5,-50.75"/>
</g>
</g>
</svg>

BIN
tutorial/tutorial02.png generated

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 34 KiB

196
tutorial/tutorial02.svg generated
View File

@ -1,149 +1,149 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="847pt" height="192pt"
viewBox="0.00 0.00 847.00 192.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 188)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-188 843,-188 843,4 -4,4"/>
<svg width="841pt" height="194pt"
viewBox="0.00 0.00 840.50 193.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 189.5)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-189.5 836.5,-189.5 836.5,4 -4,4"/>
<!-- X1 -->
<g id="node1" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="182,-152 0,-152 0,-14 182,-14 182,-152"/>
<polygon fill="none" stroke="black" points="0,-129 0,-152 182,-152 182,-129 0,-129"/>
<text text-anchor="start" x="82.5" y="-136.8" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-106 0,-129 93,-129 93,-106 0,-106"/>
<text text-anchor="start" x="4" y="-113.8" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="93,-106 93,-129 143,-129 143,-106 93,-106"/>
<text text-anchor="start" x="97" y="-113.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="143,-106 143,-129 182,-129 182,-106 143,-106"/>
<text text-anchor="start" x="147" y="-113.8" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-83 0,-106 182,-106 182,-83 0,-83"/>
<text text-anchor="start" x="87" y="-90.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-60 0,-83 182,-83 182,-60 0,-60"/>
<text text-anchor="start" x="87" y="-67.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0,-37 0,-60 182,-60 182,-37 0,-37"/>
<text text-anchor="start" x="87" y="-44.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-14 0,-37 182,-37 182,-14 0,-14"/>
<text text-anchor="start" x="87" y="-21.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="#ffffff" stroke="black" points="180,-155 0,-155 0,-12.5 180,-12.5 180,-155"/>
<polygon fill="none" stroke="black" points="0,-131.25 0,-155 180,-155 180,-131.25 0,-131.25"/>
<text text-anchor="start" x="81.75" y="-137.7" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-107.5 0,-131.25 92.75,-131.25 92.75,-107.5 0,-107.5"/>
<text text-anchor="start" x="4" y="-113.95" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="92.75,-107.5 92.75,-131.25 142,-131.25 142,-107.5 92.75,-107.5"/>
<text text-anchor="start" x="96.75" y="-113.95" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="142,-107.5 142,-131.25 180,-131.25 180,-107.5 142,-107.5"/>
<text text-anchor="start" x="146" y="-113.95" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-83.75 0,-107.5 180,-107.5 180,-83.75 0,-83.75"/>
<text text-anchor="start" x="86.25" y="-90.2" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-60 0,-83.75 180,-83.75 180,-60 0,-60"/>
<text text-anchor="start" x="86.25" y="-66.45" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0,-36.25 0,-60 180,-60 180,-36.25 0,-36.25"/>
<text text-anchor="start" x="86.25" y="-42.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-12.5 0,-36.25 180,-36.25 180,-12.5 0,-12.5"/>
<text text-anchor="start" x="86.25" y="-18.95" font-family="arial" font-size="14.00">4</text>
</g>
<!-- W1 -->
<g id="node3" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" points="513,-184 326,-184 326,0 513,0 513,-184"/>
<polygon fill="none" stroke="black" points="326.5,-161 326.5,-184 513.5,-184 513.5,-161 326.5,-161"/>
<text text-anchor="start" x="409" y="-168.8" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="326.5,-138 326.5,-161 349.5,-161 349.5,-138 326.5,-138"/>
<text text-anchor="start" x="330.5" y="-145.8" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="349.5,-138 349.5,-161 481.5,-161 481.5,-138 349.5,-138"/>
<text text-anchor="start" x="353.5" y="-145.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
<polygon fill="none" stroke="black" points="481.5,-138 481.5,-161 513.5,-161 513.5,-138 481.5,-138"/>
<text text-anchor="start" x="485.5" y="-145.8" font-family="arial" font-size="14.00">1 m</text>
<text text-anchor="start" x="349" y="-124.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="337" y="-105.8" font-family="arial" font-size="14.00">X1:1</text>
<text text-anchor="start" x="386" y="-105.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:WH &#160;&#160;&#160;</text>
<text text-anchor="start" x="475.5" y="-105.8" font-family="arial" font-size="14.00">X2:1</text>
<polygon fill="#000000" stroke="none" points="326.5,-98 326.5,-100 513.5,-100 513.5,-98 326.5,-98"/>
<polygon fill="#ffffff" stroke="none" points="326.5,-96 326.5,-98 513.5,-98 513.5,-96 326.5,-96"/>
<polygon fill="#000000" stroke="none" points="326.5,-94 326.5,-96 513.5,-96 513.5,-94 326.5,-94"/>
<text text-anchor="start" x="337" y="-80.8" font-family="arial" font-size="14.00">X1:2</text>
<text text-anchor="start" x="388.5" y="-80.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="475.5" y="-80.8" font-family="arial" font-size="14.00">X2:2</text>
<polygon fill="#000000" stroke="none" points="326.5,-73 326.5,-75 513.5,-75 513.5,-73 326.5,-73"/>
<polygon fill="#895956" stroke="none" points="326.5,-71 326.5,-73 513.5,-73 513.5,-71 326.5,-71"/>
<polygon fill="#000000" stroke="none" points="326.5,-69 326.5,-71 513.5,-71 513.5,-69 326.5,-69"/>
<text text-anchor="start" x="337" y="-55.8" font-family="arial" font-size="14.00">X1:3</text>
<text text-anchor="start" x="387" y="-55.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="475.5" y="-55.8" font-family="arial" font-size="14.00">X2:4</text>
<polygon fill="#000000" stroke="none" points="326.5,-48 326.5,-50 513.5,-50 513.5,-48 326.5,-48"/>
<polygon fill="#00ff00" stroke="none" points="326.5,-46 326.5,-48 513.5,-48 513.5,-46 326.5,-46"/>
<polygon fill="#000000" stroke="none" points="326.5,-44 326.5,-46 513.5,-46 513.5,-44 326.5,-44"/>
<text text-anchor="start" x="337" y="-30.8" font-family="arial" font-size="14.00">X1:4</text>
<text text-anchor="start" x="388.5" y="-30.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="475.5" y="-30.8" font-family="arial" font-size="14.00">X2:3</text>
<polygon fill="#000000" stroke="none" points="326.5,-23 326.5,-25 513.5,-25 513.5,-23 326.5,-23"/>
<polygon fill="#ffff00" stroke="none" points="326.5,-21 326.5,-23 513.5,-23 513.5,-21 326.5,-21"/>
<polygon fill="#000000" stroke="none" points="326.5,-19 326.5,-21 513.5,-21 513.5,-19 326.5,-19"/>
<text text-anchor="start" x="349" y="-5.8" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" points="508.5,-185.5 324,-185.5 324,0 508.5,0 508.5,-185.5"/>
<polygon fill="none" stroke="black" points="324,-161.75 324,-185.5 508.5,-185.5 508.5,-161.75 324,-161.75"/>
<text text-anchor="start" x="405.75" y="-168.2" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="324,-138 324,-161.75 346.25,-161.75 346.25,-138 324,-138"/>
<text text-anchor="start" x="328" y="-144.45" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="346.25,-138 346.25,-161.75 477.25,-161.75 477.25,-138 346.25,-138"/>
<text text-anchor="start" x="350.25" y="-144.45" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
<polygon fill="none" stroke="black" points="477.25,-138 477.25,-161.75 508.5,-161.75 508.5,-138 477.25,-138"/>
<text text-anchor="start" x="481.25" y="-144.45" font-family="arial" font-size="14.00">1 m</text>
<text text-anchor="start" x="346.04" y="-122.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="334.04" y="-103.7" font-family="arial" font-size="14.00">X1:1</text>
<text text-anchor="start" x="382.12" y="-103.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:WH &#160;&#160;&#160;</text>
<text text-anchor="start" x="470.71" y="-103.7" font-family="arial" font-size="14.00">X2:1</text>
<polygon fill="#000000" stroke="none" points="324,-98 324,-100 508.5,-100 508.5,-98 324,-98"/>
<polygon fill="#ffffff" stroke="none" points="324,-96 324,-98 508.5,-98 508.5,-96 324,-96"/>
<polygon fill="#000000" stroke="none" points="324,-94 324,-96 508.5,-96 508.5,-94 324,-94"/>
<text text-anchor="start" x="334.04" y="-78.7" font-family="arial" font-size="14.00">X1:2</text>
<text text-anchor="start" x="384.38" y="-78.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="470.71" y="-78.7" font-family="arial" font-size="14.00">X2:2</text>
<polygon fill="#000000" stroke="none" points="324,-73 324,-75 508.5,-75 508.5,-73 324,-73"/>
<polygon fill="#895956" stroke="none" points="324,-71 324,-73 508.5,-73 508.5,-71 324,-71"/>
<polygon fill="#000000" stroke="none" points="324,-69 324,-71 508.5,-71 508.5,-69 324,-69"/>
<text text-anchor="start" x="334.04" y="-53.7" font-family="arial" font-size="14.00">X1:3</text>
<text text-anchor="start" x="383.25" y="-53.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="470.71" y="-53.7" font-family="arial" font-size="14.00">X2:4</text>
<polygon fill="#000000" stroke="none" points="324,-48 324,-50 508.5,-50 508.5,-48 324,-48"/>
<polygon fill="#00ff00" stroke="none" points="324,-46 324,-48 508.5,-48 508.5,-46 324,-46"/>
<polygon fill="#000000" stroke="none" points="324,-44 324,-46 508.5,-46 508.5,-44 324,-44"/>
<text text-anchor="start" x="334.04" y="-28.7" font-family="arial" font-size="14.00">X1:4</text>
<text text-anchor="start" x="384.75" y="-28.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="470.71" y="-28.7" font-family="arial" font-size="14.00">X2:3</text>
<polygon fill="#000000" stroke="none" points="324,-23 324,-25 508.5,-25 508.5,-23 324,-23"/>
<polygon fill="#ffff00" stroke="none" points="324,-21 324,-23 508.5,-23 508.5,-21 324,-21"/>
<polygon fill="#000000" stroke="none" points="324,-19 324,-21 508.5,-21 508.5,-19 324,-19"/>
<text text-anchor="start" x="346.04" y="-3.7" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge1" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-93C246.25,-93.02 262.24,-95.02 326,-95"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M182,-95C246.01,-95 261.99,-97 326,-97"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-97C245.76,-96.98 261.75,-98.98 326,-99"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-93.75C244.13,-93.75 260.12,-94.75 324,-94.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M180,-95.75C244,-95.75 260,-96.75 324,-96.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-97.75C243.88,-97.75 259.87,-98.75 324,-98.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge3" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-69C246.13,-69 262.12,-70 326,-70"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M182,-71C246,-71 262,-72 326,-72"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-73C245.88,-73 261.87,-74 326,-74"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-69.75C244,-69.75 260,-69.75 324,-69.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M180,-71.75C244,-71.75 260,-71.75 324,-71.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-73.75C244,-73.75 260,-73.75 324,-73.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge5" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-46C245.88,-46 261.87,-45 326,-45"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M182,-48C246,-48 262,-47 326,-47"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-50C246.13,-50 262.12,-49 326,-49"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-45.75C243.88,-45.75 259.87,-44.75 324,-44.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M180,-47.75C244,-47.75 260,-46.75 324,-46.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-49.75C244.13,-49.75 260.12,-48.75 324,-48.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge7" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-23C245.64,-23.03 261.62,-20.03 326,-20"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M182,-25C246.01,-25 261.99,-22 326,-22"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-27C246.38,-26.97 262.36,-23.97 326,-24"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-22.75C243.64,-22.78 259.62,-19.78 324,-19.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M180,-24.75C244.01,-24.75 259.99,-21.75 324,-21.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-26.75C244.38,-26.72 260.36,-23.72 324,-23.75"/>
</g>
<!-- X2 -->
<g id="node2" class="node">
<title>X2</title>
<polygon fill="#ffffff" stroke="black" points="839,-154 657,-154 657,-16 839,-16 839,-154"/>
<polygon fill="none" stroke="black" points="657,-131 657,-154 839,-154 839,-131 657,-131"/>
<text text-anchor="start" x="739.5" y="-138.8" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="657,-108 657,-131 750,-131 750,-108 657,-108"/>
<text text-anchor="start" x="661" y="-115.8" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="750,-108 750,-131 800,-131 800,-108 750,-108"/>
<text text-anchor="start" x="754" y="-115.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="800,-108 800,-131 839,-131 839,-108 800,-108"/>
<text text-anchor="start" x="804" y="-115.8" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="657,-85 657,-108 839,-108 839,-85 657,-85"/>
<text text-anchor="start" x="744" y="-92.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="657,-62 657,-85 839,-85 839,-62 657,-62"/>
<text text-anchor="start" x="744" y="-69.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="657,-39 657,-62 839,-62 839,-39 657,-39"/>
<text text-anchor="start" x="744" y="-46.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="657,-16 657,-39 839,-39 839,-16 657,-16"/>
<text text-anchor="start" x="744" y="-23.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="#ffffff" stroke="black" points="832.5,-156 652.5,-156 652.5,-13.5 832.5,-13.5 832.5,-156"/>
<polygon fill="none" stroke="black" points="652.5,-132.25 652.5,-156 832.5,-156 832.5,-132.25 652.5,-132.25"/>
<text text-anchor="start" x="734.25" y="-138.7" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="652.5,-108.5 652.5,-132.25 745.25,-132.25 745.25,-108.5 652.5,-108.5"/>
<text text-anchor="start" x="656.5" y="-114.95" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="745.25,-108.5 745.25,-132.25 794.5,-132.25 794.5,-108.5 745.25,-108.5"/>
<text text-anchor="start" x="749.25" y="-114.95" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="794.5,-108.5 794.5,-132.25 832.5,-132.25 832.5,-108.5 794.5,-108.5"/>
<text text-anchor="start" x="798.5" y="-114.95" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="652.5,-84.75 652.5,-108.5 832.5,-108.5 832.5,-84.75 652.5,-84.75"/>
<text text-anchor="start" x="738.75" y="-91.2" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="652.5,-61 652.5,-84.75 832.5,-84.75 832.5,-61 652.5,-61"/>
<text text-anchor="start" x="738.75" y="-67.45" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="652.5,-37.25 652.5,-61 832.5,-61 832.5,-37.25 652.5,-37.25"/>
<text text-anchor="start" x="738.75" y="-43.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="652.5,-13.5 652.5,-37.25 832.5,-37.25 832.5,-13.5 652.5,-13.5"/>
<text text-anchor="start" x="738.75" y="-19.95" font-family="arial" font-size="14.00">4</text>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-95C577,-95 593,-95 657,-95"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M513,-97C577,-97 593,-97 657,-97"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-99C577,-99 593,-99 657,-99"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M508.5,-94.75C572.5,-94.75 588.5,-94.75 652.5,-94.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M508.5,-96.75C572.5,-96.75 588.5,-96.75 652.5,-96.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M508.5,-98.75C572.5,-98.75 588.5,-98.75 652.5,-98.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-70C577.13,-70 593.12,-71 657,-71"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M513,-72C577,-72 593,-73 657,-73"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-74C576.88,-74 592.87,-75 657,-75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M508.5,-69.75C572.63,-69.75 588.62,-70.75 652.5,-70.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M508.5,-71.75C572.5,-71.75 588.5,-72.75 652.5,-72.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M508.5,-73.75C572.38,-73.75 588.37,-74.75 652.5,-74.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge6" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-45C576.01,-45.81 590.78,-25.81 657,-25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M513,-47C577.61,-47 592.39,-27 657,-27"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-49C579.22,-48.19 593.99,-28.19 657,-29"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M508.5,-44.75C571.54,-45.61 586.18,-24.61 652.5,-23.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M508.5,-46.75C573.18,-46.75 587.82,-25.75 652.5,-25.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M508.5,-48.75C574.82,-47.89 589.46,-26.89 652.5,-27.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge8" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-20C580,-21.13 593.6,-49.13 657,-48"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M513,-22C578.2,-22 591.8,-50 657,-50"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M513,-24C576.4,-22.87 590,-50.87 657,-52"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M508.5,-19.75C575.4,-20.84 589.17,-47.84 652.5,-46.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M508.5,-21.75C573.62,-21.75 587.38,-48.75 652.5,-48.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M508.5,-23.75C571.83,-22.66 585.6,-49.66 652.5,-50.75"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 11 KiB

242
tutorial/tutorial03.html generated
View File

@ -30,176 +30,176 @@
<div id="diagram">
<!-- XML and DOCTYPE declarations from SVG file removed -->
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="877pt" height="232pt"
viewBox="0.00 0.00 877.00 232.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 228)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-228 873,-228 873,4 -4,4"/>
<svg width="870pt" height="234pt"
viewBox="0.00 0.00 869.50 233.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 229.5)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-229.5 865.5,-229.5 865.5,4 -4,4"/>
<!-- X1 -->
<g id="node1" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="182,-191 0,-191 0,-53 182,-53 182,-191"/>
<polygon fill="none" stroke="black" points="0,-168 0,-191 182,-191 182,-168 0,-168"/>
<text text-anchor="start" x="82.5" y="-175.8" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-145 0,-168 93,-168 93,-145 0,-145"/>
<text text-anchor="start" x="4" y="-152.8" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="93,-145 93,-168 143,-168 143,-145 93,-145"/>
<text text-anchor="start" x="97" y="-152.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="143,-145 143,-168 182,-168 182,-145 143,-145"/>
<text text-anchor="start" x="147" y="-152.8" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-122 0,-145 103,-145 103,-122 0,-122"/>
<text text-anchor="start" x="36" y="-129.8" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="103,-122 103,-145 182,-145 182,-122 103,-122"/>
<text text-anchor="start" x="138.5" y="-129.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-99 0,-122 103,-122 103,-99 0,-99"/>
<text text-anchor="start" x="37" y="-106.8" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="103,-99 103,-122 182,-122 182,-99 103,-99"/>
<text text-anchor="start" x="138.5" y="-106.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0,-76 0,-99 103,-99 103,-76 0,-76"/>
<text text-anchor="start" x="42" y="-83.8" font-family="arial" font-size="14.00">RX</text>
<polygon fill="none" stroke="black" points="103,-76 103,-99 182,-99 182,-76 103,-76"/>
<text text-anchor="start" x="138.5" y="-83.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-53 0,-76 103,-76 103,-53 0,-53"/>
<text text-anchor="start" x="42.5" y="-60.8" font-family="arial" font-size="14.00">TX</text>
<polygon fill="none" stroke="black" points="103,-53 103,-76 182,-76 182,-53 103,-53"/>
<text text-anchor="start" x="138.5" y="-60.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="#ffffff" stroke="black" points="180,-191.5 0,-191.5 0,-52 180,-52 180,-191.5"/>
<polygon fill="none" stroke="black" points="0,-167.75 0,-191.5 180,-191.5 180,-167.75 0,-167.75"/>
<text text-anchor="start" x="81.75" y="-174.2" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-144 0,-167.75 92.75,-167.75 92.75,-144 0,-144"/>
<text text-anchor="start" x="4" y="-150.45" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="92.75,-144 92.75,-167.75 142,-167.75 142,-144 92.75,-144"/>
<text text-anchor="start" x="96.75" y="-150.45" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="142,-144 142,-167.75 180,-167.75 180,-144 142,-144"/>
<text text-anchor="start" x="146" y="-150.45" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-121 0,-144 101.5,-144 101.5,-121 0,-121"/>
<text text-anchor="start" x="35.38" y="-126.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="101.5,-121 101.5,-144 180,-144 180,-121 101.5,-121"/>
<text text-anchor="start" x="137" y="-126.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-98 0,-121 101.5,-121 101.5,-98 0,-98"/>
<text text-anchor="start" x="36.5" y="-103.7" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="101.5,-98 101.5,-121 180,-121 180,-98 101.5,-98"/>
<text text-anchor="start" x="137" y="-103.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0,-75 0,-98 101.5,-98 101.5,-75 0,-75"/>
<text text-anchor="start" x="41.38" y="-80.7" font-family="arial" font-size="14.00">RX</text>
<polygon fill="none" stroke="black" points="101.5,-75 101.5,-98 180,-98 180,-75 101.5,-75"/>
<text text-anchor="start" x="137" y="-80.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-52 0,-75 101.5,-75 101.5,-52 0,-52"/>
<text text-anchor="start" x="42.12" y="-57.7" font-family="arial" font-size="14.00">TX</text>
<polygon fill="none" stroke="black" points="101.5,-52 101.5,-75 180,-75 180,-52 101.5,-52"/>
<text text-anchor="start" x="137" y="-57.7" font-family="arial" font-size="14.00">4</text>
</g>
<!-- W1 -->
<g id="node3" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" points="543,-224 326,-224 326,0 543,0 543,-224"/>
<polygon fill="none" stroke="black" points="326.5,-201 326.5,-224 543.5,-224 543.5,-201 326.5,-201"/>
<text text-anchor="start" x="424" y="-208.8" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="326.5,-178 326.5,-201 349.5,-201 349.5,-178 326.5,-178"/>
<text text-anchor="start" x="330.5" y="-185.8" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="349.5,-178 349.5,-201 481.5,-201 481.5,-178 349.5,-178"/>
<text text-anchor="start" x="353.5" y="-185.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
<polygon fill="none" stroke="black" points="481.5,-178 481.5,-201 511.5,-201 511.5,-178 481.5,-178"/>
<text text-anchor="start" x="485.5" y="-185.8" font-family="arial" font-size="14.00">+ S</text>
<polygon fill="none" stroke="black" points="511.5,-178 511.5,-201 543.5,-201 543.5,-178 511.5,-178"/>
<text text-anchor="start" x="515.5" y="-185.8" font-family="arial" font-size="14.00">1 m</text>
<text text-anchor="start" x="360" y="-164.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="330.5" y="-145.8" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="401" y="-145.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:WH &#160;&#160;&#160;</text>
<text text-anchor="start" x="477" y="-145.8" font-family="arial" font-size="14.00">X2:1:GND</text>
<polygon fill="#000000" stroke="none" points="326.5,-138 326.5,-140 543.5,-140 543.5,-138 326.5,-138"/>
<polygon fill="#ffffff" stroke="none" points="326.5,-136 326.5,-138 543.5,-138 543.5,-136 326.5,-136"/>
<polygon fill="#000000" stroke="none" points="326.5,-134 326.5,-136 543.5,-136 543.5,-134 326.5,-134"/>
<text text-anchor="start" x="331.5" y="-120.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="403.5" y="-120.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="478" y="-120.8" font-family="arial" font-size="14.00">X2:2:VCC</text>
<polygon fill="#000000" stroke="none" points="326.5,-113 326.5,-115 543.5,-115 543.5,-113 326.5,-113"/>
<polygon fill="#895956" stroke="none" points="326.5,-111 326.5,-113 543.5,-113 543.5,-111 326.5,-111"/>
<polygon fill="#000000" stroke="none" points="326.5,-109 326.5,-111 543.5,-111 543.5,-109 326.5,-109"/>
<text text-anchor="start" x="336.5" y="-95.8" font-family="arial" font-size="14.00">X1:3:RX</text>
<text text-anchor="start" x="402" y="-95.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="484" y="-95.8" font-family="arial" font-size="14.00">X2:4:TX</text>
<polygon fill="#000000" stroke="none" points="326.5,-88 326.5,-90 543.5,-90 543.5,-88 326.5,-88"/>
<polygon fill="#00ff00" stroke="none" points="326.5,-86 326.5,-88 543.5,-88 543.5,-86 326.5,-86"/>
<polygon fill="#000000" stroke="none" points="326.5,-84 326.5,-86 543.5,-86 543.5,-84 326.5,-84"/>
<text text-anchor="start" x="337.5" y="-70.8" font-family="arial" font-size="14.00">X1:4:TX</text>
<text text-anchor="start" x="403.5" y="-70.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="483" y="-70.8" font-family="arial" font-size="14.00">X2:3:RX</text>
<polygon fill="#000000" stroke="none" points="326.5,-63 326.5,-65 543.5,-65 543.5,-63 326.5,-63"/>
<polygon fill="#ffff00" stroke="none" points="326.5,-61 326.5,-63 543.5,-63 543.5,-61 326.5,-61"/>
<polygon fill="#000000" stroke="none" points="326.5,-59 326.5,-61 543.5,-61 543.5,-59 326.5,-59"/>
<text text-anchor="start" x="360" y="-45.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="330.5" y="-26.8" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="416.5" y="-26.8" font-family="arial" font-size="14.00">Shield</text>
<polygon fill="#000000" stroke="none" points="326.5,-19 326.5,-21 543.5,-21 543.5,-19 326.5,-19"/>
<text text-anchor="start" x="360" y="-5.8" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" points="537.5,-225.5 324,-225.5 324,0 537.5,0 537.5,-225.5"/>
<polygon fill="none" stroke="black" points="324,-201.75 324,-225.5 537.5,-225.5 537.5,-201.75 324,-201.75"/>
<text text-anchor="start" x="420.25" y="-208.2" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="324,-178 324,-201.75 346.25,-201.75 346.25,-178 324,-178"/>
<text text-anchor="start" x="328" y="-184.45" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="346.25,-178 346.25,-201.75 477.25,-201.75 477.25,-178 346.25,-178"/>
<text text-anchor="start" x="350.25" y="-184.45" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
<polygon fill="none" stroke="black" points="477.25,-178 477.25,-201.75 506.25,-201.75 506.25,-178 477.25,-178"/>
<text text-anchor="start" x="481.25" y="-184.45" font-family="arial" font-size="14.00">+ S</text>
<polygon fill="none" stroke="black" points="506.25,-178 506.25,-201.75 537.5,-201.75 537.5,-178 506.25,-178"/>
<text text-anchor="start" x="510.25" y="-184.45" font-family="arial" font-size="14.00">1 m</text>
<text text-anchor="start" x="356.71" y="-162.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="327.46" y="-143.7" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="396.62" y="-143.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:WH &#160;&#160;&#160;</text>
<text text-anchor="start" x="471.79" y="-143.7" font-family="arial" font-size="14.00">X2:1:GND</text>
<polygon fill="#000000" stroke="none" points="324,-138 324,-140 537.5,-140 537.5,-138 324,-138"/>
<polygon fill="#ffffff" stroke="none" points="324,-136 324,-138 537.5,-138 537.5,-136 324,-136"/>
<polygon fill="#000000" stroke="none" points="324,-134 324,-136 537.5,-136 537.5,-134 324,-134"/>
<text text-anchor="start" x="328.58" y="-118.7" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="398.88" y="-118.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="472.92" y="-118.7" font-family="arial" font-size="14.00">X2:2:VCC</text>
<polygon fill="#000000" stroke="none" points="324,-113 324,-115 537.5,-115 537.5,-113 324,-113"/>
<polygon fill="#895956" stroke="none" points="324,-111 324,-113 537.5,-113 537.5,-111 324,-111"/>
<polygon fill="#000000" stroke="none" points="324,-109 324,-111 537.5,-111 537.5,-109 324,-109"/>
<text text-anchor="start" x="333.46" y="-93.7" font-family="arial" font-size="14.00">X1:3:RX</text>
<text text-anchor="start" x="397.75" y="-93.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="478.54" y="-93.7" font-family="arial" font-size="14.00">X2:4:TX</text>
<polygon fill="#000000" stroke="none" points="324,-88 324,-90 537.5,-90 537.5,-88 324,-88"/>
<polygon fill="#00ff00" stroke="none" points="324,-86 324,-88 537.5,-88 537.5,-86 324,-86"/>
<polygon fill="#000000" stroke="none" points="324,-84 324,-86 537.5,-86 537.5,-84 324,-84"/>
<text text-anchor="start" x="334.21" y="-68.7" font-family="arial" font-size="14.00">X1:4:TX</text>
<text text-anchor="start" x="399.25" y="-68.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="477.79" y="-68.7" font-family="arial" font-size="14.00">X2:3:RX</text>
<polygon fill="#000000" stroke="none" points="324,-63 324,-65 537.5,-65 537.5,-63 324,-63"/>
<polygon fill="#ffff00" stroke="none" points="324,-61 324,-63 537.5,-63 537.5,-61 324,-61"/>
<polygon fill="#000000" stroke="none" points="324,-59 324,-61 537.5,-61 537.5,-59 324,-59"/>
<text text-anchor="start" x="356.71" y="-43.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="327.46" y="-24.7" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="412" y="-24.7" font-family="arial" font-size="14.00">Shield</text>
<polygon fill="#000000" stroke="none" points="324,-19 324,-21 537.5,-21 537.5,-19 324,-19"/>
<text text-anchor="start" x="356.71" y="-3.7" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge1" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-132C246.38,-132.03 262.36,-135.03 326,-135"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M182,-134C246.01,-134 261.99,-137 326,-137"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-136C245.64,-135.97 261.62,-138.97 326,-139"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-130.75C244.51,-130.81 260.46,-134.81 324,-134.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M180,-132.75C244.02,-132.75 259.98,-136.75 324,-136.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-134.75C243.54,-134.69 259.49,-138.69 324,-138.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge3" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-108C246.25,-108.02 262.24,-110.02 326,-110"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M182,-110C246.01,-110 261.99,-112 326,-112"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-112C245.76,-111.98 261.75,-113.98 326,-114"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-107.75C244.25,-107.77 260.24,-109.77 324,-109.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M180,-109.75C244.01,-109.75 259.99,-111.75 324,-111.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-111.75C243.76,-111.73 259.75,-113.73 324,-113.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge5" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-85C246,-85 262,-85 326,-85"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M182,-87C246,-87 262,-87 326,-87"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-89C246,-89 262,-89 326,-89"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-84.75C244,-84.75 260,-84.75 324,-84.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M180,-86.75C244,-86.75 260,-86.75 324,-86.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-88.75C244,-88.75 260,-88.75 324,-88.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge7" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-62C245.76,-62.02 261.75,-60.02 326,-60"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M182,-64C246.01,-64 261.99,-62 326,-62"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-66C246.25,-65.98 262.24,-63.98 326,-64"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-61.75C243.76,-61.77 259.75,-59.77 324,-59.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M180,-63.75C244.01,-63.75 259.99,-61.75 324,-61.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-65.75C244.25,-65.73 260.24,-63.73 324,-63.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge9" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-134C263.63,-134 244.37,-20 326,-20"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-132.75C261.35,-132.75 242.65,-19.75 324,-19.75"/>
</g>
<!-- X2 -->
<g id="node2" class="node">
<title>X2</title>
<polygon fill="#ffffff" stroke="black" points="869,-193 687,-193 687,-55 869,-55 869,-193"/>
<polygon fill="none" stroke="black" points="687,-170 687,-193 869,-193 869,-170 687,-170"/>
<text text-anchor="start" x="769.5" y="-177.8" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="687,-147 687,-170 780,-170 780,-147 687,-147"/>
<text text-anchor="start" x="691" y="-154.8" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="780,-147 780,-170 830,-170 830,-147 780,-147"/>
<text text-anchor="start" x="784" y="-154.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="830,-147 830,-170 869,-170 869,-147 830,-147"/>
<text text-anchor="start" x="834" y="-154.8" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="687,-124 687,-147 767,-147 767,-124 687,-124"/>
<text text-anchor="start" x="723" y="-131.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="767,-124 767,-147 869,-147 869,-124 767,-124"/>
<text text-anchor="start" x="802.5" y="-131.8" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="687,-101 687,-124 767,-124 767,-101 687,-101"/>
<text text-anchor="start" x="723" y="-108.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="767,-101 767,-124 869,-124 869,-101 767,-101"/>
<text text-anchor="start" x="803.5" y="-108.8" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="687,-78 687,-101 767,-101 767,-78 687,-78"/>
<text text-anchor="start" x="723" y="-85.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="767,-78 767,-101 869,-101 869,-78 767,-78"/>
<text text-anchor="start" x="808.5" y="-85.8" font-family="arial" font-size="14.00">RX</text>
<polygon fill="none" stroke="black" points="687,-55 687,-78 767,-78 767,-55 687,-55"/>
<text text-anchor="start" x="723" y="-62.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="767,-55 767,-78 869,-78 869,-55 767,-55"/>
<text text-anchor="start" x="809" y="-62.8" font-family="arial" font-size="14.00">TX</text>
<polygon fill="#ffffff" stroke="black" points="861.5,-194.5 681.5,-194.5 681.5,-55 861.5,-55 861.5,-194.5"/>
<polygon fill="none" stroke="black" points="681.5,-170.75 681.5,-194.5 861.5,-194.5 861.5,-170.75 681.5,-170.75"/>
<text text-anchor="start" x="763.25" y="-177.2" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="681.5,-147 681.5,-170.75 774.25,-170.75 774.25,-147 681.5,-147"/>
<text text-anchor="start" x="685.5" y="-153.45" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="774.25,-147 774.25,-170.75 823.5,-170.75 823.5,-147 774.25,-147"/>
<text text-anchor="start" x="778.25" y="-153.45" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="823.5,-147 823.5,-170.75 861.5,-170.75 861.5,-147 823.5,-147"/>
<text text-anchor="start" x="827.5" y="-153.45" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="681.5,-124 681.5,-147 760,-147 760,-124 681.5,-124"/>
<text text-anchor="start" x="717" y="-129.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="760,-124 760,-147 861.5,-147 861.5,-124 760,-124"/>
<text text-anchor="start" x="795.38" y="-129.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="681.5,-101 681.5,-124 760,-124 760,-101 681.5,-101"/>
<text text-anchor="start" x="717" y="-106.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="760,-101 760,-124 861.5,-124 861.5,-101 760,-101"/>
<text text-anchor="start" x="796.5" y="-106.7" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="681.5,-78 681.5,-101 760,-101 760,-78 681.5,-78"/>
<text text-anchor="start" x="717" y="-83.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="760,-78 760,-101 861.5,-101 861.5,-78 760,-78"/>
<text text-anchor="start" x="801.38" y="-83.7" font-family="arial" font-size="14.00">RX</text>
<polygon fill="none" stroke="black" points="681.5,-55 681.5,-78 760,-78 760,-55 681.5,-55"/>
<text text-anchor="start" x="717" y="-60.7" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="760,-55 760,-78 861.5,-78 861.5,-55 760,-55"/>
<text text-anchor="start" x="802.12" y="-60.7" font-family="arial" font-size="14.00">TX</text>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M543,-135C606.88,-135 622.87,-134 687,-134"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M543,-137C607,-137 623,-136 687,-136"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M543,-139C607.13,-139 623.12,-138 687,-138"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M537.5,-134.75C601.38,-134.75 617.37,-133.75 681.5,-133.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M537.5,-136.75C601.5,-136.75 617.5,-135.75 681.5,-135.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M537.5,-138.75C601.63,-138.75 617.62,-137.75 681.5,-137.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M543,-110C607,-110 623,-110 687,-110"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M543,-112C607,-112 623,-112 687,-112"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M543,-114C607,-114 623,-114 687,-114"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M537.5,-109.75C601.63,-109.75 617.62,-110.75 681.5,-110.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M537.5,-111.75C601.5,-111.75 617.5,-112.75 681.5,-112.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M537.5,-113.75C601.38,-113.75 617.37,-114.75 681.5,-114.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge6" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M543,-85C606.04,-85.86 620.68,-64.86 687,-64"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M543,-87C607.68,-87 622.32,-66 687,-66"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M543,-89C609.32,-88.14 623.96,-67.14 687,-68"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M537.5,-84.75C600.51,-85.56 615.28,-65.56 681.5,-64.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M537.5,-86.75C602.11,-86.75 616.89,-66.75 681.5,-66.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M537.5,-88.75C603.72,-87.94 618.49,-67.94 681.5,-68.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge8" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M543,-60C609.9,-61.09 623.67,-88.09 687,-87"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M543,-62C608.12,-62 621.88,-89 687,-89"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M543,-64C606.33,-62.91 620.1,-89.91 687,-91"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M537.5,-59.75C604.5,-60.88 618.1,-88.88 681.5,-87.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M537.5,-61.75C602.7,-61.75 616.3,-89.75 681.5,-89.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M537.5,-63.75C600.9,-62.62 614.5,-90.62 681.5,-91.75"/>
</g>
</g>
</svg>

BIN
tutorial/tutorial03.png generated

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 45 KiB

242
tutorial/tutorial03.svg generated
View File

@ -1,176 +1,176 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="877pt" height="232pt"
viewBox="0.00 0.00 877.00 232.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 228)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-228 873,-228 873,4 -4,4"/>
<svg width="870pt" height="234pt"
viewBox="0.00 0.00 869.50 233.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 229.5)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-229.5 865.5,-229.5 865.5,4 -4,4"/>
<!-- X1 -->
<g id="node1" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="182,-191 0,-191 0,-53 182,-53 182,-191"/>
<polygon fill="none" stroke="black" points="0,-168 0,-191 182,-191 182,-168 0,-168"/>
<text text-anchor="start" x="82.5" y="-175.8" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-145 0,-168 93,-168 93,-145 0,-145"/>
<text text-anchor="start" x="4" y="-152.8" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="93,-145 93,-168 143,-168 143,-145 93,-145"/>
<text text-anchor="start" x="97" y="-152.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="143,-145 143,-168 182,-168 182,-145 143,-145"/>
<text text-anchor="start" x="147" y="-152.8" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-122 0,-145 103,-145 103,-122 0,-122"/>
<text text-anchor="start" x="36" y="-129.8" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="103,-122 103,-145 182,-145 182,-122 103,-122"/>
<text text-anchor="start" x="138.5" y="-129.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-99 0,-122 103,-122 103,-99 0,-99"/>
<text text-anchor="start" x="37" y="-106.8" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="103,-99 103,-122 182,-122 182,-99 103,-99"/>
<text text-anchor="start" x="138.5" y="-106.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0,-76 0,-99 103,-99 103,-76 0,-76"/>
<text text-anchor="start" x="42" y="-83.8" font-family="arial" font-size="14.00">RX</text>
<polygon fill="none" stroke="black" points="103,-76 103,-99 182,-99 182,-76 103,-76"/>
<text text-anchor="start" x="138.5" y="-83.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-53 0,-76 103,-76 103,-53 0,-53"/>
<text text-anchor="start" x="42.5" y="-60.8" font-family="arial" font-size="14.00">TX</text>
<polygon fill="none" stroke="black" points="103,-53 103,-76 182,-76 182,-53 103,-53"/>
<text text-anchor="start" x="138.5" y="-60.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="#ffffff" stroke="black" points="180,-191.5 0,-191.5 0,-52 180,-52 180,-191.5"/>
<polygon fill="none" stroke="black" points="0,-167.75 0,-191.5 180,-191.5 180,-167.75 0,-167.75"/>
<text text-anchor="start" x="81.75" y="-174.2" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-144 0,-167.75 92.75,-167.75 92.75,-144 0,-144"/>
<text text-anchor="start" x="4" y="-150.45" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="92.75,-144 92.75,-167.75 142,-167.75 142,-144 92.75,-144"/>
<text text-anchor="start" x="96.75" y="-150.45" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="142,-144 142,-167.75 180,-167.75 180,-144 142,-144"/>
<text text-anchor="start" x="146" y="-150.45" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-121 0,-144 101.5,-144 101.5,-121 0,-121"/>
<text text-anchor="start" x="35.38" y="-126.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="101.5,-121 101.5,-144 180,-144 180,-121 101.5,-121"/>
<text text-anchor="start" x="137" y="-126.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-98 0,-121 101.5,-121 101.5,-98 0,-98"/>
<text text-anchor="start" x="36.5" y="-103.7" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="101.5,-98 101.5,-121 180,-121 180,-98 101.5,-98"/>
<text text-anchor="start" x="137" y="-103.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0,-75 0,-98 101.5,-98 101.5,-75 0,-75"/>
<text text-anchor="start" x="41.38" y="-80.7" font-family="arial" font-size="14.00">RX</text>
<polygon fill="none" stroke="black" points="101.5,-75 101.5,-98 180,-98 180,-75 101.5,-75"/>
<text text-anchor="start" x="137" y="-80.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-52 0,-75 101.5,-75 101.5,-52 0,-52"/>
<text text-anchor="start" x="42.12" y="-57.7" font-family="arial" font-size="14.00">TX</text>
<polygon fill="none" stroke="black" points="101.5,-52 101.5,-75 180,-75 180,-52 101.5,-52"/>
<text text-anchor="start" x="137" y="-57.7" font-family="arial" font-size="14.00">4</text>
</g>
<!-- W1 -->
<g id="node3" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" points="543,-224 326,-224 326,0 543,0 543,-224"/>
<polygon fill="none" stroke="black" points="326.5,-201 326.5,-224 543.5,-224 543.5,-201 326.5,-201"/>
<text text-anchor="start" x="424" y="-208.8" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="326.5,-178 326.5,-201 349.5,-201 349.5,-178 326.5,-178"/>
<text text-anchor="start" x="330.5" y="-185.8" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="349.5,-178 349.5,-201 481.5,-201 481.5,-178 349.5,-178"/>
<text text-anchor="start" x="353.5" y="-185.8" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
<polygon fill="none" stroke="black" points="481.5,-178 481.5,-201 511.5,-201 511.5,-178 481.5,-178"/>
<text text-anchor="start" x="485.5" y="-185.8" font-family="arial" font-size="14.00">+ S</text>
<polygon fill="none" stroke="black" points="511.5,-178 511.5,-201 543.5,-201 543.5,-178 511.5,-178"/>
<text text-anchor="start" x="515.5" y="-185.8" font-family="arial" font-size="14.00">1 m</text>
<text text-anchor="start" x="360" y="-164.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="330.5" y="-145.8" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="401" y="-145.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:WH &#160;&#160;&#160;</text>
<text text-anchor="start" x="477" y="-145.8" font-family="arial" font-size="14.00">X2:1:GND</text>
<polygon fill="#000000" stroke="none" points="326.5,-138 326.5,-140 543.5,-140 543.5,-138 326.5,-138"/>
<polygon fill="#ffffff" stroke="none" points="326.5,-136 326.5,-138 543.5,-138 543.5,-136 326.5,-136"/>
<polygon fill="#000000" stroke="none" points="326.5,-134 326.5,-136 543.5,-136 543.5,-134 326.5,-134"/>
<text text-anchor="start" x="331.5" y="-120.8" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="403.5" y="-120.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="478" y="-120.8" font-family="arial" font-size="14.00">X2:2:VCC</text>
<polygon fill="#000000" stroke="none" points="326.5,-113 326.5,-115 543.5,-115 543.5,-113 326.5,-113"/>
<polygon fill="#895956" stroke="none" points="326.5,-111 326.5,-113 543.5,-113 543.5,-111 326.5,-111"/>
<polygon fill="#000000" stroke="none" points="326.5,-109 326.5,-111 543.5,-111 543.5,-109 326.5,-109"/>
<text text-anchor="start" x="336.5" y="-95.8" font-family="arial" font-size="14.00">X1:3:RX</text>
<text text-anchor="start" x="402" y="-95.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="484" y="-95.8" font-family="arial" font-size="14.00">X2:4:TX</text>
<polygon fill="#000000" stroke="none" points="326.5,-88 326.5,-90 543.5,-90 543.5,-88 326.5,-88"/>
<polygon fill="#00ff00" stroke="none" points="326.5,-86 326.5,-88 543.5,-88 543.5,-86 326.5,-86"/>
<polygon fill="#000000" stroke="none" points="326.5,-84 326.5,-86 543.5,-86 543.5,-84 326.5,-84"/>
<text text-anchor="start" x="337.5" y="-70.8" font-family="arial" font-size="14.00">X1:4:TX</text>
<text text-anchor="start" x="403.5" y="-70.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="483" y="-70.8" font-family="arial" font-size="14.00">X2:3:RX</text>
<polygon fill="#000000" stroke="none" points="326.5,-63 326.5,-65 543.5,-65 543.5,-63 326.5,-63"/>
<polygon fill="#ffff00" stroke="none" points="326.5,-61 326.5,-63 543.5,-63 543.5,-61 326.5,-61"/>
<polygon fill="#000000" stroke="none" points="326.5,-59 326.5,-61 543.5,-61 543.5,-59 326.5,-59"/>
<text text-anchor="start" x="360" y="-45.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="330.5" y="-26.8" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="416.5" y="-26.8" font-family="arial" font-size="14.00">Shield</text>
<polygon fill="#000000" stroke="none" points="326.5,-19 326.5,-21 543.5,-21 543.5,-19 326.5,-19"/>
<text text-anchor="start" x="360" y="-5.8" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" points="537.5,-225.5 324,-225.5 324,0 537.5,0 537.5,-225.5"/>
<polygon fill="none" stroke="black" points="324,-201.75 324,-225.5 537.5,-225.5 537.5,-201.75 324,-201.75"/>
<text text-anchor="start" x="420.25" y="-208.2" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="324,-178 324,-201.75 346.25,-201.75 346.25,-178 324,-178"/>
<text text-anchor="start" x="328" y="-184.45" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="346.25,-178 346.25,-201.75 477.25,-201.75 477.25,-178 346.25,-178"/>
<text text-anchor="start" x="350.25" y="-184.45" font-family="arial" font-size="14.00">0.25 mm² (24 AWG)</text>
<polygon fill="none" stroke="black" points="477.25,-178 477.25,-201.75 506.25,-201.75 506.25,-178 477.25,-178"/>
<text text-anchor="start" x="481.25" y="-184.45" font-family="arial" font-size="14.00">+ S</text>
<polygon fill="none" stroke="black" points="506.25,-178 506.25,-201.75 537.5,-201.75 537.5,-178 506.25,-178"/>
<text text-anchor="start" x="510.25" y="-184.45" font-family="arial" font-size="14.00">1 m</text>
<text text-anchor="start" x="356.71" y="-162.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="327.46" y="-143.7" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="396.62" y="-143.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:WH &#160;&#160;&#160;</text>
<text text-anchor="start" x="471.79" y="-143.7" font-family="arial" font-size="14.00">X2:1:GND</text>
<polygon fill="#000000" stroke="none" points="324,-138 324,-140 537.5,-140 537.5,-138 324,-138"/>
<polygon fill="#ffffff" stroke="none" points="324,-136 324,-138 537.5,-138 537.5,-136 324,-136"/>
<polygon fill="#000000" stroke="none" points="324,-134 324,-136 537.5,-136 537.5,-134 324,-134"/>
<text text-anchor="start" x="328.58" y="-118.7" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="398.88" y="-118.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="472.92" y="-118.7" font-family="arial" font-size="14.00">X2:2:VCC</text>
<polygon fill="#000000" stroke="none" points="324,-113 324,-115 537.5,-115 537.5,-113 324,-113"/>
<polygon fill="#895956" stroke="none" points="324,-111 324,-113 537.5,-113 537.5,-111 324,-111"/>
<polygon fill="#000000" stroke="none" points="324,-109 324,-111 537.5,-111 537.5,-109 324,-109"/>
<text text-anchor="start" x="333.46" y="-93.7" font-family="arial" font-size="14.00">X1:3:RX</text>
<text text-anchor="start" x="397.75" y="-93.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:GN &#160;&#160;&#160;</text>
<text text-anchor="start" x="478.54" y="-93.7" font-family="arial" font-size="14.00">X2:4:TX</text>
<polygon fill="#000000" stroke="none" points="324,-88 324,-90 537.5,-90 537.5,-88 324,-88"/>
<polygon fill="#00ff00" stroke="none" points="324,-86 324,-88 537.5,-88 537.5,-86 324,-86"/>
<polygon fill="#000000" stroke="none" points="324,-84 324,-86 537.5,-86 537.5,-84 324,-84"/>
<text text-anchor="start" x="334.21" y="-68.7" font-family="arial" font-size="14.00">X1:4:TX</text>
<text text-anchor="start" x="399.25" y="-68.7" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="477.79" y="-68.7" font-family="arial" font-size="14.00">X2:3:RX</text>
<polygon fill="#000000" stroke="none" points="324,-63 324,-65 537.5,-65 537.5,-63 324,-63"/>
<polygon fill="#ffff00" stroke="none" points="324,-61 324,-63 537.5,-63 537.5,-61 324,-61"/>
<polygon fill="#000000" stroke="none" points="324,-59 324,-61 537.5,-61 537.5,-59 324,-59"/>
<text text-anchor="start" x="356.71" y="-43.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="327.46" y="-24.7" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="412" y="-24.7" font-family="arial" font-size="14.00">Shield</text>
<polygon fill="#000000" stroke="none" points="324,-19 324,-21 537.5,-21 537.5,-19 324,-19"/>
<text text-anchor="start" x="356.71" y="-3.7" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge1" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-132C246.38,-132.03 262.36,-135.03 326,-135"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M182,-134C246.01,-134 261.99,-137 326,-137"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-136C245.64,-135.97 261.62,-138.97 326,-139"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-130.75C244.51,-130.81 260.46,-134.81 324,-134.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M180,-132.75C244.02,-132.75 259.98,-136.75 324,-136.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-134.75C243.54,-134.69 259.49,-138.69 324,-138.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge3" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-108C246.25,-108.02 262.24,-110.02 326,-110"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M182,-110C246.01,-110 261.99,-112 326,-112"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-112C245.76,-111.98 261.75,-113.98 326,-114"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-107.75C244.25,-107.77 260.24,-109.77 324,-109.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M180,-109.75C244.01,-109.75 259.99,-111.75 324,-111.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-111.75C243.76,-111.73 259.75,-113.73 324,-113.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge5" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-85C246,-85 262,-85 326,-85"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M182,-87C246,-87 262,-87 326,-87"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-89C246,-89 262,-89 326,-89"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-84.75C244,-84.75 260,-84.75 324,-84.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M180,-86.75C244,-86.75 260,-86.75 324,-86.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-88.75C244,-88.75 260,-88.75 324,-88.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge7" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-62C245.76,-62.02 261.75,-60.02 326,-60"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M182,-64C246.01,-64 261.99,-62 326,-62"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-66C246.25,-65.98 262.24,-63.98 326,-64"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-61.75C243.76,-61.77 259.75,-59.77 324,-59.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M180,-63.75C244.01,-63.75 259.99,-61.75 324,-61.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-65.75C244.25,-65.73 260.24,-63.73 324,-63.75"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge9" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M182,-134C263.63,-134 244.37,-20 326,-20"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M180,-132.75C261.35,-132.75 242.65,-19.75 324,-19.75"/>
</g>
<!-- X2 -->
<g id="node2" class="node">
<title>X2</title>
<polygon fill="#ffffff" stroke="black" points="869,-193 687,-193 687,-55 869,-55 869,-193"/>
<polygon fill="none" stroke="black" points="687,-170 687,-193 869,-193 869,-170 687,-170"/>
<text text-anchor="start" x="769.5" y="-177.8" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="687,-147 687,-170 780,-170 780,-147 687,-147"/>
<text text-anchor="start" x="691" y="-154.8" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="780,-147 780,-170 830,-170 830,-147 780,-147"/>
<text text-anchor="start" x="784" y="-154.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="830,-147 830,-170 869,-170 869,-147 830,-147"/>
<text text-anchor="start" x="834" y="-154.8" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="687,-124 687,-147 767,-147 767,-124 687,-124"/>
<text text-anchor="start" x="723" y="-131.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="767,-124 767,-147 869,-147 869,-124 767,-124"/>
<text text-anchor="start" x="802.5" y="-131.8" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="687,-101 687,-124 767,-124 767,-101 687,-101"/>
<text text-anchor="start" x="723" y="-108.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="767,-101 767,-124 869,-124 869,-101 767,-101"/>
<text text-anchor="start" x="803.5" y="-108.8" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="687,-78 687,-101 767,-101 767,-78 687,-78"/>
<text text-anchor="start" x="723" y="-85.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="767,-78 767,-101 869,-101 869,-78 767,-78"/>
<text text-anchor="start" x="808.5" y="-85.8" font-family="arial" font-size="14.00">RX</text>
<polygon fill="none" stroke="black" points="687,-55 687,-78 767,-78 767,-55 687,-55"/>
<text text-anchor="start" x="723" y="-62.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="767,-55 767,-78 869,-78 869,-55 767,-55"/>
<text text-anchor="start" x="809" y="-62.8" font-family="arial" font-size="14.00">TX</text>
<polygon fill="#ffffff" stroke="black" points="861.5,-194.5 681.5,-194.5 681.5,-55 861.5,-55 861.5,-194.5"/>
<polygon fill="none" stroke="black" points="681.5,-170.75 681.5,-194.5 861.5,-194.5 861.5,-170.75 681.5,-170.75"/>
<text text-anchor="start" x="763.25" y="-177.2" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="681.5,-147 681.5,-170.75 774.25,-170.75 774.25,-147 681.5,-147"/>
<text text-anchor="start" x="685.5" y="-153.45" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="774.25,-147 774.25,-170.75 823.5,-170.75 823.5,-147 774.25,-147"/>
<text text-anchor="start" x="778.25" y="-153.45" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="823.5,-147 823.5,-170.75 861.5,-170.75 861.5,-147 823.5,-147"/>
<text text-anchor="start" x="827.5" y="-153.45" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="681.5,-124 681.5,-147 760,-147 760,-124 681.5,-124"/>
<text text-anchor="start" x="717" y="-129.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="760,-124 760,-147 861.5,-147 861.5,-124 760,-124"/>
<text text-anchor="start" x="795.38" y="-129.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="681.5,-101 681.5,-124 760,-124 760,-101 681.5,-101"/>
<text text-anchor="start" x="717" y="-106.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="760,-101 760,-124 861.5,-124 861.5,-101 760,-101"/>
<text text-anchor="start" x="796.5" y="-106.7" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="681.5,-78 681.5,-101 760,-101 760,-78 681.5,-78"/>
<text text-anchor="start" x="717" y="-83.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="760,-78 760,-101 861.5,-101 861.5,-78 760,-78"/>
<text text-anchor="start" x="801.38" y="-83.7" font-family="arial" font-size="14.00">RX</text>
<polygon fill="none" stroke="black" points="681.5,-55 681.5,-78 760,-78 760,-55 681.5,-55"/>
<text text-anchor="start" x="717" y="-60.7" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="760,-55 760,-78 861.5,-78 861.5,-55 760,-55"/>
<text text-anchor="start" x="802.12" y="-60.7" font-family="arial" font-size="14.00">TX</text>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M543,-135C606.88,-135 622.87,-134 687,-134"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M543,-137C607,-137 623,-136 687,-136"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M543,-139C607.13,-139 623.12,-138 687,-138"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M537.5,-134.75C601.38,-134.75 617.37,-133.75 681.5,-133.75"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M537.5,-136.75C601.5,-136.75 617.5,-135.75 681.5,-135.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M537.5,-138.75C601.63,-138.75 617.62,-137.75 681.5,-137.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M543,-110C607,-110 623,-110 687,-110"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M543,-112C607,-112 623,-112 687,-112"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M543,-114C607,-114 623,-114 687,-114"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M537.5,-109.75C601.63,-109.75 617.62,-110.75 681.5,-110.75"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M537.5,-111.75C601.5,-111.75 617.5,-112.75 681.5,-112.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M537.5,-113.75C601.38,-113.75 617.37,-114.75 681.5,-114.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge6" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M543,-85C606.04,-85.86 620.68,-64.86 687,-64"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M543,-87C607.68,-87 622.32,-66 687,-66"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M543,-89C609.32,-88.14 623.96,-67.14 687,-68"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M537.5,-84.75C600.51,-85.56 615.28,-65.56 681.5,-64.75"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M537.5,-86.75C602.11,-86.75 616.89,-66.75 681.5,-66.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M537.5,-88.75C603.72,-87.94 618.49,-67.94 681.5,-68.75"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge8" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M543,-60C609.9,-61.09 623.67,-88.09 687,-87"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M543,-62C608.12,-62 621.88,-89 687,-89"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M543,-64C606.33,-62.91 620.1,-89.91 687,-91"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M537.5,-59.75C604.5,-60.88 618.1,-88.88 681.5,-87.75"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M537.5,-61.75C602.7,-61.75 616.3,-89.75 681.5,-89.75"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M537.5,-63.75C600.9,-62.62 614.5,-90.62 681.5,-91.75"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

432
tutorial/tutorial04.html generated
View File

@ -30,307 +30,307 @@
<div id="diagram">
<!-- XML and DOCTYPE declarations from SVG file removed -->
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="1531pt" height="215pt"
viewBox="0.00 0.00 1531.00 215.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 211)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-211 1527,-211 1527,4 -4,4"/>
<svg width="1519pt" height="217pt"
viewBox="0.00 0.00 1518.75 217.25" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 213.25)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-213.25 1514.75,-213.25 1514.75,4 -4,4"/>
<!-- X1 -->
<g id="node1" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="171,-175 0,-175 0,-14 171,-14 171,-175"/>
<polygon fill="none" stroke="black" points="0.5,-151.5 0.5,-174.5 171.5,-174.5 171.5,-151.5 0.5,-151.5"/>
<text text-anchor="start" x="77.5" y="-159.3" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0.5,-128.5 0.5,-151.5 93.5,-151.5 93.5,-128.5 0.5,-128.5"/>
<text text-anchor="start" x="4.5" y="-136.3" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="93.5,-128.5 93.5,-151.5 132.5,-151.5 132.5,-128.5 93.5,-128.5"/>
<text text-anchor="start" x="97.5" y="-136.3" font-family="arial" font-size="14.00">male</text>
<polygon fill="none" stroke="black" points="132.5,-128.5 132.5,-151.5 171.5,-151.5 171.5,-128.5 132.5,-128.5"/>
<text text-anchor="start" x="136.5" y="-136.3" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="0.5,-105.5 0.5,-128.5 97.5,-128.5 97.5,-105.5 0.5,-105.5"/>
<text text-anchor="start" x="33.5" y="-113.3" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="97.5,-105.5 97.5,-128.5 171.5,-128.5 171.5,-105.5 97.5,-105.5"/>
<text text-anchor="start" x="130.5" y="-113.3" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0.5,-82.5 0.5,-105.5 97.5,-105.5 97.5,-82.5 0.5,-82.5"/>
<text text-anchor="start" x="34.5" y="-90.3" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="97.5,-82.5 97.5,-105.5 171.5,-105.5 171.5,-82.5 97.5,-82.5"/>
<text text-anchor="start" x="130.5" y="-90.3" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0.5,-59.5 0.5,-82.5 97.5,-82.5 97.5,-59.5 0.5,-59.5"/>
<text text-anchor="start" x="35.5" y="-67.3" font-family="arial" font-size="14.00">SCL</text>
<polygon fill="none" stroke="black" points="97.5,-59.5 97.5,-82.5 171.5,-82.5 171.5,-59.5 97.5,-59.5"/>
<text text-anchor="start" x="130.5" y="-67.3" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0.5,-36.5 0.5,-59.5 97.5,-59.5 97.5,-36.5 0.5,-36.5"/>
<text text-anchor="start" x="35" y="-44.3" font-family="arial" font-size="14.00">SDA</text>
<polygon fill="none" stroke="black" points="97.5,-36.5 97.5,-59.5 171.5,-59.5 171.5,-36.5 97.5,-36.5"/>
<text text-anchor="start" x="130.5" y="-44.3" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="0.5,-13.5 0.5,-36.5 171.5,-36.5 171.5,-13.5 0.5,-13.5"/>
<text text-anchor="start" x="33.5" y="-21.3" font-family="arial" font-size="14.00">to microcontroller</text>
<polygon fill="#ffffff" stroke="black" points="168.75,-176.25 0,-176.25 0,-13 168.75,-13 168.75,-176.25"/>
<polygon fill="none" stroke="black" points="0,-152.5 0,-176.25 168.75,-176.25 168.75,-152.5 0,-152.5"/>
<text text-anchor="start" x="76.12" y="-158.95" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-128.75 0,-152.5 92.75,-152.5 92.75,-128.75 0,-128.75"/>
<text text-anchor="start" x="4" y="-135.2" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="92.75,-128.75 92.75,-152.5 130.75,-152.5 130.75,-128.75 92.75,-128.75"/>
<text text-anchor="start" x="96.75" y="-135.2" font-family="arial" font-size="14.00">male</text>
<polygon fill="none" stroke="black" points="130.75,-128.75 130.75,-152.5 168.75,-152.5 168.75,-128.75 130.75,-128.75"/>
<text text-anchor="start" x="134.75" y="-135.2" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-105.75 0,-128.75 95.88,-128.75 95.88,-105.75 0,-105.75"/>
<text text-anchor="start" x="32.56" y="-111.45" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="95.88,-105.75 95.88,-128.75 168.75,-128.75 168.75,-105.75 95.88,-105.75"/>
<text text-anchor="start" x="128.56" y="-111.45" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-82.75 0,-105.75 95.88,-105.75 95.88,-82.75 0,-82.75"/>
<text text-anchor="start" x="33.69" y="-88.45" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="95.88,-82.75 95.88,-105.75 168.75,-105.75 168.75,-82.75 95.88,-82.75"/>
<text text-anchor="start" x="128.56" y="-88.45" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0,-59.75 0,-82.75 95.88,-82.75 95.88,-59.75 0,-59.75"/>
<text text-anchor="start" x="34.81" y="-65.45" font-family="arial" font-size="14.00">SCL</text>
<polygon fill="none" stroke="black" points="95.88,-59.75 95.88,-82.75 168.75,-82.75 168.75,-59.75 95.88,-59.75"/>
<text text-anchor="start" x="128.56" y="-65.45" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-36.75 0,-59.75 95.88,-59.75 95.88,-36.75 0,-36.75"/>
<text text-anchor="start" x="34.06" y="-42.45" font-family="arial" font-size="14.00">SDA</text>
<polygon fill="none" stroke="black" points="95.88,-36.75 95.88,-59.75 168.75,-59.75 168.75,-36.75 95.88,-36.75"/>
<text text-anchor="start" x="128.56" y="-42.45" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="0,-13 0,-36.75 168.75,-36.75 168.75,-13 0,-13"/>
<text text-anchor="start" x="32.25" y="-19.45" font-family="arial" font-size="14.00">to microcontroller</text>
</g>
<!-- W1 -->
<g id="node4" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" points="521,-207 315,-207 315,0 521,0 521,-207"/>
<polygon fill="none" stroke="black" points="315,-183.5 315,-206.5 521,-206.5 521,-183.5 315,-183.5"/>
<text text-anchor="start" x="407" y="-191.3" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="315,-160.5 315,-183.5 365,-183.5 365,-160.5 315,-160.5"/>
<text text-anchor="start" x="332.5" y="-168.3" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="365,-160.5 365,-183.5 452,-183.5 452,-160.5 365,-160.5"/>
<text text-anchor="start" x="382.5" y="-168.3" font-family="arial" font-size="14.00">24 AWG</text>
<polygon fill="none" stroke="black" points="452,-160.5 452,-183.5 521,-183.5 521,-160.5 452,-160.5"/>
<text text-anchor="start" x="469" y="-168.3" font-family="arial" font-size="14.00">0.3 m</text>
<text text-anchor="start" x="346.5" y="-147.3" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="317" y="-128.3" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="386" y="-128.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="456" y="-128.3" font-family="arial" font-size="14.00">X2:1:GND</text>
<polygon fill="#000000" stroke="none" points="315,-120.5 315,-122.5 521,-122.5 521,-120.5 315,-120.5"/>
<polygon fill="#895956" stroke="none" points="315,-118.5 315,-120.5 521,-120.5 521,-118.5 315,-118.5"/>
<polygon fill="#000000" stroke="none" points="315,-116.5 315,-118.5 521,-118.5 521,-116.5 315,-116.5"/>
<text text-anchor="start" x="318" y="-103.3" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="385.5" y="-103.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="457" y="-103.3" font-family="arial" font-size="14.00">X2:2:VCC</text>
<polygon fill="#000000" stroke="none" points="315,-95.5 315,-97.5 521,-97.5 521,-95.5 315,-95.5"/>
<polygon fill="#ff0000" stroke="none" points="315,-93.5 315,-95.5 521,-95.5 521,-93.5 315,-93.5"/>
<polygon fill="#000000" stroke="none" points="315,-91.5 315,-93.5 521,-93.5 521,-91.5 315,-91.5"/>
<text text-anchor="start" x="319.5" y="-78.3" font-family="arial" font-size="14.00">X1:3:SCL</text>
<text text-anchor="start" x="384" y="-78.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:OG &#160;&#160;&#160;</text>
<text text-anchor="start" x="458.5" y="-78.3" font-family="arial" font-size="14.00">X2:3:SCL</text>
<polygon fill="#000000" stroke="none" points="315,-70.5 315,-72.5 521,-72.5 521,-70.5 315,-70.5"/>
<polygon fill="#ff8000" stroke="none" points="315,-68.5 315,-70.5 521,-70.5 521,-68.5 315,-68.5"/>
<polygon fill="#000000" stroke="none" points="315,-66.5 315,-68.5 521,-68.5 521,-66.5 315,-66.5"/>
<text text-anchor="start" x="318.5" y="-53.3" font-family="arial" font-size="14.00">X1:4:SDA</text>
<text text-anchor="start" x="386" y="-53.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="457.5" y="-53.3" font-family="arial" font-size="14.00">X2:4:SDA</text>
<polygon fill="#000000" stroke="none" points="315,-45.5 315,-47.5 521,-47.5 521,-45.5 315,-45.5"/>
<polygon fill="#ffff00" stroke="none" points="315,-43.5 315,-45.5 521,-45.5 521,-43.5 315,-43.5"/>
<polygon fill="#000000" stroke="none" points="315,-41.5 315,-43.5 521,-43.5 521,-41.5 315,-41.5"/>
<text text-anchor="start" x="346.5" y="-28.3" font-family="arial" font-size="14.00"> </text>
<polygon fill="none" stroke="black" points="315,0.5 315,-22.5 521,-22.5 521,0.5 315,0.5"/>
<text text-anchor="start" x="345" y="-7.3" font-family="arial" font-size="14.00">This cable is a bit longer</text>
<polygon fill="#ffffff" stroke="black" points="515.75,-209.25 312.75,-209.25 312.75,0 515.75,0 515.75,-209.25"/>
<polygon fill="none" stroke="black" points="312.75,-185.5 312.75,-209.25 515.75,-209.25 515.75,-185.5 312.75,-185.5"/>
<text text-anchor="start" x="403.75" y="-191.95" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="312.75,-161.75 312.75,-185.5 361.17,-185.5 361.17,-161.75 312.75,-161.75"/>
<text text-anchor="start" x="329.83" y="-168.2" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="361.17,-161.75 361.17,-185.5 447.08,-185.5 447.08,-161.75 361.17,-161.75"/>
<text text-anchor="start" x="378.25" y="-168.2" font-family="arial" font-size="14.00">24 AWG</text>
<polygon fill="none" stroke="black" points="447.08,-161.75 447.08,-185.5 515.75,-185.5 515.75,-161.75 447.08,-161.75"/>
<text text-anchor="start" x="464.17" y="-168.2" font-family="arial" font-size="14.00">0.3 m</text>
<text text-anchor="start" x="343.88" y="-146.45" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="314.62" y="-127.45" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="382.38" y="-127.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="451.62" y="-127.45" font-family="arial" font-size="14.00">X2:1:GND</text>
<polygon fill="#000000" stroke="none" points="312.75,-121.75 312.75,-123.75 515.75,-123.75 515.75,-121.75 312.75,-121.75"/>
<polygon fill="#895956" stroke="none" points="312.75,-119.75 312.75,-121.75 515.75,-121.75 515.75,-119.75 312.75,-119.75"/>
<polygon fill="#000000" stroke="none" points="312.75,-117.75 312.75,-119.75 515.75,-119.75 515.75,-117.75 312.75,-117.75"/>
<text text-anchor="start" x="315.75" y="-102.45" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="382" y="-102.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="452.75" y="-102.45" font-family="arial" font-size="14.00">X2:2:VCC</text>
<polygon fill="#000000" stroke="none" points="312.75,-96.75 312.75,-98.75 515.75,-98.75 515.75,-96.75 312.75,-96.75"/>
<polygon fill="#ff0000" stroke="none" points="312.75,-94.75 312.75,-96.75 515.75,-96.75 515.75,-94.75 312.75,-94.75"/>
<polygon fill="#000000" stroke="none" points="312.75,-92.75 312.75,-94.75 515.75,-94.75 515.75,-92.75 312.75,-92.75"/>
<text text-anchor="start" x="316.88" y="-77.45" font-family="arial" font-size="14.00">X1:3:SCL</text>
<text text-anchor="start" x="380.5" y="-77.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:OG &#160;&#160;&#160;</text>
<text text-anchor="start" x="453.88" y="-77.45" font-family="arial" font-size="14.00">X2:3:SCL</text>
<polygon fill="#000000" stroke="none" points="312.75,-71.75 312.75,-73.75 515.75,-73.75 515.75,-71.75 312.75,-71.75"/>
<polygon fill="#ff8000" stroke="none" points="312.75,-69.75 312.75,-71.75 515.75,-71.75 515.75,-69.75 312.75,-69.75"/>
<polygon fill="#000000" stroke="none" points="312.75,-67.75 312.75,-69.75 515.75,-69.75 515.75,-67.75 312.75,-67.75"/>
<text text-anchor="start" x="316.12" y="-52.45" font-family="arial" font-size="14.00">X1:4:SDA</text>
<text text-anchor="start" x="382.75" y="-52.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="453.12" y="-52.45" font-family="arial" font-size="14.00">X2:4:SDA</text>
<polygon fill="#000000" stroke="none" points="312.75,-46.75 312.75,-48.75 515.75,-48.75 515.75,-46.75 312.75,-46.75"/>
<polygon fill="#ffff00" stroke="none" points="312.75,-44.75 312.75,-46.75 515.75,-46.75 515.75,-44.75 312.75,-44.75"/>
<polygon fill="#000000" stroke="none" points="312.75,-42.75 312.75,-44.75 515.75,-44.75 515.75,-42.75 312.75,-42.75"/>
<text text-anchor="start" x="343.88" y="-27.45" font-family="arial" font-size="14.00"> </text>
<polygon fill="none" stroke="black" points="312.75,0 312.75,-23.75 515.75,-23.75 515.75,0 312.75,0"/>
<text text-anchor="start" x="341.5" y="-6.45" font-family="arial" font-size="14.00">This cable is a bit longer</text>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge1" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M171,-115.5C235.25,-115.52 251.24,-117.52 315,-117.5"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M171,-117.5C235.01,-117.5 250.99,-119.5 315,-119.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M171,-119.5C234.76,-119.48 250.75,-121.48 315,-121.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M168.75,-115.63C233.13,-115.66 249.11,-118.66 312.75,-118.63"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M168.75,-117.62C232.76,-117.62 248.74,-120.62 312.75,-120.62"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M168.75,-119.62C232.39,-119.59 248.37,-122.59 312.75,-122.62"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge3" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M171,-91.5C235.13,-91.5 251.12,-92.5 315,-92.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M171,-93.5C235,-93.5 251,-94.5 315,-94.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M171,-95.5C234.88,-95.5 250.87,-96.5 315,-96.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M168.75,-92.63C232.88,-92.63 248.87,-93.63 312.75,-93.63"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M168.75,-94.62C232.75,-94.62 248.75,-95.62 312.75,-95.62"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M168.75,-96.62C232.63,-96.62 248.62,-97.62 312.75,-97.62"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge5" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M171,-68.5C234.88,-68.5 250.87,-67.5 315,-67.5"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M171,-70.5C235,-70.5 251,-69.5 315,-69.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M171,-72.5C235.13,-72.5 251.12,-71.5 315,-71.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M168.75,-69.63C232.63,-69.63 248.62,-68.63 312.75,-68.63"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M168.75,-71.62C232.75,-71.62 248.75,-70.62 312.75,-70.62"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M168.75,-73.62C232.88,-73.62 248.87,-72.62 312.75,-72.62"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge7" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M171,-45.5C234.64,-45.53 250.62,-42.53 315,-42.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M171,-47.5C235.01,-47.5 250.99,-44.5 315,-44.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M171,-49.5C235.38,-49.47 251.36,-46.47 315,-46.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M168.75,-46.63C232.39,-46.66 248.37,-43.66 312.75,-43.63"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M168.75,-48.62C232.76,-48.63 248.74,-45.63 312.75,-45.62"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M168.75,-50.62C233.13,-50.59 249.11,-47.59 312.75,-47.62"/>
</g>
<!-- X2 -->
<g id="node2" class="node">
<title>X2</title>
<polygon fill="#ffffff" stroke="black" points="847,-175 665,-175 665,-14 847,-14 847,-175"/>
<polygon fill="none" stroke="black" points="665,-151.5 665,-174.5 847,-174.5 847,-151.5 665,-151.5"/>
<text text-anchor="start" x="747.5" y="-159.3" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="665,-128.5 665,-151.5 758,-151.5 758,-128.5 665,-128.5"/>
<text text-anchor="start" x="669" y="-136.3" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="758,-128.5 758,-151.5 808,-151.5 808,-128.5 758,-128.5"/>
<text text-anchor="start" x="762" y="-136.3" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="808,-128.5 808,-151.5 847,-151.5 847,-128.5 808,-128.5"/>
<text text-anchor="start" x="812" y="-136.3" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="665,-105.5 665,-128.5 718,-128.5 718,-105.5 665,-105.5"/>
<text text-anchor="start" x="687.5" y="-113.3" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="718,-105.5 718,-128.5 794,-128.5 794,-105.5 718,-105.5"/>
<text text-anchor="start" x="740.5" y="-113.3" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="794,-105.5 794,-128.5 847,-128.5 847,-105.5 794,-105.5"/>
<text text-anchor="start" x="816.5" y="-113.3" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="665,-82.5 665,-105.5 718,-105.5 718,-82.5 665,-82.5"/>
<text text-anchor="start" x="687.5" y="-90.3" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="718,-82.5 718,-105.5 794,-105.5 794,-82.5 718,-82.5"/>
<text text-anchor="start" x="741.5" y="-90.3" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="794,-82.5 794,-105.5 847,-105.5 847,-82.5 794,-82.5"/>
<text text-anchor="start" x="816.5" y="-90.3" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="665,-59.5 665,-82.5 718,-82.5 718,-59.5 665,-59.5"/>
<text text-anchor="start" x="687.5" y="-67.3" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="718,-59.5 718,-82.5 794,-82.5 794,-59.5 718,-59.5"/>
<text text-anchor="start" x="742.5" y="-67.3" font-family="arial" font-size="14.00">SCL</text>
<polygon fill="none" stroke="black" points="794,-59.5 794,-82.5 847,-82.5 847,-59.5 794,-59.5"/>
<text text-anchor="start" x="816.5" y="-67.3" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="665,-36.5 665,-59.5 718,-59.5 718,-36.5 665,-36.5"/>
<text text-anchor="start" x="687.5" y="-44.3" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="718,-36.5 718,-59.5 794,-59.5 794,-36.5 718,-36.5"/>
<text text-anchor="start" x="742" y="-44.3" font-family="arial" font-size="14.00">SDA</text>
<polygon fill="none" stroke="black" points="794,-36.5 794,-59.5 847,-59.5 847,-36.5 794,-36.5"/>
<text text-anchor="start" x="816.5" y="-44.3" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="665,-13.5 665,-36.5 847,-36.5 847,-13.5 665,-13.5"/>
<text text-anchor="start" x="705" y="-21.3" font-family="arial" font-size="14.00">to accelerometer</text>
<polygon fill="#ffffff" stroke="black" points="839.75,-176.25 659.75,-176.25 659.75,-13 839.75,-13 839.75,-176.25"/>
<polygon fill="none" stroke="black" points="659.75,-152.5 659.75,-176.25 839.75,-176.25 839.75,-152.5 659.75,-152.5"/>
<text text-anchor="start" x="741.5" y="-158.95" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="659.75,-128.75 659.75,-152.5 752.5,-152.5 752.5,-128.75 659.75,-128.75"/>
<text text-anchor="start" x="663.75" y="-135.2" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="752.5,-128.75 752.5,-152.5 801.75,-152.5 801.75,-128.75 752.5,-128.75"/>
<text text-anchor="start" x="756.5" y="-135.2" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="801.75,-128.75 801.75,-152.5 839.75,-152.5 839.75,-128.75 801.75,-128.75"/>
<text text-anchor="start" x="805.75" y="-135.2" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="659.75,-105.75 659.75,-128.75 712.08,-128.75 712.08,-105.75 659.75,-105.75"/>
<text text-anchor="start" x="682.17" y="-111.45" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="712.08,-105.75 712.08,-128.75 787.42,-128.75 787.42,-105.75 712.08,-105.75"/>
<text text-anchor="start" x="734.38" y="-111.45" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="787.42,-105.75 787.42,-128.75 839.75,-128.75 839.75,-105.75 787.42,-105.75"/>
<text text-anchor="start" x="809.83" y="-111.45" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="659.75,-82.75 659.75,-105.75 712.08,-105.75 712.08,-82.75 659.75,-82.75"/>
<text text-anchor="start" x="682.17" y="-88.45" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="712.08,-82.75 712.08,-105.75 787.42,-105.75 787.42,-82.75 712.08,-82.75"/>
<text text-anchor="start" x="735.5" y="-88.45" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="787.42,-82.75 787.42,-105.75 839.75,-105.75 839.75,-82.75 787.42,-82.75"/>
<text text-anchor="start" x="809.83" y="-88.45" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="659.75,-59.75 659.75,-82.75 712.08,-82.75 712.08,-59.75 659.75,-59.75"/>
<text text-anchor="start" x="682.17" y="-65.45" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="712.08,-59.75 712.08,-82.75 787.42,-82.75 787.42,-59.75 712.08,-59.75"/>
<text text-anchor="start" x="736.62" y="-65.45" font-family="arial" font-size="14.00">SCL</text>
<polygon fill="none" stroke="black" points="787.42,-59.75 787.42,-82.75 839.75,-82.75 839.75,-59.75 787.42,-59.75"/>
<text text-anchor="start" x="809.83" y="-65.45" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="659.75,-36.75 659.75,-59.75 712.08,-59.75 712.08,-36.75 659.75,-36.75"/>
<text text-anchor="start" x="682.17" y="-42.45" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="712.08,-36.75 712.08,-59.75 787.42,-59.75 787.42,-36.75 712.08,-36.75"/>
<text text-anchor="start" x="735.88" y="-42.45" font-family="arial" font-size="14.00">SDA</text>
<polygon fill="none" stroke="black" points="787.42,-36.75 787.42,-59.75 839.75,-59.75 839.75,-36.75 787.42,-36.75"/>
<text text-anchor="start" x="809.83" y="-42.45" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="659.75,-13 659.75,-36.75 839.75,-36.75 839.75,-13 659.75,-13"/>
<text text-anchor="start" x="699.12" y="-19.45" font-family="arial" font-size="14.00">to accelerometer</text>
</g>
<!-- W2 -->
<g id="node5" class="node">
<title>W2</title>
<polygon fill="#ffffff" stroke="black" points="1197,-207 991,-207 991,0 1197,0 1197,-207"/>
<polygon fill="none" stroke="black" points="991,-183.5 991,-206.5 1197,-206.5 1197,-183.5 991,-183.5"/>
<text text-anchor="start" x="1083" y="-191.3" font-family="arial" font-size="14.00">W2</text>
<polygon fill="none" stroke="black" points="991,-160.5 991,-183.5 1041,-183.5 1041,-160.5 991,-160.5"/>
<text text-anchor="start" x="1008.5" y="-168.3" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="1041,-160.5 1041,-183.5 1128,-183.5 1128,-160.5 1041,-160.5"/>
<text text-anchor="start" x="1058.5" y="-168.3" font-family="arial" font-size="14.00">24 AWG</text>
<polygon fill="none" stroke="black" points="1128,-160.5 1128,-183.5 1197,-183.5 1197,-160.5 1128,-160.5"/>
<text text-anchor="start" x="1145" y="-168.3" font-family="arial" font-size="14.00">0.1 m</text>
<text text-anchor="start" x="1022.5" y="-147.3" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="993" y="-128.3" font-family="arial" font-size="14.00">X2:1:GND</text>
<text text-anchor="start" x="1062" y="-128.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="1132" y="-128.3" font-family="arial" font-size="14.00">X3:1:GND</text>
<polygon fill="#000000" stroke="none" points="991,-120.5 991,-122.5 1197,-122.5 1197,-120.5 991,-120.5"/>
<polygon fill="#895956" stroke="none" points="991,-118.5 991,-120.5 1197,-120.5 1197,-118.5 991,-118.5"/>
<polygon fill="#000000" stroke="none" points="991,-116.5 991,-118.5 1197,-118.5 1197,-116.5 991,-116.5"/>
<text text-anchor="start" x="994" y="-103.3" font-family="arial" font-size="14.00">X2:2:VCC</text>
<text text-anchor="start" x="1061.5" y="-103.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="1133" y="-103.3" font-family="arial" font-size="14.00">X3:2:VCC</text>
<polygon fill="#000000" stroke="none" points="991,-95.5 991,-97.5 1197,-97.5 1197,-95.5 991,-95.5"/>
<polygon fill="#ff0000" stroke="none" points="991,-93.5 991,-95.5 1197,-95.5 1197,-93.5 991,-93.5"/>
<polygon fill="#000000" stroke="none" points="991,-91.5 991,-93.5 1197,-93.5 1197,-91.5 991,-91.5"/>
<text text-anchor="start" x="995.5" y="-78.3" font-family="arial" font-size="14.00">X2:3:SCL</text>
<text text-anchor="start" x="1060" y="-78.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:OG &#160;&#160;&#160;</text>
<text text-anchor="start" x="1134.5" y="-78.3" font-family="arial" font-size="14.00">X3:3:SCL</text>
<polygon fill="#000000" stroke="none" points="991,-70.5 991,-72.5 1197,-72.5 1197,-70.5 991,-70.5"/>
<polygon fill="#ff8000" stroke="none" points="991,-68.5 991,-70.5 1197,-70.5 1197,-68.5 991,-68.5"/>
<polygon fill="#000000" stroke="none" points="991,-66.5 991,-68.5 1197,-68.5 1197,-66.5 991,-66.5"/>
<text text-anchor="start" x="994.5" y="-53.3" font-family="arial" font-size="14.00">X2:4:SDA</text>
<text text-anchor="start" x="1062" y="-53.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="1133.5" y="-53.3" font-family="arial" font-size="14.00">X3:4:SDA</text>
<polygon fill="#000000" stroke="none" points="991,-45.5 991,-47.5 1197,-47.5 1197,-45.5 991,-45.5"/>
<polygon fill="#ffff00" stroke="none" points="991,-43.5 991,-45.5 1197,-45.5 1197,-43.5 991,-43.5"/>
<polygon fill="#000000" stroke="none" points="991,-41.5 991,-43.5 1197,-43.5 1197,-41.5 991,-41.5"/>
<text text-anchor="start" x="1022.5" y="-28.3" font-family="arial" font-size="14.00"> </text>
<polygon fill="none" stroke="black" points="991,0.5 991,-22.5 1197,-22.5 1197,0.5 991,0.5"/>
<text text-anchor="start" x="1018.5" y="-7.3" font-family="arial" font-size="14.00">This cable is a bit shorter</text>
<polygon fill="#ffffff" stroke="black" points="1186.75,-209.25 983.75,-209.25 983.75,0 1186.75,0 1186.75,-209.25"/>
<polygon fill="none" stroke="black" points="983.75,-185.5 983.75,-209.25 1186.75,-209.25 1186.75,-185.5 983.75,-185.5"/>
<text text-anchor="start" x="1074.75" y="-191.95" font-family="arial" font-size="14.00">W2</text>
<polygon fill="none" stroke="black" points="983.75,-161.75 983.75,-185.5 1032.17,-185.5 1032.17,-161.75 983.75,-161.75"/>
<text text-anchor="start" x="1000.83" y="-168.2" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="1032.17,-161.75 1032.17,-185.5 1118.08,-185.5 1118.08,-161.75 1032.17,-161.75"/>
<text text-anchor="start" x="1049.25" y="-168.2" font-family="arial" font-size="14.00">24 AWG</text>
<polygon fill="none" stroke="black" points="1118.08,-161.75 1118.08,-185.5 1186.75,-185.5 1186.75,-161.75 1118.08,-161.75"/>
<text text-anchor="start" x="1135.17" y="-168.2" font-family="arial" font-size="14.00">0.1 m</text>
<text text-anchor="start" x="1014.88" y="-146.45" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="985.62" y="-127.45" font-family="arial" font-size="14.00">X2:1:GND</text>
<text text-anchor="start" x="1053.38" y="-127.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="1122.62" y="-127.45" font-family="arial" font-size="14.00">X3:1:GND</text>
<polygon fill="#000000" stroke="none" points="983.75,-121.75 983.75,-123.75 1186.75,-123.75 1186.75,-121.75 983.75,-121.75"/>
<polygon fill="#895956" stroke="none" points="983.75,-119.75 983.75,-121.75 1186.75,-121.75 1186.75,-119.75 983.75,-119.75"/>
<polygon fill="#000000" stroke="none" points="983.75,-117.75 983.75,-119.75 1186.75,-119.75 1186.75,-117.75 983.75,-117.75"/>
<text text-anchor="start" x="986.75" y="-102.45" font-family="arial" font-size="14.00">X2:2:VCC</text>
<text text-anchor="start" x="1053" y="-102.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="1123.75" y="-102.45" font-family="arial" font-size="14.00">X3:2:VCC</text>
<polygon fill="#000000" stroke="none" points="983.75,-96.75 983.75,-98.75 1186.75,-98.75 1186.75,-96.75 983.75,-96.75"/>
<polygon fill="#ff0000" stroke="none" points="983.75,-94.75 983.75,-96.75 1186.75,-96.75 1186.75,-94.75 983.75,-94.75"/>
<polygon fill="#000000" stroke="none" points="983.75,-92.75 983.75,-94.75 1186.75,-94.75 1186.75,-92.75 983.75,-92.75"/>
<text text-anchor="start" x="987.88" y="-77.45" font-family="arial" font-size="14.00">X2:3:SCL</text>
<text text-anchor="start" x="1051.5" y="-77.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:OG &#160;&#160;&#160;</text>
<text text-anchor="start" x="1124.88" y="-77.45" font-family="arial" font-size="14.00">X3:3:SCL</text>
<polygon fill="#000000" stroke="none" points="983.75,-71.75 983.75,-73.75 1186.75,-73.75 1186.75,-71.75 983.75,-71.75"/>
<polygon fill="#ff8000" stroke="none" points="983.75,-69.75 983.75,-71.75 1186.75,-71.75 1186.75,-69.75 983.75,-69.75"/>
<polygon fill="#000000" stroke="none" points="983.75,-67.75 983.75,-69.75 1186.75,-69.75 1186.75,-67.75 983.75,-67.75"/>
<text text-anchor="start" x="987.12" y="-52.45" font-family="arial" font-size="14.00">X2:4:SDA</text>
<text text-anchor="start" x="1053.75" y="-52.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="1124.12" y="-52.45" font-family="arial" font-size="14.00">X3:4:SDA</text>
<polygon fill="#000000" stroke="none" points="983.75,-46.75 983.75,-48.75 1186.75,-48.75 1186.75,-46.75 983.75,-46.75"/>
<polygon fill="#ffff00" stroke="none" points="983.75,-44.75 983.75,-46.75 1186.75,-46.75 1186.75,-44.75 983.75,-44.75"/>
<polygon fill="#000000" stroke="none" points="983.75,-42.75 983.75,-44.75 1186.75,-44.75 1186.75,-42.75 983.75,-42.75"/>
<text text-anchor="start" x="1014.88" y="-27.45" font-family="arial" font-size="14.00"> </text>
<polygon fill="none" stroke="black" points="983.75,0 983.75,-23.75 1186.75,-23.75 1186.75,0 983.75,0"/>
<text text-anchor="start" x="1010.25" y="-6.45" font-family="arial" font-size="14.00">This cable is a bit shorter</text>
</g>
<!-- X2&#45;&#45;W2 -->
<g id="edge9" class="edge">
<title>X2:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M847,-115.5C911.25,-115.52 927.24,-117.52 991,-117.5"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M847,-117.5C911.01,-117.5 926.99,-119.5 991,-119.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M847,-119.5C910.76,-119.48 926.75,-121.48 991,-121.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M839.75,-115.63C904.13,-115.66 920.11,-118.66 983.75,-118.63"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M839.75,-117.62C903.76,-117.62 919.74,-120.62 983.75,-120.62"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M839.75,-119.62C903.39,-119.59 919.37,-122.59 983.75,-122.62"/>
</g>
<!-- X2&#45;&#45;W2 -->
<g id="edge11" class="edge">
<title>X2:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M847,-91.5C911.13,-91.5 927.12,-92.5 991,-92.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M847,-93.5C911,-93.5 927,-94.5 991,-94.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M847,-95.5C910.88,-95.5 926.87,-96.5 991,-96.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M839.75,-92.63C903.88,-92.63 919.87,-93.63 983.75,-93.63"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M839.75,-94.62C903.75,-94.62 919.75,-95.62 983.75,-95.62"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M839.75,-96.62C903.63,-96.62 919.62,-97.62 983.75,-97.62"/>
</g>
<!-- X2&#45;&#45;W2 -->
<g id="edge13" class="edge">
<title>X2:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M847,-68.5C910.88,-68.5 926.87,-67.5 991,-67.5"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M847,-70.5C911,-70.5 927,-69.5 991,-69.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M847,-72.5C911.13,-72.5 927.12,-71.5 991,-71.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M839.75,-69.63C903.63,-69.63 919.62,-68.63 983.75,-68.63"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M839.75,-71.62C903.75,-71.62 919.75,-70.62 983.75,-70.62"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M839.75,-73.62C903.88,-73.62 919.87,-72.62 983.75,-72.62"/>
</g>
<!-- X2&#45;&#45;W2 -->
<g id="edge15" class="edge">
<title>X2:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M847,-45.5C910.64,-45.53 926.62,-42.53 991,-42.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M847,-47.5C911.01,-47.5 926.99,-44.5 991,-44.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M847,-49.5C911.38,-49.47 927.36,-46.47 991,-46.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M839.75,-46.63C903.39,-46.66 919.37,-43.66 983.75,-43.63"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M839.75,-48.62C903.76,-48.63 919.74,-45.63 983.75,-45.62"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M839.75,-50.62C904.13,-50.59 920.11,-47.59 983.75,-47.62"/>
</g>
<!-- X3 -->
<g id="node3" class="node">
<title>X3</title>
<polygon fill="#ffffff" stroke="black" points="1523,-175 1341,-175 1341,-14 1523,-14 1523,-175"/>
<polygon fill="none" stroke="black" points="1341,-151.5 1341,-174.5 1523,-174.5 1523,-151.5 1341,-151.5"/>
<text text-anchor="start" x="1423.5" y="-159.3" font-family="arial" font-size="14.00">X3</text>
<polygon fill="none" stroke="black" points="1341,-128.5 1341,-151.5 1434,-151.5 1434,-128.5 1341,-128.5"/>
<text text-anchor="start" x="1345" y="-136.3" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="1434,-128.5 1434,-151.5 1484,-151.5 1484,-128.5 1434,-128.5"/>
<text text-anchor="start" x="1438" y="-136.3" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="1484,-128.5 1484,-151.5 1523,-151.5 1523,-128.5 1484,-128.5"/>
<text text-anchor="start" x="1488" y="-136.3" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="1341,-105.5 1341,-128.5 1421,-128.5 1421,-105.5 1341,-105.5"/>
<text text-anchor="start" x="1377" y="-113.3" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="1421,-105.5 1421,-128.5 1523,-128.5 1523,-105.5 1421,-105.5"/>
<text text-anchor="start" x="1456.5" y="-113.3" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="1341,-82.5 1341,-105.5 1421,-105.5 1421,-82.5 1341,-82.5"/>
<text text-anchor="start" x="1377" y="-90.3" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="1421,-82.5 1421,-105.5 1523,-105.5 1523,-82.5 1421,-82.5"/>
<text text-anchor="start" x="1457.5" y="-90.3" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="1341,-59.5 1341,-82.5 1421,-82.5 1421,-59.5 1341,-59.5"/>
<text text-anchor="start" x="1377" y="-67.3" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="1421,-59.5 1421,-82.5 1523,-82.5 1523,-59.5 1421,-59.5"/>
<text text-anchor="start" x="1458.5" y="-67.3" font-family="arial" font-size="14.00">SCL</text>
<polygon fill="none" stroke="black" points="1341,-36.5 1341,-59.5 1421,-59.5 1421,-36.5 1341,-36.5"/>
<text text-anchor="start" x="1377" y="-44.3" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="1421,-36.5 1421,-59.5 1523,-59.5 1523,-36.5 1421,-36.5"/>
<text text-anchor="start" x="1458" y="-44.3" font-family="arial" font-size="14.00">SDA</text>
<polygon fill="none" stroke="black" points="1341,-13.5 1341,-36.5 1523,-36.5 1523,-13.5 1341,-13.5"/>
<text text-anchor="start" x="1365.5" y="-21.3" font-family="arial" font-size="14.00">to temperature sensor</text>
<polygon fill="#ffffff" stroke="black" points="1510.75,-176.25 1330.75,-176.25 1330.75,-13 1510.75,-13 1510.75,-176.25"/>
<polygon fill="none" stroke="black" points="1330.75,-152.5 1330.75,-176.25 1510.75,-176.25 1510.75,-152.5 1330.75,-152.5"/>
<text text-anchor="start" x="1412.5" y="-158.95" font-family="arial" font-size="14.00">X3</text>
<polygon fill="none" stroke="black" points="1330.75,-128.75 1330.75,-152.5 1423.5,-152.5 1423.5,-128.75 1330.75,-128.75"/>
<text text-anchor="start" x="1334.75" y="-135.2" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="1423.5,-128.75 1423.5,-152.5 1472.75,-152.5 1472.75,-128.75 1423.5,-128.75"/>
<text text-anchor="start" x="1427.5" y="-135.2" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="1472.75,-128.75 1472.75,-152.5 1510.75,-152.5 1510.75,-128.75 1472.75,-128.75"/>
<text text-anchor="start" x="1476.75" y="-135.2" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="1330.75,-105.75 1330.75,-128.75 1409.25,-128.75 1409.25,-105.75 1330.75,-105.75"/>
<text text-anchor="start" x="1366.25" y="-111.45" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="1409.25,-105.75 1409.25,-128.75 1510.75,-128.75 1510.75,-105.75 1409.25,-105.75"/>
<text text-anchor="start" x="1444.62" y="-111.45" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="1330.75,-82.75 1330.75,-105.75 1409.25,-105.75 1409.25,-82.75 1330.75,-82.75"/>
<text text-anchor="start" x="1366.25" y="-88.45" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="1409.25,-82.75 1409.25,-105.75 1510.75,-105.75 1510.75,-82.75 1409.25,-82.75"/>
<text text-anchor="start" x="1445.75" y="-88.45" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="1330.75,-59.75 1330.75,-82.75 1409.25,-82.75 1409.25,-59.75 1330.75,-59.75"/>
<text text-anchor="start" x="1366.25" y="-65.45" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="1409.25,-59.75 1409.25,-82.75 1510.75,-82.75 1510.75,-59.75 1409.25,-59.75"/>
<text text-anchor="start" x="1446.88" y="-65.45" font-family="arial" font-size="14.00">SCL</text>
<polygon fill="none" stroke="black" points="1330.75,-36.75 1330.75,-59.75 1409.25,-59.75 1409.25,-36.75 1330.75,-36.75"/>
<text text-anchor="start" x="1366.25" y="-42.45" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="1409.25,-36.75 1409.25,-59.75 1510.75,-59.75 1510.75,-36.75 1409.25,-36.75"/>
<text text-anchor="start" x="1446.12" y="-42.45" font-family="arial" font-size="14.00">SDA</text>
<polygon fill="none" stroke="black" points="1330.75,-13 1330.75,-36.75 1510.75,-36.75 1510.75,-13 1330.75,-13"/>
<text text-anchor="start" x="1354.38" y="-19.45" font-family="arial" font-size="14.00">to temperature sensor</text>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M521,-117.5C584.76,-117.52 600.75,-115.52 665,-115.5"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M521,-119.5C585.01,-119.5 600.99,-117.5 665,-117.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521,-121.5C585.25,-121.48 601.24,-119.48 665,-119.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M515.75,-118.63C579.39,-118.66 595.37,-115.66 659.75,-115.63"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M515.75,-120.62C579.76,-120.62 595.74,-117.62 659.75,-117.62"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M515.75,-122.62C580.13,-122.59 596.11,-119.59 659.75,-119.62"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M521,-92.5C584.88,-92.5 600.87,-91.5 665,-91.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M521,-94.5C585,-94.5 601,-93.5 665,-93.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521,-96.5C585.13,-96.5 601.12,-95.5 665,-95.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M515.75,-93.63C579.63,-93.63 595.62,-92.63 659.75,-92.63"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M515.75,-95.62C579.75,-95.62 595.75,-94.62 659.75,-94.62"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M515.75,-97.62C579.88,-97.62 595.87,-96.62 659.75,-96.62"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge6" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M521,-67.5C585.13,-67.5 601.12,-68.5 665,-68.5"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M521,-69.5C585,-69.5 601,-70.5 665,-70.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521,-71.5C584.88,-71.5 600.87,-72.5 665,-72.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M515.75,-68.63C579.88,-68.63 595.87,-69.63 659.75,-69.63"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M515.75,-70.62C579.75,-70.62 595.75,-71.62 659.75,-71.62"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M515.75,-72.62C579.63,-72.62 595.62,-73.62 659.75,-73.62"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge8" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M521,-42.5C585.38,-42.53 601.36,-45.53 665,-45.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M521,-44.5C585.01,-44.5 600.99,-47.5 665,-47.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521,-46.5C584.64,-46.47 600.62,-49.47 665,-49.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M515.75,-43.63C580.13,-43.66 596.11,-46.66 659.75,-46.63"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M515.75,-45.62C579.76,-45.63 595.74,-48.63 659.75,-48.62"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M515.75,-47.62C579.39,-47.59 595.37,-50.59 659.75,-50.62"/>
</g>
<!-- W2&#45;&#45;X3 -->
<g id="edge10" class="edge">
<title>W2:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1197,-117.5C1260.76,-117.52 1276.75,-115.52 1341,-115.5"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M1197,-119.5C1261.01,-119.5 1276.99,-117.5 1341,-117.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1197,-121.5C1261.25,-121.48 1277.24,-119.48 1341,-119.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1186.75,-118.63C1250.39,-118.66 1266.37,-115.66 1330.75,-115.63"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M1186.75,-120.62C1250.76,-120.62 1266.74,-117.62 1330.75,-117.62"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1186.75,-122.62C1251.13,-122.59 1267.11,-119.59 1330.75,-119.62"/>
</g>
<!-- W2&#45;&#45;X3 -->
<g id="edge12" class="edge">
<title>W2:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1197,-92.5C1260.88,-92.5 1276.87,-91.5 1341,-91.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M1197,-94.5C1261,-94.5 1277,-93.5 1341,-93.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1197,-96.5C1261.13,-96.5 1277.12,-95.5 1341,-95.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1186.75,-93.63C1250.63,-93.63 1266.62,-92.63 1330.75,-92.63"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M1186.75,-95.62C1250.75,-95.62 1266.75,-94.62 1330.75,-94.62"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1186.75,-97.62C1250.88,-97.62 1266.87,-96.62 1330.75,-96.62"/>
</g>
<!-- W2&#45;&#45;X3 -->
<g id="edge14" class="edge">
<title>W2:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1197,-67.5C1261.13,-67.5 1277.12,-68.5 1341,-68.5"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M1197,-69.5C1261,-69.5 1277,-70.5 1341,-70.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1197,-71.5C1260.88,-71.5 1276.87,-72.5 1341,-72.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1186.75,-68.63C1250.88,-68.63 1266.87,-69.63 1330.75,-69.63"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M1186.75,-70.62C1250.75,-70.62 1266.75,-71.62 1330.75,-71.62"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1186.75,-72.62C1250.63,-72.62 1266.62,-73.62 1330.75,-73.62"/>
</g>
<!-- W2&#45;&#45;X3 -->
<g id="edge16" class="edge">
<title>W2:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1197,-42.5C1261.38,-42.53 1277.36,-45.53 1341,-45.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M1197,-44.5C1261.01,-44.5 1276.99,-47.5 1341,-47.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1197,-46.5C1260.64,-46.47 1276.62,-49.47 1341,-49.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1186.75,-43.63C1251.13,-43.66 1267.11,-46.66 1330.75,-46.63"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M1186.75,-45.62C1250.76,-45.63 1266.74,-48.63 1330.75,-48.62"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1186.75,-47.62C1250.39,-47.59 1266.37,-50.59 1330.75,-50.62"/>
</g>
</g>
</svg>

BIN
tutorial/tutorial04.png generated

Binary file not shown.

Before

Width:  |  Height:  |  Size: 59 KiB

After

Width:  |  Height:  |  Size: 60 KiB

432
tutorial/tutorial04.svg generated
View File

@ -1,307 +1,307 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="1531pt" height="215pt"
viewBox="0.00 0.00 1531.00 215.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 211)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-211 1527,-211 1527,4 -4,4"/>
<svg width="1519pt" height="217pt"
viewBox="0.00 0.00 1518.75 217.25" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 213.25)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-213.25 1514.75,-213.25 1514.75,4 -4,4"/>
<!-- X1 -->
<g id="node1" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="171,-175 0,-175 0,-14 171,-14 171,-175"/>
<polygon fill="none" stroke="black" points="0.5,-151.5 0.5,-174.5 171.5,-174.5 171.5,-151.5 0.5,-151.5"/>
<text text-anchor="start" x="77.5" y="-159.3" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0.5,-128.5 0.5,-151.5 93.5,-151.5 93.5,-128.5 0.5,-128.5"/>
<text text-anchor="start" x="4.5" y="-136.3" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="93.5,-128.5 93.5,-151.5 132.5,-151.5 132.5,-128.5 93.5,-128.5"/>
<text text-anchor="start" x="97.5" y="-136.3" font-family="arial" font-size="14.00">male</text>
<polygon fill="none" stroke="black" points="132.5,-128.5 132.5,-151.5 171.5,-151.5 171.5,-128.5 132.5,-128.5"/>
<text text-anchor="start" x="136.5" y="-136.3" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="0.5,-105.5 0.5,-128.5 97.5,-128.5 97.5,-105.5 0.5,-105.5"/>
<text text-anchor="start" x="33.5" y="-113.3" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="97.5,-105.5 97.5,-128.5 171.5,-128.5 171.5,-105.5 97.5,-105.5"/>
<text text-anchor="start" x="130.5" y="-113.3" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0.5,-82.5 0.5,-105.5 97.5,-105.5 97.5,-82.5 0.5,-82.5"/>
<text text-anchor="start" x="34.5" y="-90.3" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="97.5,-82.5 97.5,-105.5 171.5,-105.5 171.5,-82.5 97.5,-82.5"/>
<text text-anchor="start" x="130.5" y="-90.3" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0.5,-59.5 0.5,-82.5 97.5,-82.5 97.5,-59.5 0.5,-59.5"/>
<text text-anchor="start" x="35.5" y="-67.3" font-family="arial" font-size="14.00">SCL</text>
<polygon fill="none" stroke="black" points="97.5,-59.5 97.5,-82.5 171.5,-82.5 171.5,-59.5 97.5,-59.5"/>
<text text-anchor="start" x="130.5" y="-67.3" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0.5,-36.5 0.5,-59.5 97.5,-59.5 97.5,-36.5 0.5,-36.5"/>
<text text-anchor="start" x="35" y="-44.3" font-family="arial" font-size="14.00">SDA</text>
<polygon fill="none" stroke="black" points="97.5,-36.5 97.5,-59.5 171.5,-59.5 171.5,-36.5 97.5,-36.5"/>
<text text-anchor="start" x="130.5" y="-44.3" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="0.5,-13.5 0.5,-36.5 171.5,-36.5 171.5,-13.5 0.5,-13.5"/>
<text text-anchor="start" x="33.5" y="-21.3" font-family="arial" font-size="14.00">to microcontroller</text>
<polygon fill="#ffffff" stroke="black" points="168.75,-176.25 0,-176.25 0,-13 168.75,-13 168.75,-176.25"/>
<polygon fill="none" stroke="black" points="0,-152.5 0,-176.25 168.75,-176.25 168.75,-152.5 0,-152.5"/>
<text text-anchor="start" x="76.12" y="-158.95" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-128.75 0,-152.5 92.75,-152.5 92.75,-128.75 0,-128.75"/>
<text text-anchor="start" x="4" y="-135.2" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="92.75,-128.75 92.75,-152.5 130.75,-152.5 130.75,-128.75 92.75,-128.75"/>
<text text-anchor="start" x="96.75" y="-135.2" font-family="arial" font-size="14.00">male</text>
<polygon fill="none" stroke="black" points="130.75,-128.75 130.75,-152.5 168.75,-152.5 168.75,-128.75 130.75,-128.75"/>
<text text-anchor="start" x="134.75" y="-135.2" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-105.75 0,-128.75 95.88,-128.75 95.88,-105.75 0,-105.75"/>
<text text-anchor="start" x="32.56" y="-111.45" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="95.88,-105.75 95.88,-128.75 168.75,-128.75 168.75,-105.75 95.88,-105.75"/>
<text text-anchor="start" x="128.56" y="-111.45" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-82.75 0,-105.75 95.88,-105.75 95.88,-82.75 0,-82.75"/>
<text text-anchor="start" x="33.69" y="-88.45" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="95.88,-82.75 95.88,-105.75 168.75,-105.75 168.75,-82.75 95.88,-82.75"/>
<text text-anchor="start" x="128.56" y="-88.45" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0,-59.75 0,-82.75 95.88,-82.75 95.88,-59.75 0,-59.75"/>
<text text-anchor="start" x="34.81" y="-65.45" font-family="arial" font-size="14.00">SCL</text>
<polygon fill="none" stroke="black" points="95.88,-59.75 95.88,-82.75 168.75,-82.75 168.75,-59.75 95.88,-59.75"/>
<text text-anchor="start" x="128.56" y="-65.45" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-36.75 0,-59.75 95.88,-59.75 95.88,-36.75 0,-36.75"/>
<text text-anchor="start" x="34.06" y="-42.45" font-family="arial" font-size="14.00">SDA</text>
<polygon fill="none" stroke="black" points="95.88,-36.75 95.88,-59.75 168.75,-59.75 168.75,-36.75 95.88,-36.75"/>
<text text-anchor="start" x="128.56" y="-42.45" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="0,-13 0,-36.75 168.75,-36.75 168.75,-13 0,-13"/>
<text text-anchor="start" x="32.25" y="-19.45" font-family="arial" font-size="14.00">to microcontroller</text>
</g>
<!-- W1 -->
<g id="node4" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" points="521,-207 315,-207 315,0 521,0 521,-207"/>
<polygon fill="none" stroke="black" points="315,-183.5 315,-206.5 521,-206.5 521,-183.5 315,-183.5"/>
<text text-anchor="start" x="407" y="-191.3" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="315,-160.5 315,-183.5 365,-183.5 365,-160.5 315,-160.5"/>
<text text-anchor="start" x="332.5" y="-168.3" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="365,-160.5 365,-183.5 452,-183.5 452,-160.5 365,-160.5"/>
<text text-anchor="start" x="382.5" y="-168.3" font-family="arial" font-size="14.00">24 AWG</text>
<polygon fill="none" stroke="black" points="452,-160.5 452,-183.5 521,-183.5 521,-160.5 452,-160.5"/>
<text text-anchor="start" x="469" y="-168.3" font-family="arial" font-size="14.00">0.3 m</text>
<text text-anchor="start" x="346.5" y="-147.3" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="317" y="-128.3" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="386" y="-128.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="456" y="-128.3" font-family="arial" font-size="14.00">X2:1:GND</text>
<polygon fill="#000000" stroke="none" points="315,-120.5 315,-122.5 521,-122.5 521,-120.5 315,-120.5"/>
<polygon fill="#895956" stroke="none" points="315,-118.5 315,-120.5 521,-120.5 521,-118.5 315,-118.5"/>
<polygon fill="#000000" stroke="none" points="315,-116.5 315,-118.5 521,-118.5 521,-116.5 315,-116.5"/>
<text text-anchor="start" x="318" y="-103.3" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="385.5" y="-103.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="457" y="-103.3" font-family="arial" font-size="14.00">X2:2:VCC</text>
<polygon fill="#000000" stroke="none" points="315,-95.5 315,-97.5 521,-97.5 521,-95.5 315,-95.5"/>
<polygon fill="#ff0000" stroke="none" points="315,-93.5 315,-95.5 521,-95.5 521,-93.5 315,-93.5"/>
<polygon fill="#000000" stroke="none" points="315,-91.5 315,-93.5 521,-93.5 521,-91.5 315,-91.5"/>
<text text-anchor="start" x="319.5" y="-78.3" font-family="arial" font-size="14.00">X1:3:SCL</text>
<text text-anchor="start" x="384" y="-78.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:OG &#160;&#160;&#160;</text>
<text text-anchor="start" x="458.5" y="-78.3" font-family="arial" font-size="14.00">X2:3:SCL</text>
<polygon fill="#000000" stroke="none" points="315,-70.5 315,-72.5 521,-72.5 521,-70.5 315,-70.5"/>
<polygon fill="#ff8000" stroke="none" points="315,-68.5 315,-70.5 521,-70.5 521,-68.5 315,-68.5"/>
<polygon fill="#000000" stroke="none" points="315,-66.5 315,-68.5 521,-68.5 521,-66.5 315,-66.5"/>
<text text-anchor="start" x="318.5" y="-53.3" font-family="arial" font-size="14.00">X1:4:SDA</text>
<text text-anchor="start" x="386" y="-53.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="457.5" y="-53.3" font-family="arial" font-size="14.00">X2:4:SDA</text>
<polygon fill="#000000" stroke="none" points="315,-45.5 315,-47.5 521,-47.5 521,-45.5 315,-45.5"/>
<polygon fill="#ffff00" stroke="none" points="315,-43.5 315,-45.5 521,-45.5 521,-43.5 315,-43.5"/>
<polygon fill="#000000" stroke="none" points="315,-41.5 315,-43.5 521,-43.5 521,-41.5 315,-41.5"/>
<text text-anchor="start" x="346.5" y="-28.3" font-family="arial" font-size="14.00"> </text>
<polygon fill="none" stroke="black" points="315,0.5 315,-22.5 521,-22.5 521,0.5 315,0.5"/>
<text text-anchor="start" x="345" y="-7.3" font-family="arial" font-size="14.00">This cable is a bit longer</text>
<polygon fill="#ffffff" stroke="black" points="515.75,-209.25 312.75,-209.25 312.75,0 515.75,0 515.75,-209.25"/>
<polygon fill="none" stroke="black" points="312.75,-185.5 312.75,-209.25 515.75,-209.25 515.75,-185.5 312.75,-185.5"/>
<text text-anchor="start" x="403.75" y="-191.95" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="312.75,-161.75 312.75,-185.5 361.17,-185.5 361.17,-161.75 312.75,-161.75"/>
<text text-anchor="start" x="329.83" y="-168.2" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="361.17,-161.75 361.17,-185.5 447.08,-185.5 447.08,-161.75 361.17,-161.75"/>
<text text-anchor="start" x="378.25" y="-168.2" font-family="arial" font-size="14.00">24 AWG</text>
<polygon fill="none" stroke="black" points="447.08,-161.75 447.08,-185.5 515.75,-185.5 515.75,-161.75 447.08,-161.75"/>
<text text-anchor="start" x="464.17" y="-168.2" font-family="arial" font-size="14.00">0.3 m</text>
<text text-anchor="start" x="343.88" y="-146.45" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="314.62" y="-127.45" font-family="arial" font-size="14.00">X1:1:GND</text>
<text text-anchor="start" x="382.38" y="-127.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="451.62" y="-127.45" font-family="arial" font-size="14.00">X2:1:GND</text>
<polygon fill="#000000" stroke="none" points="312.75,-121.75 312.75,-123.75 515.75,-123.75 515.75,-121.75 312.75,-121.75"/>
<polygon fill="#895956" stroke="none" points="312.75,-119.75 312.75,-121.75 515.75,-121.75 515.75,-119.75 312.75,-119.75"/>
<polygon fill="#000000" stroke="none" points="312.75,-117.75 312.75,-119.75 515.75,-119.75 515.75,-117.75 312.75,-117.75"/>
<text text-anchor="start" x="315.75" y="-102.45" font-family="arial" font-size="14.00">X1:2:VCC</text>
<text text-anchor="start" x="382" y="-102.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="452.75" y="-102.45" font-family="arial" font-size="14.00">X2:2:VCC</text>
<polygon fill="#000000" stroke="none" points="312.75,-96.75 312.75,-98.75 515.75,-98.75 515.75,-96.75 312.75,-96.75"/>
<polygon fill="#ff0000" stroke="none" points="312.75,-94.75 312.75,-96.75 515.75,-96.75 515.75,-94.75 312.75,-94.75"/>
<polygon fill="#000000" stroke="none" points="312.75,-92.75 312.75,-94.75 515.75,-94.75 515.75,-92.75 312.75,-92.75"/>
<text text-anchor="start" x="316.88" y="-77.45" font-family="arial" font-size="14.00">X1:3:SCL</text>
<text text-anchor="start" x="380.5" y="-77.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:OG &#160;&#160;&#160;</text>
<text text-anchor="start" x="453.88" y="-77.45" font-family="arial" font-size="14.00">X2:3:SCL</text>
<polygon fill="#000000" stroke="none" points="312.75,-71.75 312.75,-73.75 515.75,-73.75 515.75,-71.75 312.75,-71.75"/>
<polygon fill="#ff8000" stroke="none" points="312.75,-69.75 312.75,-71.75 515.75,-71.75 515.75,-69.75 312.75,-69.75"/>
<polygon fill="#000000" stroke="none" points="312.75,-67.75 312.75,-69.75 515.75,-69.75 515.75,-67.75 312.75,-67.75"/>
<text text-anchor="start" x="316.12" y="-52.45" font-family="arial" font-size="14.00">X1:4:SDA</text>
<text text-anchor="start" x="382.75" y="-52.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="453.12" y="-52.45" font-family="arial" font-size="14.00">X2:4:SDA</text>
<polygon fill="#000000" stroke="none" points="312.75,-46.75 312.75,-48.75 515.75,-48.75 515.75,-46.75 312.75,-46.75"/>
<polygon fill="#ffff00" stroke="none" points="312.75,-44.75 312.75,-46.75 515.75,-46.75 515.75,-44.75 312.75,-44.75"/>
<polygon fill="#000000" stroke="none" points="312.75,-42.75 312.75,-44.75 515.75,-44.75 515.75,-42.75 312.75,-42.75"/>
<text text-anchor="start" x="343.88" y="-27.45" font-family="arial" font-size="14.00"> </text>
<polygon fill="none" stroke="black" points="312.75,0 312.75,-23.75 515.75,-23.75 515.75,0 312.75,0"/>
<text text-anchor="start" x="341.5" y="-6.45" font-family="arial" font-size="14.00">This cable is a bit longer</text>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge1" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M171,-115.5C235.25,-115.52 251.24,-117.52 315,-117.5"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M171,-117.5C235.01,-117.5 250.99,-119.5 315,-119.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M171,-119.5C234.76,-119.48 250.75,-121.48 315,-121.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M168.75,-115.63C233.13,-115.66 249.11,-118.66 312.75,-118.63"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M168.75,-117.62C232.76,-117.62 248.74,-120.62 312.75,-120.62"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M168.75,-119.62C232.39,-119.59 248.37,-122.59 312.75,-122.62"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge3" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M171,-91.5C235.13,-91.5 251.12,-92.5 315,-92.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M171,-93.5C235,-93.5 251,-94.5 315,-94.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M171,-95.5C234.88,-95.5 250.87,-96.5 315,-96.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M168.75,-92.63C232.88,-92.63 248.87,-93.63 312.75,-93.63"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M168.75,-94.62C232.75,-94.62 248.75,-95.62 312.75,-95.62"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M168.75,-96.62C232.63,-96.62 248.62,-97.62 312.75,-97.62"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge5" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M171,-68.5C234.88,-68.5 250.87,-67.5 315,-67.5"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M171,-70.5C235,-70.5 251,-69.5 315,-69.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M171,-72.5C235.13,-72.5 251.12,-71.5 315,-71.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M168.75,-69.63C232.63,-69.63 248.62,-68.63 312.75,-68.63"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M168.75,-71.62C232.75,-71.62 248.75,-70.62 312.75,-70.62"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M168.75,-73.62C232.88,-73.62 248.87,-72.62 312.75,-72.62"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge7" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M171,-45.5C234.64,-45.53 250.62,-42.53 315,-42.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M171,-47.5C235.01,-47.5 250.99,-44.5 315,-44.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M171,-49.5C235.38,-49.47 251.36,-46.47 315,-46.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M168.75,-46.63C232.39,-46.66 248.37,-43.66 312.75,-43.63"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M168.75,-48.62C232.76,-48.63 248.74,-45.63 312.75,-45.62"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M168.75,-50.62C233.13,-50.59 249.11,-47.59 312.75,-47.62"/>
</g>
<!-- X2 -->
<g id="node2" class="node">
<title>X2</title>
<polygon fill="#ffffff" stroke="black" points="847,-175 665,-175 665,-14 847,-14 847,-175"/>
<polygon fill="none" stroke="black" points="665,-151.5 665,-174.5 847,-174.5 847,-151.5 665,-151.5"/>
<text text-anchor="start" x="747.5" y="-159.3" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="665,-128.5 665,-151.5 758,-151.5 758,-128.5 665,-128.5"/>
<text text-anchor="start" x="669" y="-136.3" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="758,-128.5 758,-151.5 808,-151.5 808,-128.5 758,-128.5"/>
<text text-anchor="start" x="762" y="-136.3" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="808,-128.5 808,-151.5 847,-151.5 847,-128.5 808,-128.5"/>
<text text-anchor="start" x="812" y="-136.3" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="665,-105.5 665,-128.5 718,-128.5 718,-105.5 665,-105.5"/>
<text text-anchor="start" x="687.5" y="-113.3" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="718,-105.5 718,-128.5 794,-128.5 794,-105.5 718,-105.5"/>
<text text-anchor="start" x="740.5" y="-113.3" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="794,-105.5 794,-128.5 847,-128.5 847,-105.5 794,-105.5"/>
<text text-anchor="start" x="816.5" y="-113.3" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="665,-82.5 665,-105.5 718,-105.5 718,-82.5 665,-82.5"/>
<text text-anchor="start" x="687.5" y="-90.3" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="718,-82.5 718,-105.5 794,-105.5 794,-82.5 718,-82.5"/>
<text text-anchor="start" x="741.5" y="-90.3" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="794,-82.5 794,-105.5 847,-105.5 847,-82.5 794,-82.5"/>
<text text-anchor="start" x="816.5" y="-90.3" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="665,-59.5 665,-82.5 718,-82.5 718,-59.5 665,-59.5"/>
<text text-anchor="start" x="687.5" y="-67.3" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="718,-59.5 718,-82.5 794,-82.5 794,-59.5 718,-59.5"/>
<text text-anchor="start" x="742.5" y="-67.3" font-family="arial" font-size="14.00">SCL</text>
<polygon fill="none" stroke="black" points="794,-59.5 794,-82.5 847,-82.5 847,-59.5 794,-59.5"/>
<text text-anchor="start" x="816.5" y="-67.3" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="665,-36.5 665,-59.5 718,-59.5 718,-36.5 665,-36.5"/>
<text text-anchor="start" x="687.5" y="-44.3" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="718,-36.5 718,-59.5 794,-59.5 794,-36.5 718,-36.5"/>
<text text-anchor="start" x="742" y="-44.3" font-family="arial" font-size="14.00">SDA</text>
<polygon fill="none" stroke="black" points="794,-36.5 794,-59.5 847,-59.5 847,-36.5 794,-36.5"/>
<text text-anchor="start" x="816.5" y="-44.3" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="665,-13.5 665,-36.5 847,-36.5 847,-13.5 665,-13.5"/>
<text text-anchor="start" x="705" y="-21.3" font-family="arial" font-size="14.00">to accelerometer</text>
<polygon fill="#ffffff" stroke="black" points="839.75,-176.25 659.75,-176.25 659.75,-13 839.75,-13 839.75,-176.25"/>
<polygon fill="none" stroke="black" points="659.75,-152.5 659.75,-176.25 839.75,-176.25 839.75,-152.5 659.75,-152.5"/>
<text text-anchor="start" x="741.5" y="-158.95" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="659.75,-128.75 659.75,-152.5 752.5,-152.5 752.5,-128.75 659.75,-128.75"/>
<text text-anchor="start" x="663.75" y="-135.2" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="752.5,-128.75 752.5,-152.5 801.75,-152.5 801.75,-128.75 752.5,-128.75"/>
<text text-anchor="start" x="756.5" y="-135.2" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="801.75,-128.75 801.75,-152.5 839.75,-152.5 839.75,-128.75 801.75,-128.75"/>
<text text-anchor="start" x="805.75" y="-135.2" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="659.75,-105.75 659.75,-128.75 712.08,-128.75 712.08,-105.75 659.75,-105.75"/>
<text text-anchor="start" x="682.17" y="-111.45" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="712.08,-105.75 712.08,-128.75 787.42,-128.75 787.42,-105.75 712.08,-105.75"/>
<text text-anchor="start" x="734.38" y="-111.45" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="787.42,-105.75 787.42,-128.75 839.75,-128.75 839.75,-105.75 787.42,-105.75"/>
<text text-anchor="start" x="809.83" y="-111.45" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="659.75,-82.75 659.75,-105.75 712.08,-105.75 712.08,-82.75 659.75,-82.75"/>
<text text-anchor="start" x="682.17" y="-88.45" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="712.08,-82.75 712.08,-105.75 787.42,-105.75 787.42,-82.75 712.08,-82.75"/>
<text text-anchor="start" x="735.5" y="-88.45" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="787.42,-82.75 787.42,-105.75 839.75,-105.75 839.75,-82.75 787.42,-82.75"/>
<text text-anchor="start" x="809.83" y="-88.45" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="659.75,-59.75 659.75,-82.75 712.08,-82.75 712.08,-59.75 659.75,-59.75"/>
<text text-anchor="start" x="682.17" y="-65.45" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="712.08,-59.75 712.08,-82.75 787.42,-82.75 787.42,-59.75 712.08,-59.75"/>
<text text-anchor="start" x="736.62" y="-65.45" font-family="arial" font-size="14.00">SCL</text>
<polygon fill="none" stroke="black" points="787.42,-59.75 787.42,-82.75 839.75,-82.75 839.75,-59.75 787.42,-59.75"/>
<text text-anchor="start" x="809.83" y="-65.45" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="659.75,-36.75 659.75,-59.75 712.08,-59.75 712.08,-36.75 659.75,-36.75"/>
<text text-anchor="start" x="682.17" y="-42.45" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="712.08,-36.75 712.08,-59.75 787.42,-59.75 787.42,-36.75 712.08,-36.75"/>
<text text-anchor="start" x="735.88" y="-42.45" font-family="arial" font-size="14.00">SDA</text>
<polygon fill="none" stroke="black" points="787.42,-36.75 787.42,-59.75 839.75,-59.75 839.75,-36.75 787.42,-36.75"/>
<text text-anchor="start" x="809.83" y="-42.45" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="659.75,-13 659.75,-36.75 839.75,-36.75 839.75,-13 659.75,-13"/>
<text text-anchor="start" x="699.12" y="-19.45" font-family="arial" font-size="14.00">to accelerometer</text>
</g>
<!-- W2 -->
<g id="node5" class="node">
<title>W2</title>
<polygon fill="#ffffff" stroke="black" points="1197,-207 991,-207 991,0 1197,0 1197,-207"/>
<polygon fill="none" stroke="black" points="991,-183.5 991,-206.5 1197,-206.5 1197,-183.5 991,-183.5"/>
<text text-anchor="start" x="1083" y="-191.3" font-family="arial" font-size="14.00">W2</text>
<polygon fill="none" stroke="black" points="991,-160.5 991,-183.5 1041,-183.5 1041,-160.5 991,-160.5"/>
<text text-anchor="start" x="1008.5" y="-168.3" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="1041,-160.5 1041,-183.5 1128,-183.5 1128,-160.5 1041,-160.5"/>
<text text-anchor="start" x="1058.5" y="-168.3" font-family="arial" font-size="14.00">24 AWG</text>
<polygon fill="none" stroke="black" points="1128,-160.5 1128,-183.5 1197,-183.5 1197,-160.5 1128,-160.5"/>
<text text-anchor="start" x="1145" y="-168.3" font-family="arial" font-size="14.00">0.1 m</text>
<text text-anchor="start" x="1022.5" y="-147.3" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="993" y="-128.3" font-family="arial" font-size="14.00">X2:1:GND</text>
<text text-anchor="start" x="1062" y="-128.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="1132" y="-128.3" font-family="arial" font-size="14.00">X3:1:GND</text>
<polygon fill="#000000" stroke="none" points="991,-120.5 991,-122.5 1197,-122.5 1197,-120.5 991,-120.5"/>
<polygon fill="#895956" stroke="none" points="991,-118.5 991,-120.5 1197,-120.5 1197,-118.5 991,-118.5"/>
<polygon fill="#000000" stroke="none" points="991,-116.5 991,-118.5 1197,-118.5 1197,-116.5 991,-116.5"/>
<text text-anchor="start" x="994" y="-103.3" font-family="arial" font-size="14.00">X2:2:VCC</text>
<text text-anchor="start" x="1061.5" y="-103.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="1133" y="-103.3" font-family="arial" font-size="14.00">X3:2:VCC</text>
<polygon fill="#000000" stroke="none" points="991,-95.5 991,-97.5 1197,-97.5 1197,-95.5 991,-95.5"/>
<polygon fill="#ff0000" stroke="none" points="991,-93.5 991,-95.5 1197,-95.5 1197,-93.5 991,-93.5"/>
<polygon fill="#000000" stroke="none" points="991,-91.5 991,-93.5 1197,-93.5 1197,-91.5 991,-91.5"/>
<text text-anchor="start" x="995.5" y="-78.3" font-family="arial" font-size="14.00">X2:3:SCL</text>
<text text-anchor="start" x="1060" y="-78.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:OG &#160;&#160;&#160;</text>
<text text-anchor="start" x="1134.5" y="-78.3" font-family="arial" font-size="14.00">X3:3:SCL</text>
<polygon fill="#000000" stroke="none" points="991,-70.5 991,-72.5 1197,-72.5 1197,-70.5 991,-70.5"/>
<polygon fill="#ff8000" stroke="none" points="991,-68.5 991,-70.5 1197,-70.5 1197,-68.5 991,-68.5"/>
<polygon fill="#000000" stroke="none" points="991,-66.5 991,-68.5 1197,-68.5 1197,-66.5 991,-66.5"/>
<text text-anchor="start" x="994.5" y="-53.3" font-family="arial" font-size="14.00">X2:4:SDA</text>
<text text-anchor="start" x="1062" y="-53.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="1133.5" y="-53.3" font-family="arial" font-size="14.00">X3:4:SDA</text>
<polygon fill="#000000" stroke="none" points="991,-45.5 991,-47.5 1197,-47.5 1197,-45.5 991,-45.5"/>
<polygon fill="#ffff00" stroke="none" points="991,-43.5 991,-45.5 1197,-45.5 1197,-43.5 991,-43.5"/>
<polygon fill="#000000" stroke="none" points="991,-41.5 991,-43.5 1197,-43.5 1197,-41.5 991,-41.5"/>
<text text-anchor="start" x="1022.5" y="-28.3" font-family="arial" font-size="14.00"> </text>
<polygon fill="none" stroke="black" points="991,0.5 991,-22.5 1197,-22.5 1197,0.5 991,0.5"/>
<text text-anchor="start" x="1018.5" y="-7.3" font-family="arial" font-size="14.00">This cable is a bit shorter</text>
<polygon fill="#ffffff" stroke="black" points="1186.75,-209.25 983.75,-209.25 983.75,0 1186.75,0 1186.75,-209.25"/>
<polygon fill="none" stroke="black" points="983.75,-185.5 983.75,-209.25 1186.75,-209.25 1186.75,-185.5 983.75,-185.5"/>
<text text-anchor="start" x="1074.75" y="-191.95" font-family="arial" font-size="14.00">W2</text>
<polygon fill="none" stroke="black" points="983.75,-161.75 983.75,-185.5 1032.17,-185.5 1032.17,-161.75 983.75,-161.75"/>
<text text-anchor="start" x="1000.83" y="-168.2" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="1032.17,-161.75 1032.17,-185.5 1118.08,-185.5 1118.08,-161.75 1032.17,-161.75"/>
<text text-anchor="start" x="1049.25" y="-168.2" font-family="arial" font-size="14.00">24 AWG</text>
<polygon fill="none" stroke="black" points="1118.08,-161.75 1118.08,-185.5 1186.75,-185.5 1186.75,-161.75 1118.08,-161.75"/>
<text text-anchor="start" x="1135.17" y="-168.2" font-family="arial" font-size="14.00">0.1 m</text>
<text text-anchor="start" x="1014.88" y="-146.45" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="985.62" y="-127.45" font-family="arial" font-size="14.00">X2:1:GND</text>
<text text-anchor="start" x="1053.38" y="-127.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="1122.62" y="-127.45" font-family="arial" font-size="14.00">X3:1:GND</text>
<polygon fill="#000000" stroke="none" points="983.75,-121.75 983.75,-123.75 1186.75,-123.75 1186.75,-121.75 983.75,-121.75"/>
<polygon fill="#895956" stroke="none" points="983.75,-119.75 983.75,-121.75 1186.75,-121.75 1186.75,-119.75 983.75,-119.75"/>
<polygon fill="#000000" stroke="none" points="983.75,-117.75 983.75,-119.75 1186.75,-119.75 1186.75,-117.75 983.75,-117.75"/>
<text text-anchor="start" x="986.75" y="-102.45" font-family="arial" font-size="14.00">X2:2:VCC</text>
<text text-anchor="start" x="1053" y="-102.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="1123.75" y="-102.45" font-family="arial" font-size="14.00">X3:2:VCC</text>
<polygon fill="#000000" stroke="none" points="983.75,-96.75 983.75,-98.75 1186.75,-98.75 1186.75,-96.75 983.75,-96.75"/>
<polygon fill="#ff0000" stroke="none" points="983.75,-94.75 983.75,-96.75 1186.75,-96.75 1186.75,-94.75 983.75,-94.75"/>
<polygon fill="#000000" stroke="none" points="983.75,-92.75 983.75,-94.75 1186.75,-94.75 1186.75,-92.75 983.75,-92.75"/>
<text text-anchor="start" x="987.88" y="-77.45" font-family="arial" font-size="14.00">X2:3:SCL</text>
<text text-anchor="start" x="1051.5" y="-77.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:OG &#160;&#160;&#160;</text>
<text text-anchor="start" x="1124.88" y="-77.45" font-family="arial" font-size="14.00">X3:3:SCL</text>
<polygon fill="#000000" stroke="none" points="983.75,-71.75 983.75,-73.75 1186.75,-73.75 1186.75,-71.75 983.75,-71.75"/>
<polygon fill="#ff8000" stroke="none" points="983.75,-69.75 983.75,-71.75 1186.75,-71.75 1186.75,-69.75 983.75,-69.75"/>
<polygon fill="#000000" stroke="none" points="983.75,-67.75 983.75,-69.75 1186.75,-69.75 1186.75,-67.75 983.75,-67.75"/>
<text text-anchor="start" x="987.12" y="-52.45" font-family="arial" font-size="14.00">X2:4:SDA</text>
<text text-anchor="start" x="1053.75" y="-52.45" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="1124.12" y="-52.45" font-family="arial" font-size="14.00">X3:4:SDA</text>
<polygon fill="#000000" stroke="none" points="983.75,-46.75 983.75,-48.75 1186.75,-48.75 1186.75,-46.75 983.75,-46.75"/>
<polygon fill="#ffff00" stroke="none" points="983.75,-44.75 983.75,-46.75 1186.75,-46.75 1186.75,-44.75 983.75,-44.75"/>
<polygon fill="#000000" stroke="none" points="983.75,-42.75 983.75,-44.75 1186.75,-44.75 1186.75,-42.75 983.75,-42.75"/>
<text text-anchor="start" x="1014.88" y="-27.45" font-family="arial" font-size="14.00"> </text>
<polygon fill="none" stroke="black" points="983.75,0 983.75,-23.75 1186.75,-23.75 1186.75,0 983.75,0"/>
<text text-anchor="start" x="1010.25" y="-6.45" font-family="arial" font-size="14.00">This cable is a bit shorter</text>
</g>
<!-- X2&#45;&#45;W2 -->
<g id="edge9" class="edge">
<title>X2:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M847,-115.5C911.25,-115.52 927.24,-117.52 991,-117.5"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M847,-117.5C911.01,-117.5 926.99,-119.5 991,-119.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M847,-119.5C910.76,-119.48 926.75,-121.48 991,-121.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M839.75,-115.63C904.13,-115.66 920.11,-118.66 983.75,-118.63"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M839.75,-117.62C903.76,-117.62 919.74,-120.62 983.75,-120.62"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M839.75,-119.62C903.39,-119.59 919.37,-122.59 983.75,-122.62"/>
</g>
<!-- X2&#45;&#45;W2 -->
<g id="edge11" class="edge">
<title>X2:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M847,-91.5C911.13,-91.5 927.12,-92.5 991,-92.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M847,-93.5C911,-93.5 927,-94.5 991,-94.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M847,-95.5C910.88,-95.5 926.87,-96.5 991,-96.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M839.75,-92.63C903.88,-92.63 919.87,-93.63 983.75,-93.63"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M839.75,-94.62C903.75,-94.62 919.75,-95.62 983.75,-95.62"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M839.75,-96.62C903.63,-96.62 919.62,-97.62 983.75,-97.62"/>
</g>
<!-- X2&#45;&#45;W2 -->
<g id="edge13" class="edge">
<title>X2:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M847,-68.5C910.88,-68.5 926.87,-67.5 991,-67.5"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M847,-70.5C911,-70.5 927,-69.5 991,-69.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M847,-72.5C911.13,-72.5 927.12,-71.5 991,-71.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M839.75,-69.63C903.63,-69.63 919.62,-68.63 983.75,-68.63"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M839.75,-71.62C903.75,-71.62 919.75,-70.62 983.75,-70.62"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M839.75,-73.62C903.88,-73.62 919.87,-72.62 983.75,-72.62"/>
</g>
<!-- X2&#45;&#45;W2 -->
<g id="edge15" class="edge">
<title>X2:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M847,-45.5C910.64,-45.53 926.62,-42.53 991,-42.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M847,-47.5C911.01,-47.5 926.99,-44.5 991,-44.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M847,-49.5C911.38,-49.47 927.36,-46.47 991,-46.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M839.75,-46.63C903.39,-46.66 919.37,-43.66 983.75,-43.63"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M839.75,-48.62C903.76,-48.63 919.74,-45.63 983.75,-45.62"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M839.75,-50.62C904.13,-50.59 920.11,-47.59 983.75,-47.62"/>
</g>
<!-- X3 -->
<g id="node3" class="node">
<title>X3</title>
<polygon fill="#ffffff" stroke="black" points="1523,-175 1341,-175 1341,-14 1523,-14 1523,-175"/>
<polygon fill="none" stroke="black" points="1341,-151.5 1341,-174.5 1523,-174.5 1523,-151.5 1341,-151.5"/>
<text text-anchor="start" x="1423.5" y="-159.3" font-family="arial" font-size="14.00">X3</text>
<polygon fill="none" stroke="black" points="1341,-128.5 1341,-151.5 1434,-151.5 1434,-128.5 1341,-128.5"/>
<text text-anchor="start" x="1345" y="-136.3" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="1434,-128.5 1434,-151.5 1484,-151.5 1484,-128.5 1434,-128.5"/>
<text text-anchor="start" x="1438" y="-136.3" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="1484,-128.5 1484,-151.5 1523,-151.5 1523,-128.5 1484,-128.5"/>
<text text-anchor="start" x="1488" y="-136.3" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="1341,-105.5 1341,-128.5 1421,-128.5 1421,-105.5 1341,-105.5"/>
<text text-anchor="start" x="1377" y="-113.3" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="1421,-105.5 1421,-128.5 1523,-128.5 1523,-105.5 1421,-105.5"/>
<text text-anchor="start" x="1456.5" y="-113.3" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="1341,-82.5 1341,-105.5 1421,-105.5 1421,-82.5 1341,-82.5"/>
<text text-anchor="start" x="1377" y="-90.3" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="1421,-82.5 1421,-105.5 1523,-105.5 1523,-82.5 1421,-82.5"/>
<text text-anchor="start" x="1457.5" y="-90.3" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="1341,-59.5 1341,-82.5 1421,-82.5 1421,-59.5 1341,-59.5"/>
<text text-anchor="start" x="1377" y="-67.3" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="1421,-59.5 1421,-82.5 1523,-82.5 1523,-59.5 1421,-59.5"/>
<text text-anchor="start" x="1458.5" y="-67.3" font-family="arial" font-size="14.00">SCL</text>
<polygon fill="none" stroke="black" points="1341,-36.5 1341,-59.5 1421,-59.5 1421,-36.5 1341,-36.5"/>
<text text-anchor="start" x="1377" y="-44.3" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="1421,-36.5 1421,-59.5 1523,-59.5 1523,-36.5 1421,-36.5"/>
<text text-anchor="start" x="1458" y="-44.3" font-family="arial" font-size="14.00">SDA</text>
<polygon fill="none" stroke="black" points="1341,-13.5 1341,-36.5 1523,-36.5 1523,-13.5 1341,-13.5"/>
<text text-anchor="start" x="1365.5" y="-21.3" font-family="arial" font-size="14.00">to temperature sensor</text>
<polygon fill="#ffffff" stroke="black" points="1510.75,-176.25 1330.75,-176.25 1330.75,-13 1510.75,-13 1510.75,-176.25"/>
<polygon fill="none" stroke="black" points="1330.75,-152.5 1330.75,-176.25 1510.75,-176.25 1510.75,-152.5 1330.75,-152.5"/>
<text text-anchor="start" x="1412.5" y="-158.95" font-family="arial" font-size="14.00">X3</text>
<polygon fill="none" stroke="black" points="1330.75,-128.75 1330.75,-152.5 1423.5,-152.5 1423.5,-128.75 1330.75,-128.75"/>
<text text-anchor="start" x="1334.75" y="-135.2" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="1423.5,-128.75 1423.5,-152.5 1472.75,-152.5 1472.75,-128.75 1423.5,-128.75"/>
<text text-anchor="start" x="1427.5" y="-135.2" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="1472.75,-128.75 1472.75,-152.5 1510.75,-152.5 1510.75,-128.75 1472.75,-128.75"/>
<text text-anchor="start" x="1476.75" y="-135.2" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="1330.75,-105.75 1330.75,-128.75 1409.25,-128.75 1409.25,-105.75 1330.75,-105.75"/>
<text text-anchor="start" x="1366.25" y="-111.45" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="1409.25,-105.75 1409.25,-128.75 1510.75,-128.75 1510.75,-105.75 1409.25,-105.75"/>
<text text-anchor="start" x="1444.62" y="-111.45" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="1330.75,-82.75 1330.75,-105.75 1409.25,-105.75 1409.25,-82.75 1330.75,-82.75"/>
<text text-anchor="start" x="1366.25" y="-88.45" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="1409.25,-82.75 1409.25,-105.75 1510.75,-105.75 1510.75,-82.75 1409.25,-82.75"/>
<text text-anchor="start" x="1445.75" y="-88.45" font-family="arial" font-size="14.00">VCC</text>
<polygon fill="none" stroke="black" points="1330.75,-59.75 1330.75,-82.75 1409.25,-82.75 1409.25,-59.75 1330.75,-59.75"/>
<text text-anchor="start" x="1366.25" y="-65.45" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="1409.25,-59.75 1409.25,-82.75 1510.75,-82.75 1510.75,-59.75 1409.25,-59.75"/>
<text text-anchor="start" x="1446.88" y="-65.45" font-family="arial" font-size="14.00">SCL</text>
<polygon fill="none" stroke="black" points="1330.75,-36.75 1330.75,-59.75 1409.25,-59.75 1409.25,-36.75 1330.75,-36.75"/>
<text text-anchor="start" x="1366.25" y="-42.45" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="1409.25,-36.75 1409.25,-59.75 1510.75,-59.75 1510.75,-36.75 1409.25,-36.75"/>
<text text-anchor="start" x="1446.12" y="-42.45" font-family="arial" font-size="14.00">SDA</text>
<polygon fill="none" stroke="black" points="1330.75,-13 1330.75,-36.75 1510.75,-36.75 1510.75,-13 1330.75,-13"/>
<text text-anchor="start" x="1354.38" y="-19.45" font-family="arial" font-size="14.00">to temperature sensor</text>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M521,-117.5C584.76,-117.52 600.75,-115.52 665,-115.5"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M521,-119.5C585.01,-119.5 600.99,-117.5 665,-117.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521,-121.5C585.25,-121.48 601.24,-119.48 665,-119.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M515.75,-118.63C579.39,-118.66 595.37,-115.66 659.75,-115.63"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M515.75,-120.62C579.76,-120.62 595.74,-117.62 659.75,-117.62"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M515.75,-122.62C580.13,-122.59 596.11,-119.59 659.75,-119.62"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M521,-92.5C584.88,-92.5 600.87,-91.5 665,-91.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M521,-94.5C585,-94.5 601,-93.5 665,-93.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521,-96.5C585.13,-96.5 601.12,-95.5 665,-95.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M515.75,-93.63C579.63,-93.63 595.62,-92.63 659.75,-92.63"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M515.75,-95.62C579.75,-95.62 595.75,-94.62 659.75,-94.62"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M515.75,-97.62C579.88,-97.62 595.87,-96.62 659.75,-96.62"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge6" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M521,-67.5C585.13,-67.5 601.12,-68.5 665,-68.5"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M521,-69.5C585,-69.5 601,-70.5 665,-70.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521,-71.5C584.88,-71.5 600.87,-72.5 665,-72.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M515.75,-68.63C579.88,-68.63 595.87,-69.63 659.75,-69.63"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M515.75,-70.62C579.75,-70.62 595.75,-71.62 659.75,-71.62"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M515.75,-72.62C579.63,-72.62 595.62,-73.62 659.75,-73.62"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge8" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M521,-42.5C585.38,-42.53 601.36,-45.53 665,-45.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M521,-44.5C585.01,-44.5 600.99,-47.5 665,-47.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M521,-46.5C584.64,-46.47 600.62,-49.47 665,-49.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M515.75,-43.63C580.13,-43.66 596.11,-46.66 659.75,-46.63"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M515.75,-45.62C579.76,-45.63 595.74,-48.63 659.75,-48.62"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M515.75,-47.62C579.39,-47.59 595.37,-50.59 659.75,-50.62"/>
</g>
<!-- W2&#45;&#45;X3 -->
<g id="edge10" class="edge">
<title>W2:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1197,-117.5C1260.76,-117.52 1276.75,-115.52 1341,-115.5"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M1197,-119.5C1261.01,-119.5 1276.99,-117.5 1341,-117.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1197,-121.5C1261.25,-121.48 1277.24,-119.48 1341,-119.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1186.75,-118.63C1250.39,-118.66 1266.37,-115.66 1330.75,-115.63"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M1186.75,-120.62C1250.76,-120.62 1266.74,-117.62 1330.75,-117.62"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1186.75,-122.62C1251.13,-122.59 1267.11,-119.59 1330.75,-119.62"/>
</g>
<!-- W2&#45;&#45;X3 -->
<g id="edge12" class="edge">
<title>W2:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1197,-92.5C1260.88,-92.5 1276.87,-91.5 1341,-91.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M1197,-94.5C1261,-94.5 1277,-93.5 1341,-93.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1197,-96.5C1261.13,-96.5 1277.12,-95.5 1341,-95.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1186.75,-93.63C1250.63,-93.63 1266.62,-92.63 1330.75,-92.63"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M1186.75,-95.62C1250.75,-95.62 1266.75,-94.62 1330.75,-94.62"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1186.75,-97.62C1250.88,-97.62 1266.87,-96.62 1330.75,-96.62"/>
</g>
<!-- W2&#45;&#45;X3 -->
<g id="edge14" class="edge">
<title>W2:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1197,-67.5C1261.13,-67.5 1277.12,-68.5 1341,-68.5"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M1197,-69.5C1261,-69.5 1277,-70.5 1341,-70.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1197,-71.5C1260.88,-71.5 1276.87,-72.5 1341,-72.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1186.75,-68.63C1250.88,-68.63 1266.87,-69.63 1330.75,-69.63"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M1186.75,-70.62C1250.75,-70.62 1266.75,-71.62 1330.75,-71.62"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1186.75,-72.62C1250.63,-72.62 1266.62,-73.62 1330.75,-73.62"/>
</g>
<!-- W2&#45;&#45;X3 -->
<g id="edge16" class="edge">
<title>W2:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1197,-42.5C1261.38,-42.53 1277.36,-45.53 1341,-45.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M1197,-44.5C1261.01,-44.5 1276.99,-47.5 1341,-47.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1197,-46.5C1260.64,-46.47 1276.62,-49.47 1341,-49.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1186.75,-43.63C1251.13,-43.66 1267.11,-46.66 1330.75,-46.63"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M1186.75,-45.62C1250.76,-45.63 1266.74,-48.63 1330.75,-48.62"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1186.75,-47.62C1250.39,-47.59 1266.37,-50.59 1330.75,-50.62"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 26 KiB

242
tutorial/tutorial05.html generated
View File

@ -30,184 +30,184 @@
<div id="diagram">
<!-- XML and DOCTYPE declarations from SVG file removed -->
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="784pt" height="215pt"
viewBox="0.00 0.00 784.00 214.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 210.5)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-210.5 780,-210.5 780,4 -4,4"/>
<svg width="777pt" height="218pt"
viewBox="0.00 0.00 777.00 217.62" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 213.62)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-213.62 773,-213.62 773,4 -4,4"/>
<!-- __F1_1 -->
<g id="node1" class="node">
<title>__F1_1</title>
<polygon fill="#ffffff" stroke="black" points="186,-164 0,-164 0,-141 186,-141 186,-164"/>
<polygon fill="none" stroke="black" points="0,-140.5 0,-163.5 87,-163.5 87,-140.5 0,-140.5"/>
<text text-anchor="start" x="4" y="-148.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="none" stroke="black" points="87,-140.5 87,-163.5 147,-163.5 147,-140.5 87,-140.5"/>
<text text-anchor="start" x="91" y="-148.3" font-family="arial" font-size="14.00">0.5 mm²</text>
<polygon fill="none" stroke="black" points="147,-140.5 147,-163.5 178,-163.5 178,-140.5 147,-140.5"/>
<text text-anchor="start" x="151" y="-148.3" font-family="arial" font-size="14.00">OG</text>
<polygon fill="#ff8000" stroke="none" points="178,-140.5 178,-163.5 186,-163.5 186,-140.5 178,-140.5"/>
<polygon fill="none" stroke="black" points="178,-140.5 178,-163.5 186,-163.5 186,-140.5 178,-140.5"/>
<polygon fill="#ffffff" stroke="black" points="184.25,-167.75 0,-167.75 0,-144 184.25,-144 184.25,-167.75"/>
<polygon fill="none" stroke="black" points="0,-144 0,-167.75 86.75,-167.75 86.75,-144 0,-144"/>
<text text-anchor="start" x="4" y="-150.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="none" stroke="black" points="86.75,-144 86.75,-167.75 145.75,-167.75 145.75,-144 86.75,-144"/>
<text text-anchor="start" x="90.75" y="-150.45" font-family="arial" font-size="14.00">0.5 mm²</text>
<polygon fill="none" stroke="black" points="145.75,-144 145.75,-167.75 176.25,-167.75 176.25,-144 145.75,-144"/>
<text text-anchor="start" x="149.75" y="-150.45" font-family="arial" font-size="14.00">OG</text>
<polygon fill="#ff8000" stroke="none" points="176.25,-144 176.25,-167.75 184.25,-167.75 184.25,-144 176.25,-144"/>
<polygon fill="none" stroke="black" points="176.25,-144 176.25,-167.75 184.25,-167.75 184.25,-144 176.25,-144"/>
</g>
<!-- W1 -->
<g id="node6" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="464,-206.5 330,-206.5 330,-22.5 464,-22.5 464,-206.5"/>
<polygon fill="none" stroke="black" points="330,-183.5 330,-206.5 464,-206.5 464,-183.5 330,-183.5"/>
<text text-anchor="start" x="386" y="-191.3" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="330,-160.5 330,-183.5 356,-183.5 356,-160.5 330,-160.5"/>
<text text-anchor="start" x="335.5" y="-168.3" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="356,-160.5 356,-183.5 419,-183.5 419,-160.5 356,-160.5"/>
<text text-anchor="start" x="361.5" y="-168.3" font-family="arial" font-size="14.00">0.5 mm²</text>
<polygon fill="none" stroke="black" points="419,-160.5 419,-183.5 464,-183.5 464,-160.5 419,-160.5"/>
<text text-anchor="start" x="424" y="-168.3" font-family="arial" font-size="14.00">0.3 m</text>
<text text-anchor="start" x="332" y="-147.3" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="341" y="-128.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="398" y="-128.3" font-family="arial" font-size="14.00">X1:1:+12V</text>
<polygon fill="#000000" stroke="none" points="330,-120.5 330,-122.5 464,-122.5 464,-120.5 330,-120.5"/>
<polygon fill="#ffff00" stroke="none" points="330,-118.5 330,-120.5 464,-120.5 464,-118.5 330,-118.5"/>
<polygon fill="#000000" stroke="none" points="330,-116.5 330,-118.5 464,-118.5 464,-116.5 330,-116.5"/>
<text text-anchor="start" x="341" y="-103.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="398.5" y="-103.3" font-family="arial" font-size="14.00">X1:2:GND</text>
<polygon fill="#000000" stroke="none" points="330,-95.5 330,-97.5 464,-97.5 464,-95.5 330,-95.5"/>
<polygon fill="#000000" stroke="none" points="330,-93.5 330,-95.5 464,-95.5 464,-93.5 330,-93.5"/>
<polygon fill="#000000" stroke="none" points="330,-91.5 330,-93.5 464,-93.5 464,-91.5 330,-91.5"/>
<text text-anchor="start" x="341" y="-78.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="398.5" y="-78.3" font-family="arial" font-size="14.00">X1:3:GND</text>
<polygon fill="#000000" stroke="none" points="330,-70.5 330,-72.5 464,-72.5 464,-70.5 330,-70.5"/>
<polygon fill="#000000" stroke="none" points="330,-68.5 330,-70.5 464,-70.5 464,-68.5 330,-68.5"/>
<polygon fill="#000000" stroke="none" points="330,-66.5 330,-68.5 464,-68.5 464,-66.5 330,-66.5"/>
<text text-anchor="start" x="340" y="-53.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="401.5" y="-53.3" font-family="arial" font-size="14.00">X1:4:+5V</text>
<polygon fill="#000000" stroke="none" points="330,-45.5 330,-47.5 464,-47.5 464,-45.5 330,-45.5"/>
<polygon fill="#ff0000" stroke="none" points="330,-43.5 330,-45.5 464,-45.5 464,-43.5 330,-43.5"/>
<polygon fill="#000000" stroke="none" points="330,-41.5 330,-43.5 464,-43.5 464,-41.5 330,-41.5"/>
<text text-anchor="start" x="332" y="-28.3" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="459.25,-209.62 328.25,-209.62 328.25,-24.12 459.25,-24.12 459.25,-209.62"/>
<polygon fill="none" stroke="black" points="328.25,-185.88 328.25,-209.62 459.25,-209.62 459.25,-185.88 328.25,-185.88"/>
<text text-anchor="start" x="383.25" y="-192.32" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="328.25,-162.12 328.25,-185.88 352.92,-185.88 352.92,-162.12 328.25,-162.12"/>
<text text-anchor="start" x="333.46" y="-168.57" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="352.92,-162.12 352.92,-185.88 414.33,-185.88 414.33,-162.12 352.92,-162.12"/>
<text text-anchor="start" x="358.12" y="-168.57" font-family="arial" font-size="14.00">0.5 mm²</text>
<polygon fill="none" stroke="black" points="414.33,-162.12 414.33,-185.88 459.25,-185.88 459.25,-162.12 414.33,-162.12"/>
<text text-anchor="start" x="419.54" y="-168.57" font-family="arial" font-size="14.00">0.3 m</text>
<text text-anchor="start" x="329.88" y="-146.82" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="337.88" y="-127.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="393.88" y="-127.83" font-family="arial" font-size="14.00">X1:1:+12V</text>
<polygon fill="#000000" stroke="none" points="328.25,-122.12 328.25,-124.12 459.25,-124.12 459.25,-122.12 328.25,-122.12"/>
<polygon fill="#ffff00" stroke="none" points="328.25,-120.12 328.25,-122.12 459.25,-122.12 459.25,-120.12 328.25,-120.12"/>
<polygon fill="#000000" stroke="none" points="328.25,-118.12 328.25,-120.12 459.25,-120.12 459.25,-118.12 328.25,-118.12"/>
<text text-anchor="start" x="337.88" y="-102.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="394.62" y="-102.83" font-family="arial" font-size="14.00">X1:2:GND</text>
<polygon fill="#000000" stroke="none" points="328.25,-97.12 328.25,-99.12 459.25,-99.12 459.25,-97.12 328.25,-97.12"/>
<polygon fill="#000000" stroke="none" points="328.25,-95.12 328.25,-97.12 459.25,-97.12 459.25,-95.12 328.25,-95.12"/>
<polygon fill="#000000" stroke="none" points="328.25,-93.12 328.25,-95.12 459.25,-95.12 459.25,-93.12 328.25,-93.12"/>
<text text-anchor="start" x="337.88" y="-77.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="394.62" y="-77.83" font-family="arial" font-size="14.00">X1:3:GND</text>
<polygon fill="#000000" stroke="none" points="328.25,-72.12 328.25,-74.12 459.25,-74.12 459.25,-72.12 328.25,-72.12"/>
<polygon fill="#000000" stroke="none" points="328.25,-70.12 328.25,-72.12 459.25,-72.12 459.25,-70.12 328.25,-70.12"/>
<polygon fill="#000000" stroke="none" points="328.25,-68.12 328.25,-70.12 459.25,-70.12 459.25,-68.12 328.25,-68.12"/>
<text text-anchor="start" x="337.12" y="-52.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="397.62" y="-52.83" font-family="arial" font-size="14.00">X1:4:+5V</text>
<polygon fill="#000000" stroke="none" points="328.25,-47.12 328.25,-49.12 459.25,-49.12 459.25,-47.12 328.25,-47.12"/>
<polygon fill="#ff0000" stroke="none" points="328.25,-45.12 328.25,-47.12 459.25,-47.12 459.25,-45.12 328.25,-45.12"/>
<polygon fill="#000000" stroke="none" points="328.25,-43.12 328.25,-45.12 459.25,-45.12 459.25,-43.12 328.25,-43.12"/>
<text text-anchor="start" x="329.88" y="-27.82" font-family="arial" font-size="14.00"> </text>
</g>
<!-- __F1_1&#45;&#45;W1 -->
<g id="edge1" class="edge">
<title>__F1_1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-150.5C249.79,-151.78 262.47,-118.78 330,-117.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M186,-152.5C251.66,-152.5 264.34,-119.5 330,-119.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-154.5C253.53,-153.22 266.21,-120.22 330,-121.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.25,-153.88C248.23,-155.21 260.5,-120.21 328.25,-118.88"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M184.25,-155.88C250.11,-155.88 262.39,-120.88 328.25,-120.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.25,-157.87C252,-156.54 264.27,-121.54 328.25,-122.87"/>
</g>
<!-- __F1_2 -->
<g id="node2" class="node">
<title>__F1_2</title>
<polygon fill="#ffffff" stroke="black" points="186,-117 0,-117 0,-94 186,-94 186,-117"/>
<polygon fill="none" stroke="black" points="0,-93.5 0,-116.5 87,-116.5 87,-93.5 0,-93.5"/>
<text text-anchor="start" x="4" y="-101.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="none" stroke="black" points="87,-93.5 87,-116.5 147,-116.5 147,-93.5 87,-93.5"/>
<text text-anchor="start" x="91" y="-101.3" font-family="arial" font-size="14.00">0.5 mm²</text>
<polygon fill="none" stroke="black" points="147,-93.5 147,-116.5 178,-116.5 178,-93.5 147,-93.5"/>
<text text-anchor="start" x="151" y="-101.3" font-family="arial" font-size="14.00">OG</text>
<polygon fill="#ff8000" stroke="none" points="178,-93.5 178,-116.5 186,-116.5 186,-93.5 178,-93.5"/>
<polygon fill="none" stroke="black" points="178,-93.5 178,-116.5 186,-116.5 186,-93.5 178,-93.5"/>
<polygon fill="#ffffff" stroke="black" points="184.25,-119.75 0,-119.75 0,-96 184.25,-96 184.25,-119.75"/>
<polygon fill="none" stroke="black" points="0,-96 0,-119.75 86.75,-119.75 86.75,-96 0,-96"/>
<text text-anchor="start" x="4" y="-102.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="none" stroke="black" points="86.75,-96 86.75,-119.75 145.75,-119.75 145.75,-96 86.75,-96"/>
<text text-anchor="start" x="90.75" y="-102.45" font-family="arial" font-size="14.00">0.5 mm²</text>
<polygon fill="none" stroke="black" points="145.75,-96 145.75,-119.75 176.25,-119.75 176.25,-96 145.75,-96"/>
<text text-anchor="start" x="149.75" y="-102.45" font-family="arial" font-size="14.00">OG</text>
<polygon fill="#ff8000" stroke="none" points="176.25,-96 176.25,-119.75 184.25,-119.75 184.25,-96 176.25,-96"/>
<polygon fill="none" stroke="black" points="176.25,-96 176.25,-119.75 184.25,-119.75 184.25,-96 176.25,-96"/>
</g>
<!-- __F1_2&#45;&#45;W1 -->
<g id="edge3" class="edge">
<title>__F1_2:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-103.5C249.04,-103.86 264.66,-92.86 330,-92.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-105.5C250.19,-105.5 265.81,-94.5 330,-94.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-107.5C251.34,-107.14 266.96,-96.14 330,-96.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.25,-105.88C247.25,-106.29 262.81,-94.29 328.25,-93.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.25,-107.87C248.47,-107.87 264.03,-95.87 328.25,-95.87"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.25,-109.87C249.69,-109.46 265.25,-97.46 328.25,-97.87"/>
</g>
<!-- __F1_3 -->
<g id="node3" class="node">
<title>__F1_3</title>
<polygon fill="#ffffff" stroke="black" points="186,-70 0,-70 0,-47 186,-47 186,-70"/>
<polygon fill="none" stroke="black" points="0,-46.5 0,-69.5 87,-69.5 87,-46.5 0,-46.5"/>
<text text-anchor="start" x="4" y="-54.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="none" stroke="black" points="87,-46.5 87,-69.5 147,-69.5 147,-46.5 87,-46.5"/>
<text text-anchor="start" x="91" y="-54.3" font-family="arial" font-size="14.00">0.5 mm²</text>
<polygon fill="none" stroke="black" points="147,-46.5 147,-69.5 178,-69.5 178,-46.5 147,-46.5"/>
<text text-anchor="start" x="151" y="-54.3" font-family="arial" font-size="14.00">OG</text>
<polygon fill="#ff8000" stroke="none" points="178,-46.5 178,-69.5 186,-69.5 186,-46.5 178,-46.5"/>
<polygon fill="none" stroke="black" points="178,-46.5 178,-69.5 186,-69.5 186,-46.5 178,-46.5"/>
<polygon fill="#ffffff" stroke="black" points="184.25,-71.75 0,-71.75 0,-48 184.25,-48 184.25,-71.75"/>
<polygon fill="none" stroke="black" points="0,-48 0,-71.75 86.75,-71.75 86.75,-48 0,-48"/>
<text text-anchor="start" x="4" y="-54.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="none" stroke="black" points="86.75,-48 86.75,-71.75 145.75,-71.75 145.75,-48 86.75,-48"/>
<text text-anchor="start" x="90.75" y="-54.45" font-family="arial" font-size="14.00">0.5 mm²</text>
<polygon fill="none" stroke="black" points="145.75,-48 145.75,-71.75 176.25,-71.75 176.25,-48 145.75,-48"/>
<text text-anchor="start" x="149.75" y="-54.45" font-family="arial" font-size="14.00">OG</text>
<polygon fill="#ff8000" stroke="none" points="176.25,-48 176.25,-71.75 184.25,-71.75 184.25,-48 176.25,-48"/>
<polygon fill="none" stroke="black" points="176.25,-48 176.25,-71.75 184.25,-71.75 184.25,-48 176.25,-48"/>
</g>
<!-- __F1_3&#45;&#45;W1 -->
<g id="edge5" class="edge">
<title>__F1_3:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-56.5C251.34,-56.86 266.96,-67.86 330,-67.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-58.5C250.19,-58.5 265.81,-69.5 330,-69.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-60.5C249.04,-60.14 264.66,-71.14 330,-71.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.25,-57.88C249.59,-58.24 265.21,-69.24 328.25,-68.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.25,-59.88C248.44,-59.88 264.06,-70.87 328.25,-70.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.25,-61.87C247.29,-61.51 262.91,-72.51 328.25,-72.87"/>
</g>
<!-- __F1_4 -->
<g id="node4" class="node">
<title>__F1_4</title>
<polygon fill="#ffffff" stroke="black" points="186,-23 0,-23 0,0 186,0 186,-23"/>
<polygon fill="none" stroke="black" points="0,0.5 0,-22.5 87,-22.5 87,0.5 0,0.5"/>
<text text-anchor="start" x="4" y="-7.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="none" stroke="black" points="87,0.5 87,-22.5 147,-22.5 147,0.5 87,0.5"/>
<text text-anchor="start" x="91" y="-7.3" font-family="arial" font-size="14.00">0.5 mm²</text>
<polygon fill="none" stroke="black" points="147,0.5 147,-22.5 178,-22.5 178,0.5 147,0.5"/>
<text text-anchor="start" x="151" y="-7.3" font-family="arial" font-size="14.00">OG</text>
<polygon fill="#ff8000" stroke="none" points="178,0.5 178,-22.5 186,-22.5 186,0.5 178,0.5"/>
<polygon fill="none" stroke="black" points="178,0.5 178,-22.5 186,-22.5 186,0.5 178,0.5"/>
<polygon fill="#ffffff" stroke="black" points="184.25,-23.75 0,-23.75 0,0 184.25,0 184.25,-23.75"/>
<polygon fill="none" stroke="black" points="0,0 0,-23.75 86.75,-23.75 86.75,0 0,0"/>
<text text-anchor="start" x="4" y="-6.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="none" stroke="black" points="86.75,0 86.75,-23.75 145.75,-23.75 145.75,0 86.75,0"/>
<text text-anchor="start" x="90.75" y="-6.45" font-family="arial" font-size="14.00">0.5 mm²</text>
<polygon fill="none" stroke="black" points="145.75,0 145.75,-23.75 176.25,-23.75 176.25,0 145.75,0"/>
<text text-anchor="start" x="149.75" y="-6.45" font-family="arial" font-size="14.00">OG</text>
<polygon fill="#ff8000" stroke="none" points="176.25,0 176.25,-23.75 184.25,-23.75 184.25,0 176.25,0"/>
<polygon fill="none" stroke="black" points="176.25,0 176.25,-23.75 184.25,-23.75 184.25,0 176.25,0"/>
</g>
<!-- __F1_4&#45;&#45;W1 -->
<g id="edge7" class="edge">
<title>__F1_4:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-9.5C253.53,-10.78 266.21,-43.78 330,-42.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M186,-11.5C251.66,-11.5 264.34,-44.5 330,-44.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-13.5C249.79,-12.22 262.47,-45.22 330,-46.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.25,-9.88C251.89,-11.19 264.37,-45.19 328.25,-43.88"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M184.25,-11.88C250.01,-11.88 262.49,-45.88 328.25,-45.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.25,-13.87C248.13,-12.56 260.61,-46.56 328.25,-47.87"/>
</g>
<!-- X1 -->
<g id="node5" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="776,-174.5 608,-174.5 608,-36.5 776,-36.5 776,-174.5"/>
<polygon fill="none" stroke="black" points="608,-151.5 608,-174.5 776,-174.5 776,-151.5 608,-151.5"/>
<text text-anchor="start" x="683.5" y="-159.3" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="608,-128.5 608,-151.5 687,-151.5 687,-128.5 608,-128.5"/>
<text text-anchor="start" x="612" y="-136.3" font-family="arial" font-size="14.00">Molex 8981</text>
<polygon fill="none" stroke="black" points="687,-128.5 687,-151.5 737,-151.5 737,-128.5 687,-128.5"/>
<text text-anchor="start" x="691" y="-136.3" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="737,-128.5 737,-151.5 776,-151.5 776,-128.5 737,-128.5"/>
<text text-anchor="start" x="741" y="-136.3" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="608,-105.5 608,-128.5 680,-128.5 680,-105.5 608,-105.5"/>
<text text-anchor="start" x="640" y="-113.3" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="680,-105.5 680,-128.5 776,-128.5 776,-105.5 680,-105.5"/>
<text text-anchor="start" x="711.5" y="-113.3" font-family="arial" font-size="14.00">+12V</text>
<polygon fill="none" stroke="black" points="608,-82.5 608,-105.5 680,-105.5 680,-82.5 608,-82.5"/>
<text text-anchor="start" x="640" y="-90.3" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="680,-82.5 680,-105.5 776,-105.5 776,-82.5 680,-82.5"/>
<text text-anchor="start" x="712.5" y="-90.3" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="608,-59.5 608,-82.5 680,-82.5 680,-59.5 608,-59.5"/>
<text text-anchor="start" x="640" y="-67.3" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="680,-59.5 680,-82.5 776,-82.5 776,-59.5 680,-59.5"/>
<text text-anchor="start" x="712.5" y="-67.3" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="608,-36.5 608,-59.5 680,-59.5 680,-36.5 608,-36.5"/>
<text text-anchor="start" x="640" y="-44.3" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="680,-36.5 680,-59.5 776,-59.5 776,-36.5 680,-36.5"/>
<text text-anchor="start" x="715.5" y="-44.3" font-family="arial" font-size="14.00">+5V</text>
<polygon fill="#ffffff" stroke="black" points="769,-176.62 603.25,-176.62 603.25,-37.12 769,-37.12 769,-176.62"/>
<polygon fill="none" stroke="black" points="603.25,-152.88 603.25,-176.62 769,-176.62 769,-152.88 603.25,-152.88"/>
<text text-anchor="start" x="677.88" y="-159.32" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="603.25,-129.12 603.25,-152.88 681.75,-152.88 681.75,-129.12 603.25,-129.12"/>
<text text-anchor="start" x="607.25" y="-135.57" font-family="arial" font-size="14.00">Molex 8981</text>
<polygon fill="none" stroke="black" points="681.75,-129.12 681.75,-152.88 731,-152.88 731,-129.12 681.75,-129.12"/>
<text text-anchor="start" x="685.75" y="-135.57" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="731,-129.12 731,-152.88 769,-152.88 769,-129.12 731,-129.12"/>
<text text-anchor="start" x="735" y="-135.57" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="603.25,-106.12 603.25,-129.12 673.62,-129.12 673.62,-106.12 603.25,-106.12"/>
<text text-anchor="start" x="634.69" y="-111.83" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="673.62,-106.12 673.62,-129.12 769,-129.12 769,-106.12 673.62,-106.12"/>
<text text-anchor="start" x="705.19" y="-111.83" font-family="arial" font-size="14.00">+12V</text>
<polygon fill="none" stroke="black" points="603.25,-83.12 603.25,-106.12 673.62,-106.12 673.62,-83.12 603.25,-83.12"/>
<text text-anchor="start" x="634.69" y="-88.83" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="673.62,-83.12 673.62,-106.12 769,-106.12 769,-83.12 673.62,-83.12"/>
<text text-anchor="start" x="705.94" y="-88.83" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="603.25,-60.12 603.25,-83.12 673.62,-83.12 673.62,-60.12 603.25,-60.12"/>
<text text-anchor="start" x="634.69" y="-65.83" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="673.62,-60.12 673.62,-83.12 769,-83.12 769,-60.12 673.62,-60.12"/>
<text text-anchor="start" x="705.94" y="-65.83" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="603.25,-37.12 603.25,-60.12 673.62,-60.12 673.62,-37.12 603.25,-37.12"/>
<text text-anchor="start" x="634.69" y="-42.83" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="673.62,-37.12 673.62,-60.12 769,-60.12 769,-37.12 673.62,-37.12"/>
<text text-anchor="start" x="708.94" y="-42.83" font-family="arial" font-size="14.00">+5V</text>
</g>
<!-- W1&#45;&#45;X1 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;X1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-117.5C527.76,-117.52 543.75,-115.52 608,-115.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M464,-119.5C528.01,-119.5 543.99,-117.5 608,-117.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-121.5C528.25,-121.48 544.24,-119.48 608,-119.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-118.88C522.89,-118.91 538.87,-115.91 603.25,-115.88"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M459.25,-120.87C523.26,-120.88 539.24,-117.88 603.25,-117.87"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-122.87C523.63,-122.84 539.61,-119.84 603.25,-119.87"/>
</g>
<!-- W1&#45;&#45;X1 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;X1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-92.5C527.88,-92.5 543.87,-91.5 608,-91.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-94.5C528,-94.5 544,-93.5 608,-93.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-96.5C528.13,-96.5 544.12,-95.5 608,-95.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-93.88C523.13,-93.88 539.12,-92.88 603.25,-92.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-95.88C523.25,-95.88 539.25,-94.88 603.25,-94.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-97.87C523.38,-97.87 539.37,-96.87 603.25,-96.87"/>
</g>
<!-- W1&#45;&#45;X1 -->
<g id="edge6" class="edge">
<title>W1:e&#45;&#45;X1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-67.5C528.13,-67.5 544.12,-68.5 608,-68.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-69.5C528,-69.5 544,-70.5 608,-70.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-71.5C527.88,-71.5 543.87,-72.5 608,-72.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-68.88C523.38,-68.88 539.37,-69.88 603.25,-69.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-70.88C523.25,-70.88 539.25,-71.88 603.25,-71.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-72.87C523.13,-72.87 539.12,-73.87 603.25,-73.87"/>
</g>
<!-- W1&#45;&#45;X1 -->
<g id="edge8" class="edge">
<title>W1:e&#45;&#45;X1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-42.5C528.38,-42.53 544.36,-45.53 608,-45.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M464,-44.5C528.01,-44.5 543.99,-47.5 608,-47.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-46.5C527.64,-46.47 543.62,-49.47 608,-49.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-43.88C523.63,-43.91 539.61,-46.91 603.25,-46.88"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M459.25,-45.88C523.26,-45.88 539.24,-48.88 603.25,-48.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-47.87C522.89,-47.84 538.87,-50.84 603.25,-50.87"/>
</g>
</g>
</svg>

BIN
tutorial/tutorial05.png generated

Binary file not shown.

Before

Width:  |  Height:  |  Size: 49 KiB

After

Width:  |  Height:  |  Size: 51 KiB

242
tutorial/tutorial05.svg generated
View File

@ -1,184 +1,184 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="784pt" height="215pt"
viewBox="0.00 0.00 784.00 214.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 210.5)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-210.5 780,-210.5 780,4 -4,4"/>
<svg width="777pt" height="218pt"
viewBox="0.00 0.00 777.00 217.62" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 213.62)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-213.62 773,-213.62 773,4 -4,4"/>
<!-- __F1_1 -->
<g id="node1" class="node">
<title>__F1_1</title>
<polygon fill="#ffffff" stroke="black" points="186,-164 0,-164 0,-141 186,-141 186,-164"/>
<polygon fill="none" stroke="black" points="0,-140.5 0,-163.5 87,-163.5 87,-140.5 0,-140.5"/>
<text text-anchor="start" x="4" y="-148.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="none" stroke="black" points="87,-140.5 87,-163.5 147,-163.5 147,-140.5 87,-140.5"/>
<text text-anchor="start" x="91" y="-148.3" font-family="arial" font-size="14.00">0.5 mm²</text>
<polygon fill="none" stroke="black" points="147,-140.5 147,-163.5 178,-163.5 178,-140.5 147,-140.5"/>
<text text-anchor="start" x="151" y="-148.3" font-family="arial" font-size="14.00">OG</text>
<polygon fill="#ff8000" stroke="none" points="178,-140.5 178,-163.5 186,-163.5 186,-140.5 178,-140.5"/>
<polygon fill="none" stroke="black" points="178,-140.5 178,-163.5 186,-163.5 186,-140.5 178,-140.5"/>
<polygon fill="#ffffff" stroke="black" points="184.25,-167.75 0,-167.75 0,-144 184.25,-144 184.25,-167.75"/>
<polygon fill="none" stroke="black" points="0,-144 0,-167.75 86.75,-167.75 86.75,-144 0,-144"/>
<text text-anchor="start" x="4" y="-150.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="none" stroke="black" points="86.75,-144 86.75,-167.75 145.75,-167.75 145.75,-144 86.75,-144"/>
<text text-anchor="start" x="90.75" y="-150.45" font-family="arial" font-size="14.00">0.5 mm²</text>
<polygon fill="none" stroke="black" points="145.75,-144 145.75,-167.75 176.25,-167.75 176.25,-144 145.75,-144"/>
<text text-anchor="start" x="149.75" y="-150.45" font-family="arial" font-size="14.00">OG</text>
<polygon fill="#ff8000" stroke="none" points="176.25,-144 176.25,-167.75 184.25,-167.75 184.25,-144 176.25,-144"/>
<polygon fill="none" stroke="black" points="176.25,-144 176.25,-167.75 184.25,-167.75 184.25,-144 176.25,-144"/>
</g>
<!-- W1 -->
<g id="node6" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="464,-206.5 330,-206.5 330,-22.5 464,-22.5 464,-206.5"/>
<polygon fill="none" stroke="black" points="330,-183.5 330,-206.5 464,-206.5 464,-183.5 330,-183.5"/>
<text text-anchor="start" x="386" y="-191.3" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="330,-160.5 330,-183.5 356,-183.5 356,-160.5 330,-160.5"/>
<text text-anchor="start" x="335.5" y="-168.3" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="356,-160.5 356,-183.5 419,-183.5 419,-160.5 356,-160.5"/>
<text text-anchor="start" x="361.5" y="-168.3" font-family="arial" font-size="14.00">0.5 mm²</text>
<polygon fill="none" stroke="black" points="419,-160.5 419,-183.5 464,-183.5 464,-160.5 419,-160.5"/>
<text text-anchor="start" x="424" y="-168.3" font-family="arial" font-size="14.00">0.3 m</text>
<text text-anchor="start" x="332" y="-147.3" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="341" y="-128.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="398" y="-128.3" font-family="arial" font-size="14.00">X1:1:+12V</text>
<polygon fill="#000000" stroke="none" points="330,-120.5 330,-122.5 464,-122.5 464,-120.5 330,-120.5"/>
<polygon fill="#ffff00" stroke="none" points="330,-118.5 330,-120.5 464,-120.5 464,-118.5 330,-118.5"/>
<polygon fill="#000000" stroke="none" points="330,-116.5 330,-118.5 464,-118.5 464,-116.5 330,-116.5"/>
<text text-anchor="start" x="341" y="-103.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="398.5" y="-103.3" font-family="arial" font-size="14.00">X1:2:GND</text>
<polygon fill="#000000" stroke="none" points="330,-95.5 330,-97.5 464,-97.5 464,-95.5 330,-95.5"/>
<polygon fill="#000000" stroke="none" points="330,-93.5 330,-95.5 464,-95.5 464,-93.5 330,-93.5"/>
<polygon fill="#000000" stroke="none" points="330,-91.5 330,-93.5 464,-93.5 464,-91.5 330,-91.5"/>
<text text-anchor="start" x="341" y="-78.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="398.5" y="-78.3" font-family="arial" font-size="14.00">X1:3:GND</text>
<polygon fill="#000000" stroke="none" points="330,-70.5 330,-72.5 464,-72.5 464,-70.5 330,-70.5"/>
<polygon fill="#000000" stroke="none" points="330,-68.5 330,-70.5 464,-70.5 464,-68.5 330,-68.5"/>
<polygon fill="#000000" stroke="none" points="330,-66.5 330,-68.5 464,-68.5 464,-66.5 330,-66.5"/>
<text text-anchor="start" x="340" y="-53.3" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="401.5" y="-53.3" font-family="arial" font-size="14.00">X1:4:+5V</text>
<polygon fill="#000000" stroke="none" points="330,-45.5 330,-47.5 464,-47.5 464,-45.5 330,-45.5"/>
<polygon fill="#ff0000" stroke="none" points="330,-43.5 330,-45.5 464,-45.5 464,-43.5 330,-43.5"/>
<polygon fill="#000000" stroke="none" points="330,-41.5 330,-43.5 464,-43.5 464,-41.5 330,-41.5"/>
<text text-anchor="start" x="332" y="-28.3" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="459.25,-209.62 328.25,-209.62 328.25,-24.12 459.25,-24.12 459.25,-209.62"/>
<polygon fill="none" stroke="black" points="328.25,-185.88 328.25,-209.62 459.25,-209.62 459.25,-185.88 328.25,-185.88"/>
<text text-anchor="start" x="383.25" y="-192.32" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="328.25,-162.12 328.25,-185.88 352.92,-185.88 352.92,-162.12 328.25,-162.12"/>
<text text-anchor="start" x="333.46" y="-168.57" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="352.92,-162.12 352.92,-185.88 414.33,-185.88 414.33,-162.12 352.92,-162.12"/>
<text text-anchor="start" x="358.12" y="-168.57" font-family="arial" font-size="14.00">0.5 mm²</text>
<polygon fill="none" stroke="black" points="414.33,-162.12 414.33,-185.88 459.25,-185.88 459.25,-162.12 414.33,-162.12"/>
<text text-anchor="start" x="419.54" y="-168.57" font-family="arial" font-size="14.00">0.3 m</text>
<text text-anchor="start" x="329.88" y="-146.82" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="337.88" y="-127.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="393.88" y="-127.83" font-family="arial" font-size="14.00">X1:1:+12V</text>
<polygon fill="#000000" stroke="none" points="328.25,-122.12 328.25,-124.12 459.25,-124.12 459.25,-122.12 328.25,-122.12"/>
<polygon fill="#ffff00" stroke="none" points="328.25,-120.12 328.25,-122.12 459.25,-122.12 459.25,-120.12 328.25,-120.12"/>
<polygon fill="#000000" stroke="none" points="328.25,-118.12 328.25,-120.12 459.25,-120.12 459.25,-118.12 328.25,-118.12"/>
<text text-anchor="start" x="337.88" y="-102.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="394.62" y="-102.83" font-family="arial" font-size="14.00">X1:2:GND</text>
<polygon fill="#000000" stroke="none" points="328.25,-97.12 328.25,-99.12 459.25,-99.12 459.25,-97.12 328.25,-97.12"/>
<polygon fill="#000000" stroke="none" points="328.25,-95.12 328.25,-97.12 459.25,-97.12 459.25,-95.12 328.25,-95.12"/>
<polygon fill="#000000" stroke="none" points="328.25,-93.12 328.25,-95.12 459.25,-95.12 459.25,-93.12 328.25,-93.12"/>
<text text-anchor="start" x="337.88" y="-77.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="394.62" y="-77.83" font-family="arial" font-size="14.00">X1:3:GND</text>
<polygon fill="#000000" stroke="none" points="328.25,-72.12 328.25,-74.12 459.25,-74.12 459.25,-72.12 328.25,-72.12"/>
<polygon fill="#000000" stroke="none" points="328.25,-70.12 328.25,-72.12 459.25,-72.12 459.25,-70.12 328.25,-70.12"/>
<polygon fill="#000000" stroke="none" points="328.25,-68.12 328.25,-70.12 459.25,-70.12 459.25,-68.12 328.25,-68.12"/>
<text text-anchor="start" x="337.12" y="-52.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="397.62" y="-52.83" font-family="arial" font-size="14.00">X1:4:+5V</text>
<polygon fill="#000000" stroke="none" points="328.25,-47.12 328.25,-49.12 459.25,-49.12 459.25,-47.12 328.25,-47.12"/>
<polygon fill="#ff0000" stroke="none" points="328.25,-45.12 328.25,-47.12 459.25,-47.12 459.25,-45.12 328.25,-45.12"/>
<polygon fill="#000000" stroke="none" points="328.25,-43.12 328.25,-45.12 459.25,-45.12 459.25,-43.12 328.25,-43.12"/>
<text text-anchor="start" x="329.88" y="-27.82" font-family="arial" font-size="14.00"> </text>
</g>
<!-- __F1_1&#45;&#45;W1 -->
<g id="edge1" class="edge">
<title>__F1_1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-150.5C249.79,-151.78 262.47,-118.78 330,-117.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M186,-152.5C251.66,-152.5 264.34,-119.5 330,-119.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-154.5C253.53,-153.22 266.21,-120.22 330,-121.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.25,-153.88C248.23,-155.21 260.5,-120.21 328.25,-118.88"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M184.25,-155.88C250.11,-155.88 262.39,-120.88 328.25,-120.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.25,-157.87C252,-156.54 264.27,-121.54 328.25,-122.87"/>
</g>
<!-- __F1_2 -->
<g id="node2" class="node">
<title>__F1_2</title>
<polygon fill="#ffffff" stroke="black" points="186,-117 0,-117 0,-94 186,-94 186,-117"/>
<polygon fill="none" stroke="black" points="0,-93.5 0,-116.5 87,-116.5 87,-93.5 0,-93.5"/>
<text text-anchor="start" x="4" y="-101.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="none" stroke="black" points="87,-93.5 87,-116.5 147,-116.5 147,-93.5 87,-93.5"/>
<text text-anchor="start" x="91" y="-101.3" font-family="arial" font-size="14.00">0.5 mm²</text>
<polygon fill="none" stroke="black" points="147,-93.5 147,-116.5 178,-116.5 178,-93.5 147,-93.5"/>
<text text-anchor="start" x="151" y="-101.3" font-family="arial" font-size="14.00">OG</text>
<polygon fill="#ff8000" stroke="none" points="178,-93.5 178,-116.5 186,-116.5 186,-93.5 178,-93.5"/>
<polygon fill="none" stroke="black" points="178,-93.5 178,-116.5 186,-116.5 186,-93.5 178,-93.5"/>
<polygon fill="#ffffff" stroke="black" points="184.25,-119.75 0,-119.75 0,-96 184.25,-96 184.25,-119.75"/>
<polygon fill="none" stroke="black" points="0,-96 0,-119.75 86.75,-119.75 86.75,-96 0,-96"/>
<text text-anchor="start" x="4" y="-102.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="none" stroke="black" points="86.75,-96 86.75,-119.75 145.75,-119.75 145.75,-96 86.75,-96"/>
<text text-anchor="start" x="90.75" y="-102.45" font-family="arial" font-size="14.00">0.5 mm²</text>
<polygon fill="none" stroke="black" points="145.75,-96 145.75,-119.75 176.25,-119.75 176.25,-96 145.75,-96"/>
<text text-anchor="start" x="149.75" y="-102.45" font-family="arial" font-size="14.00">OG</text>
<polygon fill="#ff8000" stroke="none" points="176.25,-96 176.25,-119.75 184.25,-119.75 184.25,-96 176.25,-96"/>
<polygon fill="none" stroke="black" points="176.25,-96 176.25,-119.75 184.25,-119.75 184.25,-96 176.25,-96"/>
</g>
<!-- __F1_2&#45;&#45;W1 -->
<g id="edge3" class="edge">
<title>__F1_2:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-103.5C249.04,-103.86 264.66,-92.86 330,-92.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-105.5C250.19,-105.5 265.81,-94.5 330,-94.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-107.5C251.34,-107.14 266.96,-96.14 330,-96.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.25,-105.88C247.25,-106.29 262.81,-94.29 328.25,-93.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.25,-107.87C248.47,-107.87 264.03,-95.87 328.25,-95.87"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.25,-109.87C249.69,-109.46 265.25,-97.46 328.25,-97.87"/>
</g>
<!-- __F1_3 -->
<g id="node3" class="node">
<title>__F1_3</title>
<polygon fill="#ffffff" stroke="black" points="186,-70 0,-70 0,-47 186,-47 186,-70"/>
<polygon fill="none" stroke="black" points="0,-46.5 0,-69.5 87,-69.5 87,-46.5 0,-46.5"/>
<text text-anchor="start" x="4" y="-54.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="none" stroke="black" points="87,-46.5 87,-69.5 147,-69.5 147,-46.5 87,-46.5"/>
<text text-anchor="start" x="91" y="-54.3" font-family="arial" font-size="14.00">0.5 mm²</text>
<polygon fill="none" stroke="black" points="147,-46.5 147,-69.5 178,-69.5 178,-46.5 147,-46.5"/>
<text text-anchor="start" x="151" y="-54.3" font-family="arial" font-size="14.00">OG</text>
<polygon fill="#ff8000" stroke="none" points="178,-46.5 178,-69.5 186,-69.5 186,-46.5 178,-46.5"/>
<polygon fill="none" stroke="black" points="178,-46.5 178,-69.5 186,-69.5 186,-46.5 178,-46.5"/>
<polygon fill="#ffffff" stroke="black" points="184.25,-71.75 0,-71.75 0,-48 184.25,-48 184.25,-71.75"/>
<polygon fill="none" stroke="black" points="0,-48 0,-71.75 86.75,-71.75 86.75,-48 0,-48"/>
<text text-anchor="start" x="4" y="-54.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="none" stroke="black" points="86.75,-48 86.75,-71.75 145.75,-71.75 145.75,-48 86.75,-48"/>
<text text-anchor="start" x="90.75" y="-54.45" font-family="arial" font-size="14.00">0.5 mm²</text>
<polygon fill="none" stroke="black" points="145.75,-48 145.75,-71.75 176.25,-71.75 176.25,-48 145.75,-48"/>
<text text-anchor="start" x="149.75" y="-54.45" font-family="arial" font-size="14.00">OG</text>
<polygon fill="#ff8000" stroke="none" points="176.25,-48 176.25,-71.75 184.25,-71.75 184.25,-48 176.25,-48"/>
<polygon fill="none" stroke="black" points="176.25,-48 176.25,-71.75 184.25,-71.75 184.25,-48 176.25,-48"/>
</g>
<!-- __F1_3&#45;&#45;W1 -->
<g id="edge5" class="edge">
<title>__F1_3:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-56.5C251.34,-56.86 266.96,-67.86 330,-67.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-58.5C250.19,-58.5 265.81,-69.5 330,-69.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-60.5C249.04,-60.14 264.66,-71.14 330,-71.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.25,-57.88C249.59,-58.24 265.21,-69.24 328.25,-68.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.25,-59.88C248.44,-59.88 264.06,-70.87 328.25,-70.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.25,-61.87C247.29,-61.51 262.91,-72.51 328.25,-72.87"/>
</g>
<!-- __F1_4 -->
<g id="node4" class="node">
<title>__F1_4</title>
<polygon fill="#ffffff" stroke="black" points="186,-23 0,-23 0,0 186,0 186,-23"/>
<polygon fill="none" stroke="black" points="0,0.5 0,-22.5 87,-22.5 87,0.5 0,0.5"/>
<text text-anchor="start" x="4" y="-7.3" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="none" stroke="black" points="87,0.5 87,-22.5 147,-22.5 147,0.5 87,0.5"/>
<text text-anchor="start" x="91" y="-7.3" font-family="arial" font-size="14.00">0.5 mm²</text>
<polygon fill="none" stroke="black" points="147,0.5 147,-22.5 178,-22.5 178,0.5 147,0.5"/>
<text text-anchor="start" x="151" y="-7.3" font-family="arial" font-size="14.00">OG</text>
<polygon fill="#ff8000" stroke="none" points="178,0.5 178,-22.5 186,-22.5 186,0.5 178,0.5"/>
<polygon fill="none" stroke="black" points="178,0.5 178,-22.5 186,-22.5 186,0.5 178,0.5"/>
<polygon fill="#ffffff" stroke="black" points="184.25,-23.75 0,-23.75 0,0 184.25,0 184.25,-23.75"/>
<polygon fill="none" stroke="black" points="0,0 0,-23.75 86.75,-23.75 86.75,0 0,0"/>
<text text-anchor="start" x="4" y="-6.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="none" stroke="black" points="86.75,0 86.75,-23.75 145.75,-23.75 145.75,0 86.75,0"/>
<text text-anchor="start" x="90.75" y="-6.45" font-family="arial" font-size="14.00">0.5 mm²</text>
<polygon fill="none" stroke="black" points="145.75,0 145.75,-23.75 176.25,-23.75 176.25,0 145.75,0"/>
<text text-anchor="start" x="149.75" y="-6.45" font-family="arial" font-size="14.00">OG</text>
<polygon fill="#ff8000" stroke="none" points="176.25,0 176.25,-23.75 184.25,-23.75 184.25,0 176.25,0"/>
<polygon fill="none" stroke="black" points="176.25,0 176.25,-23.75 184.25,-23.75 184.25,0 176.25,0"/>
</g>
<!-- __F1_4&#45;&#45;W1 -->
<g id="edge7" class="edge">
<title>__F1_4:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-9.5C253.53,-10.78 266.21,-43.78 330,-42.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M186,-11.5C251.66,-11.5 264.34,-44.5 330,-44.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-13.5C249.79,-12.22 262.47,-45.22 330,-46.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.25,-9.88C251.89,-11.19 264.37,-45.19 328.25,-43.88"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M184.25,-11.88C250.01,-11.88 262.49,-45.88 328.25,-45.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.25,-13.87C248.13,-12.56 260.61,-46.56 328.25,-47.87"/>
</g>
<!-- X1 -->
<g id="node5" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="776,-174.5 608,-174.5 608,-36.5 776,-36.5 776,-174.5"/>
<polygon fill="none" stroke="black" points="608,-151.5 608,-174.5 776,-174.5 776,-151.5 608,-151.5"/>
<text text-anchor="start" x="683.5" y="-159.3" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="608,-128.5 608,-151.5 687,-151.5 687,-128.5 608,-128.5"/>
<text text-anchor="start" x="612" y="-136.3" font-family="arial" font-size="14.00">Molex 8981</text>
<polygon fill="none" stroke="black" points="687,-128.5 687,-151.5 737,-151.5 737,-128.5 687,-128.5"/>
<text text-anchor="start" x="691" y="-136.3" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="737,-128.5 737,-151.5 776,-151.5 776,-128.5 737,-128.5"/>
<text text-anchor="start" x="741" y="-136.3" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="608,-105.5 608,-128.5 680,-128.5 680,-105.5 608,-105.5"/>
<text text-anchor="start" x="640" y="-113.3" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="680,-105.5 680,-128.5 776,-128.5 776,-105.5 680,-105.5"/>
<text text-anchor="start" x="711.5" y="-113.3" font-family="arial" font-size="14.00">+12V</text>
<polygon fill="none" stroke="black" points="608,-82.5 608,-105.5 680,-105.5 680,-82.5 608,-82.5"/>
<text text-anchor="start" x="640" y="-90.3" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="680,-82.5 680,-105.5 776,-105.5 776,-82.5 680,-82.5"/>
<text text-anchor="start" x="712.5" y="-90.3" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="608,-59.5 608,-82.5 680,-82.5 680,-59.5 608,-59.5"/>
<text text-anchor="start" x="640" y="-67.3" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="680,-59.5 680,-82.5 776,-82.5 776,-59.5 680,-59.5"/>
<text text-anchor="start" x="712.5" y="-67.3" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="608,-36.5 608,-59.5 680,-59.5 680,-36.5 608,-36.5"/>
<text text-anchor="start" x="640" y="-44.3" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="680,-36.5 680,-59.5 776,-59.5 776,-36.5 680,-36.5"/>
<text text-anchor="start" x="715.5" y="-44.3" font-family="arial" font-size="14.00">+5V</text>
<polygon fill="#ffffff" stroke="black" points="769,-176.62 603.25,-176.62 603.25,-37.12 769,-37.12 769,-176.62"/>
<polygon fill="none" stroke="black" points="603.25,-152.88 603.25,-176.62 769,-176.62 769,-152.88 603.25,-152.88"/>
<text text-anchor="start" x="677.88" y="-159.32" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="603.25,-129.12 603.25,-152.88 681.75,-152.88 681.75,-129.12 603.25,-129.12"/>
<text text-anchor="start" x="607.25" y="-135.57" font-family="arial" font-size="14.00">Molex 8981</text>
<polygon fill="none" stroke="black" points="681.75,-129.12 681.75,-152.88 731,-152.88 731,-129.12 681.75,-129.12"/>
<text text-anchor="start" x="685.75" y="-135.57" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="731,-129.12 731,-152.88 769,-152.88 769,-129.12 731,-129.12"/>
<text text-anchor="start" x="735" y="-135.57" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="603.25,-106.12 603.25,-129.12 673.62,-129.12 673.62,-106.12 603.25,-106.12"/>
<text text-anchor="start" x="634.69" y="-111.83" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="673.62,-106.12 673.62,-129.12 769,-129.12 769,-106.12 673.62,-106.12"/>
<text text-anchor="start" x="705.19" y="-111.83" font-family="arial" font-size="14.00">+12V</text>
<polygon fill="none" stroke="black" points="603.25,-83.12 603.25,-106.12 673.62,-106.12 673.62,-83.12 603.25,-83.12"/>
<text text-anchor="start" x="634.69" y="-88.83" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="673.62,-83.12 673.62,-106.12 769,-106.12 769,-83.12 673.62,-83.12"/>
<text text-anchor="start" x="705.94" y="-88.83" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="603.25,-60.12 603.25,-83.12 673.62,-83.12 673.62,-60.12 603.25,-60.12"/>
<text text-anchor="start" x="634.69" y="-65.83" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="673.62,-60.12 673.62,-83.12 769,-83.12 769,-60.12 673.62,-60.12"/>
<text text-anchor="start" x="705.94" y="-65.83" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="603.25,-37.12 603.25,-60.12 673.62,-60.12 673.62,-37.12 603.25,-37.12"/>
<text text-anchor="start" x="634.69" y="-42.83" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="673.62,-37.12 673.62,-60.12 769,-60.12 769,-37.12 673.62,-37.12"/>
<text text-anchor="start" x="708.94" y="-42.83" font-family="arial" font-size="14.00">+5V</text>
</g>
<!-- W1&#45;&#45;X1 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;X1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-117.5C527.76,-117.52 543.75,-115.52 608,-115.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M464,-119.5C528.01,-119.5 543.99,-117.5 608,-117.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-121.5C528.25,-121.48 544.24,-119.48 608,-119.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-118.88C522.89,-118.91 538.87,-115.91 603.25,-115.88"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M459.25,-120.87C523.26,-120.88 539.24,-117.88 603.25,-117.87"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-122.87C523.63,-122.84 539.61,-119.84 603.25,-119.87"/>
</g>
<!-- W1&#45;&#45;X1 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;X1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-92.5C527.88,-92.5 543.87,-91.5 608,-91.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-94.5C528,-94.5 544,-93.5 608,-93.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-96.5C528.13,-96.5 544.12,-95.5 608,-95.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-93.88C523.13,-93.88 539.12,-92.88 603.25,-92.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-95.88C523.25,-95.88 539.25,-94.88 603.25,-94.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-97.87C523.38,-97.87 539.37,-96.87 603.25,-96.87"/>
</g>
<!-- W1&#45;&#45;X1 -->
<g id="edge6" class="edge">
<title>W1:e&#45;&#45;X1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-67.5C528.13,-67.5 544.12,-68.5 608,-68.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-69.5C528,-69.5 544,-70.5 608,-70.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-71.5C527.88,-71.5 543.87,-72.5 608,-72.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-68.88C523.38,-68.88 539.37,-69.88 603.25,-69.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-70.88C523.25,-70.88 539.25,-71.88 603.25,-71.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-72.87C523.13,-72.87 539.12,-73.87 603.25,-73.87"/>
</g>
<!-- W1&#45;&#45;X1 -->
<g id="edge8" class="edge">
<title>W1:e&#45;&#45;X1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-42.5C528.38,-42.53 544.36,-45.53 608,-45.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M464,-44.5C528.01,-44.5 543.99,-47.5 608,-47.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-46.5C527.64,-46.47 543.62,-49.47 608,-49.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-43.88C523.63,-43.91 539.61,-46.91 603.25,-46.88"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M459.25,-45.88C523.26,-45.88 539.24,-48.88 603.25,-48.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-47.87C522.89,-47.84 538.87,-50.84 603.25,-50.87"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 14 KiB

224
tutorial/tutorial06.html generated
View File

@ -30,171 +30,171 @@
<div id="diagram">
<!-- XML and DOCTYPE declarations from SVG file removed -->
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="784pt" height="192pt"
viewBox="0.00 0.00 784.00 192.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 188)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-188 780,-188 780,4 -4,4"/>
<svg width="777pt" height="194pt"
viewBox="0.00 0.00 777.00 193.62" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 189.62)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-189.62 773,-189.62 773,4 -4,4"/>
<!-- __F_05_1 -->
<g id="node1" class="node">
<title>__F_05_1</title>
<polygon fill="#ffffff" stroke="black" points="186,-118.5 0,-118.5 0,-95.5 186,-95.5 186,-118.5"/>
<polygon fill="none" stroke="black" points="0,-95 0,-118 87,-118 87,-95 0,-95"/>
<text text-anchor="start" x="4" y="-102.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="none" stroke="black" points="87,-95 87,-118 147,-118 147,-95 87,-95"/>
<text text-anchor="start" x="91" y="-102.8" font-family="arial" font-size="14.00">0.5 mm²</text>
<polygon fill="none" stroke="black" points="147,-95 147,-118 178,-118 178,-95 147,-95"/>
<text text-anchor="start" x="151" y="-102.8" font-family="arial" font-size="14.00">OG</text>
<polygon fill="#ff8000" stroke="none" points="178,-95 178,-118 186,-118 186,-95 178,-95"/>
<polygon fill="none" stroke="black" points="178,-95 178,-118 186,-118 186,-95 178,-95"/>
<polygon fill="#ffffff" stroke="black" points="184.25,-119.75 0,-119.75 0,-96 184.25,-96 184.25,-119.75"/>
<polygon fill="none" stroke="black" points="0,-96 0,-119.75 86.75,-119.75 86.75,-96 0,-96"/>
<text text-anchor="start" x="4" y="-102.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="none" stroke="black" points="86.75,-96 86.75,-119.75 145.75,-119.75 145.75,-96 86.75,-96"/>
<text text-anchor="start" x="90.75" y="-102.45" font-family="arial" font-size="14.00">0.5 mm²</text>
<polygon fill="none" stroke="black" points="145.75,-96 145.75,-119.75 176.25,-119.75 176.25,-96 145.75,-96"/>
<text text-anchor="start" x="149.75" y="-102.45" font-family="arial" font-size="14.00">OG</text>
<polygon fill="#ff8000" stroke="none" points="176.25,-96 176.25,-119.75 184.25,-119.75 184.25,-96 176.25,-96"/>
<polygon fill="none" stroke="black" points="176.25,-96 176.25,-119.75 184.25,-119.75 184.25,-96 176.25,-96"/>
</g>
<!-- W1 -->
<g id="node5" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="464,-184 330,-184 330,0 464,0 464,-184"/>
<polygon fill="none" stroke="black" points="330,-161 330,-184 464,-184 464,-161 330,-161"/>
<text text-anchor="start" x="386" y="-168.8" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="330,-138 330,-161 356,-161 356,-138 330,-138"/>
<text text-anchor="start" x="335.5" y="-145.8" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="356,-138 356,-161 419,-161 419,-138 356,-138"/>
<text text-anchor="start" x="361.5" y="-145.8" font-family="arial" font-size="14.00">0.5 mm²</text>
<polygon fill="none" stroke="black" points="419,-138 419,-161 464,-161 464,-138 419,-138"/>
<text text-anchor="start" x="424" y="-145.8" font-family="arial" font-size="14.00">0.3 m</text>
<text text-anchor="start" x="332" y="-124.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="341" y="-105.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="398" y="-105.8" font-family="arial" font-size="14.00">X1:1:+12V</text>
<polygon fill="#000000" stroke="none" points="330,-98 330,-100 464,-100 464,-98 330,-98"/>
<polygon fill="#ffff00" stroke="none" points="330,-96 330,-98 464,-98 464,-96 330,-96"/>
<polygon fill="#000000" stroke="none" points="330,-94 330,-96 464,-96 464,-94 330,-94"/>
<text text-anchor="start" x="341" y="-80.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="398.5" y="-80.8" font-family="arial" font-size="14.00">X1:2:GND</text>
<polygon fill="#000000" stroke="none" points="330,-73 330,-75 464,-75 464,-73 330,-73"/>
<polygon fill="#000000" stroke="none" points="330,-71 330,-73 464,-73 464,-71 330,-71"/>
<polygon fill="#000000" stroke="none" points="330,-69 330,-71 464,-71 464,-69 330,-69"/>
<text text-anchor="start" x="341" y="-55.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="398.5" y="-55.8" font-family="arial" font-size="14.00">X1:3:GND</text>
<polygon fill="#000000" stroke="none" points="330,-48 330,-50 464,-50 464,-48 330,-48"/>
<polygon fill="#000000" stroke="none" points="330,-46 330,-48 464,-48 464,-46 330,-46"/>
<polygon fill="#000000" stroke="none" points="330,-44 330,-46 464,-46 464,-44 330,-44"/>
<text text-anchor="start" x="340" y="-30.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="401.5" y="-30.8" font-family="arial" font-size="14.00">X1:4:+5V</text>
<polygon fill="#000000" stroke="none" points="330,-23 330,-25 464,-25 464,-23 330,-23"/>
<polygon fill="#ff0000" stroke="none" points="330,-21 330,-23 464,-23 464,-21 330,-21"/>
<polygon fill="#000000" stroke="none" points="330,-19 330,-21 464,-21 464,-19 330,-19"/>
<text text-anchor="start" x="332" y="-5.8" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="459.25,-185.62 328.25,-185.62 328.25,-0.12 459.25,-0.12 459.25,-185.62"/>
<polygon fill="none" stroke="black" points="328.25,-161.88 328.25,-185.62 459.25,-185.62 459.25,-161.88 328.25,-161.88"/>
<text text-anchor="start" x="383.25" y="-168.32" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="328.25,-138.12 328.25,-161.88 352.92,-161.88 352.92,-138.12 328.25,-138.12"/>
<text text-anchor="start" x="333.46" y="-144.57" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="352.92,-138.12 352.92,-161.88 414.33,-161.88 414.33,-138.12 352.92,-138.12"/>
<text text-anchor="start" x="358.12" y="-144.57" font-family="arial" font-size="14.00">0.5 mm²</text>
<polygon fill="none" stroke="black" points="414.33,-138.12 414.33,-161.88 459.25,-161.88 459.25,-138.12 414.33,-138.12"/>
<text text-anchor="start" x="419.54" y="-144.57" font-family="arial" font-size="14.00">0.3 m</text>
<text text-anchor="start" x="329.88" y="-122.83" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="337.88" y="-103.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="393.88" y="-103.83" font-family="arial" font-size="14.00">X1:1:+12V</text>
<polygon fill="#000000" stroke="none" points="328.25,-98.12 328.25,-100.12 459.25,-100.12 459.25,-98.12 328.25,-98.12"/>
<polygon fill="#ffff00" stroke="none" points="328.25,-96.12 328.25,-98.12 459.25,-98.12 459.25,-96.12 328.25,-96.12"/>
<polygon fill="#000000" stroke="none" points="328.25,-94.12 328.25,-96.12 459.25,-96.12 459.25,-94.12 328.25,-94.12"/>
<text text-anchor="start" x="337.88" y="-78.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="394.62" y="-78.83" font-family="arial" font-size="14.00">X1:2:GND</text>
<polygon fill="#000000" stroke="none" points="328.25,-73.12 328.25,-75.12 459.25,-75.12 459.25,-73.12 328.25,-73.12"/>
<polygon fill="#000000" stroke="none" points="328.25,-71.12 328.25,-73.12 459.25,-73.12 459.25,-71.12 328.25,-71.12"/>
<polygon fill="#000000" stroke="none" points="328.25,-69.12 328.25,-71.12 459.25,-71.12 459.25,-69.12 328.25,-69.12"/>
<text text-anchor="start" x="337.88" y="-53.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="394.62" y="-53.83" font-family="arial" font-size="14.00">X1:3:GND</text>
<polygon fill="#000000" stroke="none" points="328.25,-48.12 328.25,-50.12 459.25,-50.12 459.25,-48.12 328.25,-48.12"/>
<polygon fill="#000000" stroke="none" points="328.25,-46.12 328.25,-48.12 459.25,-48.12 459.25,-46.12 328.25,-46.12"/>
<polygon fill="#000000" stroke="none" points="328.25,-44.12 328.25,-46.12 459.25,-46.12 459.25,-44.12 328.25,-44.12"/>
<text text-anchor="start" x="337.12" y="-28.82" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="397.62" y="-28.82" font-family="arial" font-size="14.00">X1:4:+5V</text>
<polygon fill="#000000" stroke="none" points="328.25,-23.12 328.25,-25.12 459.25,-25.12 459.25,-23.12 328.25,-23.12"/>
<polygon fill="#ff0000" stroke="none" points="328.25,-21.12 328.25,-23.12 459.25,-23.12 459.25,-21.12 328.25,-21.12"/>
<polygon fill="#000000" stroke="none" points="328.25,-19.12 328.25,-21.12 459.25,-21.12 459.25,-19.12 328.25,-19.12"/>
<text text-anchor="start" x="329.88" y="-3.83" font-family="arial" font-size="14.00"> </text>
</g>
<!-- __F_05_1&#45;&#45;W1 -->
<g id="edge1" class="edge">
<title>__F_05_1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-105C249.08,-105.31 264.77,-95.31 330,-95"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M186,-107C250.15,-107 265.85,-97 330,-97"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-109C251.23,-108.69 266.92,-98.69 330,-99"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.25,-105.88C247.29,-106.24 262.91,-95.24 328.25,-94.88"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M184.25,-107.88C248.44,-107.87 264.06,-96.87 328.25,-96.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.25,-109.87C249.59,-109.51 265.21,-98.51 328.25,-98.87"/>
</g>
<!-- F1 -->
<g id="node2" class="node">
<title>F1</title>
<polygon fill="#ffffff" stroke="black" points="184,-71.5 2,-71.5 2,-48.5 184,-48.5 184,-71.5"/>
<polygon fill="none" stroke="black" points="2,-48 2,-71 89,-71 89,-48 2,-48"/>
<text text-anchor="start" x="6" y="-55.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="none" stroke="black" points="89,-48 89,-71 149,-71 149,-48 89,-48"/>
<text text-anchor="start" x="93" y="-55.8" font-family="arial" font-size="14.00">1.0 mm²</text>
<polygon fill="none" stroke="black" points="149,-48 149,-71 176,-71 176,-48 149,-48"/>
<text text-anchor="start" x="153" y="-55.8" font-family="arial" font-size="14.00">YE</text>
<polygon fill="#ffff00" stroke="none" points="176,-48 176,-71 184,-71 184,-48 176,-48"/>
<polygon fill="none" stroke="black" points="176,-48 176,-71 184,-71 184,-48 176,-48"/>
<polygon fill="#ffffff" stroke="black" points="182,-71.75 2.25,-71.75 2.25,-48 182,-48 182,-71.75"/>
<polygon fill="none" stroke="black" points="2.25,-48 2.25,-71.75 89,-71.75 89,-48 2.25,-48"/>
<text text-anchor="start" x="6.25" y="-54.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="none" stroke="black" points="89,-48 89,-71.75 148,-71.75 148,-48 89,-48"/>
<text text-anchor="start" x="93" y="-54.45" font-family="arial" font-size="14.00">1.0 mm²</text>
<polygon fill="none" stroke="black" points="148,-48 148,-71.75 174,-71.75 174,-48 148,-48"/>
<text text-anchor="start" x="152" y="-54.45" font-family="arial" font-size="14.00">YE</text>
<polygon fill="#ffff00" stroke="none" points="174,-48 174,-71.75 182,-71.75 182,-48 174,-48"/>
<polygon fill="none" stroke="black" points="174,-48 174,-71.75 182,-71.75 182,-48 174,-48"/>
</g>
<!-- F1&#45;&#45;W1 -->
<g id="edge3" class="edge">
<title>F1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M185,-58C250.88,-58.41 266.55,-70.41 330,-70"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M185,-60C249.66,-60 265.34,-72 330,-72"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M185,-62C248.45,-61.59 264.12,-73.59 330,-74"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M183.12,-57.88C249.06,-58.29 264.75,-70.29 328.25,-69.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M183.12,-59.88C247.85,-59.88 263.53,-71.88 328.25,-71.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M183.12,-61.87C246.63,-61.46 262.31,-73.46 328.25,-73.87"/>
</g>
<!-- F1&#45;&#45;W1 -->
<g id="edge5" class="edge">
<title>F1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M185,-58C248.42,-58.46 264.02,-45.46 330,-45"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M185,-60C249.7,-60 265.3,-47 330,-47"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M185,-62C250.98,-61.54 266.58,-48.54 330,-49"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M183.12,-57.88C246.6,-58.34 262.21,-45.34 328.25,-44.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M183.12,-59.88C247.88,-59.87 263.49,-46.87 328.25,-46.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M183.12,-61.87C249.16,-61.41 264.77,-48.41 328.25,-48.87"/>
</g>
<!-- __F_05_2 -->
<g id="node3" class="node">
<title>__F_05_2</title>
<polygon fill="#ffffff" stroke="black" points="186,-24.5 0,-24.5 0,-1.5 186,-1.5 186,-24.5"/>
<polygon fill="none" stroke="black" points="0,-1 0,-24 87,-24 87,-1 0,-1"/>
<text text-anchor="start" x="4" y="-8.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="none" stroke="black" points="87,-1 87,-24 147,-24 147,-1 87,-1"/>
<text text-anchor="start" x="91" y="-8.8" font-family="arial" font-size="14.00">0.5 mm²</text>
<polygon fill="none" stroke="black" points="147,-1 147,-24 178,-24 178,-1 147,-1"/>
<text text-anchor="start" x="151" y="-8.8" font-family="arial" font-size="14.00">OG</text>
<polygon fill="#ff8000" stroke="none" points="178,-1 178,-24 186,-24 186,-1 178,-1"/>
<polygon fill="none" stroke="black" points="178,-1 178,-24 186,-24 186,-1 178,-1"/>
<polygon fill="#ffffff" stroke="black" points="184.25,-23.75 0,-23.75 0,0 184.25,0 184.25,-23.75"/>
<polygon fill="none" stroke="black" points="0,0 0,-23.75 86.75,-23.75 86.75,0 0,0"/>
<text text-anchor="start" x="4" y="-6.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="none" stroke="black" points="86.75,0 86.75,-23.75 145.75,-23.75 145.75,0 86.75,0"/>
<text text-anchor="start" x="90.75" y="-6.45" font-family="arial" font-size="14.00">0.5 mm²</text>
<polygon fill="none" stroke="black" points="145.75,0 145.75,-23.75 176.25,-23.75 176.25,0 145.75,0"/>
<text text-anchor="start" x="149.75" y="-6.45" font-family="arial" font-size="14.00">OG</text>
<polygon fill="#ff8000" stroke="none" points="176.25,0 176.25,-23.75 184.25,-23.75 184.25,0 176.25,0"/>
<polygon fill="none" stroke="black" points="176.25,0 176.25,-23.75 184.25,-23.75 184.25,0 176.25,0"/>
</g>
<!-- __F_05_2&#45;&#45;W1 -->
<g id="edge7" class="edge">
<title>__F_05_2:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-11C251.12,-11.26 266.87,-20.26 330,-20"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M186,-13C250.12,-13 265.88,-22 330,-22"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-15C249.13,-14.74 264.88,-23.74 330,-24"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.25,-9.88C249.48,-10.19 265.17,-20.19 328.25,-19.88"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M184.25,-11.88C248.4,-11.88 264.1,-21.88 328.25,-21.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.25,-13.87C247.33,-13.56 263.02,-23.56 328.25,-23.87"/>
</g>
<!-- X1 -->
<g id="node4" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="776,-152 608,-152 608,-14 776,-14 776,-152"/>
<polygon fill="none" stroke="black" points="608,-129 608,-152 776,-152 776,-129 608,-129"/>
<text text-anchor="start" x="683.5" y="-136.8" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="608,-106 608,-129 687,-129 687,-106 608,-106"/>
<text text-anchor="start" x="612" y="-113.8" font-family="arial" font-size="14.00">Molex 8981</text>
<polygon fill="none" stroke="black" points="687,-106 687,-129 737,-129 737,-106 687,-106"/>
<text text-anchor="start" x="691" y="-113.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="737,-106 737,-129 776,-129 776,-106 737,-106"/>
<text text-anchor="start" x="741" y="-113.8" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="608,-83 608,-106 680,-106 680,-83 608,-83"/>
<text text-anchor="start" x="640" y="-90.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="680,-83 680,-106 776,-106 776,-83 680,-83"/>
<text text-anchor="start" x="711.5" y="-90.8" font-family="arial" font-size="14.00">+12V</text>
<polygon fill="none" stroke="black" points="608,-60 608,-83 680,-83 680,-60 608,-60"/>
<text text-anchor="start" x="640" y="-67.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="680,-60 680,-83 776,-83 776,-60 680,-60"/>
<text text-anchor="start" x="712.5" y="-67.8" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="608,-37 608,-60 680,-60 680,-37 608,-37"/>
<text text-anchor="start" x="640" y="-44.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="680,-37 680,-60 776,-60 776,-37 680,-37"/>
<text text-anchor="start" x="712.5" y="-44.8" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="608,-14 608,-37 680,-37 680,-14 608,-14"/>
<text text-anchor="start" x="640" y="-21.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="680,-14 680,-37 776,-37 776,-14 680,-14"/>
<text text-anchor="start" x="715.5" y="-21.8" font-family="arial" font-size="14.00">+5V</text>
<polygon fill="#ffffff" stroke="black" points="769,-152.62 603.25,-152.62 603.25,-13.12 769,-13.12 769,-152.62"/>
<polygon fill="none" stroke="black" points="603.25,-128.88 603.25,-152.62 769,-152.62 769,-128.88 603.25,-128.88"/>
<text text-anchor="start" x="677.88" y="-135.32" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="603.25,-105.12 603.25,-128.88 681.75,-128.88 681.75,-105.12 603.25,-105.12"/>
<text text-anchor="start" x="607.25" y="-111.58" font-family="arial" font-size="14.00">Molex 8981</text>
<polygon fill="none" stroke="black" points="681.75,-105.12 681.75,-128.88 731,-128.88 731,-105.12 681.75,-105.12"/>
<text text-anchor="start" x="685.75" y="-111.58" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="731,-105.12 731,-128.88 769,-128.88 769,-105.12 731,-105.12"/>
<text text-anchor="start" x="735" y="-111.58" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="603.25,-82.12 603.25,-105.12 673.62,-105.12 673.62,-82.12 603.25,-82.12"/>
<text text-anchor="start" x="634.69" y="-87.83" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="673.62,-82.12 673.62,-105.12 769,-105.12 769,-82.12 673.62,-82.12"/>
<text text-anchor="start" x="705.19" y="-87.83" font-family="arial" font-size="14.00">+12V</text>
<polygon fill="none" stroke="black" points="603.25,-59.12 603.25,-82.12 673.62,-82.12 673.62,-59.12 603.25,-59.12"/>
<text text-anchor="start" x="634.69" y="-64.83" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="673.62,-59.12 673.62,-82.12 769,-82.12 769,-59.12 673.62,-59.12"/>
<text text-anchor="start" x="705.94" y="-64.83" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="603.25,-36.12 603.25,-59.12 673.62,-59.12 673.62,-36.12 603.25,-36.12"/>
<text text-anchor="start" x="634.69" y="-41.83" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="673.62,-36.12 673.62,-59.12 769,-59.12 769,-36.12 673.62,-36.12"/>
<text text-anchor="start" x="705.94" y="-41.83" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="603.25,-13.12 603.25,-36.12 673.62,-36.12 673.62,-13.12 603.25,-13.12"/>
<text text-anchor="start" x="634.69" y="-18.82" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="673.62,-13.12 673.62,-36.12 769,-36.12 769,-13.12 673.62,-13.12"/>
<text text-anchor="start" x="708.94" y="-18.82" font-family="arial" font-size="14.00">+5V</text>
</g>
<!-- W1&#45;&#45;X1 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;X1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-95C527.76,-95.02 543.75,-93.02 608,-93"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M464,-97C528.01,-97 543.99,-95 608,-95"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-99C528.25,-98.98 544.24,-96.98 608,-97"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-94.88C522.89,-94.91 538.87,-91.91 603.25,-91.88"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M459.25,-96.87C523.26,-96.88 539.24,-93.88 603.25,-93.87"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-98.87C523.63,-98.84 539.61,-95.84 603.25,-95.87"/>
</g>
<!-- W1&#45;&#45;X1 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;X1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-70C527.88,-70 543.87,-69 608,-69"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-72C528,-72 544,-71 608,-71"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-74C528.13,-74 544.12,-73 608,-73"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-69.88C523.13,-69.88 539.12,-68.88 603.25,-68.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-71.88C523.25,-71.88 539.25,-70.88 603.25,-70.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-73.87C523.38,-73.87 539.37,-72.87 603.25,-72.87"/>
</g>
<!-- W1&#45;&#45;X1 -->
<g id="edge6" class="edge">
<title>W1:e&#45;&#45;X1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-45C528.13,-45 544.12,-46 608,-46"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-47C528,-47 544,-48 608,-48"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-49C527.88,-49 543.87,-50 608,-50"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-44.88C523.38,-44.88 539.37,-45.88 603.25,-45.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-46.88C523.25,-46.88 539.25,-47.88 603.25,-47.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-48.87C523.13,-48.87 539.12,-49.87 603.25,-49.87"/>
</g>
<!-- W1&#45;&#45;X1 -->
<g id="edge8" class="edge">
<title>W1:e&#45;&#45;X1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-20C528.38,-20.03 544.36,-23.03 608,-23"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M464,-22C528.01,-22 543.99,-25 608,-25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-24C527.64,-23.97 543.62,-26.97 608,-27"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-19.88C523.63,-19.91 539.61,-22.91 603.25,-22.88"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M459.25,-21.88C523.26,-21.88 539.24,-24.88 603.25,-24.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-23.87C522.89,-23.84 538.87,-26.84 603.25,-26.87"/>
</g>
</g>
</svg>

BIN
tutorial/tutorial06.png generated

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 44 KiB

224
tutorial/tutorial06.svg generated
View File

@ -1,171 +1,171 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="784pt" height="192pt"
viewBox="0.00 0.00 784.00 192.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 188)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-188 780,-188 780,4 -4,4"/>
<svg width="777pt" height="194pt"
viewBox="0.00 0.00 777.00 193.62" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 189.62)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-189.62 773,-189.62 773,4 -4,4"/>
<!-- __F_05_1 -->
<g id="node1" class="node">
<title>__F_05_1</title>
<polygon fill="#ffffff" stroke="black" points="186,-118.5 0,-118.5 0,-95.5 186,-95.5 186,-118.5"/>
<polygon fill="none" stroke="black" points="0,-95 0,-118 87,-118 87,-95 0,-95"/>
<text text-anchor="start" x="4" y="-102.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="none" stroke="black" points="87,-95 87,-118 147,-118 147,-95 87,-95"/>
<text text-anchor="start" x="91" y="-102.8" font-family="arial" font-size="14.00">0.5 mm²</text>
<polygon fill="none" stroke="black" points="147,-95 147,-118 178,-118 178,-95 147,-95"/>
<text text-anchor="start" x="151" y="-102.8" font-family="arial" font-size="14.00">OG</text>
<polygon fill="#ff8000" stroke="none" points="178,-95 178,-118 186,-118 186,-95 178,-95"/>
<polygon fill="none" stroke="black" points="178,-95 178,-118 186,-118 186,-95 178,-95"/>
<polygon fill="#ffffff" stroke="black" points="184.25,-119.75 0,-119.75 0,-96 184.25,-96 184.25,-119.75"/>
<polygon fill="none" stroke="black" points="0,-96 0,-119.75 86.75,-119.75 86.75,-96 0,-96"/>
<text text-anchor="start" x="4" y="-102.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="none" stroke="black" points="86.75,-96 86.75,-119.75 145.75,-119.75 145.75,-96 86.75,-96"/>
<text text-anchor="start" x="90.75" y="-102.45" font-family="arial" font-size="14.00">0.5 mm²</text>
<polygon fill="none" stroke="black" points="145.75,-96 145.75,-119.75 176.25,-119.75 176.25,-96 145.75,-96"/>
<text text-anchor="start" x="149.75" y="-102.45" font-family="arial" font-size="14.00">OG</text>
<polygon fill="#ff8000" stroke="none" points="176.25,-96 176.25,-119.75 184.25,-119.75 184.25,-96 176.25,-96"/>
<polygon fill="none" stroke="black" points="176.25,-96 176.25,-119.75 184.25,-119.75 184.25,-96 176.25,-96"/>
</g>
<!-- W1 -->
<g id="node5" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="464,-184 330,-184 330,0 464,0 464,-184"/>
<polygon fill="none" stroke="black" points="330,-161 330,-184 464,-184 464,-161 330,-161"/>
<text text-anchor="start" x="386" y="-168.8" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="330,-138 330,-161 356,-161 356,-138 330,-138"/>
<text text-anchor="start" x="335.5" y="-145.8" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="356,-138 356,-161 419,-161 419,-138 356,-138"/>
<text text-anchor="start" x="361.5" y="-145.8" font-family="arial" font-size="14.00">0.5 mm²</text>
<polygon fill="none" stroke="black" points="419,-138 419,-161 464,-161 464,-138 419,-138"/>
<text text-anchor="start" x="424" y="-145.8" font-family="arial" font-size="14.00">0.3 m</text>
<text text-anchor="start" x="332" y="-124.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="341" y="-105.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="398" y="-105.8" font-family="arial" font-size="14.00">X1:1:+12V</text>
<polygon fill="#000000" stroke="none" points="330,-98 330,-100 464,-100 464,-98 330,-98"/>
<polygon fill="#ffff00" stroke="none" points="330,-96 330,-98 464,-98 464,-96 330,-96"/>
<polygon fill="#000000" stroke="none" points="330,-94 330,-96 464,-96 464,-94 330,-94"/>
<text text-anchor="start" x="341" y="-80.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="398.5" y="-80.8" font-family="arial" font-size="14.00">X1:2:GND</text>
<polygon fill="#000000" stroke="none" points="330,-73 330,-75 464,-75 464,-73 330,-73"/>
<polygon fill="#000000" stroke="none" points="330,-71 330,-73 464,-73 464,-71 330,-71"/>
<polygon fill="#000000" stroke="none" points="330,-69 330,-71 464,-71 464,-69 330,-69"/>
<text text-anchor="start" x="341" y="-55.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="398.5" y="-55.8" font-family="arial" font-size="14.00">X1:3:GND</text>
<polygon fill="#000000" stroke="none" points="330,-48 330,-50 464,-50 464,-48 330,-48"/>
<polygon fill="#000000" stroke="none" points="330,-46 330,-48 464,-48 464,-46 330,-46"/>
<polygon fill="#000000" stroke="none" points="330,-44 330,-46 464,-46 464,-44 330,-44"/>
<text text-anchor="start" x="340" y="-30.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="401.5" y="-30.8" font-family="arial" font-size="14.00">X1:4:+5V</text>
<polygon fill="#000000" stroke="none" points="330,-23 330,-25 464,-25 464,-23 330,-23"/>
<polygon fill="#ff0000" stroke="none" points="330,-21 330,-23 464,-23 464,-21 330,-21"/>
<polygon fill="#000000" stroke="none" points="330,-19 330,-21 464,-21 464,-19 330,-19"/>
<text text-anchor="start" x="332" y="-5.8" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="459.25,-185.62 328.25,-185.62 328.25,-0.12 459.25,-0.12 459.25,-185.62"/>
<polygon fill="none" stroke="black" points="328.25,-161.88 328.25,-185.62 459.25,-185.62 459.25,-161.88 328.25,-161.88"/>
<text text-anchor="start" x="383.25" y="-168.32" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="328.25,-138.12 328.25,-161.88 352.92,-161.88 352.92,-138.12 328.25,-138.12"/>
<text text-anchor="start" x="333.46" y="-144.57" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="352.92,-138.12 352.92,-161.88 414.33,-161.88 414.33,-138.12 352.92,-138.12"/>
<text text-anchor="start" x="358.12" y="-144.57" font-family="arial" font-size="14.00">0.5 mm²</text>
<polygon fill="none" stroke="black" points="414.33,-138.12 414.33,-161.88 459.25,-161.88 459.25,-138.12 414.33,-138.12"/>
<text text-anchor="start" x="419.54" y="-144.57" font-family="arial" font-size="14.00">0.3 m</text>
<text text-anchor="start" x="329.88" y="-122.83" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="337.88" y="-103.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="393.88" y="-103.83" font-family="arial" font-size="14.00">X1:1:+12V</text>
<polygon fill="#000000" stroke="none" points="328.25,-98.12 328.25,-100.12 459.25,-100.12 459.25,-98.12 328.25,-98.12"/>
<polygon fill="#ffff00" stroke="none" points="328.25,-96.12 328.25,-98.12 459.25,-98.12 459.25,-96.12 328.25,-96.12"/>
<polygon fill="#000000" stroke="none" points="328.25,-94.12 328.25,-96.12 459.25,-96.12 459.25,-94.12 328.25,-94.12"/>
<text text-anchor="start" x="337.88" y="-78.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="394.62" y="-78.83" font-family="arial" font-size="14.00">X1:2:GND</text>
<polygon fill="#000000" stroke="none" points="328.25,-73.12 328.25,-75.12 459.25,-75.12 459.25,-73.12 328.25,-73.12"/>
<polygon fill="#000000" stroke="none" points="328.25,-71.12 328.25,-73.12 459.25,-73.12 459.25,-71.12 328.25,-71.12"/>
<polygon fill="#000000" stroke="none" points="328.25,-69.12 328.25,-71.12 459.25,-71.12 459.25,-69.12 328.25,-69.12"/>
<text text-anchor="start" x="337.88" y="-53.83" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="394.62" y="-53.83" font-family="arial" font-size="14.00">X1:3:GND</text>
<polygon fill="#000000" stroke="none" points="328.25,-48.12 328.25,-50.12 459.25,-50.12 459.25,-48.12 328.25,-48.12"/>
<polygon fill="#000000" stroke="none" points="328.25,-46.12 328.25,-48.12 459.25,-48.12 459.25,-46.12 328.25,-46.12"/>
<polygon fill="#000000" stroke="none" points="328.25,-44.12 328.25,-46.12 459.25,-46.12 459.25,-44.12 328.25,-44.12"/>
<text text-anchor="start" x="337.12" y="-28.82" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="397.62" y="-28.82" font-family="arial" font-size="14.00">X1:4:+5V</text>
<polygon fill="#000000" stroke="none" points="328.25,-23.12 328.25,-25.12 459.25,-25.12 459.25,-23.12 328.25,-23.12"/>
<polygon fill="#ff0000" stroke="none" points="328.25,-21.12 328.25,-23.12 459.25,-23.12 459.25,-21.12 328.25,-21.12"/>
<polygon fill="#000000" stroke="none" points="328.25,-19.12 328.25,-21.12 459.25,-21.12 459.25,-19.12 328.25,-19.12"/>
<text text-anchor="start" x="329.88" y="-3.83" font-family="arial" font-size="14.00"> </text>
</g>
<!-- __F_05_1&#45;&#45;W1 -->
<g id="edge1" class="edge">
<title>__F_05_1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-105C249.08,-105.31 264.77,-95.31 330,-95"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M186,-107C250.15,-107 265.85,-97 330,-97"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-109C251.23,-108.69 266.92,-98.69 330,-99"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.25,-105.88C247.29,-106.24 262.91,-95.24 328.25,-94.88"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M184.25,-107.88C248.44,-107.87 264.06,-96.87 328.25,-96.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.25,-109.87C249.59,-109.51 265.21,-98.51 328.25,-98.87"/>
</g>
<!-- F1 -->
<g id="node2" class="node">
<title>F1</title>
<polygon fill="#ffffff" stroke="black" points="184,-71.5 2,-71.5 2,-48.5 184,-48.5 184,-71.5"/>
<polygon fill="none" stroke="black" points="2,-48 2,-71 89,-71 89,-48 2,-48"/>
<text text-anchor="start" x="6" y="-55.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="none" stroke="black" points="89,-48 89,-71 149,-71 149,-48 89,-48"/>
<text text-anchor="start" x="93" y="-55.8" font-family="arial" font-size="14.00">1.0 mm²</text>
<polygon fill="none" stroke="black" points="149,-48 149,-71 176,-71 176,-48 149,-48"/>
<text text-anchor="start" x="153" y="-55.8" font-family="arial" font-size="14.00">YE</text>
<polygon fill="#ffff00" stroke="none" points="176,-48 176,-71 184,-71 184,-48 176,-48"/>
<polygon fill="none" stroke="black" points="176,-48 176,-71 184,-71 184,-48 176,-48"/>
<polygon fill="#ffffff" stroke="black" points="182,-71.75 2.25,-71.75 2.25,-48 182,-48 182,-71.75"/>
<polygon fill="none" stroke="black" points="2.25,-48 2.25,-71.75 89,-71.75 89,-48 2.25,-48"/>
<text text-anchor="start" x="6.25" y="-54.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="none" stroke="black" points="89,-48 89,-71.75 148,-71.75 148,-48 89,-48"/>
<text text-anchor="start" x="93" y="-54.45" font-family="arial" font-size="14.00">1.0 mm²</text>
<polygon fill="none" stroke="black" points="148,-48 148,-71.75 174,-71.75 174,-48 148,-48"/>
<text text-anchor="start" x="152" y="-54.45" font-family="arial" font-size="14.00">YE</text>
<polygon fill="#ffff00" stroke="none" points="174,-48 174,-71.75 182,-71.75 182,-48 174,-48"/>
<polygon fill="none" stroke="black" points="174,-48 174,-71.75 182,-71.75 182,-48 174,-48"/>
</g>
<!-- F1&#45;&#45;W1 -->
<g id="edge3" class="edge">
<title>F1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M185,-58C250.88,-58.41 266.55,-70.41 330,-70"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M185,-60C249.66,-60 265.34,-72 330,-72"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M185,-62C248.45,-61.59 264.12,-73.59 330,-74"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M183.12,-57.88C249.06,-58.29 264.75,-70.29 328.25,-69.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M183.12,-59.88C247.85,-59.88 263.53,-71.88 328.25,-71.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M183.12,-61.87C246.63,-61.46 262.31,-73.46 328.25,-73.87"/>
</g>
<!-- F1&#45;&#45;W1 -->
<g id="edge5" class="edge">
<title>F1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M185,-58C248.42,-58.46 264.02,-45.46 330,-45"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M185,-60C249.7,-60 265.3,-47 330,-47"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M185,-62C250.98,-61.54 266.58,-48.54 330,-49"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M183.12,-57.88C246.6,-58.34 262.21,-45.34 328.25,-44.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M183.12,-59.88C247.88,-59.87 263.49,-46.87 328.25,-46.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M183.12,-61.87C249.16,-61.41 264.77,-48.41 328.25,-48.87"/>
</g>
<!-- __F_05_2 -->
<g id="node3" class="node">
<title>__F_05_2</title>
<polygon fill="#ffffff" stroke="black" points="186,-24.5 0,-24.5 0,-1.5 186,-1.5 186,-24.5"/>
<polygon fill="none" stroke="black" points="0,-1 0,-24 87,-24 87,-1 0,-1"/>
<text text-anchor="start" x="4" y="-8.8" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="none" stroke="black" points="87,-1 87,-24 147,-24 147,-1 87,-1"/>
<text text-anchor="start" x="91" y="-8.8" font-family="arial" font-size="14.00">0.5 mm²</text>
<polygon fill="none" stroke="black" points="147,-1 147,-24 178,-24 178,-1 147,-1"/>
<text text-anchor="start" x="151" y="-8.8" font-family="arial" font-size="14.00">OG</text>
<polygon fill="#ff8000" stroke="none" points="178,-1 178,-24 186,-24 186,-1 178,-1"/>
<polygon fill="none" stroke="black" points="178,-1 178,-24 186,-24 186,-1 178,-1"/>
<polygon fill="#ffffff" stroke="black" points="184.25,-23.75 0,-23.75 0,0 184.25,0 184.25,-23.75"/>
<polygon fill="none" stroke="black" points="0,0 0,-23.75 86.75,-23.75 86.75,0 0,0"/>
<text text-anchor="start" x="4" y="-6.45" font-family="arial" font-size="14.00">Crimp ferrule</text>
<polygon fill="none" stroke="black" points="86.75,0 86.75,-23.75 145.75,-23.75 145.75,0 86.75,0"/>
<text text-anchor="start" x="90.75" y="-6.45" font-family="arial" font-size="14.00">0.5 mm²</text>
<polygon fill="none" stroke="black" points="145.75,0 145.75,-23.75 176.25,-23.75 176.25,0 145.75,0"/>
<text text-anchor="start" x="149.75" y="-6.45" font-family="arial" font-size="14.00">OG</text>
<polygon fill="#ff8000" stroke="none" points="176.25,0 176.25,-23.75 184.25,-23.75 184.25,0 176.25,0"/>
<polygon fill="none" stroke="black" points="176.25,0 176.25,-23.75 184.25,-23.75 184.25,0 176.25,0"/>
</g>
<!-- __F_05_2&#45;&#45;W1 -->
<g id="edge7" class="edge">
<title>__F_05_2:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-11C251.12,-11.26 266.87,-20.26 330,-20"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M186,-13C250.12,-13 265.88,-22 330,-22"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M186,-15C249.13,-14.74 264.88,-23.74 330,-24"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.25,-9.88C249.48,-10.19 265.17,-20.19 328.25,-19.88"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M184.25,-11.88C248.4,-11.88 264.1,-21.88 328.25,-21.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M184.25,-13.87C247.33,-13.56 263.02,-23.56 328.25,-23.87"/>
</g>
<!-- X1 -->
<g id="node4" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="776,-152 608,-152 608,-14 776,-14 776,-152"/>
<polygon fill="none" stroke="black" points="608,-129 608,-152 776,-152 776,-129 608,-129"/>
<text text-anchor="start" x="683.5" y="-136.8" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="608,-106 608,-129 687,-129 687,-106 608,-106"/>
<text text-anchor="start" x="612" y="-113.8" font-family="arial" font-size="14.00">Molex 8981</text>
<polygon fill="none" stroke="black" points="687,-106 687,-129 737,-129 737,-106 687,-106"/>
<text text-anchor="start" x="691" y="-113.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="737,-106 737,-129 776,-129 776,-106 737,-106"/>
<text text-anchor="start" x="741" y="-113.8" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="608,-83 608,-106 680,-106 680,-83 608,-83"/>
<text text-anchor="start" x="640" y="-90.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="680,-83 680,-106 776,-106 776,-83 680,-83"/>
<text text-anchor="start" x="711.5" y="-90.8" font-family="arial" font-size="14.00">+12V</text>
<polygon fill="none" stroke="black" points="608,-60 608,-83 680,-83 680,-60 608,-60"/>
<text text-anchor="start" x="640" y="-67.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="680,-60 680,-83 776,-83 776,-60 680,-60"/>
<text text-anchor="start" x="712.5" y="-67.8" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="608,-37 608,-60 680,-60 680,-37 608,-37"/>
<text text-anchor="start" x="640" y="-44.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="680,-37 680,-60 776,-60 776,-37 680,-37"/>
<text text-anchor="start" x="712.5" y="-44.8" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="608,-14 608,-37 680,-37 680,-14 608,-14"/>
<text text-anchor="start" x="640" y="-21.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="680,-14 680,-37 776,-37 776,-14 680,-14"/>
<text text-anchor="start" x="715.5" y="-21.8" font-family="arial" font-size="14.00">+5V</text>
<polygon fill="#ffffff" stroke="black" points="769,-152.62 603.25,-152.62 603.25,-13.12 769,-13.12 769,-152.62"/>
<polygon fill="none" stroke="black" points="603.25,-128.88 603.25,-152.62 769,-152.62 769,-128.88 603.25,-128.88"/>
<text text-anchor="start" x="677.88" y="-135.32" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="603.25,-105.12 603.25,-128.88 681.75,-128.88 681.75,-105.12 603.25,-105.12"/>
<text text-anchor="start" x="607.25" y="-111.58" font-family="arial" font-size="14.00">Molex 8981</text>
<polygon fill="none" stroke="black" points="681.75,-105.12 681.75,-128.88 731,-128.88 731,-105.12 681.75,-105.12"/>
<text text-anchor="start" x="685.75" y="-111.58" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="731,-105.12 731,-128.88 769,-128.88 769,-105.12 731,-105.12"/>
<text text-anchor="start" x="735" y="-111.58" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="603.25,-82.12 603.25,-105.12 673.62,-105.12 673.62,-82.12 603.25,-82.12"/>
<text text-anchor="start" x="634.69" y="-87.83" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="673.62,-82.12 673.62,-105.12 769,-105.12 769,-82.12 673.62,-82.12"/>
<text text-anchor="start" x="705.19" y="-87.83" font-family="arial" font-size="14.00">+12V</text>
<polygon fill="none" stroke="black" points="603.25,-59.12 603.25,-82.12 673.62,-82.12 673.62,-59.12 603.25,-59.12"/>
<text text-anchor="start" x="634.69" y="-64.83" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="673.62,-59.12 673.62,-82.12 769,-82.12 769,-59.12 673.62,-59.12"/>
<text text-anchor="start" x="705.94" y="-64.83" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="603.25,-36.12 603.25,-59.12 673.62,-59.12 673.62,-36.12 603.25,-36.12"/>
<text text-anchor="start" x="634.69" y="-41.83" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="673.62,-36.12 673.62,-59.12 769,-59.12 769,-36.12 673.62,-36.12"/>
<text text-anchor="start" x="705.94" y="-41.83" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="603.25,-13.12 603.25,-36.12 673.62,-36.12 673.62,-13.12 603.25,-13.12"/>
<text text-anchor="start" x="634.69" y="-18.82" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="673.62,-13.12 673.62,-36.12 769,-36.12 769,-13.12 673.62,-13.12"/>
<text text-anchor="start" x="708.94" y="-18.82" font-family="arial" font-size="14.00">+5V</text>
</g>
<!-- W1&#45;&#45;X1 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;X1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-95C527.76,-95.02 543.75,-93.02 608,-93"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M464,-97C528.01,-97 543.99,-95 608,-95"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-99C528.25,-98.98 544.24,-96.98 608,-97"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-94.88C522.89,-94.91 538.87,-91.91 603.25,-91.88"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M459.25,-96.87C523.26,-96.88 539.24,-93.88 603.25,-93.87"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-98.87C523.63,-98.84 539.61,-95.84 603.25,-95.87"/>
</g>
<!-- W1&#45;&#45;X1 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;X1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-70C527.88,-70 543.87,-69 608,-69"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-72C528,-72 544,-71 608,-71"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-74C528.13,-74 544.12,-73 608,-73"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-69.88C523.13,-69.88 539.12,-68.88 603.25,-68.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-71.88C523.25,-71.88 539.25,-70.88 603.25,-70.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-73.87C523.38,-73.87 539.37,-72.87 603.25,-72.87"/>
</g>
<!-- W1&#45;&#45;X1 -->
<g id="edge6" class="edge">
<title>W1:e&#45;&#45;X1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-45C528.13,-45 544.12,-46 608,-46"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-47C528,-47 544,-48 608,-48"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-49C527.88,-49 543.87,-50 608,-50"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-44.88C523.38,-44.88 539.37,-45.88 603.25,-45.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-46.88C523.25,-46.88 539.25,-47.88 603.25,-47.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-48.87C523.13,-48.87 539.12,-49.87 603.25,-49.87"/>
</g>
<!-- W1&#45;&#45;X1 -->
<g id="edge8" class="edge">
<title>W1:e&#45;&#45;X1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-20C528.38,-20.03 544.36,-23.03 608,-23"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M464,-22C528.01,-22 543.99,-25 608,-25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M464,-24C527.64,-23.97 543.62,-26.97 608,-27"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-19.88C523.63,-19.91 539.61,-22.91 603.25,-22.88"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M459.25,-21.88C523.26,-21.88 539.24,-24.88 603.25,-24.88"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M459.25,-23.87C522.89,-23.84 538.87,-26.84 603.25,-26.87"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 13 KiB

900
tutorial/tutorial07.html generated

File diff suppressed because it is too large Load Diff

BIN
tutorial/tutorial07.png generated

Binary file not shown.

Before

Width:  |  Height:  |  Size: 292 KiB

After

Width:  |  Height:  |  Size: 332 KiB

900
tutorial/tutorial07.svg generated

File diff suppressed because it is too large Load Diff

Before

Width:  |  Height:  |  Size: 48 KiB

After

Width:  |  Height:  |  Size: 50 KiB

470
tutorial/tutorial08.html generated
View File

@ -30,326 +30,326 @@
<div id="diagram">
<!-- XML and DOCTYPE declarations from SVG file removed -->
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="1222pt" height="582pt"
viewBox="0.00 0.00 1222.00 581.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 577.5)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-577.5 1218,-577.5 1218,4 -4,4"/>
<svg width="1217pt" height="596pt"
viewBox="0.00 0.00 1216.75 596.12" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 592.12)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-592.12 1212.75,-592.12 1212.75,4 -4,4"/>
<!-- X1 -->
<g id="node1" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="258,-436 0,-436 0,-176 258,-176 258,-436"/>
<polygon fill="none" stroke="black" points="0,-413 0,-436 258,-436 258,-413 0,-413"/>
<text text-anchor="start" x="120.5" y="-420.8" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-390 0,-413 130,-413 130,-390 0,-390"/>
<text text-anchor="start" x="12.5" y="-397.8" font-family="arial" font-size="14.00">Molex: 22013047</text>
<polygon fill="none" stroke="black" points="130,-390 130,-413 258,-413 258,-390 130,-390"/>
<text text-anchor="start" x="142.5" y="-397.8" font-family="arial" font-size="14.00">Digimouse: 1234</text>
<polygon fill="none" stroke="black" points="0,-367 0,-390 119,-390 119,-367 0,-367"/>
<text text-anchor="start" x="17" y="-374.8" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="119,-367 119,-390 194,-390 194,-367 119,-367"/>
<text text-anchor="start" x="135.5" y="-374.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="194,-367 194,-390 258,-390 258,-367 194,-367"/>
<text text-anchor="start" x="210.5" y="-374.8" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-344 0,-367 258,-367 258,-344 0,-344"/>
<text text-anchor="start" x="125" y="-351.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-321 0,-344 258,-344 258,-321 0,-321"/>
<text text-anchor="start" x="125" y="-328.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0,-298 0,-321 258,-321 258,-298 0,-298"/>
<text text-anchor="start" x="125" y="-305.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-275 0,-298 258,-298 258,-275 0,-275"/>
<text text-anchor="start" x="125" y="-282.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="0,-252 0,-275 258,-275 258,-252 0,-252"/>
<text text-anchor="start" x="60" y="-259.8" font-family="arial" font-size="14.00">Additional components</text>
<polygon fill="none" stroke="black" points="0,-214 0,-252 258,-252 258,-214 0,-214"/>
<text text-anchor="start" x="4" y="-236.8" font-family="arial" font-size="14.00">4 x Crimp, Molex KK 254, 22&#45;30 AWG</text>
<text text-anchor="start" x="4" y="-221.8" font-family="arial" font-size="14.00">Molex: 08500030</text>
<polygon fill="none" stroke="black" points="0,-176 0,-214 258,-214 258,-176 0,-176"/>
<text text-anchor="start" x="4" y="-198.8" font-family="arial" font-size="14.00">1 x Test</text>
<text text-anchor="start" x="4" y="-183.8" font-family="arial" font-size="14.00">P/N: ABC, Molex: 45454, Mousikey: 9999</text>
<polygon fill="#ffffff" stroke="black" points="257,-451 0,-451 0,-182 257,-182 257,-451"/>
<polygon fill="none" stroke="black" points="0,-427.25 0,-451 257,-451 257,-427.25 0,-427.25"/>
<text text-anchor="start" x="120.25" y="-433.7" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-403.5 0,-427.25 129.62,-427.25 129.62,-403.5 0,-403.5"/>
<text text-anchor="start" x="12.69" y="-409.95" font-family="arial" font-size="14.00">Molex: 22013047</text>
<polygon fill="none" stroke="black" points="129.62,-403.5 129.62,-427.25 257,-427.25 257,-403.5 129.62,-403.5"/>
<text text-anchor="start" x="142.31" y="-409.95" font-family="arial" font-size="14.00">Digimouse: 1234</text>
<polygon fill="none" stroke="black" points="0,-379.75 0,-403.5 118.42,-403.5 118.42,-379.75 0,-379.75"/>
<text text-anchor="start" x="16.83" y="-386.2" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="118.42,-379.75 118.42,-403.5 193.33,-403.5 193.33,-379.75 118.42,-379.75"/>
<text text-anchor="start" x="135.25" y="-386.2" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="193.33,-379.75 193.33,-403.5 257,-403.5 257,-379.75 193.33,-379.75"/>
<text text-anchor="start" x="210.17" y="-386.2" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-356 0,-379.75 257,-379.75 257,-356 0,-356"/>
<text text-anchor="start" x="124.75" y="-362.45" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-332.25 0,-356 257,-356 257,-332.25 0,-332.25"/>
<text text-anchor="start" x="124.75" y="-338.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0,-308.5 0,-332.25 257,-332.25 257,-308.5 0,-308.5"/>
<text text-anchor="start" x="124.75" y="-314.95" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-284.75 0,-308.5 257,-308.5 257,-284.75 0,-284.75"/>
<text text-anchor="start" x="124.75" y="-291.2" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="0,-261 0,-284.75 257,-284.75 257,-261 0,-261"/>
<text text-anchor="start" x="59.88" y="-267.45" font-family="arial" font-size="14.00">Additional components</text>
<polygon fill="none" stroke="black" points="0,-221.5 0,-261 257,-261 257,-221.5 0,-221.5"/>
<text text-anchor="start" x="4" y="-243.7" font-family="arial" font-size="14.00">4 x Crimp, Molex KK 254, 22&#45;30 AWG</text>
<text text-anchor="start" x="4" y="-227.95" font-family="arial" font-size="14.00">Molex: 08500030</text>
<polygon fill="none" stroke="black" points="0,-182 0,-221.5 257,-221.5 257,-182 0,-182"/>
<text text-anchor="start" x="4" y="-204.2" font-family="arial" font-size="14.00">1 x Test</text>
<text text-anchor="start" x="4" y="-188.45" font-family="arial" font-size="14.00">P/N: ABC, Molex: 45454, Mousikey: 9999</text>
</g>
<!-- W1 -->
<g id="node4" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" points="769,-573.5 402,-573.5 402,-366.5 769,-366.5 769,-573.5"/>
<polygon fill="none" stroke="black" points="402.5,-550 402.5,-573 769.5,-573 769.5,-550 402.5,-550"/>
<text text-anchor="start" x="575" y="-557.8" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="402.5,-527 402.5,-550 476.5,-550 476.5,-527 402.5,-527"/>
<text text-anchor="start" x="406.5" y="-534.8" font-family="arial" font-size="14.00">P/N: CAB1</text>
<polygon fill="none" stroke="black" points="476.5,-527 476.5,-550 601.5,-550 601.5,-527 476.5,-527"/>
<text text-anchor="start" x="480.5" y="-534.8" font-family="arial" font-size="14.00">CablesCo: ABC123</text>
<polygon fill="none" stroke="black" points="601.5,-527 601.5,-550 769.5,-550 769.5,-527 601.5,-527"/>
<text text-anchor="start" x="605.5" y="-534.8" font-family="arial" font-size="14.00">Cables R Us: 999&#45;888&#45;777</text>
<polygon fill="none" stroke="black" points="402.5,-504 402.5,-527 507.5,-527 507.5,-504 402.5,-504"/>
<text text-anchor="start" x="447.5" y="-511.8" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="507.5,-504 507.5,-527 656.5,-527 656.5,-504 507.5,-504"/>
<text text-anchor="start" x="552.5" y="-511.8" font-family="arial" font-size="14.00">0.25 mm²</text>
<polygon fill="none" stroke="black" points="656.5,-504 656.5,-527 769.5,-527 769.5,-504 656.5,-504"/>
<text text-anchor="start" x="701" y="-511.8" font-family="arial" font-size="14.00">1 m</text>
<text text-anchor="start" x="455" y="-490.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="443" y="-471.8" font-family="arial" font-size="14.00">X1:1</text>
<text text-anchor="start" x="554" y="-471.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="701" y="-471.8" font-family="arial" font-size="14.00">X2:1</text>
<polygon fill="#000000" stroke="none" points="402.5,-464 402.5,-466 769.5,-466 769.5,-464 402.5,-464"/>
<polygon fill="#895956" stroke="none" points="402.5,-462 402.5,-464 769.5,-464 769.5,-462 402.5,-462"/>
<polygon fill="#000000" stroke="none" points="402.5,-460 402.5,-462 769.5,-462 769.5,-460 402.5,-460"/>
<text text-anchor="start" x="443" y="-446.8" font-family="arial" font-size="14.00">X1:2</text>
<text text-anchor="start" x="553.5" y="-446.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="701" y="-446.8" font-family="arial" font-size="14.00">X2:2</text>
<polygon fill="#000000" stroke="none" points="402.5,-439 402.5,-441 769.5,-441 769.5,-439 402.5,-439"/>
<polygon fill="#ff0000" stroke="none" points="402.5,-437 402.5,-439 769.5,-439 769.5,-437 402.5,-437"/>
<polygon fill="#000000" stroke="none" points="402.5,-435 402.5,-437 769.5,-437 769.5,-435 402.5,-435"/>
<text text-anchor="start" x="443" y="-421.8" font-family="arial" font-size="14.00">X1:3</text>
<text text-anchor="start" x="552" y="-421.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:OG &#160;&#160;&#160;</text>
<text text-anchor="start" x="701" y="-421.8" font-family="arial" font-size="14.00">X2:3</text>
<polygon fill="#000000" stroke="none" points="402.5,-414 402.5,-416 769.5,-416 769.5,-414 402.5,-414"/>
<polygon fill="#ff8000" stroke="none" points="402.5,-412 402.5,-414 769.5,-414 769.5,-412 402.5,-412"/>
<polygon fill="#000000" stroke="none" points="402.5,-410 402.5,-412 769.5,-412 769.5,-410 402.5,-410"/>
<text text-anchor="start" x="443" y="-396.8" font-family="arial" font-size="14.00">X1:4</text>
<text text-anchor="start" x="554" y="-396.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="701" y="-396.8" font-family="arial" font-size="14.00">X2:4</text>
<polygon fill="#000000" stroke="none" points="402.5,-389 402.5,-391 769.5,-391 769.5,-389 402.5,-389"/>
<polygon fill="#ffff00" stroke="none" points="402.5,-387 402.5,-389 769.5,-389 769.5,-387 402.5,-387"/>
<polygon fill="#000000" stroke="none" points="402.5,-385 402.5,-387 769.5,-387 769.5,-385 402.5,-385"/>
<text text-anchor="start" x="455" y="-371.8" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" points="766.25,-588.12 401,-588.12 401,-378.88 766.25,-378.88 766.25,-588.12"/>
<polygon fill="none" stroke="black" points="401,-564.38 401,-588.12 766.25,-588.12 766.25,-564.38 401,-564.38"/>
<text text-anchor="start" x="573.12" y="-570.83" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="401,-540.62 401,-564.38 474.25,-564.38 474.25,-540.62 401,-540.62"/>
<text text-anchor="start" x="405" y="-547.08" font-family="arial" font-size="14.00">P/N: CAB1</text>
<polygon fill="none" stroke="black" points="474.25,-540.62 474.25,-564.38 598.5,-564.38 598.5,-540.62 474.25,-540.62"/>
<text text-anchor="start" x="478.25" y="-547.08" font-family="arial" font-size="14.00">CablesCo: ABC123</text>
<polygon fill="none" stroke="black" points="598.5,-540.62 598.5,-564.38 766.25,-564.38 766.25,-540.62 598.5,-540.62"/>
<text text-anchor="start" x="602.5" y="-547.08" font-family="arial" font-size="14.00">Cables R Us: 999&#45;888&#45;777</text>
<polygon fill="none" stroke="black" points="401,-516.88 401,-540.62 505,-540.62 505,-516.88 401,-516.88"/>
<text text-anchor="start" x="445.88" y="-523.33" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="505,-516.88 505,-540.62 653.25,-540.62 653.25,-516.88 505,-516.88"/>
<text text-anchor="start" x="549.88" y="-523.33" font-family="arial" font-size="14.00">0.25 mm²</text>
<polygon fill="none" stroke="black" points="653.25,-516.88 653.25,-540.62 766.25,-540.62 766.25,-516.88 653.25,-516.88"/>
<text text-anchor="start" x="698.12" y="-523.33" font-family="arial" font-size="14.00">1 m</text>
<text text-anchor="start" x="453.33" y="-501.57" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="441.33" y="-482.57" font-family="arial" font-size="14.00">X1:1</text>
<text text-anchor="start" x="551.75" y="-482.57" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="698.17" y="-482.57" font-family="arial" font-size="14.00">X2:1</text>
<polygon fill="#000000" stroke="none" points="401,-476.88 401,-478.88 766.25,-478.88 766.25,-476.88 401,-476.88"/>
<polygon fill="#895956" stroke="none" points="401,-474.88 401,-476.88 766.25,-476.88 766.25,-474.88 401,-474.88"/>
<polygon fill="#000000" stroke="none" points="401,-472.88 401,-474.88 766.25,-474.88 766.25,-472.88 401,-472.88"/>
<text text-anchor="start" x="441.33" y="-457.57" font-family="arial" font-size="14.00">X1:2</text>
<text text-anchor="start" x="551.38" y="-457.57" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="698.17" y="-457.57" font-family="arial" font-size="14.00">X2:2</text>
<polygon fill="#000000" stroke="none" points="401,-451.88 401,-453.88 766.25,-453.88 766.25,-451.88 401,-451.88"/>
<polygon fill="#ff0000" stroke="none" points="401,-449.88 401,-451.88 766.25,-451.88 766.25,-449.88 401,-449.88"/>
<polygon fill="#000000" stroke="none" points="401,-447.88 401,-449.88 766.25,-449.88 766.25,-447.88 401,-447.88"/>
<text text-anchor="start" x="441.33" y="-432.57" font-family="arial" font-size="14.00">X1:3</text>
<text text-anchor="start" x="549.88" y="-432.57" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:OG &#160;&#160;&#160;</text>
<text text-anchor="start" x="698.17" y="-432.57" font-family="arial" font-size="14.00">X2:3</text>
<polygon fill="#000000" stroke="none" points="401,-426.88 401,-428.88 766.25,-428.88 766.25,-426.88 401,-426.88"/>
<polygon fill="#ff8000" stroke="none" points="401,-424.88 401,-426.88 766.25,-426.88 766.25,-424.88 401,-424.88"/>
<polygon fill="#000000" stroke="none" points="401,-422.88 401,-424.88 766.25,-424.88 766.25,-422.88 401,-422.88"/>
<text text-anchor="start" x="441.33" y="-407.57" font-family="arial" font-size="14.00">X1:4</text>
<text text-anchor="start" x="552.12" y="-407.57" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="698.17" y="-407.57" font-family="arial" font-size="14.00">X2:4</text>
<polygon fill="#000000" stroke="none" points="401,-401.88 401,-403.88 766.25,-403.88 766.25,-401.88 401,-401.88"/>
<polygon fill="#ffff00" stroke="none" points="401,-399.88 401,-401.88 766.25,-401.88 766.25,-399.88 401,-399.88"/>
<polygon fill="#000000" stroke="none" points="401,-397.88 401,-399.88 766.25,-399.88 766.25,-397.88 401,-397.88"/>
<text text-anchor="start" x="453.33" y="-382.57" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge1" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M258,-354C339.71,-356.29 324.25,-463.29 402,-461"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M258,-356C337.73,-356 322.27,-463 402,-463"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M258,-358C335.75,-355.71 320.29,-462.71 402,-465"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M257,-365.5C338.98,-367.79 322.98,-475.79 401,-473.5"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M257,-367.5C337,-367.5 321,-475.5 401,-475.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M257,-369.5C335.02,-367.21 319.02,-475.21 401,-477.5"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge3" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M258,-331C339.19,-333.27 324.77,-438.27 402,-436"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M258,-333C337.21,-333 322.79,-438 402,-438"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M258,-335C335.23,-332.73 320.81,-437.73 402,-440"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M257,-342.5C338.45,-344.78 323.51,-450.78 401,-448.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M257,-344.5C336.47,-344.5 321.53,-450.5 401,-450.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M257,-346.5C334.49,-344.22 319.55,-450.22 401,-452.5"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge5" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M258,-308C338.67,-310.26 325.3,-413.26 402,-411"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M258,-310C336.69,-310 323.31,-413 402,-413"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M258,-312C334.7,-309.74 321.33,-412.74 402,-415"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M257,-318.5C338.19,-320.77 323.77,-425.77 401,-423.5"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M257,-320.5C336.21,-320.5 321.79,-425.5 401,-425.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M257,-322.5C334.23,-320.23 319.81,-425.23 401,-427.5"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge7" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M258,-284C338.41,-286.25 325.56,-388.25 402,-386"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M258,-286C336.43,-286 323.57,-388 402,-388"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M258,-288C334.44,-285.75 321.59,-387.75 402,-390"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M257,-294.5C337.93,-296.76 324.04,-400.76 401,-398.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M257,-296.5C335.95,-296.5 322.05,-400.5 401,-400.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M257,-298.5C333.96,-296.24 320.07,-400.24 401,-402.5"/>
</g>
<!-- W2 -->
<g id="node5" class="node">
<title>W2</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="735.5,-342.5 435.5,-342.5 435.5,-5.5 735.5,-5.5 735.5,-342.5"/>
<polygon fill="none" stroke="black" points="435.5,-319 435.5,-342 735.5,-342 735.5,-319 435.5,-319"/>
<text text-anchor="start" x="574.5" y="-326.8" font-family="arial" font-size="14.00">W2</text>
<polygon fill="none" stroke="black" points="435.5,-296 435.5,-319 518.5,-319 518.5,-296 435.5,-296"/>
<text text-anchor="start" x="469.5" y="-303.8" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="518.5,-296 518.5,-319 644.5,-319 644.5,-296 518.5,-296"/>
<text text-anchor="start" x="552" y="-303.8" font-family="arial" font-size="14.00">0.25 mm²</text>
<polygon fill="none" stroke="black" points="644.5,-296 644.5,-319 735.5,-319 735.5,-296 644.5,-296"/>
<text text-anchor="start" x="678" y="-303.8" font-family="arial" font-size="14.00">1 m</text>
<text text-anchor="start" x="494" y="-282.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="482" y="-263.8" font-family="arial" font-size="14.00">X1:1</text>
<text text-anchor="start" x="581.5" y="-263.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="683" y="-263.8" font-family="arial" font-size="14.00">X3:1</text>
<polygon fill="#000000" stroke="none" points="435.5,-256 435.5,-258 735.5,-258 735.5,-256 435.5,-256"/>
<polygon fill="#ffff00" stroke="none" points="435.5,-254 435.5,-256 735.5,-256 735.5,-254 435.5,-254"/>
<polygon fill="#000000" stroke="none" points="435.5,-252 435.5,-254 735.5,-254 735.5,-252 435.5,-252"/>
<text text-anchor="start" x="440" y="-236.8" font-family="arial" font-size="14.00">P/N: WIRE1</text>
<text text-anchor="start" x="519" y="-236.8" font-family="arial" font-size="14.00">WiresCo: W1&#45;YE</text>
<text text-anchor="start" x="627.5" y="-236.8" font-family="arial" font-size="14.00">WireShack: 1001</text>
<text text-anchor="start" x="482" y="-215.8" font-family="arial" font-size="14.00">X1:2</text>
<text text-anchor="start" x="581.5" y="-215.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="683" y="-215.8" font-family="arial" font-size="14.00">X3:2</text>
<polygon fill="#000000" stroke="none" points="435.5,-208 435.5,-210 735.5,-210 735.5,-208 435.5,-208"/>
<polygon fill="#000000" stroke="none" points="435.5,-206 435.5,-208 735.5,-208 735.5,-206 435.5,-206"/>
<polygon fill="#000000" stroke="none" points="435.5,-204 435.5,-206 735.5,-206 735.5,-204 435.5,-204"/>
<text text-anchor="start" x="440" y="-188.8" font-family="arial" font-size="14.00">P/N: WIRE2</text>
<text text-anchor="start" x="519" y="-188.8" font-family="arial" font-size="14.00">WiresCo: W1&#45;BK</text>
<text text-anchor="start" x="627.5" y="-188.8" font-family="arial" font-size="14.00">WireShack: 1002</text>
<text text-anchor="start" x="482" y="-167.8" font-family="arial" font-size="14.00">X1:3</text>
<text text-anchor="start" x="581.5" y="-167.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="683" y="-167.8" font-family="arial" font-size="14.00">X3:3</text>
<polygon fill="#000000" stroke="none" points="435.5,-160 435.5,-162 735.5,-162 735.5,-160 435.5,-160"/>
<polygon fill="#000000" stroke="none" points="435.5,-158 435.5,-160 735.5,-160 735.5,-158 435.5,-158"/>
<polygon fill="#000000" stroke="none" points="435.5,-156 435.5,-158 735.5,-158 735.5,-156 435.5,-156"/>
<text text-anchor="start" x="440" y="-140.8" font-family="arial" font-size="14.00">P/N: WIRE2</text>
<text text-anchor="start" x="519" y="-140.8" font-family="arial" font-size="14.00">WiresCo: W1&#45;BK</text>
<text text-anchor="start" x="627.5" y="-140.8" font-family="arial" font-size="14.00">WireShack: 1002</text>
<text text-anchor="start" x="482" y="-119.8" font-family="arial" font-size="14.00">X1:4</text>
<text text-anchor="start" x="580.5" y="-119.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="683" y="-119.8" font-family="arial" font-size="14.00">X3:4</text>
<polygon fill="#000000" stroke="none" points="435.5,-112 435.5,-114 735.5,-114 735.5,-112 435.5,-112"/>
<polygon fill="#ff0000" stroke="none" points="435.5,-110 435.5,-112 735.5,-112 735.5,-110 435.5,-110"/>
<polygon fill="#000000" stroke="none" points="435.5,-108 435.5,-110 735.5,-110 735.5,-108 435.5,-108"/>
<text text-anchor="start" x="439.5" y="-92.8" font-family="arial" font-size="14.00">P/N: WIRE3</text>
<text text-anchor="start" x="517.5" y="-92.8" font-family="arial" font-size="14.00">WiresCo: W1&#45;RD</text>
<text text-anchor="start" x="627.5" y="-92.8" font-family="arial" font-size="14.00">WireShack: 1009</text>
<text text-anchor="start" x="494" y="-71.8" font-family="arial" font-size="14.00"> </text>
<polygon fill="none" stroke="black" points="435.5,-43 435.5,-66 735.5,-66 735.5,-43 435.5,-43"/>
<text text-anchor="start" x="516.5" y="-50.8" font-family="arial" font-size="14.00">Additional components</text>
<polygon fill="none" stroke="black" points="435.5,-5 435.5,-43 735.5,-43 735.5,-5 435.5,-5"/>
<text text-anchor="start" x="439.5" y="-27.8" font-family="arial" font-size="14.00">1 m x Sleve, Braided nylon, black, 3mm</text>
<text text-anchor="start" x="439.5" y="-12.8" font-family="arial" font-size="14.00">P/N: SLV&#45;1</text>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="732.62,-351.88 434.62,-351.88 434.62,-11.12 732.62,-11.12 732.62,-351.88"/>
<polygon fill="none" stroke="black" points="434.62,-328.12 434.62,-351.88 732.62,-351.88 732.62,-328.12 434.62,-328.12"/>
<text text-anchor="start" x="573.12" y="-334.57" font-family="arial" font-size="14.00">W2</text>
<polygon fill="none" stroke="black" points="434.62,-304.38 434.62,-328.12 516.21,-328.12 516.21,-304.38 434.62,-304.38"/>
<text text-anchor="start" x="468.29" y="-310.82" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="516.21,-304.38 516.21,-328.12 642.04,-328.12 642.04,-304.38 516.21,-304.38"/>
<text text-anchor="start" x="549.88" y="-310.82" font-family="arial" font-size="14.00">0.25 mm²</text>
<polygon fill="none" stroke="black" points="642.04,-304.38 642.04,-328.12 732.62,-328.12 732.62,-304.38 642.04,-304.38"/>
<text text-anchor="start" x="675.71" y="-310.82" font-family="arial" font-size="14.00">1 m</text>
<text text-anchor="start" x="492.75" y="-289.07" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="480.75" y="-270.07" font-family="arial" font-size="14.00">X1:1</text>
<text text-anchor="start" x="579.75" y="-270.07" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="680.75" y="-270.07" font-family="arial" font-size="14.00">X3:1</text>
<polygon fill="#000000" stroke="none" points="434.62,-264.38 434.62,-266.38 732.62,-266.38 732.62,-264.38 434.62,-264.38"/>
<polygon fill="#ffff00" stroke="none" points="434.62,-262.38 434.62,-264.38 732.62,-264.38 732.62,-262.38 434.62,-262.38"/>
<polygon fill="#000000" stroke="none" points="434.62,-260.38 434.62,-262.38 732.62,-262.38 732.62,-260.38 434.62,-260.38"/>
<text text-anchor="start" x="438.88" y="-243.07" font-family="arial" font-size="14.00">P/N: WIRE1</text>
<text text-anchor="start" x="516.88" y="-243.07" font-family="arial" font-size="14.00">WiresCo: W1&#45;YE</text>
<text text-anchor="start" x="624.88" y="-243.07" font-family="arial" font-size="14.00">WireShack: 1001</text>
<text text-anchor="start" x="480.75" y="-222.07" font-family="arial" font-size="14.00">X1:2</text>
<text text-anchor="start" x="579.75" y="-222.07" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="680.75" y="-222.07" font-family="arial" font-size="14.00">X3:2</text>
<polygon fill="#000000" stroke="none" points="434.62,-216.38 434.62,-218.38 732.62,-218.38 732.62,-216.38 434.62,-216.38"/>
<polygon fill="#000000" stroke="none" points="434.62,-214.38 434.62,-216.38 732.62,-216.38 732.62,-214.38 434.62,-214.38"/>
<polygon fill="#000000" stroke="none" points="434.62,-212.38 434.62,-214.38 732.62,-214.38 732.62,-212.38 434.62,-212.38"/>
<text text-anchor="start" x="438.88" y="-195.07" font-family="arial" font-size="14.00">P/N: WIRE2</text>
<text text-anchor="start" x="516.88" y="-195.07" font-family="arial" font-size="14.00">WiresCo: W1&#45;BK</text>
<text text-anchor="start" x="624.88" y="-195.07" font-family="arial" font-size="14.00">WireShack: 1002</text>
<text text-anchor="start" x="480.75" y="-174.07" font-family="arial" font-size="14.00">X1:3</text>
<text text-anchor="start" x="579.75" y="-174.07" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="680.75" y="-174.07" font-family="arial" font-size="14.00">X3:3</text>
<polygon fill="#000000" stroke="none" points="434.62,-168.38 434.62,-170.38 732.62,-170.38 732.62,-168.38 434.62,-168.38"/>
<polygon fill="#000000" stroke="none" points="434.62,-166.38 434.62,-168.38 732.62,-168.38 732.62,-166.38 434.62,-166.38"/>
<polygon fill="#000000" stroke="none" points="434.62,-164.38 434.62,-166.38 732.62,-166.38 732.62,-164.38 434.62,-164.38"/>
<text text-anchor="start" x="438.88" y="-147.07" font-family="arial" font-size="14.00">P/N: WIRE2</text>
<text text-anchor="start" x="516.88" y="-147.07" font-family="arial" font-size="14.00">WiresCo: W1&#45;BK</text>
<text text-anchor="start" x="624.88" y="-147.07" font-family="arial" font-size="14.00">WireShack: 1002</text>
<text text-anchor="start" x="480.75" y="-126.08" font-family="arial" font-size="14.00">X1:4</text>
<text text-anchor="start" x="579" y="-126.08" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="680.75" y="-126.08" font-family="arial" font-size="14.00">X3:4</text>
<polygon fill="#000000" stroke="none" points="434.62,-120.38 434.62,-122.38 732.62,-122.38 732.62,-120.38 434.62,-120.38"/>
<polygon fill="#ff0000" stroke="none" points="434.62,-118.38 434.62,-120.38 732.62,-120.38 732.62,-118.38 434.62,-118.38"/>
<polygon fill="#000000" stroke="none" points="434.62,-116.38 434.62,-118.38 732.62,-118.38 732.62,-116.38 434.62,-116.38"/>
<text text-anchor="start" x="438.62" y="-99.08" font-family="arial" font-size="14.00">P/N: WIRE3</text>
<text text-anchor="start" x="516.12" y="-99.08" font-family="arial" font-size="14.00">WiresCo: W1&#45;RD</text>
<text text-anchor="start" x="625.12" y="-99.08" font-family="arial" font-size="14.00">WireShack: 1009</text>
<text text-anchor="start" x="492.75" y="-78.08" font-family="arial" font-size="14.00"> </text>
<polygon fill="none" stroke="black" points="434.62,-50.62 434.62,-74.38 732.62,-74.38 732.62,-50.62 434.62,-50.62"/>
<text text-anchor="start" x="515" y="-57.08" font-family="arial" font-size="14.00">Additional components</text>
<polygon fill="none" stroke="black" points="434.62,-11.12 434.62,-50.62 732.62,-50.62 732.62,-11.12 434.62,-11.12"/>
<text text-anchor="start" x="438.62" y="-33.33" font-family="arial" font-size="14.00">1 m x Sleve, Braided nylon, black, 3mm</text>
<text text-anchor="start" x="438.62" y="-17.57" font-family="arial" font-size="14.00">P/N: SLV&#45;1</text>
</g>
<!-- X1&#45;&#45;W2 -->
<g id="edge9" class="edge">
<title>X1:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M258,-354C346.38,-356.08 342.12,-255.08 434.5,-253"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M258,-356C348.38,-356 344.12,-255 434.5,-255"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M258,-358C350.38,-355.92 346.12,-254.92 434.5,-257"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M257,-365.5C346.1,-367.61 340.53,-263.61 433.62,-261.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M257,-367.5C348.1,-367.5 342.53,-263.5 433.62,-263.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M257,-369.5C350.09,-367.39 344.52,-263.39 433.62,-265.5"/>
</g>
<!-- X1&#45;&#45;W2 -->
<g id="edge11" class="edge">
<title>X1:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M258,-331C352.4,-333.26 336.13,-207.26 434.5,-205"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M258,-333C354.38,-333 338.12,-207 434.5,-207"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M258,-335C356.37,-332.74 340.1,-206.74 434.5,-209"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M257,-342.5C352.23,-344.77 334.44,-215.77 433.62,-213.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M257,-344.5C354.21,-344.5 336.42,-215.5 433.62,-215.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M257,-346.5C356.19,-344.23 338.4,-215.23 433.62,-217.5"/>
</g>
<!-- X1&#45;&#45;W2 -->
<g id="edge13" class="edge">
<title>X1:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M258,-308C359.27,-310.39 329.3,-159.39 434.5,-157"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M258,-310C361.23,-310 331.27,-159 434.5,-159"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M258,-312C363.2,-309.61 333.23,-158.61 434.5,-161"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M257,-318.5C358.9,-320.9 327.81,-167.9 433.62,-165.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M257,-320.5C360.86,-320.5 329.77,-167.5 433.62,-167.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M257,-322.5C362.82,-320.1 331.73,-167.1 433.62,-169.5"/>
</g>
<!-- X1&#45;&#45;W2 -->
<g id="edge15" class="edge">
<title>X1:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M258,-284C366.53,-286.49 322.09,-111.49 434.5,-109"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M258,-286C368.47,-286 324.03,-111 434.5,-111"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M258,-288C370.41,-285.51 325.97,-110.51 434.5,-113"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M257,-294.5C366.2,-297 320.55,-120 433.62,-117.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M257,-296.5C368.13,-296.5 322.49,-119.5 433.62,-119.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M257,-298.5C370.07,-296 324.43,-119 433.62,-121.5"/>
</g>
<!-- X2 -->
<g id="node2" class="node">
<title>X2</title>
<polygon fill="#ffffff" stroke="black" points="1214,-544 913,-544 913,-284 1214,-284 1214,-544"/>
<polygon fill="none" stroke="black" points="913.5,-521 913.5,-544 1214.5,-544 1214.5,-521 913.5,-521"/>
<text text-anchor="start" x="1055.5" y="-528.8" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="913.5,-498 913.5,-521 990.5,-521 990.5,-498 913.5,-498"/>
<text text-anchor="start" x="917.5" y="-505.8" font-family="arial" font-size="14.00">P/N: CON4</text>
<polygon fill="none" stroke="black" points="990.5,-498 990.5,-521 1103.5,-521 1103.5,-498 990.5,-498"/>
<text text-anchor="start" x="994.5" y="-505.8" font-family="arial" font-size="14.00">Molex: 22013047</text>
<polygon fill="none" stroke="black" points="1103.5,-498 1103.5,-521 1214.5,-521 1214.5,-498 1103.5,-498"/>
<text text-anchor="start" x="1107.5" y="-505.8" font-family="arial" font-size="14.00">Digimouse: 1234</text>
<polygon fill="none" stroke="black" points="913.5,-475 913.5,-498 1046.5,-498 1046.5,-475 913.5,-475"/>
<text text-anchor="start" x="937.5" y="-482.8" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="1046.5,-475 1046.5,-498 1136.5,-498 1136.5,-475 1046.5,-475"/>
<text text-anchor="start" x="1070.5" y="-482.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="1136.5,-475 1136.5,-498 1214.5,-498 1214.5,-475 1136.5,-475"/>
<text text-anchor="start" x="1160" y="-482.8" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="913.5,-452 913.5,-475 1214.5,-475 1214.5,-452 913.5,-452"/>
<text text-anchor="start" x="1060" y="-459.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="913.5,-429 913.5,-452 1214.5,-452 1214.5,-429 913.5,-429"/>
<text text-anchor="start" x="1060" y="-436.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="913.5,-406 913.5,-429 1214.5,-429 1214.5,-406 913.5,-406"/>
<text text-anchor="start" x="1060" y="-413.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="913.5,-383 913.5,-406 1214.5,-406 1214.5,-383 913.5,-383"/>
<text text-anchor="start" x="1060" y="-390.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="913.5,-360 913.5,-383 1214.5,-383 1214.5,-360 913.5,-360"/>
<text text-anchor="start" x="995" y="-367.8" font-family="arial" font-size="14.00">Additional components</text>
<polygon fill="none" stroke="black" points="913.5,-322 913.5,-360 1214.5,-360 1214.5,-322 913.5,-322"/>
<text text-anchor="start" x="917.5" y="-344.8" font-family="arial" font-size="14.00">4 x Crimp, Molex KK 254, 22&#45;30 AWG</text>
<text text-anchor="start" x="917.5" y="-329.8" font-family="arial" font-size="14.00">Molex: 08500030</text>
<polygon fill="none" stroke="black" points="913.5,-284 913.5,-322 1214.5,-322 1214.5,-284 913.5,-284"/>
<text text-anchor="start" x="917.5" y="-306.8" font-family="arial" font-size="14.00">1 x Test</text>
<text text-anchor="start" x="917.5" y="-291.8" font-family="arial" font-size="14.00">P/N: ABC, Molex: 45454, Mousikey: 9999</text>
<polygon fill="#ffffff" stroke="black" points="1208.75,-562 910.25,-562 910.25,-293 1208.75,-293 1208.75,-562"/>
<polygon fill="none" stroke="black" points="910.25,-538.25 910.25,-562 1208.75,-562 1208.75,-538.25 910.25,-538.25"/>
<text text-anchor="start" x="1051.25" y="-544.7" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="910.25,-514.5 910.25,-538.25 986.5,-538.25 986.5,-514.5 910.25,-514.5"/>
<text text-anchor="start" x="914.25" y="-520.95" font-family="arial" font-size="14.00">P/N: CON4</text>
<polygon fill="none" stroke="black" points="986.5,-514.5 986.5,-538.25 1098.75,-538.25 1098.75,-514.5 986.5,-514.5"/>
<text text-anchor="start" x="990.5" y="-520.95" font-family="arial" font-size="14.00">Molex: 22013047</text>
<polygon fill="none" stroke="black" points="1098.75,-514.5 1098.75,-538.25 1208.75,-538.25 1208.75,-514.5 1098.75,-514.5"/>
<text text-anchor="start" x="1102.75" y="-520.95" font-family="arial" font-size="14.00">Digimouse: 1234</text>
<polygon fill="none" stroke="black" points="910.25,-490.75 910.25,-514.5 1042.5,-514.5 1042.5,-490.75 910.25,-490.75"/>
<text text-anchor="start" x="934" y="-497.2" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="1042.5,-490.75 1042.5,-514.5 1131.25,-514.5 1131.25,-490.75 1042.5,-490.75"/>
<text text-anchor="start" x="1066.25" y="-497.2" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="1131.25,-490.75 1131.25,-514.5 1208.75,-514.5 1208.75,-490.75 1131.25,-490.75"/>
<text text-anchor="start" x="1155" y="-497.2" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="910.25,-467 910.25,-490.75 1208.75,-490.75 1208.75,-467 910.25,-467"/>
<text text-anchor="start" x="1055.75" y="-473.45" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="910.25,-443.25 910.25,-467 1208.75,-467 1208.75,-443.25 910.25,-443.25"/>
<text text-anchor="start" x="1055.75" y="-449.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="910.25,-419.5 910.25,-443.25 1208.75,-443.25 1208.75,-419.5 910.25,-419.5"/>
<text text-anchor="start" x="1055.75" y="-425.95" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="910.25,-395.75 910.25,-419.5 1208.75,-419.5 1208.75,-395.75 910.25,-395.75"/>
<text text-anchor="start" x="1055.75" y="-402.2" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="910.25,-372 910.25,-395.75 1208.75,-395.75 1208.75,-372 910.25,-372"/>
<text text-anchor="start" x="990.88" y="-378.45" font-family="arial" font-size="14.00">Additional components</text>
<polygon fill="none" stroke="black" points="910.25,-332.5 910.25,-372 1208.75,-372 1208.75,-332.5 910.25,-332.5"/>
<text text-anchor="start" x="914.25" y="-354.7" font-family="arial" font-size="14.00">4 x Crimp, Molex KK 254, 22&#45;30 AWG</text>
<text text-anchor="start" x="914.25" y="-338.95" font-family="arial" font-size="14.00">Molex: 08500030</text>
<polygon fill="none" stroke="black" points="910.25,-293 910.25,-332.5 1208.75,-332.5 1208.75,-293 910.25,-293"/>
<text text-anchor="start" x="914.25" y="-315.2" font-family="arial" font-size="14.00">1 x Test</text>
<text text-anchor="start" x="914.25" y="-299.45" font-family="arial" font-size="14.00">P/N: ABC, Molex: 45454, Mousikey: 9999</text>
</g>
<!-- X3 -->
<g id="node3" class="node">
<title>X3</title>
<polygon fill="#ffffff" stroke="black" points="1192.5,-260 934.5,-260 934.5,0 1192.5,0 1192.5,-260"/>
<polygon fill="none" stroke="black" points="934.5,-237 934.5,-260 1192.5,-260 1192.5,-237 934.5,-237"/>
<text text-anchor="start" x="1055" y="-244.8" font-family="arial" font-size="14.00">X3</text>
<polygon fill="none" stroke="black" points="934.5,-214 934.5,-237 1064.5,-237 1064.5,-214 934.5,-214"/>
<text text-anchor="start" x="947" y="-221.8" font-family="arial" font-size="14.00">Molex: 22013047</text>
<polygon fill="none" stroke="black" points="1064.5,-214 1064.5,-237 1192.5,-237 1192.5,-214 1064.5,-214"/>
<text text-anchor="start" x="1077" y="-221.8" font-family="arial" font-size="14.00">Digimouse: 1234</text>
<polygon fill="none" stroke="black" points="934.5,-191 934.5,-214 1053.5,-214 1053.5,-191 934.5,-191"/>
<text text-anchor="start" x="951.5" y="-198.8" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="1053.5,-191 1053.5,-214 1128.5,-214 1128.5,-191 1053.5,-191"/>
<text text-anchor="start" x="1070" y="-198.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="1128.5,-191 1128.5,-214 1192.5,-214 1192.5,-191 1128.5,-191"/>
<text text-anchor="start" x="1145" y="-198.8" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="934.5,-168 934.5,-191 1192.5,-191 1192.5,-168 934.5,-168"/>
<text text-anchor="start" x="1059.5" y="-175.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="934.5,-145 934.5,-168 1192.5,-168 1192.5,-145 934.5,-145"/>
<text text-anchor="start" x="1059.5" y="-152.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="934.5,-122 934.5,-145 1192.5,-145 1192.5,-122 934.5,-122"/>
<text text-anchor="start" x="1059.5" y="-129.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="934.5,-99 934.5,-122 1192.5,-122 1192.5,-99 934.5,-99"/>
<text text-anchor="start" x="1059.5" y="-106.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="934.5,-76 934.5,-99 1192.5,-99 1192.5,-76 934.5,-76"/>
<text text-anchor="start" x="994.5" y="-83.8" font-family="arial" font-size="14.00">Additional components</text>
<polygon fill="none" stroke="black" points="934.5,-38 934.5,-76 1192.5,-76 1192.5,-38 934.5,-38"/>
<text text-anchor="start" x="938.5" y="-60.8" font-family="arial" font-size="14.00">4 x Crimp, Molex KK 254, 22&#45;30 AWG</text>
<text text-anchor="start" x="938.5" y="-45.8" font-family="arial" font-size="14.00">Molex: 08500030</text>
<polygon fill="none" stroke="black" points="934.5,0 934.5,-38 1192.5,-38 1192.5,0 934.5,0"/>
<text text-anchor="start" x="938.5" y="-22.8" font-family="arial" font-size="14.00">1 x Test</text>
<text text-anchor="start" x="938.5" y="-7.8" font-family="arial" font-size="14.00">P/N: ABC, Molex: 45454, Mousikey: 9999</text>
<polygon fill="#ffffff" stroke="black" points="1188,-269 931,-269 931,0 1188,0 1188,-269"/>
<polygon fill="none" stroke="black" points="931,-245.25 931,-269 1188,-269 1188,-245.25 931,-245.25"/>
<text text-anchor="start" x="1051.25" y="-251.7" font-family="arial" font-size="14.00">X3</text>
<polygon fill="none" stroke="black" points="931,-221.5 931,-245.25 1060.62,-245.25 1060.62,-221.5 931,-221.5"/>
<text text-anchor="start" x="943.69" y="-227.95" font-family="arial" font-size="14.00">Molex: 22013047</text>
<polygon fill="none" stroke="black" points="1060.62,-221.5 1060.62,-245.25 1188,-245.25 1188,-221.5 1060.62,-221.5"/>
<text text-anchor="start" x="1073.31" y="-227.95" font-family="arial" font-size="14.00">Digimouse: 1234</text>
<polygon fill="none" stroke="black" points="931,-197.75 931,-221.5 1049.42,-221.5 1049.42,-197.75 931,-197.75"/>
<text text-anchor="start" x="947.83" y="-204.2" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="1049.42,-197.75 1049.42,-221.5 1124.33,-221.5 1124.33,-197.75 1049.42,-197.75"/>
<text text-anchor="start" x="1066.25" y="-204.2" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="1124.33,-197.75 1124.33,-221.5 1188,-221.5 1188,-197.75 1124.33,-197.75"/>
<text text-anchor="start" x="1141.17" y="-204.2" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="931,-174 931,-197.75 1188,-197.75 1188,-174 931,-174"/>
<text text-anchor="start" x="1055.75" y="-180.45" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="931,-150.25 931,-174 1188,-174 1188,-150.25 931,-150.25"/>
<text text-anchor="start" x="1055.75" y="-156.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="931,-126.5 931,-150.25 1188,-150.25 1188,-126.5 931,-126.5"/>
<text text-anchor="start" x="1055.75" y="-132.95" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="931,-102.75 931,-126.5 1188,-126.5 1188,-102.75 931,-102.75"/>
<text text-anchor="start" x="1055.75" y="-109.2" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="931,-79 931,-102.75 1188,-102.75 1188,-79 931,-79"/>
<text text-anchor="start" x="990.88" y="-85.45" font-family="arial" font-size="14.00">Additional components</text>
<polygon fill="none" stroke="black" points="931,-39.5 931,-79 1188,-79 1188,-39.5 931,-39.5"/>
<text text-anchor="start" x="935" y="-61.7" font-family="arial" font-size="14.00">4 x Crimp, Molex KK 254, 22&#45;30 AWG</text>
<text text-anchor="start" x="935" y="-45.95" font-family="arial" font-size="14.00">Molex: 08500030</text>
<polygon fill="none" stroke="black" points="931,0 931,-39.5 1188,-39.5 1188,0 931,0"/>
<text text-anchor="start" x="935" y="-22.2" font-family="arial" font-size="14.00">1 x Test</text>
<text text-anchor="start" x="935" y="-6.45" font-family="arial" font-size="14.00">P/N: ABC, Molex: 45454, Mousikey: 9999</text>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M769,-461C833.13,-461 849.12,-462 913,-462"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M769,-463C833,-463 849,-464 913,-464"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M769,-465C832.88,-465 848.87,-466 913,-466"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M766.25,-473.5C830.63,-473.53 846.61,-476.53 910.25,-476.5"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M766.25,-475.5C830.26,-475.5 846.24,-478.5 910.25,-478.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M766.25,-477.5C829.89,-477.47 845.87,-480.47 910.25,-480.5"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M769,-436C833.38,-436.03 849.36,-439.03 913,-439"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M769,-438C833.01,-438 848.99,-441 913,-441"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M769,-440C832.64,-439.97 848.62,-442.97 913,-443"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M766.25,-448.5C830.89,-448.59 846.81,-453.59 910.25,-453.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M766.25,-450.5C830.29,-450.5 846.21,-455.5 910.25,-455.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M766.25,-452.5C829.69,-452.41 845.61,-457.41 910.25,-457.5"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge6" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M769,-411C833.64,-411.09 849.56,-416.09 913,-416"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M769,-413C833.04,-413 848.96,-418 913,-418"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M769,-415C832.44,-414.91 848.36,-419.91 913,-420"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M766.25,-423.5C831.01,-423.63 846.9,-429.63 910.25,-429.5"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M766.25,-425.5C830.31,-425.5 846.19,-431.5 910.25,-431.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M766.25,-427.5C829.6,-427.37 845.49,-433.37 910.25,-433.5"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge8" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M769,-386C833.76,-386.13 849.65,-392.13 913,-392"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M769,-388C833.06,-388 848.94,-394 913,-394"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M769,-390C832.35,-389.87 848.24,-395.87 913,-396"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M766.25,-398.5C831.13,-398.67 846.98,-405.67 910.25,-405.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M766.25,-400.5C830.33,-400.5 846.17,-407.5 910.25,-407.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M766.25,-402.5C829.52,-402.33 845.37,-409.33 910.25,-409.5"/>
</g>
<!-- W2&#45;&#45;X3 -->
<g id="edge10" class="edge">
<title>W2:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M736.5,-253C828.2,-254.75 837.83,-179.75 933.5,-178"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M736.5,-255C830.19,-255 839.81,-180 933.5,-180"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M736.5,-257C832.17,-255.25 841.8,-180.25 933.5,-182"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M733.62,-261.5C825.34,-263.28 833.81,-185.28 929.5,-183.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M733.62,-263.5C827.33,-263.5 835.8,-185.5 929.5,-185.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M733.62,-265.5C829.32,-263.72 837.78,-185.72 929.5,-187.5"/>
</g>
<!-- W2&#45;&#45;X3 -->
<g id="edge12" class="edge">
<title>W2:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M736.5,-205C824.93,-206.38 841.27,-156.38 933.5,-155"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M736.5,-207C826.83,-207 843.17,-157 933.5,-157"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M736.5,-209C828.73,-207.62 845.07,-157.62 933.5,-159"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M733.62,-213.5C821.89,-214.94 837.39,-161.94 929.5,-160.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M733.62,-215.5C823.81,-215.5 839.31,-162.5 929.5,-162.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M733.62,-217.5C825.73,-216.06 841.23,-163.06 929.5,-164.5"/>
</g>
<!-- W2&#45;&#45;X3 -->
<g id="edge14" class="edge">
<title>W2:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M736.5,-157C823.21,-157.73 843.7,-132.73 933.5,-132"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M736.5,-159C824.76,-159 845.24,-134 933.5,-134"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M736.5,-161C826.3,-160.27 846.79,-135.27 933.5,-136"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M733.62,-165.5C819.98,-166.37 839.85,-137.37 929.5,-136.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M733.62,-167.5C821.63,-167.5 841.5,-138.5 929.5,-138.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M733.62,-169.5C823.28,-168.63 843.15,-139.63 929.5,-140.5"/>
</g>
<!-- W2&#45;&#45;X3 -->
<g id="edge16" class="edge">
<title>W2:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M736.5,-109C823.97,-109 845.85,-108 933.5,-108"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M736.5,-111C824.06,-111 845.94,-110 933.5,-110"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M736.5,-113C824.15,-113 846.03,-112 933.5,-112"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M733.62,-117.5C820.26,-117.55 841.97,-112.55 929.5,-112.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M733.62,-119.5C820.71,-119.5 842.42,-114.5 929.5,-114.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M733.62,-121.5C821.16,-121.45 842.87,-116.45 929.5,-116.5"/>
</g>
</g>
</svg>

BIN
tutorial/tutorial08.png generated

Binary file not shown.

Before

Width:  |  Height:  |  Size: 195 KiB

After

Width:  |  Height:  |  Size: 227 KiB

470
tutorial/tutorial08.svg generated
View File

@ -1,326 +1,326 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 7.1.0 (20230121.1956)
<!-- Generated by graphviz version 10.0.1 (20240210.2158)
-->
<!-- Pages: 1 -->
<svg width="1222pt" height="582pt"
viewBox="0.00 0.00 1222.00 581.50" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 577.5)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-577.5 1218,-577.5 1218,4 -4,4"/>
<svg width="1217pt" height="596pt"
viewBox="0.00 0.00 1216.75 596.12" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 592.12)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-592.12 1212.75,-592.12 1212.75,4 -4,4"/>
<!-- X1 -->
<g id="node1" class="node">
<title>X1</title>
<polygon fill="#ffffff" stroke="black" points="258,-436 0,-436 0,-176 258,-176 258,-436"/>
<polygon fill="none" stroke="black" points="0,-413 0,-436 258,-436 258,-413 0,-413"/>
<text text-anchor="start" x="120.5" y="-420.8" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-390 0,-413 130,-413 130,-390 0,-390"/>
<text text-anchor="start" x="12.5" y="-397.8" font-family="arial" font-size="14.00">Molex: 22013047</text>
<polygon fill="none" stroke="black" points="130,-390 130,-413 258,-413 258,-390 130,-390"/>
<text text-anchor="start" x="142.5" y="-397.8" font-family="arial" font-size="14.00">Digimouse: 1234</text>
<polygon fill="none" stroke="black" points="0,-367 0,-390 119,-390 119,-367 0,-367"/>
<text text-anchor="start" x="17" y="-374.8" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="119,-367 119,-390 194,-390 194,-367 119,-367"/>
<text text-anchor="start" x="135.5" y="-374.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="194,-367 194,-390 258,-390 258,-367 194,-367"/>
<text text-anchor="start" x="210.5" y="-374.8" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-344 0,-367 258,-367 258,-344 0,-344"/>
<text text-anchor="start" x="125" y="-351.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-321 0,-344 258,-344 258,-321 0,-321"/>
<text text-anchor="start" x="125" y="-328.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0,-298 0,-321 258,-321 258,-298 0,-298"/>
<text text-anchor="start" x="125" y="-305.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-275 0,-298 258,-298 258,-275 0,-275"/>
<text text-anchor="start" x="125" y="-282.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="0,-252 0,-275 258,-275 258,-252 0,-252"/>
<text text-anchor="start" x="60" y="-259.8" font-family="arial" font-size="14.00">Additional components</text>
<polygon fill="none" stroke="black" points="0,-214 0,-252 258,-252 258,-214 0,-214"/>
<text text-anchor="start" x="4" y="-236.8" font-family="arial" font-size="14.00">4 x Crimp, Molex KK 254, 22&#45;30 AWG</text>
<text text-anchor="start" x="4" y="-221.8" font-family="arial" font-size="14.00">Molex: 08500030</text>
<polygon fill="none" stroke="black" points="0,-176 0,-214 258,-214 258,-176 0,-176"/>
<text text-anchor="start" x="4" y="-198.8" font-family="arial" font-size="14.00">1 x Test</text>
<text text-anchor="start" x="4" y="-183.8" font-family="arial" font-size="14.00">P/N: ABC, Molex: 45454, Mousikey: 9999</text>
<polygon fill="#ffffff" stroke="black" points="257,-451 0,-451 0,-182 257,-182 257,-451"/>
<polygon fill="none" stroke="black" points="0,-427.25 0,-451 257,-451 257,-427.25 0,-427.25"/>
<text text-anchor="start" x="120.25" y="-433.7" font-family="arial" font-size="14.00">X1</text>
<polygon fill="none" stroke="black" points="0,-403.5 0,-427.25 129.62,-427.25 129.62,-403.5 0,-403.5"/>
<text text-anchor="start" x="12.69" y="-409.95" font-family="arial" font-size="14.00">Molex: 22013047</text>
<polygon fill="none" stroke="black" points="129.62,-403.5 129.62,-427.25 257,-427.25 257,-403.5 129.62,-403.5"/>
<text text-anchor="start" x="142.31" y="-409.95" font-family="arial" font-size="14.00">Digimouse: 1234</text>
<polygon fill="none" stroke="black" points="0,-379.75 0,-403.5 118.42,-403.5 118.42,-379.75 0,-379.75"/>
<text text-anchor="start" x="16.83" y="-386.2" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="118.42,-379.75 118.42,-403.5 193.33,-403.5 193.33,-379.75 118.42,-379.75"/>
<text text-anchor="start" x="135.25" y="-386.2" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="193.33,-379.75 193.33,-403.5 257,-403.5 257,-379.75 193.33,-379.75"/>
<text text-anchor="start" x="210.17" y="-386.2" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="0,-356 0,-379.75 257,-379.75 257,-356 0,-356"/>
<text text-anchor="start" x="124.75" y="-362.45" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-332.25 0,-356 257,-356 257,-332.25 0,-332.25"/>
<text text-anchor="start" x="124.75" y="-338.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0,-308.5 0,-332.25 257,-332.25 257,-308.5 0,-308.5"/>
<text text-anchor="start" x="124.75" y="-314.95" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-284.75 0,-308.5 257,-308.5 257,-284.75 0,-284.75"/>
<text text-anchor="start" x="124.75" y="-291.2" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="0,-261 0,-284.75 257,-284.75 257,-261 0,-261"/>
<text text-anchor="start" x="59.88" y="-267.45" font-family="arial" font-size="14.00">Additional components</text>
<polygon fill="none" stroke="black" points="0,-221.5 0,-261 257,-261 257,-221.5 0,-221.5"/>
<text text-anchor="start" x="4" y="-243.7" font-family="arial" font-size="14.00">4 x Crimp, Molex KK 254, 22&#45;30 AWG</text>
<text text-anchor="start" x="4" y="-227.95" font-family="arial" font-size="14.00">Molex: 08500030</text>
<polygon fill="none" stroke="black" points="0,-182 0,-221.5 257,-221.5 257,-182 0,-182"/>
<text text-anchor="start" x="4" y="-204.2" font-family="arial" font-size="14.00">1 x Test</text>
<text text-anchor="start" x="4" y="-188.45" font-family="arial" font-size="14.00">P/N: ABC, Molex: 45454, Mousikey: 9999</text>
</g>
<!-- W1 -->
<g id="node4" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" points="769,-573.5 402,-573.5 402,-366.5 769,-366.5 769,-573.5"/>
<polygon fill="none" stroke="black" points="402.5,-550 402.5,-573 769.5,-573 769.5,-550 402.5,-550"/>
<text text-anchor="start" x="575" y="-557.8" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="402.5,-527 402.5,-550 476.5,-550 476.5,-527 402.5,-527"/>
<text text-anchor="start" x="406.5" y="-534.8" font-family="arial" font-size="14.00">P/N: CAB1</text>
<polygon fill="none" stroke="black" points="476.5,-527 476.5,-550 601.5,-550 601.5,-527 476.5,-527"/>
<text text-anchor="start" x="480.5" y="-534.8" font-family="arial" font-size="14.00">CablesCo: ABC123</text>
<polygon fill="none" stroke="black" points="601.5,-527 601.5,-550 769.5,-550 769.5,-527 601.5,-527"/>
<text text-anchor="start" x="605.5" y="-534.8" font-family="arial" font-size="14.00">Cables R Us: 999&#45;888&#45;777</text>
<polygon fill="none" stroke="black" points="402.5,-504 402.5,-527 507.5,-527 507.5,-504 402.5,-504"/>
<text text-anchor="start" x="447.5" y="-511.8" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="507.5,-504 507.5,-527 656.5,-527 656.5,-504 507.5,-504"/>
<text text-anchor="start" x="552.5" y="-511.8" font-family="arial" font-size="14.00">0.25 mm²</text>
<polygon fill="none" stroke="black" points="656.5,-504 656.5,-527 769.5,-527 769.5,-504 656.5,-504"/>
<text text-anchor="start" x="701" y="-511.8" font-family="arial" font-size="14.00">1 m</text>
<text text-anchor="start" x="455" y="-490.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="443" y="-471.8" font-family="arial" font-size="14.00">X1:1</text>
<text text-anchor="start" x="554" y="-471.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="701" y="-471.8" font-family="arial" font-size="14.00">X2:1</text>
<polygon fill="#000000" stroke="none" points="402.5,-464 402.5,-466 769.5,-466 769.5,-464 402.5,-464"/>
<polygon fill="#895956" stroke="none" points="402.5,-462 402.5,-464 769.5,-464 769.5,-462 402.5,-462"/>
<polygon fill="#000000" stroke="none" points="402.5,-460 402.5,-462 769.5,-462 769.5,-460 402.5,-460"/>
<text text-anchor="start" x="443" y="-446.8" font-family="arial" font-size="14.00">X1:2</text>
<text text-anchor="start" x="553.5" y="-446.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="701" y="-446.8" font-family="arial" font-size="14.00">X2:2</text>
<polygon fill="#000000" stroke="none" points="402.5,-439 402.5,-441 769.5,-441 769.5,-439 402.5,-439"/>
<polygon fill="#ff0000" stroke="none" points="402.5,-437 402.5,-439 769.5,-439 769.5,-437 402.5,-437"/>
<polygon fill="#000000" stroke="none" points="402.5,-435 402.5,-437 769.5,-437 769.5,-435 402.5,-435"/>
<text text-anchor="start" x="443" y="-421.8" font-family="arial" font-size="14.00">X1:3</text>
<text text-anchor="start" x="552" y="-421.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:OG &#160;&#160;&#160;</text>
<text text-anchor="start" x="701" y="-421.8" font-family="arial" font-size="14.00">X2:3</text>
<polygon fill="#000000" stroke="none" points="402.5,-414 402.5,-416 769.5,-416 769.5,-414 402.5,-414"/>
<polygon fill="#ff8000" stroke="none" points="402.5,-412 402.5,-414 769.5,-414 769.5,-412 402.5,-412"/>
<polygon fill="#000000" stroke="none" points="402.5,-410 402.5,-412 769.5,-412 769.5,-410 402.5,-410"/>
<text text-anchor="start" x="443" y="-396.8" font-family="arial" font-size="14.00">X1:4</text>
<text text-anchor="start" x="554" y="-396.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="701" y="-396.8" font-family="arial" font-size="14.00">X2:4</text>
<polygon fill="#000000" stroke="none" points="402.5,-389 402.5,-391 769.5,-391 769.5,-389 402.5,-389"/>
<polygon fill="#ffff00" stroke="none" points="402.5,-387 402.5,-389 769.5,-389 769.5,-387 402.5,-387"/>
<polygon fill="#000000" stroke="none" points="402.5,-385 402.5,-387 769.5,-387 769.5,-385 402.5,-385"/>
<text text-anchor="start" x="455" y="-371.8" font-family="arial" font-size="14.00"> </text>
<polygon fill="#ffffff" stroke="black" points="766.25,-588.12 401,-588.12 401,-378.88 766.25,-378.88 766.25,-588.12"/>
<polygon fill="none" stroke="black" points="401,-564.38 401,-588.12 766.25,-588.12 766.25,-564.38 401,-564.38"/>
<text text-anchor="start" x="573.12" y="-570.83" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="401,-540.62 401,-564.38 474.25,-564.38 474.25,-540.62 401,-540.62"/>
<text text-anchor="start" x="405" y="-547.08" font-family="arial" font-size="14.00">P/N: CAB1</text>
<polygon fill="none" stroke="black" points="474.25,-540.62 474.25,-564.38 598.5,-564.38 598.5,-540.62 474.25,-540.62"/>
<text text-anchor="start" x="478.25" y="-547.08" font-family="arial" font-size="14.00">CablesCo: ABC123</text>
<polygon fill="none" stroke="black" points="598.5,-540.62 598.5,-564.38 766.25,-564.38 766.25,-540.62 598.5,-540.62"/>
<text text-anchor="start" x="602.5" y="-547.08" font-family="arial" font-size="14.00">Cables R Us: 999&#45;888&#45;777</text>
<polygon fill="none" stroke="black" points="401,-516.88 401,-540.62 505,-540.62 505,-516.88 401,-516.88"/>
<text text-anchor="start" x="445.88" y="-523.33" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="505,-516.88 505,-540.62 653.25,-540.62 653.25,-516.88 505,-516.88"/>
<text text-anchor="start" x="549.88" y="-523.33" font-family="arial" font-size="14.00">0.25 mm²</text>
<polygon fill="none" stroke="black" points="653.25,-516.88 653.25,-540.62 766.25,-540.62 766.25,-516.88 653.25,-516.88"/>
<text text-anchor="start" x="698.12" y="-523.33" font-family="arial" font-size="14.00">1 m</text>
<text text-anchor="start" x="453.33" y="-501.57" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="441.33" y="-482.57" font-family="arial" font-size="14.00">X1:1</text>
<text text-anchor="start" x="551.75" y="-482.57" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;1:BN &#160;&#160;&#160;</text>
<text text-anchor="start" x="698.17" y="-482.57" font-family="arial" font-size="14.00">X2:1</text>
<polygon fill="#000000" stroke="none" points="401,-476.88 401,-478.88 766.25,-478.88 766.25,-476.88 401,-476.88"/>
<polygon fill="#895956" stroke="none" points="401,-474.88 401,-476.88 766.25,-476.88 766.25,-474.88 401,-474.88"/>
<polygon fill="#000000" stroke="none" points="401,-472.88 401,-474.88 766.25,-474.88 766.25,-472.88 401,-472.88"/>
<text text-anchor="start" x="441.33" y="-457.57" font-family="arial" font-size="14.00">X1:2</text>
<text text-anchor="start" x="551.38" y="-457.57" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;2:RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="698.17" y="-457.57" font-family="arial" font-size="14.00">X2:2</text>
<polygon fill="#000000" stroke="none" points="401,-451.88 401,-453.88 766.25,-453.88 766.25,-451.88 401,-451.88"/>
<polygon fill="#ff0000" stroke="none" points="401,-449.88 401,-451.88 766.25,-451.88 766.25,-449.88 401,-449.88"/>
<polygon fill="#000000" stroke="none" points="401,-447.88 401,-449.88 766.25,-449.88 766.25,-447.88 401,-447.88"/>
<text text-anchor="start" x="441.33" y="-432.57" font-family="arial" font-size="14.00">X1:3</text>
<text text-anchor="start" x="549.88" y="-432.57" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;3:OG &#160;&#160;&#160;</text>
<text text-anchor="start" x="698.17" y="-432.57" font-family="arial" font-size="14.00">X2:3</text>
<polygon fill="#000000" stroke="none" points="401,-426.88 401,-428.88 766.25,-428.88 766.25,-426.88 401,-426.88"/>
<polygon fill="#ff8000" stroke="none" points="401,-424.88 401,-426.88 766.25,-426.88 766.25,-424.88 401,-424.88"/>
<polygon fill="#000000" stroke="none" points="401,-422.88 401,-424.88 766.25,-424.88 766.25,-422.88 401,-422.88"/>
<text text-anchor="start" x="441.33" y="-407.57" font-family="arial" font-size="14.00">X1:4</text>
<text text-anchor="start" x="552.12" y="-407.57" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;4:YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="698.17" y="-407.57" font-family="arial" font-size="14.00">X2:4</text>
<polygon fill="#000000" stroke="none" points="401,-401.88 401,-403.88 766.25,-403.88 766.25,-401.88 401,-401.88"/>
<polygon fill="#ffff00" stroke="none" points="401,-399.88 401,-401.88 766.25,-401.88 766.25,-399.88 401,-399.88"/>
<polygon fill="#000000" stroke="none" points="401,-397.88 401,-399.88 766.25,-399.88 766.25,-397.88 401,-397.88"/>
<text text-anchor="start" x="453.33" y="-382.57" font-family="arial" font-size="14.00"> </text>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge1" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M258,-354C339.71,-356.29 324.25,-463.29 402,-461"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M258,-356C337.73,-356 322.27,-463 402,-463"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M258,-358C335.75,-355.71 320.29,-462.71 402,-465"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M257,-365.5C338.98,-367.79 322.98,-475.79 401,-473.5"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M257,-367.5C337,-367.5 321,-475.5 401,-475.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M257,-369.5C335.02,-367.21 319.02,-475.21 401,-477.5"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge3" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M258,-331C339.19,-333.27 324.77,-438.27 402,-436"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M258,-333C337.21,-333 322.79,-438 402,-438"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M258,-335C335.23,-332.73 320.81,-437.73 402,-440"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M257,-342.5C338.45,-344.78 323.51,-450.78 401,-448.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M257,-344.5C336.47,-344.5 321.53,-450.5 401,-450.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M257,-346.5C334.49,-344.22 319.55,-450.22 401,-452.5"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge5" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M258,-308C338.67,-310.26 325.3,-413.26 402,-411"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M258,-310C336.69,-310 323.31,-413 402,-413"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M258,-312C334.7,-309.74 321.33,-412.74 402,-415"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M257,-318.5C338.19,-320.77 323.77,-425.77 401,-423.5"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M257,-320.5C336.21,-320.5 321.79,-425.5 401,-425.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M257,-322.5C334.23,-320.23 319.81,-425.23 401,-427.5"/>
</g>
<!-- X1&#45;&#45;W1 -->
<g id="edge7" class="edge">
<title>X1:e&#45;&#45;W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M258,-284C338.41,-286.25 325.56,-388.25 402,-386"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M258,-286C336.43,-286 323.57,-388 402,-388"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M258,-288C334.44,-285.75 321.59,-387.75 402,-390"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M257,-294.5C337.93,-296.76 324.04,-400.76 401,-398.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M257,-296.5C335.95,-296.5 322.05,-400.5 401,-400.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M257,-298.5C333.96,-296.24 320.07,-400.24 401,-402.5"/>
</g>
<!-- W2 -->
<g id="node5" class="node">
<title>W2</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="735.5,-342.5 435.5,-342.5 435.5,-5.5 735.5,-5.5 735.5,-342.5"/>
<polygon fill="none" stroke="black" points="435.5,-319 435.5,-342 735.5,-342 735.5,-319 435.5,-319"/>
<text text-anchor="start" x="574.5" y="-326.8" font-family="arial" font-size="14.00">W2</text>
<polygon fill="none" stroke="black" points="435.5,-296 435.5,-319 518.5,-319 518.5,-296 435.5,-296"/>
<text text-anchor="start" x="469.5" y="-303.8" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="518.5,-296 518.5,-319 644.5,-319 644.5,-296 518.5,-296"/>
<text text-anchor="start" x="552" y="-303.8" font-family="arial" font-size="14.00">0.25 mm²</text>
<polygon fill="none" stroke="black" points="644.5,-296 644.5,-319 735.5,-319 735.5,-296 644.5,-296"/>
<text text-anchor="start" x="678" y="-303.8" font-family="arial" font-size="14.00">1 m</text>
<text text-anchor="start" x="494" y="-282.8" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="482" y="-263.8" font-family="arial" font-size="14.00">X1:1</text>
<text text-anchor="start" x="581.5" y="-263.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="683" y="-263.8" font-family="arial" font-size="14.00">X3:1</text>
<polygon fill="#000000" stroke="none" points="435.5,-256 435.5,-258 735.5,-258 735.5,-256 435.5,-256"/>
<polygon fill="#ffff00" stroke="none" points="435.5,-254 435.5,-256 735.5,-256 735.5,-254 435.5,-254"/>
<polygon fill="#000000" stroke="none" points="435.5,-252 435.5,-254 735.5,-254 735.5,-252 435.5,-252"/>
<text text-anchor="start" x="440" y="-236.8" font-family="arial" font-size="14.00">P/N: WIRE1</text>
<text text-anchor="start" x="519" y="-236.8" font-family="arial" font-size="14.00">WiresCo: W1&#45;YE</text>
<text text-anchor="start" x="627.5" y="-236.8" font-family="arial" font-size="14.00">WireShack: 1001</text>
<text text-anchor="start" x="482" y="-215.8" font-family="arial" font-size="14.00">X1:2</text>
<text text-anchor="start" x="581.5" y="-215.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="683" y="-215.8" font-family="arial" font-size="14.00">X3:2</text>
<polygon fill="#000000" stroke="none" points="435.5,-208 435.5,-210 735.5,-210 735.5,-208 435.5,-208"/>
<polygon fill="#000000" stroke="none" points="435.5,-206 435.5,-208 735.5,-208 735.5,-206 435.5,-206"/>
<polygon fill="#000000" stroke="none" points="435.5,-204 435.5,-206 735.5,-206 735.5,-204 435.5,-204"/>
<text text-anchor="start" x="440" y="-188.8" font-family="arial" font-size="14.00">P/N: WIRE2</text>
<text text-anchor="start" x="519" y="-188.8" font-family="arial" font-size="14.00">WiresCo: W1&#45;BK</text>
<text text-anchor="start" x="627.5" y="-188.8" font-family="arial" font-size="14.00">WireShack: 1002</text>
<text text-anchor="start" x="482" y="-167.8" font-family="arial" font-size="14.00">X1:3</text>
<text text-anchor="start" x="581.5" y="-167.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="683" y="-167.8" font-family="arial" font-size="14.00">X3:3</text>
<polygon fill="#000000" stroke="none" points="435.5,-160 435.5,-162 735.5,-162 735.5,-160 435.5,-160"/>
<polygon fill="#000000" stroke="none" points="435.5,-158 435.5,-160 735.5,-160 735.5,-158 435.5,-158"/>
<polygon fill="#000000" stroke="none" points="435.5,-156 435.5,-158 735.5,-158 735.5,-156 435.5,-156"/>
<text text-anchor="start" x="440" y="-140.8" font-family="arial" font-size="14.00">P/N: WIRE2</text>
<text text-anchor="start" x="519" y="-140.8" font-family="arial" font-size="14.00">WiresCo: W1&#45;BK</text>
<text text-anchor="start" x="627.5" y="-140.8" font-family="arial" font-size="14.00">WireShack: 1002</text>
<text text-anchor="start" x="482" y="-119.8" font-family="arial" font-size="14.00">X1:4</text>
<text text-anchor="start" x="580.5" y="-119.8" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="683" y="-119.8" font-family="arial" font-size="14.00">X3:4</text>
<polygon fill="#000000" stroke="none" points="435.5,-112 435.5,-114 735.5,-114 735.5,-112 435.5,-112"/>
<polygon fill="#ff0000" stroke="none" points="435.5,-110 435.5,-112 735.5,-112 735.5,-110 435.5,-110"/>
<polygon fill="#000000" stroke="none" points="435.5,-108 435.5,-110 735.5,-110 735.5,-108 435.5,-108"/>
<text text-anchor="start" x="439.5" y="-92.8" font-family="arial" font-size="14.00">P/N: WIRE3</text>
<text text-anchor="start" x="517.5" y="-92.8" font-family="arial" font-size="14.00">WiresCo: W1&#45;RD</text>
<text text-anchor="start" x="627.5" y="-92.8" font-family="arial" font-size="14.00">WireShack: 1009</text>
<text text-anchor="start" x="494" y="-71.8" font-family="arial" font-size="14.00"> </text>
<polygon fill="none" stroke="black" points="435.5,-43 435.5,-66 735.5,-66 735.5,-43 435.5,-43"/>
<text text-anchor="start" x="516.5" y="-50.8" font-family="arial" font-size="14.00">Additional components</text>
<polygon fill="none" stroke="black" points="435.5,-5 435.5,-43 735.5,-43 735.5,-5 435.5,-5"/>
<text text-anchor="start" x="439.5" y="-27.8" font-family="arial" font-size="14.00">1 m x Sleve, Braided nylon, black, 3mm</text>
<text text-anchor="start" x="439.5" y="-12.8" font-family="arial" font-size="14.00">P/N: SLV&#45;1</text>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="732.62,-351.88 434.62,-351.88 434.62,-11.12 732.62,-11.12 732.62,-351.88"/>
<polygon fill="none" stroke="black" points="434.62,-328.12 434.62,-351.88 732.62,-351.88 732.62,-328.12 434.62,-328.12"/>
<text text-anchor="start" x="573.12" y="-334.57" font-family="arial" font-size="14.00">W2</text>
<polygon fill="none" stroke="black" points="434.62,-304.38 434.62,-328.12 516.21,-328.12 516.21,-304.38 434.62,-304.38"/>
<text text-anchor="start" x="468.29" y="-310.82" font-family="arial" font-size="14.00">4x</text>
<polygon fill="none" stroke="black" points="516.21,-304.38 516.21,-328.12 642.04,-328.12 642.04,-304.38 516.21,-304.38"/>
<text text-anchor="start" x="549.88" y="-310.82" font-family="arial" font-size="14.00">0.25 mm²</text>
<polygon fill="none" stroke="black" points="642.04,-304.38 642.04,-328.12 732.62,-328.12 732.62,-304.38 642.04,-304.38"/>
<text text-anchor="start" x="675.71" y="-310.82" font-family="arial" font-size="14.00">1 m</text>
<text text-anchor="start" x="492.75" y="-289.07" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="480.75" y="-270.07" font-family="arial" font-size="14.00">X1:1</text>
<text text-anchor="start" x="579.75" y="-270.07" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;YE &#160;&#160;&#160;</text>
<text text-anchor="start" x="680.75" y="-270.07" font-family="arial" font-size="14.00">X3:1</text>
<polygon fill="#000000" stroke="none" points="434.62,-264.38 434.62,-266.38 732.62,-266.38 732.62,-264.38 434.62,-264.38"/>
<polygon fill="#ffff00" stroke="none" points="434.62,-262.38 434.62,-264.38 732.62,-264.38 732.62,-262.38 434.62,-262.38"/>
<polygon fill="#000000" stroke="none" points="434.62,-260.38 434.62,-262.38 732.62,-262.38 732.62,-260.38 434.62,-260.38"/>
<text text-anchor="start" x="438.88" y="-243.07" font-family="arial" font-size="14.00">P/N: WIRE1</text>
<text text-anchor="start" x="516.88" y="-243.07" font-family="arial" font-size="14.00">WiresCo: W1&#45;YE</text>
<text text-anchor="start" x="624.88" y="-243.07" font-family="arial" font-size="14.00">WireShack: 1001</text>
<text text-anchor="start" x="480.75" y="-222.07" font-family="arial" font-size="14.00">X1:2</text>
<text text-anchor="start" x="579.75" y="-222.07" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="680.75" y="-222.07" font-family="arial" font-size="14.00">X3:2</text>
<polygon fill="#000000" stroke="none" points="434.62,-216.38 434.62,-218.38 732.62,-218.38 732.62,-216.38 434.62,-216.38"/>
<polygon fill="#000000" stroke="none" points="434.62,-214.38 434.62,-216.38 732.62,-216.38 732.62,-214.38 434.62,-214.38"/>
<polygon fill="#000000" stroke="none" points="434.62,-212.38 434.62,-214.38 732.62,-214.38 732.62,-212.38 434.62,-212.38"/>
<text text-anchor="start" x="438.88" y="-195.07" font-family="arial" font-size="14.00">P/N: WIRE2</text>
<text text-anchor="start" x="516.88" y="-195.07" font-family="arial" font-size="14.00">WiresCo: W1&#45;BK</text>
<text text-anchor="start" x="624.88" y="-195.07" font-family="arial" font-size="14.00">WireShack: 1002</text>
<text text-anchor="start" x="480.75" y="-174.07" font-family="arial" font-size="14.00">X1:3</text>
<text text-anchor="start" x="579.75" y="-174.07" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;BK &#160;&#160;&#160;</text>
<text text-anchor="start" x="680.75" y="-174.07" font-family="arial" font-size="14.00">X3:3</text>
<polygon fill="#000000" stroke="none" points="434.62,-168.38 434.62,-170.38 732.62,-170.38 732.62,-168.38 434.62,-168.38"/>
<polygon fill="#000000" stroke="none" points="434.62,-166.38 434.62,-168.38 732.62,-168.38 732.62,-166.38 434.62,-166.38"/>
<polygon fill="#000000" stroke="none" points="434.62,-164.38 434.62,-166.38 732.62,-166.38 732.62,-164.38 434.62,-164.38"/>
<text text-anchor="start" x="438.88" y="-147.07" font-family="arial" font-size="14.00">P/N: WIRE2</text>
<text text-anchor="start" x="516.88" y="-147.07" font-family="arial" font-size="14.00">WiresCo: W1&#45;BK</text>
<text text-anchor="start" x="624.88" y="-147.07" font-family="arial" font-size="14.00">WireShack: 1002</text>
<text text-anchor="start" x="480.75" y="-126.08" font-family="arial" font-size="14.00">X1:4</text>
<text text-anchor="start" x="579" y="-126.08" font-family="arial" font-size="14.00"> &#160;&#160;&#160;&#160;RD &#160;&#160;&#160;</text>
<text text-anchor="start" x="680.75" y="-126.08" font-family="arial" font-size="14.00">X3:4</text>
<polygon fill="#000000" stroke="none" points="434.62,-120.38 434.62,-122.38 732.62,-122.38 732.62,-120.38 434.62,-120.38"/>
<polygon fill="#ff0000" stroke="none" points="434.62,-118.38 434.62,-120.38 732.62,-120.38 732.62,-118.38 434.62,-118.38"/>
<polygon fill="#000000" stroke="none" points="434.62,-116.38 434.62,-118.38 732.62,-118.38 732.62,-116.38 434.62,-116.38"/>
<text text-anchor="start" x="438.62" y="-99.08" font-family="arial" font-size="14.00">P/N: WIRE3</text>
<text text-anchor="start" x="516.12" y="-99.08" font-family="arial" font-size="14.00">WiresCo: W1&#45;RD</text>
<text text-anchor="start" x="625.12" y="-99.08" font-family="arial" font-size="14.00">WireShack: 1009</text>
<text text-anchor="start" x="492.75" y="-78.08" font-family="arial" font-size="14.00"> </text>
<polygon fill="none" stroke="black" points="434.62,-50.62 434.62,-74.38 732.62,-74.38 732.62,-50.62 434.62,-50.62"/>
<text text-anchor="start" x="515" y="-57.08" font-family="arial" font-size="14.00">Additional components</text>
<polygon fill="none" stroke="black" points="434.62,-11.12 434.62,-50.62 732.62,-50.62 732.62,-11.12 434.62,-11.12"/>
<text text-anchor="start" x="438.62" y="-33.33" font-family="arial" font-size="14.00">1 m x Sleve, Braided nylon, black, 3mm</text>
<text text-anchor="start" x="438.62" y="-17.57" font-family="arial" font-size="14.00">P/N: SLV&#45;1</text>
</g>
<!-- X1&#45;&#45;W2 -->
<g id="edge9" class="edge">
<title>X1:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M258,-354C346.38,-356.08 342.12,-255.08 434.5,-253"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M258,-356C348.38,-356 344.12,-255 434.5,-255"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M258,-358C350.38,-355.92 346.12,-254.92 434.5,-257"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M257,-365.5C346.1,-367.61 340.53,-263.61 433.62,-261.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M257,-367.5C348.1,-367.5 342.53,-263.5 433.62,-263.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M257,-369.5C350.09,-367.39 344.52,-263.39 433.62,-265.5"/>
</g>
<!-- X1&#45;&#45;W2 -->
<g id="edge11" class="edge">
<title>X1:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M258,-331C352.4,-333.26 336.13,-207.26 434.5,-205"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M258,-333C354.38,-333 338.12,-207 434.5,-207"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M258,-335C356.37,-332.74 340.1,-206.74 434.5,-209"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M257,-342.5C352.23,-344.77 334.44,-215.77 433.62,-213.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M257,-344.5C354.21,-344.5 336.42,-215.5 433.62,-215.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M257,-346.5C356.19,-344.23 338.4,-215.23 433.62,-217.5"/>
</g>
<!-- X1&#45;&#45;W2 -->
<g id="edge13" class="edge">
<title>X1:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M258,-308C359.27,-310.39 329.3,-159.39 434.5,-157"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M258,-310C361.23,-310 331.27,-159 434.5,-159"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M258,-312C363.2,-309.61 333.23,-158.61 434.5,-161"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M257,-318.5C358.9,-320.9 327.81,-167.9 433.62,-165.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M257,-320.5C360.86,-320.5 329.77,-167.5 433.62,-167.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M257,-322.5C362.82,-320.1 331.73,-167.1 433.62,-169.5"/>
</g>
<!-- X1&#45;&#45;W2 -->
<g id="edge15" class="edge">
<title>X1:e&#45;&#45;W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M258,-284C366.53,-286.49 322.09,-111.49 434.5,-109"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M258,-286C368.47,-286 324.03,-111 434.5,-111"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M258,-288C370.41,-285.51 325.97,-110.51 434.5,-113"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M257,-294.5C366.2,-297 320.55,-120 433.62,-117.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M257,-296.5C368.13,-296.5 322.49,-119.5 433.62,-119.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M257,-298.5C370.07,-296 324.43,-119 433.62,-121.5"/>
</g>
<!-- X2 -->
<g id="node2" class="node">
<title>X2</title>
<polygon fill="#ffffff" stroke="black" points="1214,-544 913,-544 913,-284 1214,-284 1214,-544"/>
<polygon fill="none" stroke="black" points="913.5,-521 913.5,-544 1214.5,-544 1214.5,-521 913.5,-521"/>
<text text-anchor="start" x="1055.5" y="-528.8" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="913.5,-498 913.5,-521 990.5,-521 990.5,-498 913.5,-498"/>
<text text-anchor="start" x="917.5" y="-505.8" font-family="arial" font-size="14.00">P/N: CON4</text>
<polygon fill="none" stroke="black" points="990.5,-498 990.5,-521 1103.5,-521 1103.5,-498 990.5,-498"/>
<text text-anchor="start" x="994.5" y="-505.8" font-family="arial" font-size="14.00">Molex: 22013047</text>
<polygon fill="none" stroke="black" points="1103.5,-498 1103.5,-521 1214.5,-521 1214.5,-498 1103.5,-498"/>
<text text-anchor="start" x="1107.5" y="-505.8" font-family="arial" font-size="14.00">Digimouse: 1234</text>
<polygon fill="none" stroke="black" points="913.5,-475 913.5,-498 1046.5,-498 1046.5,-475 913.5,-475"/>
<text text-anchor="start" x="937.5" y="-482.8" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="1046.5,-475 1046.5,-498 1136.5,-498 1136.5,-475 1046.5,-475"/>
<text text-anchor="start" x="1070.5" y="-482.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="1136.5,-475 1136.5,-498 1214.5,-498 1214.5,-475 1136.5,-475"/>
<text text-anchor="start" x="1160" y="-482.8" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="913.5,-452 913.5,-475 1214.5,-475 1214.5,-452 913.5,-452"/>
<text text-anchor="start" x="1060" y="-459.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="913.5,-429 913.5,-452 1214.5,-452 1214.5,-429 913.5,-429"/>
<text text-anchor="start" x="1060" y="-436.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="913.5,-406 913.5,-429 1214.5,-429 1214.5,-406 913.5,-406"/>
<text text-anchor="start" x="1060" y="-413.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="913.5,-383 913.5,-406 1214.5,-406 1214.5,-383 913.5,-383"/>
<text text-anchor="start" x="1060" y="-390.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="913.5,-360 913.5,-383 1214.5,-383 1214.5,-360 913.5,-360"/>
<text text-anchor="start" x="995" y="-367.8" font-family="arial" font-size="14.00">Additional components</text>
<polygon fill="none" stroke="black" points="913.5,-322 913.5,-360 1214.5,-360 1214.5,-322 913.5,-322"/>
<text text-anchor="start" x="917.5" y="-344.8" font-family="arial" font-size="14.00">4 x Crimp, Molex KK 254, 22&#45;30 AWG</text>
<text text-anchor="start" x="917.5" y="-329.8" font-family="arial" font-size="14.00">Molex: 08500030</text>
<polygon fill="none" stroke="black" points="913.5,-284 913.5,-322 1214.5,-322 1214.5,-284 913.5,-284"/>
<text text-anchor="start" x="917.5" y="-306.8" font-family="arial" font-size="14.00">1 x Test</text>
<text text-anchor="start" x="917.5" y="-291.8" font-family="arial" font-size="14.00">P/N: ABC, Molex: 45454, Mousikey: 9999</text>
<polygon fill="#ffffff" stroke="black" points="1208.75,-562 910.25,-562 910.25,-293 1208.75,-293 1208.75,-562"/>
<polygon fill="none" stroke="black" points="910.25,-538.25 910.25,-562 1208.75,-562 1208.75,-538.25 910.25,-538.25"/>
<text text-anchor="start" x="1051.25" y="-544.7" font-family="arial" font-size="14.00">X2</text>
<polygon fill="none" stroke="black" points="910.25,-514.5 910.25,-538.25 986.5,-538.25 986.5,-514.5 910.25,-514.5"/>
<text text-anchor="start" x="914.25" y="-520.95" font-family="arial" font-size="14.00">P/N: CON4</text>
<polygon fill="none" stroke="black" points="986.5,-514.5 986.5,-538.25 1098.75,-538.25 1098.75,-514.5 986.5,-514.5"/>
<text text-anchor="start" x="990.5" y="-520.95" font-family="arial" font-size="14.00">Molex: 22013047</text>
<polygon fill="none" stroke="black" points="1098.75,-514.5 1098.75,-538.25 1208.75,-538.25 1208.75,-514.5 1098.75,-514.5"/>
<text text-anchor="start" x="1102.75" y="-520.95" font-family="arial" font-size="14.00">Digimouse: 1234</text>
<polygon fill="none" stroke="black" points="910.25,-490.75 910.25,-514.5 1042.5,-514.5 1042.5,-490.75 910.25,-490.75"/>
<text text-anchor="start" x="934" y="-497.2" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="1042.5,-490.75 1042.5,-514.5 1131.25,-514.5 1131.25,-490.75 1042.5,-490.75"/>
<text text-anchor="start" x="1066.25" y="-497.2" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="1131.25,-490.75 1131.25,-514.5 1208.75,-514.5 1208.75,-490.75 1131.25,-490.75"/>
<text text-anchor="start" x="1155" y="-497.2" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="910.25,-467 910.25,-490.75 1208.75,-490.75 1208.75,-467 910.25,-467"/>
<text text-anchor="start" x="1055.75" y="-473.45" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="910.25,-443.25 910.25,-467 1208.75,-467 1208.75,-443.25 910.25,-443.25"/>
<text text-anchor="start" x="1055.75" y="-449.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="910.25,-419.5 910.25,-443.25 1208.75,-443.25 1208.75,-419.5 910.25,-419.5"/>
<text text-anchor="start" x="1055.75" y="-425.95" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="910.25,-395.75 910.25,-419.5 1208.75,-419.5 1208.75,-395.75 910.25,-395.75"/>
<text text-anchor="start" x="1055.75" y="-402.2" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="910.25,-372 910.25,-395.75 1208.75,-395.75 1208.75,-372 910.25,-372"/>
<text text-anchor="start" x="990.88" y="-378.45" font-family="arial" font-size="14.00">Additional components</text>
<polygon fill="none" stroke="black" points="910.25,-332.5 910.25,-372 1208.75,-372 1208.75,-332.5 910.25,-332.5"/>
<text text-anchor="start" x="914.25" y="-354.7" font-family="arial" font-size="14.00">4 x Crimp, Molex KK 254, 22&#45;30 AWG</text>
<text text-anchor="start" x="914.25" y="-338.95" font-family="arial" font-size="14.00">Molex: 08500030</text>
<polygon fill="none" stroke="black" points="910.25,-293 910.25,-332.5 1208.75,-332.5 1208.75,-293 910.25,-293"/>
<text text-anchor="start" x="914.25" y="-315.2" font-family="arial" font-size="14.00">1 x Test</text>
<text text-anchor="start" x="914.25" y="-299.45" font-family="arial" font-size="14.00">P/N: ABC, Molex: 45454, Mousikey: 9999</text>
</g>
<!-- X3 -->
<g id="node3" class="node">
<title>X3</title>
<polygon fill="#ffffff" stroke="black" points="1192.5,-260 934.5,-260 934.5,0 1192.5,0 1192.5,-260"/>
<polygon fill="none" stroke="black" points="934.5,-237 934.5,-260 1192.5,-260 1192.5,-237 934.5,-237"/>
<text text-anchor="start" x="1055" y="-244.8" font-family="arial" font-size="14.00">X3</text>
<polygon fill="none" stroke="black" points="934.5,-214 934.5,-237 1064.5,-237 1064.5,-214 934.5,-214"/>
<text text-anchor="start" x="947" y="-221.8" font-family="arial" font-size="14.00">Molex: 22013047</text>
<polygon fill="none" stroke="black" points="1064.5,-214 1064.5,-237 1192.5,-237 1192.5,-214 1064.5,-214"/>
<text text-anchor="start" x="1077" y="-221.8" font-family="arial" font-size="14.00">Digimouse: 1234</text>
<polygon fill="none" stroke="black" points="934.5,-191 934.5,-214 1053.5,-214 1053.5,-191 934.5,-191"/>
<text text-anchor="start" x="951.5" y="-198.8" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="1053.5,-191 1053.5,-214 1128.5,-214 1128.5,-191 1053.5,-191"/>
<text text-anchor="start" x="1070" y="-198.8" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="1128.5,-191 1128.5,-214 1192.5,-214 1192.5,-191 1128.5,-191"/>
<text text-anchor="start" x="1145" y="-198.8" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="934.5,-168 934.5,-191 1192.5,-191 1192.5,-168 934.5,-168"/>
<text text-anchor="start" x="1059.5" y="-175.8" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="934.5,-145 934.5,-168 1192.5,-168 1192.5,-145 934.5,-145"/>
<text text-anchor="start" x="1059.5" y="-152.8" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="934.5,-122 934.5,-145 1192.5,-145 1192.5,-122 934.5,-122"/>
<text text-anchor="start" x="1059.5" y="-129.8" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="934.5,-99 934.5,-122 1192.5,-122 1192.5,-99 934.5,-99"/>
<text text-anchor="start" x="1059.5" y="-106.8" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="934.5,-76 934.5,-99 1192.5,-99 1192.5,-76 934.5,-76"/>
<text text-anchor="start" x="994.5" y="-83.8" font-family="arial" font-size="14.00">Additional components</text>
<polygon fill="none" stroke="black" points="934.5,-38 934.5,-76 1192.5,-76 1192.5,-38 934.5,-38"/>
<text text-anchor="start" x="938.5" y="-60.8" font-family="arial" font-size="14.00">4 x Crimp, Molex KK 254, 22&#45;30 AWG</text>
<text text-anchor="start" x="938.5" y="-45.8" font-family="arial" font-size="14.00">Molex: 08500030</text>
<polygon fill="none" stroke="black" points="934.5,0 934.5,-38 1192.5,-38 1192.5,0 934.5,0"/>
<text text-anchor="start" x="938.5" y="-22.8" font-family="arial" font-size="14.00">1 x Test</text>
<text text-anchor="start" x="938.5" y="-7.8" font-family="arial" font-size="14.00">P/N: ABC, Molex: 45454, Mousikey: 9999</text>
<polygon fill="#ffffff" stroke="black" points="1188,-269 931,-269 931,0 1188,0 1188,-269"/>
<polygon fill="none" stroke="black" points="931,-245.25 931,-269 1188,-269 1188,-245.25 931,-245.25"/>
<text text-anchor="start" x="1051.25" y="-251.7" font-family="arial" font-size="14.00">X3</text>
<polygon fill="none" stroke="black" points="931,-221.5 931,-245.25 1060.62,-245.25 1060.62,-221.5 931,-221.5"/>
<text text-anchor="start" x="943.69" y="-227.95" font-family="arial" font-size="14.00">Molex: 22013047</text>
<polygon fill="none" stroke="black" points="1060.62,-221.5 1060.62,-245.25 1188,-245.25 1188,-221.5 1060.62,-221.5"/>
<text text-anchor="start" x="1073.31" y="-227.95" font-family="arial" font-size="14.00">Digimouse: 1234</text>
<polygon fill="none" stroke="black" points="931,-197.75 931,-221.5 1049.42,-221.5 1049.42,-197.75 931,-197.75"/>
<text text-anchor="start" x="947.83" y="-204.2" font-family="arial" font-size="14.00">Molex KK 254</text>
<polygon fill="none" stroke="black" points="1049.42,-197.75 1049.42,-221.5 1124.33,-221.5 1124.33,-197.75 1049.42,-197.75"/>
<text text-anchor="start" x="1066.25" y="-204.2" font-family="arial" font-size="14.00">female</text>
<polygon fill="none" stroke="black" points="1124.33,-197.75 1124.33,-221.5 1188,-221.5 1188,-197.75 1124.33,-197.75"/>
<text text-anchor="start" x="1141.17" y="-204.2" font-family="arial" font-size="14.00">4&#45;pin</text>
<polygon fill="none" stroke="black" points="931,-174 931,-197.75 1188,-197.75 1188,-174 931,-174"/>
<text text-anchor="start" x="1055.75" y="-180.45" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="931,-150.25 931,-174 1188,-174 1188,-150.25 931,-150.25"/>
<text text-anchor="start" x="1055.75" y="-156.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="931,-126.5 931,-150.25 1188,-150.25 1188,-126.5 931,-126.5"/>
<text text-anchor="start" x="1055.75" y="-132.95" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="931,-102.75 931,-126.5 1188,-126.5 1188,-102.75 931,-102.75"/>
<text text-anchor="start" x="1055.75" y="-109.2" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="931,-79 931,-102.75 1188,-102.75 1188,-79 931,-79"/>
<text text-anchor="start" x="990.88" y="-85.45" font-family="arial" font-size="14.00">Additional components</text>
<polygon fill="none" stroke="black" points="931,-39.5 931,-79 1188,-79 1188,-39.5 931,-39.5"/>
<text text-anchor="start" x="935" y="-61.7" font-family="arial" font-size="14.00">4 x Crimp, Molex KK 254, 22&#45;30 AWG</text>
<text text-anchor="start" x="935" y="-45.95" font-family="arial" font-size="14.00">Molex: 08500030</text>
<polygon fill="none" stroke="black" points="931,0 931,-39.5 1188,-39.5 1188,0 931,0"/>
<text text-anchor="start" x="935" y="-22.2" font-family="arial" font-size="14.00">1 x Test</text>
<text text-anchor="start" x="935" y="-6.45" font-family="arial" font-size="14.00">P/N: ABC, Molex: 45454, Mousikey: 9999</text>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge2" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M769,-461C833.13,-461 849.12,-462 913,-462"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M769,-463C833,-463 849,-464 913,-464"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M769,-465C832.88,-465 848.87,-466 913,-466"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M766.25,-473.5C830.63,-473.53 846.61,-476.53 910.25,-476.5"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M766.25,-475.5C830.26,-475.5 846.24,-478.5 910.25,-478.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M766.25,-477.5C829.89,-477.47 845.87,-480.47 910.25,-480.5"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge4" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M769,-436C833.38,-436.03 849.36,-439.03 913,-439"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M769,-438C833.01,-438 848.99,-441 913,-441"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M769,-440C832.64,-439.97 848.62,-442.97 913,-443"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M766.25,-448.5C830.89,-448.59 846.81,-453.59 910.25,-453.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M766.25,-450.5C830.29,-450.5 846.21,-455.5 910.25,-455.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M766.25,-452.5C829.69,-452.41 845.61,-457.41 910.25,-457.5"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge6" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M769,-411C833.64,-411.09 849.56,-416.09 913,-416"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M769,-413C833.04,-413 848.96,-418 913,-418"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M769,-415C832.44,-414.91 848.36,-419.91 913,-420"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M766.25,-423.5C831.01,-423.63 846.9,-429.63 910.25,-429.5"/>
<path fill="none" stroke="#ff8000" stroke-width="2" d="M766.25,-425.5C830.31,-425.5 846.19,-431.5 910.25,-431.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M766.25,-427.5C829.6,-427.37 845.49,-433.37 910.25,-433.5"/>
</g>
<!-- W1&#45;&#45;X2 -->
<g id="edge8" class="edge">
<title>W1:e&#45;&#45;X2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M769,-386C833.76,-386.13 849.65,-392.13 913,-392"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M769,-388C833.06,-388 848.94,-394 913,-394"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M769,-390C832.35,-389.87 848.24,-395.87 913,-396"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M766.25,-398.5C831.13,-398.67 846.98,-405.67 910.25,-405.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M766.25,-400.5C830.33,-400.5 846.17,-407.5 910.25,-407.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M766.25,-402.5C829.52,-402.33 845.37,-409.33 910.25,-409.5"/>
</g>
<!-- W2&#45;&#45;X3 -->
<g id="edge10" class="edge">
<title>W2:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M736.5,-253C828.2,-254.75 837.83,-179.75 933.5,-178"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M736.5,-255C830.19,-255 839.81,-180 933.5,-180"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M736.5,-257C832.17,-255.25 841.8,-180.25 933.5,-182"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M733.62,-261.5C825.34,-263.28 833.81,-185.28 929.5,-183.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M733.62,-263.5C827.33,-263.5 835.8,-185.5 929.5,-185.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M733.62,-265.5C829.32,-263.72 837.78,-185.72 929.5,-187.5"/>
</g>
<!-- W2&#45;&#45;X3 -->
<g id="edge12" class="edge">
<title>W2:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M736.5,-205C824.93,-206.38 841.27,-156.38 933.5,-155"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M736.5,-207C826.83,-207 843.17,-157 933.5,-157"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M736.5,-209C828.73,-207.62 845.07,-157.62 933.5,-159"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M733.62,-213.5C821.89,-214.94 837.39,-161.94 929.5,-160.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M733.62,-215.5C823.81,-215.5 839.31,-162.5 929.5,-162.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M733.62,-217.5C825.73,-216.06 841.23,-163.06 929.5,-164.5"/>
</g>
<!-- W2&#45;&#45;X3 -->
<g id="edge14" class="edge">
<title>W2:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M736.5,-157C823.21,-157.73 843.7,-132.73 933.5,-132"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M736.5,-159C824.76,-159 845.24,-134 933.5,-134"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M736.5,-161C826.3,-160.27 846.79,-135.27 933.5,-136"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M733.62,-165.5C819.98,-166.37 839.85,-137.37 929.5,-136.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M733.62,-167.5C821.63,-167.5 841.5,-138.5 929.5,-138.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M733.62,-169.5C823.28,-168.63 843.15,-139.63 929.5,-140.5"/>
</g>
<!-- W2&#45;&#45;X3 -->
<g id="edge16" class="edge">
<title>W2:e&#45;&#45;X3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M736.5,-109C823.97,-109 845.85,-108 933.5,-108"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M736.5,-111C824.06,-111 845.94,-110 933.5,-110"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M736.5,-113C824.15,-113 846.03,-112 933.5,-112"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M733.62,-117.5C820.26,-117.55 841.97,-112.55 929.5,-112.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M733.62,-119.5C820.71,-119.5 842.42,-114.5 929.5,-114.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M733.62,-121.5C821.16,-121.45 842.87,-116.45 929.5,-116.5"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 27 KiB