@tscircuit/schematic-trace-solver 0.0.87 → 0.0.89

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (118) hide show
  1. package/.agents/skills/schematic-trace-visualization/SKILL.md +115 -0
  2. package/.github/scripts/import-json-bug-report.ts +15 -1
  3. package/.github/workflows/json-bug-report.yml +3 -2
  4. package/AGENTS.md +22 -0
  5. package/dist/index.js +30 -22
  6. package/lib/solvers/Example28Solver/reroute.ts +10 -0
  7. package/lib/testing/PipelineStageDebugRunner.ts +344 -0
  8. package/package.json +3 -2
  9. package/scripts/debug-pipeline-stages.ts +146 -0
  10. package/site/bug-reports/bug-report-20260706T220324Z.page.tsx +4 -0
  11. package/site/bug-reports/bug-report-20260707T020342Z.page.tsx +4 -0
  12. package/site/bug-reports/bug-report-20260707T092615Z.page.tsx +4 -0
  13. package/site/bug-reports/bug-report-20260707T134549Z.page.tsx +4 -0
  14. package/site/bug-reports/bug-report-20260707T134722Z.page.tsx +4 -0
  15. package/site/bug-reports/bug-report-20260707T140410Z.page.tsx +4 -0
  16. package/site/bug-reports/bug-report-20260707T141025Z.page.tsx +4 -0
  17. package/site/bug-reports/bug-report-20260707T141421Z.page.tsx +4 -0
  18. package/tests/bug-reports/bug-report-20260706T213649Z/__snapshots__/bug-report-20260706T213649Z.snap.svg +386 -0
  19. package/tests/bug-reports/bug-report-20260706T213649Z/bug-report-20260706T213649Z.json +1471 -0
  20. package/tests/bug-reports/bug-report-20260706T213649Z/bug-report-20260706T213649Z.test.ts +12 -0
  21. package/tests/bug-reports/bug-report-20260706T220324Z/__snapshots__/bug-report-20260706T220324Z.snap.svg +357 -3448
  22. package/tests/bug-reports/bug-report-20260707T020342Z/__snapshots__/bug-report-20260707T020342Z.snap.svg +64 -0
  23. package/tests/bug-reports/bug-report-20260707T020342Z/bug-report-20260707T020342Z.json +233 -0
  24. package/tests/bug-reports/bug-report-20260707T020342Z/bug-report-20260707T020342Z.test.ts +12 -0
  25. package/tests/bug-reports/bug-report-20260707T092615Z/__snapshots__/bug-report-20260707T092615Z.snap.svg +252 -0
  26. package/tests/bug-reports/bug-report-20260707T092615Z/bug-report-20260707T092615Z.json +1392 -0
  27. package/tests/bug-reports/bug-report-20260707T092615Z/bug-report-20260707T092615Z.test.ts +12 -0
  28. package/tests/bug-reports/bug-report-20260707T134549Z/__snapshots__/bug-report-20260707T134549Z.snap.svg +124 -0
  29. package/tests/bug-reports/bug-report-20260707T134549Z/bug-report-20260707T134549Z.json +652 -0
  30. package/tests/bug-reports/bug-report-20260707T134549Z/bug-report-20260707T134549Z.test.ts +12 -0
  31. package/tests/bug-reports/bug-report-20260707T134722Z/__snapshots__/bug-report-20260707T134722Z.snap.svg +73 -0
  32. package/tests/bug-reports/bug-report-20260707T134722Z/bug-report-20260707T134722Z.json +265 -0
  33. package/tests/bug-reports/bug-report-20260707T134722Z/bug-report-20260707T134722Z.test.ts +12 -0
  34. package/tests/bug-reports/bug-report-20260707T140410Z/__snapshots__/bug-report-20260707T140410Z.snap.svg +154 -0
  35. package/tests/bug-reports/bug-report-20260707T140410Z/bug-report-20260707T140410Z.json +610 -0
  36. package/tests/bug-reports/bug-report-20260707T140410Z/bug-report-20260707T140410Z.test.ts +12 -0
  37. package/tests/bug-reports/bug-report-20260707T141025Z/__snapshots__/bug-report-20260707T141025Z.snap.svg +67 -0
  38. package/tests/bug-reports/bug-report-20260707T141025Z/bug-report-20260707T141025Z.json +185 -0
  39. package/tests/bug-reports/bug-report-20260707T141025Z/bug-report-20260707T141025Z.test.ts +12 -0
  40. package/tests/bug-reports/bug-report-20260707T141421Z/__snapshots__/bug-report-20260707T141421Z.snap.svg +114 -0
  41. package/tests/bug-reports/bug-report-20260707T141421Z/bug-report-20260707T141421Z.json +499 -0
  42. package/tests/bug-reports/bug-report-20260707T141421Z/bug-report-20260707T141421Z.test.ts +23 -0
  43. package/tests/examples/__snapshots__/example01.snap.svg +59 -162
  44. package/tests/examples/__snapshots__/example02.snap.svg +64 -273
  45. package/tests/examples/__snapshots__/example03.snap.svg +85 -290
  46. package/tests/examples/__snapshots__/example04.snap.svg +50 -94
  47. package/tests/examples/__snapshots__/example05.snap.svg +73 -191
  48. package/tests/examples/__snapshots__/example06.snap.svg +49 -95
  49. package/tests/examples/__snapshots__/example07.snap.svg +65 -218
  50. package/tests/examples/__snapshots__/example08.snap.svg +61 -143
  51. package/tests/examples/__snapshots__/example09.snap.svg +123 -493
  52. package/tests/examples/__snapshots__/example10.snap.svg +57 -136
  53. package/tests/examples/__snapshots__/example11.snap.svg +64 -173
  54. package/tests/examples/__snapshots__/example12.snap.svg +58 -159
  55. package/tests/examples/__snapshots__/example13.snap.svg +78 -348
  56. package/tests/examples/__snapshots__/example14.snap.svg +77 -293
  57. package/tests/examples/__snapshots__/example15.snap.svg +140 -984
  58. package/tests/examples/__snapshots__/example16.snap.svg +62 -162
  59. package/tests/examples/__snapshots__/example17.snap.svg +67 -198
  60. package/tests/examples/__snapshots__/example18.snap.svg +69 -249
  61. package/tests/examples/__snapshots__/example19.snap.svg +63 -202
  62. package/tests/examples/__snapshots__/example20.snap.svg +60 -148
  63. package/tests/examples/__snapshots__/example21.snap.svg +73 -298
  64. package/tests/examples/__snapshots__/example22.snap.svg +62 -156
  65. package/tests/examples/__snapshots__/example23.snap.svg +66 -172
  66. package/tests/examples/__snapshots__/example24.snap.svg +64 -164
  67. package/tests/examples/__snapshots__/example25.snap.svg +76 -299
  68. package/tests/examples/__snapshots__/example26.snap.svg +64 -164
  69. package/tests/examples/__snapshots__/example27.snap.svg +83 -300
  70. package/tests/examples/__snapshots__/example28.snap.svg +54 -115
  71. package/tests/examples/__snapshots__/example29.snap.svg +257 -1299
  72. package/tests/examples/__snapshots__/example30.snap.svg +91 -293
  73. package/tests/examples/__snapshots__/example31.snap.svg +47 -88
  74. package/tests/examples/__snapshots__/example32.snap.svg +107 -405
  75. package/tests/examples/__snapshots__/example33.snap.svg +71 -180
  76. package/tests/examples/__snapshots__/example34.snap.svg +55 -116
  77. package/tests/examples/__snapshots__/example35.snap.svg +69 -176
  78. package/tests/examples/__snapshots__/example36.snap.svg +65 -159
  79. package/tests/examples/__snapshots__/example37.snap.svg +75 -223
  80. package/tests/examples/__snapshots__/example38.snap.svg +46 -76
  81. package/tests/examples/__snapshots__/example39.snap.svg +51 -106
  82. package/tests/examples/__snapshots__/example40.snap.svg +83 -270
  83. package/tests/examples/__snapshots__/example41.snap.svg +54 -118
  84. package/tests/examples/__snapshots__/example42.snap.svg +67 -194
  85. package/tests/examples/__snapshots__/example43.snap.svg +62 -168
  86. package/tests/examples/__snapshots__/example44.snap.svg +86 -369
  87. package/tests/examples/__snapshots__/example45.snap.svg +60 -169
  88. package/tests/examples/__snapshots__/example46.snap.svg +80 -342
  89. package/tests/examples/__snapshots__/example47.snap.svg +82 -323
  90. package/tests/examples/__snapshots__/example48.snap.svg +64 -167
  91. package/tests/examples/__snapshots__/example49.snap.svg +120 -565
  92. package/tests/examples/__snapshots__/example50.snap.svg +71 -189
  93. package/tests/fixtures/getLastStepGraphicsObject.ts +38 -0
  94. package/tests/fixtures/getLastStepSvg.ts +9 -0
  95. package/tests/repros/__snapshots__/bugreport-001-gnd-overlap.snap.svg +67 -218
  96. package/tests/repros/__snapshots__/manufacturePartNumber-text-box.snap.svg +47 -87
  97. package/tests/repros/__snapshots__/netlabel-connector-through-rail-label.snap.svg +73 -272
  98. package/tests/repros/__snapshots__/repro-atmega328p-fault-pullup.snap.svg +88 -0
  99. package/tests/repros/__snapshots__/repro-atmega328p-missing-gnd-netlabel.snap.svg +118 -0
  100. package/tests/repros/__snapshots__/repro-bq24074-battery-charger.snap.svg +94 -395
  101. package/tests/repros/__snapshots__/repro-cc2340r5.snap.svg +88 -467
  102. package/tests/repros/__snapshots__/repro-ina237-current-monitor.snap.svg +109 -569
  103. package/tests/repros/__snapshots__/repro130-bq27441-fuel-gauge-trace-through-c1.snap.svg +95 -459
  104. package/tests/repros/__snapshots__/repro51-overlap-junction-crossing.snap.svg +64 -176
  105. package/tests/repros/__snapshots__/trace-overlap-box-resistor.snap.svg +51 -112
  106. package/tests/repros/assets/repro-atmega328p-fault-pullup.input.json +239 -0
  107. package/tests/repros/assets/repro-atmega328p-missing-gnd-netlabel.input.json +432 -0
  108. package/tests/repros/repro-atmega328p-fault-pullup.test.ts +11 -0
  109. package/tests/repros/repro-atmega328p-missing-gnd-netlabel.test.ts +16 -0
  110. package/tests/solvers/SchematicTraceSingleLineSolver2/__snapshots__/SchematicTraceSingleLineSolver2_01-example17-d1_1-u1_1.snap.svg +59 -159
  111. package/tests/solvers/TraceCleanupSolver/__snapshots__/TraceCleanupSolver.snap.svg +54 -118
  112. package/tests/solvers/TraceLabelOverlapAvoidanceSolver/__snapshots__/TraceLabelOverlapAvoidanceSolver.snap.svg +58 -245
  113. package/tests/solvers/TraceLabelOverlapAvoidanceSolver/renderComparisonView/__snapshots__/renderComparisonView01.snap.svg +73 -222
  114. package/tests/solvers/TraceLabelOverlapAvoidanceSolver/renderComparisonView/__snapshots__/renderComparisonView02.snap.svg +65 -204
  115. package/tests/solvers/TraceLabelOverlapAvoidanceSolver/renderComparisonView/__snapshots__/renderComparisonView03.snap.svg +65 -183
  116. package/tests/solvers/TraceLabelOverlapAvoidanceSolver/sub-solver/__snapshots__/MergedNetLabelObstacles.snap.svg +54 -139
  117. package/tests/solvers/TraceLabelOverlapAvoidanceSolver/sub-solver/__snapshots__/OverlapAvoidanceStepSolver.snap.svg +61 -215
  118. package/tests/solvers/TraceLabelOverlapAvoidanceSolver/sub-solver/__snapshots__/SingleOverlapSolver.snap.svg +54 -124
