circuit-json-to-lbrn 0.0.5 → 0.0.7
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.
- package/dist/index.js +67 -16
- package/lib/ConvertContext.ts +1 -0
- package/lib/element-handlers/addPcbBoard/index.ts +50 -0
- package/lib/index.ts +14 -0
- package/package.json +1 -1
- package/tests/examples/__snapshots__/board-outline.snap.svg +8 -0
- package/tests/examples/__snapshots__/lga-interconnect.snap.svg +2 -2
- package/tests/examples/__snapshots__/single-trace.snap.svg +2 -2
- package/tests/examples/board-outline.test.ts +102 -0
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// lib/index.ts
|
|
2
|
-
import { LightBurnProject, CutSetting, ShapePath as
|
|
2
|
+
import { LightBurnProject, CutSetting, ShapePath as ShapePath4 } from "lbrnts";
|
|
3
3
|
import { cju as cju2 } from "@tscircuit/circuit-json-util";
|
|
4
4
|
|
|
5
5
|
// lib/element-handlers/addPlatedHole/addCirclePlatedHole.ts
|
|
@@ -69,7 +69,7 @@ var addPcbTrace = (trace, ctx) => {
|
|
|
69
69
|
return;
|
|
70
70
|
}
|
|
71
71
|
const { route } = trace;
|
|
72
|
-
const traceWidth = route.find((
|
|
72
|
+
const traceWidth = route.find((point2) => point2.route_type === "wire")?.width ?? 0.15;
|
|
73
73
|
const polygons = [];
|
|
74
74
|
for (const routePoint of route) {
|
|
75
75
|
const circle = new Flatten2.Circle(
|
|
@@ -117,9 +117,9 @@ var addPcbTrace = (trace, ctx) => {
|
|
|
117
117
|
netGeoms.get(netId)?.push(tracePolygon);
|
|
118
118
|
};
|
|
119
119
|
|
|
120
|
-
// lib/index.ts
|
|
121
|
-
import {
|
|
122
|
-
import {
|
|
120
|
+
// lib/element-handlers/addPcbBoard/index.ts
|
|
121
|
+
import { Polygon, point } from "@flatten-js/core";
|
|
122
|
+
import { ShapePath as ShapePath3 } from "lbrnts";
|
|
123
123
|
|
|
124
124
|
// lib/polygon-to-shape-path.ts
|
|
125
125
|
function polygonToShapePathData(polygon) {
|
|
@@ -148,6 +148,46 @@ function polygonToShapePathData(polygon) {
|
|
|
148
148
|
return { verts, prims };
|
|
149
149
|
}
|
|
150
150
|
|
|
151
|
+
// lib/element-handlers/addPcbBoard/index.ts
|
|
152
|
+
var addPcbBoard = (board, ctx) => {
|
|
153
|
+
const { origin, project, throughBoardCutSetting } = ctx;
|
|
154
|
+
let polygon = null;
|
|
155
|
+
if (board.outline?.length) {
|
|
156
|
+
polygon = new Polygon(
|
|
157
|
+
board.outline.map(
|
|
158
|
+
(outlinePoint) => point(outlinePoint.x + origin.x, outlinePoint.y + origin.y)
|
|
159
|
+
)
|
|
160
|
+
);
|
|
161
|
+
} else if (typeof board.width === "number" && typeof board.height === "number" && board.center) {
|
|
162
|
+
const halfWidth = board.width / 2;
|
|
163
|
+
const halfHeight = board.height / 2;
|
|
164
|
+
const minX = board.center.x - halfWidth + origin.x;
|
|
165
|
+
const minY = board.center.y - halfHeight + origin.y;
|
|
166
|
+
const maxX = board.center.x + halfWidth + origin.x;
|
|
167
|
+
const maxY = board.center.y + halfHeight + origin.y;
|
|
168
|
+
polygon = new Polygon([
|
|
169
|
+
point(minX, minY),
|
|
170
|
+
point(maxX, minY),
|
|
171
|
+
point(maxX, maxY),
|
|
172
|
+
point(minX, maxY)
|
|
173
|
+
]);
|
|
174
|
+
}
|
|
175
|
+
if (!polygon) return;
|
|
176
|
+
const { verts, prims } = polygonToShapePathData(polygon);
|
|
177
|
+
project.children.push(
|
|
178
|
+
new ShapePath3({
|
|
179
|
+
cutIndex: throughBoardCutSetting.index,
|
|
180
|
+
verts,
|
|
181
|
+
prims,
|
|
182
|
+
isClosed: true
|
|
183
|
+
})
|
|
184
|
+
);
|
|
185
|
+
};
|
|
186
|
+
|
|
187
|
+
// lib/index.ts
|
|
188
|
+
import { getFullConnectivityMapFromCircuitJson } from "circuit-json-to-connectivity-map";
|
|
189
|
+
import { Polygon as Polygon2, Box as Box2, BooleanOperations as BooleanOperations2 } from "@flatten-js/core";
|
|
190
|
+
|
|
151
191
|
// lib/calculateBounds.ts
|
|
152
192
|
import { cju } from "@tscircuit/circuit-json-util";
|
|
153
193
|
var calculateCircuitBounds = (circuitJson) => {
|
|
@@ -173,14 +213,14 @@ var calculateCircuitBounds = (circuitJson) => {
|
|
|
173
213
|
}
|
|
174
214
|
}
|
|
175
215
|
for (const trace of db.pcb_trace.list()) {
|
|
176
|
-
const isWidthPoint = (
|
|
216
|
+
const isWidthPoint = (point2) => "width" in point2 && typeof point2.width === "number";
|
|
177
217
|
const halfWidth = trace.route_thickness_mode === "interpolated" ? 0 : (trace.route.find(isWidthPoint)?.width ?? 0) / 2;
|
|
178
|
-
for (const
|
|
179
|
-
const pointWidth = trace.route_thickness_mode === "interpolated" ? isWidthPoint(
|
|
180
|
-
minX = Math.min(minX,
|
|
181
|
-
minY = Math.min(minY,
|
|
182
|
-
maxX = Math.max(maxX,
|
|
183
|
-
maxY = Math.max(maxY,
|
|
218
|
+
for (const point2 of trace.route) {
|
|
219
|
+
const pointWidth = trace.route_thickness_mode === "interpolated" ? isWidthPoint(point2) ? point2.width / 2 : 0 : halfWidth;
|
|
220
|
+
minX = Math.min(minX, point2.x - pointWidth);
|
|
221
|
+
minY = Math.min(minY, point2.y - pointWidth);
|
|
222
|
+
maxX = Math.max(maxX, point2.x + pointWidth);
|
|
223
|
+
maxY = Math.max(maxY, point2.y + pointWidth);
|
|
184
224
|
}
|
|
185
225
|
}
|
|
186
226
|
for (const hole of db.pcb_plated_hole.list()) {
|
|
@@ -218,6 +258,13 @@ var convertCircuitJsonToLbrn = (circuitJson, options = {}) => {
|
|
|
218
258
|
speed: 100
|
|
219
259
|
});
|
|
220
260
|
project.children.push(copperCutSetting);
|
|
261
|
+
const throughBoardCutSetting = new CutSetting({
|
|
262
|
+
index: 1,
|
|
263
|
+
name: "Cut Through Board",
|
|
264
|
+
numPasses: 3,
|
|
265
|
+
speed: 50
|
|
266
|
+
});
|
|
267
|
+
project.children.push(throughBoardCutSetting);
|
|
221
268
|
const connMap = getFullConnectivityMapFromCircuitJson(circuitJson);
|
|
222
269
|
let origin = options.origin;
|
|
223
270
|
if (!origin) {
|
|
@@ -228,6 +275,7 @@ var convertCircuitJsonToLbrn = (circuitJson, options = {}) => {
|
|
|
228
275
|
db,
|
|
229
276
|
project,
|
|
230
277
|
copperCutSetting,
|
|
278
|
+
throughBoardCutSetting,
|
|
231
279
|
connMap,
|
|
232
280
|
netGeoms: /* @__PURE__ */ new Map(),
|
|
233
281
|
origin
|
|
@@ -241,6 +289,9 @@ var convertCircuitJsonToLbrn = (circuitJson, options = {}) => {
|
|
|
241
289
|
for (const trace of db.pcb_trace.list()) {
|
|
242
290
|
addPcbTrace(trace, ctx);
|
|
243
291
|
}
|
|
292
|
+
for (const board of db.pcb_board.list()) {
|
|
293
|
+
addPcbBoard(board, ctx);
|
|
294
|
+
}
|
|
244
295
|
for (const net of Object.keys(connMap.netMap)) {
|
|
245
296
|
const netGeoms = ctx.netGeoms.get(net);
|
|
246
297
|
if (netGeoms.length === 0) {
|
|
@@ -248,19 +299,19 @@ var convertCircuitJsonToLbrn = (circuitJson, options = {}) => {
|
|
|
248
299
|
}
|
|
249
300
|
let union = netGeoms[0];
|
|
250
301
|
if (union instanceof Box2) {
|
|
251
|
-
union = new
|
|
302
|
+
union = new Polygon2(union);
|
|
252
303
|
}
|
|
253
304
|
for (const geom of netGeoms.slice(1)) {
|
|
254
|
-
if (geom instanceof
|
|
305
|
+
if (geom instanceof Polygon2) {
|
|
255
306
|
union = BooleanOperations2.unify(union, geom);
|
|
256
307
|
} else if (geom instanceof Box2) {
|
|
257
|
-
union = BooleanOperations2.unify(union, new
|
|
308
|
+
union = BooleanOperations2.unify(union, new Polygon2(geom));
|
|
258
309
|
}
|
|
259
310
|
}
|
|
260
311
|
for (const island of union.splitToIslands()) {
|
|
261
312
|
const { verts, prims } = polygonToShapePathData(island);
|
|
262
313
|
project.children.push(
|
|
263
|
-
new
|
|
314
|
+
new ShapePath4({
|
|
264
315
|
cutIndex: copperCutSetting.index,
|
|
265
316
|
verts,
|
|
266
317
|
prims,
|
package/lib/ConvertContext.ts
CHANGED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Polygon, point } from "@flatten-js/core"
|
|
2
|
+
import type { PcbBoard } from "circuit-json"
|
|
3
|
+
import { ShapePath } from "lbrnts"
|
|
4
|
+
import type { ConvertContext } from "../../ConvertContext"
|
|
5
|
+
import { polygonToShapePathData } from "../../polygon-to-shape-path"
|
|
6
|
+
|
|
7
|
+
export const addPcbBoard = (board: PcbBoard, ctx: ConvertContext) => {
|
|
8
|
+
const { origin, project, throughBoardCutSetting } = ctx
|
|
9
|
+
|
|
10
|
+
let polygon: Polygon | null = null
|
|
11
|
+
|
|
12
|
+
if (board.outline?.length) {
|
|
13
|
+
polygon = new Polygon(
|
|
14
|
+
board.outline.map((outlinePoint) =>
|
|
15
|
+
point(outlinePoint.x + origin.x, outlinePoint.y + origin.y),
|
|
16
|
+
),
|
|
17
|
+
)
|
|
18
|
+
} else if (
|
|
19
|
+
typeof board.width === "number" &&
|
|
20
|
+
typeof board.height === "number" &&
|
|
21
|
+
board.center
|
|
22
|
+
) {
|
|
23
|
+
const halfWidth = board.width / 2
|
|
24
|
+
const halfHeight = board.height / 2
|
|
25
|
+
const minX = board.center.x - halfWidth + origin.x
|
|
26
|
+
const minY = board.center.y - halfHeight + origin.y
|
|
27
|
+
const maxX = board.center.x + halfWidth + origin.x
|
|
28
|
+
const maxY = board.center.y + halfHeight + origin.y
|
|
29
|
+
|
|
30
|
+
polygon = new Polygon([
|
|
31
|
+
point(minX, minY),
|
|
32
|
+
point(maxX, minY),
|
|
33
|
+
point(maxX, maxY),
|
|
34
|
+
point(minX, maxY),
|
|
35
|
+
])
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
if (!polygon) return
|
|
39
|
+
|
|
40
|
+
const { verts, prims } = polygonToShapePathData(polygon)
|
|
41
|
+
|
|
42
|
+
project.children.push(
|
|
43
|
+
new ShapePath({
|
|
44
|
+
cutIndex: throughBoardCutSetting.index,
|
|
45
|
+
verts,
|
|
46
|
+
prims,
|
|
47
|
+
isClosed: true,
|
|
48
|
+
}),
|
|
49
|
+
)
|
|
50
|
+
}
|
package/lib/index.ts
CHANGED
|
@@ -5,6 +5,7 @@ import type { ConvertContext } from "./ConvertContext"
|
|
|
5
5
|
import { addPlatedHole } from "./element-handlers/addPlatedHole"
|
|
6
6
|
import { addSmtPad } from "./element-handlers/addSmtPad"
|
|
7
7
|
import { addPcbTrace } from "./element-handlers/addPcbTrace"
|
|
8
|
+
import { addPcbBoard } from "./element-handlers/addPcbBoard"
|
|
8
9
|
import { getFullConnectivityMapFromCircuitJson } from "circuit-json-to-connectivity-map"
|
|
9
10
|
import { Polygon, Box, BooleanOperations } from "@flatten-js/core"
|
|
10
11
|
import { polygonToShapePathData } from "./polygon-to-shape-path"
|
|
@@ -36,6 +37,14 @@ export const convertCircuitJsonToLbrn = (
|
|
|
36
37
|
})
|
|
37
38
|
project.children.push(copperCutSetting)
|
|
38
39
|
|
|
40
|
+
const throughBoardCutSetting = new CutSetting({
|
|
41
|
+
index: 1,
|
|
42
|
+
name: "Cut Through Board",
|
|
43
|
+
numPasses: 3,
|
|
44
|
+
speed: 50,
|
|
45
|
+
})
|
|
46
|
+
project.children.push(throughBoardCutSetting)
|
|
47
|
+
|
|
39
48
|
const connMap = getFullConnectivityMapFromCircuitJson(circuitJson)
|
|
40
49
|
|
|
41
50
|
// Auto-calculate origin if not provided to ensure all elements are in positive quadrant
|
|
@@ -49,6 +58,7 @@ export const convertCircuitJsonToLbrn = (
|
|
|
49
58
|
db,
|
|
50
59
|
project,
|
|
51
60
|
copperCutSetting,
|
|
61
|
+
throughBoardCutSetting,
|
|
52
62
|
connMap,
|
|
53
63
|
netGeoms: new Map(),
|
|
54
64
|
origin,
|
|
@@ -70,6 +80,10 @@ export const convertCircuitJsonToLbrn = (
|
|
|
70
80
|
addPcbTrace(trace, ctx)
|
|
71
81
|
}
|
|
72
82
|
|
|
83
|
+
for (const board of db.pcb_board.list()) {
|
|
84
|
+
addPcbBoard(board, ctx)
|
|
85
|
+
}
|
|
86
|
+
|
|
73
87
|
// Draw each individual shape geometry as a ShapePath
|
|
74
88
|
// FOR DEBUGGING!!!
|
|
75
89
|
// for (const net of Object.keys(connMap.netMap)) {
|
package/package.json
CHANGED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg width="800" height="1066.6666666666667" viewBox="0 0 800 1066.6666666666667" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g transform="translate(0, 0)">
|
|
3
|
+
<style></style><rect class="boundary" x="0" y="0" fill="#000" width="800" height="600" data-type="pcb_background" data-pcb-layer="global"/><rect class="pcb-boundary" fill="none" stroke="#fff" stroke-width="0.3" x="19.047619047619047" y="157.14285714285717" width="761.9047619047619" height="285.7142857142857" data-type="pcb_boundary" data-pcb-layer="global"/><path class="pcb-board" d="M 19.047619047619047 442.8571428571429 L 780.952380952381 442.8571428571429 L 780.952380952381 157.14285714285717 L 114.28571428571429 157.14285714285717 L 19.047619047619047 252.3809523809524 Z" fill="none" stroke="rgba(255, 255, 255, 0.5)" stroke-width="1.9047619047619049" data-type="pcb_board" data-pcb-layer="board"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="190.47619047619048" y="319.0476190476191" width="38.095238095238095" height="57.14285714285714" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 209.52380952380952 347.61904761904765 L 590.4761904761905 347.61904761904765" stroke-width="9.523809523809524" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/>
|
|
4
|
+
</g>
|
|
5
|
+
<g transform="translate(0, 600) scale(13.333333333333334, 13.333333333333334) translate(10, 10)">
|
|
6
|
+
<rect x="-10" y="-10" width="60" height="35" fill="white"/><g transform="matrix(1 0 0 -1 0 15)"><g transform="matrix(1,0,0,1,0,0)"><path d="M 0 0 L 40 0 L 40 15 L 5 15 L 0 10 L 0 0 L 0 0 Z" fill="none" stroke="#0000FF" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 11 4.75 L 30 4.75 L 30.048772580504032 4.754803679899192 L 30.09567085809127 4.7690301168721785 L 30.138892558254902 4.792132596924364 L 30.17677669529664 4.8232233047033635 L 30.207867403075635 4.8611074417451 L 30.230969883127823 4.904329141908727 L 30.245196320100806 4.951227419495968 L 30.25 5 L 30.245196320100806 5.048772580504032 L 30.230969883127823 5.095670858091273 L 30.207867403075635 5.1388925582549 L 30.17677669529664 5.1767766952966365 L 30.138892558254902 5.207867403075636 L 30.09567085809127 5.2309698831278215 L 30.048772580504032 5.245196320100808 L 30 5.25 L 11 5.25 L 11 6.5 L 9 6.5 L 9 3.5 L 11 3.5 L 11 4.75 L 11 4.75" fill="none" stroke="#000000" stroke-width="0.1"/></g></g>
|
|
7
|
+
</g>
|
|
8
|
+
</svg>
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<g transform="translate(0, 0)">
|
|
3
3
|
<style></style><rect class="boundary" x="0" y="0" fill="#000" width="800" height="600" data-type="pcb_background" data-pcb-layer="global"/><rect class="pcb-boundary" fill="none" stroke="#fff" stroke-width="0.3" x="108.95522388059703" y="8.955223880597032" width="582.0895522388059" height="582.0895522388059" data-type="pcb_boundary" data-pcb-layer="global"/><path class="pcb-board" d="M 108.95522388059703 591.044776119403 L 691.044776119403 591.044776119403 L 691.044776119403 8.955223880597032 L 108.95522388059703 8.955223880597032 Z" fill="none" stroke="rgba(255, 255, 255, 0.5)" stroke-width="0.8955223880597014" data-type="pcb_board" data-pcb-layer="board"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="357.46268656716416" y="257.46268656716416" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="366.4179104477612" y="257.46268656716416" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="375.3731343283582" y="257.46268656716416" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="384.3283582089552" y="257.46268656716416" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="393.2835820895522" y="257.46268656716416" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="402.23880597014926" y="257.46268656716416" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="411.1940298507463" y="257.46268656716416" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="420.14925373134326" y="257.46268656716416" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="429.1044776119403" y="257.46268656716416" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="438.05970149253733" y="257.46268656716416" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="357.46268656716416" y="266.4179104477612" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="366.4179104477612" y="266.4179104477612" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="375.3731343283582" y="266.4179104477612" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="384.3283582089552" y="266.4179104477612" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="393.2835820895522" y="266.4179104477612" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="402.23880597014926" y="266.4179104477612" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="411.1940298507463" y="266.4179104477612" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="420.14925373134326" y="266.4179104477612" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="429.1044776119403" y="266.4179104477612" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="438.05970149253733" y="266.4179104477612" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="357.46268656716416" y="275.3731343283582" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="366.4179104477612" y="275.3731343283582" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="375.3731343283582" y="275.3731343283582" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="384.3283582089552" y="275.3731343283582" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="393.2835820895522" y="275.3731343283582" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="402.23880597014926" y="275.3731343283582" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="411.1940298507463" y="275.3731343283582" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="420.14925373134326" y="275.3731343283582" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="429.1044776119403" y="275.3731343283582" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="438.05970149253733" y="275.3731343283582" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="357.46268656716416" y="284.3283582089552" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="366.4179104477612" y="284.3283582089552" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="375.3731343283582" y="284.3283582089552" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="384.3283582089552" y="284.3283582089552" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="393.2835820895522" y="284.3283582089552" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="402.23880597014926" y="284.3283582089552" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="411.1940298507463" y="284.3283582089552" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="420.14925373134326" y="284.3283582089552" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="429.1044776119403" y="284.3283582089552" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="438.05970149253733" y="284.3283582089552" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="357.46268656716416" y="293.2835820895522" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="366.4179104477612" y="293.2835820895522" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="375.3731343283582" y="293.2835820895522" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="384.3283582089552" y="293.2835820895522" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="393.2835820895522" y="293.2835820895522" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="402.23880597014926" y="293.2835820895522" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="411.1940298507463" y="293.2835820895522" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="420.14925373134326" y="293.2835820895522" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="429.1044776119403" y="293.2835820895522" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="438.05970149253733" y="293.2835820895522" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="357.46268656716416" y="302.23880597014926" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="366.4179104477612" y="302.23880597014926" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="375.3731343283582" y="302.23880597014926" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="384.3283582089552" y="302.23880597014926" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="393.2835820895522" y="302.23880597014926" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="402.23880597014926" y="302.23880597014926" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="411.1940298507463" y="302.23880597014926" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="420.14925373134326" y="302.23880597014926" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="429.1044776119403" y="302.23880597014926" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="438.05970149253733" y="302.23880597014926" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="357.46268656716416" y="311.1940298507463" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="366.4179104477612" y="311.1940298507463" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="375.3731343283582" y="311.1940298507463" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="384.3283582089552" y="311.1940298507463" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="393.2835820895522" y="311.1940298507463" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="402.23880597014926" y="311.1940298507463" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="411.1940298507463" y="311.1940298507463" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="420.14925373134326" y="311.1940298507463" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="429.1044776119403" y="311.1940298507463" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="438.05970149253733" y="311.1940298507463" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="357.46268656716416" y="320.14925373134326" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="366.4179104477612" y="320.14925373134326" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="375.3731343283582" y="320.14925373134326" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="384.3283582089552" y="320.14925373134326" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="393.2835820895522" y="320.14925373134326" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="402.23880597014926" y="320.14925373134326" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="411.1940298507463" y="320.14925373134326" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="420.14925373134326" y="320.14925373134326" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="429.1044776119403" y="320.14925373134326" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="438.05970149253733" y="320.14925373134326" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="357.46268656716416" y="329.1044776119403" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="366.4179104477612" y="329.1044776119403" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="375.3731343283582" y="329.1044776119403" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="384.3283582089552" y="329.1044776119403" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="393.2835820895522" y="329.1044776119403" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="402.23880597014926" y="329.1044776119403" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="411.1940298507463" y="329.1044776119403" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="420.14925373134326" y="329.1044776119403" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="429.1044776119403" y="329.1044776119403" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="438.05970149253733" y="329.1044776119403" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="357.46268656716416" y="338.05970149253733" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="366.4179104477612" y="338.05970149253733" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="375.3731343283582" y="338.05970149253733" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="384.3283582089552" y="338.05970149253733" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="393.2835820895522" y="338.05970149253733" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="402.23880597014926" y="338.05970149253733" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="411.1940298507463" y="338.05970149253733" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="420.14925373134326" y="338.05970149253733" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="429.1044776119403" y="338.05970149253733" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="438.05970149253733" y="338.05970149253733" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="357.46268656716416" y="257.46268656716416" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="180.59701492537314" y="35.82089552238808" width="35.82089552238806" height="35.82089552238806" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 359.7014925373134 259.7014925373134 L 198.50746268656718 53.731343283582106" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="366.4179104477612" y="257.46268656716416" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="225.37313432835822" y="35.82089552238808" width="35.82089552238806" height="35.82089552238806" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 368.65671641791045 259.7014925373134 L 243.28358208955225 53.731343283582106" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="429.1044776119403" y="338.05970149253733" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="538.8059701492537" y="528.3582089552239" width="35.82089552238806" height="35.82089552238806" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 431.34328358208955 340.2985074626866 L 556.7164179104477 546.2686567164179" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="375.3731343283582" y="257.46268656716416" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="270.1492537313433" y="35.82089552238808" width="35.82089552238806" height="35.82089552238806" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 377.6119402985075 259.7014925373134 L 288.05970149253733 53.731343283582106" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="384.3283582089552" y="257.46268656716416" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="314.92537313432837" y="35.82089552238808" width="35.82089552238806" height="35.82089552238806" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 386.56716417910445 259.7014925373134 L 332.8358208955224 53.731343283582106" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="411.1940298507463" y="338.05970149253733" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="449.2537313432836" y="528.3582089552239" width="35.82089552238806" height="35.82089552238806" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 413.43283582089555 340.2985074626866 L 467.1641791044776 546.2686567164179" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="393.2835820895522" y="257.46268656716416" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="359.70149253731347" y="35.82089552238808" width="35.82089552238806" height="35.82089552238806" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 395.5223880597015 259.7014925373134 L 377.6119402985075 53.731343283582106" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="402.23880597014926" y="257.46268656716416" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="404.4776119402985" y="35.82089552238808" width="35.82089552238806" height="35.82089552238806" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 404.4776119402985 259.7014925373134 L 422.3880597014925 53.731343283582106" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="393.2835820895522" y="338.05970149253733" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="359.70149253731347" y="528.3582089552239" width="35.82089552238806" height="35.82089552238806" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 395.5223880597015 340.2985074626866 L 377.6119402985075 546.2686567164179" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="411.1940298507463" y="257.46268656716416" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="449.2537313432836" y="35.82089552238808" width="35.82089552238806" height="35.82089552238806" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 413.43283582089555 259.7014925373134 L 467.1641791044776 53.731343283582106" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="420.14925373134326" y="257.46268656716416" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="494.02985074626866" y="35.82089552238808" width="35.82089552238806" height="35.82089552238806" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 422.3880597014925 259.7014925373134 L 511.94029850746267 53.731343283582106" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="375.3731343283582" y="338.05970149253733" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="270.1492537313433" y="528.3582089552239" width="35.82089552238806" height="35.82089552238806" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 377.6119402985075 340.2985074626866 L 288.05970149253733 546.2686567164179" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="429.1044776119403" y="257.46268656716416" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="538.8059701492537" y="35.82089552238808" width="35.82089552238806" height="35.82089552238806" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 431.34328358208955 259.7014925373134 L 556.7164179104477 53.731343283582106" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="438.05970149253733" y="257.46268656716416" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="583.5820895522388" y="35.82089552238808" width="35.82089552238806" height="35.82089552238806" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 440.2985074626866 259.7014925373134 L 601.4925373134329 53.731343283582106" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="357.46268656716416" y="338.05970149253733" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="180.59701492537314" y="528.3582089552239" width="35.82089552238806" height="35.82089552238806" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 359.7014925373134 340.2985074626866 L 198.50746268656718 546.2686567164179" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="357.46268656716416" y="266.4179104477612" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="135.82089552238807" y="125.37313432835822" width="35.82089552238806" height="35.82089552238806" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 359.7014925373134 268.65671641791045 L 153.7313432835821 143.28358208955225" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="438.05970149253733" y="329.1044776119403" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="628.3582089552239" y="438.8059701492537" width="35.82089552238806" height="35.82089552238806" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 440.2985074626866 331.34328358208955 L 646.2686567164179 456.7164179104477" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="357.46268656716416" y="293.2835820895522" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="135.82089552238807" y="259.70149253731347" width="35.82089552238806" height="35.82089552238806" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 359.7014925373134 295.5223880597015 L 153.7313432835821 277.6119402985075" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="438.05970149253733" y="266.4179104477612" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="628.3582089552239" y="125.37313432835822" width="35.82089552238806" height="35.82089552238806" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 440.2985074626866 268.65671641791045 L 646.2686567164179 143.28358208955225" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="366.4179104477612" y="338.05970149253733" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="225.37313432835822" y="528.3582089552239" width="35.82089552238806" height="35.82089552238806" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 368.65671641791045 340.2985074626866 L 243.28358208955225 546.2686567164179" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="402.23880597014926" y="338.05970149253733" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="404.4776119402985" y="528.3582089552239" width="35.82089552238806" height="35.82089552238806" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 404.4776119402985 340.2985074626866 L 422.3880597014925 546.2686567164179" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="420.14925373134326" y="338.05970149253733" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="494.02985074626866" y="528.3582089552239" width="35.82089552238806" height="35.82089552238806" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 422.3880597014925 340.2985074626866 L 511.94029850746267 546.2686567164179" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="357.46268656716416" y="275.3731343283582" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="135.82089552238807" y="170.1492537313433" width="35.82089552238806" height="35.82089552238806" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 359.7014925373134 277.6119402985075 L 153.7313432835821 188.05970149253733" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="357.46268656716416" y="329.1044776119403" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="135.82089552238807" y="438.8059701492537" width="35.82089552238806" height="35.82089552238806" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 359.7014925373134 331.34328358208955 L 153.7313432835821 456.7164179104477" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="438.05970149253733" y="302.23880597014926" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="628.3582089552239" y="304.4776119402985" width="35.82089552238806" height="35.82089552238806" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 440.2985074626866 304.4776119402985 L 646.2686567164179 322.3880597014925" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="357.46268656716416" y="311.1940298507463" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="135.82089552238807" y="349.2537313432836" width="35.82089552238806" height="35.82089552238806" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 359.7014925373134 313.43283582089555 L 153.7313432835821 367.1641791044776" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="384.3283582089552" y="338.05970149253733" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="314.92537313432837" y="528.3582089552239" width="35.82089552238806" height="35.82089552238806" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 386.56716417910445 340.2985074626866 L 332.8358208955224 546.2686567164179" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="438.05970149253733" y="275.3731343283582" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="628.3582089552239" y="170.1492537313433" width="35.82089552238806" height="35.82089552238806" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 440.2985074626866 277.6119402985075 L 646.2686567164179 188.05970149253733" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="357.46268656716416" y="320.14925373134326" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="135.82089552238807" y="394.02985074626866" width="35.82089552238806" height="35.82089552238806" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 359.7014925373134 322.3880597014925 L 153.7313432835821 411.94029850746267" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="357.46268656716416" y="284.3283582089552" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="135.82089552238807" y="214.92537313432834" width="35.82089552238806" height="35.82089552238806" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 359.7014925373134 286.56716417910445 L 153.7313432835821 232.83582089552237" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="438.05970149253733" y="311.1940298507463" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="628.3582089552239" y="349.2537313432836" width="35.82089552238806" height="35.82089552238806" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 440.2985074626866 313.43283582089555 L 646.2686567164179 367.1641791044776" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="438.05970149253733" y="320.14925373134326" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="628.3582089552239" y="394.02985074626866" width="35.82089552238806" height="35.82089552238806" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 440.2985074626866 322.3880597014925 L 646.2686567164179 411.94029850746267" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="438.05970149253733" y="338.05970149253733" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="583.5820895522388" y="528.3582089552239" width="35.82089552238806" height="35.82089552238806" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 440.2985074626866 340.2985074626866 L 601.4925373134329 546.2686567164179" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="438.05970149253733" y="284.3283582089552" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="628.3582089552239" y="214.92537313432834" width="35.82089552238806" height="35.82089552238806" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 440.2985074626866 286.56716417910445 L 646.2686567164179 232.83582089552237" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="438.05970149253733" y="293.2835820895522" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="628.3582089552239" y="259.70149253731347" width="35.82089552238806" height="35.82089552238806" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 440.2985074626866 295.5223880597015 L 646.2686567164179 277.6119402985075" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="357.46268656716416" y="302.23880597014926" width="4.477611940298507" height="4.477611940298507" data-type="pcb_smtpad" data-pcb-layer="top"/><rect class="pcb-pad" fill="rgb(200, 52, 52)" x="135.82089552238807" y="304.4776119402985" width="35.82089552238806" height="35.82089552238806" data-type="pcb_smtpad" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 359.7014925373134 304.4776119402985 L 153.7313432835821 322.3880597014925" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 368.65671641791045 268.65671641791045 L 377.6119402985075 268.65671641791045" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 386.56716417910445 331.34328358208955 L 377.6119402985075 331.34328358208955" stroke-width="1.3432835820895521" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/><path class="pcb-silkscreen pcb-silkscreen-top" d="M 346.2686567164179 259.7014925373134 L 339.1044776119403 255.22388059701493 L 339.1044776119403 264.17910447761193 L 346.2686567164179 259.7014925373134 Z" fill="none" stroke="#f2eda1" stroke-width="0.8955223880597014" stroke-linecap="round" stroke-linejoin="round" data-pcb-component-id="test_fixture_pcb_component" data-pcb-silkscreen-path-id="test_fixture_pin1_indicator" data-type="pcb_silkscreen_path" data-pcb-layer="top"/><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="7.164179104477611" text-anchor="middle" dominant-baseline="text-after-edge" transform="matrix(1,0,0,1,198.50746268656718,31.343283582089555)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">C1</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="7.164179104477611" text-anchor="middle" dominant-baseline="text-after-edge" transform="matrix(1,0,0,1,243.28358208955225,31.343283582089555)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">X18</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="7.164179104477611" text-anchor="middle" dominant-baseline="text-before-edge" transform="matrix(1,0,0,1,556.7164179104477,568.6567164179105)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">X9</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="7.164179104477611" text-anchor="middle" dominant-baseline="text-after-edge" transform="matrix(1,0,0,1,288.05970149253733,31.343283582089555)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">C18</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="7.164179104477611" text-anchor="middle" dominant-baseline="text-after-edge" transform="matrix(1,0,0,1,332.8358208955224,31.343283582089555)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">X17</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="7.164179104477611" text-anchor="middle" dominant-baseline="text-before-edge" transform="matrix(1,0,0,1,467.1641791044776,568.6567164179105)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">X8</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="7.164179104477611" text-anchor="middle" dominant-baseline="text-after-edge" transform="matrix(1,0,0,1,377.6119402985075,31.343283582089555)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">C17</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="7.164179104477611" text-anchor="middle" dominant-baseline="text-after-edge" transform="matrix(1,0,0,1,422.3880597014925,31.343283582089555)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">X16</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="7.164179104477611" text-anchor="middle" dominant-baseline="text-before-edge" transform="matrix(1,0,0,1,377.6119402985075,568.6567164179105)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">X7</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="7.164179104477611" text-anchor="middle" dominant-baseline="text-after-edge" transform="matrix(1,0,0,1,467.1641791044776,31.343283582089555)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">C16</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="7.164179104477611" text-anchor="middle" dominant-baseline="text-after-edge" transform="matrix(1,0,0,1,511.94029850746267,31.343283582089555)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">X15</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="7.164179104477611" text-anchor="middle" dominant-baseline="text-before-edge" transform="matrix(1,0,0,1,288.05970149253733,568.6567164179105)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">X6</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="7.164179104477611" text-anchor="middle" dominant-baseline="text-after-edge" transform="matrix(1,0,0,1,556.7164179104477,31.343283582089555)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">C15</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="7.164179104477611" text-anchor="middle" dominant-baseline="text-after-edge" transform="matrix(1,0,0,1,601.4925373134329,31.343283582089555)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">X14</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="7.164179104477611" text-anchor="middle" dominant-baseline="text-before-edge" transform="matrix(1,0,0,1,198.50746268656718,568.6567164179105)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">X5</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="7.164179104477611" text-anchor="end" dominant-baseline="central" transform="matrix(1,0,0,1,131.34328358208955,143.28358208955225)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">X1</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="7.164179104477611" text-anchor="start" dominant-baseline="central" transform="matrix(1,0,0,1,668.6567164179105,456.7164179104477)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">X10</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="7.164179104477611" text-anchor="end" dominant-baseline="central" transform="matrix(1,0,0,1,131.34328358208955,277.6119402985075)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">C3</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="5.3731343283582085" text-anchor="end" dominant-baseline="central" transform="matrix(1,0,0,1,131.34328358208955,286.56716417910445)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">NET1</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="7.164179104477611" text-anchor="start" dominant-baseline="central" transform="matrix(1,0,0,1,668.6567164179105,143.28358208955225)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">C14</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="5.3731343283582085" text-anchor="start" dominant-baseline="central" transform="matrix(1,0,0,1,668.6567164179105,152.23880597014926)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">NET1</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="7.164179104477611" text-anchor="middle" dominant-baseline="text-before-edge" transform="matrix(1,0,0,1,243.28358208955225,568.6567164179105)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">C6</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="7.164179104477611" text-anchor="middle" dominant-baseline="text-before-edge" transform="matrix(1,0,0,1,422.3880597014925,568.6567164179105)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">C8</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="7.164179104477611" text-anchor="middle" dominant-baseline="text-before-edge" transform="matrix(1,0,0,1,511.94029850746267,568.6567164179105)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">C9</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="7.164179104477611" text-anchor="end" dominant-baseline="central" transform="matrix(1,0,0,1,131.34328358208955,188.05970149253733)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">C2</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="7.164179104477611" text-anchor="end" dominant-baseline="central" transform="matrix(1,0,0,1,131.34328358208955,456.7164179104477)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">C5</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="7.164179104477611" text-anchor="start" dominant-baseline="central" transform="matrix(1,0,0,1,668.6567164179105,322.3880597014925)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">C12</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="7.164179104477611" text-anchor="end" dominant-baseline="central" transform="matrix(1,0,0,1,131.34328358208955,367.1641791044776)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">C4</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="7.164179104477611" text-anchor="middle" dominant-baseline="text-before-edge" transform="matrix(1,0,0,1,332.8358208955224,568.6567164179105)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">C7</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="7.164179104477611" text-anchor="start" dominant-baseline="central" transform="matrix(1,0,0,1,668.6567164179105,188.05970149253733)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">X13</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="7.164179104477611" text-anchor="end" dominant-baseline="central" transform="matrix(1,0,0,1,131.34328358208955,411.94029850746267)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">X4</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="7.164179104477611" text-anchor="end" dominant-baseline="central" transform="matrix(1,0,0,1,131.34328358208955,232.83582089552237)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">X2</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="7.164179104477611" text-anchor="start" dominant-baseline="central" transform="matrix(1,0,0,1,668.6567164179105,367.1641791044776)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">X11</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="7.164179104477611" text-anchor="start" dominant-baseline="central" transform="matrix(1,0,0,1,668.6567164179105,411.94029850746267)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">C11</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="5.3731343283582085" text-anchor="start" dominant-baseline="central" transform="matrix(1,0,0,1,668.6567164179105,420.8955223880597)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">NET1</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="7.164179104477611" text-anchor="middle" dominant-baseline="text-before-edge" transform="matrix(1,0,0,1,601.4925373134329,568.6567164179105)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">C10</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="7.164179104477611" text-anchor="start" dominant-baseline="central" transform="matrix(1,0,0,1,668.6567164179105,232.83582089552237)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">C13</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="7.164179104477611" text-anchor="start" dominant-baseline="central" transform="matrix(1,0,0,1,668.6567164179105,277.6119402985075)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">X12</text><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="7.164179104477611" text-anchor="end" dominant-baseline="central" transform="matrix(1,0,0,1,131.34328358208955,322.3880597014925)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="test_fixture_pcb_component" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">X3</text>
|
|
4
4
|
</g>
|
|
5
|
-
<g transform="translate(0, 600) scale(
|
|
6
|
-
<rect x="-39.5" y="-39.5" width="79" height="79" fill="white"/><g transform="matrix(1 0 0 -1 0 0)"><g transform="matrix(1,0,0,1,0,0)"><path d="M -1.75 3.25 L -1.25 3.25 L -1.25 3.75 L -1.75 3.75 L -1.75 3.25 L -1.75 3.25" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -0.75 3.25 L -0.25 3.25 L -0.25 3.75 L -0.75 3.75 L -0.75 3.25 L -0.75 3.25" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 0.25 3.25 L 0.75 3.25 L 0.75 3.75 L 0.25 3.75 L 0.25 3.25 L 0.25 3.25" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 1.25 3.25 L 1.75 3.25 L 1.75 3.75 L 1.25 3.75 L 1.25 3.25 L 1.25 3.25" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 2.25 3.25 L 2.75 3.25 L 2.75 3.75 L 2.25 3.75 L 2.25 3.25 L 2.25 3.25" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 3.25 3.25 L 3.75 3.25 L 3.75 3.75 L 3.25 3.75 L 3.25 3.25 L 3.25 3.25" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -3.75 2.25 L -3.25 2.25 L -3.25 2.75 L -3.75 2.75 L -3.75 2.25 L -3.75 2.25" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -2.75 2.25 L -2.25 2.25 L -2.25 2.75 L -2.75 2.75 L -2.75 2.25 L -2.75 2.25" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -1.75 2.25 L -1.25 2.25 L -1.25 2.75 L -1.75 2.75 L -1.75 2.25 L -1.75 2.25" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -0.75 2.25 L -0.25 2.25 L -0.25 2.75 L -0.75 2.75 L -0.75 2.25 L -0.75 2.25" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 1.25 2.25 L 1.75 2.25 L 1.75 2.75 L 1.25 2.75 L 1.25 2.25 L 1.25 2.25" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 2.25 2.25 L 2.75 2.25 L 2.75 2.75 L 2.25 2.75 L 2.25 2.25 L 2.25 2.25" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 3.25 2.25 L 3.75 2.25 L 3.75 2.75 L 3.25 2.75 L 3.25 2.25 L 3.25 2.25" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -3.75 1.25 L -3.25 1.25 L -3.25 1.75 L -3.75 1.75 L -3.75 1.25 L -3.75 1.25" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -2.75 1.25 L -2.25 1.25 L -2.25 1.75 L -2.75 1.75 L -2.75 1.25 L -2.75 1.25" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -0.75 1.25 L -0.25 1.25 L -0.25 1.75 L -0.75 1.75 L -0.75 1.25 L -0.75 1.25" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 0.25 1.25 L 0.75 1.25 L 0.75 1.75 L 0.25 1.75 L 0.25 1.25 L 0.25 1.25" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 1.25 1.25 L 1.75 1.25 L 1.75 1.75 L 1.25 1.75 L 1.25 1.25 L 1.25 1.25" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 2.25 1.25 L 2.75 1.25 L 2.75 1.75 L 2.25 1.75 L 2.25 1.25 L 2.25 1.25" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 3.25 1.25 L 3.75 1.25 L 3.75 1.75 L 3.25 1.75 L 3.25 1.25 L 3.25 1.25" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -2.75 0.25 L -2.25 0.25 L -2.25 0.75 L -2.75 0.75 L -2.75 0.25 L -2.75 0.25" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -1.75 0.25 L -1.25 0.25 L -1.25 0.75 L -1.75 0.75 L -1.75 0.25 L -1.75 0.25" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -0.75 0.25 L -0.25 0.25 L -0.25 0.75 L -0.75 0.75 L -0.75 0.25 L -0.75 0.25" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 0.25 0.25 L 0.75 0.25 L 0.75 0.75 L 0.25 0.75 L 0.25 0.25 L 0.25 0.25" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 1.25 0.25 L 1.75 0.25 L 1.75 0.75 L 1.25 0.75 L 1.25 0.25 L 1.25 0.25" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 2.25 0.25 L 2.75 0.25 L 2.75 0.75 L 2.25 0.75 L 2.25 0.25 L 2.25 0.25" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 3.25 0.25 L 3.75 0.25 L 3.75 0.75 L 3.25 0.75 L 3.25 0.25 L 3.25 0.25" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -3.75 -0.75 L -3.25 -0.75 L -3.25 -0.25 L -3.75 -0.25 L -3.75 -0.75 L -3.75 -0.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -2.75 -0.75 L -2.25 -0.75 L -2.25 -0.25 L -2.75 -0.25 L -2.75 -0.75 L -2.75 -0.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -1.75 -0.75 L -1.25 -0.75 L -1.25 -0.25 L -1.75 -0.25 L -1.75 -0.75 L -1.75 -0.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -0.75 -0.75 L -0.25 -0.75 L -0.25 -0.25 L -0.75 -0.25 L -0.75 -0.75 L -0.75 -0.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 0.25 -0.75 L 0.75 -0.75 L 0.75 -0.25 L 0.25 -0.25 L 0.25 -0.75 L 0.25 -0.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 1.25 -0.75 L 1.75 -0.75 L 1.75 -0.25 L 1.25 -0.25 L 1.25 -0.75 L 1.25 -0.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 2.25 -0.75 L 2.75 -0.75 L 2.75 -0.25 L 2.25 -0.25 L 2.25 -0.75 L 2.25 -0.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 3.25 -0.75 L 3.75 -0.75 L 3.75 -0.25 L 3.25 -0.25 L 3.25 -0.75 L 3.25 -0.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -3.75 -1.75 L -3.25 -1.75 L -3.25 -1.25 L -3.75 -1.25 L -3.75 -1.75 L -3.75 -1.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -2.75 -1.75 L -2.25 -1.75 L -2.25 -1.25 L -2.75 -1.25 L -2.75 -1.75 L -2.75 -1.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -1.75 -1.75 L -1.25 -1.75 L -1.25 -1.25 L -1.75 -1.25 L -1.75 -1.75 L -1.75 -1.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -0.75 -1.75 L -0.25 -1.75 L -0.25 -1.25 L -0.75 -1.25 L -0.75 -1.75 L -0.75 -1.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 0.25 -1.75 L 0.75 -1.75 L 0.75 -1.25 L 0.25 -1.25 L 0.25 -1.75 L 0.25 -1.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 2.25 -1.75 L 2.75 -1.75 L 2.75 -1.25 L 2.25 -1.25 L 2.25 -1.75 L 2.25 -1.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 3.25 -1.75 L 3.75 -1.75 L 3.75 -1.25 L 3.25 -1.25 L 3.25 -1.75 L 3.25 -1.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -3.75 -2.75 L -3.25 -2.75 L -3.25 -2.25 L -3.75 -2.25 L -3.75 -2.75 L -3.75 -2.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -2.75 -2.75 L -2.25 -2.75 L -2.25 -2.25 L -2.75 -2.25 L -2.75 -2.75 L -2.75 -2.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -1.75 -2.75 L -1.25 -2.75 L -1.25 -2.25 L -1.75 -2.25 L -1.75 -2.75 L -1.75 -2.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -0.75 -2.75 L -0.25 -2.75 L -0.25 -2.25 L -0.75 -2.25 L -0.75 -2.75 L -0.75 -2.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 0.25 -2.75 L 0.75 -2.75 L 0.75 -2.25 L 0.25 -2.25 L 0.25 -2.75 L 0.25 -2.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 1.25 -2.75 L 1.75 -2.75 L 1.75 -2.25 L 1.25 -2.25 L 1.25 -2.75 L 1.25 -2.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 3.25 -2.75 L 3.75 -2.75 L 3.75 -2.25 L 3.25 -2.25 L 3.25 -2.75 L 3.25 -2.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -3.75 -3.75 L -3.25 -3.75 L -3.25 -3.25 L -3.75 -3.25 L -3.75 -3.75 L -3.75 -3.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -0.75 -3.75 L -0.25 -3.75 L -0.25 -3.25 L -0.75 -3.25 L -0.75 -3.75 L -0.75 -3.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 1.25 -3.75 L 1.75 -3.75 L 1.75 -3.25 L 1.25 -3.25 L 1.25 -3.75 L 1.25 -3.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 2.25 -3.75 L 2.75 -3.75 L 2.75 -3.25 L 2.25 -3.25 L 2.25 -3.75 L 2.25 -3.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 3.25 -3.75 L 3.75 -3.75 L 3.75 -3.25 L 3.25 -3.25 L 3.25 -3.75 L 3.25 -3.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -4.6004146834792765 4.75 L -20.839545118261892 25.5 L -20.5 25.5 L -20.5 29.5 L -24.5 29.5 L -24.5 25.5 L -21.03002009912942 25.5 L -4.75 4.697752095556864 L -4.75 4.25 L -4.25 4.25 L -4.25 4.75 L -4.6004146834792765 4.75 L -4.6004146834792765 4.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 3.5643723129271554 -4.75 L 16.19480709553585 -25.5 L 15.5 -25.5 L 15.5 -29.5 L 19.5 -29.5 L 19.5 -25.5 L 16.370410295768497 -25.5 L 3.7399755131598003 -4.75 L 3.75 -4.75 L 3.75 -4.25 L 3.25 -4.25 L 3.25 -4.75 L 3.5643723129271554 -4.75 L 3.5643723129271554 -4.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -3.7399755131598003 4.75 L -3.75 4.75 L -3.75 4.25 L -3.25 4.25 L -3.25 4.75 L -3.5643723129271554 4.75 L -16.19480709553585 25.5 L -15.5 25.5 L -15.5 29.5 L -19.5 29.5 L -19.5 25.5 L -16.370410295768497 25.5 L -3.7399755131598003 4.75 L -3.7399755131598003 4.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -2.6904778448085973 4.75 L -2.75 4.75 L -2.75 4.25 L -2.25 4.25 L -2.25 4.75 L -2.5269134595392315 4.75 L -11.548652589974013 25.5 L -10.5 25.5 L -10.5 29.5 L -14.5 29.5 L -14.5 25.5 L -11.712216975243377 25.5 L -2.6904778448085973 4.75 L -2.6904778448085973 4.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 1.487707406582577 -4.75 L 6.900750884843448 -25.5 L 5.5 -25.5 L 5.5 -29.5 L 9.5 -29.5 L 9.5 -25.5 L 7.055770854286987 -25.5 L 1.6427273760261165 -4.75 L 1.75 -4.75 L 1.75 -4.25 L 1.25 -4.25 L 1.25 -4.75 L 1.487707406582577 -4.75 L 1.487707406582577 -4.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -1.642727376026116 4.75 L -1.75 4.75 L -1.75 4.25 L -1.25 4.25 L -1.25 4.75 L -1.4877074065825782 4.75 L -6.900750884843449 25.5 L -5.5 25.5 L -5.5 29.5 L -9.5 29.5 L -9.5 25.5 L -7.055770854286986 25.5 L -1.642727376026116 4.75 L -1.642727376026116 4.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -0.5970221503083594 4.75 L -0.75 4.75 L -0.75 4.25 L -0.25 4.25 L -0.25 4.75 L -0.44645611056120443 4.75 L -2.2508039366481625 25.5 L -0.5 25.5 L -0.5 29.5 L -4.5 29.5 L -4.5 25.5 L -2.4013699763953174 25.5 L -0.5970221503083594 4.75 L -0.5970221503083594 4.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -0.44645611056120466 -4.75 L -0.25 -4.75 L -0.25 -4.25 L -0.75 -4.25 L -0.75 -4.75 L -0.597022150308359 -4.75 L -2.401369976395317 -25.5 L -4.5 -25.5 L -4.5 -29.5 L -0.5 -29.5 L -0.5 -25.5 L -2.250803936648163 -25.5 L -0.44645611056120466 -4.75 L -0.44645611056120466 -4.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 0.5970221503083604 4.75 L 2.4013699763953156 25.5 L 4.5 25.5 L 4.5 29.5 L 0.5 29.5 L 0.5 25.5 L 2.2508039366481616 25.5 L 0.44645611056120593 4.75 L 0.25 4.75 L 0.25 4.25 L 0.75 4.25 L 0.75 4.75 L 0.5970221503083604 4.75 L 0.5970221503083604 4.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 1.642727376026117 4.75 L 7.055770854286987 25.5 L 9.5 25.5 L 9.5 29.5 L 5.5 29.5 L 5.5 25.5 L 6.900750884843448 25.5 L 1.4877074065825773 4.75 L 1.25 4.75 L 1.25 4.25 L 1.75 4.25 L 1.75 4.75 L 1.642727376026117 4.75 L 1.642727376026117 4.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 2.690477844808595 4.75 L 11.712216975243376 25.5 L 14.5 25.5 L 14.5 29.5 L 10.5 29.5 L 10.5 25.5 L 11.548652589974015 25.5 L 2.526913459539233 4.75 L 2.25 4.75 L 2.25 4.25 L 2.75 4.25 L 2.75 4.75 L 2.690477844808595 4.75 L 2.690477844808595 4.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -2.526913459539233 -4.75 L -2.25 -4.75 L -2.25 -4.25 L -2.75 -4.25 L -2.75 -4.75 L -2.690477844808594 -4.75 L -11.712216975243376 -25.5 L -14.5 -25.5 L -14.5 -29.5 L -10.5 -29.5 L -10.5 -25.5 L -11.548652589974015 -25.5 L -2.526913459539233 -4.75 L -2.526913459539233 -4.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 3.739975513159803 4.75 L 16.370410295768497 25.5 L 19.5 25.5 L 19.5 29.5 L 15.5 29.5 L 15.5 25.5 L 16.19480709553585 25.5 L 3.5643723129271563 4.75 L 3.25 4.75 L 3.25 4.25 L 3.75 4.25 L 3.75 4.75 L 3.739975513159803 4.75 L 3.739975513159803 4.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 4.75 4.697752095556859 L 21.030020099129416 25.5 L 24.5 25.5 L 24.5 29.5 L 20.5 29.5 L 20.5 25.5 L 20.839545118261885 25.5 L 4.600414683479278 4.75 L 4.25 4.75 L 4.25 4.25 L 4.75 4.25 L 4.75 4.697752095556859 L 4.75 4.697752095556859" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -4.600414683479279 -4.75 L -4.25 -4.75 L -4.25 -4.25 L -4.75 -4.25 L -4.75 -4.697752095556865 L -21.030020099129416 -25.5 L -24.5 -25.5 L -24.5 -29.5 L -20.5 -29.5 L -20.5 -25.5 L -20.8395451182619 -25.5 L -4.600414683479279 -4.75 L -4.600414683479279 -4.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -4.75 3.5643723129271514 L -4.75 3.25 L -4.25 3.25 L -4.25 3.75 L -4.75 3.75 L -4.75 3.7399755131597994 L -25.5 16.370410295768497 L -25.5 19.5 L -29.5 19.5 L -29.5 15.5 L -25.5 15.5 L -25.5 16.19480709553585 L -4.75 3.5643723129271514 L -4.75 3.5643723129271514" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 4.75 -3.739975513159801 L 25.5 -16.370410295768497 L 25.5 -19.5 L 29.5 -19.5 L 29.5 -15.5 L 25.5 -15.5 L 25.5 -16.19480709553585 L 4.75 -3.5643723129271554 L 4.75 -3.25 L 4.25 -3.25 L 4.25 -3.75 L 4.75 -3.75 L 4.75 -3.739975513159801 L 4.75 -3.739975513159801" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -3.5643723129271563 -4.75 L -3.25 -4.75 L -3.25 -4.25 L -3.75 -4.25 L -3.75 -4.75 L -3.739975513159803 -4.75 L -16.370410295768497 -25.5 L -19.5 -25.5 L -19.5 -29.5 L -15.5 -29.5 L -15.5 -25.5 L -16.19480709553585 -25.5 L -3.5643723129271563 -4.75 L -3.5643723129271563 -4.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 0.4464561105612057 -4.75 L 2.2508039366481616 -25.5 L 0.5 -25.5 L 0.5 -29.5 L 4.5 -29.5 L 4.5 -25.5 L 2.401369976395316 -25.5 L 0.5970221503083606 -4.75 L 0.75 -4.75 L 0.75 -4.25 L 0.25 -4.25 L 0.25 -4.75 L 0.4464561105612057 -4.75 L 0.4464561105612057 -4.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 2.5269134595392324 -4.75 L 11.548652589974015 -25.5 L 10.5 -25.5 L 10.5 -29.5 L 14.5 -29.5 L 14.5 -25.5 L 11.712216975243377 -25.5 L 2.6904778448085973 -4.75 L 2.75 -4.75 L 2.75 -4.25 L 2.25 -4.25 L 2.25 -4.75 L 2.5269134595392324 -4.75 L 2.5269134595392324 -4.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -4.75 2.526913459539234 L -4.75 2.25 L -4.25 2.25 L -4.25 2.75 L -4.75 2.75 L -4.75 2.690477844808597 L -25.5 11.712216975243376 L -25.5 14.5 L -29.5 14.5 L -29.5 10.5 L -25.5 10.5 L -25.5 11.548652589974013 L -4.75 2.526913459539234 L -4.75 2.526913459539234" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -4.75 -3.739975513159799 L -4.75 -3.75 L -4.25 -3.75 L -4.25 -3.25 L -4.75 -3.25 L -4.75 -3.5643723129271523 L -25.5 -16.19480709553585 L -25.5 -15.5 L -29.5 -15.5 L -29.5 -19.5 L -25.5 -19.5 L -25.5 -16.370410295768497 L -4.75 -3.739975513159799 L -4.75 -3.739975513159799" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 4.75 -0.5970221503083599 L 25.5 -2.4013699763953165 L 25.5 -4.5 L 29.5 -4.5 L 29.5 -0.5 L 25.5 -0.5 L 25.5 -2.250803936648162 L 4.75 -0.4464561105612052 L 4.75 -0.25 L 4.25 -0.25 L 4.25 -0.75 L 4.75 -0.75 L 4.75 -0.5970221503083599 L 4.75 -0.5970221503083599" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -4.75 -1.6427273760261143 L -4.75 -1.75 L -4.25 -1.75 L -4.25 -1.25 L -4.75 -1.25 L -4.75 -1.4877074065825766 L -25.5 -6.9007508848434505 L -25.5 -5.5 L -29.5 -5.5 L -29.5 -9.5 L -25.5 -9.5 L -25.5 -7.055770854286989 L -4.75 -1.6427273760261143 L -4.75 -1.6427273760261143" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -1.4877074065825777 -4.75 L -1.25 -4.75 L -1.25 -4.25 L -1.75 -4.25 L -1.75 -4.75 L -1.642727376026118 -4.75 L -7.055770854286989 -25.5 L -9.5 -25.5 L -9.5 -29.5 L -5.5 -29.5 L -5.5 -25.5 L -6.900750884843448 -25.5 L -1.4877074065825777 -4.75 L -1.4877074065825777 -4.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 4.75 2.5269134595392337 L 25.5 11.548652589974015 L 25.5 10.5 L 29.5 10.5 L 29.5 14.5 L 25.5 14.5 L 25.5 11.712216975243377 L 4.75 2.6904778448085973 L 4.75 2.75 L 4.25 2.75 L 4.25 2.25 L 4.75 2.25 L 4.75 2.5269134595392337 L 4.75 2.5269134595392337" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -4.75 -2.690477844808596 L -4.75 -2.75 L -4.25 -2.75 L -4.25 -2.25 L -4.75 -2.25 L -4.75 -2.526913459539234 L -25.5 -11.548652589974013 L -25.5 -10.5 L -29.5 -10.5 L -29.5 -14.5 L -25.5 -14.5 L -25.5 -11.712216975243376 L -4.75 -2.690477844808596 L -4.75 -2.690477844808596" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -4.75 1.487707406582576 L -4.75 1.25 L -4.25 1.25 L -4.25 1.75 L -4.75 1.75 L -4.75 1.6427273760261165 L -25.5 7.055770854286991 L -25.5 9.5 L -29.5 9.5 L -29.5 5.5 L -25.5 5.5 L -25.5 6.90075088484345 L -4.75 1.487707406582576 L -4.75 1.487707406582576" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 4.75 -1.6427273760261176 L 25.5 -7.055770854286989 L 25.5 -9.5 L 29.5 -9.5 L 29.5 -5.5 L 25.5 -5.5 L 25.5 -6.900750884843448 L 4.75 -1.4877074065825777 L 4.75 -1.25 L 4.25 -1.25 L 4.25 -1.75 L 4.75 -1.75 L 4.75 -1.6427273760261176 L 4.75 -1.6427273760261176" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 4.600414683479282 -4.75 L 20.839545118261892 -25.5 L 20.5 -25.5 L 20.5 -29.5 L 24.5 -29.5 L 24.5 -25.5 L 21.03002009912941 -25.5 L 4.75 -4.697752095556865 L 4.75 -4.25 L 4.25 -4.25 L 4.25 -4.75 L 4.600414683479282 -4.75 L 4.600414683479282 -4.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 4.75 1.4877074065825777 L 25.5 6.900750884843448 L 25.5 5.5 L 29.5 5.5 L 29.5 9.5 L 25.5 9.5 L 25.5 7.055770854286986 L 4.75 1.642727376026116 L 4.75 1.75 L 4.25 1.75 L 4.25 1.25 L 4.75 1.25 L 4.75 1.4877074065825777 L 4.75 1.4877074065825777" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -4.75 -0.5970221503083649 L -4.75 -0.75 L -4.25 -0.75 L -4.25 -0.25 L -4.75 -0.25 L -4.75 -0.4464561105612099 L -25.5 -2.2508039366481576 L -25.5 -0.5 L -29.5 -0.5 L -29.5 -4.5 L -25.5 -4.5 L -25.5 -2.4013699763953125 L -4.75 -0.5970221503083649 L -4.75 -0.5970221503083649" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 4.75 0.44645611056120527 L 25.5 2.250803936648162 L 25.5 0.5 L 29.5 0.5 L 29.5 4.5 L 25.5 4.5 L 25.5 2.4013699763953165 L 4.75 0.5970221503083598 L 4.75 0.75 L 4.25 0.75 L 4.25 0.25 L 4.75 0.25 L 4.75 0.44645611056120527 L 4.75 0.44645611056120527" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 4.75 3.564372312927154 L 25.5 16.19480709553585 L 25.5 15.5 L 29.5 15.5 L 29.5 19.5 L 25.5 19.5 L 25.5 16.370410295768497 L 4.75 3.7399755131598003 L 4.75 3.75 L 4.25 3.75 L 4.25 3.25 L 4.75 3.25 L 4.75 3.564372312927154 L 4.75 3.564372312927154" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 4.75 -2.690477844808596 L 25.5 -11.712216975243377 L 25.5 -14.5 L 29.5 -14.5 L 29.5 -10.5 L 25.5 -10.5 L 25.5 -11.548652589974015 L 4.75 -2.526913459539233 L 4.75 -2.25 L 4.25 -2.25 L 4.25 -2.75 L 4.75 -2.75 L 4.75 -2.690477844808596 L 4.75 -2.690477844808596" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -4.75 0.44645611056121026 L -4.75 0.25 L -4.25 0.25 L -4.25 0.75 L -4.75 0.75 L -4.75 0.5970221503083646 L -25.5 2.401369976395312 L -25.5 4.5 L -29.5 4.5 L -29.5 0.5 L -25.5 0.5 L -25.5 2.250803936648158 L -4.75 0.44645611056121026 L -4.75 0.44645611056121026" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -3.25 3.425 L -2.75 3.425 L -2.75 3.25 L -2.25 3.25 L -2.25 3.75 L -2.75 3.75 L -2.75 3.575 L -3.25 3.575 L -3.25 3.75 L -3.75 3.75 L -3.75 3.25 L -3.25 3.25 L -3.25 3.425 L -3.25 3.425" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -2.25 -3.575 L -1.75 -3.575 L -1.75 -3.75 L -1.25 -3.75 L -1.25 -3.25 L -1.75 -3.25 L -1.75 -3.425 L -2.25 -3.425 L -2.25 -3.25 L -2.75 -3.25 L -2.75 -3.75 L -2.25 -3.75 L -2.25 -3.575 L -2.25 -3.575" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 0.25 2.25 L 0.75 2.25 L 0.75 2.75 L 0.25 2.75 L 0.25 2.25 L 0.25 2.25" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -1.75 1.25 L -1.25 1.25 L -1.25 1.75 L -1.75 1.75 L -1.75 1.25 L -1.75 1.25" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M -3.75 0.25 L -3.25 0.25 L -3.25 0.75 L -3.75 0.75 L -3.75 0.25 L -3.75 0.25" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 1.25 -1.75 L 1.75 -1.75 L 1.75 -1.25 L 1.25 -1.25 L 1.25 -1.75 L 1.25 -1.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 2.25 -2.75 L 2.75 -2.75 L 2.75 -2.25 L 2.25 -2.25 L 2.25 -2.75 L 2.25 -2.75" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 0.25 -3.75 L 0.75 -3.75 L 0.75 -3.25 L 0.25 -3.25 L 0.25 -3.75 L 0.25 -3.75" fill="none" stroke="#000000" stroke-width="0.1"/></g></g>
|
|
5
|
+
<g transform="translate(0, 600) scale(9.411764705882353, 9.411764705882353) translate(12.899999999999999, 12.899999999999999)">
|
|
6
|
+
<rect x="-12.899999999999999" y="-12.899999999999999" width="85" height="85" fill="white"/><g transform="matrix(1 0 0 -1 0 59.199999999999996)"><g transform="matrix(1,0,0,1,0,0)"><path d="M -2.8999999999999986 -2.8999999999999986 L 62.1 -2.8999999999999986 L 62.1 62.1 L -2.8999999999999986 62.1 L -2.8999999999999986 -2.8999999999999986 L -2.8999999999999986 -2.8999999999999986 Z" fill="none" stroke="#0000FF" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 27.85 32.85 L 28.35 32.85 L 28.35 33.35 L 27.85 33.35 L 27.85 32.85 L 27.85 32.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 28.85 32.85 L 29.35 32.85 L 29.35 33.35 L 28.85 33.35 L 28.85 32.85 L 28.85 32.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 29.85 32.85 L 30.35 32.85 L 30.35 33.35 L 29.85 33.35 L 29.85 32.85 L 29.85 32.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 30.85 32.85 L 31.35 32.85 L 31.35 33.35 L 30.85 33.35 L 30.85 32.85 L 30.85 32.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 31.85 32.85 L 32.35 32.85 L 32.35 33.35 L 31.85 33.35 L 31.85 32.85 L 31.85 32.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 32.85 32.85 L 33.35 32.85 L 33.35 33.35 L 32.85 33.35 L 32.85 32.85 L 32.85 32.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 25.85 31.85 L 26.35 31.85 L 26.35 32.35 L 25.85 32.35 L 25.85 31.85 L 25.85 31.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 26.85 31.85 L 27.35 31.85 L 27.35 32.35 L 26.85 32.35 L 26.85 31.85 L 26.85 31.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 27.85 31.85 L 28.35 31.85 L 28.35 32.35 L 27.85 32.35 L 27.85 31.85 L 27.85 31.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 28.85 31.85 L 29.35 31.85 L 29.35 32.35 L 28.85 32.35 L 28.85 31.85 L 28.85 31.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 30.85 31.85 L 31.35 31.85 L 31.35 32.35 L 30.85 32.35 L 30.85 31.85 L 30.85 31.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 31.85 31.85 L 32.35 31.85 L 32.35 32.35 L 31.85 32.35 L 31.85 31.85 L 31.85 31.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 32.85 31.85 L 33.35 31.85 L 33.35 32.35 L 32.85 32.35 L 32.85 31.85 L 32.85 31.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 25.85 30.85 L 26.35 30.85 L 26.35 31.35 L 25.85 31.35 L 25.85 30.85 L 25.85 30.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 26.85 30.85 L 27.35 30.85 L 27.35 31.35 L 26.85 31.35 L 26.85 30.85 L 26.85 30.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 28.85 30.85 L 29.35 30.85 L 29.35 31.35 L 28.85 31.35 L 28.85 30.85 L 28.85 30.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 29.85 30.85 L 30.35 30.85 L 30.35 31.35 L 29.85 31.35 L 29.85 30.85 L 29.85 30.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 30.85 30.85 L 31.35 30.85 L 31.35 31.35 L 30.85 31.35 L 30.85 30.85 L 30.85 30.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 31.85 30.85 L 32.35 30.85 L 32.35 31.35 L 31.85 31.35 L 31.85 30.85 L 31.85 30.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 32.85 30.85 L 33.35 30.85 L 33.35 31.35 L 32.85 31.35 L 32.85 30.85 L 32.85 30.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 26.85 29.85 L 27.35 29.85 L 27.35 30.35 L 26.85 30.35 L 26.85 29.85 L 26.85 29.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 27.85 29.85 L 28.35 29.85 L 28.35 30.35 L 27.85 30.35 L 27.85 29.85 L 27.85 29.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 28.85 29.85 L 29.35 29.85 L 29.35 30.35 L 28.85 30.35 L 28.85 29.85 L 28.85 29.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 29.85 29.85 L 30.35 29.85 L 30.35 30.35 L 29.85 30.35 L 29.85 29.85 L 29.85 29.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 30.85 29.85 L 31.35 29.85 L 31.35 30.35 L 30.85 30.35 L 30.85 29.85 L 30.85 29.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 31.85 29.85 L 32.35 29.85 L 32.35 30.35 L 31.85 30.35 L 31.85 29.85 L 31.85 29.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 32.85 29.85 L 33.35 29.85 L 33.35 30.35 L 32.85 30.35 L 32.85 29.85 L 32.85 29.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 25.85 28.85 L 26.35 28.85 L 26.35 29.35 L 25.85 29.35 L 25.85 28.85 L 25.85 28.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 26.85 28.85 L 27.35 28.85 L 27.35 29.35 L 26.85 29.35 L 26.85 28.85 L 26.85 28.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 27.85 28.85 L 28.35 28.85 L 28.35 29.35 L 27.85 29.35 L 27.85 28.85 L 27.85 28.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 28.85 28.85 L 29.35 28.85 L 29.35 29.35 L 28.85 29.35 L 28.85 28.85 L 28.85 28.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 29.85 28.85 L 30.35 28.85 L 30.35 29.35 L 29.85 29.35 L 29.85 28.85 L 29.85 28.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 30.85 28.85 L 31.35 28.85 L 31.35 29.35 L 30.85 29.35 L 30.85 28.85 L 30.85 28.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 31.85 28.85 L 32.35 28.85 L 32.35 29.35 L 31.85 29.35 L 31.85 28.85 L 31.85 28.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 32.85 28.85 L 33.35 28.85 L 33.35 29.35 L 32.85 29.35 L 32.85 28.85 L 32.85 28.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 25.85 27.85 L 26.35 27.85 L 26.35 28.35 L 25.85 28.35 L 25.85 27.85 L 25.85 27.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 26.85 27.85 L 27.35 27.85 L 27.35 28.35 L 26.85 28.35 L 26.85 27.85 L 26.85 27.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 27.85 27.85 L 28.35 27.85 L 28.35 28.35 L 27.85 28.35 L 27.85 27.85 L 27.85 27.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 28.85 27.85 L 29.35 27.85 L 29.35 28.35 L 28.85 28.35 L 28.85 27.85 L 28.85 27.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 29.85 27.85 L 30.35 27.85 L 30.35 28.35 L 29.85 28.35 L 29.85 27.85 L 29.85 27.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 31.85 27.85 L 32.35 27.85 L 32.35 28.35 L 31.85 28.35 L 31.85 27.85 L 31.85 27.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 32.85 27.85 L 33.35 27.85 L 33.35 28.35 L 32.85 28.35 L 32.85 27.85 L 32.85 27.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 25.85 26.85 L 26.35 26.85 L 26.35 27.35 L 25.85 27.35 L 25.85 26.85 L 25.85 26.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 26.85 26.85 L 27.35 26.85 L 27.35 27.35 L 26.85 27.35 L 26.85 26.85 L 26.85 26.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 27.85 26.85 L 28.35 26.85 L 28.35 27.35 L 27.85 27.35 L 27.85 26.85 L 27.85 26.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 28.85 26.85 L 29.35 26.85 L 29.35 27.35 L 28.85 27.35 L 28.85 26.85 L 28.85 26.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 29.85 26.85 L 30.35 26.85 L 30.35 27.35 L 29.85 27.35 L 29.85 26.85 L 29.85 26.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 30.85 26.85 L 31.35 26.85 L 31.35 27.35 L 30.85 27.35 L 30.85 26.85 L 30.85 26.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 32.85 26.85 L 33.35 26.85 L 33.35 27.35 L 32.85 27.35 L 32.85 26.85 L 32.85 26.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 25.85 25.85 L 26.35 25.85 L 26.35 26.35 L 25.85 26.35 L 25.85 25.85 L 25.85 25.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 28.85 25.85 L 29.35 25.85 L 29.35 26.35 L 28.85 26.35 L 28.85 25.85 L 28.85 25.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 30.85 25.85 L 31.35 25.85 L 31.35 26.35 L 30.85 26.35 L 30.85 25.85 L 30.85 25.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 31.85 25.85 L 32.35 25.85 L 32.35 26.35 L 31.85 26.35 L 31.85 25.85 L 31.85 25.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 32.85 25.85 L 33.35 25.85 L 33.35 26.35 L 32.85 26.35 L 32.85 25.85 L 32.85 25.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 24.999585316520722 34.35 L 8.760454881738113 55.1 L 9.100000000000001 55.1 L 9.100000000000001 59.1 L 5.100000000000001 59.1 L 5.100000000000001 55.1 L 8.569979900870582 55.1 L 24.85 34.29775209555686 L 24.85 33.85 L 25.35 33.85 L 25.35 34.35 L 24.999585316520722 34.35 L 24.999585316520722 34.35" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 25.8600244868402 34.35 L 25.85 34.35 L 25.85 33.85 L 26.35 33.85 L 26.35 34.35 L 26.03562768707285 34.35 L 13.405192904464151 55.1 L 14.100000000000001 55.1 L 14.100000000000001 59.1 L 10.100000000000001 59.1 L 10.100000000000001 55.1 L 13.229589704231499 55.1 L 25.8600244868402 34.35 L 25.8600244868402 34.35" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 33.164372312927156 24.85 L 45.79480709553585 4.100000000000001 L 45.1 4.100000000000001 L 45.1 0.10000000000000142 L 49.1 0.10000000000000142 L 49.1 4.100000000000001 L 45.9704102957685 4.100000000000001 L 33.33997551315981 24.85 L 33.35 24.85 L 33.35 25.35 L 32.85 25.35 L 32.85 24.85 L 33.164372312927156 24.85 L 33.164372312927156 24.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 26.90952215519141 34.35 L 26.85 34.35 L 26.85 33.85 L 27.35 33.85 L 27.35 34.35 L 27.07308654046077 34.35 L 18.051347410025983 55.1 L 19.1 55.1 L 19.1 59.1 L 15.100000000000001 59.1 L 15.100000000000001 55.1 L 17.887783024756622 55.1 L 26.90952215519141 34.35 L 26.90952215519141 34.35" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 27.957272623973882 34.35 L 27.85 34.35 L 27.85 33.85 L 28.35 33.85 L 28.35 34.35 L 28.112292593417425 34.35 L 22.699249115156558 55.1 L 24.1 55.1 L 24.1 59.1 L 20.1 59.1 L 20.1 55.1 L 22.54422914571301 55.1 L 27.957272623973882 34.35 L 27.957272623973882 34.35" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 31.087707406582574 24.85 L 36.50075088484345 4.100000000000001 L 35.1 4.100000000000001 L 35.1 0.10000000000000142 L 39.1 0.10000000000000142 L 39.1 4.100000000000001 L 36.655770854286985 4.100000000000001 L 31.242727376026117 24.85 L 31.35 24.85 L 31.35 25.35 L 30.85 25.35 L 30.85 24.85 L 31.087707406582574 24.85 L 31.087707406582574 24.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 29.00297784969164 34.35 L 28.85 34.35 L 28.85 33.85 L 29.35 33.85 L 29.35 34.35 L 29.1535438894388 34.35 L 27.349196063351844 55.1 L 29.1 55.1 L 29.1 59.1 L 25.1 59.1 L 25.1 55.1 L 27.198630023604682 55.1 L 29.00297784969164 34.35 L 29.00297784969164 34.35" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 30.19702215030836 34.35 L 32.00136997639532 55.1 L 34.1 55.1 L 34.1 59.1 L 30.1 59.1 L 30.1 55.1 L 31.850803936648166 55.1 L 30.04645611056121 34.35 L 29.85 34.35 L 29.85 33.85 L 30.35 33.85 L 30.35 34.35 L 30.19702215030836 34.35 L 30.19702215030836 34.35" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 29.153543889438794 24.85 L 29.35 24.85 L 29.35 25.35 L 28.85 25.35 L 28.85 24.85 L 29.002977849691643 24.85 L 27.19863002360469 4.100000000000001 L 25.1 4.100000000000001 L 25.1 0.10000000000000142 L 29.1 0.10000000000000142 L 29.1 4.100000000000001 L 27.34919606335184 4.100000000000001 L 29.153543889438794 24.85 L 29.153543889438794 24.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 31.24272737602612 34.35 L 36.655770854286985 55.1 L 39.1 55.1 L 39.1 59.1 L 35.1 59.1 L 35.1 55.1 L 36.50075088484345 55.1 L 31.087707406582577 34.35 L 30.85 34.35 L 30.85 33.85 L 31.35 33.85 L 31.35 34.35 L 31.24272737602612 34.35 L 31.24272737602612 34.35" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 32.29047784480859 34.35 L 41.31221697524338 55.1 L 44.1 55.1 L 44.1 59.1 L 40.1 59.1 L 40.1 55.1 L 41.14865258997401 55.1 L 32.126913459539225 34.35 L 31.85 34.35 L 31.85 33.85 L 32.35 33.85 L 32.35 34.35 L 32.29047784480859 34.35 L 32.29047784480859 34.35" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 27.07308654046077 24.85 L 27.35 24.85 L 27.35 25.35 L 26.85 25.35 L 26.85 24.85 L 26.90952215519141 24.85 L 17.887783024756626 4.100000000000001 L 15.100000000000001 4.100000000000001 L 15.100000000000001 0.10000000000000142 L 19.1 0.10000000000000142 L 19.1 4.100000000000001 L 18.051347410025986 4.100000000000001 L 27.07308654046077 24.85 L 27.07308654046077 24.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 33.3399755131598 34.35 L 45.9704102957685 55.1 L 49.1 55.1 L 49.1 59.1 L 45.1 59.1 L 45.1 55.1 L 45.79480709553585 55.1 L 33.164372312927156 34.35 L 32.85 34.35 L 32.85 33.85 L 33.35 33.85 L 33.35 34.35 L 33.3399755131598 34.35 L 33.3399755131598 34.35" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 24.99958531652072 24.85 L 25.35 24.85 L 25.35 25.35 L 24.85 25.35 L 24.85 24.902247904443147 L 8.569979900870578 4.100000000000001 L 5.100000000000001 4.100000000000001 L 5.100000000000001 0.10000000000000142 L 9.100000000000001 0.10000000000000142 L 9.100000000000001 4.100000000000001 L 8.76045488173811 4.100000000000001 L 24.99958531652072 24.85 L 24.99958531652072 24.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 34.35 34.29775209555686 L 50.63002009912942 55.1 L 54.1 55.1 L 54.1 59.1 L 50.1 59.1 L 50.1 55.1 L 50.4395451182619 55.1 L 34.20041468347928 34.35 L 33.85 34.35 L 33.85 33.85 L 34.35 33.85 L 34.35 34.29775209555686 L 34.35 34.29775209555686" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 34.35 25.8600244868402 L 55.1 13.229589704231499 L 55.1 10.100000000000001 L 59.1 10.100000000000001 L 59.1 14.100000000000001 L 55.1 14.100000000000001 L 55.1 13.405192904464151 L 34.35 26.03562768707285 L 34.35 26.35 L 33.85 26.35 L 33.85 25.85 L 34.35 25.85 L 34.35 25.8600244868402 L 34.35 25.8600244868402" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 24.85 33.164372312927156 L 24.85 32.85 L 25.35 32.85 L 25.35 33.35 L 24.85 33.35 L 24.85 33.3399755131598 L 4.100000000000001 45.970410295768495 L 4.100000000000001 49.1 L 0.10000000000000142 49.1 L 0.10000000000000142 45.1 L 4.100000000000001 45.1 L 4.100000000000001 45.79480709553585 L 24.85 33.164372312927156 L 24.85 33.164372312927156" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 26.03562768707285 24.85 L 26.35 24.85 L 26.35 25.35 L 25.85 25.35 L 25.85 24.85 L 25.8600244868402 24.85 L 13.229589704231502 4.100000000000001 L 10.100000000000001 4.100000000000001 L 10.100000000000001 0.10000000000000142 L 14.100000000000001 0.10000000000000142 L 14.100000000000001 4.100000000000001 L 13.405192904464151 4.100000000000001 L 26.03562768707285 24.85 L 26.03562768707285 24.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 30.04645611056121 24.85 L 31.850803936648163 4.100000000000001 L 30.1 4.100000000000001 L 30.1 0.10000000000000142 L 34.1 0.10000000000000142 L 34.1 4.100000000000001 L 32.00136997639532 4.100000000000001 L 30.19702215030836 24.85 L 30.35 24.85 L 30.35 25.35 L 29.85 25.35 L 29.85 24.85 L 30.04645611056121 24.85 L 30.04645611056121 24.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 32.12691345953923 24.85 L 41.14865258997401 4.100000000000001 L 40.1 4.100000000000001 L 40.1 0.10000000000000142 L 44.1 0.10000000000000142 L 44.1 4.100000000000001 L 41.31221697524338 4.100000000000001 L 32.29047784480859 24.85 L 32.35 24.85 L 32.35 25.35 L 31.85 25.35 L 31.85 24.85 L 32.12691345953923 24.85 L 32.12691345953923 24.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 24.85 32.12691345953923 L 24.85 31.85 L 25.35 31.85 L 25.35 32.35 L 24.85 32.35 L 24.85 32.29047784480859 L 4.100000000000001 41.31221697524338 L 4.100000000000001 44.1 L 0.10000000000000142 44.1 L 0.10000000000000142 40.1 L 4.100000000000001 40.1 L 4.100000000000001 41.14865258997401 L 24.85 32.12691345953923 L 24.85 32.12691345953923" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 24.85 25.860024486840203 L 24.85 25.85 L 25.35 25.85 L 25.35 26.35 L 24.85 26.35 L 24.85 26.035627687072846 L 4.100000000000001 13.405192904464151 L 4.100000000000001 14.100000000000001 L 0.10000000000000142 14.100000000000001 L 0.10000000000000142 10.100000000000001 L 4.100000000000001 10.100000000000001 L 4.100000000000001 13.2295897042315 L 24.85 25.860024486840203 L 24.85 25.860024486840203" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 34.35 29.002977849691643 L 55.1 27.198630023604686 L 55.1 25.1 L 59.1 25.1 L 59.1 29.1 L 55.1 29.1 L 55.1 27.349196063351837 L 34.35 29.153543889438794 L 34.35 29.35 L 33.85 29.35 L 33.85 28.85 L 34.35 28.85 L 34.35 29.002977849691643 L 34.35 29.002977849691643" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 24.85 27.957272623973882 L 24.85 27.85 L 25.35 27.85 L 25.35 28.35 L 24.85 28.35 L 24.85 28.112292593417422 L 4.100000000000001 22.699249115156555 L 4.100000000000001 24.1 L 0.10000000000000142 24.1 L 0.10000000000000142 20.1 L 4.100000000000001 20.1 L 4.100000000000001 22.54422914571301 L 24.85 27.957272623973882 L 24.85 27.957272623973882" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 28.112292593417425 24.85 L 28.35 24.85 L 28.35 25.35 L 27.85 25.35 L 27.85 24.85 L 27.957272623973882 24.85 L 22.54422914571301 4.100000000000001 L 20.1 4.100000000000001 L 20.1 0.10000000000000142 L 24.1 0.10000000000000142 L 24.1 4.100000000000001 L 22.699249115156558 4.100000000000001 L 28.112292593417425 24.85 L 28.112292593417425 24.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 34.35 32.12691345953923 L 55.1 41.14865258997401 L 55.1 40.1 L 59.1 40.1 L 59.1 44.1 L 55.1 44.1 L 55.1 41.31221697524338 L 34.35 32.2904778448086 L 34.35 32.35 L 33.85 32.35 L 33.85 31.85 L 34.35 31.85 L 34.35 32.12691345953923 L 34.35 32.12691345953923" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 24.85 26.90952215519141 L 24.85 26.85 L 25.35 26.85 L 25.35 27.35 L 24.85 27.35 L 24.85 27.07308654046077 L 4.100000000000001 18.051347410025986 L 4.100000000000001 19.1 L 0.10000000000000142 19.1 L 0.10000000000000142 15.100000000000001 L 4.100000000000001 15.100000000000001 L 4.100000000000001 17.887783024756622 L 24.85 26.90952215519141 L 24.85 26.90952215519141" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 24.85 31.087707406582574 L 24.85 30.85 L 25.35 30.85 L 25.35 31.35 L 24.85 31.35 L 24.85 31.242727376026117 L 4.100000000000001 36.655770854286985 L 4.100000000000001 39.1 L 0.10000000000000142 39.1 L 0.10000000000000142 35.1 L 4.100000000000001 35.1 L 4.100000000000001 36.50075088484345 L 24.85 31.087707406582574 L 24.85 31.087707406582574" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 34.35 27.95727262397389 L 55.1 22.544229145713018 L 55.1 20.1 L 59.1 20.1 L 59.1 24.1 L 55.1 24.1 L 55.1 22.699249115156558 L 34.35 28.112292593417425 L 34.35 28.35 L 33.85 28.35 L 33.85 27.85 L 34.35 27.85 L 34.35 27.95727262397389 L 34.35 27.95727262397389" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 34.20041468347928 24.85 L 50.4395451182619 4.100000000000001 L 50.1 4.100000000000001 L 50.1 0.10000000000000142 L 54.1 0.10000000000000142 L 54.1 4.100000000000001 L 50.63002009912942 4.100000000000001 L 34.35 24.90224790444314 L 34.35 25.35 L 33.85 25.35 L 33.85 24.85 L 34.20041468347928 24.85 L 34.20041468347928 24.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 34.35 31.087707406582574 L 55.1 36.50075088484345 L 55.1 35.1 L 59.1 35.1 L 59.1 39.1 L 55.1 39.1 L 55.1 36.655770854286985 L 34.35 31.24272737602612 L 34.35 31.35 L 33.85 31.35 L 33.85 30.85 L 34.35 30.85 L 34.35 31.087707406582574 L 34.35 31.087707406582574" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 24.85 29.002977849691636 L 24.85 28.85 L 25.35 28.85 L 25.35 29.35 L 24.85 29.35 L 24.85 29.153543889438794 L 4.100000000000001 27.349196063351844 L 4.100000000000001 29.1 L 0.10000000000000142 29.1 L 0.10000000000000142 25.1 L 4.100000000000001 25.1 L 4.100000000000001 27.198630023604686 L 24.85 29.002977849691636 L 24.85 29.002977849691636" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 34.35 30.04645611056121 L 55.1 31.850803936648166 L 55.1 30.1 L 59.1 30.1 L 59.1 34.1 L 55.1 34.1 L 55.1 32.00136997639532 L 34.35 30.197022150308356 L 34.35 30.35 L 33.85 30.35 L 33.85 29.85 L 34.35 29.85 L 34.35 30.04645611056121 L 34.35 30.04645611056121" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 34.35 33.164372312927156 L 55.1 45.79480709553585 L 55.1 45.1 L 59.1 45.1 L 59.1 49.1 L 55.1 49.1 L 55.1 45.9704102957685 L 34.35 33.3399755131598 L 34.35 33.35 L 33.85 33.35 L 33.85 32.85 L 34.35 32.85 L 34.35 33.164372312927156 L 34.35 33.164372312927156" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 34.35 26.90952215519141 L 55.1 17.887783024756622 L 55.1 15.100000000000001 L 59.1 15.100000000000001 L 59.1 19.1 L 55.1 19.1 L 55.1 18.051347410025983 L 34.35 27.07308654046077 L 34.35 27.35 L 33.85 27.35 L 33.85 26.85 L 34.35 26.85 L 34.35 26.90952215519141 L 34.35 26.90952215519141" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 24.85 30.046456110561213 L 24.85 29.85 L 25.35 29.85 L 25.35 30.35 L 24.85 30.35 L 24.85 30.197022150308364 L 4.100000000000001 32.00136997639531 L 4.100000000000001 34.1 L 0.10000000000000142 34.1 L 0.10000000000000142 30.1 L 4.100000000000001 30.1 L 4.100000000000001 31.85080393664816 L 24.85 30.046456110561213 L 24.85 30.046456110561213" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 26.35 33.025 L 26.85 33.025 L 26.85 32.85 L 27.35 32.85 L 27.35 33.35 L 26.85 33.35 L 26.85 33.175000000000004 L 26.35 33.175000000000004 L 26.35 33.35 L 25.85 33.35 L 25.85 32.85 L 26.35 32.85 L 26.35 33.025 L 26.35 33.025" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 27.35 26.025000000000002 L 27.85 26.025000000000002 L 27.85 25.85 L 28.35 25.85 L 28.35 26.35 L 27.85 26.35 L 27.85 26.175 L 27.35 26.175 L 27.35 26.35 L 26.85 26.35 L 26.85 25.85 L 27.35 25.85 L 27.35 26.025000000000002 L 27.35 26.025000000000002" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 29.85 31.85 L 30.35 31.85 L 30.35 32.35 L 29.85 32.35 L 29.85 31.85 L 29.85 31.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 27.85 30.85 L 28.35 30.85 L 28.35 31.35 L 27.85 31.35 L 27.85 30.85 L 27.85 30.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 25.85 29.85 L 26.35 29.85 L 26.35 30.35 L 25.85 30.35 L 25.85 29.85 L 25.85 29.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 30.85 27.85 L 31.35 27.85 L 31.35 28.35 L 30.85 28.35 L 30.85 27.85 L 30.85 27.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 31.85 26.85 L 32.35 26.85 L 32.35 27.35 L 31.85 27.35 L 31.85 26.85 L 31.85 26.85" fill="none" stroke="#000000" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 29.85 25.85 L 30.35 25.85 L 30.35 26.35 L 29.85 26.35 L 29.85 25.85 L 29.85 25.85" fill="none" stroke="#000000" stroke-width="0.1"/></g></g>
|
|
7
7
|
</g>
|
|
8
8
|
</svg>
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<g transform="translate(0, 0)">
|
|
3
3
|
<style></style><rect class="boundary" x="0" y="0" fill="#000" width="800" height="600" data-type="pcb_background" data-pcb-layer="global"/><rect class="pcb-boundary" fill="none" stroke="#fff" stroke-width="0.3" x="127.27272727272725" y="27.272727272727252" width="545.4545454545455" height="545.4545454545455" data-type="pcb_boundary" data-pcb-layer="global"/><path class="pcb-board" d="M 127.27272727272725 572.7272727272727 L 672.7272727272727 572.7272727272727 L 672.7272727272727 27.272727272727252 L 127.27272727272725 27.272727272727252 Z" fill="none" stroke="rgba(255, 255, 255, 0.5)" stroke-width="2.7272727272727275" data-type="pcb_board" data-pcb-layer="board"/><path class="pcb-trace" stroke="rgb(200, 52, 52)" fill="none" d="M 263.6363636363636 436.3636363636364 L 536.3636363636364 163.63636363636363" stroke-width="13.636363636363637" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges" data-type="pcb_trace" data-pcb-layer="top"/>
|
|
4
4
|
</g>
|
|
5
|
-
<g transform="translate(0, 600) scale(
|
|
6
|
-
<rect x="-
|
|
5
|
+
<g transform="translate(0, 600) scale(20, 20) translate(14.65, 14.65)">
|
|
6
|
+
<rect x="-14.65" y="-14.65" width="40" height="40" fill="white"/><g transform="matrix(1 0 0 -1 0 10.700000000000001)"><g transform="matrix(1,0,0,1,0,0)"><path d="M -4.65 -4.65 L 15.35 -4.65 L 15.35 15.35 L -4.65 15.35 L -4.65 -4.65 L -4.65 -4.65 Z" fill="none" stroke="#0000FF" stroke-width="0.1"/></g><g transform="matrix(1,0,0,1,0,0)"><path d="M 0.2969669914110086 0.4030330085889907 L 0.28763977907730875 0.3916677674764698 L 0.2807090350616531 0.37870125742738137 L 0.27644110396975735 0.3646317741512093 L 0.27499999999999963 0.34999999999999964 L 0.27644110396975735 0.33536822584879 L 0.2807090350616531 0.3212987425726179 L 0.28763977907730875 0.3083322325235295 L 0.2969669914110086 0.2969669914110086 L 0.3083322325235295 0.28763977907730875 L 0.32129874257261787 0.2807090350616532 L 0.33536822584879 0.2764411039697574 L 0.34999999999999964 0.27499999999999963 L 0.3646317741512093 0.27644110396975735 L 0.37870125742738137 0.2807090350616531 L 0.3916677674764698 0.28763977907730875 L 0.4030330085889907 0.2969669914110086 L 10.403033008588993 10.296966991411008 L 10.412360220922691 10.30833223252353 L 10.419290964938346 10.321298742572617 L 10.423558896030242 10.33536822584879 L 10.424999999999999 10.35 L 10.423558896030242 10.36463177415121 L 10.419290964938346 10.378701257427382 L 10.412360220922691 10.39166776747647 L 10.403033008588991 10.403033008588991 L 10.39166776747647 10.412360220922691 L 10.378701257427382 10.419290964938346 L 10.36463177415121 10.423558896030242 L 10.35 10.424999999999999 L 10.33536822584879 10.423558896030242 L 10.321298742572617 10.419290964938346 L 10.30833223252353 10.412360220922691 L 10.296966991411008 10.403033008588991 L 0.2969669914110077 0.4030330085889907 L 0.2969669914110086 0.4030330085889907" fill="none" stroke="#000000" stroke-width="0.1"/></g></g>
|
|
7
7
|
</g>
|
|
8
8
|
</svg>
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import { test, expect } from "bun:test"
|
|
2
|
+
import { convertCircuitJsonToPcbSvg } from "circuit-to-svg"
|
|
3
|
+
import { generateLightBurnSvg } from "lbrnts"
|
|
4
|
+
import { convertCircuitJsonToLbrn } from "../../lib"
|
|
5
|
+
import { stackSvgsVertically } from "stack-svgs"
|
|
6
|
+
import type { CircuitJson } from "circuit-json"
|
|
7
|
+
|
|
8
|
+
const circuitJson: CircuitJson = [
|
|
9
|
+
{
|
|
10
|
+
type: "source_port",
|
|
11
|
+
name: "port1",
|
|
12
|
+
source_port_id: "sp1",
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
type: "source_port",
|
|
16
|
+
name: "port2",
|
|
17
|
+
source_port_id: "sp2",
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
type: "source_trace",
|
|
21
|
+
source_trace_id: "st1",
|
|
22
|
+
connected_source_port_ids: ["sp1", "sp2"],
|
|
23
|
+
connected_source_net_ids: [],
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
type: "pcb_board",
|
|
27
|
+
pcb_board_id: "board1",
|
|
28
|
+
center: { x: 5, y: 5 },
|
|
29
|
+
thickness: 1.6,
|
|
30
|
+
num_layers: 2,
|
|
31
|
+
material: "fr4",
|
|
32
|
+
outline: [
|
|
33
|
+
{ x: 0, y: 0 },
|
|
34
|
+
{ x: 40, y: 0 },
|
|
35
|
+
{ x: 40, y: 15 },
|
|
36
|
+
{ x: 5, y: 15 },
|
|
37
|
+
{ x: 0, y: 10 },
|
|
38
|
+
],
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
type: "pcb_port",
|
|
42
|
+
pcb_port_id: "pp1",
|
|
43
|
+
source_port_id: "sp1",
|
|
44
|
+
x: 10,
|
|
45
|
+
y: 5,
|
|
46
|
+
layers: ["top"],
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
type: "pcb_port",
|
|
50
|
+
pcb_port_id: "pp2",
|
|
51
|
+
source_port_id: "sp2",
|
|
52
|
+
x: 30,
|
|
53
|
+
y: 5,
|
|
54
|
+
layers: ["top"],
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
type: "pcb_smtpad",
|
|
58
|
+
pcb_smtpad_id: "pad1",
|
|
59
|
+
pcb_port_id: "pp1",
|
|
60
|
+
shape: "rect",
|
|
61
|
+
x: 10,
|
|
62
|
+
y: 5,
|
|
63
|
+
width: 2,
|
|
64
|
+
height: 3,
|
|
65
|
+
layer: "top",
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
type: "pcb_trace",
|
|
69
|
+
pcb_trace_id: "trace1",
|
|
70
|
+
source_trace_id: "st1",
|
|
71
|
+
route: [
|
|
72
|
+
{
|
|
73
|
+
x: 10,
|
|
74
|
+
y: 5,
|
|
75
|
+
width: 0.5,
|
|
76
|
+
layer: "top",
|
|
77
|
+
route_type: "wire",
|
|
78
|
+
start_pcb_port_id: "pp1",
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
x: 30,
|
|
82
|
+
y: 5,
|
|
83
|
+
width: 0.5,
|
|
84
|
+
layer: "top",
|
|
85
|
+
route_type: "wire",
|
|
86
|
+
end_pcb_port_id: "pp2",
|
|
87
|
+
},
|
|
88
|
+
],
|
|
89
|
+
},
|
|
90
|
+
]
|
|
91
|
+
|
|
92
|
+
test("creates board outline cut with through-board setting", async () => {
|
|
93
|
+
const pcbSvg = await convertCircuitJsonToPcbSvg(circuitJson)
|
|
94
|
+
|
|
95
|
+
const project = convertCircuitJsonToLbrn(circuitJson)
|
|
96
|
+
|
|
97
|
+
const lbrnSvg = await generateLightBurnSvg(project)
|
|
98
|
+
|
|
99
|
+
expect(stackSvgsVertically([pcbSvg, lbrnSvg])).toMatchSvgSnapshot(
|
|
100
|
+
import.meta.filename,
|
|
101
|
+
)
|
|
102
|
+
})
|