1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
|
<!DOCTYPE html>
<html lang="en"><head>
<meta charset="UTF-8">
<meta name="generator" content="WireViz 0.3.2 - https://github.com/formatc1702/WireViz">
<title>Choppy_IB_CEX</title>
</head><body style="font-family:arial;background-color:#FFFFFF">
<h1>Choppy_IB_CEX</h1>
<h2>Diagram</h2>
<!-- XML and DOCTYPE declarations from SVG file removed -->
<!-- Generated by graphviz version 12.0.0 (20240704.0754)
-->
<!-- Pages: 1 -->
<svg width="2153pt" height="2940pt"
viewBox="0.00 0.00 2153.25 2940.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 2936.25)">
<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-2936.25 2149.25,-2936.25 2149.25,4 -4,4"/>
<!-- Veronte CEX -->
<g id="node1" class="node">
<title>Veronte CEX</title>
<polygon fill="#ffffff" stroke="black" points="409,-2129 0,-2129 0,0 409,0 409,-2129"/>
<polygon fill="none" stroke="black" points="0,-2104.5 0,-2129 409,-2129 409,-2104.5 0,-2104.5"/>
<text text-anchor="start" x="162.5" y="-2111.7" font-family="arial" font-size="14.00">Veronte CEX</text>
<polygon fill="none" stroke="black" points="0,-2080 0,-2104.5 248,-2104.5 248,-2080 0,-2080"/>
<text text-anchor="start" x="60.62" y="-2087.2" font-family="arial" font-size="14.00">HEW.LM.368.XLNP</text>
<polygon fill="none" stroke="black" points="248,-2080 248,-2104.5 409,-2104.5 409,-2080 248,-2080"/>
<text text-anchor="start" x="308.62" y="-2087.2" font-family="arial" font-size="14.00">68-pin</text>
<polygon fill="none" stroke="black" points="0,-2056 0,-2080 241,-2080 241,-2056 0,-2056"/>
<text text-anchor="start" x="94.25" y="-2062.7" font-family="arial" font-size="14.00">Power 1</text>
<polygon fill="none" stroke="black" points="241,-2056 241,-2080 409,-2080 409,-2056 241,-2056"/>
<text text-anchor="start" x="320.88" y="-2062.7" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="0,-2032 0,-2056 241,-2056 241,-2032 0,-2032"/>
<text text-anchor="start" x="94.25" y="-2038.7" font-family="arial" font-size="14.00">Power 2</text>
<polygon fill="none" stroke="black" points="241,-2032 241,-2056 409,-2056 409,-2032 241,-2032"/>
<text text-anchor="start" x="320.88" y="-2038.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="0,-2008 0,-2032 241,-2032 241,-2008 0,-2008"/>
<text text-anchor="start" x="104.75" y="-2014.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="241,-2008 241,-2032 409,-2032 409,-2008 241,-2008"/>
<text text-anchor="start" x="320.88" y="-2014.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="0,-1984 0,-2008 241,-2008 241,-1984 0,-1984"/>
<text text-anchor="start" x="104.75" y="-1990.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="241,-1984 241,-2008 409,-2008 409,-1984 241,-1984"/>
<text text-anchor="start" x="320.88" y="-1990.7" font-family="arial" font-size="14.00">4</text>
<polygon fill="none" stroke="black" points="0,-1960 0,-1984 241,-1984 241,-1960 0,-1960"/>
<text text-anchor="start" x="96.12" y="-1966.7" font-family="arial" font-size="14.00">CanA P</text>
<polygon fill="none" stroke="black" points="241,-1960 241,-1984 409,-1984 409,-1960 241,-1960"/>
<text text-anchor="start" x="320.88" y="-1966.7" font-family="arial" font-size="14.00">5</text>
<polygon fill="none" stroke="black" points="0,-1936 0,-1960 241,-1960 241,-1936 0,-1936"/>
<text text-anchor="start" x="96.12" y="-1942.7" font-family="arial" font-size="14.00">CanA N</text>
<polygon fill="none" stroke="black" points="241,-1936 241,-1960 409,-1960 409,-1936 241,-1936"/>
<text text-anchor="start" x="320.88" y="-1942.7" font-family="arial" font-size="14.00">6</text>
<polygon fill="none" stroke="black" points="0,-1912 0,-1936 241,-1936 241,-1912 0,-1912"/>
<text text-anchor="start" x="87.88" y="-1918.7" font-family="arial" font-size="14.00">CAN GND</text>
<polygon fill="none" stroke="black" points="241,-1912 241,-1936 409,-1936 409,-1912 241,-1912"/>
<text text-anchor="start" x="320.88" y="-1918.7" font-family="arial" font-size="14.00">7</text>
<polygon fill="none" stroke="black" points="0,-1888 0,-1912 241,-1912 241,-1888 0,-1888"/>
<text text-anchor="start" x="96.12" y="-1894.7" font-family="arial" font-size="14.00">CanB P</text>
<polygon fill="none" stroke="black" points="241,-1888 241,-1912 409,-1912 409,-1888 241,-1888"/>
<text text-anchor="start" x="320.88" y="-1894.7" font-family="arial" font-size="14.00">8</text>
<polygon fill="none" stroke="black" points="0,-1864 0,-1888 241,-1888 241,-1864 0,-1864"/>
<text text-anchor="start" x="96.12" y="-1870.7" font-family="arial" font-size="14.00">CanB N</text>
<polygon fill="none" stroke="black" points="241,-1864 241,-1888 409,-1888 409,-1864 241,-1864"/>
<text text-anchor="start" x="320.88" y="-1870.7" font-family="arial" font-size="14.00">9</text>
<polygon fill="none" stroke="black" points="0,-1840 0,-1864 241,-1864 241,-1840 0,-1840"/>
<text text-anchor="start" x="75.88" y="-1846.7" font-family="arial" font-size="14.00">Out RS-485 P</text>
<polygon fill="none" stroke="black" points="241,-1840 241,-1864 409,-1864 409,-1840 241,-1840"/>
<text text-anchor="start" x="316.75" y="-1846.7" font-family="arial" font-size="14.00">10</text>
<polygon fill="none" stroke="black" points="0,-1816 0,-1840 241,-1840 241,-1816 0,-1816"/>
<text text-anchor="start" x="75.88" y="-1822.7" font-family="arial" font-size="14.00">Out RS-485 N</text>
<polygon fill="none" stroke="black" points="241,-1816 241,-1840 409,-1840 409,-1816 241,-1816"/>
<text text-anchor="start" x="316.75" y="-1822.7" font-family="arial" font-size="14.00">11</text>
<polygon fill="none" stroke="black" points="0,-1792 0,-1816 241,-1816 241,-1792 0,-1792"/>
<text text-anchor="start" x="80" y="-1798.7" font-family="arial" font-size="14.00">IN RS-485 N</text>
<polygon fill="none" stroke="black" points="241,-1792 241,-1816 409,-1816 409,-1792 241,-1792"/>
<text text-anchor="start" x="316.75" y="-1798.7" font-family="arial" font-size="14.00">12</text>
<polygon fill="none" stroke="black" points="0,-1768 0,-1792 241,-1792 241,-1768 0,-1768"/>
<text text-anchor="start" x="80" y="-1774.7" font-family="arial" font-size="14.00">IN RS-485 P</text>
<polygon fill="none" stroke="black" points="241,-1768 241,-1792 409,-1792 409,-1768 241,-1768"/>
<text text-anchor="start" x="316.75" y="-1774.7" font-family="arial" font-size="14.00">13</text>
<polygon fill="none" stroke="black" points="0,-1744 0,-1768 241,-1768 241,-1744 0,-1744"/>
<text text-anchor="start" x="78.12" y="-1750.7" font-family="arial" font-size="14.00">RS-485 GND</text>
<polygon fill="none" stroke="black" points="241,-1744 241,-1768 409,-1768 409,-1744 241,-1744"/>
<text text-anchor="start" x="316.75" y="-1750.7" font-family="arial" font-size="14.00">14</text>
<polygon fill="none" stroke="black" points="0,-1720 0,-1744 241,-1744 241,-1720 0,-1720"/>
<text text-anchor="start" x="79.62" y="-1726.7" font-family="arial" font-size="14.00">RS-232A TX</text>
<polygon fill="none" stroke="black" points="241,-1720 241,-1744 409,-1744 409,-1720 241,-1720"/>
<text text-anchor="start" x="316.75" y="-1726.7" font-family="arial" font-size="14.00">15</text>
<polygon fill="none" stroke="black" points="0,-1696 0,-1720 241,-1720 241,-1696 0,-1696"/>
<text text-anchor="start" x="78.88" y="-1702.7" font-family="arial" font-size="14.00">RS-232A RX</text>
<polygon fill="none" stroke="black" points="241,-1696 241,-1720 409,-1720 409,-1696 241,-1696"/>
<text text-anchor="start" x="316.75" y="-1702.7" font-family="arial" font-size="14.00">16</text>
<polygon fill="none" stroke="black" points="0,-1672 0,-1696 241,-1696 241,-1672 0,-1672"/>
<text text-anchor="start" x="104.75" y="-1678.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="241,-1672 241,-1696 409,-1696 409,-1672 241,-1672"/>
<text text-anchor="start" x="316.75" y="-1678.7" font-family="arial" font-size="14.00">17</text>
<polygon fill="none" stroke="black" points="0,-1648 0,-1672 241,-1672 241,-1648 0,-1648"/>
<text text-anchor="start" x="79.62" y="-1654.7" font-family="arial" font-size="14.00">RS-232B TX</text>
<polygon fill="none" stroke="black" points="241,-1648 241,-1672 409,-1672 409,-1648 241,-1648"/>
<text text-anchor="start" x="316.75" y="-1654.7" font-family="arial" font-size="14.00">18</text>
<polygon fill="none" stroke="black" points="0,-1624 0,-1648 241,-1648 241,-1624 0,-1624"/>
<text text-anchor="start" x="78.88" y="-1630.7" font-family="arial" font-size="14.00">RS-232B RX</text>
<polygon fill="none" stroke="black" points="241,-1624 241,-1648 409,-1648 409,-1624 241,-1624"/>
<text text-anchor="start" x="316.75" y="-1630.7" font-family="arial" font-size="14.00">19</text>
<polygon fill="none" stroke="black" points="0,-1600 0,-1624 241,-1624 241,-1600 0,-1600"/>
<text text-anchor="start" x="92.75" y="-1606.7" font-family="arial" font-size="14.00">I2C SCL</text>
<polygon fill="none" stroke="black" points="241,-1600 241,-1624 409,-1624 409,-1600 241,-1600"/>
<text text-anchor="start" x="316.75" y="-1606.7" font-family="arial" font-size="14.00">20</text>
<polygon fill="none" stroke="black" points="0,-1576 0,-1600 241,-1600 241,-1576 0,-1576"/>
<text text-anchor="start" x="92" y="-1582.7" font-family="arial" font-size="14.00">I2C SDA</text>
<polygon fill="none" stroke="black" points="241,-1576 241,-1600 409,-1600 409,-1576 241,-1576"/>
<text text-anchor="start" x="316.75" y="-1582.7" font-family="arial" font-size="14.00">21</text>
<polygon fill="none" stroke="black" points="0,-1552 0,-1576 241,-1576 241,-1552 0,-1552"/>
<text text-anchor="start" x="93.88" y="-1558.7" font-family="arial" font-size="14.00">3.3V out</text>
<polygon fill="none" stroke="black" points="241,-1552 241,-1576 409,-1576 409,-1552 241,-1552"/>
<text text-anchor="start" x="316.75" y="-1558.7" font-family="arial" font-size="14.00">22</text>
<polygon fill="none" stroke="black" points="0,-1528 0,-1552 241,-1552 241,-1528 0,-1528"/>
<text text-anchor="start" x="104.75" y="-1534.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="241,-1528 241,-1552 409,-1552 409,-1528 241,-1528"/>
<text text-anchor="start" x="316.75" y="-1534.7" font-family="arial" font-size="14.00">23</text>
<polygon fill="none" stroke="black" points="0,-1504 0,-1528 241,-1528 241,-1504 0,-1504"/>
<text text-anchor="start" x="99.88" y="-1510.7" font-family="arial" font-size="14.00">5V out</text>
<polygon fill="none" stroke="black" points="241,-1504 241,-1528 409,-1528 409,-1504 241,-1504"/>
<text text-anchor="start" x="316.75" y="-1510.7" font-family="arial" font-size="14.00">24</text>
<polygon fill="none" stroke="black" points="0,-1480 0,-1504 241,-1504 241,-1480 0,-1480"/>
<text text-anchor="start" x="104.75" y="-1486.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="241,-1480 241,-1504 409,-1504 409,-1480 241,-1480"/>
<text text-anchor="start" x="316.75" y="-1486.7" font-family="arial" font-size="14.00">25</text>
<polygon fill="none" stroke="black" points="0,-1456 0,-1480 241,-1480 241,-1456 0,-1456"/>
<text text-anchor="start" x="90.88" y="-1462.7" font-family="arial" font-size="14.00">ATX(0) N</text>
<polygon fill="none" stroke="black" points="241,-1456 241,-1480 409,-1480 409,-1456 241,-1456"/>
<text text-anchor="start" x="316.75" y="-1462.7" font-family="arial" font-size="14.00">26</text>
<polygon fill="none" stroke="black" points="0,-1432 0,-1456 241,-1456 241,-1432 0,-1432"/>
<text text-anchor="start" x="90.88" y="-1438.7" font-family="arial" font-size="14.00">ATX(0) P</text>
<polygon fill="none" stroke="black" points="241,-1432 241,-1456 409,-1456 409,-1432 241,-1432"/>
<text text-anchor="start" x="316.75" y="-1438.7" font-family="arial" font-size="14.00">27</text>
<polygon fill="none" stroke="black" points="0,-1408 0,-1432 241,-1432 241,-1408 0,-1408"/>
<text text-anchor="start" x="90.12" y="-1414.7" font-family="arial" font-size="14.00">ARX(0) P</text>
<polygon fill="none" stroke="black" points="241,-1408 241,-1432 409,-1432 409,-1408 241,-1408"/>
<text text-anchor="start" x="316.75" y="-1414.7" font-family="arial" font-size="14.00">28</text>
<polygon fill="none" stroke="black" points="0,-1384 0,-1408 241,-1408 241,-1384 0,-1384"/>
<text text-anchor="start" x="90.12" y="-1390.7" font-family="arial" font-size="14.00">ARX(0) N</text>
<polygon fill="none" stroke="black" points="241,-1384 241,-1408 409,-1408 409,-1384 241,-1384"/>
<text text-anchor="start" x="316.75" y="-1390.7" font-family="arial" font-size="14.00">29</text>
<polygon fill="none" stroke="black" points="0,-1360 0,-1384 241,-1384 241,-1360 0,-1360"/>
<text text-anchor="start" x="94.62" y="-1366.7" font-family="arial" font-size="14.00">ECAP 0</text>
<polygon fill="none" stroke="black" points="241,-1360 241,-1384 409,-1384 409,-1360 241,-1360"/>
<text text-anchor="start" x="316.75" y="-1366.7" font-family="arial" font-size="14.00">30</text>
<polygon fill="none" stroke="black" points="0,-1336 0,-1360 241,-1360 241,-1336 0,-1336"/>
<text text-anchor="start" x="94.62" y="-1342.7" font-family="arial" font-size="14.00">ECAP 1</text>
<polygon fill="none" stroke="black" points="241,-1336 241,-1360 409,-1360 409,-1336 241,-1336"/>
<text text-anchor="start" x="316.75" y="-1342.7" font-family="arial" font-size="14.00">31</text>
<polygon fill="none" stroke="black" points="0,-1312 0,-1336 241,-1336 241,-1312 0,-1312"/>
<text text-anchor="start" x="94.62" y="-1318.7" font-family="arial" font-size="14.00">ECAP 2</text>
<polygon fill="none" stroke="black" points="241,-1312 241,-1336 409,-1336 409,-1312 241,-1312"/>
<text text-anchor="start" x="316.75" y="-1318.7" font-family="arial" font-size="14.00">32</text>
<polygon fill="none" stroke="black" points="0,-1288 0,-1312 241,-1312 241,-1288 0,-1288"/>
<text text-anchor="start" x="94.62" y="-1294.7" font-family="arial" font-size="14.00">ECAP 3</text>
<polygon fill="none" stroke="black" points="241,-1288 241,-1312 409,-1312 409,-1288 241,-1288"/>
<text text-anchor="start" x="316.75" y="-1294.7" font-family="arial" font-size="14.00">33</text>
<polygon fill="none" stroke="black" points="0,-1264 0,-1288 241,-1288 241,-1264 0,-1264"/>
<text text-anchor="start" x="96.88" y="-1270.7" font-family="arial" font-size="14.00">PWM 0</text>
<polygon fill="none" stroke="black" points="241,-1264 241,-1288 409,-1288 409,-1264 241,-1264"/>
<text text-anchor="start" x="316.75" y="-1270.7" font-family="arial" font-size="14.00">34</text>
<polygon fill="none" stroke="black" points="0,-1240 0,-1264 241,-1264 241,-1240 0,-1240"/>
<text text-anchor="start" x="96.88" y="-1246.7" font-family="arial" font-size="14.00">PWM 1</text>
<polygon fill="none" stroke="black" points="241,-1240 241,-1264 409,-1264 409,-1240 241,-1240"/>
<text text-anchor="start" x="316.75" y="-1246.7" font-family="arial" font-size="14.00">35</text>
<polygon fill="none" stroke="black" points="0,-1216 0,-1240 241,-1240 241,-1216 0,-1216"/>
<text text-anchor="start" x="96.88" y="-1222.7" font-family="arial" font-size="14.00">PWM 2</text>
<polygon fill="none" stroke="black" points="241,-1216 241,-1240 409,-1240 409,-1216 241,-1216"/>
<text text-anchor="start" x="316.75" y="-1222.7" font-family="arial" font-size="14.00">36</text>
<polygon fill="none" stroke="black" points="0,-1192 0,-1216 241,-1216 241,-1192 0,-1192"/>
<text text-anchor="start" x="96.88" y="-1198.7" font-family="arial" font-size="14.00">PWM 3</text>
<polygon fill="none" stroke="black" points="241,-1192 241,-1216 409,-1216 409,-1192 241,-1192"/>
<text text-anchor="start" x="316.75" y="-1198.7" font-family="arial" font-size="14.00">37</text>
<polygon fill="none" stroke="black" points="0,-1168 0,-1192 241,-1192 241,-1168 0,-1168"/>
<text text-anchor="start" x="96.88" y="-1174.7" font-family="arial" font-size="14.00">PWM 4</text>
<polygon fill="none" stroke="black" points="241,-1168 241,-1192 409,-1192 409,-1168 241,-1168"/>
<text text-anchor="start" x="316.75" y="-1174.7" font-family="arial" font-size="14.00">38</text>
<polygon fill="none" stroke="black" points="0,-1144 0,-1168 241,-1168 241,-1144 0,-1144"/>
<text text-anchor="start" x="96.88" y="-1150.7" font-family="arial" font-size="14.00">PWM 5</text>
<polygon fill="none" stroke="black" points="241,-1144 241,-1168 409,-1168 409,-1144 241,-1144"/>
<text text-anchor="start" x="316.75" y="-1150.7" font-family="arial" font-size="14.00">39</text>
<polygon fill="none" stroke="black" points="0,-1120 0,-1144 241,-1144 241,-1120 0,-1120"/>
<text text-anchor="start" x="96.88" y="-1126.7" font-family="arial" font-size="14.00">PWM 6</text>
<polygon fill="none" stroke="black" points="241,-1120 241,-1144 409,-1144 409,-1120 241,-1120"/>
<text text-anchor="start" x="316.75" y="-1126.7" font-family="arial" font-size="14.00">40</text>
<polygon fill="none" stroke="black" points="0,-1096 0,-1120 241,-1120 241,-1096 0,-1096"/>
<text text-anchor="start" x="96.88" y="-1102.7" font-family="arial" font-size="14.00">PWM 7</text>
<polygon fill="none" stroke="black" points="241,-1096 241,-1120 409,-1120 409,-1096 241,-1096"/>
<text text-anchor="start" x="316.75" y="-1102.7" font-family="arial" font-size="14.00">41</text>
<polygon fill="none" stroke="black" points="0,-1072 0,-1096 241,-1096 241,-1072 0,-1072"/>
<text text-anchor="start" x="104.75" y="-1078.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="241,-1072 241,-1096 409,-1096 409,-1072 241,-1072"/>
<text text-anchor="start" x="316.75" y="-1078.7" font-family="arial" font-size="14.00">42</text>
<polygon fill="none" stroke="black" points="0,-1048 0,-1072 241,-1072 241,-1048 0,-1048"/>
<text text-anchor="start" x="94.62" y="-1054.7" font-family="arial" font-size="14.00">A0 3.3V</text>
<polygon fill="none" stroke="black" points="241,-1048 241,-1072 409,-1072 409,-1048 241,-1048"/>
<text text-anchor="start" x="316.75" y="-1054.7" font-family="arial" font-size="14.00">43</text>
<polygon fill="none" stroke="black" points="0,-1024 0,-1048 241,-1048 241,-1024 0,-1024"/>
<text text-anchor="start" x="94.62" y="-1030.7" font-family="arial" font-size="14.00">A1 3.3V</text>
<polygon fill="none" stroke="black" points="241,-1024 241,-1048 409,-1048 409,-1024 241,-1024"/>
<text text-anchor="start" x="316.75" y="-1030.7" font-family="arial" font-size="14.00">44</text>
<polygon fill="none" stroke="black" points="0,-1000 0,-1024 241,-1024 241,-1000 0,-1000"/>
<text text-anchor="start" x="100.62" y="-1006.7" font-family="arial" font-size="14.00">A2 5V</text>
<polygon fill="none" stroke="black" points="241,-1000 241,-1024 409,-1024 409,-1000 241,-1000"/>
<text text-anchor="start" x="316.75" y="-1006.7" font-family="arial" font-size="14.00">45</text>
<polygon fill="none" stroke="black" points="0,-976 0,-1000 241,-1000 241,-976 0,-976"/>
<text text-anchor="start" x="100.62" y="-982.7" font-family="arial" font-size="14.00">A3 5V</text>
<polygon fill="none" stroke="black" points="241,-976 241,-1000 409,-1000 409,-976 241,-976"/>
<text text-anchor="start" x="316.75" y="-982.7" font-family="arial" font-size="14.00">46</text>
<polygon fill="none" stroke="black" points="0,-952 0,-976 241,-976 241,-952 0,-952"/>
<text text-anchor="start" x="96.5" y="-958.7" font-family="arial" font-size="14.00">A4 12V</text>
<polygon fill="none" stroke="black" points="241,-952 241,-976 409,-976 409,-952 241,-952"/>
<text text-anchor="start" x="316.75" y="-958.7" font-family="arial" font-size="14.00">47</text>
<polygon fill="none" stroke="black" points="0,-928 0,-952 241,-952 241,-928 0,-928"/>
<text text-anchor="start" x="96.5" y="-934.7" font-family="arial" font-size="14.00">A5 12V</text>
<polygon fill="none" stroke="black" points="241,-928 241,-952 409,-952 409,-928 241,-928"/>
<text text-anchor="start" x="316.75" y="-934.7" font-family="arial" font-size="14.00">48</text>
<polygon fill="none" stroke="black" points="0,-904 0,-928 241,-928 241,-904 0,-904"/>
<text text-anchor="start" x="96.5" y="-910.7" font-family="arial" font-size="14.00">A6 36V</text>
<polygon fill="none" stroke="black" points="241,-904 241,-928 409,-928 409,-904 241,-904"/>
<text text-anchor="start" x="316.75" y="-910.7" font-family="arial" font-size="14.00">49</text>
<polygon fill="none" stroke="black" points="0,-880 0,-904 241,-904 241,-880 0,-880"/>
<text text-anchor="start" x="96.5" y="-886.7" font-family="arial" font-size="14.00">A7 36V</text>
<polygon fill="none" stroke="black" points="241,-880 241,-904 409,-904 409,-880 241,-880"/>
<text text-anchor="start" x="316.75" y="-886.7" font-family="arial" font-size="14.00">50</text>
<polygon fill="none" stroke="black" points="0,-856 0,-880 241,-880 241,-856 0,-856"/>
<text text-anchor="start" x="104.75" y="-862.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="241,-856 241,-880 409,-880 409,-856 241,-856"/>
<text text-anchor="start" x="316.75" y="-862.7" font-family="arial" font-size="14.00">51</text>
<polygon fill="none" stroke="black" points="0,-832 0,-856 241,-856 241,-832 0,-832"/>
<text text-anchor="start" x="90.12" y="-838.7" font-family="arial" font-size="14.00">ARX(0) P</text>
<polygon fill="none" stroke="black" points="241,-832 241,-856 409,-856 409,-832 241,-832"/>
<text text-anchor="start" x="316.75" y="-838.7" font-family="arial" font-size="14.00">52</text>
<polygon fill="none" stroke="black" points="0,-808 0,-832 241,-832 241,-808 0,-808"/>
<text text-anchor="start" x="90.12" y="-814.7" font-family="arial" font-size="14.00">ARX(0) N</text>
<polygon fill="none" stroke="black" points="241,-808 241,-832 409,-832 409,-808 241,-808"/>
<text text-anchor="start" x="316.75" y="-814.7" font-family="arial" font-size="14.00">53</text>
<polygon fill="none" stroke="black" points="0,-784 0,-808 241,-808 241,-784 0,-784"/>
<text text-anchor="start" x="90.12" y="-790.7" font-family="arial" font-size="14.00">ARX(1) P</text>
<polygon fill="none" stroke="black" points="241,-784 241,-808 409,-808 409,-784 241,-784"/>
<text text-anchor="start" x="316.75" y="-790.7" font-family="arial" font-size="14.00">54</text>
<polygon fill="none" stroke="black" points="0,-760 0,-784 241,-784 241,-760 0,-760"/>
<text text-anchor="start" x="90.12" y="-766.7" font-family="arial" font-size="14.00">ARX(1) N</text>
<polygon fill="none" stroke="black" points="241,-760 241,-784 409,-784 409,-760 241,-760"/>
<text text-anchor="start" x="316.75" y="-766.7" font-family="arial" font-size="14.00">55</text>
<polygon fill="none" stroke="black" points="0,-736 0,-760 241,-760 241,-736 0,-736"/>
<text text-anchor="start" x="90.12" y="-742.7" font-family="arial" font-size="14.00">ARX(2) P</text>
<polygon fill="none" stroke="black" points="241,-736 241,-760 409,-760 409,-736 241,-736"/>
<text text-anchor="start" x="316.75" y="-742.7" font-family="arial" font-size="14.00">56</text>
<polygon fill="none" stroke="black" points="0,-712 0,-736 241,-736 241,-712 0,-712"/>
<text text-anchor="start" x="90.12" y="-718.7" font-family="arial" font-size="14.00">ARX(2) N</text>
<polygon fill="none" stroke="black" points="241,-712 241,-736 409,-736 409,-712 241,-712"/>
<text text-anchor="start" x="316.75" y="-718.7" font-family="arial" font-size="14.00">57</text>
<polygon fill="none" stroke="black" points="0,-688 0,-712 241,-712 241,-688 0,-688"/>
<text text-anchor="start" x="90.12" y="-694.7" font-family="arial" font-size="14.00">ARX(3) P</text>
<polygon fill="none" stroke="black" points="241,-688 241,-712 409,-712 409,-688 241,-688"/>
<text text-anchor="start" x="316.75" y="-694.7" font-family="arial" font-size="14.00">58</text>
<polygon fill="none" stroke="black" points="0,-664 0,-688 241,-688 241,-664 0,-664"/>
<text text-anchor="start" x="90.12" y="-670.7" font-family="arial" font-size="14.00">ARX(3) N</text>
<polygon fill="none" stroke="black" points="241,-664 241,-688 409,-688 409,-664 241,-664"/>
<text text-anchor="start" x="316.75" y="-670.7" font-family="arial" font-size="14.00">59</text>
<polygon fill="none" stroke="black" points="0,-640 0,-664 241,-664 241,-640 0,-640"/>
<text text-anchor="start" x="96.12" y="-646.7" font-family="arial" font-size="14.00">GPIO 8</text>
<polygon fill="none" stroke="black" points="241,-640 241,-664 409,-664 409,-640 241,-640"/>
<text text-anchor="start" x="316.75" y="-646.7" font-family="arial" font-size="14.00">60</text>
<polygon fill="none" stroke="black" points="0,-616 0,-640 241,-640 241,-616 0,-616"/>
<text text-anchor="start" x="96.12" y="-622.7" font-family="arial" font-size="14.00">GPIO 9</text>
<polygon fill="none" stroke="black" points="241,-616 241,-640 409,-640 409,-616 241,-616"/>
<text text-anchor="start" x="316.75" y="-622.7" font-family="arial" font-size="14.00">61</text>
<polygon fill="none" stroke="black" points="0,-592 0,-616 241,-616 241,-592 0,-592"/>
<text text-anchor="start" x="92" y="-598.7" font-family="arial" font-size="14.00">GPIO 10</text>
<polygon fill="none" stroke="black" points="241,-592 241,-616 409,-616 409,-592 241,-592"/>
<text text-anchor="start" x="316.75" y="-598.7" font-family="arial" font-size="14.00">62</text>
<polygon fill="none" stroke="black" points="0,-568 0,-592 241,-592 241,-568 0,-568"/>
<text text-anchor="start" x="92" y="-574.7" font-family="arial" font-size="14.00">GPIO 11</text>
<polygon fill="none" stroke="black" points="241,-568 241,-592 409,-592 409,-568 241,-568"/>
<text text-anchor="start" x="316.75" y="-574.7" font-family="arial" font-size="14.00">63</text>
<polygon fill="none" stroke="black" points="0,-544 0,-568 241,-568 241,-544 0,-544"/>
<text text-anchor="start" x="92" y="-550.7" font-family="arial" font-size="14.00">GPIO 12</text>
<polygon fill="none" stroke="black" points="241,-544 241,-568 409,-568 409,-544 241,-544"/>
<text text-anchor="start" x="316.75" y="-550.7" font-family="arial" font-size="14.00">64</text>
<polygon fill="none" stroke="black" points="0,-520 0,-544 241,-544 241,-520 0,-520"/>
<text text-anchor="start" x="92" y="-526.7" font-family="arial" font-size="14.00">GPIO 13</text>
<polygon fill="none" stroke="black" points="241,-520 241,-544 409,-544 409,-520 241,-520"/>
<text text-anchor="start" x="316.75" y="-526.7" font-family="arial" font-size="14.00">65</text>
<polygon fill="none" stroke="black" points="0,-496 0,-520 241,-520 241,-496 0,-496"/>
<text text-anchor="start" x="92" y="-502.7" font-family="arial" font-size="14.00">GPIO 14</text>
<polygon fill="none" stroke="black" points="241,-496 241,-520 409,-520 409,-496 241,-496"/>
<text text-anchor="start" x="316.75" y="-502.7" font-family="arial" font-size="14.00">66</text>
<polygon fill="none" stroke="black" points="0,-472 0,-496 241,-496 241,-472 0,-472"/>
<text text-anchor="start" x="92" y="-478.7" font-family="arial" font-size="14.00">GPIO 15</text>
<polygon fill="none" stroke="black" points="241,-472 241,-496 409,-496 409,-472 241,-472"/>
<text text-anchor="start" x="316.75" y="-478.7" font-family="arial" font-size="14.00">67</text>
<polygon fill="none" stroke="black" points="0,-448 0,-472 241,-472 241,-448 0,-448"/>
<text text-anchor="start" x="92" y="-454.7" font-family="arial" font-size="14.00">GPIO 16</text>
<polygon fill="none" stroke="black" points="241,-448 241,-472 409,-472 409,-448 241,-448"/>
<text text-anchor="start" x="316.75" y="-454.7" font-family="arial" font-size="14.00">68</text>
<polyline fill="none" stroke="black" points="409,-49 409,-448 0,-448 0,-49"/>
<image xlink:href="images\CEX_plug.png" width="401px" height="391px" preserveAspectRatio="xMinYMin meet" x="4" y="-444"/>
<polyline fill="none" stroke="black" points="0,-49 0,-24.5 409,-24.5 409,-49"/>
<text text-anchor="start" x="48.12" y="-31.7" font-family="arial" font-size="14.00">Connector HEW.LM.368.XLNP (mounted in CEX)</text>
<polygon fill="none" stroke="black" points="0,0 0,-24.5 409,-24.5 409,0 0,0"/>
<text text-anchor="start" x="162.5" y="-7.2" font-family="arial" font-size="14.00">Veronte CEX</text>
</g>
<!-- W1 -->
<g id="node20" class="node">
<title>W1</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="882.5,-2174 595.5,-2174 595.5,-255 882.5,-255 882.5,-2174"/>
<polygon fill="none" stroke="black" points="595.5,-2149.5 595.5,-2174 882.5,-2174 882.5,-2149.5 595.5,-2149.5"/>
<text text-anchor="start" x="727.75" y="-2156.7" font-family="arial" font-size="14.00">W1</text>
<polygon fill="none" stroke="black" points="595.5,-2125 595.5,-2149.5 663.17,-2149.5 663.17,-2125 595.5,-2125"/>
<text text-anchor="start" x="617.71" y="-2132.2" font-family="arial" font-size="14.00">61x</text>
<polygon fill="none" stroke="black" points="663.17,-2125 663.17,-2149.5 763.08,-2149.5 763.08,-2125 663.17,-2125"/>
<text text-anchor="start" x="685.38" y="-2132.2" font-family="arial" font-size="14.00">22 AWG</text>
<polygon fill="none" stroke="black" points="763.08,-2125 763.08,-2149.5 882.5,-2149.5 882.5,-2125 763.08,-2125"/>
<text text-anchor="start" x="785.29" y="-2132.2" font-family="arial" font-size="14.00">12.0 Inches</text>
<text text-anchor="start" x="694.12" y="-2109.7" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="619.88" y="-2089.7" font-family="arial" font-size="14.00">Veronte CEX:1:Power 1</text>
<text text-anchor="start" x="808.62" y="-2089.7" font-family="arial" font-size="14.00">     WH    </text>
<polygon fill="#000000" stroke="none" points="595.5,-2083 595.5,-2085 882.5,-2085 882.5,-2083 595.5,-2083"/>
<polygon fill="#ffffff" stroke="none" points="595.5,-2081 595.5,-2083 882.5,-2083 882.5,-2081 595.5,-2081"/>
<polygon fill="#ffffff" stroke="none" points="595.5,-2079 595.5,-2081 882.5,-2081 882.5,-2079 595.5,-2079"/>
<polygon fill="#ffffff" stroke="none" points="595.5,-2077 595.5,-2079 882.5,-2079 882.5,-2077 595.5,-2077"/>
<polygon fill="#000000" stroke="none" points="595.5,-2075 595.5,-2077 882.5,-2077 882.5,-2075 595.5,-2075"/>
<text text-anchor="start" x="619.88" y="-2059.7" font-family="arial" font-size="14.00">Veronte CEX:2:Power 2</text>
<text text-anchor="start" x="810.88" y="-2059.7" font-family="arial" font-size="14.00">     BN    </text>
<polygon fill="#000000" stroke="none" points="595.5,-2053 595.5,-2055 882.5,-2055 882.5,-2053 595.5,-2053"/>
<polygon fill="#895956" stroke="none" points="595.5,-2051 595.5,-2053 882.5,-2053 882.5,-2051 595.5,-2051"/>
<polygon fill="#895956" stroke="none" points="595.5,-2049 595.5,-2051 882.5,-2051 882.5,-2049 595.5,-2049"/>
<polygon fill="#895956" stroke="none" points="595.5,-2047 595.5,-2049 882.5,-2049 882.5,-2047 595.5,-2047"/>
<polygon fill="#000000" stroke="none" points="595.5,-2045 595.5,-2047 882.5,-2047 882.5,-2045 595.5,-2045"/>
<text text-anchor="start" x="630.38" y="-2029.7" font-family="arial" font-size="14.00">Veronte CEX:3:GND</text>
<text text-anchor="start" x="810.12" y="-2029.7" font-family="arial" font-size="14.00">     GN    </text>
<polygon fill="#000000" stroke="none" points="595.5,-2023 595.5,-2025 882.5,-2025 882.5,-2023 595.5,-2023"/>
<polygon fill="#00ff00" stroke="none" points="595.5,-2021 595.5,-2023 882.5,-2023 882.5,-2021 595.5,-2021"/>
<polygon fill="#00ff00" stroke="none" points="595.5,-2019 595.5,-2021 882.5,-2021 882.5,-2019 595.5,-2019"/>
<polygon fill="#00ff00" stroke="none" points="595.5,-2017 595.5,-2019 882.5,-2019 882.5,-2017 595.5,-2017"/>
<polygon fill="#000000" stroke="none" points="595.5,-2015 595.5,-2017 882.5,-2017 882.5,-2015 595.5,-2015"/>
<text text-anchor="start" x="630.38" y="-1999.7" font-family="arial" font-size="14.00">Veronte CEX:4:GND</text>
<text text-anchor="start" x="811.25" y="-1999.7" font-family="arial" font-size="14.00">     YE    </text>
<polygon fill="#000000" stroke="none" points="595.5,-1993 595.5,-1995 882.5,-1995 882.5,-1993 595.5,-1993"/>
<polygon fill="#ffff00" stroke="none" points="595.5,-1991 595.5,-1993 882.5,-1993 882.5,-1991 595.5,-1991"/>
<polygon fill="#ffff00" stroke="none" points="595.5,-1989 595.5,-1991 882.5,-1991 882.5,-1989 595.5,-1989"/>
<polygon fill="#ffff00" stroke="none" points="595.5,-1987 595.5,-1989 882.5,-1989 882.5,-1987 595.5,-1987"/>
<polygon fill="#000000" stroke="none" points="595.5,-1985 595.5,-1987 882.5,-1987 882.5,-1985 595.5,-1985"/>
<text text-anchor="start" x="621.75" y="-1969.7" font-family="arial" font-size="14.00">Veronte CEX:5:CanA P</text>
<text text-anchor="start" x="810.5" y="-1969.7" font-family="arial" font-size="14.00">     GY    </text>
<polygon fill="#000000" stroke="none" points="595.5,-1963 595.5,-1965 882.5,-1965 882.5,-1963 595.5,-1963"/>
<polygon fill="#999999" stroke="none" points="595.5,-1961 595.5,-1963 882.5,-1963 882.5,-1961 595.5,-1961"/>
<polygon fill="#999999" stroke="none" points="595.5,-1959 595.5,-1961 882.5,-1961 882.5,-1959 595.5,-1959"/>
<polygon fill="#999999" stroke="none" points="595.5,-1957 595.5,-1959 882.5,-1959 882.5,-1957 595.5,-1957"/>
<polygon fill="#000000" stroke="none" points="595.5,-1955 595.5,-1957 882.5,-1957 882.5,-1955 595.5,-1955"/>
<text text-anchor="start" x="621.75" y="-1939.7" font-family="arial" font-size="14.00">Veronte CEX:6:CanA N</text>
<text text-anchor="start" x="810.88" y="-1939.7" font-family="arial" font-size="14.00">     PK    </text>
<polygon fill="#000000" stroke="none" points="595.5,-1933 595.5,-1935 882.5,-1935 882.5,-1933 595.5,-1933"/>
<polygon fill="#ff66cc" stroke="none" points="595.5,-1931 595.5,-1933 882.5,-1933 882.5,-1931 595.5,-1931"/>
<polygon fill="#ff66cc" stroke="none" points="595.5,-1929 595.5,-1931 882.5,-1931 882.5,-1929 595.5,-1929"/>
<polygon fill="#ff66cc" stroke="none" points="595.5,-1927 595.5,-1929 882.5,-1929 882.5,-1927 595.5,-1927"/>
<polygon fill="#000000" stroke="none" points="595.5,-1925 595.5,-1927 882.5,-1927 882.5,-1925 595.5,-1925"/>
<text text-anchor="start" x="597.38" y="-1909.7" font-family="arial" font-size="14.00">Veronte CEX:10:Out RS-485 P</text>
<text text-anchor="start" x="811.25" y="-1909.7" font-family="arial" font-size="14.00">     VT    </text>
<polygon fill="#000000" stroke="none" points="595.5,-1903 595.5,-1905 882.5,-1905 882.5,-1903 595.5,-1903"/>
<polygon fill="#8000ff" stroke="none" points="595.5,-1901 595.5,-1903 882.5,-1903 882.5,-1901 595.5,-1901"/>
<polygon fill="#8000ff" stroke="none" points="595.5,-1899 595.5,-1901 882.5,-1901 882.5,-1899 595.5,-1899"/>
<polygon fill="#8000ff" stroke="none" points="595.5,-1897 595.5,-1899 882.5,-1899 882.5,-1897 595.5,-1897"/>
<polygon fill="#000000" stroke="none" points="595.5,-1895 595.5,-1897 882.5,-1897 882.5,-1895 595.5,-1895"/>
<text text-anchor="start" x="597.38" y="-1879.7" font-family="arial" font-size="14.00">Veronte CEX:11:Out RS-485 N</text>
<text text-anchor="start" x="800.75" y="-1879.7" font-family="arial" font-size="14.00">     PKGY    </text>
<polygon fill="#000000" stroke="none" points="595.5,-1873 595.5,-1875 882.5,-1875 882.5,-1873 595.5,-1873"/>
<polygon fill="#ff66cc" stroke="none" points="595.5,-1871 595.5,-1873 882.5,-1873 882.5,-1871 595.5,-1871"/>
<polygon fill="#999999" stroke="none" points="595.5,-1869 595.5,-1871 882.5,-1871 882.5,-1869 595.5,-1869"/>
<polygon fill="#ff66cc" stroke="none" points="595.5,-1867 595.5,-1869 882.5,-1869 882.5,-1867 595.5,-1867"/>
<polygon fill="#000000" stroke="none" points="595.5,-1865 595.5,-1867 882.5,-1867 882.5,-1865 595.5,-1865"/>
<text text-anchor="start" x="601.5" y="-1849.7" font-family="arial" font-size="14.00">Veronte CEX:12:IN RS-485 N</text>
<text text-anchor="start" x="800.38" y="-1849.7" font-family="arial" font-size="14.00">     BURD    </text>
<polygon fill="#000000" stroke="none" points="595.5,-1843 595.5,-1845 882.5,-1845 882.5,-1843 595.5,-1843"/>
<polygon fill="#0066ff" stroke="none" points="595.5,-1841 595.5,-1843 882.5,-1843 882.5,-1841 595.5,-1841"/>
<polygon fill="#ff0000" stroke="none" points="595.5,-1839 595.5,-1841 882.5,-1841 882.5,-1839 595.5,-1839"/>
<polygon fill="#0066ff" stroke="none" points="595.5,-1837 595.5,-1839 882.5,-1839 882.5,-1837 595.5,-1837"/>
<polygon fill="#000000" stroke="none" points="595.5,-1835 595.5,-1837 882.5,-1837 882.5,-1835 595.5,-1835"/>
<text text-anchor="start" x="601.5" y="-1819.7" font-family="arial" font-size="14.00">Veronte CEX:13:IN RS-485 P</text>
<text text-anchor="start" x="798.12" y="-1819.7" font-family="arial" font-size="14.00">     GNWH    </text>
<polygon fill="#000000" stroke="none" points="595.5,-1813 595.5,-1815 882.5,-1815 882.5,-1813 595.5,-1813"/>
<polygon fill="#00ff00" stroke="none" points="595.5,-1811 595.5,-1813 882.5,-1813 882.5,-1811 595.5,-1811"/>
<polygon fill="#ffffff" stroke="none" points="595.5,-1809 595.5,-1811 882.5,-1811 882.5,-1809 595.5,-1809"/>
<polygon fill="#00ff00" stroke="none" points="595.5,-1807 595.5,-1809 882.5,-1809 882.5,-1807 595.5,-1807"/>
<polygon fill="#000000" stroke="none" points="595.5,-1805 595.5,-1807 882.5,-1807 882.5,-1805 595.5,-1805"/>
<text text-anchor="start" x="599.62" y="-1789.7" font-family="arial" font-size="14.00">Veronte CEX:14:RS-485 GND</text>
<text text-anchor="start" x="800.38" y="-1789.7" font-family="arial" font-size="14.00">     GNBN    </text>
<polygon fill="#000000" stroke="none" points="595.5,-1783 595.5,-1785 882.5,-1785 882.5,-1783 595.5,-1783"/>
<polygon fill="#00ff00" stroke="none" points="595.5,-1781 595.5,-1783 882.5,-1783 882.5,-1781 595.5,-1781"/>
<polygon fill="#895956" stroke="none" points="595.5,-1779 595.5,-1781 882.5,-1781 882.5,-1779 595.5,-1779"/>
<polygon fill="#00ff00" stroke="none" points="595.5,-1777 595.5,-1779 882.5,-1779 882.5,-1777 595.5,-1777"/>
<polygon fill="#000000" stroke="none" points="595.5,-1775 595.5,-1777 882.5,-1777 882.5,-1775 595.5,-1775"/>
<text text-anchor="start" x="626.25" y="-1759.7" font-family="arial" font-size="14.00">Veronte CEX:17:GND</text>
<text text-anchor="start" x="798.5" y="-1759.7" font-family="arial" font-size="14.00">     GYWH    </text>
<polygon fill="#000000" stroke="none" points="595.5,-1753 595.5,-1755 882.5,-1755 882.5,-1753 595.5,-1753"/>
<polygon fill="#999999" stroke="none" points="595.5,-1751 595.5,-1753 882.5,-1753 882.5,-1751 595.5,-1751"/>
<polygon fill="#ffffff" stroke="none" points="595.5,-1749 595.5,-1751 882.5,-1751 882.5,-1749 595.5,-1749"/>
<polygon fill="#999999" stroke="none" points="595.5,-1747 595.5,-1749 882.5,-1749 882.5,-1747 595.5,-1747"/>
<polygon fill="#000000" stroke="none" points="595.5,-1745 595.5,-1747 882.5,-1747 882.5,-1745 595.5,-1745"/>
<text text-anchor="start" x="614.25" y="-1729.7" font-family="arial" font-size="14.00">Veronte CEX:20:I2C SCL</text>
<text text-anchor="start" x="800.75" y="-1729.7" font-family="arial" font-size="14.00">     BNGY    </text>
<polygon fill="#000000" stroke="none" points="595.5,-1723 595.5,-1725 882.5,-1725 882.5,-1723 595.5,-1723"/>
<polygon fill="#895956" stroke="none" points="595.5,-1721 595.5,-1723 882.5,-1723 882.5,-1721 595.5,-1721"/>
<polygon fill="#999999" stroke="none" points="595.5,-1719 595.5,-1721 882.5,-1721 882.5,-1719 595.5,-1719"/>
<polygon fill="#895956" stroke="none" points="595.5,-1717 595.5,-1719 882.5,-1719 882.5,-1717 595.5,-1717"/>
<polygon fill="#000000" stroke="none" points="595.5,-1715 595.5,-1717 882.5,-1717 882.5,-1715 595.5,-1715"/>
<text text-anchor="start" x="613.5" y="-1699.7" font-family="arial" font-size="14.00">Veronte CEX:21:I2C SDA</text>
<text text-anchor="start" x="798.88" y="-1699.7" font-family="arial" font-size="14.00">     PKWH    </text>
<polygon fill="#000000" stroke="none" points="595.5,-1693 595.5,-1695 882.5,-1695 882.5,-1693 595.5,-1693"/>
<polygon fill="#ff66cc" stroke="none" points="595.5,-1691 595.5,-1693 882.5,-1693 882.5,-1691 595.5,-1691"/>
<polygon fill="#ffffff" stroke="none" points="595.5,-1689 595.5,-1691 882.5,-1691 882.5,-1689 595.5,-1689"/>
<polygon fill="#ff66cc" stroke="none" points="595.5,-1687 595.5,-1689 882.5,-1689 882.5,-1687 595.5,-1687"/>
<polygon fill="#000000" stroke="none" points="595.5,-1685 595.5,-1687 882.5,-1687 882.5,-1685 595.5,-1685"/>
<text text-anchor="start" x="615.38" y="-1669.7" font-family="arial" font-size="14.00">Veronte CEX:22:3.3V out</text>
<text text-anchor="start" x="801.12" y="-1669.7" font-family="arial" font-size="14.00">     BUBN    </text>
<polygon fill="#000000" stroke="none" points="595.5,-1663 595.5,-1665 882.5,-1665 882.5,-1663 595.5,-1663"/>
<polygon fill="#0066ff" stroke="none" points="595.5,-1661 595.5,-1663 882.5,-1663 882.5,-1661 595.5,-1661"/>
<polygon fill="#895956" stroke="none" points="595.5,-1659 595.5,-1661 882.5,-1661 882.5,-1659 595.5,-1659"/>
<polygon fill="#0066ff" stroke="none" points="595.5,-1657 595.5,-1659 882.5,-1659 882.5,-1657 595.5,-1657"/>
<polygon fill="#000000" stroke="none" points="595.5,-1655 595.5,-1657 882.5,-1657 882.5,-1655 595.5,-1655"/>
<text text-anchor="start" x="626.25" y="-1639.7" font-family="arial" font-size="14.00">Veronte CEX:23:GND</text>
<text text-anchor="start" x="798.12" y="-1639.7" font-family="arial" font-size="14.00">     RDWH    </text>
<polygon fill="#000000" stroke="none" points="595.5,-1633 595.5,-1635 882.5,-1635 882.5,-1633 595.5,-1633"/>
<polygon fill="#ff0000" stroke="none" points="595.5,-1631 595.5,-1633 882.5,-1633 882.5,-1631 595.5,-1631"/>
<polygon fill="#ffffff" stroke="none" points="595.5,-1629 595.5,-1631 882.5,-1631 882.5,-1629 595.5,-1629"/>
<polygon fill="#ff0000" stroke="none" points="595.5,-1627 595.5,-1629 882.5,-1629 882.5,-1627 595.5,-1627"/>
<polygon fill="#000000" stroke="none" points="595.5,-1625 595.5,-1627 882.5,-1627 882.5,-1625 595.5,-1625"/>
<text text-anchor="start" x="621.38" y="-1609.7" font-family="arial" font-size="14.00">Veronte CEX:24:5V out</text>
<text text-anchor="start" x="800.38" y="-1609.7" font-family="arial" font-size="14.00">     RDBN    </text>
<polygon fill="#000000" stroke="none" points="595.5,-1603 595.5,-1605 882.5,-1605 882.5,-1603 595.5,-1603"/>
<polygon fill="#ff0000" stroke="none" points="595.5,-1601 595.5,-1603 882.5,-1603 882.5,-1601 595.5,-1601"/>
<polygon fill="#895956" stroke="none" points="595.5,-1599 595.5,-1601 882.5,-1601 882.5,-1599 595.5,-1599"/>
<polygon fill="#ff0000" stroke="none" points="595.5,-1597 595.5,-1599 882.5,-1599 882.5,-1597 595.5,-1597"/>
<polygon fill="#000000" stroke="none" points="595.5,-1595 595.5,-1597 882.5,-1597 882.5,-1595 595.5,-1595"/>
<text text-anchor="start" x="626.25" y="-1579.7" font-family="arial" font-size="14.00">Veronte CEX:25:GND</text>
<text text-anchor="start" x="798.88" y="-1579.7" font-family="arial" font-size="14.00">     BKWH    </text>
<polygon fill="#000000" stroke="none" points="595.5,-1573 595.5,-1575 882.5,-1575 882.5,-1573 595.5,-1573"/>
<polygon fill="#000000" stroke="none" points="595.5,-1571 595.5,-1573 882.5,-1573 882.5,-1571 595.5,-1571"/>
<polygon fill="#ffffff" stroke="none" points="595.5,-1569 595.5,-1571 882.5,-1571 882.5,-1569 595.5,-1569"/>
<polygon fill="#000000" stroke="none" points="595.5,-1567 595.5,-1569 882.5,-1569 882.5,-1567 595.5,-1567"/>
<polygon fill="#000000" stroke="none" points="595.5,-1565 595.5,-1567 882.5,-1567 882.5,-1565 595.5,-1565"/>
<text text-anchor="start" x="612.38" y="-1549.7" font-family="arial" font-size="14.00">Veronte CEX:26:ATX(0) N</text>
<text text-anchor="start" x="801.12" y="-1549.7" font-family="arial" font-size="14.00">     BKBN    </text>
<polygon fill="#000000" stroke="none" points="595.5,-1543 595.5,-1545 882.5,-1545 882.5,-1543 595.5,-1543"/>
<polygon fill="#000000" stroke="none" points="595.5,-1541 595.5,-1543 882.5,-1543 882.5,-1541 595.5,-1541"/>
<polygon fill="#895956" stroke="none" points="595.5,-1539 595.5,-1541 882.5,-1541 882.5,-1539 595.5,-1539"/>
<polygon fill="#000000" stroke="none" points="595.5,-1537 595.5,-1539 882.5,-1539 882.5,-1537 595.5,-1537"/>
<polygon fill="#000000" stroke="none" points="595.5,-1535 595.5,-1537 882.5,-1537 882.5,-1535 595.5,-1535"/>
<text text-anchor="start" x="612.38" y="-1519.7" font-family="arial" font-size="14.00">Veronte CEX:27:ATX(0) P</text>
<text text-anchor="start" x="800" y="-1519.7" font-family="arial" font-size="14.00">     GNGY    </text>
<polygon fill="#000000" stroke="none" points="595.5,-1513 595.5,-1515 882.5,-1515 882.5,-1513 595.5,-1513"/>
<polygon fill="#00ff00" stroke="none" points="595.5,-1511 595.5,-1513 882.5,-1513 882.5,-1511 595.5,-1511"/>
<polygon fill="#999999" stroke="none" points="595.5,-1509 595.5,-1511 882.5,-1511 882.5,-1509 595.5,-1509"/>
<polygon fill="#00ff00" stroke="none" points="595.5,-1507 595.5,-1509 882.5,-1509 882.5,-1507 595.5,-1507"/>
<polygon fill="#000000" stroke="none" points="595.5,-1505 595.5,-1507 882.5,-1507 882.5,-1505 595.5,-1505"/>
<text text-anchor="start" x="611.62" y="-1489.7" font-family="arial" font-size="14.00">Veronte CEX:28:ARX(0) P</text>
<text text-anchor="start" x="800.75" y="-1489.7" font-family="arial" font-size="14.00">     GNYE    </text>
<polygon fill="#000000" stroke="none" points="595.5,-1483 595.5,-1485 882.5,-1485 882.5,-1483 595.5,-1483"/>
<polygon fill="#00ff00" stroke="none" points="595.5,-1481 595.5,-1483 882.5,-1483 882.5,-1481 595.5,-1481"/>
<polygon fill="#ffff00" stroke="none" points="595.5,-1479 595.5,-1481 882.5,-1481 882.5,-1479 595.5,-1479"/>
<polygon fill="#00ff00" stroke="none" points="595.5,-1477 595.5,-1479 882.5,-1479 882.5,-1477 595.5,-1477"/>
<polygon fill="#000000" stroke="none" points="595.5,-1475 595.5,-1477 882.5,-1477 882.5,-1475 595.5,-1475"/>
<text text-anchor="start" x="611.62" y="-1459.7" font-family="arial" font-size="14.00">Veronte CEX:29:ARX(0) N</text>
<text text-anchor="start" x="800.38" y="-1459.7" font-family="arial" font-size="14.00">     GNPK    </text>
<polygon fill="#000000" stroke="none" points="595.5,-1453 595.5,-1455 882.5,-1455 882.5,-1453 595.5,-1453"/>
<polygon fill="#00ff00" stroke="none" points="595.5,-1451 595.5,-1453 882.5,-1453 882.5,-1451 595.5,-1451"/>
<polygon fill="#ff66cc" stroke="none" points="595.5,-1449 595.5,-1451 882.5,-1451 882.5,-1449 595.5,-1449"/>
<polygon fill="#00ff00" stroke="none" points="595.5,-1447 595.5,-1449 882.5,-1449 882.5,-1447 595.5,-1447"/>
<polygon fill="#000000" stroke="none" points="595.5,-1445 595.5,-1447 882.5,-1447 882.5,-1445 595.5,-1445"/>
<text text-anchor="start" x="616.12" y="-1429.7" font-family="arial" font-size="14.00">Veronte CEX:30:ECAP 0</text>
<text text-anchor="start" x="801.5" y="-1429.7" font-family="arial" font-size="14.00">     PKYE    </text>
<polygon fill="#000000" stroke="none" points="595.5,-1423 595.5,-1425 882.5,-1425 882.5,-1423 595.5,-1423"/>
<polygon fill="#ff66cc" stroke="none" points="595.5,-1421 595.5,-1423 882.5,-1423 882.5,-1421 595.5,-1421"/>
<polygon fill="#ffff00" stroke="none" points="595.5,-1419 595.5,-1421 882.5,-1421 882.5,-1419 595.5,-1419"/>
<polygon fill="#ff66cc" stroke="none" points="595.5,-1417 595.5,-1419 882.5,-1419 882.5,-1417 595.5,-1417"/>
<polygon fill="#000000" stroke="none" points="595.5,-1415 595.5,-1417 882.5,-1417 882.5,-1415 595.5,-1415"/>
<text text-anchor="start" x="616.12" y="-1399.7" font-family="arial" font-size="14.00">Veronte CEX:31:ECAP 1</text>
<text text-anchor="start" x="808.62" y="-1399.7" font-family="arial" font-size="14.00">     WH    </text>
<polygon fill="#000000" stroke="none" points="595.5,-1393 595.5,-1395 882.5,-1395 882.5,-1393 595.5,-1393"/>
<polygon fill="#ffffff" stroke="none" points="595.5,-1391 595.5,-1393 882.5,-1393 882.5,-1391 595.5,-1391"/>
<polygon fill="#ffffff" stroke="none" points="595.5,-1389 595.5,-1391 882.5,-1391 882.5,-1389 595.5,-1389"/>
<polygon fill="#ffffff" stroke="none" points="595.5,-1387 595.5,-1389 882.5,-1389 882.5,-1387 595.5,-1387"/>
<polygon fill="#000000" stroke="none" points="595.5,-1385 595.5,-1387 882.5,-1387 882.5,-1385 595.5,-1385"/>
<text text-anchor="start" x="616.12" y="-1369.7" font-family="arial" font-size="14.00">Veronte CEX:32:ECAP 2</text>
<text text-anchor="start" x="810.88" y="-1369.7" font-family="arial" font-size="14.00">     BN    </text>
<polygon fill="#000000" stroke="none" points="595.5,-1363 595.5,-1365 882.5,-1365 882.5,-1363 595.5,-1363"/>
<polygon fill="#895956" stroke="none" points="595.5,-1361 595.5,-1363 882.5,-1363 882.5,-1361 595.5,-1361"/>
<polygon fill="#895956" stroke="none" points="595.5,-1359 595.5,-1361 882.5,-1361 882.5,-1359 595.5,-1359"/>
<polygon fill="#895956" stroke="none" points="595.5,-1357 595.5,-1359 882.5,-1359 882.5,-1357 595.5,-1357"/>
<polygon fill="#000000" stroke="none" points="595.5,-1355 595.5,-1357 882.5,-1357 882.5,-1355 595.5,-1355"/>
<text text-anchor="start" x="616.12" y="-1339.7" font-family="arial" font-size="14.00">Veronte CEX:33:ECAP 3</text>
<text text-anchor="start" x="810.12" y="-1339.7" font-family="arial" font-size="14.00">     GN    </text>
<polygon fill="#000000" stroke="none" points="595.5,-1333 595.5,-1335 882.5,-1335 882.5,-1333 595.5,-1333"/>
<polygon fill="#00ff00" stroke="none" points="595.5,-1331 595.5,-1333 882.5,-1333 882.5,-1331 595.5,-1331"/>
<polygon fill="#00ff00" stroke="none" points="595.5,-1329 595.5,-1331 882.5,-1331 882.5,-1329 595.5,-1329"/>
<polygon fill="#00ff00" stroke="none" points="595.5,-1327 595.5,-1329 882.5,-1329 882.5,-1327 595.5,-1327"/>
<polygon fill="#000000" stroke="none" points="595.5,-1325 595.5,-1327 882.5,-1327 882.5,-1325 595.5,-1325"/>
<text text-anchor="start" x="618.38" y="-1309.7" font-family="arial" font-size="14.00">Veronte CEX:34:PWM 0</text>
<text text-anchor="start" x="811.25" y="-1309.7" font-family="arial" font-size="14.00">     YE    </text>
<polygon fill="#000000" stroke="none" points="595.5,-1303 595.5,-1305 882.5,-1305 882.5,-1303 595.5,-1303"/>
<polygon fill="#ffff00" stroke="none" points="595.5,-1301 595.5,-1303 882.5,-1303 882.5,-1301 595.5,-1301"/>
<polygon fill="#ffff00" stroke="none" points="595.5,-1299 595.5,-1301 882.5,-1301 882.5,-1299 595.5,-1299"/>
<polygon fill="#ffff00" stroke="none" points="595.5,-1297 595.5,-1299 882.5,-1299 882.5,-1297 595.5,-1297"/>
<polygon fill="#000000" stroke="none" points="595.5,-1295 595.5,-1297 882.5,-1297 882.5,-1295 595.5,-1295"/>
<text text-anchor="start" x="618.38" y="-1279.7" font-family="arial" font-size="14.00">Veronte CEX:35:PWM 1</text>
<text text-anchor="start" x="810.5" y="-1279.7" font-family="arial" font-size="14.00">     GY    </text>
<polygon fill="#000000" stroke="none" points="595.5,-1273 595.5,-1275 882.5,-1275 882.5,-1273 595.5,-1273"/>
<polygon fill="#999999" stroke="none" points="595.5,-1271 595.5,-1273 882.5,-1273 882.5,-1271 595.5,-1271"/>
<polygon fill="#999999" stroke="none" points="595.5,-1269 595.5,-1271 882.5,-1271 882.5,-1269 595.5,-1269"/>
<polygon fill="#999999" stroke="none" points="595.5,-1267 595.5,-1269 882.5,-1269 882.5,-1267 595.5,-1267"/>
<polygon fill="#000000" stroke="none" points="595.5,-1265 595.5,-1267 882.5,-1267 882.5,-1265 595.5,-1265"/>
<text text-anchor="start" x="618.38" y="-1249.7" font-family="arial" font-size="14.00">Veronte CEX:36:PWM 2</text>
<text text-anchor="start" x="810.88" y="-1249.7" font-family="arial" font-size="14.00">     PK    </text>
<polygon fill="#000000" stroke="none" points="595.5,-1243 595.5,-1245 882.5,-1245 882.5,-1243 595.5,-1243"/>
<polygon fill="#ff66cc" stroke="none" points="595.5,-1241 595.5,-1243 882.5,-1243 882.5,-1241 595.5,-1241"/>
<polygon fill="#ff66cc" stroke="none" points="595.5,-1239 595.5,-1241 882.5,-1241 882.5,-1239 595.5,-1239"/>
<polygon fill="#ff66cc" stroke="none" points="595.5,-1237 595.5,-1239 882.5,-1239 882.5,-1237 595.5,-1237"/>
<polygon fill="#000000" stroke="none" points="595.5,-1235 595.5,-1237 882.5,-1237 882.5,-1235 595.5,-1235"/>
<text text-anchor="start" x="618.38" y="-1219.7" font-family="arial" font-size="14.00">Veronte CEX:37:PWM 3</text>
<text text-anchor="start" x="810.88" y="-1219.7" font-family="arial" font-size="14.00">     BU    </text>
<polygon fill="#000000" stroke="none" points="595.5,-1213 595.5,-1215 882.5,-1215 882.5,-1213 595.5,-1213"/>
<polygon fill="#0066ff" stroke="none" points="595.5,-1211 595.5,-1213 882.5,-1213 882.5,-1211 595.5,-1211"/>
<polygon fill="#0066ff" stroke="none" points="595.5,-1209 595.5,-1211 882.5,-1211 882.5,-1209 595.5,-1209"/>
<polygon fill="#0066ff" stroke="none" points="595.5,-1207 595.5,-1209 882.5,-1209 882.5,-1207 595.5,-1207"/>
<polygon fill="#000000" stroke="none" points="595.5,-1205 595.5,-1207 882.5,-1207 882.5,-1205 595.5,-1205"/>
<text text-anchor="start" x="618.38" y="-1189.7" font-family="arial" font-size="14.00">Veronte CEX:38:PWM 4</text>
<text text-anchor="start" x="810.12" y="-1189.7" font-family="arial" font-size="14.00">     RD    </text>
<polygon fill="#000000" stroke="none" points="595.5,-1183 595.5,-1185 882.5,-1185 882.5,-1183 595.5,-1183"/>
<polygon fill="#ff0000" stroke="none" points="595.5,-1181 595.5,-1183 882.5,-1183 882.5,-1181 595.5,-1181"/>
<polygon fill="#ff0000" stroke="none" points="595.5,-1179 595.5,-1181 882.5,-1181 882.5,-1179 595.5,-1179"/>
<polygon fill="#ff0000" stroke="none" points="595.5,-1177 595.5,-1179 882.5,-1179 882.5,-1177 595.5,-1177"/>
<polygon fill="#000000" stroke="none" points="595.5,-1175 595.5,-1177 882.5,-1177 882.5,-1175 595.5,-1175"/>
<text text-anchor="start" x="618.38" y="-1159.7" font-family="arial" font-size="14.00">Veronte CEX:39:PWM 5</text>
<text text-anchor="start" x="810.88" y="-1159.7" font-family="arial" font-size="14.00">     BK    </text>
<polygon fill="#000000" stroke="none" points="595.5,-1153 595.5,-1155 882.5,-1155 882.5,-1153 595.5,-1153"/>
<polygon fill="#000000" stroke="none" points="595.5,-1151 595.5,-1153 882.5,-1153 882.5,-1151 595.5,-1151"/>
<polygon fill="#000000" stroke="none" points="595.5,-1149 595.5,-1151 882.5,-1151 882.5,-1149 595.5,-1149"/>
<polygon fill="#000000" stroke="none" points="595.5,-1147 595.5,-1149 882.5,-1149 882.5,-1147 595.5,-1147"/>
<polygon fill="#000000" stroke="none" points="595.5,-1145 595.5,-1147 882.5,-1147 882.5,-1145 595.5,-1145"/>
<text text-anchor="start" x="618.38" y="-1129.7" font-family="arial" font-size="14.00">Veronte CEX:40:PWM 6</text>
<text text-anchor="start" x="810.88" y="-1129.7" font-family="arial" font-size="14.00">     PK    </text>
<polygon fill="#000000" stroke="none" points="595.5,-1123 595.5,-1125 882.5,-1125 882.5,-1123 595.5,-1123"/>
<polygon fill="#ff66cc" stroke="none" points="595.5,-1121 595.5,-1123 882.5,-1123 882.5,-1121 595.5,-1121"/>
<polygon fill="#ff66cc" stroke="none" points="595.5,-1119 595.5,-1121 882.5,-1121 882.5,-1119 595.5,-1119"/>
<polygon fill="#ff66cc" stroke="none" points="595.5,-1117 595.5,-1119 882.5,-1119 882.5,-1117 595.5,-1117"/>
<polygon fill="#000000" stroke="none" points="595.5,-1115 595.5,-1117 882.5,-1117 882.5,-1115 595.5,-1115"/>
<text text-anchor="start" x="618.38" y="-1099.7" font-family="arial" font-size="14.00">Veronte CEX:41:PWM 7</text>
<text text-anchor="start" x="800.75" y="-1099.7" font-family="arial" font-size="14.00">     PKGY    </text>
<polygon fill="#000000" stroke="none" points="595.5,-1093 595.5,-1095 882.5,-1095 882.5,-1093 595.5,-1093"/>
<polygon fill="#ff66cc" stroke="none" points="595.5,-1091 595.5,-1093 882.5,-1093 882.5,-1091 595.5,-1091"/>
<polygon fill="#999999" stroke="none" points="595.5,-1089 595.5,-1091 882.5,-1091 882.5,-1089 595.5,-1089"/>
<polygon fill="#ff66cc" stroke="none" points="595.5,-1087 595.5,-1089 882.5,-1089 882.5,-1087 595.5,-1087"/>
<polygon fill="#000000" stroke="none" points="595.5,-1085 595.5,-1087 882.5,-1087 882.5,-1085 595.5,-1085"/>
<text text-anchor="start" x="626.25" y="-1069.7" font-family="arial" font-size="14.00">Veronte CEX:42:GND</text>
<text text-anchor="start" x="800.38" y="-1069.7" font-family="arial" font-size="14.00">     BURD    </text>
<polygon fill="#000000" stroke="none" points="595.5,-1063 595.5,-1065 882.5,-1065 882.5,-1063 595.5,-1063"/>
<polygon fill="#0066ff" stroke="none" points="595.5,-1061 595.5,-1063 882.5,-1063 882.5,-1061 595.5,-1061"/>
<polygon fill="#ff0000" stroke="none" points="595.5,-1059 595.5,-1061 882.5,-1061 882.5,-1059 595.5,-1059"/>
<polygon fill="#0066ff" stroke="none" points="595.5,-1057 595.5,-1059 882.5,-1059 882.5,-1057 595.5,-1057"/>
<polygon fill="#000000" stroke="none" points="595.5,-1055 595.5,-1057 882.5,-1057 882.5,-1055 595.5,-1055"/>
<text text-anchor="start" x="616.12" y="-1039.7" font-family="arial" font-size="14.00">Veronte CEX:43:A0 3.3V</text>
<text text-anchor="start" x="798.12" y="-1039.7" font-family="arial" font-size="14.00">     GNWH    </text>
<polygon fill="#000000" stroke="none" points="595.5,-1033 595.5,-1035 882.5,-1035 882.5,-1033 595.5,-1033"/>
<polygon fill="#00ff00" stroke="none" points="595.5,-1031 595.5,-1033 882.5,-1033 882.5,-1031 595.5,-1031"/>
<polygon fill="#ffffff" stroke="none" points="595.5,-1029 595.5,-1031 882.5,-1031 882.5,-1029 595.5,-1029"/>
<polygon fill="#00ff00" stroke="none" points="595.5,-1027 595.5,-1029 882.5,-1029 882.5,-1027 595.5,-1027"/>
<polygon fill="#000000" stroke="none" points="595.5,-1025 595.5,-1027 882.5,-1027 882.5,-1025 595.5,-1025"/>
<text text-anchor="start" x="616.12" y="-1009.7" font-family="arial" font-size="14.00">Veronte CEX:44:A1 3.3V</text>
<text text-anchor="start" x="800.38" y="-1009.7" font-family="arial" font-size="14.00">     GNBN    </text>
<polygon fill="#000000" stroke="none" points="595.5,-1003 595.5,-1005 882.5,-1005 882.5,-1003 595.5,-1003"/>
<polygon fill="#00ff00" stroke="none" points="595.5,-1001 595.5,-1003 882.5,-1003 882.5,-1001 595.5,-1001"/>
<polygon fill="#895956" stroke="none" points="595.5,-999 595.5,-1001 882.5,-1001 882.5,-999 595.5,-999"/>
<polygon fill="#00ff00" stroke="none" points="595.5,-997 595.5,-999 882.5,-999 882.5,-997 595.5,-997"/>
<polygon fill="#000000" stroke="none" points="595.5,-995 595.5,-997 882.5,-997 882.5,-995 595.5,-995"/>
<text text-anchor="start" x="622.12" y="-979.7" font-family="arial" font-size="14.00">Veronte CEX:45:A2 5V</text>
<text text-anchor="start" x="799.25" y="-979.7" font-family="arial" font-size="14.00">     YEWH    </text>
<polygon fill="#000000" stroke="none" points="595.5,-973 595.5,-975 882.5,-975 882.5,-973 595.5,-973"/>
<polygon fill="#ffff00" stroke="none" points="595.5,-971 595.5,-973 882.5,-973 882.5,-971 595.5,-971"/>
<polygon fill="#ffffff" stroke="none" points="595.5,-969 595.5,-971 882.5,-971 882.5,-969 595.5,-969"/>
<polygon fill="#ffff00" stroke="none" points="595.5,-967 595.5,-969 882.5,-969 882.5,-967 595.5,-967"/>
<polygon fill="#000000" stroke="none" points="595.5,-965 595.5,-967 882.5,-967 882.5,-965 595.5,-965"/>
<text text-anchor="start" x="622.12" y="-949.7" font-family="arial" font-size="14.00">Veronte CEX:46:A3 5V</text>
<text text-anchor="start" x="801.5" y="-949.7" font-family="arial" font-size="14.00">     BNYE    </text>
<polygon fill="#000000" stroke="none" points="595.5,-943 595.5,-945 882.5,-945 882.5,-943 595.5,-943"/>
<polygon fill="#895956" stroke="none" points="595.5,-941 595.5,-943 882.5,-943 882.5,-941 595.5,-941"/>
<polygon fill="#ffff00" stroke="none" points="595.5,-939 595.5,-941 882.5,-941 882.5,-939 595.5,-939"/>
<polygon fill="#895956" stroke="none" points="595.5,-937 595.5,-939 882.5,-939 882.5,-937 595.5,-937"/>
<polygon fill="#000000" stroke="none" points="595.5,-935 595.5,-937 882.5,-937 882.5,-935 595.5,-935"/>
<text text-anchor="start" x="618" y="-919.7" font-family="arial" font-size="14.00">Veronte CEX:47:A4 12V</text>
<text text-anchor="start" x="798.5" y="-919.7" font-family="arial" font-size="14.00">     GYWH    </text>
<polygon fill="#000000" stroke="none" points="595.5,-913 595.5,-915 882.5,-915 882.5,-913 595.5,-913"/>
<polygon fill="#999999" stroke="none" points="595.5,-911 595.5,-913 882.5,-913 882.5,-911 595.5,-911"/>
<polygon fill="#ffffff" stroke="none" points="595.5,-909 595.5,-911 882.5,-911 882.5,-909 595.5,-909"/>
<polygon fill="#999999" stroke="none" points="595.5,-907 595.5,-909 882.5,-909 882.5,-907 595.5,-907"/>
<polygon fill="#000000" stroke="none" points="595.5,-905 595.5,-907 882.5,-907 882.5,-905 595.5,-905"/>
<text text-anchor="start" x="618" y="-889.7" font-family="arial" font-size="14.00">Veronte CEX:48:A5 12V</text>
<text text-anchor="start" x="800.75" y="-889.7" font-family="arial" font-size="14.00">     BNGY    </text>
<polygon fill="#000000" stroke="none" points="595.5,-883 595.5,-885 882.5,-885 882.5,-883 595.5,-883"/>
<polygon fill="#895956" stroke="none" points="595.5,-881 595.5,-883 882.5,-883 882.5,-881 595.5,-881"/>
<polygon fill="#999999" stroke="none" points="595.5,-879 595.5,-881 882.5,-881 882.5,-879 595.5,-879"/>
<polygon fill="#895956" stroke="none" points="595.5,-877 595.5,-879 882.5,-879 882.5,-877 595.5,-877"/>
<polygon fill="#000000" stroke="none" points="595.5,-875 595.5,-877 882.5,-877 882.5,-875 595.5,-875"/>
<text text-anchor="start" x="618" y="-859.7" font-family="arial" font-size="14.00">Veronte CEX:49:A6 36V</text>
<text text-anchor="start" x="798.88" y="-859.7" font-family="arial" font-size="14.00">     PKWH    </text>
<polygon fill="#000000" stroke="none" points="595.5,-853 595.5,-855 882.5,-855 882.5,-853 595.5,-853"/>
<polygon fill="#ff66cc" stroke="none" points="595.5,-851 595.5,-853 882.5,-853 882.5,-851 595.5,-851"/>
<polygon fill="#ffffff" stroke="none" points="595.5,-849 595.5,-851 882.5,-851 882.5,-849 595.5,-849"/>
<polygon fill="#ff66cc" stroke="none" points="595.5,-847 595.5,-849 882.5,-849 882.5,-847 595.5,-847"/>
<polygon fill="#000000" stroke="none" points="595.5,-845 595.5,-847 882.5,-847 882.5,-845 595.5,-845"/>
<text text-anchor="start" x="618" y="-829.7" font-family="arial" font-size="14.00">Veronte CEX:50:A7 36V</text>
<text text-anchor="start" x="801.12" y="-829.7" font-family="arial" font-size="14.00">     BNPK    </text>
<polygon fill="#000000" stroke="none" points="595.5,-823 595.5,-825 882.5,-825 882.5,-823 595.5,-823"/>
<polygon fill="#895956" stroke="none" points="595.5,-821 595.5,-823 882.5,-823 882.5,-821 595.5,-821"/>
<polygon fill="#ff66cc" stroke="none" points="595.5,-819 595.5,-821 882.5,-821 882.5,-819 595.5,-819"/>
<polygon fill="#895956" stroke="none" points="595.5,-817 595.5,-819 882.5,-819 882.5,-817 595.5,-817"/>
<polygon fill="#000000" stroke="none" points="595.5,-815 595.5,-817 882.5,-817 882.5,-815 595.5,-815"/>
<text text-anchor="start" x="626.25" y="-799.7" font-family="arial" font-size="14.00">Veronte CEX:51:GND</text>
<text text-anchor="start" x="798.88" y="-799.7" font-family="arial" font-size="14.00">     BUWH    </text>
<polygon fill="#000000" stroke="none" points="595.5,-793 595.5,-795 882.5,-795 882.5,-793 595.5,-793"/>
<polygon fill="#0066ff" stroke="none" points="595.5,-791 595.5,-793 882.5,-793 882.5,-791 595.5,-791"/>
<polygon fill="#ffffff" stroke="none" points="595.5,-789 595.5,-791 882.5,-791 882.5,-789 595.5,-789"/>
<polygon fill="#0066ff" stroke="none" points="595.5,-787 595.5,-789 882.5,-789 882.5,-787 595.5,-787"/>
<polygon fill="#000000" stroke="none" points="595.5,-785 595.5,-787 882.5,-787 882.5,-785 595.5,-785"/>
<text text-anchor="start" x="611.62" y="-769.7" font-family="arial" font-size="14.00">Veronte CEX:52:ARX(0) P</text>
<text text-anchor="start" x="801.12" y="-769.7" font-family="arial" font-size="14.00">     BUBN    </text>
<polygon fill="#000000" stroke="none" points="595.5,-763 595.5,-765 882.5,-765 882.5,-763 595.5,-763"/>
<polygon fill="#0066ff" stroke="none" points="595.5,-761 595.5,-763 882.5,-763 882.5,-761 595.5,-761"/>
<polygon fill="#895956" stroke="none" points="595.5,-759 595.5,-761 882.5,-761 882.5,-759 595.5,-759"/>
<polygon fill="#0066ff" stroke="none" points="595.5,-757 595.5,-759 882.5,-759 882.5,-757 595.5,-757"/>
<polygon fill="#000000" stroke="none" points="595.5,-755 595.5,-757 882.5,-757 882.5,-755 595.5,-755"/>
<text text-anchor="start" x="611.62" y="-739.7" font-family="arial" font-size="14.00">Veronte CEX:53:ARX(0) N</text>
<text text-anchor="start" x="798.12" y="-739.7" font-family="arial" font-size="14.00">     RDWH    </text>
<polygon fill="#000000" stroke="none" points="595.5,-733 595.5,-735 882.5,-735 882.5,-733 595.5,-733"/>
<polygon fill="#ff0000" stroke="none" points="595.5,-731 595.5,-733 882.5,-733 882.5,-731 595.5,-731"/>
<polygon fill="#ffffff" stroke="none" points="595.5,-729 595.5,-731 882.5,-731 882.5,-729 595.5,-729"/>
<polygon fill="#ff0000" stroke="none" points="595.5,-727 595.5,-729 882.5,-729 882.5,-727 595.5,-727"/>
<polygon fill="#000000" stroke="none" points="595.5,-725 595.5,-727 882.5,-727 882.5,-725 595.5,-725"/>
<text text-anchor="start" x="611.62" y="-709.7" font-family="arial" font-size="14.00">Veronte CEX:54:ARX(1) P</text>
<text text-anchor="start" x="800.38" y="-709.7" font-family="arial" font-size="14.00">     RDBN    </text>
<polygon fill="#000000" stroke="none" points="595.5,-703 595.5,-705 882.5,-705 882.5,-703 595.5,-703"/>
<polygon fill="#ff0000" stroke="none" points="595.5,-701 595.5,-703 882.5,-703 882.5,-701 595.5,-701"/>
<polygon fill="#895956" stroke="none" points="595.5,-699 595.5,-701 882.5,-701 882.5,-699 595.5,-699"/>
<polygon fill="#ff0000" stroke="none" points="595.5,-697 595.5,-699 882.5,-699 882.5,-697 595.5,-697"/>
<polygon fill="#000000" stroke="none" points="595.5,-695 595.5,-697 882.5,-697 882.5,-695 595.5,-695"/>
<text text-anchor="start" x="611.62" y="-679.7" font-family="arial" font-size="14.00">Veronte CEX:55:ARX(1) N</text>
<text text-anchor="start" x="798.88" y="-679.7" font-family="arial" font-size="14.00">     BKWH    </text>
<polygon fill="#000000" stroke="none" points="595.5,-673 595.5,-675 882.5,-675 882.5,-673 595.5,-673"/>
<polygon fill="#000000" stroke="none" points="595.5,-671 595.5,-673 882.5,-673 882.5,-671 595.5,-671"/>
<polygon fill="#ffffff" stroke="none" points="595.5,-669 595.5,-671 882.5,-671 882.5,-669 595.5,-669"/>
<polygon fill="#000000" stroke="none" points="595.5,-667 595.5,-669 882.5,-669 882.5,-667 595.5,-667"/>
<polygon fill="#000000" stroke="none" points="595.5,-665 595.5,-667 882.5,-667 882.5,-665 595.5,-665"/>
<text text-anchor="start" x="611.62" y="-649.7" font-family="arial" font-size="14.00">Veronte CEX:56:ARX(2) P</text>
<text text-anchor="start" x="801.12" y="-649.7" font-family="arial" font-size="14.00">     BKBN    </text>
<polygon fill="#000000" stroke="none" points="595.5,-643 595.5,-645 882.5,-645 882.5,-643 595.5,-643"/>
<polygon fill="#000000" stroke="none" points="595.5,-641 595.5,-643 882.5,-643 882.5,-641 595.5,-641"/>
<polygon fill="#895956" stroke="none" points="595.5,-639 595.5,-641 882.5,-641 882.5,-639 595.5,-639"/>
<polygon fill="#000000" stroke="none" points="595.5,-637 595.5,-639 882.5,-639 882.5,-637 595.5,-637"/>
<polygon fill="#000000" stroke="none" points="595.5,-635 595.5,-637 882.5,-637 882.5,-635 595.5,-635"/>
<text text-anchor="start" x="611.62" y="-619.7" font-family="arial" font-size="14.00">Veronte CEX:57:ARX(2) N</text>
<text text-anchor="start" x="800" y="-619.7" font-family="arial" font-size="14.00">     GNGY    </text>
<polygon fill="#000000" stroke="none" points="595.5,-613 595.5,-615 882.5,-615 882.5,-613 595.5,-613"/>
<polygon fill="#00ff00" stroke="none" points="595.5,-611 595.5,-613 882.5,-613 882.5,-611 595.5,-611"/>
<polygon fill="#999999" stroke="none" points="595.5,-609 595.5,-611 882.5,-611 882.5,-609 595.5,-609"/>
<polygon fill="#00ff00" stroke="none" points="595.5,-607 595.5,-609 882.5,-609 882.5,-607 595.5,-607"/>
<polygon fill="#000000" stroke="none" points="595.5,-605 595.5,-607 882.5,-607 882.5,-605 595.5,-605"/>
<text text-anchor="start" x="611.62" y="-589.7" font-family="arial" font-size="14.00">Veronte CEX:58:ARX(3) P</text>
<text text-anchor="start" x="800.75" y="-589.7" font-family="arial" font-size="14.00">     GNYE    </text>
<polygon fill="#000000" stroke="none" points="595.5,-583 595.5,-585 882.5,-585 882.5,-583 595.5,-583"/>
<polygon fill="#00ff00" stroke="none" points="595.5,-581 595.5,-583 882.5,-583 882.5,-581 595.5,-581"/>
<polygon fill="#ffff00" stroke="none" points="595.5,-579 595.5,-581 882.5,-581 882.5,-579 595.5,-579"/>
<polygon fill="#00ff00" stroke="none" points="595.5,-577 595.5,-579 882.5,-579 882.5,-577 595.5,-577"/>
<polygon fill="#000000" stroke="none" points="595.5,-575 595.5,-577 882.5,-577 882.5,-575 595.5,-575"/>
<text text-anchor="start" x="611.62" y="-559.7" font-family="arial" font-size="14.00">Veronte CEX:59:ARX(3) N</text>
<text text-anchor="start" x="800.38" y="-559.7" font-family="arial" font-size="14.00">     GNPK    </text>
<polygon fill="#000000" stroke="none" points="595.5,-553 595.5,-555 882.5,-555 882.5,-553 595.5,-553"/>
<polygon fill="#00ff00" stroke="none" points="595.5,-551 595.5,-553 882.5,-553 882.5,-551 595.5,-551"/>
<polygon fill="#ff66cc" stroke="none" points="595.5,-549 595.5,-551 882.5,-551 882.5,-549 595.5,-549"/>
<polygon fill="#00ff00" stroke="none" points="595.5,-547 595.5,-549 882.5,-549 882.5,-547 595.5,-547"/>
<polygon fill="#000000" stroke="none" points="595.5,-545 595.5,-547 882.5,-547 882.5,-545 595.5,-545"/>
<text text-anchor="start" x="617.62" y="-529.7" font-family="arial" font-size="14.00">Veronte CEX:60:GPIO 8</text>
<text text-anchor="start" x="801.5" y="-529.7" font-family="arial" font-size="14.00">     PKYE    </text>
<polygon fill="#000000" stroke="none" points="595.5,-523 595.5,-525 882.5,-525 882.5,-523 595.5,-523"/>
<polygon fill="#ff66cc" stroke="none" points="595.5,-521 595.5,-523 882.5,-523 882.5,-521 595.5,-521"/>
<polygon fill="#ffff00" stroke="none" points="595.5,-519 595.5,-521 882.5,-521 882.5,-519 595.5,-519"/>
<polygon fill="#ff66cc" stroke="none" points="595.5,-517 595.5,-519 882.5,-519 882.5,-517 595.5,-517"/>
<polygon fill="#000000" stroke="none" points="595.5,-515 595.5,-517 882.5,-517 882.5,-515 595.5,-515"/>
<text text-anchor="start" x="617.62" y="-499.7" font-family="arial" font-size="14.00">Veronte CEX:61:GPIO 9</text>
<text text-anchor="start" x="808.62" y="-499.7" font-family="arial" font-size="14.00">     WH    </text>
<polygon fill="#000000" stroke="none" points="595.5,-493 595.5,-495 882.5,-495 882.5,-493 595.5,-493"/>
<polygon fill="#ffffff" stroke="none" points="595.5,-491 595.5,-493 882.5,-493 882.5,-491 595.5,-491"/>
<polygon fill="#ffffff" stroke="none" points="595.5,-489 595.5,-491 882.5,-491 882.5,-489 595.5,-489"/>
<polygon fill="#ffffff" stroke="none" points="595.5,-487 595.5,-489 882.5,-489 882.5,-487 595.5,-487"/>
<polygon fill="#000000" stroke="none" points="595.5,-485 595.5,-487 882.5,-487 882.5,-485 595.5,-485"/>
<text text-anchor="start" x="613.5" y="-469.7" font-family="arial" font-size="14.00">Veronte CEX:62:GPIO 10</text>
<text text-anchor="start" x="810.88" y="-469.7" font-family="arial" font-size="14.00">     BN    </text>
<polygon fill="#000000" stroke="none" points="595.5,-463 595.5,-465 882.5,-465 882.5,-463 595.5,-463"/>
<polygon fill="#895956" stroke="none" points="595.5,-461 595.5,-463 882.5,-463 882.5,-461 595.5,-461"/>
<polygon fill="#895956" stroke="none" points="595.5,-459 595.5,-461 882.5,-461 882.5,-459 595.5,-459"/>
<polygon fill="#895956" stroke="none" points="595.5,-457 595.5,-459 882.5,-459 882.5,-457 595.5,-457"/>
<polygon fill="#000000" stroke="none" points="595.5,-455 595.5,-457 882.5,-457 882.5,-455 595.5,-455"/>
<text text-anchor="start" x="613.5" y="-439.7" font-family="arial" font-size="14.00">Veronte CEX:63:GPIO 11</text>
<text text-anchor="start" x="810.12" y="-439.7" font-family="arial" font-size="14.00">     GN    </text>
<polygon fill="#000000" stroke="none" points="595.5,-433 595.5,-435 882.5,-435 882.5,-433 595.5,-433"/>
<polygon fill="#00ff00" stroke="none" points="595.5,-431 595.5,-433 882.5,-433 882.5,-431 595.5,-431"/>
<polygon fill="#00ff00" stroke="none" points="595.5,-429 595.5,-431 882.5,-431 882.5,-429 595.5,-429"/>
<polygon fill="#00ff00" stroke="none" points="595.5,-427 595.5,-429 882.5,-429 882.5,-427 595.5,-427"/>
<polygon fill="#000000" stroke="none" points="595.5,-425 595.5,-427 882.5,-427 882.5,-425 595.5,-425"/>
<text text-anchor="start" x="613.5" y="-409.7" font-family="arial" font-size="14.00">Veronte CEX:64:GPIO 12</text>
<text text-anchor="start" x="811.25" y="-409.7" font-family="arial" font-size="14.00">     YE    </text>
<polygon fill="#000000" stroke="none" points="595.5,-403 595.5,-405 882.5,-405 882.5,-403 595.5,-403"/>
<polygon fill="#ffff00" stroke="none" points="595.5,-401 595.5,-403 882.5,-403 882.5,-401 595.5,-401"/>
<polygon fill="#ffff00" stroke="none" points="595.5,-399 595.5,-401 882.5,-401 882.5,-399 595.5,-399"/>
<polygon fill="#ffff00" stroke="none" points="595.5,-397 595.5,-399 882.5,-399 882.5,-397 595.5,-397"/>
<polygon fill="#000000" stroke="none" points="595.5,-395 595.5,-397 882.5,-397 882.5,-395 595.5,-395"/>
<text text-anchor="start" x="613.5" y="-379.7" font-family="arial" font-size="14.00">Veronte CEX:65:GPIO 13</text>
<text text-anchor="start" x="810.5" y="-379.7" font-family="arial" font-size="14.00">     GY    </text>
<polygon fill="#000000" stroke="none" points="595.5,-373 595.5,-375 882.5,-375 882.5,-373 595.5,-373"/>
<polygon fill="#999999" stroke="none" points="595.5,-371 595.5,-373 882.5,-373 882.5,-371 595.5,-371"/>
<polygon fill="#999999" stroke="none" points="595.5,-369 595.5,-371 882.5,-371 882.5,-369 595.5,-369"/>
<polygon fill="#999999" stroke="none" points="595.5,-367 595.5,-369 882.5,-369 882.5,-367 595.5,-367"/>
<polygon fill="#000000" stroke="none" points="595.5,-365 595.5,-367 882.5,-367 882.5,-365 595.5,-365"/>
<text text-anchor="start" x="613.5" y="-349.7" font-family="arial" font-size="14.00">Veronte CEX:66:GPIO 14</text>
<text text-anchor="start" x="810.88" y="-349.7" font-family="arial" font-size="14.00">     PK    </text>
<polygon fill="#000000" stroke="none" points="595.5,-343 595.5,-345 882.5,-345 882.5,-343 595.5,-343"/>
<polygon fill="#ff66cc" stroke="none" points="595.5,-341 595.5,-343 882.5,-343 882.5,-341 595.5,-341"/>
<polygon fill="#ff66cc" stroke="none" points="595.5,-339 595.5,-341 882.5,-341 882.5,-339 595.5,-339"/>
<polygon fill="#ff66cc" stroke="none" points="595.5,-337 595.5,-339 882.5,-339 882.5,-337 595.5,-337"/>
<polygon fill="#000000" stroke="none" points="595.5,-335 595.5,-337 882.5,-337 882.5,-335 595.5,-335"/>
<text text-anchor="start" x="613.5" y="-319.7" font-family="arial" font-size="14.00">Veronte CEX:67:GPIO 15</text>
<text text-anchor="start" x="810.88" y="-319.7" font-family="arial" font-size="14.00">     BU    </text>
<polygon fill="#000000" stroke="none" points="595.5,-313 595.5,-315 882.5,-315 882.5,-313 595.5,-313"/>
<polygon fill="#0066ff" stroke="none" points="595.5,-311 595.5,-313 882.5,-313 882.5,-311 595.5,-311"/>
<polygon fill="#0066ff" stroke="none" points="595.5,-309 595.5,-311 882.5,-311 882.5,-309 595.5,-309"/>
<polygon fill="#0066ff" stroke="none" points="595.5,-307 595.5,-309 882.5,-309 882.5,-307 595.5,-307"/>
<polygon fill="#000000" stroke="none" points="595.5,-305 595.5,-307 882.5,-307 882.5,-305 595.5,-305"/>
<text text-anchor="start" x="613.5" y="-289.7" font-family="arial" font-size="14.00">Veronte CEX:68:GPIO 16</text>
<text text-anchor="start" x="810.12" y="-289.7" font-family="arial" font-size="14.00">     RD    </text>
<polygon fill="#000000" stroke="none" points="595.5,-283 595.5,-285 882.5,-285 882.5,-283 595.5,-283"/>
<polygon fill="#ff0000" stroke="none" points="595.5,-281 595.5,-283 882.5,-283 882.5,-281 595.5,-281"/>
<polygon fill="#ff0000" stroke="none" points="595.5,-279 595.5,-281 882.5,-281 882.5,-279 595.5,-279"/>
<polygon fill="#ff0000" stroke="none" points="595.5,-277 595.5,-279 882.5,-279 882.5,-277 595.5,-277"/>
<polygon fill="#000000" stroke="none" points="595.5,-275 595.5,-277 882.5,-277 882.5,-275 595.5,-275"/>
<text text-anchor="start" x="694.12" y="-259.7" font-family="arial" font-size="14.00"> </text>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge1" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2064C493.65,-2064.56 513.92,-2076.56 594.5,-2076"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-2066C492.64,-2066.28 512.9,-2078.28 594.5,-2078"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-2068C491.62,-2068 511.88,-2080 594.5,-2080"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-2070C490.6,-2069.72 510.86,-2081.72 594.5,-2082"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2072C489.58,-2071.44 509.85,-2083.44 594.5,-2084"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge2" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2040C492.61,-2040.16 513.13,-2046.16 594.5,-2046"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-2042C492.05,-2042.08 512.57,-2048.08 594.5,-2048"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-2044C491.49,-2044 512.01,-2050 594.5,-2050"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-2046C490.93,-2045.92 511.45,-2051.92 594.5,-2052"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2048C490.37,-2047.84 510.89,-2053.84 594.5,-2054"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge3" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1968C489.58,-1968.56 509.85,-1956.56 594.5,-1956"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1970C490.6,-1970.28 510.86,-1958.28 594.5,-1958"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1972C491.62,-1972 511.88,-1960 594.5,-1960"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1974C492.64,-1973.72 512.9,-1961.72 594.5,-1962"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1976C493.65,-1975.44 513.92,-1963.44 594.5,-1964"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge4" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1944C489.14,-1945.04 508.98,-1927.04 594.5,-1926"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1946C490.49,-1946.52 510.32,-1928.52 594.5,-1928"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1948C491.83,-1948 511.67,-1930 594.5,-1930"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1950C493.18,-1949.48 513.01,-1931.48 594.5,-1932"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1952C494.52,-1950.96 514.36,-1932.96 594.5,-1934"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge5" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1848C497.97,-1850.79 513.15,-1898.79 594.5,-1896"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M409,-1850C496.07,-1851.4 511.25,-1899.4 594.5,-1898"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M409,-1852C494.16,-1852 509.34,-1900 594.5,-1900"/>
<path fill="none" stroke="#8000ff" stroke-width="2" d="M409,-1854C492.25,-1852.6 507.43,-1900.6 594.5,-1902"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1856C490.35,-1853.21 505.53,-1901.21 594.5,-1904"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge6" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1824C497.26,-1826.54 513.69,-1868.54 594.5,-1866"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1826C495.39,-1827.27 511.83,-1869.27 594.5,-1868"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1828C493.53,-1828 509.97,-1870 594.5,-1870"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1830C491.67,-1828.73 508.11,-1870.73 594.5,-1872"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1832C489.81,-1829.46 506.24,-1871.46 594.5,-1874"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge7" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1800C496.58,-1802.25 514.11,-1838.25 594.5,-1836"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1802C494.78,-1803.12 512.32,-1839.12 594.5,-1838"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1804C492.98,-1804 510.52,-1840 594.5,-1840"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1806C491.18,-1804.88 508.72,-1840.88 594.5,-1842"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1808C489.39,-1805.75 506.92,-1841.75 594.5,-1844"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge8" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1776C495.92,-1777.9 514.39,-1807.9 594.5,-1806"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1778C494.22,-1778.95 512.69,-1808.95 594.5,-1808"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1780C492.52,-1780 510.98,-1810 594.5,-1810"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1782C490.81,-1781.05 509.28,-1811.05 594.5,-1812"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1784C489.11,-1782.1 507.58,-1812.1 594.5,-1814"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge9" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1752C495.25,-1753.5 514.49,-1777.5 594.5,-1776"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1754C493.69,-1754.75 512.93,-1778.75 594.5,-1778"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1756C492.13,-1756 511.37,-1780 594.5,-1780"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1758C490.57,-1757.25 509.81,-1781.25 594.5,-1782"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1760C489.01,-1758.5 508.25,-1782.5 594.5,-1784"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge10" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1608C508.39,-1612.2 503.1,-1720.2 594.5,-1716"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1610C506.4,-1612.1 501.1,-1720.1 594.5,-1718"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1612C504.4,-1612 499.1,-1720 594.5,-1720"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1614C502.4,-1611.9 497.1,-1719.9 594.5,-1722"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1616C500.4,-1611.8 495.11,-1719.8 594.5,-1724"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge11" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1584C507.08,-1588.1 504.41,-1690.1 594.5,-1686"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1586C505.09,-1588.05 502.41,-1690.05 594.5,-1688"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1588C503.09,-1588 500.41,-1690 594.5,-1690"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1590C501.09,-1587.95 498.41,-1689.95 594.5,-1692"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1592C499.09,-1587.9 496.42,-1689.9 594.5,-1694"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge12" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1560C505.83,-1564.01 505.67,-1660.01 594.5,-1656"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1562C503.83,-1564 503.67,-1660 594.5,-1658"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1564C501.83,-1564 501.67,-1660 594.5,-1660"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1566C499.83,-1564 499.67,-1660 594.5,-1662"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1568C497.83,-1563.99 497.67,-1659.99 594.5,-1664"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge13" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1512C503.5,-1515.79 507.99,-1599.79 594.5,-1596"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1514C501.5,-1515.89 505.99,-1599.89 594.5,-1598"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1516C499.5,-1516 504,-1600 594.5,-1600"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1518C497.51,-1516.11 502,-1600.11 594.5,-1602"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1520C495.51,-1516.21 500,-1600.21 594.5,-1604"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge14" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1464C501.41,-1467.52 510.03,-1539.52 594.5,-1536"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1466C499.42,-1467.76 508.05,-1539.76 594.5,-1538"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1468C497.44,-1468 506.06,-1540 594.5,-1540"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1470C495.45,-1468.24 504.08,-1540.24 594.5,-1542"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1472C493.47,-1468.48 502.09,-1540.48 594.5,-1544"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge15" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1440C500.46,-1443.37 510.94,-1509.37 594.5,-1506"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1442C498.48,-1443.69 508.97,-1509.69 594.5,-1508"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1444C496.51,-1444 506.99,-1510 594.5,-1510"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1446C494.53,-1444.31 505.02,-1510.31 594.5,-1512"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1448C492.56,-1444.63 503.04,-1510.63 594.5,-1514"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge16" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1416C499.57,-1419.2 511.77,-1479.2 594.5,-1476"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1418C497.61,-1419.6 509.81,-1479.6 594.5,-1478"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1420C495.65,-1420 507.85,-1480 594.5,-1480"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1422C493.69,-1420.4 505.89,-1480.4 594.5,-1482"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1424C491.73,-1420.8 503.93,-1480.8 594.5,-1484"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge17" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1392C498.74,-1395.01 512.51,-1449.01 594.5,-1446"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1394C496.8,-1395.51 510.57,-1449.51 594.5,-1448"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1396C494.87,-1396 508.63,-1450 594.5,-1450"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1398C492.93,-1396.49 506.7,-1450.49 594.5,-1452"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1400C490.99,-1396.99 504.76,-1450.99 594.5,-1454"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge18" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1368C497.97,-1370.79 513.15,-1418.79 594.5,-1416"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1370C496.07,-1371.4 511.25,-1419.4 594.5,-1418"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1372C494.16,-1372 509.34,-1420 594.5,-1420"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1374C492.25,-1372.6 507.43,-1420.6 594.5,-1422"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1376C490.35,-1373.21 505.53,-1421.21 594.5,-1424"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge19" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1344C497.26,-1346.54 513.69,-1388.54 594.5,-1386"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1346C495.39,-1347.27 511.83,-1389.27 594.5,-1388"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1348C493.53,-1348 509.97,-1390 594.5,-1390"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1350C491.67,-1348.73 508.11,-1390.73 594.5,-1392"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1352C489.81,-1349.46 506.24,-1391.46 594.5,-1394"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge20" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1320C496.58,-1322.25 514.11,-1358.25 594.5,-1356"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1322C494.78,-1323.12 512.32,-1359.12 594.5,-1358"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1324C492.98,-1324 510.52,-1360 594.5,-1360"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1326C491.18,-1324.88 508.72,-1360.88 594.5,-1362"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1328C489.39,-1325.75 506.92,-1361.75 594.5,-1364"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge21" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1296C495.92,-1297.9 514.39,-1327.9 594.5,-1326"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1298C494.22,-1298.95 512.69,-1328.95 594.5,-1328"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1300C492.52,-1300 510.98,-1330 594.5,-1330"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1302C490.81,-1301.05 509.28,-1331.05 594.5,-1332"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1304C489.11,-1302.1 507.58,-1332.1 594.5,-1334"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge22" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1272C495.25,-1273.5 514.49,-1297.5 594.5,-1296"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1274C493.69,-1274.75 512.93,-1298.75 594.5,-1298"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1276C492.13,-1276 511.37,-1300 594.5,-1300"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1278C490.57,-1277.25 509.81,-1301.25 594.5,-1302"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1280C489.01,-1278.5 508.25,-1302.5 594.5,-1304"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge23" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1248C494.52,-1249.04 514.36,-1267.04 594.5,-1266"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1250C493.18,-1250.52 513.01,-1268.52 594.5,-1268"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1252C491.83,-1252 511.67,-1270 594.5,-1270"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1254C490.49,-1253.48 510.32,-1271.48 594.5,-1272"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1256C489.14,-1254.96 508.98,-1272.96 594.5,-1274"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge24" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1224C493.65,-1224.56 513.92,-1236.56 594.5,-1236"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1226C492.64,-1226.28 512.9,-1238.28 594.5,-1238"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1228C491.62,-1228 511.88,-1240 594.5,-1240"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1230C490.6,-1229.72 510.86,-1241.72 594.5,-1242"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1232C489.58,-1231.44 509.85,-1243.44 594.5,-1244"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge25" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1200C492.61,-1200.16 513.13,-1206.16 594.5,-1206"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1202C492.05,-1202.08 512.57,-1208.08 594.5,-1208"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1204C491.49,-1204 512.01,-1210 594.5,-1210"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1206C490.93,-1205.92 511.45,-1211.92 594.5,-1212"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1208C490.37,-1207.84 510.89,-1213.84 594.5,-1214"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge26" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1176C491.44,-1176 512.06,-1176 594.5,-1176"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1178C491.44,-1178 512.06,-1178 594.5,-1178"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1180C491.44,-1180 512.06,-1180 594.5,-1180"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1182C491.44,-1182 512.06,-1182 594.5,-1182"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1184C491.44,-1184 512.06,-1184 594.5,-1184"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge27" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1152C490.37,-1152.16 510.89,-1146.16 594.5,-1146"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1154C490.93,-1154.08 511.45,-1148.08 594.5,-1148"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1156C491.49,-1156 512.01,-1150 594.5,-1150"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1158C492.05,-1157.92 512.57,-1151.92 594.5,-1152"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1160C492.61,-1159.84 513.13,-1153.84 594.5,-1154"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge28" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1128C489.58,-1128.56 509.85,-1116.56 594.5,-1116"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1130C490.6,-1130.28 510.86,-1118.28 594.5,-1118"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1132C491.62,-1132 511.88,-1120 594.5,-1120"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1134C492.64,-1133.72 512.9,-1121.72 594.5,-1122"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1136C493.65,-1135.44 513.92,-1123.44 594.5,-1124"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge29" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1104C489.14,-1105.04 508.98,-1087.04 594.5,-1086"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1106C490.49,-1106.52 510.32,-1088.52 594.5,-1088"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1108C491.83,-1108 511.67,-1090 594.5,-1090"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1110C493.18,-1109.48 513.01,-1091.48 594.5,-1092"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1112C494.52,-1110.96 514.36,-1092.96 594.5,-1094"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge30" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1056C489.11,-1057.9 507.58,-1027.9 594.5,-1026"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1058C490.81,-1058.95 509.28,-1028.95 594.5,-1028"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1060C492.52,-1060 510.98,-1030 594.5,-1030"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1062C494.22,-1061.05 512.69,-1031.05 594.5,-1032"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1064C495.92,-1062.1 514.39,-1032.1 594.5,-1034"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge31" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1032C489.39,-1034.25 506.92,-998.25 594.5,-996"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1034C491.18,-1035.12 508.72,-999.12 594.5,-998"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1036C492.98,-1036 510.52,-1000 594.5,-1000"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-1038C494.78,-1036.88 512.32,-1000.88 594.5,-1002"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1040C496.58,-1037.75 514.11,-1001.75 594.5,-1004"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge32" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1008C489.81,-1010.54 506.24,-968.54 594.5,-966"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1010C491.67,-1011.27 508.11,-969.27 594.5,-968"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1012C493.53,-1012 509.97,-970 594.5,-970"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1014C495.39,-1012.73 511.83,-970.73 594.5,-972"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1016C497.26,-1013.46 513.69,-971.46 594.5,-974"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge33" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-984C490.35,-986.79 505.53,-938.79 594.5,-936"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-986C492.25,-987.4 507.43,-939.4 594.5,-938"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-988C494.16,-988 509.34,-940 594.5,-940"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-990C496.07,-988.6 511.25,-940.6 594.5,-942"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-992C497.97,-989.21 513.15,-941.21 594.5,-944"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge34" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-960C490.99,-963.01 504.76,-909.01 594.5,-906"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-962C492.93,-963.51 506.7,-909.51 594.5,-908"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-964C494.87,-964 508.63,-910 594.5,-910"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-966C496.8,-964.49 510.57,-910.49 594.5,-912"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-968C498.74,-964.99 512.51,-910.99 594.5,-914"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge35" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-936C491.73,-939.2 503.93,-879.2 594.5,-876"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-938C493.69,-939.6 505.89,-879.6 594.5,-878"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-940C495.65,-940 507.85,-880 594.5,-880"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-942C497.61,-940.4 509.81,-880.4 594.5,-882"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-944C499.57,-940.8 511.77,-880.8 594.5,-884"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge36" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-912C492.56,-915.37 503.04,-849.37 594.5,-846"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-914C494.53,-915.69 505.02,-849.69 594.5,-848"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-916C496.51,-916 506.99,-850 594.5,-850"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-918C498.48,-916.31 508.97,-850.31 594.5,-852"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-920C500.46,-916.63 510.94,-850.63 594.5,-854"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge37" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-888C493.47,-891.52 502.09,-819.52 594.5,-816"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-890C495.45,-891.76 504.08,-819.76 594.5,-818"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-892C497.44,-892 506.06,-820 594.5,-820"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-894C499.42,-892.24 508.05,-820.24 594.5,-822"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-896C501.41,-892.48 510.03,-820.48 594.5,-824"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge38" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-840C495.51,-843.79 500,-759.79 594.5,-756"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-842C497.51,-843.89 502,-759.89 594.5,-758"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-844C499.5,-844 504,-760 594.5,-760"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-846C501.5,-844.11 505.99,-760.11 594.5,-762"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-848C503.5,-844.21 507.99,-760.21 594.5,-764"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge39" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-816C496.64,-819.9 498.87,-729.9 594.5,-726"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-818C498.64,-819.95 500.86,-729.95 594.5,-728"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-820C500.64,-820 502.86,-730 594.5,-730"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-822C502.64,-820.05 504.86,-730.05 594.5,-732"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-824C504.63,-820.1 506.86,-730.1 594.5,-734"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge40" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-792C497.83,-796.01 497.67,-700.01 594.5,-696"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-794C499.83,-796 499.67,-700 594.5,-698"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-796C501.83,-796 501.67,-700 594.5,-700"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-798C503.83,-796 503.67,-700 594.5,-702"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-800C505.83,-795.99 505.67,-699.99 594.5,-704"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge41" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-768C499.09,-772.1 496.42,-670.1 594.5,-666"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-770C501.09,-772.05 498.41,-670.05 594.5,-668"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-772C503.09,-772 500.41,-670 594.5,-670"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-774C505.09,-771.95 502.41,-669.95 594.5,-672"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-776C507.08,-771.9 504.41,-669.9 594.5,-674"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge42" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-744C500.4,-748.2 495.11,-640.2 594.5,-636"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-746C502.4,-748.1 497.1,-640.1 594.5,-638"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-748C504.4,-748 499.1,-640 594.5,-640"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-750C506.4,-747.9 501.1,-639.9 594.5,-642"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-752C508.39,-747.8 503.1,-639.8 594.5,-644"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge43" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-720C501.78,-724.28 493.74,-610.28 594.5,-606"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-722C503.77,-724.14 495.74,-610.14 594.5,-608"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-724C505.77,-724 497.73,-610 594.5,-610"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-726C507.76,-723.86 499.73,-609.86 594.5,-612"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-728C509.76,-723.72 501.72,-609.72 594.5,-614"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge44" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-696C503.21,-700.36 492.33,-580.36 594.5,-576"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-698C505.2,-700.18 494.32,-580.18 594.5,-578"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-700C507.19,-700 496.31,-580 594.5,-580"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-702C509.18,-699.82 498.3,-579.82 594.5,-582"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-704C511.17,-699.64 500.29,-579.64 594.5,-584"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge45" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-672C504.69,-676.44 490.86,-550.44 594.5,-546"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-674C506.68,-676.22 492.85,-550.22 594.5,-548"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-676C508.66,-676 494.84,-550 594.5,-550"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-678C510.65,-675.78 496.82,-549.78 594.5,-552"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-680C512.64,-675.56 498.81,-549.56 594.5,-554"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge46" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-648C506.22,-652.51 489.35,-520.51 594.5,-516"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-650C508.2,-652.25 491.33,-520.25 594.5,-518"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-652C510.19,-652 493.31,-520 594.5,-520"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-654C512.17,-651.75 495.3,-519.75 594.5,-522"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-656C514.15,-651.49 497.28,-519.49 594.5,-524"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge47" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-624C507.8,-628.57 487.79,-490.57 594.5,-486"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-626C509.78,-628.29 489.76,-490.29 594.5,-488"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-628C511.76,-628 491.74,-490 594.5,-490"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-630C513.74,-627.71 493.72,-489.71 594.5,-492"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-632C515.71,-627.43 495.7,-489.43 594.5,-494"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge48" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-600C509.42,-604.64 486.18,-460.64 594.5,-456"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-602C511.4,-604.32 488.16,-460.32 594.5,-458"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-604C513.37,-604 490.13,-460 594.5,-460"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-606C515.34,-603.68 492.1,-459.68 594.5,-462"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-608C517.32,-603.36 494.08,-459.36 594.5,-464"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge49" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-576C511.09,-580.7 484.54,-430.7 594.5,-426"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-578C513.06,-580.35 486.5,-430.35 594.5,-428"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-580C515.03,-580 488.47,-430 594.5,-430"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-582C517,-579.65 490.44,-429.65 594.5,-432"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-584C518.96,-579.3 492.41,-429.3 594.5,-434"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge50" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-552C512.79,-556.75 482.85,-400.75 594.5,-396"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-554C514.76,-556.38 484.81,-400.38 594.5,-398"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-556C516.72,-556 486.78,-400 594.5,-400"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-558C518.69,-555.62 488.74,-399.62 594.5,-402"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-560C520.65,-555.25 490.71,-399.25 594.5,-404"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge51" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-528C514.54,-532.81 481.12,-370.81 594.5,-366"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-530C516.5,-532.4 483.08,-370.4 594.5,-368"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-532C518.46,-532 485.04,-370 594.5,-370"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-534C520.42,-531.6 487,-369.6 594.5,-372"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-536C522.38,-531.19 488.96,-369.19 594.5,-374"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge52" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-504C516.32,-508.86 479.36,-340.86 594.5,-336"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-506C518.28,-508.43 481.32,-340.43 594.5,-338"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-508C520.23,-508 483.27,-340 594.5,-340"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-510C522.18,-507.57 485.22,-339.57 594.5,-342"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-512C524.14,-507.14 487.18,-339.14 594.5,-344"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge53" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-480C518.14,-484.91 477.57,-310.91 594.5,-306"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-482C520.09,-484.45 479.51,-310.45 594.5,-308"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-484C522.04,-484 481.46,-310 594.5,-310"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-486C523.99,-483.55 483.41,-309.55 594.5,-312"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-488C525.93,-483.09 485.36,-309.09 594.5,-314"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge54" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-456C519.99,-460.96 475.74,-280.96 594.5,-276"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-458C521.94,-460.48 477.68,-280.48 594.5,-278"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-460C523.88,-460 479.62,-280 594.5,-280"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-462C525.82,-459.52 481.56,-279.52 594.5,-282"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-464C527.76,-459.04 483.51,-279.04 594.5,-284"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge55" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2016C491.44,-2016 512.06,-2016 594.5,-2016"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-2018C491.44,-2018 512.06,-2018 594.5,-2018"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-2020C491.44,-2020 512.06,-2020 594.5,-2020"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M409,-2022C491.44,-2022 512.06,-2022 594.5,-2022"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2024C491.44,-2024 512.06,-2024 594.5,-2024"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge57" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1992C490.37,-1992.16 510.89,-1986.16 594.5,-1986"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1994C490.93,-1994.08 511.45,-1988.08 594.5,-1988"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1996C491.49,-1996 512.01,-1990 594.5,-1990"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1998C492.05,-1997.92 512.57,-1991.92 594.5,-1992"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-2000C492.61,-1999.84 513.13,-1993.84 594.5,-1994"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge59" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1680C500.46,-1683.37 510.94,-1749.37 594.5,-1746"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1682C498.48,-1683.69 508.97,-1749.69 594.5,-1748"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1684C496.51,-1684 506.99,-1750 594.5,-1750"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M409,-1686C494.53,-1684.31 505.02,-1750.31 594.5,-1752"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1688C492.56,-1684.63 503.04,-1750.63 594.5,-1754"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge61" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1536C504.63,-1539.9 506.86,-1629.9 594.5,-1626"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1538C502.64,-1539.95 504.86,-1629.95 594.5,-1628"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1540C500.64,-1540 502.86,-1630 594.5,-1630"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1542C498.64,-1540.05 500.86,-1630.05 594.5,-1632"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1544C496.64,-1540.1 498.87,-1630.1 594.5,-1634"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge63" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1488C502.42,-1491.66 509.05,-1569.66 594.5,-1566"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1490C500.43,-1491.83 507.06,-1569.83 594.5,-1568"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1492C498.44,-1492 505.06,-1570 594.5,-1570"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1494C496.44,-1492.17 503.07,-1570.17 594.5,-1572"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1496C494.45,-1492.34 501.08,-1570.34 594.5,-1574"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge65" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1080C489.01,-1081.5 508.25,-1057.5 594.5,-1056"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1082C490.57,-1082.75 509.81,-1058.75 594.5,-1058"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1084C492.13,-1084 511.37,-1060 594.5,-1060"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1086C493.69,-1085.25 512.93,-1061.25 594.5,-1062"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1088C495.25,-1086.5 514.49,-1062.5 594.5,-1064"/>
</g>
<!-- Veronte CEX--W1 -->
<g id="edge67" class="edge">
<title>Veronte CEX:e--W1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-864C494.45,-867.66 501.08,-789.66 594.5,-786"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-866C496.44,-867.83 503.07,-789.83 594.5,-788"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-868C498.44,-868 505.06,-790 594.5,-790"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-870C500.43,-868.17 507.06,-790.17 594.5,-792"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-872C502.42,-868.34 509.05,-790.34 594.5,-794"/>
</g>
<!-- W2 -->
<g id="node21" class="node">
<title>W2</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="905,-2923.25 573,-2923.25 573,-2677.75 905,-2677.75 905,-2923.25"/>
<polygon fill="none" stroke="black" points="573,-2898.75 573,-2923.25 905,-2923.25 905,-2898.75 573,-2898.75"/>
<text text-anchor="start" x="727.75" y="-2905.95" font-family="arial" font-size="14.00">W2</text>
<polygon fill="none" stroke="black" points="573,-2874.25 573,-2898.75 629.19,-2898.75 629.19,-2874.25 573,-2874.25"/>
<text text-anchor="start" x="593.59" y="-2881.45" font-family="arial" font-size="14.00">3x</text>
<polygon fill="none" stroke="black" points="629.19,-2874.25 629.19,-2898.75 725.88,-2898.75 725.88,-2874.25 629.19,-2874.25"/>
<text text-anchor="start" x="649.78" y="-2881.45" font-family="arial" font-size="14.00">22 AWG</text>
<polygon fill="none" stroke="black" points="725.88,-2874.25 725.88,-2898.75 788.81,-2898.75 788.81,-2874.25 725.88,-2874.25"/>
<text text-anchor="start" x="746.47" y="-2881.45" font-family="arial" font-size="14.00">+ S</text>
<polygon fill="none" stroke="black" points="788.81,-2874.25 788.81,-2898.75 905,-2898.75 905,-2874.25 788.81,-2874.25"/>
<text text-anchor="start" x="809.41" y="-2881.45" font-family="arial" font-size="14.00">12.0 Inches</text>
<text text-anchor="start" x="655.62" y="-2858.95" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="575" y="-2838.95" font-family="arial" font-size="14.00">Veronte CEX:7:CAN GND</text>
<text text-anchor="start" x="744.38" y="-2838.95" font-family="arial" font-size="14.00">     BU    </text>
<polygon fill="#000000" stroke="none" points="573,-2832.25 573,-2834.25 905,-2834.25 905,-2832.25 573,-2832.25"/>
<polygon fill="#0066ff" stroke="none" points="573,-2830.25 573,-2832.25 905,-2832.25 905,-2830.25 573,-2830.25"/>
<polygon fill="#0066ff" stroke="none" points="573,-2828.25 573,-2830.25 905,-2830.25 905,-2828.25 573,-2828.25"/>
<polygon fill="#0066ff" stroke="none" points="573,-2826.25 573,-2828.25 905,-2828.25 905,-2826.25 573,-2826.25"/>
<polygon fill="#000000" stroke="none" points="573,-2824.25 573,-2826.25 905,-2826.25 905,-2824.25 573,-2824.25"/>
<text text-anchor="start" x="583.25" y="-2808.95" font-family="arial" font-size="14.00">Veronte CEX:8:CanB P</text>
<text text-anchor="start" x="743.62" y="-2808.95" font-family="arial" font-size="14.00">     RD    </text>
<polygon fill="#000000" stroke="none" points="573,-2802.25 573,-2804.25 905,-2804.25 905,-2802.25 573,-2802.25"/>
<polygon fill="#ff0000" stroke="none" points="573,-2800.25 573,-2802.25 905,-2802.25 905,-2800.25 573,-2800.25"/>
<polygon fill="#ff0000" stroke="none" points="573,-2798.25 573,-2800.25 905,-2800.25 905,-2798.25 573,-2798.25"/>
<polygon fill="#ff0000" stroke="none" points="573,-2796.25 573,-2798.25 905,-2798.25 905,-2796.25 573,-2796.25"/>
<polygon fill="#000000" stroke="none" points="573,-2794.25 573,-2796.25 905,-2796.25 905,-2794.25 573,-2794.25"/>
<text text-anchor="start" x="583.25" y="-2778.95" font-family="arial" font-size="14.00">Veronte CEX:9:CanB N</text>
<text text-anchor="start" x="744.38" y="-2778.95" font-family="arial" font-size="14.00">     BK    </text>
<polygon fill="#000000" stroke="none" points="573,-2772.25 573,-2774.25 905,-2774.25 905,-2772.25 573,-2772.25"/>
<polygon fill="#000000" stroke="none" points="573,-2770.25 573,-2772.25 905,-2772.25 905,-2770.25 573,-2770.25"/>
<polygon fill="#000000" stroke="none" points="573,-2768.25 573,-2770.25 905,-2770.25 905,-2768.25 573,-2768.25"/>
<polygon fill="#000000" stroke="none" points="573,-2766.25 573,-2768.25 905,-2768.25 905,-2766.25 573,-2766.25"/>
<polygon fill="#000000" stroke="none" points="573,-2764.25 573,-2766.25 905,-2766.25 905,-2764.25 573,-2764.25"/>
<text text-anchor="start" x="655.62" y="-2748.95" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="575" y="-2728.95" font-family="arial" font-size="14.00">Veronte CEX:7:CAN GND</text>
<text text-anchor="start" x="751.12" y="-2728.95" font-family="arial" font-size="14.00">Shield</text>
<text text-anchor="start" x="801.88" y="-2728.95" font-family="arial" font-size="14.00">shield1:1:Shield</text>
<polygon fill="#000000" stroke="none" points="573,-2722.25 573,-2724.25 905,-2724.25 905,-2722.25 573,-2722.25"/>
<text text-anchor="start" x="655.62" y="-2706.95" font-family="arial" font-size="14.00"> </text>
<polygon fill="none" stroke="black" points="573,-2677.75 573,-2702.25 905,-2702.25 905,-2677.75 573,-2677.75"/>
<text text-anchor="start" x="700" y="-2684.95" font-family="arial" font-size="14.00">Twisted Pair</text>
</g>
<!-- Veronte CEX--W2 -->
<g id="edge69" class="edge">
<title>Veronte CEX:e--W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1920C821.04,-1926.34 166.44,-2831.59 572,-2825.25"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1922C819.42,-1925.17 164.82,-2830.42 572,-2827.25"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1924C817.8,-1924 163.2,-2829.25 572,-2829.25"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1926C816.18,-1922.83 161.58,-2828.08 572,-2831.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1928C814.56,-1921.66 159.96,-2826.91 572,-2833.25"/>
</g>
<!-- Veronte CEX--W2 -->
<g id="edge70" class="edge">
<title>Veronte CEX:e--W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1896C818.42,-1902.34 169.06,-2801.59 572,-2795.25"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1898C816.8,-1901.17 167.44,-2800.42 572,-2797.25"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1900C815.18,-1900 165.82,-2799.25 572,-2799.25"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M409,-1902C813.56,-1898.83 164.2,-2798.08 572,-2801.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1904C811.94,-1897.66 162.58,-2796.91 572,-2803.25"/>
</g>
<!-- Veronte CEX--W2 -->
<g id="edge71" class="edge">
<title>Veronte CEX:e--W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1872C815.8,-1878.34 171.69,-2771.59 572,-2765.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1874C814.18,-1877.17 170.07,-2770.42 572,-2767.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1876C812.56,-1876 168.44,-2769.25 572,-2769.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1878C810.93,-1874.83 166.82,-2768.08 572,-2771.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1880C809.31,-1873.66 165.2,-2766.91 572,-2773.25"/>
</g>
<!-- Veronte CEX--W2 -->
<g id="edge76" class="edge">
<title>Veronte CEX:e--W2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1924C771.53,-1924 209.47,-2723.25 572,-2723.25"/>
</g>
<!-- W3 -->
<g id="node22" class="node">
<title>W3</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="910.5,-2413.25 567.5,-2413.25 567.5,-2197.75 910.5,-2197.75 910.5,-2413.25"/>
<polygon fill="none" stroke="black" points="567.5,-2388.75 567.5,-2413.25 910.5,-2413.25 910.5,-2388.75 567.5,-2388.75"/>
<text text-anchor="start" x="727.75" y="-2395.95" font-family="arial" font-size="14.00">W3</text>
<polygon fill="none" stroke="black" points="567.5,-2364.25 567.5,-2388.75 624.38,-2388.75 624.38,-2364.25 567.5,-2364.25"/>
<text text-anchor="start" x="588.44" y="-2371.45" font-family="arial" font-size="14.00">2x</text>
<polygon fill="none" stroke="black" points="624.38,-2364.25 624.38,-2388.75 721.75,-2388.75 721.75,-2364.25 624.38,-2364.25"/>
<text text-anchor="start" x="645.31" y="-2371.45" font-family="arial" font-size="14.00">22 AWG</text>
<polygon fill="none" stroke="black" points="721.75,-2364.25 721.75,-2388.75 785.38,-2388.75 785.38,-2364.25 721.75,-2364.25"/>
<text text-anchor="start" x="742.69" y="-2371.45" font-family="arial" font-size="14.00">+ S</text>
<polygon fill="none" stroke="black" points="785.38,-2364.25 785.38,-2388.75 910.5,-2388.75 910.5,-2364.25 785.38,-2364.25"/>
<text text-anchor="start" x="806.31" y="-2371.45" font-family="arial" font-size="14.00">124.0 Inches</text>
<text text-anchor="start" x="663.12" y="-2348.95" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="570.12" y="-2328.95" font-family="arial" font-size="14.00">Veronte CEX:18:RS-232B TX</text>
<text text-anchor="start" x="766.62" y="-2328.95" font-family="arial" font-size="14.00">     BNPK    </text>
<text text-anchor="start" x="845.5" y="-2328.95" font-family="arial" font-size="14.00">Mag:3:RX</text>
<polygon fill="#000000" stroke="none" points="567.5,-2322.25 567.5,-2324.25 910.5,-2324.25 910.5,-2322.25 567.5,-2322.25"/>
<polygon fill="#895956" stroke="none" points="567.5,-2320.25 567.5,-2322.25 910.5,-2322.25 910.5,-2320.25 567.5,-2320.25"/>
<polygon fill="#ff66cc" stroke="none" points="567.5,-2318.25 567.5,-2320.25 910.5,-2320.25 910.5,-2318.25 567.5,-2318.25"/>
<polygon fill="#895956" stroke="none" points="567.5,-2316.25 567.5,-2318.25 910.5,-2318.25 910.5,-2316.25 567.5,-2316.25"/>
<polygon fill="#000000" stroke="none" points="567.5,-2314.25 567.5,-2316.25 910.5,-2316.25 910.5,-2314.25 567.5,-2314.25"/>
<text text-anchor="start" x="569.38" y="-2298.95" font-family="arial" font-size="14.00">Veronte CEX:19:RS-232B RX</text>
<text text-anchor="start" x="764.38" y="-2298.95" font-family="arial" font-size="14.00">     BUWH    </text>
<text text-anchor="start" x="846.25" y="-2298.95" font-family="arial" font-size="14.00">Mag:2:TX</text>
<polygon fill="#000000" stroke="none" points="567.5,-2292.25 567.5,-2294.25 910.5,-2294.25 910.5,-2292.25 567.5,-2292.25"/>
<polygon fill="#0066ff" stroke="none" points="567.5,-2290.25 567.5,-2292.25 910.5,-2292.25 910.5,-2290.25 567.5,-2290.25"/>
<polygon fill="#ffffff" stroke="none" points="567.5,-2288.25 567.5,-2290.25 910.5,-2290.25 910.5,-2288.25 567.5,-2288.25"/>
<polygon fill="#0066ff" stroke="none" points="567.5,-2286.25 567.5,-2288.25 910.5,-2288.25 910.5,-2286.25 567.5,-2286.25"/>
<polygon fill="#000000" stroke="none" points="567.5,-2284.25 567.5,-2286.25 910.5,-2286.25 910.5,-2284.25 567.5,-2284.25"/>
<text text-anchor="start" x="663.12" y="-2268.95" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="783.12" y="-2248.95" font-family="arial" font-size="14.00">Shield</text>
<polygon fill="#000000" stroke="none" points="567.5,-2242.25 567.5,-2244.25 910.5,-2244.25 910.5,-2242.25 567.5,-2242.25"/>
<text text-anchor="start" x="663.12" y="-2226.95" font-family="arial" font-size="14.00"> </text>
<polygon fill="none" stroke="black" points="567.5,-2197.75 567.5,-2222.25 910.5,-2222.25 910.5,-2197.75 567.5,-2197.75"/>
<text text-anchor="start" x="700" y="-2204.95" font-family="arial" font-size="14.00">Twisted Pair</text>
</g>
<!-- Veronte CEX--W3 -->
<g id="edge77" class="edge">
<title>Veronte CEX:e--W3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1656C713.56,-1662.24 268.57,-2321.49 566.5,-2315.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1658C711.9,-1661.12 266.91,-2320.37 566.5,-2317.25"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M409,-1660C710.25,-1660 265.25,-2319.25 566.5,-2319.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1662C708.59,-1658.88 263.6,-2318.13 566.5,-2321.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1664C706.93,-1657.76 261.94,-2317.01 566.5,-2323.25"/>
</g>
<!-- Veronte CEX--W3 -->
<g id="edge79" class="edge">
<title>Veronte CEX:e--W3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1632C710.97,-1638.23 271.17,-2291.48 566.5,-2285.25"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1634C709.31,-1637.12 269.51,-2290.37 566.5,-2287.25"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1636C707.65,-1636 267.85,-2289.25 566.5,-2289.25"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M409,-1638C705.99,-1634.88 266.19,-2288.13 566.5,-2291.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1640C704.33,-1633.77 264.53,-2287.02 566.5,-2293.25"/>
</g>
<!-- W4 -->
<g id="node23" class="node">
<title>W4</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="925,-2653.25 553,-2653.25 553,-2437.75 925,-2437.75 925,-2653.25"/>
<polygon fill="none" stroke="black" points="553,-2628.75 553,-2653.25 925,-2653.25 925,-2628.75 553,-2628.75"/>
<text text-anchor="start" x="727.75" y="-2635.95" font-family="arial" font-size="14.00">W4</text>
<polygon fill="none" stroke="black" points="553,-2604.25 553,-2628.75 619.19,-2628.75 619.19,-2604.25 553,-2604.25"/>
<text text-anchor="start" x="578.59" y="-2611.45" font-family="arial" font-size="14.00">2x</text>
<polygon fill="none" stroke="black" points="619.19,-2604.25 619.19,-2628.75 725.88,-2628.75 725.88,-2604.25 619.19,-2604.25"/>
<text text-anchor="start" x="644.78" y="-2611.45" font-family="arial" font-size="14.00">22 AWG</text>
<polygon fill="none" stroke="black" points="725.88,-2604.25 725.88,-2628.75 798.81,-2628.75 798.81,-2604.25 725.88,-2604.25"/>
<text text-anchor="start" x="751.47" y="-2611.45" font-family="arial" font-size="14.00">+ S</text>
<polygon fill="none" stroke="black" points="798.81,-2604.25 798.81,-2628.75 925,-2628.75 925,-2604.25 798.81,-2604.25"/>
<text text-anchor="start" x="824.41" y="-2611.45" font-family="arial" font-size="14.00">87.5 Inches</text>
<text text-anchor="start" x="648.62" y="-2588.95" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="555.62" y="-2568.95" font-family="arial" font-size="14.00">Veronte CEX:15:RS-232A TX</text>
<text text-anchor="start" x="749.75" y="-2568.95" font-family="arial" font-size="14.00">     YEWH    </text>
<text text-anchor="start" x="830" y="-2568.95" font-family="arial" font-size="14.00">VPX J1:22:RX</text>
<polygon fill="#000000" stroke="none" points="553,-2562.25 553,-2564.25 925,-2564.25 925,-2562.25 553,-2562.25"/>
<polygon fill="#ffff00" stroke="none" points="553,-2560.25 553,-2562.25 925,-2562.25 925,-2560.25 553,-2560.25"/>
<polygon fill="#ffffff" stroke="none" points="553,-2558.25 553,-2560.25 925,-2560.25 925,-2558.25 553,-2558.25"/>
<polygon fill="#ffff00" stroke="none" points="553,-2556.25 553,-2558.25 925,-2558.25 925,-2556.25 553,-2556.25"/>
<polygon fill="#000000" stroke="none" points="553,-2554.25 553,-2556.25 925,-2556.25 925,-2554.25 553,-2554.25"/>
<text text-anchor="start" x="554.88" y="-2538.95" font-family="arial" font-size="14.00">Veronte CEX:16:RS-232A RX</text>
<text text-anchor="start" x="752" y="-2538.95" font-family="arial" font-size="14.00">     BNYE    </text>
<text text-anchor="start" x="830.75" y="-2538.95" font-family="arial" font-size="14.00">VPX J1:20:TX</text>
<polygon fill="#000000" stroke="none" points="553,-2532.25 553,-2534.25 925,-2534.25 925,-2532.25 553,-2532.25"/>
<polygon fill="#895956" stroke="none" points="553,-2530.25 553,-2532.25 925,-2532.25 925,-2530.25 553,-2530.25"/>
<polygon fill="#ffff00" stroke="none" points="553,-2528.25 553,-2530.25 925,-2530.25 925,-2528.25 553,-2528.25"/>
<polygon fill="#895956" stroke="none" points="553,-2526.25 553,-2528.25 925,-2528.25 925,-2526.25 553,-2526.25"/>
<polygon fill="#000000" stroke="none" points="553,-2524.25 553,-2526.25 925,-2526.25 925,-2524.25 553,-2524.25"/>
<text text-anchor="start" x="648.62" y="-2508.95" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="768.12" y="-2488.95" font-family="arial" font-size="14.00">Shield</text>
<polygon fill="#000000" stroke="none" points="553,-2482.25 553,-2484.25 925,-2484.25 925,-2482.25 553,-2482.25"/>
<text text-anchor="start" x="648.62" y="-2466.95" font-family="arial" font-size="14.00"> </text>
<polygon fill="none" stroke="black" points="553,-2437.75 553,-2462.25 925,-2462.25 925,-2437.75 553,-2437.75"/>
<text text-anchor="start" x="700" y="-2444.95" font-family="arial" font-size="14.00">Twisted Pair</text>
</g>
<!-- Veronte CEX--W4 -->
<g id="edge83" class="edge">
<title>Veronte CEX:e--W4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1728C785.43,-1734.35 183.04,-2561.6 553,-2555.25"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1730C783.81,-1733.18 181.42,-2560.43 553,-2557.25"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M409,-1732C782.2,-1732 179.8,-2559.25 553,-2559.25"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1734C780.58,-1730.82 178.19,-2558.07 553,-2561.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1736C778.96,-1729.65 176.57,-2556.9 553,-2563.25"/>
</g>
<!-- Veronte CEX--W4 -->
<g id="edge85" class="edge">
<title>Veronte CEX:e--W4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1704C782.8,-1710.35 185.67,-2531.6 553,-2525.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1706C781.19,-1709.18 184.05,-2530.43 553,-2527.25"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M409,-1708C779.57,-1708 182.43,-2529.25 553,-2529.25"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M409,-1710C777.95,-1706.82 180.81,-2528.07 553,-2531.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M409,-1712C776.33,-1705.65 179.2,-2526.9 553,-2533.25"/>
</g>
<!-- 1X -->
<g id="node2" class="node">
<title>1X</title>
<polygon fill="#ffffff" stroke="black" points="2145.25,-2890.5 1736.25,-2890.5 1736.25,-2370.5 2145.25,-2370.5 2145.25,-2890.5"/>
<polygon fill="none" stroke="black" points="1736.25,-2866 1736.25,-2890.5 2145.25,-2890.5 2145.25,-2866 1736.25,-2866"/>
<text text-anchor="start" x="1931.75" y="-2873.2" font-family="arial" font-size="14.00">1X</text>
<polygon fill="none" stroke="black" points="1736.25,-2841.5 1736.25,-2866 1988.38,-2866 1988.38,-2841.5 1736.25,-2841.5"/>
<text text-anchor="start" x="1798.94" y="-2848.7" font-family="arial" font-size="14.00">HEW.LM.368.XLNP</text>
<polygon fill="none" stroke="black" points="1988.38,-2841.5 1988.38,-2866 2145.25,-2866 2145.25,-2841.5 1988.38,-2841.5"/>
<text text-anchor="start" x="2051.06" y="-2848.7" font-family="arial" font-size="14.00">3-pin</text>
<polygon fill="none" stroke="black" points="1736.25,-2817.5 1736.25,-2841.5 1914.25,-2841.5 1914.25,-2817.5 1736.25,-2817.5"/>
<text text-anchor="start" x="1817" y="-2824.2" font-family="arial" font-size="14.00">27</text>
<polygon fill="none" stroke="black" points="1914.25,-2817.5 1914.25,-2841.5 2145.25,-2841.5 2145.25,-2817.5 1914.25,-2817.5"/>
<text text-anchor="start" x="1994.88" y="-2824.2" font-family="arial" font-size="14.00">CAN_GND</text>
<polygon fill="none" stroke="black" points="1736.25,-2793.5 1736.25,-2817.5 1914.25,-2817.5 1914.25,-2793.5 1736.25,-2793.5"/>
<text text-anchor="start" x="1817" y="-2800.2" font-family="arial" font-size="14.00">28</text>
<polygon fill="none" stroke="black" points="1914.25,-2793.5 1914.25,-2817.5 2145.25,-2817.5 2145.25,-2793.5 1914.25,-2793.5"/>
<text text-anchor="start" x="2000.88" y="-2800.2" font-family="arial" font-size="14.00">CANB_P</text>
<polygon fill="none" stroke="black" points="1736.25,-2769.5 1736.25,-2793.5 1914.25,-2793.5 1914.25,-2769.5 1736.25,-2769.5"/>
<text text-anchor="start" x="1817" y="-2776.2" font-family="arial" font-size="14.00">29</text>
<polygon fill="none" stroke="black" points="1914.25,-2769.5 1914.25,-2793.5 2145.25,-2793.5 2145.25,-2769.5 1914.25,-2769.5"/>
<text text-anchor="start" x="2000.88" y="-2776.2" font-family="arial" font-size="14.00">CANB_N</text>
<polygon fill="none" stroke="black" points="1736.25,-2370.5 1736.25,-2769.5 2145.25,-2769.5 2145.25,-2370.5 1736.25,-2370.5"/>
<image xlink:href="images\CEX_plug.png" width="401px" height="391px" preserveAspectRatio="xMinYMin meet" x="1740.25" y="-2765.5"/>
</g>
<!-- VPX J1 -->
<g id="node3" class="node">
<title>VPX J1</title>
<polygon fill="#ffffff" stroke="black" points="1140.75,-2636 1077.5,-2636 1077.5,-2515 1140.75,-2515 1140.75,-2636"/>
<polygon fill="none" stroke="black" points="1077.5,-2611.5 1077.5,-2636 1140.75,-2636 1140.75,-2611.5 1077.5,-2611.5"/>
<text text-anchor="start" x="1084.75" y="-2618.7" font-family="arial" font-size="14.00">VPX J1</text>
<polygon fill="none" stroke="black" points="1077.5,-2587 1077.5,-2611.5 1101.25,-2611.5 1101.25,-2587 1077.5,-2587"/>
<text text-anchor="start" x="1081.5" y="-2594.2" font-family="arial" font-size="14.00">J1</text>
<polygon fill="none" stroke="black" points="1101.25,-2587 1101.25,-2611.5 1140.75,-2611.5 1140.75,-2587 1101.25,-2587"/>
<text text-anchor="start" x="1105.25" y="-2594.2" font-family="arial" font-size="14.00">3-pin</text>
<polygon fill="none" stroke="black" points="1077.5,-2563 1077.5,-2587 1101.62,-2587 1101.62,-2563 1077.5,-2563"/>
<text text-anchor="start" x="1081.31" y="-2569.7" font-family="arial" font-size="14.00">20</text>
<polygon fill="none" stroke="black" points="1101.62,-2563 1101.62,-2587 1140.75,-2587 1140.75,-2563 1101.62,-2563"/>
<text text-anchor="start" x="1111.81" y="-2569.7" font-family="arial" font-size="14.00">TX</text>
<polygon fill="none" stroke="black" points="1077.5,-2539 1077.5,-2563 1101.62,-2563 1101.62,-2539 1077.5,-2539"/>
<text text-anchor="start" x="1081.31" y="-2545.7" font-family="arial" font-size="14.00">21</text>
<polygon fill="none" stroke="black" points="1101.62,-2539 1101.62,-2563 1140.75,-2563 1140.75,-2539 1101.62,-2539"/>
<text text-anchor="start" x="1105.44" y="-2545.7" font-family="arial" font-size="14.00">GND</text>
<polygon fill="none" stroke="black" points="1077.5,-2515 1077.5,-2539 1101.62,-2539 1101.62,-2515 1077.5,-2515"/>
<text text-anchor="start" x="1081.31" y="-2521.7" font-family="arial" font-size="14.00">22</text>
<polygon fill="none" stroke="black" points="1101.62,-2515 1101.62,-2539 1140.75,-2539 1140.75,-2515 1101.62,-2515"/>
<text text-anchor="start" x="1111.06" y="-2521.7" font-family="arial" font-size="14.00">RX</text>
</g>
<!-- Mag -->
<g id="node4" class="node">
<title>Mag</title>
<polygon fill="#ffffff" stroke="black" points="1146.38,-2403 1071.88,-2403 1071.88,-2282 1146.38,-2282 1146.38,-2403"/>
<polygon fill="none" stroke="black" points="1071.88,-2378.5 1071.88,-2403 1146.38,-2403 1146.38,-2378.5 1071.88,-2378.5"/>
<text text-anchor="start" x="1095.62" y="-2385.7" font-family="arial" font-size="14.00">Mag</text>
<polygon fill="none" stroke="black" points="1071.88,-2354 1071.88,-2378.5 1106.88,-2378.5 1106.88,-2354 1071.88,-2354"/>
<text text-anchor="start" x="1075.88" y="-2361.2" font-family="arial" font-size="14.00">Mag</text>
<polygon fill="none" stroke="black" points="1106.88,-2354 1106.88,-2378.5 1146.38,-2378.5 1146.38,-2354 1106.88,-2354"/>
<text text-anchor="start" x="1110.88" y="-2361.2" font-family="arial" font-size="14.00">3-pin</text>
<polygon fill="none" stroke="black" points="1071.88,-2330 1071.88,-2354 1097.62,-2354 1097.62,-2330 1071.88,-2330"/>
<text text-anchor="start" x="1080.62" y="-2336.7" font-family="arial" font-size="14.00">2</text>
<polygon fill="none" stroke="black" points="1097.62,-2330 1097.62,-2354 1146.38,-2354 1146.38,-2330 1097.62,-2330"/>
<text text-anchor="start" x="1112.62" y="-2336.7" font-family="arial" font-size="14.00">TX</text>
<polygon fill="none" stroke="black" points="1071.88,-2306 1071.88,-2330 1097.62,-2330 1097.62,-2306 1071.88,-2306"/>
<text text-anchor="start" x="1080.62" y="-2312.7" font-family="arial" font-size="14.00">3</text>
<polygon fill="none" stroke="black" points="1097.62,-2306 1097.62,-2330 1146.38,-2330 1146.38,-2306 1097.62,-2306"/>
<text text-anchor="start" x="1111.88" y="-2312.7" font-family="arial" font-size="14.00">RX</text>
<polygon fill="none" stroke="black" points="1071.88,-2282 1071.88,-2306 1097.62,-2306 1097.62,-2282 1071.88,-2282"/>
<text text-anchor="start" x="1080.62" y="-2288.7" font-family="arial" font-size="14.00">5</text>
<polygon fill="none" stroke="black" points="1097.62,-2282 1097.62,-2306 1146.38,-2306 1146.38,-2282 1097.62,-2282"/>
<text text-anchor="start" x="1106.25" y="-2288.7" font-family="arial" font-size="14.00">GND</text>
</g>
<!-- shield1 -->
<g id="node5" class="node">
<title>shield1</title>
<polygon fill="#ffffff" stroke="black" points="1149.25,-2733.25 1069,-2733.25 1069,-2659.75 1149.25,-2659.75 1149.25,-2733.25"/>
<polygon fill="none" stroke="black" points="1069,-2708.75 1069,-2733.25 1149.25,-2733.25 1149.25,-2708.75 1069,-2708.75"/>
<text text-anchor="start" x="1086.25" y="-2715.95" font-family="arial" font-size="14.00">shield1</text>
<polygon fill="none" stroke="black" points="1069,-2684.25 1069,-2708.75 1149.25,-2708.75 1149.25,-2684.25 1069,-2684.25"/>
<text text-anchor="start" x="1093.38" y="-2691.45" font-family="arial" font-size="14.00">1-pin</text>
<polygon fill="none" stroke="black" points="1069,-2659.75 1069,-2684.25 1085.25,-2684.25 1085.25,-2659.75 1069,-2659.75"/>
<text text-anchor="start" x="1073" y="-2666.95" font-family="arial" font-size="14.00">1</text>
<polygon fill="none" stroke="black" points="1085.25,-2659.75 1085.25,-2684.25 1133,-2684.25 1133,-2659.75 1085.25,-2659.75"/>
<text text-anchor="start" x="1089.25" y="-2666.95" font-family="arial" font-size="14.00">Shield</text>
<polygon fill="none" stroke="black" points="1133,-2659.75 1133,-2684.25 1149.25,-2684.25 1149.25,-2659.75 1133,-2659.75"/>
<text text-anchor="start" x="1137" y="-2666.95" font-family="arial" font-size="14.00">1</text>
</g>
<!-- W5 -->
<g id="node24" class="node">
<title>W5</title>
<polygon fill="#ffffff" stroke="black" stroke-dasharray="5,2" points="1592.25,-2932.25 1293.25,-2932.25 1293.25,-2686.75 1592.25,-2686.75 1592.25,-2932.25"/>
<polygon fill="none" stroke="black" points="1293.25,-2907.75 1293.25,-2932.25 1592.25,-2932.25 1592.25,-2907.75 1293.25,-2907.75"/>
<text text-anchor="start" x="1431.5" y="-2914.95" font-family="arial" font-size="14.00">W5</text>
<polygon fill="none" stroke="black" points="1293.25,-2883.25 1293.25,-2907.75 1377.17,-2907.75 1377.17,-2883.25 1293.25,-2883.25"/>
<text text-anchor="start" x="1327.71" y="-2890.45" font-family="arial" font-size="14.00">3x</text>
<polygon fill="none" stroke="black" points="1377.17,-2883.25 1377.17,-2907.75 1501.58,-2907.75 1501.58,-2883.25 1377.17,-2883.25"/>
<text text-anchor="start" x="1411.62" y="-2890.45" font-family="arial" font-size="14.00">22 AWG</text>
<polygon fill="none" stroke="black" points="1501.58,-2883.25 1501.58,-2907.75 1592.25,-2907.75 1592.25,-2883.25 1501.58,-2883.25"/>
<text text-anchor="start" x="1536.04" y="-2890.45" font-family="arial" font-size="14.00">+ S</text>
<text text-anchor="start" x="1343.88" y="-2867.95" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="1400.25" y="-2847.95" font-family="arial" font-size="14.00">     GNGY    </text>
<text text-anchor="start" x="1478.88" y="-2847.95" font-family="arial" font-size="14.00">1X:27:CAN_GND</text>
<polygon fill="#000000" stroke="none" points="1293.25,-2841.25 1293.25,-2843.25 1592.25,-2843.25 1592.25,-2841.25 1293.25,-2841.25"/>
<polygon fill="#00ff00" stroke="none" points="1293.25,-2839.25 1293.25,-2841.25 1592.25,-2841.25 1592.25,-2839.25 1293.25,-2839.25"/>
<polygon fill="#999999" stroke="none" points="1293.25,-2837.25 1293.25,-2839.25 1592.25,-2839.25 1592.25,-2837.25 1293.25,-2837.25"/>
<polygon fill="#00ff00" stroke="none" points="1293.25,-2835.25 1293.25,-2837.25 1592.25,-2837.25 1592.25,-2835.25 1293.25,-2835.25"/>
<polygon fill="#000000" stroke="none" points="1293.25,-2833.25 1293.25,-2835.25 1592.25,-2835.25 1592.25,-2833.25 1293.25,-2833.25"/>
<text text-anchor="start" x="1401" y="-2817.95" font-family="arial" font-size="14.00">     GNYE    </text>
<text text-anchor="start" x="1484.88" y="-2817.95" font-family="arial" font-size="14.00">1X:28:CANB_P</text>
<polygon fill="#000000" stroke="none" points="1293.25,-2811.25 1293.25,-2813.25 1592.25,-2813.25 1592.25,-2811.25 1293.25,-2811.25"/>
<polygon fill="#00ff00" stroke="none" points="1293.25,-2809.25 1293.25,-2811.25 1592.25,-2811.25 1592.25,-2809.25 1293.25,-2809.25"/>
<polygon fill="#ffff00" stroke="none" points="1293.25,-2807.25 1293.25,-2809.25 1592.25,-2809.25 1592.25,-2807.25 1293.25,-2807.25"/>
<polygon fill="#00ff00" stroke="none" points="1293.25,-2805.25 1293.25,-2807.25 1592.25,-2807.25 1592.25,-2805.25 1293.25,-2805.25"/>
<polygon fill="#000000" stroke="none" points="1293.25,-2803.25 1293.25,-2805.25 1592.25,-2805.25 1592.25,-2803.25 1293.25,-2803.25"/>
<text text-anchor="start" x="1400.62" y="-2787.95" font-family="arial" font-size="14.00">     GNPK    </text>
<text text-anchor="start" x="1484.88" y="-2787.95" font-family="arial" font-size="14.00">1X:29:CANB_N</text>
<polygon fill="#000000" stroke="none" points="1293.25,-2781.25 1293.25,-2783.25 1592.25,-2783.25 1592.25,-2781.25 1293.25,-2781.25"/>
<polygon fill="#00ff00" stroke="none" points="1293.25,-2779.25 1293.25,-2781.25 1592.25,-2781.25 1592.25,-2779.25 1293.25,-2779.25"/>
<polygon fill="#ff66cc" stroke="none" points="1293.25,-2777.25 1293.25,-2779.25 1592.25,-2779.25 1592.25,-2777.25 1293.25,-2777.25"/>
<polygon fill="#00ff00" stroke="none" points="1293.25,-2775.25 1293.25,-2777.25 1592.25,-2777.25 1592.25,-2775.25 1293.25,-2775.25"/>
<polygon fill="#000000" stroke="none" points="1293.25,-2773.25 1293.25,-2775.25 1592.25,-2775.25 1592.25,-2773.25 1293.25,-2773.25"/>
<text text-anchor="start" x="1343.88" y="-2757.95" font-family="arial" font-size="14.00"> </text>
<text text-anchor="start" x="1295.12" y="-2737.95" font-family="arial" font-size="14.00">shield1:1:Shield</text>
<text text-anchor="start" x="1417.88" y="-2737.95" font-family="arial" font-size="14.00">Shield</text>
<text text-anchor="start" x="1478.88" y="-2737.95" font-family="arial" font-size="14.00">1X:27:CAN_GND</text>
<polygon fill="#000000" stroke="none" points="1293.25,-2731.25 1293.25,-2733.25 1592.25,-2733.25 1592.25,-2731.25 1293.25,-2731.25"/>
<text text-anchor="start" x="1343.88" y="-2715.95" font-family="arial" font-size="14.00"> </text>
<polygon fill="none" stroke="black" points="1293.25,-2686.75 1293.25,-2711.25 1592.25,-2711.25 1592.25,-2686.75 1293.25,-2686.75"/>
<text text-anchor="start" x="1403.75" y="-2693.95" font-family="arial" font-size="14.00">Twisted Pair</text>
</g>
<!-- shield1--W5 -->
<g id="edge95" class="edge">
<title>shield1:e--W5:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1149.25,-2672C1218.63,-2672 1223.87,-2732.25 1293.25,-2732.25"/>
</g>
<!-- _S_1 -->
<g id="node6" class="node">
<title>_S_1</title>
<polygon fill="#ffffff" stroke="black" points="1131.88,-2879.75 1086.38,-2879.75 1086.38,-2855.25 1131.88,-2855.25 1131.88,-2879.75"/>
<polygon fill="none" stroke="black" points="1086.38,-2855.25 1086.38,-2879.75 1131.88,-2879.75 1131.88,-2855.25 1086.38,-2855.25"/>
<text text-anchor="start" x="1090.38" y="-2862.45" font-family="arial" font-size="14.00">splice</text>
</g>
<!-- _S_1--W5 -->
<g id="edge89" class="edge">
<title>_S_1:e--W5:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1132.88,-2863.5C1201.79,-2865.63 1217.26,-2836.38 1293.25,-2834.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M1132.88,-2865.5C1203.56,-2866.57 1219.03,-2837.32 1293.25,-2836.25"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M1132.88,-2867.5C1205.33,-2867.5 1220.8,-2838.25 1293.25,-2838.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M1132.88,-2869.5C1207.1,-2868.43 1222.56,-2839.18 1293.25,-2840.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1132.88,-2871.5C1208.86,-2869.37 1224.33,-2840.12 1293.25,-2842.25"/>
</g>
<!-- _S_2 -->
<g id="node7" class="node">
<title>_S_2</title>
<polygon fill="#ffffff" stroke="black" points="1131.88,-2830.75 1086.38,-2830.75 1086.38,-2806.25 1131.88,-2806.25 1131.88,-2830.75"/>
<polygon fill="none" stroke="black" points="1086.38,-2806.25 1086.38,-2830.75 1131.88,-2830.75 1131.88,-2806.25 1086.38,-2806.25"/>
<text text-anchor="start" x="1090.38" y="-2813.45" font-family="arial" font-size="14.00">splice</text>
</g>
<!-- _S_2--W5 -->
<g id="edge91" class="edge">
<title>_S_2:e--W5:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1132.88,-2814.5C1202.28,-2815.05 1219.81,-2804.8 1293.25,-2804.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M1132.88,-2816.5C1203.29,-2816.77 1220.82,-2806.52 1293.25,-2806.25"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M1132.88,-2818.5C1204.3,-2818.5 1221.83,-2808.25 1293.25,-2808.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M1132.88,-2820.5C1205.31,-2820.23 1222.84,-2809.98 1293.25,-2810.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1132.88,-2822.5C1206.32,-2821.95 1223.85,-2811.7 1293.25,-2812.25"/>
</g>
<!-- _S_3 -->
<g id="node8" class="node">
<title>_S_3</title>
<polygon fill="#ffffff" stroke="black" points="1131.88,-2781.75 1086.38,-2781.75 1086.38,-2757.25 1131.88,-2757.25 1131.88,-2781.75"/>
<polygon fill="none" stroke="black" points="1086.38,-2757.25 1086.38,-2781.75 1131.88,-2781.75 1131.88,-2757.25 1086.38,-2757.25"/>
<text text-anchor="start" x="1090.38" y="-2764.45" font-family="arial" font-size="14.00">splice</text>
</g>
<!-- _S_3--W5 -->
<g id="edge93" class="edge">
<title>_S_3:e--W5:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1132.88,-2765.5C1206.04,-2765.92 1223.65,-2774.67 1293.25,-2774.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M1132.88,-2767.5C1205.15,-2767.71 1222.76,-2776.46 1293.25,-2776.25"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1132.88,-2769.5C1204.26,-2769.5 1221.87,-2778.25 1293.25,-2778.25"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M1132.88,-2771.5C1203.37,-2771.29 1220.98,-2780.04 1293.25,-2780.25"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1132.88,-2773.5C1202.48,-2773.08 1220.09,-2781.83 1293.25,-2782.25"/>
</g>
<!-- _GND_1 -->
<g id="node9" class="node">
<title>_GND_1</title>
<polygon fill="#ffffff" stroke="black" points="1128.88,-2040.75 1089.38,-2040.75 1089.38,-2016.25 1128.88,-2016.25 1128.88,-2040.75"/>
<polygon fill="none" stroke="black" points="1089.38,-2016.25 1089.38,-2040.75 1128.88,-2040.75 1128.88,-2016.25 1089.38,-2016.25"/>
<text text-anchor="start" x="1093.38" y="-2023.45" font-family="arial" font-size="14.00">GND</text>
</g>
<!-- _GND_2 -->
<g id="node10" class="node">
<title>_GND_2</title>
<polygon fill="#ffffff" stroke="black" points="1128.88,-1991.75 1089.38,-1991.75 1089.38,-1967.25 1128.88,-1967.25 1128.88,-1991.75"/>
<polygon fill="none" stroke="black" points="1089.38,-1967.25 1089.38,-1991.75 1128.88,-1991.75 1128.88,-1967.25 1089.38,-1967.25"/>
<text text-anchor="start" x="1093.38" y="-1974.45" font-family="arial" font-size="14.00">GND</text>
</g>
<!-- _GND_3 -->
<g id="node11" class="node">
<title>_GND_3</title>
<polygon fill="#ffffff" stroke="black" points="1128.88,-1761.75 1089.38,-1761.75 1089.38,-1737.25 1128.88,-1737.25 1128.88,-1761.75"/>
<polygon fill="none" stroke="black" points="1089.38,-1737.25 1089.38,-1761.75 1128.88,-1761.75 1128.88,-1737.25 1089.38,-1737.25"/>
<text text-anchor="start" x="1093.38" y="-1744.45" font-family="arial" font-size="14.00">GND</text>
</g>
<!-- _GND_4 -->
<g id="node12" class="node">
<title>_GND_4</title>
<polygon fill="#ffffff" stroke="black" points="1128.88,-1641.75 1089.38,-1641.75 1089.38,-1617.25 1128.88,-1617.25 1128.88,-1641.75"/>
<polygon fill="none" stroke="black" points="1089.38,-1617.25 1089.38,-1641.75 1128.88,-1641.75 1128.88,-1617.25 1089.38,-1617.25"/>
<text text-anchor="start" x="1093.38" y="-1624.45" font-family="arial" font-size="14.00">GND</text>
</g>
<!-- _GND_5 -->
<g id="node13" class="node">
<title>_GND_5</title>
<polygon fill="#ffffff" stroke="black" points="1128.88,-1581.75 1089.38,-1581.75 1089.38,-1557.25 1128.88,-1557.25 1128.88,-1581.75"/>
<polygon fill="none" stroke="black" points="1089.38,-1557.25 1089.38,-1581.75 1128.88,-1581.75 1128.88,-1557.25 1089.38,-1557.25"/>
<text text-anchor="start" x="1093.38" y="-1564.45" font-family="arial" font-size="14.00">GND</text>
</g>
<!-- _GND_6 -->
<g id="node14" class="node">
<title>_GND_6</title>
<polygon fill="#ffffff" stroke="black" points="1128.88,-1072.75 1089.38,-1072.75 1089.38,-1048.25 1128.88,-1048.25 1128.88,-1072.75"/>
<polygon fill="none" stroke="black" points="1089.38,-1048.25 1089.38,-1072.75 1128.88,-1072.75 1128.88,-1048.25 1089.38,-1048.25"/>
<text text-anchor="start" x="1093.38" y="-1055.45" font-family="arial" font-size="14.00">GND</text>
</g>
<!-- _GND_7 -->
<g id="node15" class="node">
<title>_GND_7</title>
<polygon fill="#ffffff" stroke="black" points="1128.88,-802.75 1089.38,-802.75 1089.38,-778.25 1128.88,-778.25 1128.88,-802.75"/>
<polygon fill="none" stroke="black" points="1089.38,-778.25 1089.38,-802.75 1128.88,-802.75 1128.88,-778.25 1089.38,-778.25"/>
<text text-anchor="start" x="1093.38" y="-785.45" font-family="arial" font-size="14.00">GND</text>
</g>
<!-- _GND_8 -->
<g id="node16" class="node">
<title>_GND_8</title>
<polygon fill="#ffffff" stroke="black" points="224.25,-2495.75 184.75,-2495.75 184.75,-2471.25 224.25,-2471.25 224.25,-2495.75"/>
<polygon fill="none" stroke="black" points="184.75,-2471.25 184.75,-2495.75 224.25,-2495.75 224.25,-2471.25 184.75,-2471.25"/>
<text text-anchor="start" x="188.75" y="-2478.45" font-family="arial" font-size="14.00">GND</text>
</g>
<!-- _GND_8--W4 -->
<g id="edge87" class="edge">
<title>_GND_8:e--W4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M225.25,-2483.5C370.92,-2483.5 407.33,-2483.25 553,-2483.25"/>
</g>
<!-- _GND_9 -->
<g id="node17" class="node">
<title>_GND_9</title>
<polygon fill="#ffffff" stroke="black" points="1128.88,-2490.75 1089.38,-2490.75 1089.38,-2466.25 1128.88,-2466.25 1128.88,-2490.75"/>
<polygon fill="none" stroke="black" points="1089.38,-2466.25 1089.38,-2490.75 1128.88,-2490.75 1128.88,-2466.25 1089.38,-2466.25"/>
<text text-anchor="start" x="1093.38" y="-2473.45" font-family="arial" font-size="14.00">GND</text>
</g>
<!-- _GND_10 -->
<g id="node18" class="node">
<title>_GND_10</title>
<polygon fill="#ffffff" stroke="black" points="224.25,-2255.75 184.75,-2255.75 184.75,-2231.25 224.25,-2231.25 224.25,-2255.75"/>
<polygon fill="none" stroke="black" points="184.75,-2231.25 184.75,-2255.75 224.25,-2255.75 224.25,-2231.25 184.75,-2231.25"/>
<text text-anchor="start" x="188.75" y="-2238.45" font-family="arial" font-size="14.00">GND</text>
</g>
<!-- _GND_10--W3 -->
<g id="edge81" class="edge">
<title>_GND_10:e--W3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M225.25,-2243.5C376.92,-2243.5 414.83,-2243.25 566.5,-2243.25"/>
</g>
<!-- _GND_11 -->
<g id="node19" class="node">
<title>_GND_11</title>
<polygon fill="#ffffff" stroke="black" points="1128.88,-2255.75 1089.38,-2255.75 1089.38,-2231.25 1128.88,-2231.25 1128.88,-2255.75"/>
<polygon fill="none" stroke="black" points="1089.38,-2231.25 1089.38,-2255.75 1128.88,-2255.75 1128.88,-2231.25 1089.38,-2231.25"/>
<text text-anchor="start" x="1093.38" y="-2238.45" font-family="arial" font-size="14.00">GND</text>
</g>
<!-- W1--_GND_1 -->
<g id="edge56" class="edge">
<title>W1:e--_GND_1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M883.5,-2016C976.04,-2016.26 998.65,-2024.76 1088.38,-2024.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M883.5,-2018C975.34,-2018.13 997.94,-2026.63 1088.38,-2026.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M883.5,-2020C974.63,-2020 997.24,-2028.5 1088.38,-2028.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M883.5,-2022C973.93,-2021.87 996.54,-2030.37 1088.38,-2030.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M883.5,-2024C973.23,-2023.74 995.83,-2032.24 1088.38,-2032.5"/>
</g>
<!-- W1--_GND_2 -->
<g id="edge58" class="edge">
<title>W1:e--_GND_2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M883.5,-1986C972.99,-1986.37 995.51,-1975.87 1088.38,-1975.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M883.5,-1988C973.83,-1988.19 996.35,-1977.69 1088.38,-1977.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M883.5,-1990C974.68,-1990 997.2,-1979.5 1088.38,-1979.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M883.5,-1992C975.52,-1991.81 998.04,-1981.31 1088.38,-1981.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M883.5,-1994C976.37,-1993.63 998.89,-1983.13 1088.38,-1983.5"/>
</g>
<!-- W1--_GND_3 -->
<g id="edge60" class="edge">
<title>W1:e--_GND_3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M883.5,-1746C974.47,-1746 997.23,-1745.5 1088.38,-1745.5"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M883.5,-1748C974.51,-1748 997.28,-1747.5 1088.38,-1747.5"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M883.5,-1750C974.56,-1750 997.32,-1749.5 1088.38,-1749.5"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M883.5,-1752C974.6,-1752 997.36,-1751.5 1088.38,-1751.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M883.5,-1754C974.64,-1754 997.41,-1753.5 1088.38,-1753.5"/>
</g>
<!-- W1--_GND_4 -->
<g id="edge62" class="edge">
<title>W1:e--_GND_4:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M883.5,-1626C974.47,-1626 997.23,-1625.5 1088.38,-1625.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M883.5,-1628C974.51,-1628 997.28,-1627.5 1088.38,-1627.5"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M883.5,-1630C974.56,-1630 997.32,-1629.5 1088.38,-1629.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M883.5,-1632C974.6,-1632 997.36,-1631.5 1088.38,-1631.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M883.5,-1634C974.64,-1634 997.41,-1633.5 1088.38,-1633.5"/>
</g>
<!-- W1--_GND_5 -->
<g id="edge64" class="edge">
<title>W1:e--_GND_5:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M883.5,-1566C974.47,-1566 997.23,-1565.5 1088.38,-1565.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M883.5,-1568C974.51,-1568 997.28,-1567.5 1088.38,-1567.5"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M883.5,-1570C974.56,-1570 997.32,-1569.5 1088.38,-1569.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M883.5,-1572C974.6,-1572 997.36,-1571.5 1088.38,-1571.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M883.5,-1574C974.64,-1574 997.41,-1573.5 1088.38,-1573.5"/>
</g>
<!-- W1--_GND_6 -->
<g id="edge66" class="edge">
<title>W1:e--_GND_6:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M883.5,-1056C974.64,-1056 997.41,-1056.5 1088.38,-1056.5"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M883.5,-1058C974.6,-1058 997.36,-1058.5 1088.38,-1058.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M883.5,-1060C974.56,-1060 997.32,-1060.5 1088.38,-1060.5"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M883.5,-1062C974.51,-1062 997.28,-1062.5 1088.38,-1062.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M883.5,-1064C974.47,-1064 997.23,-1064.5 1088.38,-1064.5"/>
</g>
<!-- W1--_GND_7 -->
<g id="edge68" class="edge">
<title>W1:e--_GND_7:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M883.5,-786C974.64,-786 997.41,-786.5 1088.38,-786.5"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M883.5,-788C974.6,-788 997.36,-788.5 1088.38,-788.5"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M883.5,-790C974.56,-790 997.32,-790.5 1088.38,-790.5"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M883.5,-792C974.51,-792 997.28,-792.5 1088.38,-792.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M883.5,-794C974.47,-794 997.23,-794.5 1088.38,-794.5"/>
</g>
<!-- W2--shield1 -->
<g id="edge75" class="edge">
<title>W2:e--shield1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M906,-2723.25C981.94,-2723.25 993.06,-2672 1069,-2672"/>
</g>
<!-- W2--_S_1 -->
<g id="edge72" class="edge">
<title>W2:e--_S_1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M906,-2825.25C991.19,-2827.68 1007.54,-2865.93 1085.38,-2863.5"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M906,-2827.25C989.35,-2828.46 1005.7,-2866.71 1085.38,-2865.5"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M906,-2829.25C987.51,-2829.25 1003.86,-2867.5 1085.38,-2867.5"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M906,-2831.25C985.68,-2830.04 1002.02,-2868.29 1085.38,-2869.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M906,-2833.25C983.84,-2830.82 1000.18,-2869.07 1085.38,-2871.5"/>
</g>
<!-- W2--_S_2 -->
<g id="edge73" class="edge">
<title>W2:e--_S_2:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M906,-2795.25C989.03,-2796.44 1008.04,-2815.69 1085.38,-2814.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M906,-2797.25C987.6,-2797.84 1006.62,-2817.09 1085.38,-2816.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M906,-2799.25C986.18,-2799.25 1005.2,-2818.5 1085.38,-2818.5"/>
<path fill="none" stroke="#ff0000" stroke-width="2" d="M906,-2801.25C984.76,-2800.66 1003.77,-2819.91 1085.38,-2820.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M906,-2803.25C983.33,-2802.06 1002.35,-2821.31 1085.38,-2822.5"/>
</g>
<!-- W2--_S_3 -->
<g id="edge74" class="edge">
<title>W2:e--_S_3:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M906,-2765.25C985.77,-2765.25 1005.7,-2765.5 1085.38,-2765.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M906,-2767.25C985.75,-2767.25 1005.68,-2767.5 1085.38,-2767.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M906,-2769.25C985.72,-2769.25 1005.65,-2769.5 1085.38,-2769.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M906,-2771.25C985.7,-2771.25 1005.63,-2771.5 1085.38,-2771.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M906,-2773.25C985.67,-2773.25 1005.6,-2773.5 1085.38,-2773.5"/>
</g>
<!-- W3--Mag -->
<g id="edge78" class="edge">
<title>W3:e--Mag:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M911.5,-2315.25C982.05,-2315.26 999.76,-2314.01 1070.88,-2314"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M911.5,-2317.25C982.19,-2317.25 999.9,-2316 1070.88,-2316"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M911.5,-2319.25C982.34,-2319.25 1000.04,-2318 1070.88,-2318"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M911.5,-2321.25C982.48,-2321.25 1000.18,-2320 1070.88,-2320"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M911.5,-2323.25C982.62,-2323.24 1000.32,-2321.99 1070.88,-2322"/>
</g>
<!-- W3--Mag -->
<g id="edge80" class="edge">
<title>W3:e--Mag:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M911.5,-2285.25C990.04,-2288.49 1000.19,-2341.24 1070.88,-2338"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M911.5,-2287.25C988.08,-2288.87 998.23,-2341.62 1070.88,-2340"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M911.5,-2289.25C986.11,-2289.25 996.26,-2342 1070.88,-2342"/>
<path fill="none" stroke="#0066ff" stroke-width="2" d="M911.5,-2291.25C984.15,-2289.63 994.3,-2342.38 1070.88,-2344"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M911.5,-2293.25C982.18,-2290.01 992.33,-2342.76 1070.88,-2346"/>
</g>
<!-- W3--_GND_11 -->
<g id="edge82" class="edge">
<title>W3:e--_GND_11:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M911.5,-2243.25C990.11,-2243.25 1009.76,-2243.5 1088.38,-2243.5"/>
</g>
<!-- W4--VPX J1 -->
<g id="edge84" class="edge">
<title>W4:e--VPX J1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M925,-2555.25C990.17,-2557.67 1003.98,-2525.42 1076.5,-2523"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M925,-2557.25C992,-2558.46 1005.82,-2526.21 1076.5,-2525"/>
<path fill="none" stroke="#ffffff" stroke-width="2" d="M925,-2559.25C993.84,-2559.25 1007.66,-2527 1076.5,-2527"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M925,-2561.25C995.68,-2560.04 1009.5,-2527.79 1076.5,-2529"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M925,-2563.25C997.52,-2560.83 1011.33,-2528.58 1076.5,-2531"/>
</g>
<!-- W4--VPX J1 -->
<g id="edge86" class="edge">
<title>W4:e--VPX J1:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M925,-2525.25C999.23,-2528.33 1010.06,-2574.08 1076.5,-2571"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M925,-2527.25C997.28,-2528.79 1008.11,-2574.54 1076.5,-2573"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M925,-2529.25C995.34,-2529.25 1006.16,-2575 1076.5,-2575"/>
<path fill="none" stroke="#895956" stroke-width="2" d="M925,-2531.25C993.39,-2529.71 1004.22,-2575.46 1076.5,-2577"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M925,-2533.25C991.44,-2530.17 1002.27,-2575.92 1076.5,-2579"/>
</g>
<!-- W4--_GND_9 -->
<g id="edge88" class="edge">
<title>W4:e--_GND_9:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M925,-2483.25C997.64,-2483.25 1015.73,-2478.5 1088.38,-2478.5"/>
</g>
<!-- W5--1X -->
<g id="edge90" class="edge">
<title>W5:e--1X:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1592.25,-2834.25C1654.43,-2834.75 1670.19,-2826 1736.25,-2825.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M1592.25,-2836.25C1655.4,-2836.5 1671.16,-2827.75 1736.25,-2827.5"/>
<path fill="none" stroke="#999999" stroke-width="2" d="M1592.25,-2838.25C1656.37,-2838.25 1672.13,-2829.5 1736.25,-2829.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M1592.25,-2840.25C1657.34,-2840 1673.1,-2831.25 1736.25,-2831.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1592.25,-2842.25C1658.31,-2841.75 1674.07,-2833 1736.25,-2833.5"/>
</g>
<!-- W5--1X -->
<g id="edge92" class="edge">
<title>W5:e--1X:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1592.25,-2804.25C1655.58,-2804.31 1671.56,-2801.56 1736.25,-2801.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M1592.25,-2806.25C1655.92,-2806.28 1671.9,-2803.53 1736.25,-2803.5"/>
<path fill="none" stroke="#ffff00" stroke-width="2" d="M1592.25,-2808.25C1656.26,-2808.25 1672.24,-2805.5 1736.25,-2805.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M1592.25,-2810.25C1656.6,-2810.22 1672.58,-2807.47 1736.25,-2807.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1592.25,-2812.25C1656.94,-2812.19 1672.92,-2809.44 1736.25,-2809.5"/>
</g>
<!-- W5--1X -->
<g id="edge94" class="edge">
<title>W5:e--1X:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1592.25,-2774.25C1657.06,-2774.33 1673.03,-2777.58 1736.25,-2777.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M1592.25,-2776.25C1656.67,-2776.29 1672.63,-2779.54 1736.25,-2779.5"/>
<path fill="none" stroke="#ff66cc" stroke-width="2" d="M1592.25,-2778.25C1656.27,-2778.25 1672.23,-2781.5 1736.25,-2781.5"/>
<path fill="none" stroke="#00ff00" stroke-width="2" d="M1592.25,-2780.25C1655.87,-2780.21 1671.83,-2783.46 1736.25,-2783.5"/>
<path fill="none" stroke="#000000" stroke-width="2" d="M1592.25,-2782.25C1655.47,-2782.17 1671.44,-2785.42 1736.25,-2785.5"/>
</g>
<!-- W5--1X -->
<g id="edge96" class="edge">
<title>W5:e--1X:w</title>
<path fill="none" stroke="#000000" stroke-width="2" d="M1592.25,-2732.25C1669.48,-2732.25 1659.02,-2829.5 1736.25,-2829.5"/>
</g>
</g>
</svg>
<h2>Bill of Materials</h2>
<table style="border:1px solid #000000; font-size: 14pt; border-spacing: 0px">
<tr>
<th style="text-align:left; border:1px solid #000000; padding: 8px">Id</th>
<th style="text-align:left; border:1px solid #000000; padding: 8px">Description</th>
<th style="text-align:left; border:1px solid #000000; padding: 8px">Qty</th>
<th style="text-align:left; border:1px solid #000000; padding: 8px">Unit</th>
<th style="text-align:left; border:1px solid #000000; padding: 8px">Designators</th>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">1</td>
<td style="border:1px solid #000000; padding: 4px">Connector, 1 pins</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">1</td>
<td style="border:1px solid #000000; padding: 4px"></td>
<td style="border:1px solid #000000; padding: 4px">shield1</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">2</td>
<td style="border:1px solid #000000; padding: 4px">Connector, GND</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">11</td>
<td style="border:1px solid #000000; padding: 4px"></td>
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">3</td>
<td style="border:1px solid #000000; padding: 4px">Connector, HEW.LM.368.XLNP, 3 pins</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">1</td>
<td style="border:1px solid #000000; padding: 4px"></td>
<td style="border:1px solid #000000; padding: 4px">1X</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">4</td>
<td style="border:1px solid #000000; padding: 4px">Connector, HEW.LM.368.XLNP, 68 pins</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">1</td>
<td style="border:1px solid #000000; padding: 4px"></td>
<td style="border:1px solid #000000; padding: 4px">Veronte CEX</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">5</td>
<td style="border:1px solid #000000; padding: 4px">Connector, J1, 3 pins</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">1</td>
<td style="border:1px solid #000000; padding: 4px"></td>
<td style="border:1px solid #000000; padding: 4px">VPX J1</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">6</td>
<td style="border:1px solid #000000; padding: 4px">Connector, Mag, 3 pins</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">1</td>
<td style="border:1px solid #000000; padding: 4px"></td>
<td style="border:1px solid #000000; padding: 4px">Mag</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">7</td>
<td style="border:1px solid #000000; padding: 4px">Connector, splice</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">3</td>
<td style="border:1px solid #000000; padding: 4px"></td>
<td style="border:1px solid #000000; padding: 4px"></td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">8</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, BK</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">24.0</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
<td style="border:1px solid #000000; padding: 4px">W1, W2</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">9</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, BKBN</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">24.0</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
<td style="border:1px solid #000000; padding: 4px">W1</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">10</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, BKWH</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">24.0</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
<td style="border:1px solid #000000; padding: 4px">W1</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">11</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, BN</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">36.0</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
<td style="border:1px solid #000000; padding: 4px">W1</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">12</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, BNGY</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">24.0</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
<td style="border:1px solid #000000; padding: 4px">W1</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">13</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, BNPK</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">136.0</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
<td style="border:1px solid #000000; padding: 4px">W1, W3</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">14</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, BNYE</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">99.5</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
<td style="border:1px solid #000000; padding: 4px">W1, W4</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">15</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, BU</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">36.0</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
<td style="border:1px solid #000000; padding: 4px">W1, W2</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">16</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, BUBN</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">24.0</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
<td style="border:1px solid #000000; padding: 4px">W1</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">17</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, BURD</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">24.0</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
<td style="border:1px solid #000000; padding: 4px">W1</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">18</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, BUWH</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">136.0</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
<td style="border:1px solid #000000; padding: 4px">W1, W3</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">19</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, GN</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">36.0</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
<td style="border:1px solid #000000; padding: 4px">W1</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">20</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, GNBN</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">24.0</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
<td style="border:1px solid #000000; padding: 4px">W1</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">21</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, GNGY</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">24.0</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
<td style="border:1px solid #000000; padding: 4px">W1</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">22</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, GNGY</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.0</td>
<td style="border:1px solid #000000; padding: 4px">m</td>
<td style="border:1px solid #000000; padding: 4px">W5</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">23</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, GNPK</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">24.0</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
<td style="border:1px solid #000000; padding: 4px">W1</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">24</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, GNPK</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.0</td>
<td style="border:1px solid #000000; padding: 4px">m</td>
<td style="border:1px solid #000000; padding: 4px">W5</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">25</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, GNWH</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">24.0</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
<td style="border:1px solid #000000; padding: 4px">W1</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">26</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, GNYE</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">24.0</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
<td style="border:1px solid #000000; padding: 4px">W1</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">27</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, GNYE</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">0.0</td>
<td style="border:1px solid #000000; padding: 4px">m</td>
<td style="border:1px solid #000000; padding: 4px">W5</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">28</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, GY</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">36.0</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
<td style="border:1px solid #000000; padding: 4px">W1</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">29</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, GYWH</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">24.0</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
<td style="border:1px solid #000000; padding: 4px">W1</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">30</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, PK</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">48.0</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
<td style="border:1px solid #000000; padding: 4px">W1</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">31</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, PKGY</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">24.0</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
<td style="border:1px solid #000000; padding: 4px">W1</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">32</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, PKWH</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">24.0</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
<td style="border:1px solid #000000; padding: 4px">W1</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">33</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, PKYE</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">24.0</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
<td style="border:1px solid #000000; padding: 4px">W1</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">34</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, RD</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">36.0</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
<td style="border:1px solid #000000; padding: 4px">W1, W2</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">35</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, RDBN</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">24.0</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
<td style="border:1px solid #000000; padding: 4px">W1</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">36</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, RDWH</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">24.0</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
<td style="border:1px solid #000000; padding: 4px">W1</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">37</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, VT</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">12.0</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
<td style="border:1px solid #000000; padding: 4px">W1</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">38</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, WH</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">36.0</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
<td style="border:1px solid #000000; padding: 4px">W1</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">39</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, YE</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">36.0</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
<td style="border:1px solid #000000; padding: 4px">W1</td>
</tr>
<tr>
<td style="border:1px solid #000000; padding: 4px">40</td>
<td style="border:1px solid #000000; padding: 4px">Wire, 22 AWG, YEWH</td>
<td style="border:1px solid #000000; padding: 4px; text-align:right">99.5</td>
<td style="border:1px solid #000000; padding: 4px">Inches</td>
<td style="border:1px solid #000000; padding: 4px">W1, W4</td>
</tr>
</table>
</body></html>
|