@@ -1,396 +1,95 @@
1
- <svg width="640" height="640" viewBox="0 0 640 640" xmlns="http://www.w3.org/2000/svg">
2
- <rect width="100%" height="100%" fill="white" />
3
- <g>
4
- <circle data-type="point" data-label="J1.1
5
- x+" data-x="-3.1600000000000006" data-y="-0.10500000000000029" cx="213.5399284862932" cy="295.8045292014303" r="3" fill="hsl(218, 100%, 50%, 0.8)" />
6
- </g>
7
- <g>
8
- <circle data-type="point" data-label="J1.2
9
- x+" data-x="-3.1600000000000006" data-y="-0.30500000000000027" cx="213.5399284862932" cy="309.15375446960667" r="3" fill="hsl(219, 100%, 50%, 0.8)" />
10
- </g>
11
- <g>
12
- <circle data-type="point" data-label="U1.1
13
- x-" data-x="-1.9500000000000002" data-y="-0.7000000000000001" cx="294.30274135876044" cy="335.51847437425505" r="3" fill="hsl(319, 100%, 50%, 0.8)" />
14
- </g>
15
- <g>
16
- <circle data-type="point" data-label="U1.2
17
- x-" data-x="-1.9500000000000002" data-y="-0.9" cx="294.30274135876044" cy="348.86769964243143" r="3" fill="hsl(320, 100%, 50%, 0.8)" />
18
- </g>
19
- <g>
20
- <circle data-type="point" data-label="U1.4
21
- x+" data-x="1.9500000000000002" data-y="-0.85" cx="554.6126340882001" cy="345.5303933253873" r="3" fill="hsl(322, 100%, 50%, 0.8)" />
22
- </g>
23
- <g>
24
- <circle data-type="point" data-label="U1.5
25
- x+" data-x="1.9500000000000002" data-y="-0.2499999999999999" cx="554.6126340882001" cy="305.48271752085816" r="3" fill="hsl(323, 100%, 50%, 0.8)" />
26
- </g>
27
- <g>
28
- <circle data-type="point" data-label="U1.6
29
- x+" data-x="1.9500000000000002" data-y="-0.44999999999999996" cx="554.6126340882001" cy="318.83194278903454" r="3" fill="hsl(324, 100%, 50%, 0.8)" />
30
- </g>
31
- <g>
32
- <circle data-type="point" data-label="U1.7
33
- y+" data-x="-0.44999999999999996" data-y="2.55" cx="394.42193087008343" cy="118.5935637663886" r="3" fill="hsl(325, 100%, 50%, 0.8)" />
34
- </g>
35
- <g>
36
- <circle data-type="point" data-label="U1.8
37
- x-" data-x="-1.9500000000000002" data-y="0.7" cx="294.30274135876044" cy="242.07389749702025" r="3" fill="hsl(326, 100%, 50%, 0.8)" />
38
- </g>
39
- <g>
40
- <circle data-type="point" data-label="U1.9
41
- y+" data-x="0.44999999999999996" data-y="2.55" cx="454.4934445768772" cy="118.5935637663886" r="3" fill="hsl(327, 100%, 50%, 0.8)" />
42
- </g>
43
- <g>
44
- <circle data-type="point" data-label="U1.10
45
- x+" data-x="1.9500000000000002" data-y="0.85" cx="554.6126340882001" cy="232.06197854588797" r="3" fill="hsl(217, 100%, 50%, 0.8)" />
46
- </g>
47
- <g>
48
- <circle data-type="point" data-label="U1.12
49
- y-" data-x="0" data-y="-2.55" cx="424.4576877234803" cy="458.99880810488673" r="3" fill="hsl(219, 100%, 50%, 0.8)" />
50
- </g>
51
- <g>
52
- <circle data-type="point" data-label="U1.13
53
- x-" data-x="-1.9500000000000002" data-y="0.9" cx="294.30274135876044" cy="228.72467222884387" r="3" fill="hsl(220, 100%, 50%, 0.8)" />
54
- </g>
55
- <g>
56
- <circle data-type="point" data-label="U1.14
57
- x+" data-x="1.9500000000000002" data-y="-0.6499999999999999" cx="554.6126340882001" cy="332.1811680572109" r="3" fill="hsl(221, 100%, 50%, 0.8)" />
58
- </g>
59
- <g>
60
- <circle data-type="point" data-label="U1.15
61
- y-" data-x="-0.65" data-y="-2.55" cx="381.07270560190705" cy="458.99880810488673" r="3" fill="hsl(222, 100%, 50%, 0.8)" />
62
- </g>
63
- <g>
64
- <circle data-type="point" data-label="U1.16
65
- y-" data-x="0.65" data-y="-2.55" cx="467.8426698450536" cy="458.99880810488673" r="3" fill="hsl(223, 100%, 50%, 0.8)" />
66
- </g>
67
- <g>
68
- <circle data-type="point" data-label="C1.1
69
- x-" data-x="-4.260000000000002" data-y="2.1149999999999998" cx="140.11918951132293" cy="147.62812872467228" r="3" fill="hsl(121, 100%, 50%, 0.8)" />
70
- </g>
71
- <g>
72
- <circle data-type="point" data-label="C1.2
73
- x+" data-x="-3.160000000000001" data-y="2.1149999999999998" cx="213.53992848629318" cy="147.62812872467228" r="3" fill="hsl(122, 100%, 50%, 0.8)" />
74
- </g>
75
- <g>
76
- <circle data-type="point" data-label="BT1.1
77
- x+" data-x="-2.755" data-y="-2.705" cx="240.57210965435044" cy="469.34445768772343" r="3" fill="hsl(114, 100%, 50%, 0.8)" />
78
- </g>
79
- <g>
80
- <circle data-type="point" data-label="BT1.2
81
- x+" data-x="-2.755" data-y="-2.9050000000000002" cx="240.57210965435044" cy="482.6936829558998" r="3" fill="hsl(115, 100%, 50%, 0.8)" />
82
- </g>
83
- <g>
84
- <circle data-type="point" data-label="BT1.3
85
- x+" data-x="-2.755" data-y="-3.1050000000000004" cx="240.57210965435044" cy="496.04290822407626" r="3" fill="hsl(116, 100%, 50%, 0.8)" />
86
- </g>
87
- <g>
88
- <circle data-type="point" data-label="anchorPoint
89
- orientation: x-" data-x="-2.5550000000000006" data-y="0.9" cx="253.9213349225268" cy="228.72467222884387" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
90
- </g>
91
- <g>
92
- <circle data-type="point" data-label="anchorPoint
93
- orientation: x-" data-x="-4.260000000000002" data-y="2.1149999999999998" cx="140.11918951132293" cy="147.62812872467228" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
94
- </g>
95
- <g>
96
- <circle data-type="point" data-label="anchorPoint
97
- orientation: y-" data-x="-2.6550000000000002" data-y="-0.30500000000000027" cx="247.24672228843863" cy="309.15375446960667" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
98
- </g>
99
- <g>
100
- <circle data-type="point" data-label="anchorPoint
101
- orientation: y-" data-x="2.1500000000000004" data-y="-0.85" cx="567.9618593563766" cy="345.5303933253873" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
102
- </g>
103
- <g>
104
- <circle data-type="point" data-label="anchorPoint
105
- orientation: y-" data-x="-3.059000000000001" data-y="1.664" cx="220.28128724672226" cy="177.73063170441003" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
106
- </g>
107
- <g>
108
- <circle data-type="point" data-label="anchorPoint
109
- orientation: y-" data-x="-2.654" data-y="-3.3060000000000005" cx="247.31346841477952" cy="509.4588796185935" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
110
- </g>
111
- <g>
112
- <circle data-type="point" data-label="anchorPoint
113
- orientation: x-" data-x="-2.531" data-y="-0.9190000000000002" cx="255.523241954708" cy="350.1358760429082" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
114
- </g>
115
- <g>
116
- <circle data-type="point" data-label="anchorPoint
117
- orientation: x-" data-x="-1.9500000000000002" data-y="-0.9" cx="294.30274135876044" cy="348.86769964243143" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
118
- </g>
119
- <g>
120
- <circle data-type="point" data-label="anchorPoint
121
- orientation: x+" data-x="-2.755" data-y="-2.9050000000000002" cx="240.57210965435044" cy="482.6936829558998" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
122
- </g>
123
- <g>
124
- <circle data-type="point" data-label="anchorPoint
125
- orientation: x+" data-x="2.1500000000000004" data-y="-0.2499999999999999" cx="567.9618593563766" cy="305.48271752085816" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
126
- </g>
127
- <g>
128
- <circle data-type="point" data-label="anchorPoint
129
- orientation: x-" data-x="-1.9510000000000005" data-y="2.651" cx="294.23599523241955" cy="111.85220500595952" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
130
- </g>
131
- <g>
132
- <circle data-type="point" data-label="anchorPoint
133
- orientation: x-" data-x="0.39899999999999997" data-y="2.751" cx="451.08939213349225" cy="105.17759237187133" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
134
- </g>
135
- <g>
136
- <circle data-type="point" data-label="anchorPoint
137
- orientation: x-" data-x="-0.7510000000000001" data-y="-3.3009999999999997" cx="374.33134684147797" cy="509.12514898688903" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
138
- </g>
139
- <g>
140
- <circle data-type="point" data-label="anchorPoint
141
- orientation: x-" data-x="-0.7010000000000001" data-y="-2.7009999999999996" cx="377.66865315852203" cy="469.0774731823599" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
142
- </g>
143
- <g>
144
- <circle data-type="point" data-label="anchorPoint
145
- orientation: x-" data-x="0.599" data-y="-2.7009999999999996" cx="464.43861740166864" cy="469.0774731823599" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
146
- </g>
147
- <g>
148
- <polyline data-points="-3.1600000000000006,-0.10500000000000029 -1.9500000000000002,0.9" data-type="line" data-label="" points="213.5399284862932,295.8045292014303 294.30274135876044,228.72467222884387" fill="none" stroke="hsl(181, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
149
- </g>
150
- <g>
151
- <polyline data-points="-3.1600000000000006,-0.10500000000000029 -4.260000000000002,2.1149999999999998" data-type="line" data-label="" points="213.5399284862932,295.8045292014303 140.11918951132293,147.62812872467228" fill="none" stroke="hsl(181, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
152
- </g>
153
- <g>
154
- <polyline data-points="-1.9500000000000002,0.9 -4.260000000000002,2.1149999999999998" data-type="line" data-label="" points="294.30274135876044,228.72467222884387 140.11918951132293,147.62812872467228" fill="none" stroke="hsl(181, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
155
- </g>
156
- <g>
157
- <polyline data-points="-3.1600000000000006,-0.30500000000000027 1.9500000000000002,-0.85" data-type="line" data-label="" points="213.5399284862932,309.15375446960667 554.6126340882001,345.5303933253873" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
158
- </g>
159
- <g>
160
- <polyline data-points="-3.1600000000000006,-0.30500000000000027 1.9500000000000002,-0.44999999999999996" data-type="line" data-label="" points="213.5399284862932,309.15375446960667 554.6126340882001,318.83194278903454" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
161
- </g>
162
- <g>
163
- <polyline data-points="-3.1600000000000006,-0.30500000000000027 -1.9500000000000002,0.7" data-type="line" data-label="" points="213.5399284862932,309.15375446960667 294.30274135876044,242.07389749702025" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
164
- </g>
165
- <g>
166
- <polyline data-points="-3.1600000000000006,-0.30500000000000027 1.9500000000000002,-0.6499999999999999" data-type="line" data-label="" points="213.5399284862932,309.15375446960667 554.6126340882001,332.1811680572109" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
167
- </g>
168
- <g>
169
- <polyline data-points="-3.1600000000000006,-0.30500000000000027 -3.160000000000001,2.1149999999999998" data-type="line" data-label="" points="213.5399284862932,309.15375446960667 213.53992848629318,147.62812872467228" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
170
- </g>
171
- <g>
172
- <polyline data-points="-3.1600000000000006,-0.30500000000000027 -2.755,-3.1050000000000004" data-type="line" data-label="" points="213.5399284862932,309.15375446960667 240.57210965435044,496.04290822407626" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
173
- </g>
174
- <g>
175
- <polyline data-points="1.9500000000000002,-0.85 1.9500000000000002,-0.44999999999999996" data-type="line" data-label="" points="554.6126340882001,345.5303933253873 554.6126340882001,318.83194278903454" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
176
- </g>
177
- <g>
178
- <polyline data-points="1.9500000000000002,-0.85 -1.9500000000000002,0.7" data-type="line" data-label="" points="554.6126340882001,345.5303933253873 294.30274135876044,242.07389749702025" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
179
- </g>
180
- <g>
181
- <polyline data-points="1.9500000000000002,-0.85 1.9500000000000002,-0.6499999999999999" data-type="line" data-label="" points="554.6126340882001,345.5303933253873 554.6126340882001,332.1811680572109" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
182
- </g>
183
- <g>
184
- <polyline data-points="1.9500000000000002,-0.85 -3.160000000000001,2.1149999999999998" data-type="line" data-label="" points="554.6126340882001,345.5303933253873 213.53992848629318,147.62812872467228" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
185
- </g>
186
- <g>
187
- <polyline data-points="1.9500000000000002,-0.85 -2.755,-3.1050000000000004" data-type="line" data-label="" points="554.6126340882001,345.5303933253873 240.57210965435044,496.04290822407626" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
188
- </g>
189
- <g>
190
- <polyline data-points="1.9500000000000002,-0.44999999999999996 -1.9500000000000002,0.7" data-type="line" data-label="" points="554.6126340882001,318.83194278903454 294.30274135876044,242.07389749702025" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
191
- </g>
192
- <g>
193
- <polyline data-points="1.9500000000000002,-0.44999999999999996 1.9500000000000002,-0.6499999999999999" data-type="line" data-label="" points="554.6126340882001,318.83194278903454 554.6126340882001,332.1811680572109" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
194
- </g>
195
- <g>
196
- <polyline data-points="1.9500000000000002,-0.44999999999999996 -3.160000000000001,2.1149999999999998" data-type="line" data-label="" points="554.6126340882001,318.83194278903454 213.53992848629318,147.62812872467228" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
197
- </g>
198
- <g>
199
- <polyline data-points="1.9500000000000002,-0.44999999999999996 -2.755,-3.1050000000000004" data-type="line" data-label="" points="554.6126340882001,318.83194278903454 240.57210965435044,496.04290822407626" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
200
- </g>
201
- <g>
202
- <polyline data-points="-1.9500000000000002,0.7 1.9500000000000002,-0.6499999999999999" data-type="line" data-label="" points="294.30274135876044,242.07389749702025 554.6126340882001,332.1811680572109" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
203
- </g>
204
- <g>
205
- <polyline data-points="-1.9500000000000002,0.7 -3.160000000000001,2.1149999999999998" data-type="line" data-label="" points="294.30274135876044,242.07389749702025 213.53992848629318,147.62812872467228" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
206
- </g>
207
- <g>
208
- <polyline data-points="-1.9500000000000002,0.7 -2.755,-3.1050000000000004" data-type="line" data-label="" points="294.30274135876044,242.07389749702025 240.57210965435044,496.04290822407626" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
209
- </g>
210
- <g>
211
- <polyline data-points="1.9500000000000002,-0.6499999999999999 -3.160000000000001,2.1149999999999998" data-type="line" data-label="" points="554.6126340882001,332.1811680572109 213.53992848629318,147.62812872467228" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
212
- </g>
213
- <g>
214
- <polyline data-points="1.9500000000000002,-0.6499999999999999 -2.755,-3.1050000000000004" data-type="line" data-label="" points="554.6126340882001,332.1811680572109 240.57210965435044,496.04290822407626" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
215
- </g>
216
- <g>
217
- <polyline data-points="-3.160000000000001,2.1149999999999998 -2.755,-3.1050000000000004" data-type="line" data-label="" points="213.53992848629318,147.62812872467228 240.57210965435044,496.04290822407626" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
218
- </g>
219
- <g>
220
- <polyline data-points="-1.9500000000000002,-0.7000000000000001 -2.755,-2.705" data-type="line" data-label="" points="294.30274135876044,335.51847437425505 240.57210965435044,469.34445768772343" fill="none" stroke="hsl(167, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
221
- </g>
222
- <g>
223
- <polyline data-points="-1.9500000000000002,-0.9 -2.755,-2.9050000000000002" data-type="line" data-label="" points="294.30274135876044,348.86769964243143 240.57210965435044,482.6936829558998" fill="none" stroke="hsl(5, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
224
- </g>
225
- <g>
226
- <polyline data-points="1.9500000000000002,-0.2499999999999999 1.9500000000000002,0.85" data-type="line" data-label="" points="554.6126340882001,305.48271752085816 554.6126340882001,232.06197854588797" fill="none" stroke="hsl(158, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
227
- </g>
228
- <g>
229
- <polyline data-points="-1.9500000000000002,0.9 -2.5550000000000006,0.9 -2.5550000000000006,-0.10500000000000029 -3.1600000000000006,-0.10500000000000029" data-type="line" data-label="" points="294.30274135876044,228.72467222884387 253.9213349225268,228.72467222884387 253.9213349225268,295.8045292014303 213.5399284862932,295.8045292014303" fill="none" stroke="purple" stroke-width="1" />
230
- </g>
231
- <g>
232
- <polyline data-points="-1.9500000000000002,0.7 -2.1500000000000004,0.7 -2.1500000000000004,-0.30500000000000027 -3.1600000000000006,-0.30500000000000027" data-type="line" data-label="" points="294.30274135876044,242.07389749702025 280.953516090584,242.07389749702025 280.953516090584,309.15375446960667 213.5399284862932,309.15375446960667" fill="none" stroke="purple" stroke-width="1" />
233
- </g>
234
- <g>
235
- <polyline data-points="1.9500000000000002,-0.44999999999999996 2.1500000000000004,-0.44999999999999996 2.1500000000000004,-0.6499999999999999 1.9500000000000002,-0.6499999999999999" data-type="line" data-label="" points="554.6126340882001,318.83194278903454 567.9618593563766,318.83194278903454 567.9618593563766,332.1811680572109 554.6126340882001,332.1811680572109" fill="none" stroke="purple" stroke-width="1" />
236
- </g>
237
- <g>
238
- <polyline data-points="1.9500000000000002,-0.85 2.1500000000000004,-0.85 2.1500000000000004,-0.6499999999999999 1.9500000000000002,-0.6499999999999999" data-type="line" data-label="" points="554.6126340882001,345.5303933253873 567.9618593563766,345.5303933253873 567.9618593563766,332.1811680572109 554.6126340882001,332.1811680572109" fill="none" stroke="purple" stroke-width="1" />
239
- </g>
240
- <g>
241
- <polyline data-points="1.9500000000000002,-0.2499999999999999 2.1500000000000004,-0.2499999999999999 2.1500000000000004,0.85 1.9500000000000002,0.85" data-type="line" data-label="" points="554.6126340882001,305.48271752085816 567.9618593563766,305.48271752085816 567.9618593563766,232.06197854588797 554.6126340882001,232.06197854588797" fill="none" stroke="purple" stroke-width="1" />
242
- </g>
243
- <g>
244
- <polyline data-points="-1.9500000000000002,-0.7000000000000001 -2.531,-0.7000000000000001 -2.531,-1.7025000000000001 -2.3525,-1.7025000000000001 -2.3525,-2.705 -2.755,-2.705" data-type="line" data-label="" points="294.30274135876044,335.51847437425505 255.523241954708,335.51847437425505 255.523241954708,402.4314660309892 267.4374255065554,402.4314660309892 267.4374255065554,469.34445768772343 240.57210965435044,469.34445768772343" fill="none" stroke="purple" stroke-width="1" />
245
- </g>
246
- <g>
247
- <polyline data-points="-3.160000000000001,2.1149999999999998 -3.059000000000001,2.1149999999999998 -3.059000000000001,1.664" data-type="line" data-label="" points="213.53992848629318,147.62812872467228 220.28128724672226,147.62812872467228 220.28128724672226,177.73063170441003" fill="none" stroke="purple" stroke-width="1" />
248
- </g>
249
- <g>
250
- <polyline data-points="-2.755,-3.1050000000000004 -2.654,-3.1050000000000004 -2.654,-3.3060000000000005" data-type="line" data-label="" points="240.57210965435044,496.04290822407626 247.31346841477952,496.04290822407626 247.31346841477952,509.4588796185935" fill="none" stroke="purple" stroke-width="1" />
251
- </g>
252
- <g>
253
- <polyline data-points="-0.44999999999999996,2.55 -0.44999999999999996,2.5509999999999997 -1.9510000000000005,2.5509999999999997 -1.9510000000000005,2.651" data-type="line" data-label="" points="394.42193087008343,118.5935637663886 394.42193087008343,118.52681764004774 294.23599523241955,118.52681764004774 294.23599523241955,111.85220500595952" fill="none" stroke="purple" stroke-width="1" />
254
- </g>
255
- <g>
256
- <polyline data-points="0.44999999999999996,2.55 0.44999999999999996,2.751 0.39899999999999997,2.751" data-type="line" data-label="" points="454.4934445768772,118.5935637663886 454.4934445768772,105.17759237187133 451.08939213349225,105.17759237187133" fill="none" stroke="purple" stroke-width="1" />
257
- </g>
258
- <g>
259
- <polyline data-points="0,-2.55 0,-3.3009999999999997 -0.7510000000000001,-3.3009999999999997" data-type="line" data-label="" points="424.4576877234803,458.99880810488673 424.4576877234803,509.12514898688903 374.33134684147797,509.12514898688903" fill="none" stroke="purple" stroke-width="1" />
260
- </g>
261
- <g>
262
- <polyline data-points="-0.65,-2.55 -0.65,-2.7009999999999996 -0.7010000000000001,-2.7009999999999996" data-type="line" data-label="" points="381.07270560190705,458.99880810488673 381.07270560190705,469.0774731823599 377.66865315852203,469.0774731823599" fill="none" stroke="purple" stroke-width="1" />
263
- </g>
264
- <g>
265
- <polyline data-points="0.65,-2.55 0.65,-2.7009999999999996 0.599,-2.7009999999999996" data-type="line" data-label="" points="467.8426698450536,458.99880810488673 467.8426698450536,469.0774731823599 464.43861740166864,469.0774731823599" fill="none" stroke="purple" stroke-width="1" />
266
- </g>
267
- <g>
268
- <rect data-type="rect" data-label="schematic_component_0" data-x="-4.460000000000001" data-y="-0.2050000000000003" x="40" y="282.4553039332539" width="173.5399284862932" height="40.047675804529206" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.01498214285714286" />
269
- </g>
270
- <g>
271
- <rect data-type="rect" data-label="schematic_component_1" data-x="0" data-y="0" x="294.30274135876044" y="118.5935637663886" width="260.3098927294397" height="340.40524433849816" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.01498214285714286" />
272
- </g>
273
- <g>
274
- <rect data-type="rect" data-label="schematic_component_2" data-x="-3.7100000000000013" data-y="2.1149999999999998" x="140.11918951132293" y="119.59475566150184" width="73.42073897497025" height="56.06674612634086" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.01498214285714286" />
275
- </g>
276
- <g>
277
- <rect data-type="rect" data-label="schematic_component_3" data-x="-4.205" data-y="-2.9050000000000002" x="47.00834326579269" y="455.99523241954705" width="193.56376638855775" height="53.39690107270559" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.01498214285714286" />
278
- </g>
279
- <g>
280
- <rect data-type="rect" data-label="netId: IN
281
- globalConnNetId: connectivity_net0" data-x="-2.7350000000000008" data-y="0.9" x="229.89272943980927" y="222.05005959475568" width="24.028605482717524" height="13.349225268176383" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.01498214285714286" />
282
- </g>
283
- <g>
284
- <rect data-type="rect" data-label="netId: IN
285
- globalConnNetId: connectivity_net0" data-x="-4.441000000000002" data-y="2.1149999999999998" x="116.02383790226457" y="140.95351609058406" width="24.028605482717467" height="13.349225268176411" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.01498214285714286" />
286
- </g>
287
- <g>
288
- <rect data-type="rect" data-label="netId: GND
289
- globalConnNetId: connectivity_net1" data-x="-2.6550000000000002" data-y="-0.5450000000000003" x="240.5721096543504" y="309.15375446960667" width="13.349225268176411" height="32.038140643623365" fill="#00000066" stroke="#000000" stroke-width="0.01498214285714286" />
290
- </g>
291
- <g>
292
- <rect data-type="rect" data-label="netId: GND
293
- globalConnNetId: connectivity_net1" data-x="2.1500000000000004" data-y="-1.0899999999999999" x="561.2872467222884" y="345.5303933253873" width="13.349225268176383" height="32.038140643623365" fill="#00000066" stroke="#000000" stroke-width="0.01498214285714286" />
294
- </g>
295
- <g>
296
- <rect data-type="rect" data-label="netId: GND
297
- globalConnNetId: connectivity_net1" data-x="-3.059000000000001" data-y="1.424" x="213.60667461263404" y="177.73063170441003" width="13.349225268176411" height="32.038140643623365" fill="#00000066" stroke="#000000" stroke-width="0.01498214285714286" />
298
- </g>
299
- <g>
300
- <rect data-type="rect" data-label="netId: GND
301
- globalConnNetId: connectivity_net1" data-x="-2.654" data-y="-3.5460000000000003" x="240.63885578069133" y="509.4588796185935" width="13.349225268176411" height="32.038140643623365" fill="#00000066" stroke="#000000" stroke-width="0.01498214285714286" />
302
- </g>
303
- <g>
304
- <rect data-type="rect" data-label="netId: TS
305
- globalConnNetId: connectivity_net2" data-x="-2.7110000000000003" data-y="-0.9190000000000002" x="231.49463647199048" y="343.46126340882" width="24.028605482717524" height="13.349225268176383" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.01498214285714286" />
306
- </g>
307
- <g>
308
- <rect data-type="rect" data-label="netId: BAT
309
- globalConnNetId: connectivity_net3" data-x="-2.1910000000000003" data-y="-0.9" x="262.1978545887962" y="342.19308700834324" width="32.038140643623365" height="13.349225268176383" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.01498214285714286" />
310
- </g>
311
- <g>
312
- <rect data-type="rect" data-label="netId: BAT
313
- globalConnNetId: connectivity_net3" data-x="-2.514" data-y="-2.9050000000000002" x="240.63885578069136" y="476.0190703218116" width="32.03814064362331" height="13.34922526817644" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.01498214285714286" />
314
- </g>
315
- <g>
316
- <rect data-type="rect" data-label="netId: OUT
317
- globalConnNetId: connectivity_net4" data-x="2.3900000000000006" data-y="-0.2499999999999999" x="567.9618593563766" y="298.80810488676997" width="32.038140643623365" height="13.349225268176383" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.01498214285714286" />
318
- </g>
319
- <g>
320
- <rect data-type="rect" data-label="netId: N_PGOOD_LED
321
- globalConnNetId: connectivity_net5" data-x="-2.6710000000000003" data-y="2.651" x="198.12157330154952" y="105.17759237187133" width="96.11442193087004" height="13.349225268176411" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.01498214285714286" />
322
- </g>
323
- <g>
324
- <rect data-type="rect" data-label="netId: N_CHG_LED
325
- globalConnNetId: connectivity_net6" data-x="-0.201" data-y="2.751" x="370.99404052443384" y="98.50297973778311" width="80.09535160905841" height="13.349225268176411" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.01498214285714286" />
326
- </g>
327
- <g>
328
- <rect data-type="rect" data-label="netId: ILIM
329
- globalConnNetId: connectivity_net7" data-x="-1.0510000000000002" data-y="-3.3009999999999997" x="334.28367103694876" y="502.4505363528009" width="40.047675804529206" height="13.349225268176383" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.01498214285714286" />
330
- </g>
331
- <g>
332
- <rect data-type="rect" data-label="netId: ITERM
333
- globalConnNetId: connectivity_net8" data-x="-1.061" data-y="-2.7009999999999996" x="329.61144219308704" y="462.40286054827163" width="48.05721096543499" height="13.34922526817644" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.01498214285714286" />
334
- </g>
335
- <g>
336
- <rect data-type="rect" data-label="netId: ISET
337
- globalConnNetId: connectivity_net9" data-x="0.299" data-y="-2.7009999999999996" x="424.39094159713943" y="462.40286054827163" width="40.047675804529206" height="13.34922526817644" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.01498214285714286" />
338
- </g>
339
- <g id="crosshair" style="display: none">
340
- <line id="crosshair-h" y1="0" y2="640" stroke="#666" stroke-width="0.5" />
341
- <line id="crosshair-v" x1="0" x2="640" stroke="#666" stroke-width="0.5" /><text id="coordinates" font-family="monospace" font-size="12" fill="#666"></text>
342
- </g>
343
- <script>
344
- <![CDATA[
345
- document.currentScript.parentElement.addEventListener('mousemove', (e) => {
346
- const svg = e.currentTarget;
347
- const rect = svg.getBoundingClientRect();
348
- const x = e.clientX - rect.left;
349
- const y = e.clientY - rect.top;
350
- const crosshair = svg.getElementById('crosshair');
351
- const h = svg.getElementById('crosshair-h');
352
- const v = svg.getElementById('crosshair-v');
353
- const coords = svg.getElementById('coordinates');
1
+ <svg width="640" height="640" viewBox="0 0 640 640" xmlns="http://www.w3.org/2000/svg"><rect width="100%" height="100%" fill="white"/><g><polyline data-points="-3.1600000000000006,-0.10500000000000029 -1.9500000000000002,0.9" data-type="line" data-label="" points="213.5399284862932,295.8045292014303 294.30274135876044,228.72467222884387" fill="none" stroke="hsl(181, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-3.1600000000000006,-0.10500000000000029 -4.260000000000002,2.1149999999999998" data-type="line" data-label="" points="213.5399284862932,295.8045292014303 140.11918951132293,147.62812872467228" fill="none" stroke="hsl(181, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.9500000000000002,0.9 -4.260000000000002,2.1149999999999998" data-type="line" data-label="" points="294.30274135876044,228.72467222884387 140.11918951132293,147.62812872467228" fill="none" stroke="hsl(181, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-3.1600000000000006,-0.30500000000000027 1.9500000000000002,-0.85" data-type="line" data-label="" points="213.5399284862932,309.15375446960667 554.6126340882001,345.5303933253873" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-3.1600000000000006,-0.30500000000000027 1.9500000000000002,-0.44999999999999996" data-type="line" data-label="" points="213.5399284862932,309.15375446960667 554.6126340882001,318.83194278903454" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-3.1600000000000006,-0.30500000000000027 -1.9500000000000002,0.7" data-type="line" data-label="" points="213.5399284862932,309.15375446960667 294.30274135876044,242.07389749702025" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-3.1600000000000006,-0.30500000000000027 1.9500000000000002,-0.6499999999999999" data-type="line" data-label="" points="213.5399284862932,309.15375446960667 554.6126340882001,332.1811680572109" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-3.1600000000000006,-0.30500000000000027 -3.160000000000001,2.1149999999999998" data-type="line" data-label="" points="213.5399284862932,309.15375446960667 213.53992848629318,147.62812872467228" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-3.1600000000000006,-0.30500000000000027 -2.755,-3.1050000000000004" data-type="line" data-label="" points="213.5399284862932,309.15375446960667 240.57210965435044,496.04290822407626" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.9500000000000002,-0.85 1.9500000000000002,-0.44999999999999996" data-type="line" data-label="" points="554.6126340882001,345.5303933253873 554.6126340882001,318.83194278903454" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.9500000000000002,-0.85 -1.9500000000000002,0.7" data-type="line" data-label="" points="554.6126340882001,345.5303933253873 294.30274135876044,242.07389749702025" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.9500000000000002,-0.85 1.9500000000000002,-0.6499999999999999" data-type="line" data-label="" points="554.6126340882001,345.5303933253873 554.6126340882001,332.1811680572109" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.9500000000000002,-0.85 -3.160000000000001,2.1149999999999998" data-type="line" data-label="" points="554.6126340882001,345.5303933253873 213.53992848629318,147.62812872467228" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.9500000000000002,-0.85 -2.755,-3.1050000000000004" data-type="line" data-label="" points="554.6126340882001,345.5303933253873 240.57210965435044,496.04290822407626" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.9500000000000002,-0.44999999999999996 -1.9500000000000002,0.7" data-type="line" data-label="" points="554.6126340882001,318.83194278903454 294.30274135876044,242.07389749702025" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.9500000000000002,-0.44999999999999996 1.9500000000000002,-0.6499999999999999" data-type="line" data-label="" points="554.6126340882001,318.83194278903454 554.6126340882001,332.1811680572109" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.9500000000000002,-0.44999999999999996 -3.160000000000001,2.1149999999999998" data-type="line" data-label="" points="554.6126340882001,318.83194278903454 213.53992848629318,147.62812872467228" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.9500000000000002,-0.44999999999999996 -2.755,-3.1050000000000004" data-type="line" data-label="" points="554.6126340882001,318.83194278903454 240.57210965435044,496.04290822407626" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.9500000000000002,0.7 1.9500000000000002,-0.6499999999999999" data-type="line" data-label="" points="294.30274135876044,242.07389749702025 554.6126340882001,332.1811680572109" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.9500000000000002,0.7 -3.160000000000001,2.1149999999999998" data-type="line" data-label="" points="294.30274135876044,242.07389749702025 213.53992848629318,147.62812872467228" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.9500000000000002,0.7 -2.755,-3.1050000000000004" data-type="line" data-label="" points="294.30274135876044,242.07389749702025 240.57210965435044,496.04290822407626" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.9500000000000002,-0.6499999999999999 -3.160000000000001,2.1149999999999998" data-type="line" data-label="" points="554.6126340882001,332.1811680572109 213.53992848629318,147.62812872467228" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.9500000000000002,-0.6499999999999999 -2.755,-3.1050000000000004" data-type="line" data-label="" points="554.6126340882001,332.1811680572109 240.57210965435044,496.04290822407626" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-3.160000000000001,2.1149999999999998 -2.755,-3.1050000000000004" data-type="line" data-label="" points="213.53992848629318,147.62812872467228 240.57210965435044,496.04290822407626" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.9500000000000002,-0.7000000000000001 -2.755,-2.705" data-type="line" data-label="" points="294.30274135876044,335.51847437425505 240.57210965435044,469.34445768772343" fill="none" stroke="hsl(167, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.9500000000000002,-0.9 -2.755,-2.9050000000000002" data-type="line" data-label="" points="294.30274135876044,348.86769964243143 240.57210965435044,482.6936829558998" fill="none" stroke="hsl(5, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.9500000000000002,-0.2499999999999999 1.9500000000000002,0.85" data-type="line" data-label="" points="554.6126340882001,305.48271752085816 554.6126340882001,232.06197854588797" fill="none" stroke="hsl(158, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.9500000000000002,0.9 -2.5550000000000006,0.9 -2.5550000000000006,-0.10500000000000029 -3.1600000000000006,-0.10500000000000029" data-type="line" data-label="" points="294.30274135876044,228.72467222884387 253.9213349225268,228.72467222884387 253.9213349225268,295.8045292014303 213.5399284862932,295.8045292014303" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.9500000000000002,0.7 -2.1500000000000004,0.7 -2.1500000000000004,-0.30500000000000027 -3.1600000000000006,-0.30500000000000027" data-type="line" data-label="" points="294.30274135876044,242.07389749702025 280.953516090584,242.07389749702025 280.953516090584,309.15375446960667 213.5399284862932,309.15375446960667" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.9500000000000002,-0.44999999999999996 2.1500000000000004,-0.44999999999999996 2.1500000000000004,-0.6499999999999999 1.9500000000000002,-0.6499999999999999" data-type="line" data-label="" points="554.6126340882001,318.83194278903454 567.9618593563766,318.83194278903454 567.9618593563766,332.1811680572109 554.6126340882001,332.1811680572109" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.9500000000000002,-0.85 2.1500000000000004,-0.85 2.1500000000000004,-0.6499999999999999 1.9500000000000002,-0.6499999999999999" data-type="line" data-label="" points="554.6126340882001,345.5303933253873 567.9618593563766,345.5303933253873 567.9618593563766,332.1811680572109 554.6126340882001,332.1811680572109" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.9500000000000002,-0.2499999999999999 2.1500000000000004,-0.2499999999999999 2.1500000000000004,0.85 1.9500000000000002,0.85" data-type="line" data-label="" points="554.6126340882001,305.48271752085816 567.9618593563766,305.48271752085816 567.9618593563766,232.06197854588797 554.6126340882001,232.06197854588797" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.9500000000000002,-0.7000000000000001 -2.531,-0.7000000000000001 -2.531,-1.7025000000000001 -2.3525,-1.7025000000000001 -2.3525,-2.705 -2.755,-2.705" data-type="line" data-label="" points="294.30274135876044,335.51847437425505 255.523241954708,335.51847437425505 255.523241954708,402.4314660309892 267.4374255065554,402.4314660309892 267.4374255065554,469.34445768772343 240.57210965435044,469.34445768772343" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-3.160000000000001,2.1149999999999998 -3.059000000000001,2.1149999999999998 -3.059000000000001,1.664" data-type="line" data-label="" points="213.53992848629318,147.62812872467228 220.28128724672226,147.62812872467228 220.28128724672226,177.73063170441003" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-2.755,-3.1050000000000004 -2.654,-3.1050000000000004 -2.654,-3.3060000000000005" data-type="line" data-label="" points="240.57210965435044,496.04290822407626 247.31346841477952,496.04290822407626 247.31346841477952,509.4588796185935" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-0.44999999999999996,2.55 -0.44999999999999996,2.5509999999999997 -1.9510000000000005,2.5509999999999997 -1.9510000000000005,2.651" data-type="line" data-label="" points="394.42193087008343,118.5935637663886 394.42193087008343,118.52681764004774 294.23599523241955,118.52681764004774 294.23599523241955,111.85220500595952" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="0.44999999999999996,2.55 0.44999999999999996,2.751 0.39899999999999997,2.751" data-type="line" data-label="" points="454.4934445768772,118.5935637663886 454.4934445768772,105.17759237187133 451.08939213349225,105.17759237187133" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="0,-2.55 0,-3.3009999999999997 -0.7510000000000001,-3.3009999999999997" data-type="line" data-label="" points="424.4576877234803,458.99880810488673 424.4576877234803,509.12514898688903 374.33134684147797,509.12514898688903" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-0.65,-2.55 -0.65,-2.7009999999999996 -0.7010000000000001,-2.7009999999999996" data-type="line" data-label="" points="381.07270560190705,458.99880810488673 381.07270560190705,469.0774731823599 377.66865315852203,469.0774731823599" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="0.65,-2.55 0.65,-2.7009999999999996 0.599,-2.7009999999999996" data-type="line" data-label="" points="467.8426698450536,458.99880810488673 467.8426698450536,469.0774731823599 464.43861740166864,469.0774731823599" fill="none" stroke="purple" stroke-width="1px"/></g><g><rect data-type="rect" data-label="schematic_component_0" data-x="-4.460000000000001" data-y="-0.2050000000000003" x="40" y="282.45530393325384" width="173.5399284862932" height="40.047675804529206" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.01498214285714286"/></g><g><rect data-type="rect" data-label="schematic_component_1" data-x="0" data-y="0" x="294.3027413587605" y="118.59356376638857" width="260.3098927294397" height="340.40524433849816" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.01498214285714286"/></g><g><rect data-type="rect" data-label="schematic_component_2" data-x="-3.7100000000000013" data-y="2.1149999999999998" x="140.11918951132293" y="119.59475566150185" width="73.42073897497025" height="56.06674612634086" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.01498214285714286"/></g><g><rect data-type="rect" data-label="schematic_component_3" data-x="-4.205" data-y="-2.9050000000000002" x="47.008343265792675" y="455.99523241954705" width="193.56376638855775" height="53.39690107270559" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.01498214285714286"/></g><g><rect data-type="rect" data-label="netId: IN
2
+ globalConnNetId: connectivity_net0" data-x="-2.7350000000000008" data-y="0.9" x="229.89272943980927" y="222.05005959475568" width="24.028605482717524" height="13.349225268176383" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.01498214285714286"/></g><g><rect data-type="rect" data-label="netId: IN
3
+ globalConnNetId: connectivity_net0" data-x="-4.441000000000002" data-y="2.1149999999999998" x="116.02383790226457" y="140.95351609058406" width="24.028605482717467" height="13.349225268176411" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.01498214285714286"/></g><g><rect data-type="rect" data-label="netId: GND
4
+ globalConnNetId: connectivity_net1" data-x="-2.6550000000000002" data-y="-0.5450000000000003" x="240.5721096543504" y="309.15375446960667" width="13.349225268176411" height="32.038140643623365" fill="#00000066" stroke="#000000" stroke-width="0.01498214285714286"/></g><g><rect data-type="rect" data-label="netId: GND
5
+ globalConnNetId: connectivity_net1" data-x="2.1500000000000004" data-y="-1.0899999999999999" x="561.2872467222885" y="345.5303933253873" width="13.349225268176383" height="32.038140643623365" fill="#00000066" stroke="#000000" stroke-width="0.01498214285714286"/></g><g><rect data-type="rect" data-label="netId: GND
6
+ globalConnNetId: connectivity_net1" data-x="-3.059000000000001" data-y="1.424" x="213.60667461263404" y="177.73063170441003" width="13.349225268176411" height="32.038140643623365" fill="#00000066" stroke="#000000" stroke-width="0.01498214285714286"/></g><g><rect data-type="rect" data-label="netId: GND
7
+ globalConnNetId: connectivity_net1" data-x="-2.654" data-y="-3.5460000000000003" x="240.6388557806913" y="509.4588796185935" width="13.349225268176411" height="32.038140643623365" fill="#00000066" stroke="#000000" stroke-width="0.01498214285714286"/></g><g><rect data-type="rect" data-label="netId: TS
8
+ globalConnNetId: connectivity_net2" data-x="-2.7110000000000003" data-y="-0.9190000000000002" x="231.49463647199048" y="343.46126340882" width="24.028605482717524" height="13.349225268176383" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.01498214285714286"/></g><g><rect data-type="rect" data-label="netId: BAT
9
+ globalConnNetId: connectivity_net3" data-x="-2.1910000000000003" data-y="-0.9" x="262.1978545887962" y="342.19308700834324" width="32.038140643623365" height="13.349225268176383" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.01498214285714286"/></g><g><rect data-type="rect" data-label="netId: BAT
10
+ globalConnNetId: connectivity_net3" data-x="-2.514" data-y="-2.9050000000000002" x="240.63885578069133" y="476.01907032181157" width="32.03814064362331" height="13.34922526817644" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.01498214285714286"/></g><g><rect data-type="rect" data-label="netId: OUT
11
+ globalConnNetId: connectivity_net4" data-x="2.3900000000000006" data-y="-0.2499999999999999" x="567.9618593563766" y="298.80810488676997" width="32.038140643623365" height="13.349225268176383" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.01498214285714286"/></g><g><rect data-type="rect" data-label="netId: N_PGOOD_LED
12
+ globalConnNetId: connectivity_net5" data-x="-2.6710000000000003" data-y="2.651" x="198.1215733015495" y="105.17759237187131" width="96.11442193087004" height="13.349225268176411" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.01498214285714286"/></g><g><rect data-type="rect" data-label="netId: N_CHG_LED
13
+ globalConnNetId: connectivity_net6" data-x="-0.201" data-y="2.751" x="370.99404052443384" y="98.50297973778312" width="80.09535160905841" height="13.349225268176411" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.01498214285714286"/></g><g><rect data-type="rect" data-label="netId: ILIM
14
+ globalConnNetId: connectivity_net7" data-x="-1.0510000000000002" data-y="-3.3009999999999997" x="334.2836710369487" y="502.45053635280084" width="40.047675804529206" height="13.349225268176383" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.01498214285714286"/></g><g><rect data-type="rect" data-label="netId: ITERM
15
+ globalConnNetId: connectivity_net8" data-x="-1.061" data-y="-2.7009999999999996" x="329.6114421930871" y="462.40286054827163" width="48.05721096543499" height="13.34922526817644" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.01498214285714286"/></g><g><rect data-type="rect" data-label="netId: ISET
16
+ globalConnNetId: connectivity_net9" data-x="0.299" data-y="-2.7009999999999996" x="424.39094159713943" y="462.40286054827163" width="40.047675804529206" height="13.34922526817644" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.01498214285714286"/></g><g><circle data-type="point" data-label="J1.1
17
+ x+" data-x="-3.1600000000000006" data-y="-0.10500000000000029" cx="213.5399284862932" cy="295.8045292014303" r="3" fill="hsl(218, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="J1.2
18
+ x+" data-x="-3.1600000000000006" data-y="-0.30500000000000027" cx="213.5399284862932" cy="309.15375446960667" r="3" fill="hsl(219, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U1.1
19
+ x-" data-x="-1.9500000000000002" data-y="-0.7000000000000001" cx="294.30274135876044" cy="335.51847437425505" r="3" fill="hsl(319, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U1.2
20
+ x-" data-x="-1.9500000000000002" data-y="-0.9" cx="294.30274135876044" cy="348.86769964243143" r="3" fill="hsl(320, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U1.4
21
+ x+" data-x="1.9500000000000002" data-y="-0.85" cx="554.6126340882001" cy="345.5303933253873" r="3" fill="hsl(322, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U1.5
22
+ x+" data-x="1.9500000000000002" data-y="-0.2499999999999999" cx="554.6126340882001" cy="305.48271752085816" r="3" fill="hsl(323, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U1.6
23
+ x+" data-x="1.9500000000000002" data-y="-0.44999999999999996" cx="554.6126340882001" cy="318.83194278903454" r="3" fill="hsl(324, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U1.7
24
+ y+" data-x="-0.44999999999999996" data-y="2.55" cx="394.42193087008343" cy="118.5935637663886" r="3" fill="hsl(325, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U1.8
25
+ x-" data-x="-1.9500000000000002" data-y="0.7" cx="294.30274135876044" cy="242.07389749702025" r="3" fill="hsl(326, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U1.9
26
+ y+" data-x="0.44999999999999996" data-y="2.55" cx="454.4934445768772" cy="118.5935637663886" r="3" fill="hsl(327, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U1.10
27
+ x+" data-x="1.9500000000000002" data-y="0.85" cx="554.6126340882001" cy="232.06197854588797" r="3" fill="hsl(217, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U1.12
28
+ y-" data-x="0" data-y="-2.55" cx="424.4576877234803" cy="458.99880810488673" r="3" fill="hsl(219, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U1.13
29
+ x-" data-x="-1.9500000000000002" data-y="0.9" cx="294.30274135876044" cy="228.72467222884387" r="3" fill="hsl(220, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U1.14
30
+ x+" data-x="1.9500000000000002" data-y="-0.6499999999999999" cx="554.6126340882001" cy="332.1811680572109" r="3" fill="hsl(221, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U1.15
31
+ y-" data-x="-0.65" data-y="-2.55" cx="381.07270560190705" cy="458.99880810488673" r="3" fill="hsl(222, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U1.16
32
+ y-" data-x="0.65" data-y="-2.55" cx="467.8426698450536" cy="458.99880810488673" r="3" fill="hsl(223, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="C1.1
33
+ x-" data-x="-4.260000000000002" data-y="2.1149999999999998" cx="140.11918951132293" cy="147.62812872467228" r="3" fill="hsl(121, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="C1.2
34
+ x+" data-x="-3.160000000000001" data-y="2.1149999999999998" cx="213.53992848629318" cy="147.62812872467228" r="3" fill="hsl(122, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="BT1.1
35
+ x+" data-x="-2.755" data-y="-2.705" cx="240.57210965435044" cy="469.34445768772343" r="3" fill="hsl(114, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="BT1.2
36
+ x+" data-x="-2.755" data-y="-2.9050000000000002" cx="240.57210965435044" cy="482.6936829558998" r="3" fill="hsl(115, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="BT1.3
37
+ x+" data-x="-2.755" data-y="-3.1050000000000004" cx="240.57210965435044" cy="496.04290822407626" r="3" fill="hsl(116, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anchorPoint
38
+ orientation: x-" data-x="-2.5550000000000006" data-y="0.9" cx="253.9213349225268" cy="228.72467222884387" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
39
+ orientation: x-" data-x="-4.260000000000002" data-y="2.1149999999999998" cx="140.11918951132293" cy="147.62812872467228" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
40
+ orientation: y-" data-x="-2.6550000000000002" data-y="-0.30500000000000027" cx="247.24672228843863" cy="309.15375446960667" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
41
+ orientation: y-" data-x="2.1500000000000004" data-y="-0.85" cx="567.9618593563766" cy="345.5303933253873" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
42
+ orientation: y-" data-x="-3.059000000000001" data-y="1.664" cx="220.28128724672226" cy="177.73063170441003" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
43
+ orientation: y-" data-x="-2.654" data-y="-3.3060000000000005" cx="247.31346841477952" cy="509.4588796185935" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
44
+ orientation: x-" data-x="-2.531" data-y="-0.9190000000000002" cx="255.523241954708" cy="350.1358760429082" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
45
+ orientation: x-" data-x="-1.9500000000000002" data-y="-0.9" cx="294.30274135876044" cy="348.86769964243143" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
46
+ orientation: x+" data-x="-2.755" data-y="-2.9050000000000002" cx="240.57210965435044" cy="482.6936829558998" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
47
+ orientation: x+" data-x="2.1500000000000004" data-y="-0.2499999999999999" cx="567.9618593563766" cy="305.48271752085816" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
48
+ orientation: x-" data-x="-1.9510000000000005" data-y="2.651" cx="294.23599523241955" cy="111.85220500595952" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
49
+ orientation: x-" data-x="0.39899999999999997" data-y="2.751" cx="451.08939213349225" cy="105.17759237187133" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
50
+ orientation: x-" data-x="-0.7510000000000001" data-y="-3.3009999999999997" cx="374.33134684147797" cy="509.12514898688903" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
51
+ orientation: x-" data-x="-0.7010000000000001" data-y="-2.7009999999999996" cx="377.66865315852203" cy="469.0774731823599" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
52
+ orientation: x-" data-x="0.599" data-y="-2.7009999999999996" cx="464.43861740166864" cy="469.0774731823599" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g id="crosshair" style="display: none"><line id="crosshair-h" y1="0" y2="640" stroke="#666" stroke-width="0.5"/><line id="crosshair-v" x1="0" x2="640" stroke="#666" stroke-width="0.5"/><text id="coordinates" font-family="monospace" font-size="12" fill="#666"></text></g><script><![CDATA[
53
+ document.currentScript.parentElement.addEventListener('mousemove', (e) => {
54
+ const svg = e.currentTarget;
55
+ const rect = svg.getBoundingClientRect();
56
+ const x = e.clientX - rect.left;
57
+ const y = e.clientY - rect.top;
58
+ const crosshair = svg.getElementById('crosshair');
59
+ const h = svg.getElementById('crosshair-h');
60
+ const v = svg.getElementById('crosshair-v');
61
+ const coords = svg.getElementById('coordinates');
62
+
63
+ crosshair.style.display = 'block';
64
+ h.setAttribute('x1', '0');
65
+ h.setAttribute('x2', '640');
66
+ h.setAttribute('y1', y);
67
+ h.setAttribute('y2', y);
68
+ v.setAttribute('x1', x);
69
+ v.setAttribute('x2', x);
70
+ v.setAttribute('y1', '0');
71
+ v.setAttribute('y2', '640');
354
72
 
355
- crosshair.style.display = 'block';
356
- h.setAttribute('x1', '0');
357
- h.setAttribute('x2', '640');
358
- h.setAttribute('y1', y);
359
- h.setAttribute('y2', y);
360
- v.setAttribute('x1', x);
361
- v.setAttribute('x2', x);
362
- v.setAttribute('y1', '0');
363
- v.setAttribute('y2', '640');
364
-
365
- // Calculate real coordinates using inverse transformation
366
- const matrix = {
367
- "a": 66.74612634088199,
368
- "c": 0,
369
- "e": 424.4576877234803,
370
- "b": 0,
371
- "d": -66.74612634088199,
372
- "f": 288.79618593563765
373
- };
374
- // Manually invert and apply the affine transform
375
- // Since we only use translate and scale, we can directly compute:
376
- // x' = (x - tx) / sx
377
- // y' = (y - ty) / sy
378
- const sx = matrix.a;
379
- const sy = matrix.d;
380
- const tx = matrix.e;
381
- const ty = matrix.f;
382
- const realPoint = {
383
- x: (x - tx) / sx,
384
- y: (y - ty) / sy // Flip y back since we used negative scale
385
- }
386
-
387
- coords.textContent = `(${realPoint.x.toFixed(2)}, ${realPoint.y.toFixed(2)})`;
388
- coords.setAttribute('x', (x + 5).toString());
389
- coords.setAttribute('y', (y - 5).toString());
390
- });
391
- document.currentScript.parentElement.addEventListener('mouseleave', () => {
392
- document.currentScript.parentElement.getElementById('crosshair').style.display = 'none';
393
- });
394
- ]]>
395
- </script>
396
- </svg>
73
+ // Calculate real coordinates using inverse transformation
74
+ const matrix = {"a":66.74612634088199,"c":0,"e":424.4576877234803,"b":0,"d":-66.74612634088199,"f":288.79618593563765};
75
+ // Manually invert and apply the affine transform
76
+ // Since we only use translate and scale, we can directly compute:
77
+ // x' = (x - tx) / sx
78
+ // y' = (y - ty) / sy
79
+ const sx = matrix.a;
80
+ const sy = matrix.d;
81
+ const tx = matrix.e;
82
+ const ty = matrix.f;
83
+ const realPoint = {
84
+ x: (x - tx) / sx,
85
+ y: (y - ty) / sy // Flip y back since we used negative scale
86
+ }
87
+
88
+ coords.textContent = `(${realPoint.x.toFixed(2)}, ${realPoint.y.toFixed(2)})`;
89
+ coords.setAttribute('x', (x + 5).toString());
90
+ coords.setAttribute('y', (y - 5).toString());
91
+ });
92
+ document.currentScript.parentElement.addEventListener('mouseleave', () => {
93
+ document.currentScript.parentElement.getElementById('crosshair').style.display = 'none';
94
+ });
95
+ ]]></script></svg>