circuit-json-to-lbrn 0.0.4 → 0.0.6

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.d.ts CHANGED
@@ -7,6 +7,7 @@ declare const convertCircuitJsonToLbrn: (circuitJson: CircuitJson, options?: {
7
7
  x: number;
8
8
  y: number;
9
9
  };
10
+ margin?: number;
10
11
  }) => LightBurnProject;
11
12
 
12
13
  export { convertCircuitJsonToLbrn };
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  // lib/index.ts
2
2
  import { LightBurnProject, CutSetting, ShapePath as ShapePath3 } from "lbrnts";
3
- import { cju } from "@tscircuit/circuit-json-util";
3
+ import { cju as cju2 } from "@tscircuit/circuit-json-util";
4
4
 
5
5
  // lib/element-handlers/addPlatedHole/addCirclePlatedHole.ts
6
6
  import { ShapePath } from "lbrnts";
@@ -148,9 +148,65 @@ function polygonToShapePathData(polygon) {
148
148
  return { verts, prims };
149
149
  }
150
150
 
151
+ // lib/calculateBounds.ts
152
+ import { cju } from "@tscircuit/circuit-json-util";
153
+ var calculateCircuitBounds = (circuitJson) => {
154
+ const db = cju(circuitJson);
155
+ let minX = Infinity;
156
+ let minY = Infinity;
157
+ let maxX = -Infinity;
158
+ let maxY = -Infinity;
159
+ for (const smtpad of db.pcb_smtpad.list()) {
160
+ if (smtpad.shape === "rect") {
161
+ const halfWidth = smtpad.width / 2;
162
+ const halfHeight = smtpad.height / 2;
163
+ minX = Math.min(minX, smtpad.x - halfWidth);
164
+ minY = Math.min(minY, smtpad.y - halfHeight);
165
+ maxX = Math.max(maxX, smtpad.x + halfWidth);
166
+ maxY = Math.max(maxY, smtpad.y + halfHeight);
167
+ } else if (smtpad.shape === "circle") {
168
+ const radius = smtpad.radius;
169
+ minX = Math.min(minX, smtpad.x - radius);
170
+ minY = Math.min(minY, smtpad.y - radius);
171
+ maxX = Math.max(maxX, smtpad.x + radius);
172
+ maxY = Math.max(maxY, smtpad.y + radius);
173
+ }
174
+ }
175
+ for (const trace of db.pcb_trace.list()) {
176
+ const isWidthPoint = (point) => "width" in point && typeof point.width === "number";
177
+ const halfWidth = trace.route_thickness_mode === "interpolated" ? 0 : (trace.route.find(isWidthPoint)?.width ?? 0) / 2;
178
+ for (const point of trace.route) {
179
+ const pointWidth = trace.route_thickness_mode === "interpolated" ? isWidthPoint(point) ? point.width / 2 : 0 : halfWidth;
180
+ minX = Math.min(minX, point.x - pointWidth);
181
+ minY = Math.min(minY, point.y - pointWidth);
182
+ maxX = Math.max(maxX, point.x + pointWidth);
183
+ maxY = Math.max(maxY, point.y + pointWidth);
184
+ }
185
+ }
186
+ for (const hole of db.pcb_plated_hole.list()) {
187
+ if (hole.shape === "circle") {
188
+ const radius = hole.outer_diameter / 2;
189
+ minX = Math.min(minX, hole.x - radius);
190
+ minY = Math.min(minY, hole.y - radius);
191
+ maxX = Math.max(maxX, hole.x + radius);
192
+ maxY = Math.max(maxY, hole.y + radius);
193
+ }
194
+ }
195
+ if (!isFinite(minX) || !isFinite(minY) || !isFinite(maxX) || !isFinite(maxY)) {
196
+ return { minX: 0, minY: 0, maxX: 0, maxY: 0 };
197
+ }
198
+ return { minX, minY, maxX, maxY };
199
+ };
200
+ var calculateOriginFromBounds = (bounds, margin) => {
201
+ const m = margin ?? 0.1;
202
+ const originX = bounds.minX < m ? -bounds.minX + m : 0;
203
+ const originY = bounds.minY < m ? -bounds.minY + m : 0;
204
+ return { x: originX, y: originY };
205
+ };
206
+
151
207
  // lib/index.ts
152
208
  var convertCircuitJsonToLbrn = (circuitJson, options = {}) => {
153
- const db = cju(circuitJson);
209
+ const db = cju2(circuitJson);
154
210
  const project = new LightBurnProject({
155
211
  appVersion: "1.7.03",
156
212
  formatVersion: "1"
@@ -163,13 +219,18 @@ var convertCircuitJsonToLbrn = (circuitJson, options = {}) => {
163
219
  });
164
220
  project.children.push(copperCutSetting);
165
221
  const connMap = getFullConnectivityMapFromCircuitJson(circuitJson);
222
+ let origin = options.origin;
223
+ if (!origin) {
224
+ const bounds = calculateCircuitBounds(circuitJson);
225
+ origin = calculateOriginFromBounds(bounds, options.margin);
226
+ }
166
227
  const ctx = {
167
228
  db,
168
229
  project,
169
230
  copperCutSetting,
170
231
  connMap,
171
232
  netGeoms: /* @__PURE__ */ new Map(),
172
- origin: options.origin ?? { x: 0, y: 0 }
233
+ origin
173
234
  };
174
235
  for (const net of Object.keys(connMap.netMap)) {
175
236
  ctx.netGeoms.set(net, []);
@@ -0,0 +1,108 @@
1
+ import type { CircuitJson } from "circuit-json"
2
+ import { cju } from "@tscircuit/circuit-json-util"
3
+
4
+ export interface Bounds {
5
+ minX: number
6
+ minY: number
7
+ maxX: number
8
+ maxY: number
9
+ }
10
+
11
+ /**
12
+ * Calculates the bounding box of all PCB elements in the circuit JSON
13
+ */
14
+ export const calculateCircuitBounds = (circuitJson: CircuitJson): Bounds => {
15
+ const db = cju(circuitJson)
16
+
17
+ let minX = Infinity
18
+ let minY = Infinity
19
+ let maxX = -Infinity
20
+ let maxY = -Infinity
21
+
22
+ // Calculate bounds from SMT pads
23
+ for (const smtpad of db.pcb_smtpad.list()) {
24
+ if (smtpad.shape === "rect") {
25
+ const halfWidth = smtpad.width / 2
26
+ const halfHeight = smtpad.height / 2
27
+
28
+ minX = Math.min(minX, smtpad.x - halfWidth)
29
+ minY = Math.min(minY, smtpad.y - halfHeight)
30
+ maxX = Math.max(maxX, smtpad.x + halfWidth)
31
+ maxY = Math.max(maxY, smtpad.y + halfHeight)
32
+ } else if (smtpad.shape === "circle") {
33
+ const radius = smtpad.radius
34
+
35
+ minX = Math.min(minX, smtpad.x - radius)
36
+ minY = Math.min(minY, smtpad.y - radius)
37
+ maxX = Math.max(maxX, smtpad.x + radius)
38
+ maxY = Math.max(maxY, smtpad.y + radius)
39
+ }
40
+ }
41
+
42
+ // Calculate bounds from PCB traces
43
+ for (const trace of db.pcb_trace.list()) {
44
+ const isWidthPoint = (
45
+ point: (typeof trace.route)[number],
46
+ ): point is (typeof trace.route)[number] & { width: number } =>
47
+ "width" in point && typeof point.width === "number"
48
+
49
+ const halfWidth =
50
+ trace.route_thickness_mode === "interpolated"
51
+ ? 0
52
+ : (trace.route.find(isWidthPoint)?.width ?? 0) / 2
53
+
54
+ for (const point of trace.route) {
55
+ const pointWidth =
56
+ trace.route_thickness_mode === "interpolated"
57
+ ? isWidthPoint(point)
58
+ ? point.width / 2
59
+ : 0
60
+ : halfWidth
61
+
62
+ minX = Math.min(minX, point.x - pointWidth)
63
+ minY = Math.min(minY, point.y - pointWidth)
64
+ maxX = Math.max(maxX, point.x + pointWidth)
65
+ maxY = Math.max(maxY, point.y + pointWidth)
66
+ }
67
+ }
68
+
69
+ // Calculate bounds from plated holes
70
+ for (const hole of db.pcb_plated_hole.list()) {
71
+ if (hole.shape === "circle") {
72
+ const radius = hole.outer_diameter / 2
73
+
74
+ minX = Math.min(minX, hole.x - radius)
75
+ minY = Math.min(minY, hole.y - radius)
76
+ maxX = Math.max(maxX, hole.x + radius)
77
+ maxY = Math.max(maxY, hole.y + radius)
78
+ }
79
+ }
80
+
81
+ // If no elements were found, return a default bounds
82
+ if (
83
+ !isFinite(minX) ||
84
+ !isFinite(minY) ||
85
+ !isFinite(maxX) ||
86
+ !isFinite(maxY)
87
+ ) {
88
+ return { minX: 0, minY: 0, maxX: 0, maxY: 0 }
89
+ }
90
+
91
+ return { minX, minY, maxX, maxY }
92
+ }
93
+
94
+ /**
95
+ * Calculates the origin needed to shift all elements to the positive quadrant
96
+ * with a small margin
97
+ */
98
+ export const calculateOriginFromBounds = (
99
+ bounds: Bounds,
100
+ margin?: number,
101
+ ): { x: number; y: number } => {
102
+ const m = margin ?? 0.1
103
+ // If minimum coordinates are already positive, no shift needed (but add margin)
104
+ const originX = bounds.minX < m ? -bounds.minX + m : 0
105
+ const originY = bounds.minY < m ? -bounds.minY + m : 0
106
+
107
+ return { x: originX, y: originY }
108
+ }
package/lib/index.ts CHANGED
@@ -8,6 +8,10 @@ import { addPcbTrace } from "./element-handlers/addPcbTrace"
8
8
  import { getFullConnectivityMapFromCircuitJson } from "circuit-json-to-connectivity-map"
9
9
  import { Polygon, Box, BooleanOperations } from "@flatten-js/core"
10
10
  import { polygonToShapePathData } from "./polygon-to-shape-path"
11
+ import {
12
+ calculateCircuitBounds,
13
+ calculateOriginFromBounds,
14
+ } from "./calculateBounds"
11
15
  // import { writeDebugSvg } from "./writeDebugSvg"
12
16
 
13
17
  export const convertCircuitJsonToLbrn = (
@@ -15,6 +19,7 @@ export const convertCircuitJsonToLbrn = (
15
19
  options: {
16
20
  includeSilkscreen?: boolean
17
21
  origin?: { x: number; y: number }
22
+ margin?: number
18
23
  } = {},
19
24
  ): LightBurnProject => {
20
25
  const db = cju(circuitJson)
@@ -33,13 +38,20 @@ export const convertCircuitJsonToLbrn = (
33
38
 
34
39
  const connMap = getFullConnectivityMapFromCircuitJson(circuitJson)
35
40
 
41
+ // Auto-calculate origin if not provided to ensure all elements are in positive quadrant
42
+ let origin = options.origin
43
+ if (!origin) {
44
+ const bounds = calculateCircuitBounds(circuitJson)
45
+ origin = calculateOriginFromBounds(bounds, options.margin)
46
+ }
47
+
36
48
  const ctx: ConvertContext = {
37
49
  db,
38
50
  project,
39
51
  copperCutSetting,
40
52
  connMap,
41
53
  netGeoms: new Map(),
42
- origin: options.origin ?? { x: 0, y: 0 },
54
+ origin,
43
55
  }
44
56
 
45
57
  for (const net of Object.keys(connMap.netMap)) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "circuit-json-to-lbrn",
3
3
  "main": "dist/index.js",
4
- "version": "0.0.4",
4
+ "version": "0.0.6",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "start": "bun run site/index.html",
package/site/main.tsx CHANGED
@@ -7,6 +7,12 @@ import type { CircuitJson } from "circuit-json"
7
7
  let currentLbrnProject: any = null
8
8
  let currentCircuitJson: CircuitJson | null = null
9
9
 
10
+ function getErrorMessage(error: unknown): string {
11
+ if (error instanceof Error && error.message) return error.message
12
+
13
+ return "Unknown error"
14
+ }
15
+
10
16
  // Get DOM elements
11
17
  const dropArea = document.getElementById("dropArea") as HTMLDivElement
12
18
  const fileInput = document.getElementById("fileInput") as HTMLInputElement
@@ -30,7 +36,9 @@ const originYInput = document.getElementById("originY") as HTMLInputElement
30
36
  const includeSilkscreenInput = document.getElementById(
31
37
  "includeSilkscreen",
32
38
  ) as HTMLInputElement
33
- const reconvertBtn = document.getElementById("reconvertBtn") as HTMLButtonElement
39
+ const reconvertBtn = document.getElementById(
40
+ "reconvertBtn",
41
+ ) as HTMLButtonElement
34
42
 
35
43
  // Show error message
36
44
  function showError(message: string) {
@@ -83,7 +91,7 @@ async function processFile(file: File) {
83
91
  } catch (error) {
84
92
  showLoading(false)
85
93
  console.error("Error processing file:", error)
86
- showError(`Error processing file: ${error.message || "Unknown error"}`)
94
+ showError(`Error processing file: ${getErrorMessage(error)}`)
87
95
  }
88
96
  }
89
97
 
@@ -147,7 +155,7 @@ async function convertAndDisplay() {
147
155
  } catch (error) {
148
156
  showLoading(false)
149
157
  console.error("Error converting:", error)
150
- showError(`Error converting: ${error.message || "Unknown error"}`)
158
+ showError(`Error converting: ${getErrorMessage(error)}`)
151
159
  }
152
160
  }
153
161
 
@@ -213,7 +221,7 @@ downloadBtn.addEventListener("click", () => {
213
221
  URL.revokeObjectURL(url)
214
222
  } catch (error) {
215
223
  console.error("Error downloading file:", error)
216
- showError(`Error downloading file: ${error.message || "Unknown error"}`)
224
+ showError(`Error downloading file: ${getErrorMessage(error)}`)
217
225
  }
218
226
  })
219
227
 
@@ -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(10.126582278481013, 10.126582278481013) translate(39.5, 39.5)">
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(10.11378002528445, 10.11378002528445) translate(10, 10)">
6
+ <rect x="-10" y="-10" width="79.1" height="79.1" fill="white"/><g transform="matrix(1 0 0 -1 0 59.099999999999994)"><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.760454881738106 55.1 L 9.100000000000001 55.1 L 9.100000000000001 59.1 L 5.100000000000001 59.1 L 5.100000000000001 55.1 L 8.569979900870583 55.1 L 24.85 34.297752095556866 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.999585316520722 24.85 L 25.35 24.85 L 25.35 25.35 L 24.85 25.35 L 24.85 24.90224790444314 L 8.56997990087058 4.100000000000001 L 5.100000000000001 4.100000000000001 L 5.100000000000001 0.10000000000000142 L 9.100000000000001 0.10000000000000142 L 9.100000000000001 4.100000000000001 L 8.760454881738108 4.100000000000001 L 24.999585316520722 24.85 L 24.999585316520722 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(26.533996683250415, 26.533996683250415) translate(15.075, 15.075)">
6
- <rect x="-15.075" y="-15.075" width="30.15" height="30.15" fill="white"/><g transform="matrix(1 0 0 -1 0 0)"><g transform="matrix(1,0,0,1,0,0)"><path d="M -5.053033008588991 -4.946966991411009 L -5.062360220922691 -4.95833223252353 L -5.069290964938347 -4.9712987425726185 L -5.073558896030242 -4.985368225848791 L -5.075 -5 L -5.073558896030242 -5.014631774151209 L -5.069290964938347 -5.0287012574273815 L -5.062360220922691 -5.04166776747647 L -5.053033008588991 -5.053033008588991 L -5.04166776747647 -5.062360220922691 L -5.0287012574273815 -5.069290964938347 L -5.014631774151209 -5.073558896030242 L -5 -5.075 L -4.985368225848791 -5.073558896030242 L -4.9712987425726185 -5.069290964938347 L -4.95833223252353 -5.062360220922691 L -4.946966991411009 -5.053033008588991 L 5.053033008588992 4.946966991411009 L 5.062360220922691 4.95833223252353 L 5.069290964938347 4.9712987425726185 L 5.073558896030242 4.985368225848791 L 5.075 5 L 5.073558896030242 5.014631774151209 L 5.069290964938347 5.0287012574273815 L 5.062360220922691 5.04166776747647 L 5.053033008588991 5.053033008588991 L 5.04166776747647 5.062360220922691 L 5.0287012574273815 5.069290964938347 L 5.014631774151209 5.073558896030242 L 5 5.075 L 4.985368225848791 5.073558896030242 L 4.9712987425726185 5.069290964938347 L 4.95833223252353 5.062360220922691 L 4.946966991411009 5.053033008588991 L -5.053033008588992 -4.946966991411009 L -5.053033008588991 -4.946966991411009" fill="none" stroke="#000000" stroke-width="0.1"/></g></g>
5
+ <g transform="translate(0, 600) scale(26.294165981922763, 26.294165981922763) translate(10, 10)">
6
+ <rect x="-10" y="-10" width="30.424999999999997" height="30.424999999999997" fill="white"/><g transform="matrix(1 0 0 -1 0 10.424999999999997)"><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>
@@ -1,11 +0,0 @@
1
- {
2
- "permissions": {
3
- "allow": [
4
- "Bash(bun pm:*)",
5
- "Bash(tree:*)",
6
- "Bash(bun add:*)"
7
- ],
8
- "deny": [],
9
- "ask": []
10
- }
11
- }